Hi,
We are setting up a Reverse Proxy cum URL Rewrite solution. Different customers access their portals through our parent domain, using a URL based approach. For example
For customer1 : URL -> ourportal.com/customer1
For customer2 : URL -> ourportal.com/customer2
We are able to configure Inbound Rules and route the https requests to the relevant web servers. Our portal is DotNetNuke based. The login page loads fine.
But the problem is with AJAX calls being made by the page. When we click on Submit button, we are getting the following error:
'WebForm_DoPostBackWithOptions' is undefined
Anybody has come across such error ?
In Fiddler, we can see that WebResource.axd is not getting downloaded. In most of the forums, its recommended to avoid rewriting requests for asp.net web resources. Unfortunately WebForm_DoPostBackWithOptions is defined in WebResource.js file.
Is there any way to resolve this ?
Ajit