I have a web service that gets data from clients. It appears that each
time a client connects to the webservice, a new connection/session is
created on the server side (IIS 5.1). After 10 calls to the webservice,
I start getting errors when connecting (too many connections). The
client program have to wait for a few minutes to start sending data
again.
I have tried using session.Abandon in the web method to close a
connection after a successfull request. But this has not helped.
How should I close a session in the web service so that I don't run
into the 10 connection limit? Any help would be appreciated. TIA.
Manoj