How do I read XML tag value when it contains namespace like ns0:
I have a soap response from a PostXML call.
Need help in reading the value of a tag: Ticket_number
I am not able to read the value TKT0001, more so because of the namespace
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<ns0:Test_soap_service xmlns:ns0="urn:Create_Ticket" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ns0:Ticket_Number>TKT0001</ns0:Ticket_Number>
</ns0:Test_soap_service>
</soapenv:Body>
</soapenv:Envelope>

