BlockingConnection blocks infinitely if SSL is on
Status: Inactive
Brought to you by:
grro
I am using secure BlockingConnection which blocks the thread infinitely. This happens intermittently. It works fine if I remove SSL.
I am using xSocket-2.8.13.jar
I also tried xSocket-2.8.15.jar but no luck :(
-----------Code which blocks the thread-----------
DriverProxy.SocClient = new BlockingConnection(DriverProxy.getRouterAddress(),
Integer.parseInt(DriverProxy.getRouterPort()), DriverProxy.getSSLContext(), true);
-----------Code which works fine-----------
DriverProxy.SocClient = new BlockingConnection(DriverProxy.getRouterAddress(), Integer.parseInt(DriverProxy.getRouterPort()));
I see similar bug (open) reported in the tracker (ID 3451372). Don't know if it is the same issue.