xslt

2006-02-22 Thread Zohar Amir
Can I use XSLT 2.0 stylesheets with tomcat 5.5.15 ? I get: ERROR: 'Error checking type of the expression 'funcall(format-dateTime, [step("child", 24), literal-expr([Mn] [D1o], [Y0001] at [h01]:[m09]:[s02] [P])]

tomcat and xslt 2.0

2006-02-22 Thread Zohar Amir
Correct me if I'm wrong here: as I understand it, tomcat uses Xalan as its XSLT engine. Xalan does not support XSLT 2.0 . Is there any other XSLT engine I can use with tomcat (I read something about Saxon)? If so, how do I do that? Thanks,

Re: tomcat and xslt 2.0

2006-02-27 Thread Richard Toren
I think there are not that many xslt 2.0 engines out there to choose from. In any case saxon is xslt 2.0 and very fast. You have to include the jar (obvious, but) and before you instantiate a TransformerFactory set the System property: System.setProperty

Re: tomcat and xslt 2.0

2006-02-28 Thread Zohar Amir
Thanks. Where do I put the System.setProperty(...)? - Original Message - From: "Richard Toren" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Monday, February 27, 2006 7:28 PM Subject: Re: tomcat and xslt 2.0 I think there are not that many xslt 2.0 e

Re: tomcat and xslt 2.0

2006-03-01 Thread Zohar Amir
at Users List" ; ""Richard Toren"" <[EMAIL PROTECTED]> Sent: Wednesday, March 01, 2006 9:25 AM Subject: Re: tomcat and xslt 2.0 Thanks. Where do I put the System.setProperty(...)? - Original Message - From: "Richard Toren" <[EMAIL PROTECT

Re: tomcat and xslt 2.0

2006-03-01 Thread Richard Toren
E, when saxon does the initial parse of the xslt it reports errors, which is a good thing since I write most of my xslt in emacs. If the xslt doesn't compile you will get an NPE, but that doesn't mean that's your problem in this case. Make sure you are logging your exceptions.

Tomcat 5.5 Xml + Xslt Question

2007-02-14 Thread Jim Reynolds
Hello, I am struggling with content types within a JSP page. I have an XML, XSLT and CSS file that combined are suposed to create a tree. (I am trying to get treeview to work). I created a webapp for playing in, and have the following code in a jsp page called "showTree.jsp". But when

Re: Tomcat 5.5 Xml + Xslt Question

2007-02-14 Thread APliszka-Public
1. In your jsp make sure that '' is on the very first line, it should be befora any imports or taglibs or etc. This is just one of the problems you might have with xml in jsps. Andrew Jim Reynolds wrote: Hello, I am struggling with content types within a JSP page. I have an XML

Re: Tomcat 5.5 Xml + Xslt Question

2007-02-14 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Jim, Jim Reynolds wrote: > I am struggling with content types within a JSP page. I have an XML, > XSLT and CSS file that combined are suposed to create a tree. (I am > trying to get treeview to work). I don't know a thing about treevie

Re: Tomcat 5.5 Xml + Xslt Question

2007-02-14 Thread Jim Reynolds
ml in jsps. Andrew Jim Reynolds wrote: > Hello, > I am struggling with content types within a JSP page. I have an XML, > XSLT and CSS file that combined are suposed to create a tree. (I am > trying to get treeview to work). > > I created a webapp for playing in, and have the following