Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to establish a HTTPS Connection with Java 1.3?

Tags:

java

https

I have to work on an old 1.3 JVM and I'm asked to create a secure connection to another server. Unfortunately the HttpsURLConnection only appears sinc JVM 1.4.

Is there another way to create a secure connection? Is there a library that I could you to add this fonctionnality?

like image 507
gizmo Avatar asked Dec 10 '22 23:12

gizmo


1 Answers

You need to install the Java Secure Socket Extension (JSSE), which used to be required because Sun wouldn't ship it with the JDK because of comedy export restrictions. I had a look on Sun's web site, but the JDK 1.3 instructions are preving elusive. Bear in mind that JDK 1.3 is now end-of-lifed by Sun, so they may not have any information any more.

http://hc.apache.org/httpclient-3.x/sslguide.html

like image 163
skaffman Avatar answered Dec 22 '22 01:12

skaffman