Sorry, that should have been:
It looks like you're not including com.sun.net.ssl.internal.s
Main Topics
Browse All TopicsHi,
I am trying to download a file from SSL site. When running it fails with above error.
When I try download a file from http site, it works fine. Only fails when downloading from https site.
Below is the code I am running:
import java.net.*;
import java.lang.*;
import java.io.*;
import java.security.*;
import javax.net.ssl.*;
public class getBatchStatus
{
public static void main (String[] args) {
System.setProperty("java.p
System.setProperty("https.
System.setProperty("https.
Security.addProvider(new com.sun.net.ssl.internal.s
try {
URL url = new URL("https://mysite.com");
// URL url = new URL("http://www.yahoo.com"
URLConnection urlConn = url.openConnection();
byte[] buffer = new byte[80];
int ch;
InputStream istream = urlConn.getInputStream();
FileOutputStream outXMLFile = new FileOutputStream("B-161020
//FileOutputStream outXMLFile = new FileOutputStream("test.htm
while ((ch = istream.read(buffer)) != -1) {
outXMLFile.write(buffer);
}
istream.close();
outXMLFile.close();
}
catch(Exception ex) {
ex.printStackTrace();
}
}
}
Please tell me what am I doing wrong and suggest me some solution.
Thanks in advance.
Raj
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
You don't need to include \jre\lib\ext on your classpath, this is automatically searched if the JVM can't find the class you refer to.
Also, there's not much point having the j2sdk1.4.2_01\bin on it either.
Other than that, it appears that jsse.jar should be found on the classpath. Hmm.
Can you post the complete exception string (I notice that in the question title, there is a mix of / and . between the package names).
Hi Raj,
I thought it was about time that I actually tried your code ;-)
I found an https address that I could use from my system, but I got an UnknownHostException on the proxy. This is because I don't have a proxy ;-)
I removed the proxyHost and proxyPort setup lines and tried again and it worked without any problems.
I'm not sure if the exception you're getting is the real problem or not. Could you try changing your "Security.addProvider..." line to:
com.sun.net.ssl.internal.s
Security.addProvider(prov)
This way, the compiler should determine if the Provider class can't be found. If it does compile, then I'm not sure where to go from there. Can you run the code without the proxy?
Hi Jim,
I tried as you have suggested.
It still fails with same error message
Exception in thread "main" java.lang.NoClassDefFoundE
I have also tried without proxy information, it still gives same error.
I also tried accessing to basic site "https://www.verisign.com"
Compilation is successfull in all these cases, error happens only when we run!
Thanks,
Raj..
Hmm. Verisign works OK for me :-(
OK. I'm into the realms of guesswork now (until more clues appear ;-)), so let's gather some information.
Do you have more than one version of Java installed on your machine?
Is your JAVA_HOME environment variable set? ("echo %JAVA_HOME%" from a command prompt)
Is your CLASSPATH environment variable set?
Try outputting the classpath property to see if there is something strange about it:
System.out.println("classp
(On my system, it just displays a ".")
One other idea:
One difference between your system and mine is that your jsse.jar etc. are in the jre\lib\ext directory, on mine they are in jre\lib. Try copying them up to that directory.
Regarding the "proxy". I'm not sure what effect this might have on the system. I've never used a proxy and so I don't quite know how that works. *If* you are accessing the https URL via a proxy, *perhaps* your proxy server needs access to the jsse.jar etc.
It *has* to be something with the classpath when you execute. The question is what?...
I've managed to get the same error, but only by removing (temporarily) the jsse.jar file from my /jre/lib directory.
At least this proves (on my system) where it's looking for that file.
However, if I recompile, I get errors because it can't find the jsse.jar! :-(
If you can compile OK, let's try forcing the runtime environment to find the file.
java -classpath .;c:\j2sdk1.4.2_01\jre\lib
(Make sure that you have jsse.jar in that directory :-))
Have you modified any files in the standard Java installation (eg. security properties)?
Hi girionis,
I thought of that one earlier, but didn't bother to comment on it. I've tried this with two jsse.jar files (one is 462Kb, the other is 895Kb). I thought that this could be the problem, but it worked fine with both of them.
What, in particular, are you looking for that will clarify whether it's out of date or not?
Thanx.
Jim.
Hi All,
Output of "jar -tvf jsse.jar"
36563 Mon Jun 02 20:21:50 BST 2003 META-INF/MANIFEST.MF
36305 Mon Jun 02 20:21:52 BST 2003 META-INF/SUN_MICR.SF
3275 Mon Jun 02 20:21:52 BST 2003 META-INF/SUN_MICR.RSA
0 Mon Jun 02 20:21:40 BST 2003 META-INF/
0 Mon Jun 02 20:21:32 BST 2003 javax/net/ssl/
232 Mon Jun 02 20:21:30 BST 2003 javax/net/ssl/SSLException
248 Mon Jun 02 20:21:30 BST 2003 javax/net/ssl/SSLHandshake
253 Mon Jun 02 20:21:32 BST 2003 javax/net/ssl/SSLPeerUnver
247 Mon Jun 02 20:21:32 BST 2003 javax/net/ssl/SSLProtocolE
242 Mon Jun 02 20:21:32 BST 2003 javax/net/ssl/SSLKeyExcept
754 Mon Jun 02 20:21:32 BST 2003 javax/net/ssl/SSLSession.c
251 Mon Jun 02 20:21:32 BST 2003 javax/net/ssl/SSLSessionCo
1644 Mon Jun 02 20:21:32 BST 2003 javax/net/ssl/SSLSocketFac
489 Mon Jun 02 20:21:32 BST 2003 javax/net/ssl/SSLSocketFac
1057 Mon Jun 02 20:21:32 BST 2003 javax/net/ssl/DefaultSSLSo
1220 Mon Jun 02 20:21:32 BST 2003 javax/net/ssl/SSLSocket.cl
266 Mon Jun 02 20:21:32 BST 2003 javax/net/ssl/HandshakeCom
279 Mon Jun 02 20:21:32 BST 2003 javax/net/ssl/SSLSessionBi
756 Mon Jun 02 20:21:32 BST 2003 javax/net/ssl/SSLServerSoc
562 Mon Jun 02 20:21:32 BST 2003 javax/net/ssl/SSLSessionBi
1556 Mon Jun 02 20:21:32 BST 2003 javax/net/ssl/SSLServerSoc
501 Mon Jun 02 20:21:32 BST 2003 javax/net/ssl/SSLServerSoc
806 Mon Jun 02 20:21:32 BST 2003 javax/net/ssl/DefaultSSLSe
889 Mon Jun 02 20:21:32 BST 2003 javax/net/ssl/HandshakeCom
0 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/
545 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/SSLContext
593 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/X509KeyMan
147 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/KeyManager
355 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/X509TrustM
149 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/TrustManag
2436 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/TrustManag
493 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/TrustManag
3667 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/SunJSSE_b.
402 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/TrustManag
2464 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/KeyManager
489 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/KeyManager
491 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/KeyManager
330 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/SSLPermiss
2986 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/SSLContext
2049 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/HttpsURLCo
388 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/HttpsURLCo
212 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/HostnameVe
0 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/
0 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/s
259 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/internal/s
2599 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/internal/s
3831 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/internal/s
2554 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/internal/s
3115 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/internal/s
17303 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/internal/s
663 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/internal/s
2020 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/internal/s
2622 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/internal/s
3963 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/internal/s
13716 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/internal/s
8476 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/internal/s
2461 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/internal/s
944 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/internal/s
1763 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/internal/s
1142 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/internal/s
2457 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/internal/s
937 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/internal/s
944 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/internal/s
1138 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/internal/s
1152 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/internal/s
4544 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/internal/s
608 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/internal/s
886 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/internal/s
1268 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/internal/s
5893 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/internal/s
1253 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/internal/s
14355 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/internal/s
3275 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/internal/s
2166 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/internal/s
507 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/internal/s
1387 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/internal/s
7978 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
1126 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/internal/s
1032 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/internal/s
2969 Mon Jun 02 20:21:32 BST 2003 com/sun/net/ssl/internal/s
10066 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
3096 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
5239 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
256 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
8148 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
2059 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
7078 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
3445 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
3044 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
2761 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
4299 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
655 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
2917 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
4327 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
2242 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
773 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
2226 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
2111 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
2670 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
331 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
3299 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
4461 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
1511 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
3294 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
759 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
3042 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
3305 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
1451 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
1408 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
2072 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
6367 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
1615 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
269 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
1014 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
1040 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
1549 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
1074 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
319 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
1038 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
1108 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
476 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
535 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
2875 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
1385 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
3186 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
2939 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
2354 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
204 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
261 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
1853 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
6843 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
871 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
3071 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
2898 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
1516 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
410 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
935 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
356 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
523 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
6977 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
972 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
418 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
433 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
389 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
632 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
535 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
484 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
783 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
1513 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
403 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
1591 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
1601 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
4804 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
2033 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
3082 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
525 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
984 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
984 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
988 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
2296 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
1162 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
5460 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
4472 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
1319 Mon Jun 02 20:21:34 BST 2003 com/sun/net/ssl/internal/s
744 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/s
7639 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/s
1558 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/s
298 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/s
12335 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/s
3954 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/s
588 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/s
709 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/s
525 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/s
0 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
0 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
0 Mon Jun 02 20:21:38 BST 2003 com/sun/net/ssl/internal/w
749 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
13077 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
3050 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
7370 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
10912 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
1313 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
2171 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
1528 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
2140 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
499 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
3103 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
1038 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
260 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
828 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
495 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
490 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
234 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
731 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
871 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
1467 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
1268 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
495 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
2374 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
1654 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
3269 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
1918 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
1619 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
899 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
2129 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
1238 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
326 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
3333 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
328 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
556 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
904 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
816 Mon Jun 02 20:21:36 BST 2003 com/sun/net/ssl/internal/w
700 Mon Jun 02 20:21:38 BST 2003 com/sun/net/ssl/internal/w
507 Mon Jun 02 20:21:38 BST 2003 com/sun/net/ssl/internal/w
1048 Mon Jun 02 20:21:38 BST 2003 com/sun/net/ssl/internal/w
1970 Mon Jun 02 20:21:38 BST 2003 com/sun/net/ssl/internal/w
2490 Mon Jun 02 20:21:38 BST 2003 com/sun/net/ssl/internal/w
0 Mon Jun 02 20:21:34 BST 2003 COM/
0 Mon Jun 02 20:21:38 BST 2003 COM/rsa/
0 Mon Jun 02 20:21:40 BST 2003 COM/rsa/jsafe/
3559 Mon Jun 02 20:21:34 BST 2003 COM/rsa/jsafe/SunJSSE_w.cl
529 Mon Jun 02 20:21:34 BST 2003 COM/rsa/jsafe/SunJSSE_x.cl
430 Mon Jun 02 20:21:34 BST 2003 COM/rsa/jsafe/SunJSSE_y.cl
281 Mon Jun 02 20:21:34 BST 2003 COM/rsa/jsafe/SunJSSE_z.cl
277 Mon Jun 02 20:21:34 BST 2003 COM/rsa/jsafe/SunJSSE_aa.c
871 Mon Jun 02 20:21:34 BST 2003 COM/rsa/jsafe/SunJSSE_ab.c
615 Mon Jun 02 20:21:34 BST 2003 COM/rsa/jsafe/SunJSSE_ac.c
1335 Mon Jun 02 20:21:34 BST 2003 COM/rsa/jsafe/SunJSSE_ad.c
506 Mon Jun 02 20:21:34 BST 2003 COM/rsa/jsafe/SunJSSE_ae.c
1784 Mon Jun 02 20:21:34 BST 2003 COM/rsa/jsafe/SunJSSE_af.c
282 Mon Jun 02 20:21:34 BST 2003 COM/rsa/jsafe/SunJSSE_ag.c
4582 Mon Jun 02 20:21:34 BST 2003 COM/rsa/jsafe/SunJSSE_ah.c
589 Mon Jun 02 20:21:34 BST 2003 COM/rsa/jsafe/SunJSSE_ai.c
1303 Mon Jun 02 20:21:34 BST 2003 COM/rsa/jsafe/SunJSSE_aj.c
476 Mon Jun 02 20:21:34 BST 2003 COM/rsa/jsafe/SunJSSE_ak.c
6665 Mon Jun 02 20:21:34 BST 2003 COM/rsa/jsafe/SunJSSE_al.c
6377 Mon Jun 02 20:21:34 BST 2003 COM/rsa/jsafe/SunJSSE_ao.c
1131 Mon Jun 02 20:21:34 BST 2003 COM/rsa/jsafe/SunJSSE_ap.c
8694 Mon Jun 02 20:21:34 BST 2003 COM/rsa/jsafe/SunJSSE_aq.c
542 Mon Jun 02 20:21:34 BST 2003 COM/rsa/jsafe/SunJSSE_ar.c
292 Mon Jun 02 20:21:34 BST 2003 COM/rsa/jsafe/SunJSSE_as.c
585 Mon Jun 02 20:21:34 BST 2003 COM/rsa/jsafe/SunJSSE_at.c
385 Mon Jun 02 20:21:34 BST 2003 COM/rsa/jsafe/SunJSSE_au.c
358 Mon Jun 02 20:21:34 BST 2003 COM/rsa/jsafe/SunJSSE_av.c
3568 Mon Jun 02 20:21:34 BST 2003 COM/rsa/jsafe/SunJSSE_aw.c
4423 Mon Jun 02 20:21:34 BST 2003 COM/rsa/jsafe/SunJSSE_a3.c
494 Mon Jun 02 20:21:34 BST 2003 COM/rsa/jsafe/SunJSSE_a4.c
3540 Mon Jun 02 20:21:34 BST 2003 COM/rsa/jsafe/SunJSSE_a5.c
2246 Mon Jun 02 20:21:34 BST 2003 COM/rsa/jsafe/SunJSSE_a6.c
3278 Mon Jun 02 20:21:34 BST 2003 COM/rsa/jsafe/SunJSSE_a7.c
7417 Mon Jun 02 20:21:36 BST 2003 COM/rsa/jsafe/SunJSSE_a8.c
1667 Mon Jun 02 20:21:36 BST 2003 COM/rsa/jsafe/SunJSSE_a9.c
282 Mon Jun 02 20:21:36 BST 2003 COM/rsa/jsafe/SunJSSE_bk.c
1045 Mon Jun 02 20:21:36 BST 2003 COM/rsa/jsafe/SunJSSE_bl.c
6395 Mon Jun 02 20:21:36 BST 2003 COM/rsa/jsafe/SunJSSE_bm.c
1116 Mon Jun 02 20:21:36 BST 2003 COM/rsa/jsafe/SunJSSE_bn.c
10016 Mon Jun 02 20:21:36 BST 2003 COM/rsa/jsafe/SunJSSE_bo.c
410 Mon Jun 02 20:21:36 BST 2003 COM/rsa/jsafe/SunJSSE_bp.c
769 Mon Jun 02 20:21:36 BST 2003 COM/rsa/jsafe/SunJSSE_bq.c
2695 Mon Jun 02 20:21:36 BST 2003 COM/rsa/jsafe/SunJSSE_br.c
3073 Mon Jun 02 20:21:36 BST 2003 COM/rsa/jsafe/SunJSSE_bs.c
1004 Mon Jun 02 20:21:36 BST 2003 COM/rsa/jsafe/SunJSSE_bt.c
177 Mon Jun 02 20:21:36 BST 2003 COM/rsa/jsafe/SunJSSE_bu.c
508 Mon Jun 02 20:21:36 BST 2003 COM/rsa/jsafe/SunJSSE_bv.c
7863 Mon Jun 02 20:21:36 BST 2003 COM/rsa/jsafe/SunJSSE_bw.c
1846 Mon Jun 02 20:21:36 BST 2003 COM/rsa/jsafe/SunJSSE_bx.c
993 Mon Jun 02 20:21:36 BST 2003 COM/rsa/jsafe/SunJSSE_by.c
1812 Mon Jun 02 20:21:36 BST 2003 COM/rsa/jsafe/SunJSSE_bz.c
282 Mon Jun 02 20:21:36 BST 2003 COM/rsa/jsafe/SunJSSE_b0.c
3723 Mon Jun 02 20:21:36 BST 2003 COM/rsa/jsafe/SunJSSE_b2.c
814 Mon Jun 02 20:21:36 BST 2003 COM/rsa/jsafe/SunJSSE_b3.c
3095 Mon Jun 02 20:21:36 BST 2003 COM/rsa/jsafe/SunJSSE_b4.c
1613 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_ce.c
985 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_cf.c
237 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_cg.c
486 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_ch.c
616 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_ci.c
625 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_cj.c
618 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_ck.c
551 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_cl.c
616 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_cm.c
616 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_cn.c
490 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_co.c
928 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_cp.c
1015 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_cq.c
996 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_cr.c
1894 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_cs.c
282 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_ct.c
196 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_cu.c
501 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_cv.c
388 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_cw.c
282 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_cx.c
282 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_cy.c
11156 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_cz.c
233 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_c0.c
1496 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_c1.c
3120 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_c2.c
957 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_c3.c
7915 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_c4.c
177 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_c5.c
1843 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_c6.c
1588 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_c7.c
6637 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_c8.c
1035 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_c9.c
5469 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_da.c
5046 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_db.c
4563 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_dc.c
3517 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_dd.c
6624 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_de.c
4513 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_df.c
5505 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_dg.c
3474 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_dh.c
5296 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_di.c
5901 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_dj.c
4844 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_dk.c
4567 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_dl.c
2310 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_dm.c
3804 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_dn.c
3379 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_do.c
3067 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_dp.c
600 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_dq.c
360 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_dr.c
2254 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_ds.c
2796 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_dt.c
727 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_du.c
360 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_dv.c
360 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_dw.c
1798 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_dx.c
1309 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_dy.c
1278 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_dz.c
1167 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_d1.c
9831 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_d2.c
1144 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_d3.c
3949 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_d4.c
9507 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_d5.c
3446 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_d6.c
10816 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_d7.c
3208 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_d8.c
701 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_d9.c
3285 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_ea.c
4146 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_eb.c
4007 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_ec.c
2281 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_ed.c
1321 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_ee.c
2839 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_ef.c
2760 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_eg.c
2887 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_eh.c
3404 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_ei.c
1426 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_ej.c
466 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_ek.c
15858 Mon Jun 02 20:21:38 BST 2003 COM/rsa/jsafe/SunJSSE_el.c
2253 Mon Jun 02 20:21:40 BST 2003 COM/rsa/jsafe/SunJSSE_em.c
1442 Mon Jun 02 20:21:40 BST 2003 COM/rsa/jsafe/SunJSSE_eo.c
1803 Mon Jun 02 20:21:40 BST 2003 COM/rsa/jsafe/SunJSSE_eq.c
1344 Mon Jun 02 20:21:40 BST 2003 COM/rsa/jsafe/SunJSSE_er.c
4161 Mon Jun 02 20:21:40 BST 2003 COM/rsa/jsafe/SunJSSE_et.c
282 Mon Jun 02 20:21:40 BST 2003 COM/rsa/jsafe/SunJSSE_eu.c
6174 Mon Jun 02 20:21:40 BST 2003 COM/rsa/jsafe/SunJSSE_ev.c
4729 Mon Jun 02 20:21:40 BST 2003 COM/rsa/jsafe/SunJSSE_ew.c
2112 Mon Jun 02 20:21:40 BST 2003 COM/rsa/jsafe/SunJSSE_ex.c
2681 Mon Jun 02 20:21:40 BST 2003 COM/rsa/jsafe/SunJSSE_ez.c
2386 Mon Jun 02 20:21:40 BST 2003 COM/rsa/jsafe/SunJSSE_e0.c
2599 Mon Jun 02 20:21:40 BST 2003 COM/rsa/jsafe/SunJSSE_e1.c
2295 Mon Jun 02 20:21:40 BST 2003 COM/rsa/jsafe/SunJSSE_e2.c
1766 Mon Jun 02 20:21:40 BST 2003 COM/rsa/jsafe/SunJSSE_e3.c
1705 Mon Jun 02 20:21:40 BST 2003 COM/rsa/jsafe/SunJSSE_e4.c
1710 Mon Jun 02 20:21:40 BST 2003 COM/rsa/jsafe/SunJSSE_e5.c
2537 Mon Jun 02 20:21:40 BST 2003 COM/rsa/jsafe/SunJSSE_e6.c
2230 Mon Jun 02 20:21:40 BST 2003 COM/rsa/jsafe/SunJSSE_e7.c
1706 Mon Jun 02 20:21:40 BST 2003 COM/rsa/jsafe/SunJSSE_e8.c
2031 Mon Jun 02 20:21:40 BST 2003 COM/rsa/jsafe/SunJSSE_e9.c
2086 Mon Jun 02 20:21:40 BST 2003 COM/rsa/jsafe/SunJSSE_fa.c
1652 Mon Jun 02 20:21:40 BST 2003 COM/rsa/jsafe/SunJSSE_fb.c
2182 Mon Jun 02 20:21:40 BST 2003 COM/rsa/jsafe/SunJSSE_fc.c
2871 Mon Jun 02 20:21:40 BST 2003 COM/rsa/jsafe/SunJSSE_fd.c
1074 Mon Jun 02 20:21:40 BST 2003 COM/rsa/jsafe/SunJSSE_fe.c
1433 Mon Jun 02 20:21:40 BST 2003 COM/rsa/jsafe/SunJSSE_ff.c
1827 Mon Jun 02 20:21:40 BST 2003 COM/rsa/jsafe/SunJSSE_fg.c
511 Mon Jun 02 20:21:40 BST 2003 COM/rsa/jsafe/SunJSSE_fh.c
2781 Mon Jun 02 20:21:40 BST 2003 COM/rsa/jsafe/SunJSSE_fi.c
2822 Mon Jun 02 20:21:40 BST 2003 COM/rsa/jsafe/SunJSSE_fj.c
509 Mon Jun 02 20:21:40 BST 2003 COM/rsa/jsafe/SunJSSE_fk.c
1704 Mon Jun 02 20:21:40 BST 2003 COM/rsa/jsafe/SunJSSE_fl.c
3602 Mon Jun 02 20:21:40 BST 2003 COM/rsa/jsafe/SunJSSE_fm.c
0 Mon Jun 02 20:21:40 BST 2003 COM/rsa/asn1/
835 Mon Jun 02 20:21:36 BST 2003 COM/rsa/asn1/SunJSSE_ba.cl
1293 Mon Jun 02 20:21:36 BST 2003 COM/rsa/asn1/SunJSSE_bb.cl
5642 Mon Jun 02 20:21:36 BST 2003 COM/rsa/asn1/SunJSSE_bc.cl
4411 Mon Jun 02 20:21:36 BST 2003 COM/rsa/asn1/SunJSSE_bd.cl
1843 Mon Jun 02 20:21:36 BST 2003 COM/rsa/asn1/SunJSSE_be.cl
298 Mon Jun 02 20:21:36 BST 2003 COM/rsa/asn1/SunJSSE_bf.cl
2387 Mon Jun 02 20:21:36 BST 2003 COM/rsa/asn1/SunJSSE_bg.cl
2505 Mon Jun 02 20:21:36 BST 2003 COM/rsa/asn1/SunJSSE_bh.cl
2175 Mon Jun 02 20:21:36 BST 2003 COM/rsa/asn1/SunJSSE_bi.cl
229 Mon Jun 02 20:21:36 BST 2003 COM/rsa/asn1/SunJSSE_bj.cl
1384 Mon Jun 02 20:21:40 BST 2003 COM/rsa/asn1/SunJSSE_en.cl
468 Mon Jun 02 20:21:40 BST 2003 COM/rsa/asn1/SunJSSE_ep.cl
2525 Mon Jun 02 20:21:40 BST 2003 COM/rsa/asn1/SunJSSE_es.cl
3787 Mon Jun 02 20:21:40 BST 2003 COM/rsa/asn1/SunJSSE_ey.cl
0 Mon Jun 02 20:21:40 BST 2003 COM/rsa/Intel/
318 Mon Jun 02 20:21:38 BST 2003 COM/rsa/Intel/IntelStatist
1386 Mon Jun 02 20:21:38 BST 2003 COM/rsa/Intel/SunJSSE_d0.c
235 Mon Jun 02 20:21:40 BST 2003 COM/rsa/Intel/Intel.class
Output of "java -version"
java version "1.3.1_01
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_01)
Java Hotspot (TM) CLient VM (build 1.3.1_01, mixed mode)
Thanks,
Raj.
This is my PATH variable value.
C:\Program Files\Microsoft Visual Studio\Common\Tools\WinNT;
Funny thing is I only have new version in PATH variable.
I have checked the registry entries as well, they all pointed to 1.4.2_01 only.
Thanks,
Raj..
It's simple, the jsse.jar file is not included in the jdk1.3. When you compile it it is looking in the *jdk1.3* ext folder (since you are using jdk1.3) and not in the jdk1.4 ext folder (since it's not explicit in your classpath), that's why it can't find the jsse.jar file.
I suggest two solutions:
1) copy the jsse.jar file somewhere and alter the classpath accordingly (reccomended)
2) Leave the jsse.jar file where it is and point your classpath to the jdk1.4/ext folder.
Well, if you've checked the registry, I assume you know what you're doing with Windows ;-)
Is that your complete PATH? Because the PATH is searched in sequence, if you have any references to your Oracle installation before the j2sdk1.4.2... entry, that will be causing you a problem.
The installation docs for JDK1.4 from Sun recommend uninstalling previous versions of Java before installing 1.4. Is it possible for you to clean the system of all your JDKs, then re-install 1.4? Note that this may have an impact on your Oracle installation.
I don't think this is to do with your certificate.
403 is:
The request is forbidden because of some reason that remains unknown to the client. Authorization
will not help and the request should not be repeated. This status code can be used if the server does
not want to make public why the request cannot be fulfilled.
Something in your server has decided to reject the request, but it's not going to tell you why ;-)
If your server is a Servlet/JSP, I'd recommend a new post in the JSP TA. If I can, I'll continue to help there, but with a question like this, it is unlikely that many new people will join in to help out.
Hi Jim,
I will clear my requirement here.
I need to download status of my orders from foreign https website.
When I use this code, status will be downloaded in form of XML file (For which I am using FileOutputStream).
I don't know what server is it in that foreign https website.
They said, to know the status, I have to download xml files for every order from their site. For which they have issued me a digital signature certificate.
Pl. let me know if you need more information.
Thanks and Regards,
Raj
I've never come across .pfx before. How do you use one?
I'm not sure how you intend to use the certificate (is it an X.509 certificate?)
This may be helpful:
http://java.sun.com/j2se/1
This tool allows you to store a digital certificate on your system. If this is going in the right direction, you'll need to have a look at:
http://java.sun.com/docs/b
too.
Business Accounts
Answer for Membership
by: jimmackPosted on 2003-10-27 at 01:03:34ID: 9625663
It looks like you're not including com.sun.net.ssl.internal.w ww.protoco l in your classpath.