Re: Strange behaviour with Tomcat 5.5.15/5.5.16

2006-03-14 Thread Antonio Petrelli
Jean-Pierre Astier ha scritto: OS : Mac OS X 10.4.5/10.3.9 - 10 mars 2006 09:26:18 org.apache.catalina.core.StandardWrapperValve invoke GRAVE: Servlet.service() pour

Tomcat taking too long to cycle through and come back up

2006-03-14 Thread Biernesser, Beth
Does anyone have any idea why tomcat would take 13 minutes to cycle through and come back up? The process gets stuck on this line: INFO: Processing Context configuration file URL file:/usr/local/tomcat-5.0.25/conf/Catalina/localhost/appname.xml I really didn't think the process was going to

manager-remove/undeploy without losing sessions

2006-03-14 Thread Reinhard Moosauer
Hello List, recently I upgraded from tomcat 5.5.9 to 5.5.15 Since then, all my sessions are lost after a remove/install via the manager. The problem is the following: I installed a war-file, which is copied to the webapps-folder during manager-install. When I want to replace the war with a new

RE: manager-remove/undeploy without losing sessions

2006-03-14 Thread Asensio, Rodrigo
Sorry, other question over yours How works that smooth behavior ? I'm tomcat 5.0.x and each time that we need update the call center version, everybody has to stop working for a few minutes. Any clue ? thanks -Original Message- From: Reinhard Moosauer [mailto:[EMAIL PROTECTED] Sent:

Re: how can I run normal web sites using Tomcat?

2006-03-14 Thread David Kerber
My stuff is 90% java and jsp, with only a few static resources. Where should I put them in the Tomcat structure? Do they go under the appropriate spot in /webapps? Filip Hanik - Dev Lists wrote: the setup can be trivial, if you pair one apache to one tomcat, and use mod_proxy. you should

RE: how can I run normal web sites using Tomcat?

2006-03-14 Thread Caldarale, Charles R
From: David Kerber [mailto:[EMAIL PROTECTED] Subject: Re: how can I run normal web sites using Tomcat? My stuff is 90% java and jsp, with only a few static resources. Where should I put them in the Tomcat structure? Do they go under the appropriate spot in /webapps? Yes; static

Re: how can I run normal web sites using Tomcat?

2006-03-14 Thread David Kerber
Thanks! Caldarale, Charles R wrote: From: David Kerber [mailto:[EMAIL PROTECTED] Subject: Re: how can I run normal web sites using Tomcat? My stuff is 90% java and jsp, with only a few static resources. Where should I put them in the Tomcat structure? Do they go under the appropriate

Re: manager-remove/undeploy without losing sessions

2006-03-14 Thread Reinhard Moosauer
Hi List, I found something, that looked promising, but did not work. Developers, please look, this could be a bug: The deploy-task has an attribute update, removes the context before re-installing it. I hoped that this one would do what I want. But unfortunately, it is equivalent to

AW: Problem disabling session serialization duing shutdown.

2006-03-14 Thread Michael Südkamp
Hmm, context.xml? I know only of server.xml. At least on Windows. Here is a context snippet for server.xml which disables session persistence. Michael Context docBase=/your-doc-base path=/your-context Manager className=org.apache.catalina.session.PersistentManager

Re: AW: Problem disabling session serialization duing shutdown.

2006-03-14 Thread Peter Rossbach
or shorter with Context docBase=/your-doc-base path=/your-context Manager pathname= / /Context at tomcat 5.5 add the description at your META-INF/context.xml Context Manager pathname= / /Context or at the conf/context.xml :-)

Re: manager-remove/undeploy without losing sessions

2006-03-14 Thread Peter Rossbach
Hmm, I thing you are right. ContextConfig.destroy() remove the working dir after undeploy the app. /** * Process a destroy event for this Context. */ protected synchronized void destroy() { // Called from StandardContext.destroy() if (log.isDebugEnabled())

Re: Performance tricks with multiple tomcat instances

2006-03-14 Thread Darryl L. Miles
Leon Rosenberg wrote: Well, personally I had collywobbles before we've gone on 2 cpu machines, but it went well. I mean, as long as you are one cpu machine you can be sure that your threads are never really concurrent and atomic operations remain atomic (like ++) but in case of 2 cpus you start

Help on error Name jdbc is not bound in this context

2006-03-14 Thread Edward Manalansan
Hi there, I've trying to setup a Datasource in Tomcat 5.028 and I can't get it to work. I've meticulously followed the tomcat documentation and still no luck. I went into several famous forums and still didn't work. For starter, I tried adding the Datasource manually in the admin

Re: Help on error Name jdbc is not bound in this context

2006-03-14 Thread Filip Hanik - Dev Lists
what did you put in your web.xml? Filip Edward Manalansan wrote: Hi there, I've trying to setup a Datasource in Tomcat 5.028 and I can't get it to work. I've meticulously followed the tomcat documentation and still no luck. I went into several famous forums and still didn't work.

Re: Encoding and Operative System

2006-03-14 Thread Jonathan Soons
How does the OS effect the decoding / accepting of the submitted forms? You might want to check that you have UTF-8 installed as a locale first. Since you are using Debian do: bash:# locale -a If you see UTF-8 in the output then you should su to the user that starts tomcat (probably root) and

Re: Help on error Name jdbc is not bound in this context

2006-03-14 Thread Edward Manalansan
resource-ref description Resource reference to a factory for java.sql.Connection instances that may be used for talking to a particular database that is configured in the server.xml file /description res-ref-name jdbc/jspbook /res-ref-name res-type javax.sql.DataSource

Re: manager-remove/undeploy without losing sessions

2006-03-14 Thread Reinhard Moosauer
Hi Peter, thanks for making it clear. I would appreciate your opinon in how we could enhance this: - I think, even on production systems, there should be a possibility to do a 'soft' application update without interrupting all users. When only minor changes in the application are made, the

Re: manager-remove/undeploy without losing sessions

2006-03-14 Thread Peter Rossbach
Please open a bug report, then we can better discuss the issue. Peter Am 14.03.2006 um 16:21 schrieb Reinhard Moosauer: Hi Peter, thanks for making it clear. I would appreciate your opinon in how we could enhance this: - I think, even on production systems, there should be a possibility

RE: manager-remove/undeploy without losing sessions

2006-03-14 Thread Asensio, Rodrigo
Reinhard, thanks for the tip, is that option (serialize sessions) in the manager or in the admin ? Or it is a value that need to be changed manually in server.xml or any props file ? Thanks Rodrigo Asensio -Original Message- From: Reinhard Moosauer [mailto:[EMAIL PROTECTED] Sent:

version of jintegra and tomcat5.5 compatibility

2006-03-14 Thread bhavik shah
Hi, We were using tomcat Version 3i and we move to 5.5 now its a issue of jintegra compatibility.can anybody tell me please which jintegra version i should use with tomcat 5.5 thanks

RE: [OT] Performance tricks with multiple tomcat instances

2006-03-14 Thread Caldarale, Charles R
From: Darryl L. Miles [mailto:[EMAIL PROTECTED] Subject: Re: Performance tricks with multiple tomcat instances I would hope that JIT compiler engineers would as a minimum implicitly add the lock instruction before all operations on primitive types declared volatile that are in the

Re: version of jintegra and tomcat5.5 compatibility

2006-03-14 Thread Markus Schönhaber
bhavik shah wrote: We were using tomcat Version 3i and we move to 5.5 now its a issue of jintegra compatibility.can anybody tell me please which jintegra version i should use with tomcat 5.5 thanks Hm, I'd guess that whoever provides jintegra (whatever this is) should be the one who

Re: version of jintegra and tomcat5.5 compatibility

2006-03-14 Thread Bruno Georges
We use 2.5.0.0 without problems. With Best Regards Bruno Georges Glencore International AG Tel. +41 41 709 3204 Fax +41 41 709 3000 |-+--- | | bhavik shah | | | [EMAIL PROTECTED]| | | .com | |

MySQL JDBC Exception: No operations allowed after connection closed

2006-03-14 Thread amiljusevic
I use Tomcat 5.0.28 on both Fedora and FreeBSD, MySQL 4.1.14, J/Connector JDBC driver for MySQL 3.1.11 and JOTM 2.0.10. From time to time I get the MySQL JDBC driver exception No operations allowed after connection closed, after which DB calls from my application keep failing. The stack trace

Re: [OT] Performance tricks with multiple tomcat instances

2006-03-14 Thread Darryl L. Miles
Caldarale, Charles R wrote: From: Darryl L. Miles [mailto:[EMAIL PROTECTED] Subject: Re: Performance tricks with multiple tomcat instances I would hope that JIT compiler engineers would as a minimum implicitly add the lock instruction before all operations on primitive types declared

Re: SSL trusted certificate

2006-03-14 Thread David Avenante
Thank you very much for your help. In my situation the probleme was that i' ve generate a bad certificate. When the java keytool ask me the question what' s your name i need to set this value with the name of my server (in my case with localhost) and not MY name ;) So now all woks fine. On

Re: SSL trusted certificate

2006-03-14 Thread David Avenante
Thank you very much for your help. In my situation the probleme was that i' ve generate a bad certificate. When the java keytool ask me the question what' s your name i need to set this value with the name of my server (in my case with localhost) and not MY name ;) So now all woks fine. And

[BUG] Tomcat 5.0.x doesn't handle permission errors on classes correctly

2006-03-14 Thread Francis Galiegue
Hello, I've noticed today quite a disturbing bug in the 5.0.x series, x = 27 (I haven't tested this on more recent versions). I've inadvertently put wrong permissions on a directory which tomcat needed to traverse at startup time in order to load. As a result, I got a very confusing

RE: how can I run normal web sites using Tomcat?

2006-03-14 Thread Andrew E. Davidson
Thanks Alan Andy -Original Message- From: Alan Chaney [mailto:[EMAIL PROTECTED] Sent: Monday, March 13, 2006 8:08 PM To: Tomcat Users List Subject: Re: how can I run normal web sites using Tomcat? Hi Andrew Tomcat is not a 'general purpose' web server - rather, it is a 'Java web

RE: how can I run normal web sites using Tomcat?

2006-03-14 Thread Andrew E. Davidson
Thanks Filip Andy -Original Message- From: Filip Hanik - Dev Lists [mailto:[EMAIL PROTECTED] Sent: Monday, March 13, 2006 8:29 PM To: Tomcat Users List Subject: Re: how can I run normal web sites using Tomcat? the setup can be trivial, if you pair one apache to one tomcat, and use

Re: Tomcat Native library (RedHat 4) produces an endless loop or incomplete page with struts validation

2006-03-14 Thread Mladen Turk
Elagin, Egor wrote: Hello, I'm using struts 1.2.8 with Tomcat 5.5.15 and just installed libtcnative (Linux Red Hat 4) to fix the warning I was getting: Now that I have installed that library, tomcat works faster and I do not get the warning anymore, BUT I can't use any forms derived from

Re: [OT] Performance tricks with multiple tomcat instances

2006-03-14 Thread Leon Rosenberg
Chuck, Darryl I'd like to thank you both on the amazing insights of concurrency. Learned a lot today :-) thanx leon - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Fairwell to JB, but having Jasper problems

2006-03-14 Thread David Grace
Hi all, Netbeans is open source as well and is also definitely rapidly evolving. My experience is Netbeans is more mature, has more built in features and is more stable. But everyone has there own opinion. Dave. -Original Message- From: David Kerber [mailto:[EMAIL PROTECTED] Sent: