|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: Mixing XSL stylesheet and Java handlers in Saxon
> I'm trying to use Saxon... > I have an XSL stylesheet, and I want my program add some particular > handlers for some particular nodes, depending on external parameters. > Is it possible to load the StyleSheet, "prepare" it and add > additional node handlers, and then render the XML document? If you want to use XSLT template rules for some nodes and Java node handlers for others, the way to do it is to declare the Java node handlers in the stylesheet using the <saxon:handler> element, for example <saxon:handler match="html" handler="com.me.handlers.HTMLHandler"/> A slightly different approach that's closer to the way the standard has moved is to implement your custom code as an extension element, so instead of the above, write <xsl:template match="html"> <xyz:html-extension/> </xsl:template> and then implement <xyz:html-extension> using SAXON's element extensibility features. Mike Kay XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








