java.net.SocketException: Connection reset

2004-10-04 Thread Roland Weber
Return Receipt Your java.net.SocketException: Connection reset document :

java.net.SocketException: Connection reset

2004-10-04 Thread Roland Weber
Return Receipt Your java.net.SocketException: Connection reset document :

DO NOT REPLY [Bug 21329] - Add InputStream buffering.

2004-10-04 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=21329. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

GetMethod instantiation throwing exception?

2004-10-04 Thread Yuzwa, Erik
Hi all, I'm trying to get HttpClient working alongside NTLM authentication to automagically grab some XML data for users. The docs are fairly clear on using HttpClient with NTLM, however my GetMethod instantiation regularly blows up throwing a java.lang.NoClassDefFoundError:

Re: GetMethod instantiation throwing exception?

2004-10-04 Thread Michael Becke
Hi Erik, HttpClient 3.0 has added a dependency for commons-codec. Adding this to your classpath should fix the problem. Mike Yuzwa, Erik wrote: Hi all, I'm trying to get HttpClient working alongside NTLM authentication to automagically grab some XML data for users. The docs are fairly clear

Timeouts

2004-10-04 Thread Vijay
Sorry if this is a very basic question: I would like to set 3 timeouts (connect, send and receive). I found the following in HttpClient package. HttpClient.setTimeout -- sets socket RECEIVE timeout HttpClient.setConnectionTimeout -- sets socket CONNECT timeout Is there any method available for

DO NOT REPLY [Bug 21329] - Add InputStream buffering.

2004-10-04 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=21329. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: Timeouts

2004-10-04 Thread Michael Becke
Hi Vijay, Send timeout is not something that Java Sockets support natively, and as such has not been added to HttpClient. It would be possible to implement this kind of functionality but it would require a second thread to poll the executing thread. The HttpMethod.abort() method in