I have a few specific questions about web services (SOAP over HTTP):
- A client calls a web service. If, in the middle of the call, the client terminates it's own connection, is the server aware that the connection was terminated?
- This is more of a HTTP question. Is is possible for a client to call a web service and be forced to wait for some amount of time before the processing actually occurs? For example, if I have a web service generated on a server, is it possible for the call to get stuck before it hits my implementation code? Perhaps the thread pool for the servlets are too busy? I equate this to when a website gets slammed from traffic (i.e. the Slashdot effect).
Thanks a lot!