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