I have an existing web service that is HTTP XML based (ASP not ASP.Net). It
runs fine in all environments and has been very stable and static. I have a
single test ASP page that I use to build the request, form the XML and submit
the request to any server I choose via radio button selection (dev, test,
prod, etc).
The underlaying data tables used by the web service to return result are
being updated with some new values and I needed to run regression tests to
verify process still works.
I'm getting issues with my test ASP page sending requests to the Dev web
service for any request. Requests to other servers from same test ASP page
run fine. I've verified web service code is the same on all servers. I am
using the exact same test ASP page to build/send requests.
I log data on server side and can see that the Dev server is getting
requests, processing them and sending response back.
On test ASP side I can see that I'm stuck with objXmlHttp.readystate=1. It
just never moves on to 4. Same request to other servers returns response
using the same test ASP page session.
I don't think this is an application issue. I think it must be a server
side setting of some sort on the Dev box that has changed.