2012-02-21 4 views
1

Webサービスコールによって4GBファイルをコピー/ハッシュするため、ASP .NET 2.0 Webサービスのタイムアウト値を増やす必要があります。私は設定に従った。クライアントコードASP.NET 2.0 Webサービスタイムアウトを増やす

Set proxy timeout=7200000 

クライアントマシンのweb.configファイルでは、サーバー・マシンのホストのWebサービスでは、コンパイル、デバッグ= "false" とのhttpRuntime maxRequestLength = "2048000" executionTimeout = "14400"

web.configファイル、サーバーマシンのmachine.configファイルで

compilation debug="false" 
httpRuntime maxRequestLength="2048000" executionTimeout="10800" 

processModel responseDeadlockInterval="05:00:00" userName="XXX" password="XXX" autoConfig="true" webGarden="true" At server machine MetaBase.xml file AspMaxRequestEntityAllowed="1073741824" AspScriptTimeout=”10800”AspSessionTimeout=”60”ConnectionTimeout=”14400” 

サーバーマシンはインターネットに接続されています。上記の設定では、ファイルコピー/ハッシュ操作中に約2分後にサーバーマシンのWebサービスログにはまだThread was being aborted exceptionが残っています。時間切れを増やしても効果がないのはなぜですか?

答えて

関連する問題