reading the node name using XPATH and XSLT
input XML File.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://kkkk/2.0/" xmlns:ns1="http://pppp/1.0/" xmlns:ns2="http://mmm/1.0/">
<soapenv:Header/>
<soapenv:Body>
<ns1:authenticateUserRequest>
<ns2:username>kkk</ns2:username>
<ns2:password>SSJKKKKKDI</ns2:password>
</ns1:authenticateUserRequest>
</soapenv:Body>
</soapenv:Envelope>
I need to extract the name of element(node) name immediate to <soapenv:Body>
in above given xml file.
for Example "authenticateUserRequest"
|