Could someone tell me what the default timeout for soap webservice calls is?
((BindingProvider) Port).getRequestContext().put(
BindingProviderProperties.CONNECT_TIMEOUT,
30);
((BindingProvider) Port).getRequestContext().put(
BindingProviderProperties.REQUEST_TIMEOUT,
30);
I can set this manually of course, but what is default if I omit this?
Why not just print out the value of this using the CONNECT_TIMEOUT property?