Simplified version of the app:
I have a C# windows service that generates a xml message. That message needs to be sent to 50 webservices.
In the windows service, I create a thread for each webservice and send that message to the 50 webservice
40 of the calls come back successfully and 10 of them time out. All 50 webservices process the message successfully and send a response back to the calling windows service.
is there some configuration that i might be missing?
Thanks for any help
Barry