Hello,

Thank you for your e-mail...I'm confused a bit, though, as you said:

<quote>
Try specifying an SO_TIMEOUT in milliseconds via HttpClient.setTimeOut()
method.
</quote>

But, we're already doing this, no?

>         client.setTimeout (transferTimeout * 1000);

And we're still seeing threads hung indefinitely in socketRead.....now, someone
else responded saying that I should also include this:

<quote>
HttpClient().getHostConfiguration().setHost(HOSTNAME, 80,"http" );
where hostname is something like that "www.blabla.com"
</quote>

I'm going to try that, but any other thoughts on why this is hanging
indefinitely?

Thanks!!!!!!




                                                                                       
                                          
                      "Jesus M. Salvo                                                  
                                          
                      Jr."                     To:      Commons HttpClient Project 
<[EMAIL PROTECTED]>   
                      <[EMAIL PROTECTED]         cc:                                   
                                            
                      asia.com>                bcc:                                    
                                          
                                               Subject: Re: Question on Timeouts       
                                          
                      02/12/2004 08:20                                                 
                                          
                      PM                                                               
                                          
                      Please respond                                                   
                                          
                      to "Commons                                                      
                                          
                      HttpClient                                                       
                                          
                      Project"                                                         
                                          
                                                                                       
                                          
                                                                                       
                                          




[EMAIL PROTECTED] wrote:

>
>
>Hello,
>
>I'm using your product for an application that we're building (that fetches
some
>HTTP content) and I'm running into an issue where it isn't timing out
>
>
< ..snip...>

>----------This is how we're connecting -----------------
>
>         HttpClient client = new HttpClient();
>         client.setConnectionTimeout (connectionTimeout * 1000);
>         client.setTimeout (transferTimeout * 1000);
>         HttpMethod method = new GetMethod(url);
>try {
>         statusCode = client.executeMethod(method);
>      }
>
>
>
Try specifying an SO_TIMEOUT in milliseconds via HttpClient.setTimeOut()
method.
Otherwise, it will default to whatever is the default SO_TIMEOUT on your
platform.

BTW, does anyone have a compilation / list of the defautl SO_TIMEOUT
values for each platform ?





---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to