we have published a webservice and the web developers are getting an error posting to this, where the XML file is greater than 8192 characters. Anyone know how to increase this limit?
I just tried in my NAV 2009 SP1 with a 10kb request, and it works fine. (had to add 23 different items in a web-shop)
Maybe you should "upgrade" to NAV 2009 SP1? ;-) Sorry, that is not funny :-(
My web service is not using XMLPorts, but simply uses a BigText as parameter. How is yours defined?
(It is a hell to handle regarding encoding, but that is a different story)
Hi,
There is a setting in custom setting file in NAV 2009R2
<!--
Maximum permitted size of a Web Services request, in kilobytes
--> <add key="WebServicesMaxMsgSize" value="512"></add>
Comments
<!--
Maximum permitted size of a SOAP Services request, in kilobytes
-->
<add key="SOAPServicesMaxMsgSize" value="1024" />
Independent Consultant/Developer
blog: https://dynamicsuser.net/nav/b/ara3n
thanks
Maybe you should "upgrade" to NAV 2009 SP1? ;-) Sorry, that is not funny :-(
My web service is not using XMLPorts, but simply uses a BigText as parameter. How is yours defined?
(It is a hell to handle regarding encoding, but that is a different story)
Peter
thanks for the upgrade tip. maybe to classic and dataports!
The webservice is a simple page webservice (creating a header and lines)
thanks
There is a setting in custom setting file in NAV 2009R2
<!--
Maximum permitted size of a Web Services request, in kilobytes
-->
<add key="WebServicesMaxMsgSize" value="512"></add>
Thanks, Gaurav