This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

document() and namespaces



 Hello everybody,

 I have a problem when trying to access an xml file with name-spaces
with 'document()' from xsl:

 The xml looks like this:
---------------------
 <?xml version="1.0"?>
 <?cocoon-process type="xsp"?>
 <?cocoon-process type="xslt"?>
 <?xml-stylesheet type="text/xsl" href="/xsl/articulos.xsl"?>

 <xsp:page language="java"
           xmlns:xsp="http://www.apache.org/1999/XSP/Core";
           xmlns:contador="http://www.e-inteligentia.com";>

<tag>
   <value>whatever</value>
</tag>

</xsp:page>
------------------------

And a bit of the xsl:
--------------------------------
<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
                xmlns:xsp="http://www.apache.org/1999/XSP/Core";>

..........
   <xsl:value-of select="document($file)/xsp:page/tag/value"/>
...........

</xsl:stylesheet>
--------------------------------

 I get the error 'Can not load requested doc: my_file.xml' using Cocoon.

 I have no problems when I don't use the name-space 'xsp',  What am I
doing wrong?

 Thank you in advance...

/Ruben







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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]