We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, since I could not find a reference, may I ask if or how this old issue was resolved?
javaee/metro-jax-ws#1166
That is, which of the following are the correct way to set connect and receive timeouts:
((BindingProvider) port).getRequestContext().put("com.sun.xml.ws.connect.timeout", timeout); ((BindingProvider) port).getRequestContext().put("com.sun.xml.ws.request.timeout", timeout); // JDK JAX-WS properties ((BindingProvider) port).getRequestContext().put("com.sun.xml.internal.ws.connect.timeout", timeout); ((BindingProvider) port).getRequestContext().put("com.sun.xml.internal.ws.request.timeout", timeout); // JBOSS CXF JAX-WS properties, warning these might change in the future (CXF-5261) ((BindingProvider) port).getRequestContext().put("javax.xml.ws.client.connectionTimeout", timeout); ((BindingProvider) port).getRequestContext().put("javax.xml.ws.client.receiveTimeout", timeout);
Many thanks.
The text was updated successfully, but these errors were encountered:
Unless there's a quick answer, this issue can probably be closed because this exists: jakartaee/jax-ws-api#193
Sorry, something went wrong.
No branches or pull requests
Hello,
since I could not find a reference, may I ask if or how this old issue was resolved?
javaee/metro-jax-ws#1166
That is, which of the following are the correct way to set connect and receive timeouts:
Many thanks.
The text was updated successfully, but these errors were encountered: