<configuration> <system.web> <httpRuntime maxMessageLength="409600" executionTimeoutInSeconds="300"/> </system.web> </configuration>
Thanks & Regards, Krishna
With regards, J.Prabu. [Email:prbspark@gmail.com]
<configuration> <configSections> <section name="microsoft.web.services3" type="Microsoft.Web.Services3.Configuration.WebServicesConfiguration, Microsoft.Web.Services3, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> </configSections></configuration>
<?xml version="1.0"?> <configuration> <configSections> <section name="microsoft.web.services3" type="Microsoft.Web.Services3.Configuration.WebServicesConfiguration, Microsoft.Web.Services3, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> </configSections> <system.web> <httpRuntime maxMessageLength="409600" executionTimeoutInSeconds="300"/> <webServices> <protocols> <add name="HttpGet"/> <add name="HttpPost"/> </protocols> </webServices> <compilation debug="true"/> <customErrors mode="RemoteOnly" defaultRedirect="Error.aspx" redirectMode="ResponseRedirect"> </customErrors> </system.web> <connectionStrings> <add name="con" connectionString="Data Source=192.168.9.12;user id=sa;password=sa;Integrated Security=false;Initial Catalog=test" providerName="System.Data.SqlClient" /> </connectionStrings> </configuration>
<configuration> <microsoft.web.services3> <messaging> <executionTimeoutInSeconds value="60" /> <maxMessageLength value="1024" /maxMessageLength> </messaging> </microsoft.web.services3> </configuration>
<?xml version="1.0"?> <configuration> <configSections> <section name="microsoft.web.services3" type="Microsoft.Web.Services3.Configuration.WebServicesConfiguration, Microsoft.Web.Services3, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> </configSections> <system.web> <httpRuntime maxMessageLength="409600" executionTimeoutInSeconds="300"/> <webServices> <protocols> <add name="HttpGet"/> <add name="HttpPost"/> </protocols> </webServices> <compilation debug="true"/> <customErrors mode="RemoteOnly" defaultRedirect="Error.aspx" redirectMode="ResponseRedirect"> </customErrors> </system.web> <microsoft.web.services3> <messaging> <maxMessageLength value="-1" /> </messaging> </microsoft.web.services3> <connectionStrings> <add name="con" connectionString="Data Source=192.168.9.12;user id=sa;password=sa;Integrated Security=false;Initial Catalog=test" providerName="System.Data.SqlClient" /> </connectionStrings> </configuration>
Login to post response