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

RE: Node implementation

Subject: RE: Node implementation
From: "Michael Kay" <mhk@xxxxxxxxx>
Date: Thu, 19 Aug 2004 16:51:10 +0100
dom node implementation
> I'm trying to pass a XML node to a Java method in my XSLT:
> (...)
>       <xsl:variable name="xtabnode">
>   	<xsl:copy-of
> select="document(concat('.\DicionarioXml\',$MasterTable,'.xml'
))/Estrutura/Tabelas/Tabela[Nome=$MasterTable]"/>
>       </xsl:variable>

Why are you copying the document? Why not just pass it directly?, i.e.

<xsl:variable name="xtabnode">
  select="document(concat('.\DicionarioXml\',$MasterTable,'.xml'
          ))/Estrutura/Tabelas/Tabela[Nome=$MasterTable]"/>


> 
>       <xsl:attribute name="sqlInsert">
>         <xsl:value-of select="sql:getStatement($MasterTable,
>           					$sql,
>                                                 $where,
>                                                 $where,
>                                                 $xtabnode,
>                                                 'I' )" />
>       </xsl:attribute>
> (...)
> 
> and after some tryes i can do this by declaring my method as

Calls from XSLT to Java depend on which XSLT processor you are using. You
need to tell us!
> 
> public static String getStatement(String aMasterTable, String 
> aRowSource, String
> aWhereOpen, String aWhereDelete, Node XMLTableDescriptor, 
> String stype)
> 
> That's org.w3c.dom.Node . But to my (limited) knowledge, 
> org.w3c.dom.Node is
> just a Interface, so i must use some implementation of it. 

If the XSLT processor allows calls to a method that expects a Node, then it
will take care of the problem of deciding what Node implementation to use.
Your method doesn't need to know, so it's perfectly OK just to declare it as
Node.

Michael Kay

Current Thread
  • Node implementation
    • xptm - 19 Aug 2004 13:49:27 -0000
      • Michael Kay - 19 Aug 2004 15:51:59 -0000 <=
      • <Possible follow-ups>
      • xptm - 19 Aug 2004 17:14:13 -0000

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.