2011-07-14 19 views
1

私はWindows 2008でWebサービスを実行しています。私は頻繁にこのエラーが発生し続ける。間もなくWebサービスがタイムアウトになり、IISの再起動がそれをクリアしているようです。私は診断と根本原因の取得にいくつかの助けが必要です。頻繁にイベント1309を取得し続ける

Log Name:  Application 
Source:  ASP.NET 4.0.30319.0 
Date:   7/14/2011 2:30:11 AM 
Event ID:  1309 
Task Category: Web Event 
Level:   Warning 
Keywords:  Classic 
User:   N/A 
Computer:  MTRLPQDC217.bell.corp.bce.ca 
Description: 
Event code: 3001 
Event message: The request has been aborted. 
Event time: 7/14/2011 2:30:11 AM 
Event time (UTC): 7/14/2011 6:30:11 AM 
Event ID: 532e1f14b449406ea3fd6a3b744ff51d 
Event sequence: 12 
Event occurrence: 1 
Event detail code: 0 

Application information: 
    Application domain: /LM/W3SVC/2/ROOT-1-129550968093856307 
    Trust level: Full 
    Application Virtual Path:/
    Application Path: D:\inetpub\wwwroot\GreenDay\ 
    Machine name: MTRLPQDC217 

Process information: 
    Process ID: 7036 
    Process name: w3wp.exe 
    Account name: IIS APPPOOL\GDA-SP 

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



Request information: 
    Request URL: http://mtrlpqdc217:8085/wfaswebservice.asmx 
    Request path: /wfaswebservice.asmx 
    User host address: 142.117.237.106 
    User: 
    Is authenticated: False 
    Authentication Type: 
    Thread account name: IIS APPPOOL\GDA-SP 

Thread information: 
    Thread ID: 7 
    Thread account name: IIS APPPOOL\GDA-SP 
    Is impersonating: False 
    Stack trace: 


Custom event details: 

Event Xml: 
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event"> 
    <System> 
    <Provider Name="ASP.NET 4.0.30319.0" /> 
    <EventID Qualifiers="32768">1309</EventID> 
    <Level>3</Level> 
    <Task>3</Task> 
    <Keywords>0x80000000000000</Keywords> 
    <TimeCreated SystemTime="2011-07-14T06:30:11.000Z" /> 
    <EventRecordID>19659</EventRecordID> 
    <Channel>Application</Channel> 
    <Computer>MTRLPQDC217.bell.corp.bce.ca</Computer> 
    <Security /> 
    </System> 
    <EventData> 
    <Data>3001</Data> 
    <Data>The request has been aborted.</Data> 
    <Data>7/14/2011 2:30:11 AM</Data> 
    <Data>7/14/2011 6:30:11 AM</Data> 
    <Data>532e1f14b449406ea3fd6a3b744ff51d</Data> 
    <Data>12</Data> 
    <Data>1</Data> 
    <Data>0</Data> 
    <Data>/LM/W3SVC/2/ROOT-1-129550968093856307</Data> 
    <Data>Full</Data> 
    <Data>/</Data> 
    <Data>D:\inetpub\wwwroot\GreenDay\</Data> 
    <Data>MTRLPQDC217</Data> 
    <Data> 
    </Data> 
    <Data>7036</Data> 
    <Data>w3wp.exe</Data> 
    <Data>IIS APPPOOL\GDA-SP</Data> 
    <Data>HttpException</Data> 
    <Data>Request timed out. 

</Data> 
    <Data>http://mtrlpqdc217:8085/wfaswebservice.asmx</Data> 
    <Data>/wfaswebservice.asmx</Data> 
    <Data>142.117.237.106</Data> 
    <Data> 
    </Data> 
    <Data>False</Data> 
    <Data> 
    </Data> 
    <Data>IIS APPPOOL\GDA-SP</Data> 
    <Data>7</Data> 
    <Data>IIS APPPOOL\GDA-SP</Data> 
    <Data>False</Data> 
    <Data> 
    </Data> 
    </EventData> 
</Event> 

答えて

0

この種類のエラーは、ASP.NET要求がサーバーの実行に許可されている最大タイムアウト時間より長く実行された場合に発生します。この問題は、web.configファイルの要求実行タイムアウトを変更することで解決できます。ここで

<system.web> 
    <httpRuntime executionTimeout="180" /> 
</system.web> 

は、すでにこの問題に答えているいくつかのリソースです

https://blogs.msdn.microsoft.com/asiatech/2012/06/20/how-to-troubleshoot-httpexception-request-timed-out-asp-net-4-0-64-bit/

How to increase request timeout in IIS?

関連する問題