Hello all,
I am testing WebLogic 10.3.1 JMS, but there has a problem.
My Testing step:
- Start WebLogic Server
- Start JMS Client
- Client send a object to WebLogic JMS and server received the object.
- Stop WebLogic Server
- Send another object to WebLogic JMS.
What I expect is a exception come out, but there have not anything appear and program hanged. Program stopped at:
sender.send(objMsg);
I have add some timeout settings, but still not working:
((WLProducerImpl) sender).setSendTimeout(1000);
((WLConnection) connection).setReconnectPolicy(JMSConstants.RECONNECT_POLICY_PRODUCER);
((WLConnection) connection).setReconnectBlockingMillis(1000);
Is there any way to produce exception in this case? Thank You Very Much.
Best Regards, Chris