Re: Client Authentication using SSL

2012-07-12 Thread burghard.britzke
may be that article helps: http://www.tomcatexpert.com/blog/2012/07/10/enabling-ssl-communication-and-client-certificate-authentication-between-apache-web- burghard. Am 12.07.2012 um 01:25 schrieb Jeffrey Janner: Reposting to the list, as that's the way Esmond, We already implement

Re: Exclude url from authorized access-web.xml

2012-07-12 Thread Rahul R
How can I add an email id to auth instead of adding a whole group? Is that possible? I don't want to give the access to all the members of the groups in the AD. Following is the web.xml of my tomcat. security-constraint web-resource-collection

Website is getting logged out frequently.

2012-07-12 Thread Dhaval Jaiswal
Website is getting logged out frequently. What could be the cause. Is it from httpd, AJP or tomcat site. We have session time out of 1 hour. Thanks Regards, Dhaval jaiswal 80953-97843.

Re: Website is getting logged out frequently.

2012-07-12 Thread Mark Thomas
On 12/07/2012 08:22, Dhaval Jaiswal wrote: Website is getting logged out frequently. What could be the cause. Is it from httpd, AJP or tomcat site. We have session time out of 1 hour. http://www.catb.org/~esr/faqs/smart-questions.html Mark

Re: App becomes sluggish - Tomcat 7.0.23

2012-07-12 Thread Anurag Kapur
To little info to say something concrete, but maybe there is a memory leak in your app which manifests over days and causes slowness. Best way to prove - take some heapdumps of monitor the heap using tools like JConsole / PSI Probe when your app becomes sluggish (before you restart). Maybe there

Re: Apache-tomcat-7.0.29 can't startup in my computer.

2012-07-12 Thread ????????
Hi, Thanks to reply! Can you tell me how to try to fix the problem? I have reinstall the apache-tomcat-7.0.28.exe, but the problem is still there. The log is the same as before: 2012-07-12 19:25:48 Commons Daemon procrun stderr initialized java.lang.NoClassDefFoundError:

?????? Apache-tomcat-7.0.29 can't startup in my computer.

2012-07-12 Thread ????????
Hi, Thanks to reply! Can you tell me how to try to fix the problem? I have reinstall the apache-tomcat-7.0.28.exe, but the problem is still there. The log is the same as before: 2012-07-12 19:25:48 Commons Daemon procrun stderr initialized java.lang.NoClassDefFoundError:

RE: Client Authentication using SSL

2012-07-12 Thread Jeffrey Janner
Thanks Burghard. That's a start, provides a little understanding. Seems to be more about securing httpd-Tomcat than client-Tomcat, but I'm sure the concept is the same. That page does seem to be about the java-based standard connector, and I'm using the APR connector, which is a bit different

Re: Client Authentication using SSL

2012-07-12 Thread Puneet Dewan
Excellent suggestions and the link at the bottom . On my local machine using keystore and keypass was not working while I was configuring a WAR on https. I made use of truststoreFile and truststorePass in connector tag. e.g Connector SSLEnabled=true acceptCount=100

Fwd: Client Authentication using SSL

2012-07-12 Thread Puneet Dewan
The below way I used to deploy the war and able to use it :) -- Forwarded message -- From: Puneet Dewan puneet.dewan.open...@gmail.com Date: Thu, Jul 12, 2012 at 10:19 PM Subject: Re: Client Authentication using SSL To: Tomcat Users List users@tomcat.apache.org Excellent

Re: Client Authentication using SSL

2012-07-12 Thread Burghard W.V. Britzke
?! Am 12.07.2012 um 19:22 schrieb Puneet Dewan: The below way I used to deploy the war and able to use it :) -- Forwarded message -- From: Puneet Dewan puneet.dewan.open...@gmail.com Date: Thu, Jul 12, 2012 at 10:19 PM Subject: Re: Client Authentication using SSL To:

RE: Equivalent of Web Service Extension in IIS6 on XP Professional

2012-07-12 Thread Konstantin Preißer
Hi Christopher, Great, thanks for the note. Could you make a small documentation patch and attach it to a new bugzilla issue? It's worth pointing out that this step isn't required in IIS 5.1 (if that is indeed true). I think the current documentation should already make clear that the step

Re: Tomcat building problems: Apache Tomcat 5.5 Servelet/JSP container

2012-07-12 Thread Pid
On 11/07/2012 22:26, Wei, Mingzhen wrote: Konstantin, I followed the RUNNING.TXT after installing the binary release of Tomcat 5.5. But I cannot find the catalina.bat and catalina.sh for more environmental variables to set. Why tomcat is such a pain for installation? It's not.

Re: Vhost-specific configuration for deployed apps?

2012-07-12 Thread Pid
On 11/07/2012 16:12, Dave Shevett wrote: Hi folks, this has come up in the list archives a couple times, but I'm having a devil of a time getting it working right. I'm trying to set a basic set of properties to a deployed app into Tomcat. Note that this app is being deployed via the tomcat

Re: Speeding up RMI calls

2012-07-12 Thread Pid
On 09/07/2012 16:55, Andrew Kujtan wrote: Tomcat Version: 7.0.27 OS: Windows XP/7 I'm fixing an issue we are having with a webapp that does some communication over RMI with a remote server. Calls that would be instant in similar applications not inside the tomcat container are

Re: Client Authentication using SSL

2012-07-12 Thread Pid
On 12/07/2012 20:10, Burghard W.V. Britzke wrote: ?! Yep, I have no idea what they're on about either. :P p Am 12.07.2012 um 19:22 schrieb Puneet Dewan: The below way I used to deploy the war and able to use it :) -- Forwarded message -- From: Puneet Dewan

Re: Tomcat building problems: Apache Tomcat 5.5 Servelet/JSP container

2012-07-12 Thread André Warnier
Pid wrote: On 11/07/2012 22:26, Wei, Mingzhen wrote: Konstantin, I followed the RUNNING.TXT after installing the binary release of Tomcat 5.5. But I cannot find the catalina.bat and catalina.sh for more environmental variables to set. Why tomcat is such a pain for installation? It's not.

RE: Tomcat building problems: Apache Tomcat 5.5 Servelet/JSP container

2012-07-12 Thread Caldarale, Charles R
From: André Warnier [mailto:a...@ice-sa.com] Subject: Re: Tomcat building problems: Apache Tomcat 5.5 Servelet/JSP container Considering the number of times this has come up on the list, I do not understand why the people who make the Service installer don't just add the missing files in

ServletContext and WebListener

2012-07-12 Thread Jesse Farinacci
Greetings, From a javax.servlet.ServletContext, I can easily obtain all servlet/servlet-mapping via javax.servlet.ServletRegistration, as well as all filter/filter-mapping via javax.servlet.FilterRegistration, but not all (let alone any) listener via java.util.EventListener .. Does anyone know a