1.4 Error - JSSE implementation is non-pluggable
843811Feb 23 2002 — edited Jan 21 2005Hi,
Today I migrated our software from jdk 1.3.1 to 1.4 (released version). I recompiled everything and started my program. I had to replace all "com.sun.net.ssl.SSLContext" with "javax.net.ssl.SSLContext" because the former was deprecated. The first thing the program does is open an SSL connection (that worked great in 1.3.1) to our server.
Upon connection, I get this error:
java.net.SocketException: Export restriction: this JSSE implementation is non-pluggable.
at javax.net.ssl.DefaultSSLSocketFactory.createSocket(DashoA6275)
at sun.net.www.protocol.https.HttpsClient.doConnect(DashoA6275)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:366)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:582)
at sun.net.www.protocol.https.HttpsClient.<init>(DashoA6275)
at sun.net.www.protocol.https.HttpsClient.a(DashoA6275)
at sun.net.www.protocol.https.HttpsClient.a(DashoA6275)
at sun.net.www.protocol.https.HttpsClient.a(DashoA6275)
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.plainConnect(DashoA6275)
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(DashoA6275)
at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:510)
Any assistance would be greatly appreciated.
Rob