Consultor Eletrônico



Kbase P14648: High number of threads of SonicMQ with BEA
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   25/01/2005
Status: Unverified

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);