all groups > dotnet xml > july 2006 >
You're in the

dotnet xml

group:

String to XML


Re: String to XML Scott M.
7/27/2006 3:55:58 PM
dotnet xml:
You could load the string into a StringReader and then into a DataSet and
extract what you need via ADO.NET or you could load the string into an
XMLDocument object and use the XMLDOM to parse it.

[quoted text, click to view]

String to XML Java Apache
7/27/2006 6:39:44 PM
Hi All,

I am pretty to new to .NET/C# so go easy (sorry for X-Post, but I am not
sure my other post reached the C# list!)!

I am developing a Web Service call to a Java Web Service and it is all
working fine - it is returning me back a String value which in all
reality is an XML file (the content of the string is a valid well-formed
XML packet). How can I get this string into an XML object so I can use
the XML functions / operations in .NET? An example of my XML String is
below:


<?xml version="1.0" encoding="UTF-8"?>
<NOVA version="1.0">
<PROCESSGUID>B1367940-802E-9665-4305EF47E9AC81F1</PROCESSGUID>
<REQUEST><USERNAME>foo</USERNAME><PASSWORD>foo</PASSWORD>
<COMPONENT>Test</COMPONENT>
<ARGUMENTS><address>earth</address><foo>earth</foo></ARGUMENTS>
<METHOD>foo</METHOD></REQUEST><RESPONSE><SUCCESS>true</SUCCESS><RESULT>I
worked!</RESULT><RESPONSEDATETIME>2006-07-27
18:19:35</RESPONSEDATETIME><ERROR>
<TYPE/><CODE/><MESSAGE/><DETAIL/></ERROR></RESPONSE></NOVA>


How could I get say, the "SUCCESS" value from this string

Hope some of you gurus can help ;-P

Re: String to XML Michael Mooney
7/28/2006 12:05:09 PM
System.Xml.XmlDocument objDocument = new System.Xml.Document();
objDocument.LoadXml(strXmlValueReturnedFromWebService);
System.Xml.XmlNode objNode =
objDocument.SelectSingleNode("/NOVA/RESONSE/SUCCESS");

[quoted text, click to view]

AddThis Social Bookmark Button