Event code: 3001, Event message: The request has been aborted.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • SenthilPSL
    New Member
    • Jul 2007
    • 1

    Event code: 3001, Event message: The request has been aborted.

    When I call a webservice on IIS on Windows 2000 Server with .NET runtime 2.0, I get the following Error.
    System.Net.WebE xception: The operation has timed out

    From ASPX Pages, I call the web service, which in turn calls dlls for executing the sotred procedure. SP runs for about 10 mins. (It has to; because the application demands running such big SP in synchronous mode). I have set the execution timeout to 1 hour both in website (for ASPX) and in web service site (for ASMX). Backend operation has completed successfully. But application times out in 5 or 6mins. This problem does not occur in dev boxes.

    Can anybody help me get through the issue.


    In Event Viewer the Error is:

    Event code: 3001
    Event message: The request has been aborted.
    Event time: 7/8/2007 12:17:43 AM
    Event time (UTC): 7/8/2007 12:17:43 AM
    Event ID: 8edd97656d0c483 3b75f5a2b11e17c b7
    Event sequence: 1635
    Event occurrence: 16
    Event detail code: 0

    Application information:
    Application domain: /LM/W3SVC/41/ROOT/MyProxy-6-128282210719726 875
    Trust level: Full
    Application Virtual Path: /MyProxy
    Application Path: C:\Inetpub\wwwr oot\MyProxy\
    Machine name: MYSERVER

    Process information:
    Process ID: 3860
    Process name: aspnet_wp.exe
    Account name: JANUSTIWEBD1\AS PNET

    Exception information:
    Exception type: HttpException
    Exception message: Request timed out.

    Request information:
    Request URL: http://Mydomain.com/MyProxy/MyProxyService. asmx
    Request path: /MyProxy/MyProxyService. asmx
    User host address: xxx.xxx.xxx.xxx
    User:
    Is authenticated: False
    Authentication Type:
    Thread account name: MyDomain\ASPNET

    Thread information:
    Thread ID: 5
    Thread account name: MyDomain\ASPNET
    Is impersonating: False
    Stack trace:

    Any helpful suggesstion is much appreciated.
    Thanks
    Senthil.
  • Frinavale
    Recognized Expert Expert
    • Oct 2006
    • 9749

    #2
    Originally posted by SenthilPSL
    When I call a webservice on IIS on Windows 2000 Server with .NET runtime 2.0, I get the following Error.
    System.Net.WebE xception: The operation has timed out

    From ASPX Pages, I call the web service, which in turn calls dlls for executing the sotred procedure. SP runs for about 10 mins. (It has to; because the application demands running such big SP in synchronous mode). I have set the execution timeout to 1 hour both in website (for ASPX) and in web service site (for ASMX). Backend operation has completed successfully. But application times out in 5 or 6mins. This problem does not occur in dev boxes.

    Can anybody help me get through the issue.

    ...
    Any helpful suggesstion is much appreciated.
    Thanks
    Senthil.
    Hi Senthil,

    I've never really worked with web services in .NET before but I have seen a similar error before in my .NET web applications. The problem was that the IIS's timeout value was set to something different than my web application...i n this case the IIS returns a timeout to the application and the HttpException is generated (because the response was not expected).

    Look into configuring your IIS's timeout value so that it is larger than your application's timeout.

    Hope this helps!
    -Frinny

    Comment

    Working...