Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Issue
The WCF service was used for file upload and download. While uploading the file, WCF was throwing an error "Request entity too large".
Solution
After browsing, found that the change in web.config for webhttpBinding parameter resolved the issue and it's given below
<system.serviceModel>
<bindings>
<webHttpBinding> <binding maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647" maxBufferSize="2147483647" transferMode="Streamed"> </binding> </webHttpBinding></bindings>