env: INO3114
TOMCAT4.0.3
Apache 1.3.26
MSIE5.50.4522.1800, SP1
prob: when accesing tamino using passthru servlet i get the following error:
Invalid at the top level of the document, line 1, position 39
<?xml version="1.0" encoding="utf-8"?>
ana: passthru servlet is working, result is okay, if not xsl source is provided. jar files used are from INO installation.
xsl schema used is the one posted. xsl doc is stored in INO and accessible.
the following stylesheet is used:
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl=“XSLT Namespace”>
<xsl:template match=“/”>
<xsl:apply-templates />
</xsl:template>
<xsl:template match=“CUST_RECORD”>
CUSTOMER_LIST created by passthru servlet
CUSTOMERS
<TABLE width=“100%” CELLPADDING=“5”
BGCOLOR=“YELLOW” BORDER=“3”>
Company
CustomerID
Email_Addr
Phone_No
<xsl:apply-templates />
</xsl:template>
<xsl:template match=“CUST_RECORD”>
<xsl:apply-templates select=“CompanyName” />
<xsl:apply-templates select=“CustomerID” />
<xsl:apply-templates select=“Email” />
<xsl:apply-templates select=“Phone_No” />
</xsl:template>
<xsl:template match=“CompanyName”>
<xsl:value-of select=“.” />
</xsl:template>
<xsl:template match=“CustomerID”>
<xsl:value-of select=“.” />
</xsl:template>
<xsl:template match=“Email”>
<xsl:value-of select=“.” />
</xsl:template>
<xsl:template match=“Phone_No”>
<xsl:value-of select=“.” />
</xsl:template>
</xsl:stylesheet>
any idea where to look for
thanks in advance
michael