Fw: [Apache Newsletter Draft] News on Jakarta in July, 2003

2003-08-01 Thread Tetsuya Kitahata
Dear Jakarta Commons-HttpClient Development Team, (http://jakarta.apache.org/commons/httpclient/) Hello, I am now in the process of preparing the first all-Apache-wide newsletter. http://www.apache.org/newsletter/ Please feel free to write statement/comment etc. to the Apache Newsletter (Issue

Does HTTPClient consults with browser when it is running under java plugin.

2003-08-01 Thread Reddy Annapareddy
All, I am trying to use httpclient in an applet that runs in jdk 1.4.2 jre. Our web application (j2ee 1.3) security enabled and uses form login (j_security_check) and deployed on websphere 5.x app server . After successful login user gets applet page. When ever we make sun's URLConnection to my se

DO NOT REPLY [Bug 22073] - Javadocs clean-up

2003-08-01 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 22073] New: - Javadocs clean-up

2003-08-01 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

Contributors wanted for javadocs clean-up

2003-08-01 Thread Oleg Kalnichevski
To all HttpClient users out there, Before HttpClient 2.0 can be released we still have a very tedious but important task to complete: javadocs clean-up. The javadocs of many 'older' classes such as HttpClient, HttpMethod, HttpMethodBase, etc are helplessly outdated or/and inconsistent and in need

DO NOT REPLY [Bug 10790] - Non-standards configuration and tracking

2003-08-01 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 22069] - Cookie Strict Mode independent of regular Strict Mode

2003-08-01 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 22069] New: - Cookie Strict Mode independent of regular Strict Mode

2003-08-01 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 19373] - Performance Optimizations

2003-08-01 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

Re: Fw: unable to find line starting with "HTTP" error

2003-08-01 Thread [EMAIL PROTECTED]
Hi, thank you very much for the help.. Actually I always try sending a HEAD request first, and then skip to GET in case of failure. I have already dealt with the problem of servers sending Body even in response to a HEAD request: Oleg adviced me to add the statement httphead.setBodyCheckTimeout(5

Re: unable to find line starting with "HTTP" error

2003-08-01 Thread Oleg Kalnichevski
OK. Now I know what is going on here. The server simply send the HTML page body without ANY response header of what so ever. No wonder HttpClient cannot find a status line. Stuff like that cannot work, as far as I am concerned. Feel free to drop the webmaster of that site a line. Oleg -

Re: Fw: unable to find line starting with "HTTP" error

2003-08-01 Thread Oleg Kalnichevski
Forget my remark. I took the wrong URL. Stupid me. Oleg On Fri, 2003-08-01 at 15:28, Oleg Kalnichevski wrote: > Hmmm. It seems to work just fine. What is it exactly that you are doing? > Here's the code that works for me: > > import org.apache.commons.httpclient.*; > import org.apache.commons.h

Re: Fw: unable to find line starting with "HTTP" error

2003-08-01 Thread Oleg Kalnichevski
Hmmm. It seems to work just fine. What is it exactly that you are doing? Here's the code that works for me: import org.apache.commons.httpclient.*; import org.apache.commons.httpclient.methods.*; public class Test { public static void main(String args[]) throws Exception { HttpClient httpcli

Re: Fw: unable to find line starting with "HTTP" error

2003-08-01 Thread Adrian Sutton
On Friday, August 1, 2003, at 11:04 PM, [EMAIL PROTECTED] wrote: I tried sending a GET request but I catch always the same error "unable to find line starting with "HTTP". thanks again.. Hi, The server is not responding with a valid HTTP response as it doesn't include a status line. Even wget c

Re: Fw: unable to find line starting with "HTTP" error

2003-08-01 Thread [EMAIL PROTECTED]
I tried sending a GET request but I catch always the same error "unable to find line starting with "HTTP". thanks again.. 3620 DEBUG [Thread-1] httpclient.HttpConnection - enter HttpConnection.open() 3803 DEBUG [Thread-1] httpclient.HttpMethodBase - enter HttpMethodBase.execute(HttpState, Ht

Fw: unable to find line starting with "HTTP" error

2003-08-01 Thread Roland Weber
OK, once more without the huge log. - Forwarded by Roland Weber/Germany/IBM on 01.08.2003 12:54 - Roland Weber 01.08.2003 12:52 To: "Commons HttpClient Project" <[EMAIL PROTECTED]> cc: From: Roland Weber/Germany/[EMAIL PROTECTED] Subject:R

unable to find line starting with "HTTP" error

2003-08-01 Thread [EMAIL PROTECTED]
Hi, In relation to the bug 20703, I have noticed that the workaround propose by Adrian Sutton works for the url http://www.msnbc.com/news/default.asp?newguid=2594c0a6623f464fb0ff25446bfa6cf3 mentioned in the bug report, but, at least as long as my experience is concerned, it doesn't seem to wor