RE: memory required to run webapp without outofmemory

2007-12-02 Thread Caldarale, Charles R
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Subject: Re: memory required to run webapp without outofmemory > > first I would enable your PermGen memory collector > http://my.opera.com/karmazilla/blog/2007/03/13/good-riddance-p > ermgen-outofmemoryerror Unfortunately, the entire premise

Vista Win x64 and Tomcat 5.5.25 Support

2007-12-02 Thread NBW
Hi, I'm looking for precompiled Tomcat.exe, Tomcat5w.exe and tcnative-1.dllbinaries for x64 (Windows Vista Enterprise). Also, looking for OpenSSL support for this platform and tcnative. Can someone point me in the right direction (sure would be nice for this to be a standard dist. option on the T

Re: memory required to run webapp without outofmemory

2007-12-02 Thread mgainty
first I would enable your PermGen memory collector http://my.opera.com/karmazilla/blog/2007/03/13/good-riddance-permgen-outofme moryerror M-- - Original Message - Wrom: BARHDMNNSKVFVWRKJVZCMHVIBGDADRZ To: Sent: Sunday, December 02, 2007 7:51 PM Subject: memory required to run webapp witho

RE: Tomcat serving static pages

2007-12-02 Thread Caldarale, Charles R
> From: Breno Jacinto [mailto:[EMAIL PROTECTED] > Subject: Tomcat serving static pages > > I wonder if today, with Tomcat's maturity, is there any need to > integrate it with Apache JK modules just for serving static content? My opinion: definitely not. There are reasons you might want to run h

Tomcat serving static pages

2007-12-02 Thread Breno Jacinto
Hello, I wonder if today, with Tomcat's maturity, is there any need to integrate it with Apache JK modules just for serving static content? Actually I run a single website where I had done such integration, but I begin to think that it not a real necessity (we have very few static pages and im

RE: memory required to run webapp without outofmemory

2007-12-02 Thread Caldarale, Charles R
> From: teoh [mailto:[EMAIL PROTECTED] > Subject: memory required to run webapp without outofmemory > > is just by looking at tomcat manager, we can find out maximum memory > required to run webapp without out of memory? Not really - it's much more complicated. The JVM heap holds objects of al

RE: java.lang.NoClassDefFoundError: org/apache/commons/collections/SequencedHashMap

2007-12-02 Thread Caldarale, Charles R
> From: Tom Robinson [mailto:[EMAIL PROTECTED] > Subject: Re: java.lang.NoClassDefFoundError: > org/apache/commons/collections/SequencedHashMap > > The WEB-INF/lib location works for my specific app > and gives it independence from the admin app if that's > using a different version. Placing it

memory required to run webapp without outofmemory

2007-12-02 Thread teoh
Free memory: 13.17 MB Total memory: 123.54 MB Max memory: 127.06 MB is just by looking at tomcat manager, we can find out maximum memory required to run webapp without out of memory? - Be a better sports nut! Let your teams follow you with Yahoo Mobile. T

Re: java.lang.NoClassDefFoundError: org/apache/commons/collections/SequencedHashMap

2007-12-02 Thread Tom Robinson
Caldarale, Charles R wrote: >> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] >> Subject: Re: java.lang.NoClassDefFoundError: >> org/apache/commons/collections/SequencedHashMap >> >> Common/lib is for internal use and wouldnt be expected to >> demand load the classes you require as is the cas

Re: java.lang.NoClassDefFoundError: org/apache/commons/collections/SequencedHashMap

2007-12-02 Thread Tom Robinson
I'm beginning to see the light ;-) - I don't know how I overlooked the admin app specific location. Thanks! David Smith wrote: > Actually classes in common/lib or common/classes are visible to all > webapps and tomcat internals. > > From your original post, the only > org.apache.commons.collectio

RE: java.lang.NoClassDefFoundError: org/apache/commons/collections/SequencedHashMap

2007-12-02 Thread Caldarale, Charles R
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Subject: Re: java.lang.NoClassDefFoundError: > org/apache/commons/collections/SequencedHashMap > > Directory of %CATALINA_HOME%\common\lib > 06/15/2004 08:29p 26,202 commons-logging-api.jar > > Directory of %CATALINA_HOME%\we

Re: can't undeploy webapp with manager

2007-12-02 Thread Tom Robinson
Caldarale, Charles R wrote: >> From: Tom Robinson [mailto:[EMAIL PROTECTED] >> Subject: Re: can't undeploy webapp with manager >> >> I want a separate . > > I'm still curious: why? The represents my dedicated (s) for my . My is therefore wholly responsible for receiving and processing all reque

Re: java.lang.NoClassDefFoundError: org/apache/commons/collections/SequencedHashMap

2007-12-02 Thread mgainty
Directory of %CATALINA_HOME%\common\lib 06/15/2004 08:29p 26,202 commons-logging-api.jar Directory of %CATALINA_HOME%\webapps\EncryptView\WEB-INF\lib 06/15/2004 08:29p 38,015 commons-logging.jar.old (unusable) /*lets create a jsp page which will call into that jar..

Re: java.lang.NoClassDefFoundError: org/apache/commons/collections/SequencedHashMap

2007-12-02 Thread David Smith
Actually classes in common/lib or common/classes are visible to all webapps and tomcat internals. From your original post, the only org.apache.commons.collections.SequenceHashMap you had was in the admin webapp and that's not visible to tomcat internals or any other webapp. All the other Seq

RE: can't undeploy webapp with manager

2007-12-02 Thread Caldarale, Charles R
> From: Tom Robinson [mailto:[EMAIL PROTECTED] > Subject: Re: can't undeploy webapp with manager > > I want a separate . I'm still curious: why? > There is a need for more than one virtual host. Multiple elements are allowed inside a single . > The ROOT.xml stays and redeploys the .war from

Re: Help needed to Configure PHP 5.2.5 on Tomcat 6.0

2007-12-02 Thread Wilhelmsen Tor Iver
See: http://blog.taragana.com/index.php/archive/running-php-5x-on-windows-usi ng-tomcat-4x-or-5x/ http://wiki.apache.org/tomcat/UsingPhp - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PRO

RE: java.lang.NoClassDefFoundError: org/apache/commons/collections/SequencedHashMap

2007-12-02 Thread Caldarale, Charles R
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Subject: Re: java.lang.NoClassDefFoundError: > org/apache/commons/collections/SequencedHashMap > > Common/lib is for internal use and wouldnt be expected to > demand load the classes you require as is the case for the > webapp WEB-INF > http

Re: java.lang.NoClassDefFoundError: org/apache/commons/collections/SequencedHashMap

2007-12-02 Thread mgainty
I agree that you should place the classes in your webapp WEB-INF..Common/lib is for internal use and wouldnt be expected to demand load the classes you require as is the case for the webapp WEB-INF http://tomcat.apache.org/tomcat-5.5-doc/class-loader-howto.html Anyone? M-- - Original Message -

Re: java.lang.NoClassDefFoundError: org/apache/commons/collections/SequencedHashMap

2007-12-02 Thread Konstantin Kolinko
> I'm still not sure > why the ${CATALINA_HOME}/common/lib version isn't picked up via tomcat. > > ./server/webapps/admin/WEB-INF/lib/[commons-collections].jar > ./common/lib/[commons-collections-tomcat5].jar > ./common/lib/[commons-dbcp-tomcat5].jar org/apache/commons/collections/SequencedHashMa

Re: can't undeploy webapp with manager

2007-12-02 Thread Tom Robinson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Caldarale, Charles R wrote: >> From: Tom Robinson [mailto:[EMAIL PROTECTED] >> Subject: can't undeploy webapp with manager >> >> I've pasted my context (ROOT.xml) and server.xml below >> with a few more comments on various settings > > This is cert

Re: java.lang.NoClassDefFoundError: org/apache/commons/collections/SequencedHashMap

2007-12-02 Thread Tom Robinson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Tom Robinson wrote: > Caldarale, Charles R wrote: >>> From: Tom Robinson [mailto:[EMAIL PROTECTED] >>> Subject: java.lang.NoClassDefFoundError: >>> org/apache/commons/collections/SequencedHashMap >>> >>> I think I've installed all the correct jars (m

Re: I got the following error while running my very simple JSP onTomcat 4.1. server

2007-12-02 Thread Martin Gainty
i agree with Mark Many web app servers use older JRE/JDKs so setting JAVA_HOME and PATH properly should be enough for your environment should work .. I would check with all sys/net admins before uninstalling potential mission critical JVM's Martin - Original Message - From: "peri" <[EMAIL

RE: SSL Session expires every request

2007-12-02 Thread Bárbara Vieira
Hi Chuck!!! Thanks for your help!! The problem is solved :) I don't know what was the problem, but it is somewhere in my web application. I discovered that when I try to create a new web application, with the same basic configurations. In my new web application the session is maintained and everyth

Re: I got the following error while running my very simple JSP on Tomcat 4.1. server

2007-12-02 Thread Mark Thomas
peri wrote: > Hello, > I'm trying to run my very simple JPS on tomcat 4.1 sever. I also use struts > 1.1. framework (I know it is very old) Also I'm using JDK 1.6.03 and eclipse > 3.3 ide. > class file has wrong version 49.0, should be 48.0 This suggests you have a class compiled with a 1.5 JDK

RE: I got the following error while running my very simple JSP onTomcat 4.1. server

2007-12-02 Thread peri
Hi, You're right I have both JDK 1.4 and JDk 1.6 on my system. When i change java built path setting Jdk 1.4 then tomcat didn't start. When I changed it to jdk 1.6 then I got the following error run time. So I deleted Jdk 1.6 and added again from java built path setting. After I set jdk 1.6 in t