Anyone?
I just need to know how to parse xml tags of nature <ns1:xxx
like
<ns1:updateType>1</ns1:updateType>
<ns1:updateTime>20130723082551</ns1:updateTime>
<ns1:updateDesc>Addition</ns1:updateDesc>
<ns1:effectiveTime>20130723082551</ns1:effectiveTime>
My server is able to parse this request for example:
<?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>
<ns1972:syncOrderRelation xmlns:ns1972="http://www.csapi.org/wsdl/parlayx/data/sync/v1_0/">
<updateType xsi:type="xsd:string">1</updateType>
<updateDesc xsi:type="xsd:string">Addition</updateDesc>
</ns1972:syncOrderRelation>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|