Click here to Skip to main content
15,889,527 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hello,

Here i am dealing with Client and server for banking application ,
No error In the application ,working fine in testing environment but coming to the production environment server application throws an exception " The I/O operation has been aborted because of either a thread exit or an application request" 1

application running environment

OS : windows server 2003,, IIS6
frame work : 2.0\



private void PostReq(HttpListenerContext context)
{
HttpListenerRequest reQuest = null;
HttpListenerResponse reSponse = null;

try
{
reQuest = context.Request;
reSponse = context.Response;
ds_Request = new DataSet();
ds_Request.ReadXml(reQuest.InputStream);
capturing_Log(ds_Request.GetXml());

// when the number of concurrent request count is lessthan 20 NO exception
//BUT i'm unable to capture the request data when the number of concurrent requests
//are exceeds 20 it automatically throws an exception
}
catch (Exception ex)
{
//
capturing_Log(ex.Message);
//
}
}

please help me ..


Thanks to all
Posted
Updated 26-Feb-13 21:58pm
v3
Comments
Sergey Alexandrovich Kryukov 27-Feb-13 1:39am    
Not enough information. Due to considerable volumes of snow, my access to your hard drive is somewhat limited. :-)
—SA
sagar.panuganti 27-Feb-13 2:08am    
my application is a windows server application, runs on HTTP LISTNERS. In the peak time when the number of requests increased the application throws exception "The I/O operation has been aborted because of either a thread exit or an application request".
There is no limitations in the application it can accept any number of requests pls tell me why it happens
Sergey Alexandrovich Kryukov 27-Feb-13 2:13am    
I already explained why I cannot tell you what happens. Would you rather wait until the weather changes? :-)
—SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900