Hi peoples,
I successfully send an xml pack wrapped in a SOAP envelope using calssic ASP. I was returned this response from what i sent:
There is a part in there that is: status="OK"
How can i parse the status value?
This is a tough post as i'm not sure if i should be posting it in the asp forum or xml, thought i'd try here first.
Thanks
I successfully send an xml pack wrapped in a SOAP envelope using calssic ASP. I was returned this response from what i sent:
Code:
<soapenv:Envelope xmlns:soapenv="[URL unfurl="true"]http://schemas.xmlsoap.org/soap/envelope/"[/URL] xmlns:xsd="[URL unfurl="true"]http://www.w3.org/2001/XMLSchema"[/URL] xmlns:xsi="[URL unfurl="true"]http://www.w3.org/2001/XMLSchema-instance">[/URL]
<soapenv:Body>
<ns1:receiveValidationXMLMessageResponse soapenv:encodingStyle="[URL unfurl="true"]http://schemas.xmlsoap.org/soap/encoding/"[/URL] xmlns:ns1="[URL unfurl="true"]http://company.com">[/URL]
<receiveValidationXMLMessageReturn xsi:type="soapenc:string" xmlns:soapenc="[URL unfurl="true"]http://schemas.xmlsoap.org/soap/encoding/"><response[/URL] chainID="RK" companyID="DS" propertyID="100015" requestID="RK-DS-100015-20060815082019020" status="OK" time="20060815111804" queue="HccJMS020">
<message text="Your xml passed the validation,update is processing" code="PENDING"/>
</response>
</receiveValidationXMLMessageReturn>
</ns1:receiveValidationXMLMessageResponse>
</soapenv:Body>
</soapenv:Envelope>
There is a part in there that is: status="OK"
How can i parse the status value?
This is a tough post as i'm not sure if i should be posting it in the asp forum or xml, thought i'd try here first.
Thanks