Hi,
I have 2 .NET 3.5 web services.
Let's call them WS1 and WS2.
WS1 is basically a web services acting as a proxy for WS2 methods
I have a case where in WS1 one method stopped answering with a time out error when one of the string-typed parameter reached a certain content's size
WS1.MyMethod(string A, int Id) calls WS2.MyMethod(string A, int Id) and return a time out error if A is reaching a certain amount of characters
If I call WS2.MyMethod(string A, int Id) with the same parameters through the web services test web page it works perfectly.
How do I increase the allowed size of message when WS1 calls WS2 ?
Best regards
Greg