Hi everybody,
I cannot find the javax.net.ssl.SSLEngineResult.HandshakeStatus nor the javax.
net.ssl.SSLEngineResult.Status classes even though they are supposedly
included in the j2se1.5.0 . Any help will be greatly appreciated
Thanks
Tom Hawtin - 09 Mar 2007 17:49 GMT
> I cannot find the javax.net.ssl.SSLEngineResult.HandshakeStatus nor the javax.
> net.ssl.SSLEngineResult.Status classes even though they are supposedly
> included in the j2se1.5.0 . Any help will be greatly appreciated
What do you mean by "cannot find"?
Does the following program compile and work for you?
class CheckSSL {
public static void main(String[] args) {
System.err.println(
javax.net.ssl.SSLEngineResult.HandshakeStatus.FINISHED
);
}
}
Tom Hawtin