Hi, I have several routines that fastly create a XML string. I want to use a WebMethod as below: string SendXml() { string xmlString = createXmlString(); return xmlString; } THE PROBLEM IS: .NET converts all '<' and '>' character to '>' and '≶' I want to
insert my Xml string without .NET conversion. How can i do this ???
I can't do this. Suppose this : My XML: < data > The XML coded from the server will be <Uno> < data > </Uno> The client receives the string and decodes it. This string is not a valid XML string, i cannot load it within XmlDocument
dasley
Member
70 Points
17 Posts
How to insert XML STRING into SOAP message (without XmlNode) ?
Sep 08, 2003 11:56 AM|LINK
dougraney
Member
50 Points
10 Posts
Re: How to insert XML STRING into SOAP message (without XmlNode) ?
Sep 09, 2003 07:23 PM|LINK
dasley
Member
70 Points
17 Posts
Re: How to insert XML STRING into SOAP message (without XmlNode) ?
Sep 10, 2003 09:28 AM|LINK