ServantofGod
New Member
This is a VS 2010 windows application that calls Web Services to upload and dowload files between the local machine and a remote machine.(Please note that this application was converted from vs2008 to vs2010 to use .net 4)It works fine for .pdf and text files.But when trying to upload zip files, I am getting the errorSystem.Web.Services.Protocols.SoapException: There was an exception running the extensions specified in the config file. ---> Maximum request length exceeded. at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall) at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters) When I googled the error, I found that the only explanation was to change the following change in web.config file\[code\]<httpRuntime maxRequestLength="8192" />\[/code\] to increase the size of the file.First of all, all the zip files that are being uploaded are less that 1 MB.Secondly, I do not find the above section in the web.config fileAny suggestions?