Dear friends,
I am creating a JMS application which will connect to remote WebSphere MQ from a
servlet deployed in
Tomcat. This is my configuration in Tomcat's conf/context.xml file.
<Resource name="jms/MyQCF" auth="Container" type="com.ibm.mq.jms.MQQueueConnectionFactory" factory="com.ibm.mq.jms.MQQueueConnectionFactoryFactory" HOST="172.22.2.132" PORT="1415" CHAN="SAMPLEMQ" TRAN="1" QMGR="MQTestQueueManager"/>
<Resource name="jms/MyQueue" auth="Container" type="com.ibm.mq.jms.MQQueue" factory="com.ibm.mq.jms.MQQueueFactory"
QU="TestQueue"/>
My query is:
I want to connect to the WebSphere MQ when tomcat restarts and configure some minimum/maximum number of connections, so that a connection pool is created and whenever i run that application a connection should be taken from that connection pool.
Using Tomcat 5.5.25, JDK1.5, WebSphere MQ V6.0
Kindly provide your help,
Thanks & Regards,
Vijay