RE: timeout while waiting from reponse body ?

2004-08-12 Thread Kalnichevski, Oleg
nd of HttpClient related questions > >Oleg > >-Original Message- >From: Mathias Cianci [mailto:[EMAIL PROTECTED] >Sent: Thursday, August 12, 2004 3:02 PM >To: Commons HttpClient Project >Subject: Re: timeout while waiting from reponse body ? > > >Than

Re: timeout while waiting from reponse body ?

2004-08-12 Thread Mathias Cianci
-- From: Mathias Cianci [mailto:[EMAIL PROTECTED] Sent: Thursday, August 12, 2004 3:02 PM To: Commons HttpClient Project Subject: Re: timeout while waiting from reponse body ? Thank you Oleg and excuse me for asking such questions. I was searching with the TimeoutController class, and I've not seen

RE: timeout while waiting from reponse body ?

2004-08-12 Thread Kalnichevski, Oleg
You are more than welcome to ask any kind of HttpClient related questions Oleg -Original Message- From: Mathias Cianci [mailto:[EMAIL PROTECTED] Sent: Thursday, August 12, 2004 3:02 PM To: Commons HttpClient Project Subject: Re: timeout while waiting from reponse body ? Thank you Oleg

Re: timeout while waiting from reponse body ?

2004-08-12 Thread Mathias Cianci
6); // 60 sec timeout -Original Message- From: Mathias Cianci [mailto:[EMAIL PROTECTED] Sent: Thursday, August 12, 2004 2:50 PM To: Commons HttpClient Project Subject: timeout while waiting from reponse body ? Hello everybody, Sometimes, when this code line is executed : byte[] respons

RE: timeout while waiting from reponse body ?

2004-08-12 Thread Kalnichevski, Oleg
: timeout while waiting from reponse body ? Hello everybody, Sometimes, when this code line is executed : byte[] responseBody = method.getResponseBody(); my thread is blocked because the response is not coming. Is there a way to put something like a timeout in order to stop the thread after

timeout while waiting from reponse body ?

2004-08-12 Thread Mathias Cianci
Hello everybody, Sometimes, when this code line is executed : byte[] responseBody = method.getResponseBody(); my thread is blocked because the response is not coming. Is there a way to put something like a timeout in order to stop the thread after 1minute if the response is not coming ? Hope an