Re: [xsl] Simple XML to XML transformation question

Subject: Re: [xsl] Simple XML to XML transformation question
From: Bruce D'Arcus <bdarcus@xxxxxxxxxxxxx>
Date: Wed, 17 Nov 2004 13:22:06 -0500
On Nov 17, 2004, at 1:06 PM, Nick Roberts wrote:

Is seems to output a blank page??

Any ideas guys?

I'm not exactly sure what you're after, but you had at least one obvious incorrect xpath statement ("Car" instead of "car").


Try this for a start?

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>


<xsl:output method="xml" version="1.0" encoding="iso-8859-1" indent="yes"/>

<xsl:template match="Data">
 <car>
  <xsl:apply-templates/>
 </car>
</xsl:template>

<xsl:template match="car">
 <model>
  <xsl:apply-templates/>
 </model>
</xsl:template>

</xsl:stylesheet>

Bruce

Current Thread