cannot find the JAVAx.net.ssl.SSLEngineResult.HandshakeStatus class
2 Message(s) by 2 Author(s) originally posted in java security
| From: zhuo_sung |
Date: Friday, March 09, 2007
|
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
| From: Tom Hawtin |
Date: Friday, March 09, 2007
|
wrote in message:
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
Next Message: Does HTTPS secure JAVA?