Re: [PATCH] SSLSocket, CLIENT-AUTH, and JDK1.4

2002-10-07 Thread Bill Barker
- Original Message - From: "Remy Maucherat" <[EMAIL PROTECTED]> To: "Tomcat Developers List" <[EMAIL PROTECTED]> Sent: Monday, October 07, 2002 1:44 PM Subject: Re: [PATCH] SSLSocket, CLIENT-AUTH, and JDK1.4 > Bob Herrmann wrote: > > Before I

Re: [PATCH] SSLSocket, CLIENT-AUTH, and JDK1.4

2002-10-07 Thread Remy Maucherat
Bob Herrmann wrote: > Before I commit this diff, I would like some eyes. This fixes a problem > with JSSE doing request for CERTS on an already established SSL Socket. > > I am concerned that this change may not pass the sniff test as I check a > System.getProperty("java.vm").startsWith("1.4") to

Re: [PATCH] SSLSocket, CLIENT-AUTH, and JDK1.4

2002-10-07 Thread Bill Barker
- Original Message - From: "Bob Herrmann" <[EMAIL PROTECTED]> To: "Tomcat Developers List" <[EMAIL PROTECTED]> Sent: Monday, October 07, 2002 1:23 PM Subject: [PATCH] SSLSocket, CLIENT-AUTH, and JDK1.4 > > Before I commit this diff, I would like

Re: [PATCH] SSLSocket, CLIENT-AUTH, and JDK1.4

2002-10-07 Thread Patrick Luby
Bob, You can check the JVM version more accurately using the "java.specification.version" system property. It will always be "1.4" for J2SE 1.4.x so you can do the following: if ("1.4".equals(System.getProperty("java.specification.version"))) ... Patrick Bob Herrmann wrote: > Before

[PATCH] SSLSocket, CLIENT-AUTH, and JDK1.4

2002-10-07 Thread Bob Herrmann
Before I commit this diff, I would like some eyes. This fixes a problem with JSSE doing request for CERTS on an already established SSL Socket. I am concerned that this change may not pass the sniff test as I check a System.getProperty("java.vm").startsWith("1.4") to see if the extra jiggle is n