RE: converting xsl to html

Subject: RE: converting xsl to html
From: "Rakesh Ajmera" <rakesh_ajmera@xxxxxxxxxx>
Date: Fri, 3 Mar 2000 18:05:03 -0600
xsl:value-of select="greeting"/>

opening "<" is missing  above!!


-----Original Message-----
From: owner-xsl-list@xxxxxxxxxxxxxxxx
[mailto:owner-xsl-list@xxxxxxxxxxxxxxxx]On Behalf Of Neelam Checknita
Sent: Friday, March 03, 2000 4:08 PM
To: 'xsl-list@xxxxxxxxxxxxxxxx'
Subject: converting xsl to html


Hi,

I'm trying to develop a servlet that will take an xslt doc and and xml doc,
and spit out an html doc.  However, I'm having some problems.
The html document that gets produced still has the xsl tags in it!  How do I
get rid of these?  (PS, i've used both oracle xsl api and xalan,
both produce similar results)

Here's the date I used (very simple)

XML:
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl"?>
<greeting>
Hello World.
</greeting>

XSL:
<?xml version="1.0"?>
<html xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; xsl:version="1.0">
<head><title>Greeting</title></head>
<body>Words of greeting:<br/>
	<b><i><u>xsl:value-of select="greeting"/></u></i></b>
</body>
</html>

HTML result:
<html>
<head>
<title>Greeting</title>
</head>
<body>Words of greeting:<br>
<b><i>
<u>xsl:value-of select="greeting"/&gt;</u>
</i></b>
</body>
</html>

is there something wrong with either the template or the xml doc?

Thanks!!


 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