Vím, že je to dost staré, ale dnes jsem si toho všiml a vzpomněl jsem si na bolest, kterou jsem zažil při pokusu vypořádat se s XML s jmenným prostorem. Mým řešením bylo odstranit jmenné prostory pomocí XSLT transformace a zpracovat je jako obyčejné staré XML. Funkce, kterou jsem k tomu použil, je:
function remove_namespace( i_xml in xmltype )
return xmltype
is
v_xml xmltype default i_xml;
v_xsl varchar2(32767);
begin
v_xsl := '<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="*">
<!-- remove element prefix (if any) -->
<xsl:element name="{local-name()}">
<!-- process attributes -->
<xsl:for-each select="@*">
<!-- remove attribute prefix (if any) -->
<!-- this if filters out any xmlns="" atts that have no
namespace prefix in the xml -->
<xsl:if test="(local-name() != ''xmlns'')">
<xsl:attribute name="{local-name()}">
<xsl:value-of select="."/>
</xsl:attribute>
</xsl:if>
</xsl:for-each>
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
</xsl:stylesheet>';
return v_xml.transform(xmltype(v_xsl));
end;