change contenet type to text/xml or something like that..I am not sure

Hope it helps

-----Original Message-----
From: Kevin Gutch [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 10, 2002 3:50 PM
To: [EMAIL PROTECTED]
Subject: JSP 1.2


Hello,

I am trying to output JSP 1.2 from a stylesheet. I am stumbling on one
issue. I am sure it is user error but can not figure out what is going on.
My transformation works fine if I just output html code. However, if I try
to output JSP 1.2 the resulting page wants to add the xml document that the
transform was done on to the top of the output page.See below. Any
suggestion?


RESULT:
<?xml version="1.0" encoding="UTF-8"?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page"; version
="1.2"><jsp:text><html><head><title>Stylesheet
parameter</title></head><body><h2>XML source</h2><p>Hello</p><h2>Stylesheet
parameter</h2><p>The param1 stylesheet parameter has been set to default
value.</p></body></html></jsp:text></jsp:root>

STYLESHEET:


<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; version
="1.0">
  <xsl:param name="param1" select="'default value'"/>
     <xsl:template match="/">
     <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page"; version="1.2">
  <jsp:text>


    <html>
      <head><title>Stylesheet parameter</title></head>
      <body>
        <h2>XML source</h2>
          <p><xsl:value-of select="."/></p>
        <h2>Stylesheet parameter</h2>
          <p>The param1 stylesheet parameter has been set to <xsl:value-of
select="$param1"/>.</p>
      </body>
     </html>

       </jsp:text>
     </jsp:root>
  </xsl:template>

</xsl:stylesheet>

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com

Reply via email to