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: Authentication Realm...

2003-08-14 Thread Rowe, David (CAG-CC MIS)
like both branches HTTPCLIENT_2_0_BRANCH & HEAD are still buggy. I am working on a fix. Oleg -Original Message----- From: Rowe, David (CAG-CC MIS) [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 12, 2003 4:47 PM To: Commons HttpClient Project Subject: RE: Authentication Realm... Usin

ISA Proxy Auth.

2003-08-14 Thread Rowe, David (CAG-CC MIS)
Group, Has anyone successfully implemented a utility to Authenticate through MS ISA Proxy, using NTLM Authentication? I'm banging my head against the wall here... David Rowe ConAgra Foods, Inc. Web Application Development - Intern 7350 World Communications Drive Omaha, NE 68122 Phone: (402) 998

RE: Authentication Realm...

2003-08-14 Thread Rowe, David (CAG-CC MIS)
sible. Are you sure you are using the latest CVS snapshot of the 2.0 branch? Oleg -Original Message----- From: Rowe, David (CAG-CC MIS) [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 12, 2003 3:47 PM To: [EMAIL PROTECTED] Subject: Authentication Realm... Oleg, there are still references to

RE: NTLM Auth Code Snippet

2003-08-14 Thread Rowe, David (CAG-CC MIS)
the proxy server in question it would also be worthwhile checking the server logs to see if there are any clues as to why the authentication has been refused Oleg On Tue, 2003-08-12 at 23:00, Rowe, David (CAG-CC MIS) wrote: > public class Authentication > { > public A

RE: [PATCH] BasicAuthenticationExample Cosmetic changes

2003-08-14 Thread Rowe, David (CAG-CC MIS)
uthenticationExample Cosmetic changes David, The patch does not look right. It does not seem to change anything, it just deletes and recreates exactly the same file. Oleg -Original Message----- From: Rowe, David (CAG-CC MIS) [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 13, 2003 17:57 To

[PATCH] BasicAuthenticationExample Cosmetic changes

2003-08-14 Thread Rowe, David (CAG-CC MIS)
This patch fixes cosmetic errors in BasicAuthenticationExample.java. Refactors BasicAuthenticatonExample.java to BasicAuthenticationExample.java Minor inconsistencies fixed. David Rowe - To unsubscribe, e-mail: [EMAIL PROTECT

RE: Authentication Realm...

2003-08-14 Thread Rowe, David (CAG-CC MIS)
---- From: Rowe, David (CAG-CC MIS) [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 12, 2003 4:47 PM To: Commons HttpClient Project Subject: RE: Authentication Realm... Using a fresh compile off the CVS: [DEBUG] HttpMethodDirector - -Authorization required [INFO] HttpMethodDirector - -Already

NTLM Auth Code Snippet

2003-08-14 Thread Rowe, David (CAG-CC MIS)
public class Authentication { public Authentication() { } public static void main(String[] args) throws Exception { System.setProperty("org.apache.commons.logging.Log", "org.apache.commons.logging.impl.SimpleLog"); System.setProperty("org.apache.commons.logging.simpl

RE: NTLM Cipher Error

2003-08-14 Thread Rowe, David (CAG-CC MIS)
Error David, If this is indeed the case, there must be something wrong about your JDK installation. JCE is supposed to work out of the box with Java 1.4.x. Did you by any chance copy JCE jar files to /jre/lib/ext? Oleg -Original Message- From: Rowe, David (CAG-CC MIS) [mailto:[

Authentication Realm...

2003-08-14 Thread Rowe, David (CAG-CC MIS)
Oleg, there are still references to the realm in HttpMethodBase, regarding proxy authentication. It is still picking up the destination host i.e. "www.yahoo.com" as opposed to the proxy host. I don't know if this is the cause of my proxy authentication issues, which still go unresolved, but fo

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 Auth Code Snippet

2003-08-14 Thread Rowe, David (CAG-CC MIS)
idence of that. I have no other choice but to suggest one more time that there's something wrong with the credentials that you have been using to authenticate with the proxy. Oleg -----Original Message----- From: Rowe, David (CAG-CC MIS) [mailto:[EMAIL PROTECTED] Sent: Wednesday, Aug

[PATCH] BasicAuthenticationExample Cosmetic changes

2003-08-14 Thread Rowe, David (CAG-CC MIS)
Here's the zip, I apologize for not attaching correctly... BasicAuth.zip David Rowe <> BasicAuth.zip Description: Zip compressed data - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PR

RE: NTLM Cipher Error

2003-08-09 Thread Rowe, David (CAG-CC MIS)
ses are already available to the class loader. Just let the class loader do its magic. Oleg -Original Message----- From: Rowe, David (CAG-CC MIS) [mailto:[EMAIL PROTECTED] Sent: Friday, August 08, 2003 4:13 PM To: Commons HttpClient Project Subject: RE: NTLM Cipher Error Okay, I freshly install

RE: NTLM Cipher Error

2003-08-09 Thread Rowe, David (CAG-CC MIS)
r JDKs (1.2.x-1.3.x). As of JDK 1.4.x JCE is an integral part of the J2SE platform. By attempting to install JCE 1.2.2 on JDK 1.4.1 you have simply messed things up. Consider reinstalling Java. Oleg -----Original Message- From: Rowe, David (CAG-CC MIS) [mailto:[EMAIL PROTECTED] Sent

RE: NTLM Cipher Error

2003-08-09 Thread Rowe, David (CAG-CC MIS)
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 anyone else experienced this? Dave -Original Message

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)
e.printStackTrace(); } System.out.println("ok"); } public static void main(String[] args) { new Test(); } } Rowe, David (CAG-CC MIS) wrote: > Well, on that note, I have a check at the beginning of my program that simply checks > for the existence of javax

RE: NTLM Cipher Error

2003-08-08 Thread Rowe, David (CAG-CC MIS)
;t give you any more specific hints on this. Maybe you can use a test program that accesses the JCE directly to make sure it is configured as it should be. regards, Roland "Rowe, David (CAG-CC MIS)" <[EMAIL PROTECTED]> 07.08.2003 21:01 Please respond to "Comm