Click here to Skip to main content
15,885,985 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi,
While saving the large images in Sql Server-2008 R2 database from Silverlight 4.0 desktop application I am gettimg the below error.

The HTTP request to 'http://<your URL>' has exceeded the allotted timeout. The time allotted to this operation may have been a portion of a longer timeout.

Please help me out if possible with the suitable example.
Posted
Comments
SASS_Shooter 5-Jun-12 10:59am    
You need to change the timeouts on the server. Look in the web.config for the server behavior.

1 solution

Hi Mayank,
I think you need to manually set the timeout values in binding settings of your web.config file. By default it'll be a 1 minute, you should have to increase it.

For (ex),
HTML
bindings>   <basichttpbinding>     <binding name="IncreasedTimeout" sendtimeout="00:25:00">     </binding>   </basichttpbinding>


There are several timeouts like closeTimeout,openTimeout etc. you can set these values as per your need.

Regards,
Bluesathish
 
Share this answer
 

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