xsl-list
[Top] [All Lists]

RE: Problems with XALAN parsing an xml with a namespace having a #

2004-02-11 04:28:29
I decalre the complete name space as it is present in the XML i get. My
name space declaration looks like this :

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
xmlns:fo="http://www.w3.org/1999/XSL/Format";
xmlns:s="uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882"
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
xmlns:rs="urn:schemas-microsoft-com:rowset" xmlns:z="#RowsetSchema">
As seen "xmlns:rs="urn:schemas-microsoft-com:rowset" is present. The
error appears for some other reason.
I guess it is because of the xmlns:z="#RowsetSchema", coz whenever i
knock off the # in both my xml and XSL , it works fine.

-Satish




-----Original Message-----
From: owner-xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
[mailto:owner-xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com]On Behalf Of 
David
Carlisle
Sent: Wednesday, February 11, 2004 3:44 PM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: Re: [xsl] Problems with XALAN parsing an xml with a namespace
having a #



The error message is quite cler it seems:
   Unable to resolve prefix 'rs'.
your XPath uses an rs prefix, so you need to declare that as a namespace
   prefic in your stylesheet.
Add
xmlns:rs="urn:schemas-microsoft-com:rowset"
to your xsl:stylesheet element.

David

-- 
http://www.dcarlisle.demon.co.uk/matthew

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



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