How to remove namespace prefix before an element using XSLT -


i have xml given below. ideally want remove namespace prefix before checkresponse tag. should <checkresponse> instead of <def:checkresponse>

<?xml version="1.0" encoding="utf-8"?> <soapenv:envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"     xmlns:def="http://www.test.com/defaultnamespace/">     <soapenv:header/>     <soapenv:body>         <def:checkresponse>             <checkresponseheader>                 <checkresponsenumber>                     <checkbuyerordernumber>450982323438</checkbuyerordernumber>                 </checkresponsenumber>             </checkresponseheader>             <checkresponsesummary>this response</checkresponsesummary>         </def:checkresponse>     </soapenv:body>  </soapenv:envelope> 

regards, ravi kumar a


Comments

Popular posts from this blog

WPF: binding viewmodel property of type DateTime to Calendar inside ItemsControl -

java - Getting corefrences with Standard corenlp package -

jQuery clickable div with working mailto link inside -