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 checked,

Re: Beginner question

2007-12-17 Thread Filipe David Manana
PROTECTED]> wrote: > > 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). > &

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 o

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

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 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 t

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 http

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 wha

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

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 por

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 u

Re: SSL Certificate Beginner Question

2005-11-30 Thread David Wall
I did not include a security constraint. Is this needed for SSL? I spend some time looking at this element, and I was under the impression that it was for form authentication? You don't really need it for SSL testing, but you'd want to do it in your production world because it basically ins

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: HTTPS for all of these pages of the application. /secure/* CONFIDENTIAL [EMAIL

Re: SSL Certificate Beginner Question

2005-11-30 Thread frankburns
may help someone feed me back some relevant information. > Scott > > - Original Message - > From: "Hassan Schroeder" <[EMAIL PROTECTED]> > To: "Tomcat Users List" > Sent: Tuesday, November 29, 2005 9:37 PM > Subject: Re: SSL Certificate Beginner

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 tr

Re: SSL Certificate Beginner Question

2005-11-29 Thread Bill Barker
states it is coming from a certain URL. So I am not sure how > that all works. > > > I hope this may help someone feed me back some relevant information. > > Scott > > > - Original Message ----- > From: "Hassan Schroeder" <[EMAIL PROTECTED]> > To: &

Re: SSL Certificate Beginner Question

2005-11-29 Thread Scott Purcell
> To: "Tomcat Users List" 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

Re: SSL Certificate Beginner Question

2005-11-29 Thread Hassan Schroeder
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 to the Servlet Spec: :: which, BTW, is the first Google hi

Re: SSL Certificate Beginner Question

2005-11-29 Thread Scott Purcell
name, so maybe the simple localhost will not work and only the dns entry will work. ... Thanks much for your time. Scott - Original Message - From: "David Wall" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Tuesday, November 29, 2005 10:2

Re: SSL Certificate Beginner Question

2005-11-29 Thread David Wall
<-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 --> You probably want to add the following attributes to the Connector above: keystoreFile="keys/tomcatkeys" keystorePass="123" Obviously, make the keystoreFile point to the name of the Java keystore that you put your certificat

Re: SSL Certificate Beginner Question

2005-11-29 Thread Scott Purcell
Scott - Original Message - From: "Hassan Schroeder" <[EMAIL PROTECTED]> To: "Tomcat Users List" 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 htt

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) 408-938-0

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