RE: NTLM Cipher Error

2003-08-14 Thread Kalnichevski, Oleg
Can you comment out the check just for a heck of it? Oleg -Original Message- From: Rowe, David (CAG-CC MIS) [mailto:[EMAIL PROTECTED] Sent: Friday, August 08, 2003 4:23 PM To: Commons HttpClient Project Subject: RE: NTLM Cipher Error Well, on that note, I have a check at the beginning

RE: NTLM Cipher Error

2003-08-14 Thread Kalnichevski, Oleg
David, If it is an option, just use Java 1.4.x that comes with JCE bundled and configured Oleg -Original Message- From: Roland Weber [mailto:[EMAIL PROTECTED] Sent: Friday, August 08, 2003 8:33 AM To: Commons HttpClient Project Subject: RE: NTLM Cipher Error Hello Dave

RE: NTLM Cipher Error

2003-08-14 Thread Kalnichevski, Oleg
PROTECTED] Sent: Friday, August 08, 2003 2:57 PM To: Commons HttpClient Project Subject: RE: NTLM Cipher Error I am using JDK 1.4.1_01, I'm somewhat new to Java so configuring the Security is kind of a hairy thing. As far as I can tell, the java.security / policy files are correct. Dave

RE: NTLM Cipher Error

2003-08-14 Thread Kalnichevski, Oleg
, 2003 4:29 PM To: Commons HttpClient Project Subject: RE: NTLM Cipher Error I did, and I get the error at the same ol' place. NoClassDefFound for javax.crypto.CipherSpi... Dave PS A little pre-thank you for all your help so far... :) -Original Message- From: Kalnichevski, Oleg

RE: NTLM Cipher Error

2003-08-14 Thread Kalnichevski, Oleg
To: Commons HttpClient Project Subject: RE: NTLM Cipher Error Okay, I freshly installed JDK 1.4.1_01 (what we're standardized with), added the jce.jar to the class path, I'm using Eclipse, just for reference. I'm still getting the same error. It's hitting it right after these debug messages

Re: NTLM Cipher Error

2003-08-14 Thread Ortwin Glück
Following Code works for me with 1.4.1 in Eclipse with nothing added to the Classpath. I guess you are not running under 1.4.1 but 1.3. Check the system libraries in the Eclipse Build path. Use add Library to add the 1.4.1 System libraries. package test; /** * * @author Ortwin Glück */

RE: NTLM Cipher Error

2003-08-10 Thread Rowe, David (CAG-CC MIS)
-Original Message- From: Kalnichevski, Oleg [mailto:[EMAIL PROTECTED] Sent: Friday, August 08, 2003 8:17 AM To: Commons HttpClient Project Subject: RE: NTLM Cipher Error All right. I believe I know what is going on. JCE 1.2.2 is intended for older JDKs (1.2.x-1.3.x). As of JDK 1.4.x JCE

RE: NTLM Cipher Error

2003-08-10 Thread Rowe, David (CAG-CC MIS)
the exception. Dave -Original Message- From: Kalnichevski, Oleg [mailto:[EMAIL PROTECTED] Sent: Friday, August 08, 2003 9:19 AM To: Commons HttpClient Project Subject: RE: NTLM Cipher Error David, You are not supposed to add JCE.jar to the class path. All the JCE classes are already

RE: NTLM Cipher Error

2003-08-10 Thread Kalnichevski, Oleg
Message- From: Rowe, David (CAG-CC MIS) [mailto:[EMAIL PROTECTED] Sent: Friday, August 08, 2003 3:05 PM To: Commons HttpClient Project Subject: RE: NTLM Cipher Error Yep, they're under that directory. jce.jar, jce1_2_2.jar, sunjce_provider.jar, local_policy.jar, US_policy.jar. Dave

RE: NTLM Cipher Error

2003-08-09 Thread Rowe, David (CAG-CC MIS)
HttpClient Project Subject: RE: NTLM Cipher Error Can you comment out the check just for a heck of it? Oleg -Original Message- From: Rowe, David (CAG-CC MIS) [mailto:[EMAIL PROTECTED] Sent: Friday, August 08, 2003 4:23 PM To: Commons HttpClient Project Subject: RE: NTLM Cipher Error Well

RE: NTLM Cipher Error

2003-08-09 Thread Roland Weber
] cc: Subject:RE: NTLM Cipher Error As far as I can tell, everything seems to be in order. Are there any special caveats regarding using the JCE (jce1_2_2.jar or jce.jar)? It seems odd to have the JCE in the classpath, yet, it throws a NoClassDefFound exception. Has

RE: NTLM Cipher Error

2003-08-09 Thread Rowe, David (CAG-CC MIS)
- From: Kalnichevski, Oleg [mailto:[EMAIL PROTECTED] Sent: Thursday, August 07, 2003 11:03 AM To: Commons HttpClient Project Subject: RE: NTLM Cipher Error Is there anything blatantly obvious here? All I need to do is be able to access internet resources, through a Proxy (ISA) that uses

RE: NTLM Cipher Error

2003-08-08 Thread Rowe, David (CAG-CC MIS)
Project Subject: Re: NTLM Cipher Error Following Code works for me with 1.4.1 in Eclipse with nothing added to the Classpath. I guess you are not running under 1.4.1 but 1.3. Check the system libraries in the Eclipse Build path. Use add Library to add the 1.4.1 System libraries. package test