[GUMP@brutus]: commons-httpclient-20-branch/commons-httpclient-2.0-branch prerequisite failed

2004-05-25 Thread Stefan Bodewig
To whom it may satisfy... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact folk at [EMAIL PROTECTED] Project commons-httpclient-2.0-branch *no longer* has an issue. Project State :

[GUMP@brutus]: jakarta-commons/commons-httpclient prerequisite failed

2004-05-25 Thread Stefan Bodewig
To whom it may satisfy... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact folk at [EMAIL PROTECTED] Project commons-httpclient *no longer* has an issue. Project State : 'Prerequisite Failed',

Re: retrieved wired code for Unicode

2004-05-25 Thread Michael Becke
Hello KMKU, The wire log converts all content to ASCII, and encodes all non-ASCII characters to the format you've seen. The actual content of the HTTP response (available via HttpMethod.getResponseBody*() methods) correctly handles charsets. The wire log is just meant for debugging. Mike

Re: Posting XML over authenticated connection using SSL

2004-05-25 Thread Lee Francis Wilhelmsen
Just like to thank everyone that helped me with the trouble I was having with the http client. Everything worked out ok in the end. Regards Lee Francis Wilhelmsen - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: client certificates: contribution

2004-05-25 Thread Michael Becke
Tim, I would actually suggest creating a new bug in Bugzilla and attaching the contribution there. That way there is a public record of where the code came from. As Ortwin mentions a CLA, though actually not required, would be desirable. Mike On May 25, 2004, at 2:51 AM, Ortwin Glück wrote:

RE: retrieved wired code for Unicode

2004-05-25 Thread K.M. Ku
Hi Mike Thx for info. However, I cannot get the correct Unicode character after storing in String. It is oK for ISO8859 (as it is the default charset of httpclient, right?). Can you share me the correct method to store the Unicode characters into String variable? Thx a millon. KMKU

Re: retrieved wired code for Unicode

2004-05-25 Thread Ortwin Glück
K.M. Ku wrote: Hi Mike Thx for info. However, I cannot get the correct Unicode character after storing in String. It is oK for ISO8859 (as it is the default charset of httpclient, right?). Can you share me the correct method to store the Unicode characters into String variable? Thx a millon. KMKU

Help on getting started using HttpClient

2004-05-25 Thread Gowda, Prasad
Hi guys, I am using HttpClient for the first time. Wrote a program on the same lines as described in the tutorial section on the HttpClient documentation website Here is the output I get when I invoked one of the URL's using the GetMethod HTML !-- File: redirectmeta.html -- HEAD TITLELivelink -

RE: retrieved wired code for Unicode

2004-05-25 Thread Oleg Kalnichevski
KMKU, There's a bug that causes HttpClient 2.0 to produce erroneous wirelog output. The bug has been fixed a while ago, but the code containing the fix has not been released yet. You have to use nightly builds of HttpClient 2.0 until 2.0.1 is released (can be obtained here

DO NOT REPLY [Bug 29062] - [API Doc] Improve the description of the preemptive authentication

2004-05-25 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=29062. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

importing certs with private key into keystore

2004-05-25 Thread Tim Wild
Hi, Can anyone tell me how to get my client certificate, complete with private key, into my Java keystore? I have my openssl generated certificate and private key in .pem files. I can get it in sometimes, but never with private key, and if I do get it in I get errors when I try to use Java to

Re: importing certs with private key into keystore

2004-05-25 Thread Jesus M. Salvo Jr.
Hi, What I did was this: 1) I created a keystore with a new private key via: keytool -genkey ... which will create a JKS keystore 2) I then load the PKCS12 keystore KeyStore inputKeyStore = KeyStore.getInstance( PKCS12 ); inputKeyStore.load(new

DO NOT REPLY [Bug 29062] - [API Doc] Improve the description of the preemptive authentication

2004-05-25 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=29062. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: importing certs with private key into keystore

2004-05-25 Thread Tim Wild
I managed it another way (after pulling my hair out for quite a while), using OpenSSL. openssl req -new -keyout bobkey.pem -out bobreq.pem -days 360 cat bobreq.pem bobkey.pem bobreq2.pem openssl ca -policy policy_anything -out bobcert.pem -infiles bobreq2.pem openssl pkcs12 -in bobcert.pem -out