Querying XML content within an element

Edawid

New Member
I have an odd XML document that I have to query. Its from the Weather.gov output. The information I'd like to query within is under: /Enelope/Body/NDFDgenResponse/dwmlOut. Its a converted form of XML. Is it possible to query individual elements under that value, or will I have to post process it to query within it? My suspicion is that I'll have to post process. \[code\]<?xml version="1.0" encoding="ISO-8859-1"?><SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"> <SOAP-ENV:Body> <ns1:NDFDgenResponse xmlns:ns1="http://graphical.weather.gov/xml/DWMLgen/wsdl/ndfdXML.wsdl"> <dwmlOut xsi:type="xsd:string"><?xml version="1.0"?><dwml version="1.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://graphical.weather.gov/xml/DWMLgen/schema/DWML.xsd"> <head> <product srsName="WGS 1984" concise-name="glance" operational-mode="official"> <title>NOAA&apos;s National Weather Service Forecast at a Glance</title> <field>meteorological</field> <category>forecast</category> <creation-date refresh-frequency="PT1H">2012-06-26T19:09:06Z</creation-date> </product> <source> <more-information>http://graphical.weather.gov/xml/</more-information> <production-center>Meteorological Development Laboratory<sub-center>Product Generation Branch</sub-center></production-center> <disclaimer>http://www.nws.noaa.gov/disclaimer.html</disclaimer> <credit>http://www.weather.gov/</credit> <credit-logo>http://www.weather.gov/images/xml_logo.gif</credit-logo> <feedback>http://www.weather.gov/feedback.php</feedback> </source> </head> <data> <location>\[/code\]..... </conditions-icon> </parameters> </data> </dwml>
 
Back
Top