Is it possible to set the timeout values used by the Java ORB?
I can�t find any information about it�
I know that in version 1.4.x was impossible.
I tried this with different values, but no success�
// transport read tcp timeout property, colon separated property
// with syntax <initial time to wait:max read giop header time to
// wait: max read message time to wait:backoff factor>
properties.put( "com.sun.CORBA.transport.ORBTCPReadTimeouts", "0:0:0:0");
orb = ORB.init(args, properties);
I know the values are passed to the ORB properties (debug in eclipse), but the sockets created for the connections don�t use them�
Can some one please tell me how?
Ps: I know that JacORB offer this feature but I prefer continuing using the ORB offered by sun.
Thanks in advance!