Beginner question

2007-12-17 Thread Filipe David Manana
Hi, 2 questions: 1) Is Tomcat reliable for a production environment, where client requests can be in the order of a few thousands per hour? 2) I've red the documentation and I was not able to do the following: I created a struts 2 app and I want to access it through http://myhost:8080/ . By

Re: Beginner question

2007-12-17 Thread Mark Thomas
Filipe David Manana wrote: 1) Is Tomcat reliable for a production environment, where client requests can be in the order of a few thousands per hour? Easily. 2) I've red the documentation and I was not able to do the following: I created a struts 2 app and I want to access it through

RE: Beginner question

2007-12-17 Thread Caldarale, Charles R
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Filipe David Manana Subject: Beginner question 1) Is Tomcat reliable for a production environment, where client requests can be in the order of a few thousands per hour? Yes. 2) I've red the documentation and I was not able

Re: Beginner question

2007-12-17 Thread Dan Keeley
Filipe David Manana wrote: 1) Is Tomcat reliable for a production environment, where client requests can be in the order of a few thousands per hour? Easily. Is it fair to say that with load balancing through apache or similar, if you spread out your app servers you can go up virtually any

Re: Beginner question

2007-12-17 Thread Filipe David Manana
Ok many thanks. As I told, I am just a beginner, and pondering to use Tomcat 5.5 in a big environment (at CERN). On Dec 17, 2007 8:50 PM, Dan Keeley [EMAIL PROTECTED] wrote: Filipe David Manana wrote: 1) Is Tomcat reliable for a production environment, where client requests can be in the

RE: Beginner question

2007-12-17 Thread Caldarale, Charles R
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Filipe David Manana Subject: Re: Beginner question As I told, I am just a beginner, and pondering to use Tomcat 5.5 in a big environment (at CERN). Then why not use 6.0? It has several improvements over 5.5, including

Re: Beginner question

2007-12-17 Thread Filipe David Manana
: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Filipe David Manana Subject: Re: Beginner question As I told, I am just a beginner, and pondering to use Tomcat 5.5 in a big environment (at CERN). Then why not use 6.0? It has several improvements over 5.5, including

Re: Beginner question

2007-12-17 Thread David kerber
Filipe David Manana wrote: Hi, 2 questions: 1) Is Tomcat reliable for a production environment, where client requests can be in the order of a few thousands per hour? I've got one running on Win2003 with around 2M requests per day on a 2-year old dual-dual Dell server. Last time I

Beginner question: Configure Tomcat for JAAS?

2007-12-13 Thread Abel MacAdam
Hi, This is a beginner question :-(. I'm trying to get JAAS to work on my Tomcat (6.0.12) installation. I used code from a Javaworld article ( http://www.javaworld.com/javaworld/jw-09-2002/jw-0913-jaas.html) Of course I had to configure my Tomcat to work together with JAAS. The document I used

Re: SSL Certificate Beginner Question

2005-12-01 Thread Paul Singleton
David Wall wrote: ...if the user accesses your site with http://, the port 80 Connector (or 8080 if testing or using a non-standard port) has a redirectPort element that causes Tomcat to automatically issue a redirect using https:// Are you sure? I thought redirectPort was only

RE: SSL Certificate Beginner Question

2005-12-01 Thread Caldarale, Charles R
From: Paul Singleton [mailto:[EMAIL PROTECTED] Subject: Re: SSL Certificate Beginner Question David Wall wrote: ...if the user accesses your site with http://, the port 80 Connector (or 8080 if testing or using a non-standard port) has a redirectPort element that causes

Re: SSL Certificate Beginner Question

2005-11-30 Thread Chris Lear
* Bill Barker wrote (30/11/05 05:42): Scott Purcell [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Real helpful ... I searched on SRV.12 and it brought up a bunch of links that have nothing to do with Tomcat config of SSL. I probably posted a lame request. Let me try again. I

Re: SSL Certificate Beginner Question

2005-11-30 Thread frankburns
29, 2005 9:37 PM Subject: Re: SSL Certificate Beginner Question Scott Purcell wrote: How do I configure some of my pages to use https? I do not know where to begin on this? Begin with the Servlet Spec. -- SRV.12 (Security) would be apropos :-) HTH! -- Hassan Schroeder

RE: SSL Certificate Beginner Question

2005-11-30 Thread Scott Purcell
:16 AM To: Tomcat Users List Subject: Re: SSL Certificate Beginner Question Did you include a security contraint element in your web.xml file? Something like this: security-constraint web-resource-collection web-resource-nameHTTPS for all of these pages of the application./web

SSL Certificate Beginner Question

2005-11-29 Thread Scott Purcell
Hello, I am running Tomcat Standalone on a XP system. Anyway, I have finished up with Verisign, and I my certificate installed and ready to go but now the real quesiton. How do I configure some of my pages to use https? I do not know where to begin on this? Anyone able to assist? Thanks

Re: SSL Certificate Beginner Question

2005-11-29 Thread Hassan Schroeder
Scott Purcell wrote: How do I configure some of my pages to use https? I do not know where to begin on this? Begin with the Servlet Spec. -- SRV.12 (Security) would be apropos :-) HTH! -- Hassan Schroeder - [EMAIL PROTECTED] Webtuitive Design === (+1)

Re: SSL Certificate Beginner Question

2005-11-29 Thread Scott Purcell
] To: Tomcat Users List users@tomcat.apache.org Sent: Tuesday, November 29, 2005 9:37 PM Subject: Re: SSL Certificate Beginner Question Scott Purcell wrote: How do I configure some of my pages to use https? I do not know where to begin on this? Begin with the Servlet Spec. -- SRV.12 (Security

Re: SSL Certificate Beginner Question

2005-11-29 Thread David Wall
-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 -- !-- Connector port=8443 minProcessors=5 maxProcessors=75 enableLookups=true disableUploadTimeout=true acceptCount=100 debug=0 scheme=https secure=true; clientAuth=false sslProtocol=TLS/ --

Re: SSL Certificate Beginner Question

2005-11-29 Thread Scott Purcell
users@tomcat.apache.org Sent: Tuesday, November 29, 2005 10:25 PM Subject: Re: SSL Certificate Beginner Question -- Define a SSL Coyote HTTP/1.1 Connector on port 8443 -- !-- Connector port=8443 minProcessors=5 maxProcessors=75 enableLookups=true

Re: SSL Certificate Beginner Question

2005-11-29 Thread Scott Purcell
List users@tomcat.apache.org Sent: Tuesday, November 29, 2005 10:43 PM Subject: Re: SSL Certificate Beginner Question Scott Purcell wrote: Real helpful ... I searched on SRV.12 and it brought up a bunch of links that have nothing to do with Tomcat config of SSL. OK, here's a direct link

Re: SSL Certificate Beginner Question

2005-11-29 Thread Bill Barker
Users List users@tomcat.apache.org Sent: Tuesday, November 29, 2005 9:37 PM Subject: Re: SSL Certificate Beginner Question Scott Purcell wrote: How do I configure some of my pages to use https? I do not know where to begin on this? Begin with the Servlet Spec. -- SRV.12 (Security) would