ChartTransformer, endorsed libs, Tomcat

2003-07-08 Thread Olivier Billard
Hi all ! I'm trying to port my project based on Cocoon M3 from Window/JDK1.4.1/Embedded Jetty to Linux/JDK 1.4.1/Apache 2.0.46/Tomcat 4.1.24 I'm having some problems I didn't have with Jetty, concerning the ChartTransformer. All seems to work fine. I'm using the default xsltc transformer. Tomc

Re: ChartTransformer, endorsed libs, Tomcat

2003-07-08 Thread Joerg Heinicke
Is this problem still an issue? Or are all your problems solved with the other thread? Olivier Billard wrote: Hi all ! I'm trying to port my project based on Cocoon M3 from Window/JDK1.4.1/Embedded Jetty to Linux/JDK 1.4.1/Apache 2.0.46/Tomcat 4.1.24 I'm having some problems I didn't have with

Re: ChartTransformer, endorsed libs, Tomcat

2003-07-08 Thread Olivier Billard
Joerg Heinicke wrote: Is this problem still an issue? Or are all your problems solved with the other thread? Unfortunately not... When I copy endorsed libs to tomcat from those shipped with Cocoon M3, my page is blank... Some pipelines are working, but other aren't... Especially a pipeline tak

Re: ChartTransformer, endorsed libs, Tomcat

2003-07-24 Thread Yury Mikhienko
In additional: if I remove the xalan-2.4.1.jar xercesImpl-2.1.0.jar xml-apis.jar from Tomcat endorsed directory (like after the pure Tomcat installation) I get the following error: 2003-07-24 16:56:07 StandardWrapperValve[Cocoon]: Servlet.service() for servlet Cocoon threw exception javax.serv

Re: ChartTransformer, endorsed libs, Tomcat

2003-07-24 Thread Olivier Billard
My pb seemed to come from Apache and its class-loader. Tomcat in standalone mode seem to work... For the exception you mentioned, I met this error today and it worked when I changed back default Transformer to "xalan"... Yury Mikhienko wrote: In additional: if I remove the xalan-2.4.1.jar xerce

Re: ChartTransformer, endorsed libs, Tomcat

2003-07-24 Thread Yury Mikhienko
May be xalan-2.5.1 is not quite up yet? > My pb seemed to come from Apache and its class-loader. > Tomcat in standalone mode seem to work... > For the exception you mentioned, I met this error today and it worked > when I changed back default Transformer to "xalan"... > > Yury Mikhienko wrote: >

Re: ChartTransformer, endorsed libs, Tomcat

2003-07-25 Thread Olivier Billard
I think it may come from the JDK that was installed (1.3.1), that may cause problems with xalan-xsltc. Classic xalan works well With a JDK 1.4, all works well Yury Mikhienko wrote: May be xalan-2.5.1 is not quite up yet? My pb seemed to come from Apache and its class-loader. Tomcat in standa

Re: ChartTransformer, endorsed libs, Tomcat

2003-07-25 Thread Joerg Heinicke
You both seem to have strange problems with those XML libraries which I don't have in general. 1. JDK 1.3 can't cause any problems in theory because it does not provide any XML library. If you have problems, something else must be the reason. 2. Be sure, that in TOMCAT_HOME/common/endorsed are

Re: ChartTransformer, endorsed libs, Tomcat

2003-07-25 Thread Olivier Billard
Hi Joerg, Thanks for the tips, but I think problems could come from a lot of reasons with this pb. In fact, with a Window2000, minimal Cocoon M3 build, and J2SDK 1.3.1, the welcome page of Cocoon didn't appear with default xsltc transformer, and it worked with "xalan" transformer... I didn't re

Re: ChartTransformer, endorsed libs, Tomcat

2003-07-25 Thread Yury Mikhienko
Many thanks for you answering. I agree, but > You both seem to have strange problems with those XML libraries which I > don't have in general. > > 1. JDK 1.3 can't cause any problems in theory because it does not > provide any XML library. If you have problems, something else must be > the re

Re: ChartTransformer, endorsed libs, Tomcat

2003-07-25 Thread Geoff Howard
Yury Mikhienko wrote: 2. Be sure, that in TOMCAT_HOME/common/endorsed are *exactly the same* libraries as in COCOON_HOME/WEB-INF/lib. And this does only work if you use the default startup scripts delivered with TOMCAT. If you don't use them you have to add -Djava.endorsed.dirs=/your/path/to/t

[Solved] ChartTransformer, endorsed libs, Tomcat

2003-07-31 Thread Olivier Billard
Thanks for all to answer this thread :) ! This pb came from 2 buggy components : 1 ) The jfreechart library uses some display features linked to the OS : jar compiled in windows doesn't work in Unix OSes, but jar compiled in Unix works in Windows. this solved the graphic generation. 2) But I g