fix dmaap-listener startup and library
[sdnc/northbound.git] / ueb-listener / src / main / resources / removeNs.xslt
1 <?xml version="1.0" encoding="utf-8"?>
2 <xsl:stylesheet version="1.0"
3     xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
4     <xsl:output method="xml" indent="yes" omit-xml-declaration="yes"/>
5
6     <xsl:template match="*">
7         <xsl:element name="{local-name(.)}">
8             <xsl:apply-templates select="@* | node()" />
9         </xsl:element>
10     </xsl:template>
11     <xsl:template match="@*">
12         <xsl:attribute name="{local-name(.)}">
13       <xsl:value-of select="." />
14     </xsl:attribute>
15     </xsl:template>
16 </xsl:stylesheet>