In Weblogic you can specify multiple JNDI Connection URL's split by a ',' under JMS Modules.
JNDI Connection URL for example
tibjmsnaming://serverName1:12,tibjmsnaming://serverName2:12
You can also specify it with TCP for example
tcp://serverName1:12,tcp://serverName2:12
I tried looking for this on the net but it is unclear from oracle documentation and sites.
What I want to know is:
tibjmsnaming
and tcp
? Looking at the tibjmsnaming
- in the logs it still says connected to tcp:serverName1:12
. Which makes it a bit confusing as to what tibjmsnaming
really does.Thx
From my findings no matter which way you specify it in the Weblogic console aka tibjmsnaming
and tcp
it will use an underlying tcp
connection. It will also use the first available one from left to right.