Re: id/idref

Subject: Re: id/idref
From: "Steve Muench" <SMUENCH@xxxxxxxxxxxxx>
Date: 05 May 99 12:11:25 -0700
I tried your exact examples above and 
got the expected output with XT's latest version. 
____________________________________________________________ 
Steve Muench, Consulting Product Manager & XML Evangelist 
Java Business Objects Dev't Team - http://www.oracle.com/xml
--- Begin Message ---
Subject: id/idref
From: Bovone Stefano <Stefano.Bovone@xxxxxxxx>
Date: 05 May 99 05:54:46
I write and I hope someone may help me.

I have the following xml and xsl files:

<?xml version="1.0"?>
<!DOCTYPE document [
<!ELEMENT document (para)+>
<!ELEMENT para (#PCDATA)>
<!ATTLIST para id ID #REQUIRED>
]>
<document>
 <para id="d1">First sentence</para>
 <para id="d2">Second sentence</para>
</document>

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

<xsl:template match="/">
 <A>
  <xsl:value-of select="id('d1')"/>
 </A>
</xsl:template>

</xsl:stylesheet>

I expect the following output:

<A>First sentence</A>

but I obtain <A/>.

Where is the problem ?

Thanks, in advance.

Bye.


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

--- End Message ---
Current Thread