I am trying to activate a web service that located on my computer. I am using the following code:
string url = "
http://localhost/SomeService.asmx/Func?param1=1¶m2=2HttpWebRequest request = HttpWebRequest.Create(url)
;
WebResponse response = request.GetResponse();
StreamReader reader = new StreamReader(response.GetR
esponseStr
eam());
Logging.WriteToLog(reader.
ReadToEnd(
));
I also wrote an application that runs that code in loop and let my computer work for a few hours.
After a few hours my web services are down and when I am trying to go to
http://localhost/SomeService.asmx I am getting this error:
HTTP 403.9 - Access Forbidden: Too many users are connected
Internet Information Services
What is wrong? How can I solve this problem?