I am trying to set time out error whenever web service response will be delayed with below lines of code-
serviceStub._setProperty("weblogic.wsee.transport.connection.timeout", String.valueOf(timeoutSeconds));
BindingInfo bindingInfo = (BindingInfo)serviceStub._getProperty("weblogic.wsee.binding.BindingInfo");
bindingInfo.setTimeout(timasseoutSeconds);
But it’s not working.
Server Used – Oracle Weblogic server 10.3
Type of Web service – JAX-RPC
Please reply, if someone has solution for it.