Running into a strange issue.
My intranet app uses ASP .NET AJAX 1.0 extensively. Assuming the server is hosted internally at -
http://192.168.155.3 - at port 80 ...
- When I access the web app from that very machine - using http://localhost - the app runs brilliantly - great response times, no problems with AJAX.
- When I access the web app from another machine in the intranet - using -
http://192.168.153.3/ - response times are not as good, performance becomes inconsistent, its fast sometimes, sluggish sometimes, sometimes ajax calls timeout.
- When I access the web app from another machine, with proxy enabled - calling
http://192.168.153.3 renders the website - performance being a little sluggish, but the real problem is that most of the ajax calls fail in this scenario. Say for eg. clicking on a gridview is supposed to populate a detailsview (ajax call) - such partial postbacks never complete, so the app becomes unusable with proxy on (even though the app is accessible, ajax stops working)
Any clarification and guidance would help.
Thanks.