I am Uploading videos from mobile client to restful web services via HTTP post binary stream Upload.
I am successfully able to upload videos with 3-4 seconds of length. But videos that are bigger than that or large videos get me this error from the server.
A communication error occurred: “Operation timed out”
The Web Server may be down, too busy, or experiencing other problems preventing it from responding to requests. You may wish to try again at a later time.
For assistance, contact Customer Support
I don’t think there is any problem with application running as I was successful to Upload small videos.
How can I fix this?
Adding
<system.web> <httpRuntime executionTimeout="4800" maxRequestLength="500000000"/> </system.web>fixed the issue! –