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: XML to HTML problem




Neelam Checknita wrote:
> 
> 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>

this should be
         <b><i><u><xsl:value-of select="greeting"/></u></i></b>
                  < is missing.
                  

> </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

Eric

-- 
------------------------------------------------------------------------
Eric van der Vlist                                              Dyomedea

http://www.dyomedea.com                          http://www.ducotede.com
------------------------------------------------------------------------


 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]