Consultor Eletrônico



Kbase P103612: Memory consumed of AppServer agent 4GL session increased with communication via Sonic MQ adapter
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   24/05/2005
Status: Unverified

FACT(s) (Environment):

Progress 9.1D
Windows 2000

SYMPTOM(s):

persistent procedures left behind on AppServer agent

Memory consumed of AppServer agent 4GL session increases

JMS communication via the SonicMQ adapter

Using Progress version 9.1D09

CAUSE:

Network problems and StreamMessage created before beginSession was called but not cleaned up later on.
Within the error handling a new session was created without cleaning up resources of the old session before.

FIX:

Ensure that Message objects are cleaned up before created again within a new session.
Within our example14.p that comes with the product in %DLC%\src\samples\sonicmq\adapter\examples
after
RUN beginSession we
RUN createStreamMessage
.
Later on within the same example we than execute a
Run deleteMessage
to clean up the resources.