On Fri, 2018-10-19 at 21:07 +0200, Joan Balagueró wrote:
> Hello Oleg,
> 
> I think it's a bit more complicated ... Let me explain it:
> 
> - we have a pool with a response timeout of 15s
> - this pool is shared by 2 webservices, ws1 and ws2. Ws1 uses the
> pool's response timeout, but ws2 uses its own response timeout of
> 10s.
> - the webservice ws2 has 2 methods, m1 and m2, m1 uses the ws2
> timeout but m2 uses its own response timeout of 12s.
> - and finally the method m2 is used by 2 clients, c1 and c2. c1 is a
> very good client so his response timeout is 20s, and c2 is very bad
> so he only has a 3s response timeout.
> 
> When we set the response timeout at request level, we do this:
> 
> /**
>   * This method sets the 'responseTimeout' to this http method.
>   * 
>   * @param            RequestBuilder          the 'RequestBuilder'
> object
>   * @param            responseTimeout         the response timeout
> to apply
>   * @return           none
>  */
>  private void setTimeout(RequestBuilder rb)
>  {
>   // 1. If the client has a timeout (clientResponseTimeout != -1),
> then set this value
>   // 2. If the client has no timeout but the method has, then set
> this value.
>   // 3. If the method has no timeout but the api has, then set this
> value.
>   // 4. Otherwise set the pool's response timeout.
>   int clientResponseTimeout =
> this.objClient.getResponseTimeout(this.objCall.getId());
>   int responseTimeout =  (clientResponseTimeout != -1 ?
> clientResponseTimeout : (this.objCall.getResponseTimeout() != -1 ?
> this.objCall.getResponseTimeout() :
> (this.objInterface.getResponseTimeout() != -1 ?
> this.objInterface.getResponseTimeout() :
> this.objHttp.getResponseTimeout())) );
>  
> rb.setConfig(RequestConfig.copy(this.objHttp.getRequestConfig()).setS
> ocketTimeout(responseTimeout).build());
>  }
> 
> And that's my problem now. Do you think this can be solved in any way
> using http5?
> 

I must admit I do not understand the reason for doing all that in the
first place. I also do not understand what exactly you mean by response
timeout. Max waiting time until a response head is received?  

Oleg


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to