RE: [xsl] Xslt Error

Subject: RE: [xsl] Xslt Error
From: Heather Lindsay <heather.lindsay@xxxxxxxxxxxxx>
Date: Fri, 15 Jun 2001 10:14:19 -0400
hi,
	It's hard to tell exactly what your problem is without seeing the
XSL but basically it looks like you have an <xsl:value-of .../> which is not
inside of an <xsl:template ...>.
Probably something like this:

<xsl:stylesheet ......>
<xsl:value-of select="something"/>
<xsl:template match="/">
</xsl:template>
</xsl:stylesheet>

Where you need something like this:

<xsl:stylesheet ......>
<xsl:template match="/">
	<xsl:value-of select="something"/>
</xsl:template>
</xsl:stylesheet>

Hope that helps,
Heather :)


-----Original Message-----
From: Earl Spencer [mailto:eapencer74@xxxxxxxxxxx]
Sent: Friday, June 15, 2001 9:26 AM
To: XSL-List@xxxxxxxxxxxxxxxxxxxxxx
Subject: [xsl] Xslt Error


Can anybody tell me what this error means,

XSL Error: Could not parse out.xsl document!
XSL Error: SAX Exception
Exception in thread "main" org.apache.xalan.xslt.XSLProcessorException: 
(StylesheetHandler) xsl:value-of not allowed inside a stylesheet!
        at 
org.apache.xalan.xslt.XSLTEngineImpl.error(XSLTEngineImpl.java:1731)
        at 
org.apache.xalan.xslt.XSLTEngineImpl.processStylesheet(XSLTEngineImpl.java:7
91)
        at org.apache.xalan.xslt.XSLTEngineImpl.process(XSLTEngineImpl.java,

Compiled Code)
        at psprm.main(psprm.java:25)
_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com


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

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


Current Thread