You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cocoon.apache.org by Didier Imbreckx <di...@met.wallonie.be> on 2000/11/29 16:26:15 UTC

XSLT working fine with msxml not with Xalan/cocoon

I need some expert help/explanation.

The following xsl file  is working fine with msxml, but I 'm receiving en
error "org.apache.xalan.xslt.XSLTProcessorException" on Xalan/cocoon.

Here is my xml file (test.xml):
<?xml version="1.0" encoding="iso-8859-1"?>
<?xml-stylesheet href="test.xsl" type="text/xsl" ?>
<AAA>
 <BBB>
  <CCC>C1</CCC>
  <DDD>D1</DDD>
  <EEE>E1</EEE>
  <EEE>E2</EEE>
  <EEE>E3</EEE>
 </BBB>
</AAA>

Here is the xsl file (test.xsl)
<?xml version="1.0" encoding="ISO-8859-1" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<?cocoon-process type="xslt"?>
<xsl:template match="/">
<HTML>
<HEAD>
   <TITLE>Test</TITLE>
</HEAD>
<BODY>
<H3 ALIGN="CENTER">Test </H3>
<CENTER><TABLE BORDER="1">
 <TR><TD><xsl:apply-templates /></TD></TR>
</TABLE></CENTER>
<BR/><BR/>
</BODY>
</HTML>
</xsl:template>
xsl:template match="AAA">
 <xsl:for-each select="BBB">
    <xsl:value-of select="CCC"/><BR/>
    <xsl:value-of select="DDD"/><BR/>
    <xsl:for-each select="EEE">
         <xsl:value-of />
    </xsl:for-each>
 </xsl:for-each>
</xsl:template>
</xsl:stylesheet>

and here is the error :
org.apache.xalan.xslt.XSLProcessorException:
 at java.lang.Throwable.(Compiled Code)
 at java.lang.Exception.(Compiled Code)
 at org.xml.sax.SAXException.(Compiled Code)
 at org.apache.xalan.xpath.XPathException.(Compiled Code)
 at org.apache.xalan.xslt.XSLProcessorException.(Compiled Code)
 at org.apache.xalan.xslt.XSLTEngineImpl.error(Compiled Code)
 at org.apache.xalan.xslt.XSLTEngineImpl.error(Compiled Code)
 at org.apache.xalan.xslt.ElemValueOf.(Compiled Code)
 at org.apache.xalan.xslt.StylesheetHandler.startElement(Compiled Code)
 at org.apache.xalan.xpath.xml.TreeWalker.startNode(Compiled Code)
 at org.apache.xalan.xpath.xml.TreeWalker.traverse(Compiled Code)
 at org.apache.xalan.xslt.XSLTEngineImpl.processStylesheet(Compiled Code)
 at org.apache.xalan.xslt.XSLTEngineImpl.process(Compiled Code)
 at org.apache.cocoon.transformer.XalanTransformer.transform(Compiled Code)
 at org.apache.cocoon.processor.xslt.XSLTProcessor.process(Compiled Code)
 at org.apache.cocoon.Engine.handle(Compiled Code)
 at org.apache.cocoon.Cocoon.service(Compiled Code)
 at javax.servlet.http.HttpServlet.service(Compiled Code)
 at org.apache.tomcat.core.ServletWrapper.handleRequest(Compiled Code)
 at org.apache.tomcat.core.ContextManager.service(Compiled Code)
 at
org.apache.tomcat.service.connector.Ajp12ConnectionHandler.processConnection
(Compiled Code)
 at org.apache.tomcat.service.TcpConnectionThread.run(Compiled Code)
 at java.lang.Thread.run(Compiled Code)

Thanks for any help.
I am using cocoon 1.8 Xalan 1_2_D02

Didier



Re: XSLT working fine with msxml not with Xalan/cocoon

Posted by Didier Villevalois <dv...@sqli.com>.
Hi Didier,

your line <?cocoon-process type="xslt"?> should be in the xml file and
not in the stylesheet...

WARN the XSLT syntax of msxml is not the standardized one. So be
carreful when porting your xslt files to the standard syntax that uses
Xalan...

A+. Didier.

DI> I need some expert help/explanation.

DI> The following xsl file  is working fine with msxml, but I 'm receiving en
DI> error "org.apache.xalan.xslt.XSLTProcessorException" on Xalan/cocoon.

DI> Here is my xml file (test.xml):
DI> <?xml version="1.0" encoding="iso-8859-1"?>
DI> <?xml-stylesheet href="test.xsl" type="text/xsl" ?>
DI> <AAA>
DI>  <BBB>
DI>   <CCC>C1</CCC>
DI>   <DDD>D1</DDD>
DI>   <EEE>E1</EEE>
DI>   <EEE>E2</EEE>
DI>   <EEE>E3</EEE>
DI>  </BBB>
DI> </AAA>

DI> Here is the xsl file (test.xsl)
DI> <?xml version="1.0" encoding="ISO-8859-1" ?>
DI> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
DI> <?cocoon-process type="xslt"?>
DI> <xsl:template match="/">
DI> <HTML>
DI> <HEAD>
DI>    <TITLE>Test</TITLE>
DI> </HEAD>
DI> <BODY>
DI> <H3 ALIGN="CENTER">Test </H3>
DI> <CENTER><TABLE BORDER="1">
DI>  <TR><TD><xsl:apply-templates /></TD></TR>
DI> </TABLE></CENTER>
DI> <BR/><BR/>
DI> </BODY>
DI> </HTML>
DI> </xsl:template>
DI> xsl:template match="AAA">
DI>  <xsl:for-each select="BBB">
DI>     <xsl:value-of select="CCC"/><BR/>
DI>     <xsl:value-of select="DDD"/><BR/>
DI>     <xsl:for-each select="EEE">
DI>          <xsl:value-of />
DI>     </xsl:for-each>
DI>  </xsl:for-each>
DI> </xsl:template>
DI> </xsl:stylesheet>

DI> and here is the error :
DI> org.apache.xalan.xslt.XSLProcessorException:
DI>  at java.lang.Throwable.(Compiled Code)
DI>  at java.lang.Exception.(Compiled Code)
DI>  at org.xml.sax.SAXException.(Compiled Code)
DI>  at org.apache.xalan.xpath.XPathException.(Compiled Code)
DI>  at org.apache.xalan.xslt.XSLProcessorException.(Compiled Code)
DI>  at org.apache.xalan.xslt.XSLTEngineImpl.error(Compiled Code)
DI>  at org.apache.xalan.xslt.XSLTEngineImpl.error(Compiled Code)
DI>  at org.apache.xalan.xslt.ElemValueOf.(Compiled Code)
DI>  at org.apache.xalan.xslt.StylesheetHandler.startElement(Compiled Code)
DI>  at org.apache.xalan.xpath.xml.TreeWalker.startNode(Compiled Code)
DI>  at org.apache.xalan.xpath.xml.TreeWalker.traverse(Compiled Code)
DI>  at org.apache.xalan.xslt.XSLTEngineImpl.processStylesheet(Compiled Code)
DI>  at org.apache.xalan.xslt.XSLTEngineImpl.process(Compiled Code)
DI>  at org.apache.cocoon.transformer.XalanTransformer.transform(Compiled Code)
DI>  at org.apache.cocoon.processor.xslt.XSLTProcessor.process(Compiled Code)
DI>  at org.apache.cocoon.Engine.handle(Compiled Code)
DI>  at org.apache.cocoon.Cocoon.service(Compiled Code)
DI>  at javax.servlet.http.HttpServlet.service(Compiled Code)
DI>  at org.apache.tomcat.core.ServletWrapper.handleRequest(Compiled Code)
DI>  at org.apache.tomcat.core.ContextManager.service(Compiled Code)
DI>  at
DI> org.apache.tomcat.service.connector.Ajp12ConnectionHandler.processConnection
DI> (Compiled Code)
DI>  at org.apache.tomcat.service.TcpConnectionThread.run(Compiled Code)
DI>  at java.lang.Thread.run(Compiled Code)

DI> Thanks for any help.
DI> I am using cocoon 1.8 Xalan 1_2_D02

DI> Didier



DI> ---------------------------------------------------------------------
DI> To unsubscribe, e-mail: cocoon-users-unsubscribe@xml.apache.org
DI> For additional commands, e-mail: cocoon-users-help@xml.apache.org


___________________________________________________________________
  Didier Villevalois - Analyst - Techmetrix Research (SQLI Group)
dvillevalois@techmetrix.net 55-57 rue Saint Roch 75001 Paris France



Re: XSLT working fine with msxml not with Xalan/cocoon

Posted by Michael Hoffmann <m-...@ti.com>.
didier

shouldnt be the cocoon-process instruction above the stylesheet ?
(and dont you need it in the xml file too ?)
and then u forgot a "<"
oh and you should leave a space in <br />

> 
> Here is the xsl file (test.xsl)
> <?xml version="1.0" encoding="ISO-8859-1" ?>
> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
> <?cocoon-process type="xslt"?>
> <xsl:template match="/">
> <HTML>
> <HEAD>
>    <TITLE>Test</TITLE>
> </HEAD>
> <BODY>
> <H3 ALIGN="CENTER">Test </H3>
> <CENTER><TABLE BORDER="1">
>  <TR><TD><xsl:apply-templates /></TD></TR>
> </TABLE></CENTER>
> <BR/><BR/>
> </BODY>
> </HTML>
> </xsl:template>
> xsl:template match="AAA">

here you forgot a < .. but i guess its a copy and paste error .. right ?

>  <xsl:for-each select="BBB">
>     <xsl:value-of select="CCC"/><BR/>
>     <xsl:value-of select="DDD"/><BR/>
>     <xsl:for-each select="EEE">
>          <xsl:value-of />
??? select="..."

>     </xsl:for-each>
>  </xsl:for-each>
> </xsl:template>
> </xsl:stylesheet>


dont know if this helps... i just what was wondering..

michael

Re: XSLT working fine with msxml not with Xalan/cocoon

Posted by Didier Imbreckx <di...@met.wallonie.be>.
Thank you, Konstantin.  It's working now.

Didier

----- Message d'origine -----
De : Piroumian, Konstantin <KP...@flagship.ru>
À : <co...@xml.apache.org>; Didier Imbreckx
<di...@met.wallonie.be>
Envoyé : mercredi 29 novembre 2000 16:37
Objet : Re: XSLT working fine with msxml not with Xalan/cocoon


>
>     <xsl:for-each select="EEE">
>          <xsl:value-of />     <===  This is the wrong line
>     </xsl:for-each>
>
> Use this instead:
> <xsl:value-of select="."/>
>
> Regards,
>     Konstantin Piroumian
>
> ----- Original Message -----
> From: "Didier Imbreckx" <di...@met.wallonie.be>
> To: <co...@xml.apache.org>
> Sent: 29 ?????? 2000 ?., ????? 18:26
> Subject: XSLT working fine with msxml not with Xalan/cocoon
>
>
> > I need some expert help/explanation.
> >
> > The following xsl file  is working fine with msxml, but I 'm receiving
en
> > error "org.apache.xalan.xslt.XSLTProcessorException" on Xalan/cocoon.
> >
> > Here is my xml file (test.xml):
> > <?xml version="1.0" encoding="iso-8859-1"?>
> > <?xml-stylesheet href="test.xsl" type="text/xsl" ?>
> > <AAA>
> >  <BBB>
> >   <CCC>C1</CCC>
> >   <DDD>D1</DDD>
> >   <EEE>E1</EEE>
> >   <EEE>E2</EEE>
> >   <EEE>E3</EEE>
> >  </BBB>
> > </AAA>
> >
> > Here is the xsl file (test.xsl)
> > <?xml version="1.0" encoding="ISO-8859-1" ?>
> > <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
> > <?cocoon-process type="xslt"?>
> > <xsl:template match="/">
> > <HTML>
> > <HEAD>
> >    <TITLE>Test</TITLE>
> > </HEAD>
> > <BODY>
> > <H3 ALIGN="CENTER">Test </H3>
> > <CENTER><TABLE BORDER="1">
> >  <TR><TD><xsl:apply-templates /></TD></TR>
> > </TABLE></CENTER>
> > <BR/><BR/>
> > </BODY>
> > </HTML>
> > </xsl:template>
> > xsl:template match="AAA">
> >  <xsl:for-each select="BBB">
> >     <xsl:value-of select="CCC"/><BR/>
> >     <xsl:value-of select="DDD"/><BR/>
> >     <xsl:for-each select="EEE">
> >          <xsl:value-of />
> >     </xsl:for-each>
> >  </xsl:for-each>
> > </xsl:template>
> > </xsl:stylesheet>
> >
> > and here is the error :
> > org.apache.xalan.xslt.XSLProcessorException:
> >  at java.lang.Throwable.(Compiled Code)
> >  at java.lang.Exception.(Compiled Code)
> >  at org.xml.sax.SAXException.(Compiled Code)
> >  at org.apache.xalan.xpath.XPathException.(Compiled Code)
> >  at org.apache.xalan.xslt.XSLProcessorException.(Compiled Code)
> >  at org.apache.xalan.xslt.XSLTEngineImpl.error(Compiled Code)
> >  at org.apache.xalan.xslt.XSLTEngineImpl.error(Compiled Code)
> >  at org.apache.xalan.xslt.ElemValueOf.(Compiled Code)
> >  at org.apache.xalan.xslt.StylesheetHandler.startElement(Compiled Code)
> >  at org.apache.xalan.xpath.xml.TreeWalker.startNode(Compiled Code)
> >  at org.apache.xalan.xpath.xml.TreeWalker.traverse(Compiled Code)
> >  at org.apache.xalan.xslt.XSLTEngineImpl.processStylesheet(Compiled
Code)
> >  at org.apache.xalan.xslt.XSLTEngineImpl.process(Compiled Code)
> >  at org.apache.cocoon.transformer.XalanTransformer.transform(Compiled
> Code)
> >  at org.apache.cocoon.processor.xslt.XSLTProcessor.process(Compiled
Code)
> >  at org.apache.cocoon.Engine.handle(Compiled Code)
> >  at org.apache.cocoon.Cocoon.service(Compiled Code)
> >  at javax.servlet.http.HttpServlet.service(Compiled Code)
> >  at org.apache.tomcat.core.ServletWrapper.handleRequest(Compiled Code)
> >  at org.apache.tomcat.core.ContextManager.service(Compiled Code)
> >  at
> >
>
org.apache.tomcat.service.connector.Ajp12ConnectionHandler.processConnection
> > (Compiled Code)
> >  at org.apache.tomcat.service.TcpConnectionThread.run(Compiled Code)
> >  at java.lang.Thread.run(Compiled Code)
> >
> > Thanks for any help.
> > I am using cocoon 1.8 Xalan 1_2_D02
> >
> > Didier
> >
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: cocoon-users-unsubscribe@xml.apache.org
> > For additional commands, e-mail: cocoon-users-help@xml.apache.org
> >


Re: XSLT working fine with msxml not with Xalan/cocoon

Posted by "Piroumian, Konstantin" <KP...@flagship.ru>.
    <xsl:for-each select="EEE">
         <xsl:value-of />     <===  This is the wrong line
    </xsl:for-each>

Use this instead:
<xsl:value-of select="."/>

Regards,
    Konstantin Piroumian

----- Original Message -----
From: "Didier Imbreckx" <di...@met.wallonie.be>
To: <co...@xml.apache.org>
Sent: 29 ?????? 2000 ?., ????? 18:26
Subject: XSLT working fine with msxml not with Xalan/cocoon


> I need some expert help/explanation.
>
> The following xsl file  is working fine with msxml, but I 'm receiving en
> error "org.apache.xalan.xslt.XSLTProcessorException" on Xalan/cocoon.
>
> Here is my xml file (test.xml):
> <?xml version="1.0" encoding="iso-8859-1"?>
> <?xml-stylesheet href="test.xsl" type="text/xsl" ?>
> <AAA>
>  <BBB>
>   <CCC>C1</CCC>
>   <DDD>D1</DDD>
>   <EEE>E1</EEE>
>   <EEE>E2</EEE>
>   <EEE>E3</EEE>
>  </BBB>
> </AAA>
>
> Here is the xsl file (test.xsl)
> <?xml version="1.0" encoding="ISO-8859-1" ?>
> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
> <?cocoon-process type="xslt"?>
> <xsl:template match="/">
> <HTML>
> <HEAD>
>    <TITLE>Test</TITLE>
> </HEAD>
> <BODY>
> <H3 ALIGN="CENTER">Test </H3>
> <CENTER><TABLE BORDER="1">
>  <TR><TD><xsl:apply-templates /></TD></TR>
> </TABLE></CENTER>
> <BR/><BR/>
> </BODY>
> </HTML>
> </xsl:template>
> xsl:template match="AAA">
>  <xsl:for-each select="BBB">
>     <xsl:value-of select="CCC"/><BR/>
>     <xsl:value-of select="DDD"/><BR/>
>     <xsl:for-each select="EEE">
>          <xsl:value-of />
>     </xsl:for-each>
>  </xsl:for-each>
> </xsl:template>
> </xsl:stylesheet>
>
> and here is the error :
> org.apache.xalan.xslt.XSLProcessorException:
>  at java.lang.Throwable.(Compiled Code)
>  at java.lang.Exception.(Compiled Code)
>  at org.xml.sax.SAXException.(Compiled Code)
>  at org.apache.xalan.xpath.XPathException.(Compiled Code)
>  at org.apache.xalan.xslt.XSLProcessorException.(Compiled Code)
>  at org.apache.xalan.xslt.XSLTEngineImpl.error(Compiled Code)
>  at org.apache.xalan.xslt.XSLTEngineImpl.error(Compiled Code)
>  at org.apache.xalan.xslt.ElemValueOf.(Compiled Code)
>  at org.apache.xalan.xslt.StylesheetHandler.startElement(Compiled Code)
>  at org.apache.xalan.xpath.xml.TreeWalker.startNode(Compiled Code)
>  at org.apache.xalan.xpath.xml.TreeWalker.traverse(Compiled Code)
>  at org.apache.xalan.xslt.XSLTEngineImpl.processStylesheet(Compiled Code)
>  at org.apache.xalan.xslt.XSLTEngineImpl.process(Compiled Code)
>  at org.apache.cocoon.transformer.XalanTransformer.transform(Compiled
Code)
>  at org.apache.cocoon.processor.xslt.XSLTProcessor.process(Compiled Code)
>  at org.apache.cocoon.Engine.handle(Compiled Code)
>  at org.apache.cocoon.Cocoon.service(Compiled Code)
>  at javax.servlet.http.HttpServlet.service(Compiled Code)
>  at org.apache.tomcat.core.ServletWrapper.handleRequest(Compiled Code)
>  at org.apache.tomcat.core.ContextManager.service(Compiled Code)
>  at
>
org.apache.tomcat.service.connector.Ajp12ConnectionHandler.processConnection
> (Compiled Code)
>  at org.apache.tomcat.service.TcpConnectionThread.run(Compiled Code)
>  at java.lang.Thread.run(Compiled Code)
>
> Thanks for any help.
> I am using cocoon 1.8 Xalan 1_2_D02
>
> Didier
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: cocoon-users-unsubscribe@xml.apache.org
> For additional commands, e-mail: cocoon-users-help@xml.apache.org
>

Re: XSLT working fine with msxml not with Xalan/cocoon

Posted by Antonio Cabezuelo Vivo <ac...@yahoo.com>.
The "xsl:value-of" element must have a "select" attribute.

Use this:
<xsl:for-each select="EEE">
    <xsl:value-of select="."/>
</xsl:for-each>

Don't trust much on MS standard implementations.
___
Antonio Cabezuelo


----- Original Message -----
From: Didier Imbreckx <di...@met.wallonie.be>
To: <co...@xml.apache.org>
Sent: Wednesday, November 29, 2000 4:26 PM
Subject: XSLT working fine with msxml not with Xalan/cocoon


> I need some expert help/explanation.
>
> The following xsl file  is working fine with msxml, but I 'm receiving en
> error "org.apache.xalan.xslt.XSLTProcessorException" on Xalan/cocoon.
>
> Here is my xml file (test.xml):
> <?xml version="1.0" encoding="iso-8859-1"?>
> <?xml-stylesheet href="test.xsl" type="text/xsl" ?>
> <AAA>
>  <BBB>
>   <CCC>C1</CCC>
>   <DDD>D1</DDD>
>   <EEE>E1</EEE>
>   <EEE>E2</EEE>
>   <EEE>E3</EEE>
>  </BBB>
> </AAA>
>
> Here is the xsl file (test.xsl)
> <?xml version="1.0" encoding="ISO-8859-1" ?>
> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
> <?cocoon-process type="xslt"?>
> <xsl:template match="/">
> <HTML>
> <HEAD>
>    <TITLE>Test</TITLE>
> </HEAD>
> <BODY>
> <H3 ALIGN="CENTER">Test </H3>
> <CENTER><TABLE BORDER="1">
>  <TR><TD><xsl:apply-templates /></TD></TR>
> </TABLE></CENTER>
> <BR/><BR/>
> </BODY>
> </HTML>
> </xsl:template>
> xsl:template match="AAA">
>  <xsl:for-each select="BBB">
>     <xsl:value-of select="CCC"/><BR/>
>     <xsl:value-of select="DDD"/><BR/>
>     <xsl:for-each select="EEE">
>          <xsl:value-of />
>     </xsl:for-each>
>  </xsl:for-each>
> </xsl:template>
> </xsl:stylesheet>
>
> and here is the error :
> org.apache.xalan.xslt.XSLProcessorException:
>  at java.lang.Throwable.(Compiled Code)
>  at java.lang.Exception.(Compiled Code)
>  at org.xml.sax.SAXException.(Compiled Code)
>  at org.apache.xalan.xpath.XPathException.(Compiled Code)
>  at org.apache.xalan.xslt.XSLProcessorException.(Compiled Code)
>  at org.apache.xalan.xslt.XSLTEngineImpl.error(Compiled Code)
>  at org.apache.xalan.xslt.XSLTEngineImpl.error(Compiled Code)
>  at org.apache.xalan.xslt.ElemValueOf.(Compiled Code)
>  at org.apache.xalan.xslt.StylesheetHandler.startElement(Compiled Code)
>  at org.apache.xalan.xpath.xml.TreeWalker.startNode(Compiled Code)
>  at org.apache.xalan.xpath.xml.TreeWalker.traverse(Compiled Code)
>  at org.apache.xalan.xslt.XSLTEngineImpl.processStylesheet(Compiled Code)
>  at org.apache.xalan.xslt.XSLTEngineImpl.process(Compiled Code)
>  at org.apache.cocoon.transformer.XalanTransformer.transform(Compiled
Code)
>  at org.apache.cocoon.processor.xslt.XSLTProcessor.process(Compiled Code)
>  at org.apache.cocoon.Engine.handle(Compiled Code)
>  at org.apache.cocoon.Cocoon.service(Compiled Code)
>  at javax.servlet.http.HttpServlet.service(Compiled Code)
>  at org.apache.tomcat.core.ServletWrapper.handleRequest(Compiled Code)
>  at org.apache.tomcat.core.ContextManager.service(Compiled Code)
>  at
>
org.apache.tomcat.service.connector.Ajp12ConnectionHandler.processConnection
> (Compiled Code)
>  at org.apache.tomcat.service.TcpConnectionThread.run(Compiled Code)
>  at java.lang.Thread.run(Compiled Code)
>
> Thanks for any help.
> I am using cocoon 1.8 Xalan 1_2_D02
>
> Didier
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: cocoon-users-unsubscribe@xml.apache.org
> For additional commands, e-mail: cocoon-users-help@xml.apache.org


Re: XSLT working fine with msxml not with Xalan/cocoon

Posted by Ted Garrett <Mo...@tedgarrett.penguinpowered.com>.
Move the <?cocoon-process type="xslt"?> declaration into test.xml instead
of test.xsl or else the webserver will only serve up the xml...

On Wed, 29 Nov 2000, Didier Imbreckx wrote:

> Here is my xml file (test.xml):
> <?xml version="1.0" encoding="iso-8859-1"?>
> <?xml-stylesheet href="test.xsl" type="text/xsl" ?>
>
> Here is the xsl file (test.xsl)
> <?xml version="1.0" encoding="ISO-8859-1" ?>
> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
> <?cocoon-process type="xslt"?>

---------------------------------------------------------------------------
Feel disillusioned?  I've got some great new illusions, right here!
---------------------------------------------------------------------------