Is it possible to override default request-timeout in a specific web-service method?

1.2k Views Asked by At

In my web-service client (JAX-WS RI 2.2.9-b14002) I'm setting quite low connection and request timeouts, but for some methods I would like to override them in a way that default timeout doesn't change. Saying it in different words, I would like to set higher request-timeout when user invokes specific method, preserving the default timeout for all other methods.

Thanks in advance, bye

2

There are 2 best solutions below

1
On

You can do that by using request context I believe

requestContext.put(BindingProviderProperties.REQUEST_TIMEOUT, REQUEST_TIMEOUT);
requestContext.put(BindingProviderProperties.CONNECT_TIMEOUT, CONNECT_TIMEOUT);
1
On

You can do this by creating a ClientConfig first and providing it as an argument when creating the new client.

ClientConfig configuration = new ClientConfig();
configuration.property(ClientProperties.CONNECT_TIMEOUT, 1000);
configuration.property(ClientProperties.READ_TIMEOUT, 1000);
Client client = ClientBuilder.newClient(configuration);