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]

RE: Xslt Error


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@hotmail.com]
Sent: Friday, June 15, 2001 9:26 AM
To: XSL-List@lists.mulberrytech.com
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


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