RE: NTLM Cipher Error

2003-08-14 Thread Rowe, David (CAG-CC MIS)
Here's the piece of code I'm using: public class BasicAuthenticatonExample { public BasicAuthenticatonExample() { } public static void main(String[] args) throws Exception { System.setProperty("org.apache.commons.logging.Log", "org.apache.commons.logging.imp

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
, 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,

RE: NTLM Cipher Error

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

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 */ pu

RE: NTLM Cipher Error

2003-08-14 Thread Kalnichevski, Oleg
> I'm running into an issues when attempting Proxy Authentication using NTLM. The > proxy itself is ISA, and from what > I can tell using the Log traces, is it's using the web-site I want to access (i.e. > www.yahoo.com) As the authentication > realm. > > [DEBUG] HttpMethodBase - -Authorizatio

RE: NTLM Cipher Error

2003-08-14 Thread Kalnichevski, Oleg
: 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

RE: NTLM Cipher Error

2003-08-14 Thread Kalnichevski, Oleg
> > Is there anything blatantly obvious here? All I need to do is be able to access > internet resources, through a Proxy (ISA) > that uses NTLM Authentication. David, I'll make sure that HttpClient picks up the correct credentials when authenticating with a proxy. As far as JCE is concerned,

NTLM Cipher Error

2003-08-14 Thread Rowe, David (CAG-CC MIS)
Good Morning all, I'm running into an issues when attempting Proxy Authentication using NTLM. The proxy itself is ISA, and from what I can tell using the Log traces, is it's using the web-site I want to access (i.e. www.yahoo.com) As the authentication realm. [DEBUG] HttpMethodBase - -Authoriz

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 -Ori

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-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.

RE: NTLM Cipher Error

2003-08-09 Thread Rowe, David (CAG-CC MIS)
path, it throws 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 clas

RE: NTLM Cipher Error

2003-08-09 Thread Rowe, David (CAG-CC MIS)
still not catching the crypto package? Dave -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 olde

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 (IS

RE: NTLM Cipher Error

2003-08-09 Thread Roland Weber
quot;Commons HttpClient Project" <[EMAIL PROTECTED]> 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

RE: NTLM Cipher Error

2003-08-09 Thread Rowe, David (CAG-CC MIS)
mmons 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

RE: NTLM Cipher Error

2003-08-08 Thread Rowe, David (CAG-CC MIS)
: Friday, August 08, 2003 9:32 AM To: Commons HttpClient 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 Lib

RE: NTLM Cipher Error

2003-08-08 Thread Rowe, David (CAG-CC MIS)
AM To: Commons HttpClient Project Subject: RE: NTLM Cipher Error 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 Pr