Re: Accessing ssl pages using client authentication

2006-11-13 Thread Mark Thomas
Andrew Friebel wrote: I am also having trouble access the page using a browser. I extract my each certificate from my certificate chain, and import them into the keystore on the server running tomcat. After I accept the server certificate (before I select my client certificate to send), the

RE: Accessing ssl pages using client authentication

2006-11-13 Thread Andrew Friebel
, Andrew Friebel -Original Message- From: Mark Thomas [mailto:[EMAIL PROTECTED] Sent: Tuesday, 14 November 2006 11:05 AM To: Tomcat Users List Subject: Re: Accessing ssl pages using client authentication Andrew Friebel wrote: I am also having trouble access the page using a browser. I extract

Re: Accessing ssl pages using client authentication

2006-11-13 Thread Mark Thomas
Andrew Friebel wrote: Mark, Thanks for your input. I have got normal SSL working, and that works like a charm (using both IE - doGet, and via a servlet - doPost). Great. My certificates are self signed, to answer your questions: o I do not believe this is an issue with self signed

RE: Accessing ssl pages using client authentication

2006-11-13 Thread Andrew Friebel
- From: Mark Thomas [mailto:[EMAIL PROTECTED] Sent: Tuesday, 14 November 2006 12:34 PM To: Tomcat Users List Subject: Re: Accessing ssl pages using client authentication Andrew Friebel wrote: Mark, Thanks for your input. I have got normal SSL working, and that works like a charm (using

RE: Accessing ssl pages using client authentication

2006-11-12 Thread Andrew Friebel
November 2006 5:05 AM To: Tomcat Users List Subject: Re: Accessing ssl pages using client authentication Andrew Friebel wrote: I think I have an issue with how my client is sending the certificate. I thought tomcat handled this automatically. Is my assumption correct? Your assumption is correct

RE: Accessing ssl pages using client authentication

2006-11-12 Thread Andrew Friebel
2006 5:05 AM To: Tomcat Users List Subject: Re: Accessing ssl pages using client authentication Andrew Friebel wrote: I think I have an issue with how my client is sending the certificate. I thought tomcat handled this automatically. Is my assumption correct? Your assumption is correct. With SSL

Re: Accessing ssl pages using client authentication

2006-11-10 Thread Mark Thomas
Andrew Friebel wrote: I think I have an issue with how my client is sending the certificate. I thought tomcat handled this automatically. Is my assumption correct? Your assumption is correct. With SSL, as I am sure you are finding, every bit of the configuration has to be perfect or it just

Accessing ssl pages using client authentication

2006-11-09 Thread Andrew Friebel
When I try and access a page that is using client authentication, I get a http 404 error (not available). I need to try and access this page (using https) by the following methods: * Web Browser * Another servlet (posting data to it). The web.xml file for the authentication looks

Re: Accessing ssl pages using client authentication

2006-11-09 Thread Mark Thomas
Andrew Friebel wrote: login-config auth-methodCLIENT_CERT/auth-method realm-nameMy Test Realm/realm-name /login-config You want CLIENT-CERT here. Note the hyphen rather than the underscore. Mark - To start a

RE: Accessing ssl pages using client authentication

2006-11-09 Thread Andrew Friebel
tomcat handled this automatically. Is my assumption correct? Regards, Andrew Friebel -Original Message- From: Mark Thomas [mailto:[EMAIL PROTECTED] Sent: Friday, 10 November 2006 11:33 AM To: Tomcat Users List Subject: Re: Accessing ssl pages using client authentication Andrew Friebel