Kbase 44648: High number of threads of SonicMQ with BEA
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  22/06/2001 |
|
Solution ID: P14648
FACT(s) (Environment):
SonicMQ 4.x
Windows NT 32 Intel/Windows 2000
SYMPTOM(s):
High number of threads of SonicMQ with BEA
CAUSE:
QueueConnectionFactory was used by BEA directly
FIX:
Use the WebLogic adapter developed by SonicSoftware and give the created
QueueConnectionFactory to the ConnectionFactory from the package
com.sonicsw.ssps.reconnect like shown in the example below:
progress.message.jclient.QueueConnectionFactory qcf =
new progress.message.jclient.QueueConnectionFactory("177.177.117.7:2506",
"Administrator", "Administrator");
com.sonicsw.ssps.reconnect.QueueConnectionFactory re_qcf =
new com.sonicsw.ssps.reconnect.QueueConnectionFactory(qcf,1000L,10000L,10);
ctx.rebind("SonicMQ.jms.ReconFactory", re_qcf);