function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
ManjunathManjunath 

Get child elements with namespace.

Hi,

 

Anyone knows how to get child elements with namespace.

 

Example :

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <soap:Body>
    <InvokeResponse xmlns="http://tempuri.org/">
      <InvokeResult>Hello world</InvokeResult>
    </InvokeResponse>
  </soap:Body>
</soap:Envelope>

 

I want to get the value of  InvokeResult node.

 

Regards,