What is the proper
way to handle passing an XML document as a parameter to a method in a web
service?
Current we have a
.Net implementation that we are trying to call from a simple test utility and
when we send this parameter we always need to make sure the entire string is
encoded ( < = <) for that particular string or it doesn't work.
We had tried building a .Net client
and we don't have to
explicitly encode the string that we pass. How are XML docs
within SOAP message parameters typically handled?
Thanks,
Ryan