I am having a SOAP style C# webservice. One of the interface methods is given below:
string WebserviceMethod1(string param1, List<T> param2, string param3);
Where T is defined as:
class T { string arg1; string arg2; string arg3; }
One of the consumers of this service, consume it by adding web_references (this is a old style of consuming of webservices, nowadays its much easier to add service_reference. The cconsumer has .Net 2.0) that creates a bunch xsd and xml files. I cannot change the way the service is consumed.
Recently, we have seen an issue, where the service return an bad request (Http Error code:400), if the number of items in the list (second argument) is more than 170. Has anyone ever encountered such an issue? or if someone can point me to some resources that might have a solution.
Thanks in advance ,