I have a SOAP request as a string containing a '&'. because of that, the
request doesn't work, because I have to replace '&' with '&' . But this
is not the only special character I have to consider, right?
is there a function in the .NET framework 1.1 that converts the string
conform to xml encoding?
Josh Twist - 30 Mar 2006 14:30 GMT
Why not build the contents of your SOAP package using one of the built
in XML tools - either XmlWriter or XmlDocument etc. This should then
take care of all encoding for you.
Josh
http://www.thejoyofcode.com/