Problems with moving from 1.3 to 1.4
I am running java procedures which are stored on an oracle database. Originally, we had Oracle 9i, which comes with a 1.3 JVM. We tried to implement JSSE by loading in the 3 jar files that are required, and following all of the instructions.
This led to a dead end, so we persuaded our superiors to upgrade to 10g. This comes with a 1.4 JVM. Now I get an exception: NoClassDefFoundError when I try to cast a URLConnection to a HttpsUrlConnection like so:httpsUrlConn = (HttpsURLConnection)Fimars.openConnection();
where Fimars is a URL object.
I removed the 3 old jsse.zip jar files and tried again, but this time it doesn't recognize SSLSession, and I can't find it anywhere in the java files.
If anyone has any suggestions, please let me know.
Thanks,
Wes

