I got maximum length exceeded error in web service application , found that its due to input xml has more than 4Mb size and IIS is configured with default 4mb so changed the web config as below
Within system.web--5MB (xml is always less than 5MB)
<httpRuntime maxRequestLength="5120" />
After that from SOAP UI, XML is processed but when calling through application , its not working.
Can anyone tell what will be the reason?
Thanks In Advance.