Re: Tomcat upgrade from 6.0.20 to latest production release of 7.0.x...

2011-02-09 Thread Tony Anecito
Thanks. -Tony - Original Message From: "Caldarale, Charles R" To: Tomcat Users List Sent: Wed, February 9, 2011 3:46:37 PM Subject: RE: Tomcat upgrade from 6.0.20 to latest production release of 7.0.x... > From: Tony Anecito [mailto:adanec...@yahoo.com] > Subject: Tomcat upgrade fr

RE: Tomcat upgrade from 6.0.20 to latest production release of 7.0.x...

2011-02-09 Thread Caldarale, Charles R
> From: Tony Anecito [mailto:adanec...@yahoo.com] > Subject: Tomcat upgrade from 6.0.20 to latest production release of 7.0.x... > I want to upgrade from 6.0.20 to 7.0.x but I have APR added > to Tomcat now and I want to keep it that configuration. I > heard that Tomcat 7.0.x comes with APR but

Tomcat upgrade from 6.0.20 to latest production release of 7.0.x...

2011-02-09 Thread Tony Anecito
Hi All, I want to upgrade from 6.0.20 to 7.0.x but I have APR added to Tomcat now and I want to keep it that configuration. I heard that Tomcat 7.0.x comes with APR but I am not sure of that. Is that true? Thanks, -Tony

Re: Is IBM Right About Java?

2011-02-09 Thread Edward Bicker
I agree, I have enjoying Charles remarks and comments as well. I say to PID, he needs to PIDDLE off and leave us alone. /Ed -Original Message- >From: Jordan Michaels >Sent: Feb 8, 2011 3:39 PM >To: Tomcat Users List >Subject: Re: Is IBM Right About Java? > >pid's using a mail client th

RE: Is IBM Right About Java?

2011-02-09 Thread Robinson, Eric
> > The JVM always reserves the maximum heap size as virtual space, but > > does not allocate more of the heap than the current limit; > the limit > > will be adjusted up or down within the -Xms : -Xmx range as load > > dictates. The unused virtual space is not available for > any other use.

Re: Tomcat7 - Firefox - SWF Upload

2011-02-09 Thread Gabriele Bulfon
ohps, looks like it's working now :) don't know what I did wrong the previous time...probably I did not restart completely tomcat, but just restarted the webapp? well, solved anyway :) thanks a lot! -- Da: Mark Thomas

Re: Context.xml for multiple datasources

2011-02-09 Thread Stephan Beutel
Am 09.02.2011 15:02, schrieb Caldarale, Charles R: From: Stephan Beutel [mailto:beu...@axivion.com] Subject: Re: Context.xml for multiple datasources But I thought it could be defined by a map in context.xml like in Spring. Even if you did, that wouldn't solve your problem. You would still hav

RE: Context.xml for multiple datasources

2011-02-09 Thread Caldarale, Charles R
> From: Stephan Beutel [mailto:beu...@axivion.com] > Subject: Re: Context.xml for multiple datasources > But I thought it could be defined by a map in > context.xml like in Spring. Even if you did, that wouldn't solve your problem. You would still have to stop and restart the webapp every tim

Re: Is IBM Right About Java?

2011-02-09 Thread Peter Crowther
On 9 February 2011 01:36, Caldarale, Charles R wrote: > The JVM always reserves the maximum heap size as virtual space, but does > not allocate more of the heap than the current limit; the limit will be > adjusted up or down within the -Xms : -Xmx range as load dictates. The > unused virtual spac

Re: Context.xml for multiple datasources

2011-02-09 Thread Stephan Beutel
Am 09.02.2011 12:12, schrieb chris derham: That's right, my code doesn't support a variable amount of databases at the moment because the databases are configured in Spring (inside my war file). But if I use the context to configure this list of datasources, the admin can create databases as h

Re: Tomcat7 - Firefox - SWF Upload

2011-02-09 Thread Gabriele Bulfon
I think I already tried placing that flag in my context.xml where you suggested, but it didn't work I'll try again and let you know. Thanks, Gabriele. -- Da: Mark Thomas A: Tomcat Users List Data: 9 febbraio 2011 1

Re: Tomcat7 - Firefox - SWF Upload

2011-02-09 Thread Mark Thomas
On 09/02/2011 09:19, Gabriele Bulfon wrote: > The conf/context.xml is the default one from Tomcat7 distribution. > My webapp context.xml just contains resources definitions such as jdbc pools. > Where should I place this " > useHttpOnly" > flag, if this is the solution? In your app's /META-INF/con

Re: Context.xml for multiple datasources

2011-02-09 Thread chris derham
> > That's right, my code doesn't support a variable amount of databases at > the moment because > the databases are configured in Spring (inside my war file). > But if I use the context to configure this list of datasources, the admin > can create databases as he need. > And that's the reason why

Re: Is IBM Right About Java?

2011-02-09 Thread Mark Thomas
On 08/02/2011 20:39, Jordan Michaels wrote: > It's an honest "mistake" - if you even want to call it that. Whether > it's right for someone like pid to even request that you adhere to this > concept has been debated on many forums in many places. On this list, thread-hi-jacking is frowned upon so

Re: Context.xml for multiple datasources

2011-02-09 Thread Stephan Beutel
Am 09.02.2011 11:03, schrieb chris derham: And the question is: How to build the context to move the existing Spring configuration to the Tomcat context to get all datasources with JNDI. The problem is, that it must be possible to set a variable amount of databases. I can't set the number of dat

Re: [OT] Multiple web services on same tomcat instance

2011-02-09 Thread Tiago Batista
Thanks! If tomcat is not to blame, I'll go to the metro mailing lists to try and find out where is the problem. I just needed to figure out if tomcat was somehow a part of the problem! Tiago On Ter, 2011-02-08 at 16:00 -0500, Christopher Schultz wrote: > -BEGIN PGP SIGNED MESSAGE- > Has

Re: Context.xml for multiple datasources

2011-02-09 Thread chris derham
> And the question is: > How to build the context to move the existing Spring configuration to the > Tomcat context to get all datasources with JNDI. > The problem is, that it must be possible to set a variable amount of > databases. I can't set the number of databases to a fixed amount. > Building

Re: Context.xml for multiple datasources

2011-02-09 Thread Stephan Beutel
Am 09.02.2011 10:30, schrieb chris derham: I need some help creating my context.xml file in a correct way. My application is based on Spring and Hibernate. I need to configure more than one datasource to access multiple databases at the same time. We use JNDI to set up our datasource. So in

Re: Context.xml for multiple datasources

2011-02-09 Thread chris derham
> > I need some help creating my context.xml file in a correct way. > > My application is based on Spring and Hibernate. I need to configure more > than one datasource > to access multiple databases at the same time. > > We use JNDI to set up our datasource. So in spring configuration, we have

Re: More traces from tomcat 3.2.X

2011-02-09 Thread Konstantin Kolinko
2011/2/9 Petr Hracek : > Dear users of tomcat, > > could you please advice me how to increase logs in tomcat 3.2.X? > I know that it is unsupported version now but on the one of the our > server I have a problem with > high load of CPU when the servlet is exiting. > > I could not find any reason wh

Re: Tomcat7 - Firefox - SWF Upload

2011-02-09 Thread Gabriele Bulfon
The conf/context.xml is the default one from Tomcat7 distribution. My webapp context.xml just contains resources definitions such as jdbc pools. Where should I place this " useHttpOnly" flag, if this is the solution? My real question is about the jsessionid that is stated to be changed on tomcat7,

Context.xml for multiple datasources

2011-02-09 Thread Stephan Beutel
Hello Tomcat users, I need some help creating my context.xml file in a correct way. My application is based on Spring and Hibernate. I need to configure more than one datasource to access multiple databases at the same time. This is my working Spring datasource.xml: class="org.springframewo

More traces from tomcat 3.2.X

2011-02-09 Thread Petr Hracek
Dear users of tomcat, could you please advice me how to increase logs in tomcat 3.2.X? I know that it is unsupported version now but on the one of the our server I have a problem with high load of CPU when the servlet is exiting. I could not find any reason why the servelt consume high load of CP

Re: Servlet 3.0, @WebFilter and ordering

2011-02-09 Thread Stevo Slavić
Thanks everyone, Just wish there was an "Ordered" interface, or annotation, or attribute of @WebXXX annotations to which ordering can be applied, so that web.xml is not needed for such IMO basic feature. Regards, Stevo. On Wed, Feb 9, 2011 at 8:58 AM, Remy Maucherat wrote: > On Wed, Feb 9, 2011