Skip to main content

Posts

Showing posts from March, 2007

Data size limit with Web Service Extension(WSE)

If you are using web service extension, watch out for size restriction based on the version of WSE 1. WSE 1.0 There is no size restriction on this. So if your web service and client with WSE 1.0, you won't have any problem. 2. WSE 2.0/3.0 In WSE 2.0/3.0, Microsoft introduced maxRequestLength which limits the amount of data transferred per request for a web service. By default this will be 4 MB (4096KB). You can set it to unlimited by setting it -1 as follows in web.config. <httpRuntime executionTimeout="90" maxRequestLength="-1" useFullyQualifiedRedirectUrl="false" minFreeThreads="8" minLocalRequestFreeThreads="4" appRequestQueueLimit="100"/> or as follows in app.config for a windows based application. < microsoft.web.services2> < messaging > < maxRequestLength > -1 < /maxRequestLength > < /messaging &