You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by Guoliang Cao <ca...@ispsoft.com> on 2000/12/01 16:42:28 UTC

transformation problem with namespace.

Hi there,

I have a xml file like this:
<provRequest>
<a>A</a>
</provRequest>

My xsl files work fine with this. But when I added namespace into the
header,

<provRequest xmlns='http://www.abc.com'
    xmlns:xsi='http://www.w3.org/1999/XMLSchema-instance'
    xsi:schemaLocation='http://www.abc.com provRequest.xsd'>
<a>A</a>
</provRequest>

the transformation failed to find the inner element <a>.  I wonder what
this might be.

Thanks a lot.

Guoliang