Tomcat for Mac

2011-04-22 Thread Brajesh Patel
Hello All, I have Mac book and want to run tomcat on it so please provide steps or documentation it will great help. -- Thanks Brajesh Patel

Re: Tomcat for Mac

2011-04-22 Thread Bob Hall
--- On Fri, 4/22/11 at 1:34 AM, Brajesh Patel brajeshpate...@gmail.com wrote: Hello All, I have Mac book and want to run tomcat on it so please provide steps or documentation it will great help. -- Thanks Brajesh Patel http://lmgtfy.com/?q=tomcat+install+mac - Bob

Re: Tomcat for Mac

2011-04-22 Thread rajini maski
http://lmgtfy.com/?q=tomcat+in+mac http://lmgtfy.com/?q=tomcat+in+mac On Fri, Apr 22, 2011 at 2:04 PM, Brajesh Patel brajeshpate...@gmail.comwrote: Hello All, I have Mac book and want to run tomcat on it so please provide steps or documentation it will great help. -- Thanks Brajesh Patel

Re: Fix the cookie path with mod_jk

2011-04-22 Thread Yu Kikuchi
Hi All. I'm sorry that my response is late. I have examined about mod_rewrite. And I understood that mod_rewrite can't touch the response header. Thank you for the advices, Chris and Thomas. Now the issue is : who is setting the cookie path ? My application is setting the cookie path, so the

Re: Fix the cookie path with mod_jk

2011-04-22 Thread André Warnier
Yu Kikuchi wrote: ... Now the issue is : who is setting the cookie path ? My application is setting the cookie path, so the most reasonable way to resolve this problem is fix my apps. One more question : do you actually have a problem right now with the cookie path ? Do you really see

Re: Found org.apache.catalina.filters.CSRF_NONCE

2011-04-22 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Mathew, On 4/15/2011 4:11 PM, Mathew Samuel wrote: It does not appear like I have access to HttpServletResponse. Damn. So if I did have access to that then I could just call response.encodeURL and everything would seriously just auto-magically

Typo: Apache Tomcat 7 Configuration Reference

2011-04-22 Thread Jay, Michael
There appears to be an error in a diagram in The Context Container. http://tomcat.apache.org/tomcat-7.0-doc/config/context.html#Environment_Entries env-entry env-entry-namemaxExemptions/param-name env-entry-value10/env-entry-value

shared library in tomcat container runtime`

2011-04-22 Thread Yongqin Xu
Hello, According to TC docs, $CATALINA_HOME/lib can hold shared lib jars for all deployed apps, and each deployed app , such as web app, will have its own classloader. My question is: In runtime, will each app get its own separate object instances from the same shared lib jars? Even for those

RE: shared library in tomcat container runtime`

2011-04-22 Thread Caldarale, Charles R
From: Yongqin Xu [mailto:yong...@hotmail.com] Subject: shared library in tomcat container runtime` In runtime, will each app get its own separate object instances from the same shared lib jars? Even for those static members of the class, right? No; everything in $CATALINA_HOME/lib is

RE: shared library in tomcat container runtime`

2011-04-22 Thread Yongqin Xu
thanks, Churck, that means, for our own shared lib jars, we have to duplicate them for each deployed apps, even if sometimes the shared lib jars could be over 100MB. That would really cumbersome! Does TC has other way around to fix this? WLS does not work that way. From:

Re: shared library in tomcat container runtime`

2011-04-22 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Yongqin, On 4/22/2011 1:33 PM, Yongqin Xu wrote: that means, for our own shared lib jars, we have to duplicate them for each deployed apps, even if sometimes the shared lib jars could be over 100MB. That would really cumbersome! 100MB of

RE: shared library in tomcat container runtime`

2011-04-22 Thread Caldarale, Charles R
From: Yongqin Xu [mailto:yong...@hotmail.com] Subject: RE: shared library in tomcat container runtime` for our own shared lib jars, we have to duplicate them for each deployed apps, even if sometimes the shared lib jars could be over 100MB. That would really cumbersome! Not really; just

tomcat 6.0.32 centos 5.5 manager access - newbie

2011-04-22 Thread sillyminds
Apache Tomcat 6.0.32.0 Centos 5.5 I am a newbie to tomcat need some step by step guidance on how access how to deploy a war in tomcat 6. In early version of 5.5.30 to access the management console deply a war I had to do the below: Modify tomcat-users.xml add the roles and user access like

Re: tomcat 6.0.32 centos 5.5 manager access - newbie

2011-04-22 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Sillyminds, On 4/22/2011 2:34 PM, sillyminds wrote: Now I had downloaded tomcat 6.0.32 and I am confused after startup.sh when I hit Modified tomcat-users.xml as !-- role rolename=tomcat/ role rolename=role1/ role rolename=manager/

Re: shared library in tomcat container runtime`

2011-04-22 Thread Konstantin Kolinko
2011/4/22 Yongqin Xu yong...@hotmail.com: thanks, Churck, that means, for our own shared lib jars, we have to duplicate them for each deployed apps, even if sometimes the shared lib jars could be over 100MB. That would really cumbersome! Does TC has other way around to fix this? WLS does

RE: shared library in tomcat container runtime`

2011-04-22 Thread Yongqin Xu
Yes, I am using TC 7.0.12, this virtual webapp loader could be very useful. Date: Sat, 23 Apr 2011 00:45:04 +0400 Subject: Re: shared library in tomcat container runtime` From: knst.koli...@gmail.com To: users@tomcat.apache.org 2011/4/22 Yongqin Xu yong...@hotmail.com: thanks, Churck,

RE: shared library in tomcat container runtime`

2011-04-22 Thread Yongqin Xu
Currently we are trying to create community edition for our framework to run at TC 7, what we truly need is: user can deploy a app as a shared library in runtime, and other deployed apps can access it and get its own stack and would not interfere each other. This is basic features found in

RE: shared library in tomcat container runtime`

2011-04-22 Thread Caldarale, Charles R
From: Yongqin Xu [mailto:yong...@hotmail.com] Subject: RE: shared library in tomcat container runtime` look like TC7 does not give user a choice to deploy their app as a shared library or a normal app, but a normal app, right? There's no such thing as a shared library in the servlet spec.

Tomcat 6: Classloading: META-INF\services: Nested JARs

2011-04-22 Thread Michael Anstis
Hi, I am trying to resolve a problem that I assume relates to class loading. My application contains a JAR that contains a file in META-INF\services:- MyApp \-- WEB-INF \-- lib \-- AJar.jar \-- META-INF \-- services \-- Afile MyApp tries to load Afile

RE: Tomcat 6: Classloading: META-INF\services: Nested JARs

2011-04-22 Thread Caldarale, Charles R
From: Michael Anstis [mailto:michael.ans...@gmail.com] Subject: Tomcat 6: Classloading: META-INF\services: Nested JARs ClassLoader.getSystemResources(META-INF/services/AFile) We'll assume that the missing closing quotation mark is a typo. However the file is not found. Nor should it be;

Re: Tomcat 6: Classloading: META-INF\services: Nested JARs

2011-04-22 Thread Michael Anstis
Thanks for the candid reply Chuck. I feel a bit stupid now, but one learns from their mistakes. With kind regards, Mike On 22 April 2011 23:19, Caldarale, Charles R chuck.caldar...@unisys.comwrote: From: Michael Anstis [mailto:michael.ans...@gmail.com] Subject: Tomcat 6: Classloading:

RE: Tomcat 6: Classloading: META-INF\services: Nested JARs

2011-04-22 Thread Caldarale, Charles R
From: Michael Anstis [mailto:michael.ans...@gmail.com] Subject: Re: Tomcat 6: Classloading: META-INF\services: Nested JARs Thanks for the candid reply Chuck. Sorry to have spoken that way. Couldn't resist answering the question given the way it was phrased. - Chuck THIS COMMUNICATION