Can I get the XML generated by the SOAP client before sending it to the webservice?
I need this because the answer from webservice, if one of the parameters is really wrong, I get errors, for example
Server was unable to read request.
---> There is an error in XML document (2, 408).
---> Input string was not in a correct format.
This usually involves running tcpmon or another tcp watcher utility, grabbing a webservice call, copying and pasting xml into a text editor, and going to column 408 to find out what the problem is.
I would really like to simplify this process by sending XML to .
source
share