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

apache - Add omitted ? to URLs -

redirect - bbPress Forum - rewrite to wwww.mysite prohibits login -

php - How can I stop spam on my custom forum/blog? -