xsl-list
[Top] [All Lists]

RE: parsing xsl file in java

2004-02-25 03:54:28
Hi,

Can any one please help me by guiding how can I parse an xsl 
file through
Java Servlets and replace a node's attribute in it.

I don't really understand what you mean when you say you want to "parse an xsl 
file through Java Servlets", but see the JAXP API how to make XSLT 
transformations in a Java program, and the XSLT for replacing an attribute is 
something in the lines of

  <xsl:template match="foo/@bar">
    <xsl:attribute name="baz">qux</xsl:attribute>
  </xsl:template>
  <xsl:template match="@* | node()">
    <xsl:copy>
      <xsl:apply-templates select="@* | node()"/>
    </xsl:copy>
  </xsl:template>

Cheers,

Jarno - This Morn' Omina: The Immutable sphere

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



<Prev in Thread] Current Thread [Next in Thread>
  • RE: parsing xsl file in java, Jarno . Elovirta <=