xsl-list
[Top] [All Lists]

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

2004-02-11 13:45:13
Your conclusions about the cause of the problem are highly unlikely. It is
impossible (or requires big luck) to guess the actual reason without seeing
a complete (but minimal, please) example (of the stylesheet(s)) that exhibit
the problem.


Cheers,

Dimitre Novatchev
FXSL developer,

http://fxsl.sourceforge.net/ -- the home of FXSL
Resume: http://fxsl.sf.net/DNovatchev/Resume/Res.html


"Satish Terala" <saterala(_at_)sapient(_dot_)com> wrote in message
news:B01D18C737644343B0F5E05B8BF2111B07793509(_at_)delmmsx02(_dot_)sapient(_dot_)com(_dot_)(_dot_)(_dot_)
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






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



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