The XML namespaces are creating a problem for me and I am not able to pick any value. I believe this is happening because some tags are having namespaces or some are not.
Can you please help me to create an XSLT to get the desired output?
Sample Input -
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns3:NotificationResponse xmlns:ns3="http://www.test.com/ns/wsdl/test-V2_4" xmlns="http://www.test.com/ns/xsd/test-V2_1" xmlns:ns2="http://www.test.com/ns/xsd/test-V2_2">
<Header>
<appCode />
<isRemNot>false</isRemNot>
<identification>Test</identification>
<msgDT>2018-05-01T16:29:12.937+02:00</msgDT>
</Header>
<Contract />
<Notification>
<ns2:notificationTypeCode>TestTypeCode</ns2:notificationTypeCode>
</Notification>
</ns3:NotificationResponse>
</soap:Body>
</soap:Envelope>
Sample Output -
<Contract>
<isRemNot>false</isRemNot>
<identification>Test</identification>
<msgDT>2018-05-01T16:29:12.937+02:00</msgDT>
<notificationTypeCode>TestTypeCode</notificationTypeCode>
<Contract>