Does IIS thread each web service request? In other words, if I request a
web service five times, will IIS thread each request or will it cache
requests 2-5 until request 1 has completed and then submit request 2?
Re: Asynchronous Web Service Call ... I think I understand your request so here goes.... ... How is the request handled from a consumer perpective?... stage later when the web service process is complete, ... The background of my question adresses server to ... (microsoft.public.dotnet.framework.aspnet.webservices)
Re: An existing connection was forcibly closed by the remote host ... Within my web service proxy class I overrode the GetWebRequestmethod and modified it as shown below. ...HttpWebRequest request = base.GetWebRequestas ... If the size of the request message I was using is greater than the size of the packets the host could receive and the host is configured receive chunked messages then I guess I can assume when we sent a message larger than the packet size without sending it chunked their server terminated the session because it was waiting for another TCP message??? ... at System.Net.Sockets.NetworkStream.Read(Bytebuffer, Int32 offset, Int32 size) ... (microsoft.public.dotnet.framework.aspnet.webservices)
Re: Have thread end if not finished in X seconds ... As we have grown we needed real time over the internet validation--the perfect way to do this is with a web service and new systems are using the web service fine. ... the old systems are only able to support real time validation via TCP/IP requests.... This TCP/IP server has a main sub that listens for TCP/IP requests and when it hears one it launches a thread to answer and handle that request. ... The main thread will wake up, and from there we can kill the worker thread in the main thread. ... (microsoft.public.dotnet.languages.vb)
Re: Redirect results in lost soap envelope. Changes method from POST to GET ... I created a web site, site A, that redirects to another web site, site ... where a simple web service is hosted. ... POST 401 text/html http://siteB/redirect_test/service.asmx ... If the 301 status code is received in response to a request other than ... (microsoft.public.dotnet.framework.webservices)
Re: Accessing a Web Service using a Query String ... May be you should add the HttpGet request protocol for the Web services ... > Query String should work. ... > Can I access a Web Service through a Query Sting. ... An unhandled exception occurred during the execution of the ... (microsoft.public.dotnet.framework.webservices)