[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

<xsl:element> Problem

Subject: <xsl:element> Problem
From: "Dev Chandramani" <devc33@xxxxxxxxxxx>
Date: Fri, 7 Sep 2001 12:54:38 +0100
element problemleri
Hi,

I am fairly new to XSL so my apologies if I am missing something obvious.
I am trying to use XSL to output XML - sounds simple enough.

My example XML input document is :

	<?xml version="1.0"?>

	<test>
		<num>11</num>
		<num>22</num>
		<num>33</num>
	</test>

And my XSL stylesheet is :

	<?xml version='1.0'?>
	<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">

	<xsl:strip-space elements = "*" />
	<xsl:output method="text" indent="no" encoding="utf-8"/>

	<xsl:template match="/">

	<xsl:for-each select="//num">

		<xsl:element name="new-num"><xsl:value-of select="."/></xsl:element>
		<xsl:text>&#xa;</xsl:text>	<!-- output new line -->

	</xsl:for-each>

	</xsl:template>

	</xsl:stylesheet>

So what I expect the output to be like would be :

	<new-num>11</new-num>
	<new-num>22</new-num>
	<new-num>33</new-num>

But instead I'm getting :

	11
	22
	33

So it seems the <new-num> tags aren't being correctly outputted.
Even if I change the line that outputs the tags to be the following :

	<new-num><xsl:value-of select="."/></new-num>

I stil get the incorrect output.

I am using the xalan and xerces jar files from xalan version 2.2.D9 and jdk
1.3.1
Any help would be greatly appreciated.

Thanks in advance.

Dev.


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.