Big files transfer using WCF services
- December 21st, 2009
- Posted in Tech Recipes . WCF
- By Germán Medina
- Write comment
If you need to receive files bigger than 4MB using WCF services you have to change the default configuration in your web.config file to allow the size required.
<system.web> <httpRuntime maxRequestLength="131072" /> </system.web>
Note: this should work for any ASP application.
No comments yet.