We are trying to revere proxy a .NET 2.0 application. "The web application utilizes the Microsoft’s Multi-View Server Control and Tree-View Server Control, available in ASP.Net 2.0. When these controls are used, the .Net framework on the IIS 5.0 server generates client-side HTML to provide tabbed views (in the case of the Multi-View server control) or a tree structure (in the case of the Tree-View server control). The problem arises in that the URLs contained within the HTML generated by the .Net Framework use partial URLs that begin with a forward slash."
Our applications are normally deployed in a subdirectory so that we can easily separate them in the Apache Reverse Proxy.
example: ProxyPASS /application1/ http://applicationserver.srv.com/application1/
The issue is that the .Net framework is built from /WebResource.axd and we can not have any resources starting with a "/" slash since that will limit the number of rever proxy mappings.
Any tips are appreciated.