Click here to Skip to main content
15,908,166 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
In my application I am fetching users details from almost 70 servers. This might take a max of 2 mins to fetch the details. but when the application exceeds 90 sec the application times out. there is no change in the screen except i am getting the timeout exception in the bottom Left corner(the alert message in the browser)

I have set execution timeout to 3600 in config file as below. but still it is getting Timed out in 90 secs.
XML
<httpRuntime maxRequestLength="2147483647" executionTimeout="3600"/>

Please help me resolving this issue. Thanks in advance
Posted
v2

1 solution

Dear,

Use the below code in webconfig file
XML
<sessionstate cookieless="false" timeout="30000" />
 
Share this answer
 
v2
Comments
smvjkumar 27-May-13 4:27am    
manikandan

I could not see a code in the Solution, you provided. could you please re-post the Solution
Check now.

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