| View previous topic :: View next topic |
| Author |
Message |
zhuo_sung Guest
|
Posted: Fri Mar 09, 2007 11:11 pm Post subject: cannot find the javax.net.ssl.SSLEngineResult.HandshakeStatu |
|
|
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 |
|
| Back to top |
|
 |
Tom Hawtin Guest
|
Posted: Fri Mar 09, 2007 11:49 pm Post subject: Re: cannot find the javax.net.ssl.SSLEngineResult.HandshakeS |
|
|
zhuo_sung wrote:
| Quote: |
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 |
|
| Back to top |
|
 |
|