xsl-list
[Top] [All Lists]

Re: [xsl] Transforming XML that contains a DTD

2006-09-19 05:39:58

most likely the dtd defaults a namespace declaration so
<zzz>
in the file is seen as
<zzz xmlns="something">
by the XML processor.

If so you need to add
xmlns:s="something" to your xsl:stylesheet element and then refer to zzz
as s:zzz so it refers to the element in a namespace not to the element
in no namespace.

David

--~------------------------------------------------------------------
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>
--~--

<Prev in Thread] Current Thread [Next in Thread>