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]
Other format: [Raw text]

problem displaying (value-of select=) header values when using TransformXML function


I'm using the following function to covert a recordset to XML:
<% = TransformXML( RecordsetToXMLDoc(GetRecordset(),"lotplan"),
"xsl/lotplan.xsl" ) %>

The output it not displaying the values (voyage, version, datetime)? 
How do I display header info once with multiple detail lines.?
I believe the issue is the syntax of the .xsl file I'm using. 
Here it is:

<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl";>

	<xsl:template match="/">

	<lotplan>
      	<hdr>
            <voyage><xsl:value-of select="voyage_identifier" /></voyage>
            <version><xsl:value-of select="version" /></version> 
            <datetime><xsl:value-of select="publish_date_time" /></datetime>
		</hdr>
		<dtls>
      	<xsl:apply-templates select="//lotplan"/>
      	</dtls>
	</lotplan>

    	</xsl:template>

    	<xsl:template match="lotplan">

		<dtl>
		<loadport><xsl:value-of select="load_port" /></loadport>
            <species><xsl:value-of select="species" /></species>
            <grade><xsl:value-of select="grade" /></grade>
            <jade_grade><xsl:value-of select="jade_grade" /></jade_grade>
            <length><xsl:value-of select="length" /></length>
            <volume><xsl:value-of select="load_volume" /></volume>
            <minvolume><xsl:value-of select="minimum_volume" /></minvolume>
            <maxvolume><xsl:value-of select="maximum_volume" /></maxvolume>
            <lotno><xsl:value-of select="lotting_number" /></lotno>
            <consigneename><xsl:value-of select="consignee_name"
/></consigneename>
            <dischargeport><xsl:value-of select="discharge_port"
/></dischargeport>
            <comments><xsl:value-of select="comments" /></comments>
		</dtl>

    </xsl:template>
</xsl:stylesheet>

any suggestions??

Thanx Paul 

DISCLAIMER:  This electronic message together with any attachments is 
confidential.  If you are not the intended recipient, do not copy, disclose or 
use the contents in any way.  Please also advise us by return e-mail that you 
have received the message and then please destroy.  Carter Holt Harvey is not 
responsible for any changes made to this message and / or any attachments after 
sending by Carter Holt Harvey.  We use virus scanning software but exclude all 
liability for viruses or anything similar in this email or any attachment.

 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]