Re: translets

2007-09-11 Thread Raymond
Thank you both for your answers. They are very helpful. My thinking of our implementation would be quite similar to what you describe, Santiago. We have a series of XSL templates which would be cached until a change is made. If, as you suggest, we can possibly gain roughly a 100% increase in perfo

Re: translets

2007-09-11 Thread Santiago Pericas-Geertsen
On Sep 11, 2007, at 8:59 AM, Erin Harris wrote: Hi Raymond, 1) If you are looking for conformance test results then I can probably dig something up but I don't think there is anything for performance. Our internal testing shows that on average XSLTC is 2-2.5X faster than Xalan over a

Re: translets

2007-09-11 Thread Erin Harris
Hi Raymond, 1) If you are looking for conformance test results then I can probably dig something up but I don't think there is anything for performance. 2) If you go to the following page it details the limitations of XSLTC extension support: http://xml.apache.org/xalan-j/extensions_xsltc.html

RE: translets refuse to work with the evaluate() extension, both Xalan and exslt versions

2003-12-12 Thread Yuriy Zilbergleyt
Zilbergleyt Cc: [EMAIL PROTECTED] Subject: RE: translets refuse to work with the evaluate() extension, both Xalan and exslt versions You are mostly right. But that has nothing to do with the evaluate() extension. Transformer itself is not thread-safe. If you need to create a new Transformer for

RE: translets refuse to work with the evaluate() extension, both Xalan and exslt versions

2003-12-12 Thread Morris Kwan
AMSubject RE: translets refuse to work with the evaluate() extension, both Xa

RE: translets refuse to work with the evaluate() extension, both Xalan and exslt versions

2003-12-12 Thread Yuriy Zilbergleyt
Yuriy Zilbergleyt -Original Message- From: Morris Kwan [mailto:[EMAIL PROTECTED] Sent: Friday, December 12, 2003 11:36 AM To: Yuriy Zilbergleyt Cc: [EMAIL PROTECTED] Subject: RE: translets refuse to work with the evaluate() extension, both Xalan and exslt versions They are actually the same t

RE: translets refuse to work with the evaluate() extension, both Xalan and exslt versions

2003-12-12 Thread Morris Kwan
<[EMAIL PROTECTED]> cc 12/12/2003 11:31 AMSubject

RE: translets refuse to work with the evaluate() extension, both Xalan and exslt versions

2003-12-12 Thread Yuriy Zilbergleyt
Ok, that explains why dyn:evaluate() doesn't work. But what about xalan:evaluate()? Thanks, Yuriy Zilbergleyt -Original Message- From: Morris Kwan [mailto:[EMAIL PROTECTED] Sent: Friday, December 12, 2003 11:29 AM To: Yuriy Zilbergleyt Cc: [EMAIL PROTECTED] Subject: Re: tran

Re: translets refuse to work with the evaluate() extension, both Xalan and exslt versions

2003-12-12 Thread Morris Kwan
The EXSLT dynamic extensions (e.g. evaluate) are not supported in XSLTC. Please see the following link for details: http://xml.apache.org/xalan-j/extensions_xsltc.html#exslt_ext Morris Kwan XSLT Development IBM Toronto Lab Tel: (905)413-3729 Email: [EMAIL PROTECTED]

re: Translets with Extensions

2002-07-24 Thread brent . johnson
| | To: [EMAIL PROTECTED] | | cc: [EMAIL PROTECTED], "Pericas-Geertsen, Santiago" <[EMAIL PROTECTED]>

re: Translets with Extensions

2002-07-24 Thread Tom Amiro
> I've got an XSL document that uses some Java extensions to do some data > processing when translating from one XML format to another (i.e. using date > formats to convert from one date string format to another). > > When I do a simple transform on this it works great. When I try and > compile a

RE: Translets and J2EE WAR files

2002-01-24 Thread Hunter, Bryan
Well, I finally figured it out. Because of the security stuff in J2EE/WAR files, I was unable to use the FileInputStream, I have to use the Class loader. Below is the readTemplate method I am using, adapted from the one in the Xalan-J 2.2.0 samples/CompiledJAXP/Transform.java, this will work in a