Wrox Programmer Forums
Go Back   Wrox Programmer Forums > XML > XSLT
|
XSLT General questions and answers about XSLT. For issues strictly specific to the book XSLT 1.1 Programmers Reference, please post to that forum instead.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the XSLT section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old November 22nd, 2007, 09:42 AM
Registered User
 
Join Date: Nov 2007
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default help needed in XSLT

my XML is
<?xml version="1.0" encoding="UTF-8"?>
<trades TotalRecords="14">
    <ReportTimestamp>2006-01-13 16:44:16</ReportTimestamp>
    <StockTrades NumberOfRecords="3">
        <trade Action="New" AllocStatus="S" ..../>
<trade Action="Cancel" AllocStatus="S" ...../>

<trade Action="Cancel" AllocStatus="S" ..../>

       </StockTrades>
<BondTradesNumberOfRecords="2">
        <trade Action="New" AllocStatus="S"/>
<trade Action="Cancel" AllocStatus="S"/>

       </StockTrades>
</trades>

Now I want to generate an xml file like
<Trade>
 <TradeHeader>
   <action>New</action>
   <TradeId/>
   <ClientId/>
   <FundId/>
 </TradeHeader>
<Stocktrade>
...
</stocktrade>
<TradeHeader>
   <action>Cancel</action>
   <TradeId/>
   <ClientId/>
   <FundId/>
 </TradeHeader>
<Stocktrade>
...
</stocktrade>
<TradeHeader>
   <action>Cancel</action>
   <TradeId/>
   <ClientId/>
   <FundId/>
 </TradeHeader>
<Stocktrade>
...
</stocktrade>
<TradeHeader>
   <action>New</action>
   <TradeId/>
   <ClientId/>
   <FundId/>
 </TradeHeader>
<Bondtrade>
...
</Bondtrade>
<TradeHeader>
   <action>Cancel</action>
   <TradeId/>
   <ClientId/>
   <FundId/>
 </TradeHeader>
<Bondtrade>
...
</Bondtrade>
</trade>

I have written follwoing XSLT
<xsl:template match="trades">
        <Trade>
            <xsl:apply-templates/>
        </Trade>
    </xsl:template>

    <xsl:template match="StockTrades">
        <xsl:call-template name="StockTrade"/>
    </xsl:template>


    <xsl:template name="StockTrade">
                <xsl:call-template name="TradeHeader">
            <xsl:with-param name="Comments" select="Comments"/>
            <xsl:with-param name="TransactionId" select="TransactionId"/>
        </xsl:call-template>
        <xsl:call-template name="EquityDeal"/>
    </xsl:template>

    <xsl:template name="TradeHeader">
        <xsl:param name="Comments"/>
        <xsl:param name="TransactionId"/>
        <TradeHeader>
        <xsl:variable name="Action" select="go:UpperCase(@Action)"/>
        ......

It is not working...can anyone guide me?

 
Old November 22nd, 2007, 10:41 AM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default

Your StockTrades element does not have any children called Comment or TransactionId, so when you do this:

<xsl:call-template name="TradeHeader">
    <xsl:with-param name="Comments" select="Comments"/>
    <xsl:with-param name="TransactionId" select="TransactionId"/>
</xsl:call-template>

the value of both parameters will be an empty sequence.

Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference





Similar Threads
Thread Thread Starter Forum Replies Last Post
Help needed on XSLT baruprasad XSLT 8 October 21st, 2008 09:03 AM
XSLT Help Needed JZen XSLT 9 February 22nd, 2007 04:27 AM
xslt help desperately needed daula7 XSLT 2 May 10th, 2006 12:09 PM
help needed regarding xslt pradeep.mallavarapu XSLT 1 April 19th, 2006 05:58 AM
help needed for xslt rameshnarayan XSLT 2 September 19th, 2005 03:58 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.