J
Julie Barnet
I'm trying to import a file using vb.net webforms.
If I import a small test file everything works ok (approx 5000
records). If I import my larger file approx 25000 records, I get the
server not responding message. Is there something I need to set to
indicate that the server is doing work, it will just take a while
since the file is very large?
Is there a time out variable of somesort?
I get the following error in event viewer - application log
aspnet_wp.exe (PID: 2084) was recycled because it was suspected to be
in a deadlocked state. It did not send any responses for pending
requests in the last 180 seconds.
I have installed service packs 1 and 2.
I changed these two lines in my machine.config also
responseDeadlockInterval="00:20:00" - For deadlock
detection, timeout for responses when there are executing requests.
responseRestartDeadlockInterval="00:20:00" - Time to wait
between restarting WPs due to responseDeadlockInterval
I have added this in my c:\inetpub\wwwroot\web.config file.
<configuration>
<system.web>
<httpRuntime executionTimeout="500"/>
</system.web>
</configuration>
Nothing seems to work.
Thanks in advance
Julie Barnet
If I import a small test file everything works ok (approx 5000
records). If I import my larger file approx 25000 records, I get the
server not responding message. Is there something I need to set to
indicate that the server is doing work, it will just take a while
since the file is very large?
Is there a time out variable of somesort?
I get the following error in event viewer - application log
aspnet_wp.exe (PID: 2084) was recycled because it was suspected to be
in a deadlocked state. It did not send any responses for pending
requests in the last 180 seconds.
I have installed service packs 1 and 2.
I changed these two lines in my machine.config also
responseDeadlockInterval="00:20:00" - For deadlock
detection, timeout for responses when there are executing requests.
responseRestartDeadlockInterval="00:20:00" - Time to wait
between restarting WPs due to responseDeadlockInterval
I have added this in my c:\inetpub\wwwroot\web.config file.
<configuration>
<system.web>
<httpRuntime executionTimeout="500"/>
</system.web>
</configuration>
Nothing seems to work.
Thanks in advance
Julie Barnet