function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
trishtrish 

.NET Web Service response exceeds 100KB size

Hi,
 
I have an Apex class that communicates with a .NET Web Service. The Web Service response is exceeding 100 KB. Is there a work around to this 100 KB limit?
 
 
Drew1815Drew1815
Unfortunately, nothing on the Force.com side.

The web service would have to handle limiting the response size or the web service request needs to be more restrictive to return less data (I understand that doesn't always make sense..just an idea).

 
Steven2005ASteven2005A
Hi Trish
I think you may answer a question I have, I developed a webservice on my localhost, still in testing mode, how to use an apex class to communicate to the web service?
trishtrish
Hi Steven,
 
There's a detailed article on this in the Apex Developer Guide . Please refer to "SOAP Services: Defining a Class from a WSDL Document" on pg. 148.
 
Steven2005ASteven2005A
thanks