Hi,
I have to transform an input-xml-document,
whose schema doesnt define an target-namespace.
i.e the xml-instance includes xsi:noNamespaceSchemaLocation="http://www....
In my XSLT-stylesheet I wanted to define a xmlns-prefix for that
null-namespace,
in order to be independent of coming namespace-changes.
I've tried things like this:
<xsl:stylesheet version="2.0" .... xmlns:my="">
<xsl:template match="my:*">
...
rsp.
<xsl:stylesheet version="2.0" .... xmlns:my="#default">
<xsl:template match="my:*">
...
but unfortunally it seems not to be working.
Maybe the solution is obvious - can anybody please give me a hint?
thanks,
Siegfried
--~------------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--