We are working on a IBM WebSphere MQ application, and we use JMS API to operating the message. But we have a problem that the connection takes too much time, and we want to pooling the JMS connection, for it's a standalone application, we have no application container to provide JNDI or pooling service. So is there a solution to resolve this? For JDBC we can use DBCP or c3p0 to archive pooling datasource, in JMS, is there any similar project can pooling JMS connections?

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

It used to be that the JMS MQConnectionFactory had pooling built in, but it seems that in version 7, it has been removed.

Set the use of ConnectionPooling in earlier versions of the WebSphere MQ classes for JMS. This method is retained for compatibility with older MQJMS applications, but, because this Connection Pooling functionality has been removed from version 7, setting this property will have no effect.

In the absence of anything else, you can use Apache Commons Pool. Same idea as DBCP (which uses Pool) but for non JDBC objects.

link|improve this answer
Seems Apache Commons Pool is the possible approach for me. Thanks. – phyerbarte Jan 26 at 1:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.