Use of memory at Mobicents Jain Slee 2.x.y

31 views
Skip to first unread message

Normandes Jr

unread,
Nov 6, 2009, 1:28:35 PM11/6/09
to mobicents-public
I did a load test using SIPP to Mobicents Jain Slee 2.x.y and Media
Server 2 using MGCP to control.

I noticed that the Mobicents (JBoss 5) always increase the memory use,
even I keep constant the call rate. At some time it starts use swap
memory.

SIPP sends INVITE to Mobicents that create a connection with Media
Server using MGCP that plays an audio file. After 7 seconds, SIPP
sends BYE to Mobicents that delete the connection of Media Server and
sends 200 OK to SIPP.

I am using Fedora 11 with Java 5 update 18.

Why memory use is happening this way?

Normandes Junior.

Normandes Jr

unread,
Nov 11, 2009, 8:22:14 AM11/11/09
to mobicents-public
Anybody has an opinion about this topic? I think that this is so
important because has directly impact of using mobicents at
production.

Bartosz Baranowski

unread,
Nov 11, 2009, 8:30:46 AM11/11/09
to mobicent...@googlegroups.com
Yes, we just have been busy with release :)
Can You share test case and used setup. Also VM setup and OS/HW details.


Btw. 2.x container is still Beta, we just finishied adding all planed features for 2.0.00, so now its time to improve performance
--
Bartosz Baranowski
JBoss R & D
==================================
Word of criticism meant to improve is always step forward.

Eduardo Martins

unread,
Nov 11, 2009, 8:51:19 AM11/11/09
to mobicent...@googlegroups.com
Normandes, it sounds like a leak somewhere. I can tell that SIP RA is
leak free from heavy testing lately, so either the app is forgetting
to remove some activities or the issue is in MGCP/MMS.

As a first approach, do some calls then go to jmx console,
specifically to MobicentsManagement MBean under org.mobicents.slee,
and invoke dumpState, this will print the container state as text,
past it here please.

You can also go to org.jboss.cache, lookup the Mobicents Cache MBean
there and do a printCacheDetails, show us that info also, it is the
Mobicents content in JBoss Cache.

-- Eduardo

Normandes Jr

unread,
Nov 11, 2009, 1:08:21 PM11/11/09
to mobicents-public
I am sorry for the size of the post, but I don't know how to put files
attach.

To make heavy tests, I turn off the log4j, but I resolved to turn it
on to see if there are some problem happening. For my surprise, some
exceptions are happening.

When I make the first call, using a softphone, anyone exception
occurs. But at a second call, the exceptions occurs. When JSLEE
receive the call, the exception occurs:
2009-11-11 13:59:37,281 ERROR [STDERR] (pool-16-thread-1)
javax.slee.UnrecognizedActivityException
2009-11-11 13:59:37,281 ERROR [STDERR] (pool-16-thread-1) at
org.mobicents.slee.resource.AbstractActivityContextInterfaceFactory.getACI
(AbstractActivityContextInterfaceFactory.java:89)
2009-11-11 13:59:37,281 ERROR [STDERR] (pool-16-thread-1) at
net.java.slee.resource.mgcp.MgcpActivityContextInterfaceFactoryImpl.getActivityContextInterface
(MgcpActivityContextInterfaceFactoryImpl.java)
2009-11-11 13:59:37,282 ERROR [STDERR] (pool-16-thread-1) at
br.com.coreo.teste.RootSbb.onCreateConnectionResponse(RootSbb.java:
196)
2009-11-11 13:59:37,282 ERROR [STDERR] (pool-16-thread-1) at
sun.reflect.GeneratedMethodAccessor275.invoke(Unknown Source)
2009-11-11 13:59:37,282 ERROR [STDERR] (pool-16-thread-1) at
sun.reflect.DelegatingMethodAccessorImpl.invoke
(DelegatingMethodAccessorImpl.java:25)
2009-11-11 13:59:37,282 ERROR [STDERR] (pool-16-thread-1) at
java.lang.reflect.Method.invoke(Method.java:585)
2009-11-11 13:59:37,282 ERROR [STDERR] (pool-16-thread-1) at
org.mobicents.slee.runtime.sbbentity.SbbEntity.invokeEventHandler
(SbbEntity.java:741)
2009-11-11 13:59:37,282 ERROR [STDERR] (pool-16-thread-1) at
org.mobicents.slee.runtime.eventrouter.routingtask.EventRoutingTask.routeQueuedEvent
(EventRoutingTask.java:237)
2009-11-11 13:59:37,282 ERROR [STDERR] (pool-16-thread-1) at
org.mobicents.slee.runtime.eventrouter.routingtask.EventRoutingTask.run
(EventRoutingTask.java:87)
2009-11-11 13:59:37,282 ERROR [STDERR] (pool-16-thread-1) at
java.util.concurrent.ThreadPoolExecutor$Worker.runTask
(ThreadPoolExecutor.java:650)
2009-11-11 13:59:37,282 ERROR [STDERR] (pool-16-thread-1) at
java.util.concurrent.ThreadPoolExecutor$Worker.run
(ThreadPoolExecutor.java:675)
2009-11-11 13:59:37,282 ERROR [STDERR] (pool-16-thread-1) at
java.lang.Thread.run(Thread.java:595)

But how I am doing nothing, the process continue and everything else
works, the wav file plays to me. The part of the code that the
exception occurs is this:

MgcpEndpointActivity endpointActivity = null;
try {
endpointActivity = mgcpProvider.getEndpointActivity(endpointID);
ActivityContextInterface epnAci =
mgcpAcif.getActivityContextInterface(endpointActivity);
epnAci.attach(sbbContext.getSbbLocalObject());
} catch (FactoryException ex) {
ex.printStackTrace();
} catch (NullPointerException ex) {
ex.printStackTrace();
} catch (UnrecognizedActivityException ex) {
ex.printStackTrace();
}

When I hang up the softphone the second exception occurs:
2009-11-11 13:59:44,313 ERROR [javax.slee.facilities.Tracer]
(JainMgcpStackImpl-FixedThreadPool-thread-1) [MgcpResourceAdaptor]
Failed to end activity with handle MgcpEndpointActivityHandle(id=/
mobicents/media/IVR/6...@192.168.2.100:2427)
javax.slee.resource.UnrecognizedActivityHandleException:
MgcpEndpointActivityHandle(id=/mobicents/media/IVR/
6...@192.168.2.100:2427)
at org.mobicents.slee.resource.SleeEndpointImpl._endActivity
(SleeEndpointImpl.java:189)
at
org.mobicents.slee.resource.SleeEndpointEndActivityNotTransactedExecutor
$1.run(SleeEndpointEndActivityNotTransactedExecutor.java:40)
at
org.mobicents.slee.resource.SleeEndpointEndActivityNotTransactedExecutor.execute
(SleeEndpointEndActivityNotTransactedExecutor.java:68)
at org.mobicents.slee.resource.SleeEndpointImpl.endActivity
(SleeEndpointImpl.java:160)
at
org.mobicents.slee.resource.mgcp.ra.MgcpResourceAdaptor.processEndpointMgcpEvent
(MgcpResourceAdaptor.java:671)
at
org.mobicents.slee.resource.mgcp.ra.MgcpResourceAdaptor.processMgcpResponseEvent
(MgcpResourceAdaptor.java:470)
at org.mobicents.slee.resource.mgcp.ra.JainMgcpProviderImpl
$MgcpStackListener.processMgcpResponseEvent(JainMgcpProviderImpl.java:
197)
at
org.mobicents.mgcp.stack.JainMgcpStackProviderImpl.processMgcpResponseEvent
(JainMgcpStackProviderImpl.java:257)
at org.mobicents.mgcp.stack.TransactionHandler
$ScheduleResponseReceival.perform(TransactionHandler.java:756)
at org.mobicents.mgcp.stack.TransactionHandler.run
(TransactionHandler.java:400)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask
(ThreadPoolExecutor.java:650)
at java.util.concurrent.ThreadPoolExecutor$Worker.run
(ThreadPoolExecutor.java:675)
at java.lang.Thread.run(Thread.java:595)
2009-11-11 13:59:44,315 ERROR [javax.slee.facilities.Tracer]
(JainMgcpStackImpl-FixedThreadPool-thread-1) [MgcpResourceAdaptor]
Failed to end activity with handle MgcpConnectionActivityHandle
(id=479a1cec-5418-435a-8c37-e2724d10fda2)
javax.slee.resource.UnrecognizedActivityHandleException:
MgcpConnectionActivityHandle(id=479a1cec-5418-435a-8c37-e2724d10fda2)
at org.mobicents.slee.resource.SleeEndpointImpl._endActivity
(SleeEndpointImpl.java:189)
at
org.mobicents.slee.resource.SleeEndpointEndActivityNotTransactedExecutor
$1.run(SleeEndpointEndActivityNotTransactedExecutor.java:40)
at
org.mobicents.slee.resource.SleeEndpointEndActivityNotTransactedExecutor.execute
(SleeEndpointEndActivityNotTransactedExecutor.java:68)
at org.mobicents.slee.resource.SleeEndpointImpl.endActivity
(SleeEndpointImpl.java:160)
at
org.mobicents.slee.resource.mgcp.ra.MgcpResourceAdaptor.processNonCreateConnectionMgcpEvent
(MgcpResourceAdaptor.java:615)
at
org.mobicents.slee.resource.mgcp.ra.MgcpResourceAdaptor.processMgcpResponseEvent
(MgcpResourceAdaptor.java:477)
at org.mobicents.slee.resource.mgcp.ra.JainMgcpProviderImpl
$MgcpStackListener.processMgcpResponseEvent(JainMgcpProviderImpl.java:
197)
at
org.mobicents.mgcp.stack.JainMgcpStackProviderImpl.processMgcpResponseEvent
(JainMgcpStackProviderImpl.java:257)
at org.mobicents.mgcp.stack.TransactionHandler
$ScheduleResponseReceival.perform(TransactionHandler.java:756)
at org.mobicents.mgcp.stack.TransactionHandler.run
(TransactionHandler.java:400)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask
(ThreadPoolExecutor.java:650)
at java.util.concurrent.ThreadPoolExecutor$Worker.run
(ThreadPoolExecutor.java:675)
at java.lang.Thread.run(Thread.java:595)
2009-11-11 13:59:44,316 ERROR [javax.slee.facilities.Tracer]
(JainMgcpStackImpl-FixedThreadPool-thread-1) [MgcpResourceAdaptor]
Failed to end activity with handle MgcpConnectionActivityHandle
(id=dbdbcb64-6cfa-43a2-b805-092b56597a13)
javax.slee.resource.UnrecognizedActivityHandleException:
MgcpConnectionActivityHandle(id=dbdbcb64-6cfa-43a2-b805-092b56597a13)
at org.mobicents.slee.resource.SleeEndpointImpl._endActivity
(SleeEndpointImpl.java:189)
at
org.mobicents.slee.resource.SleeEndpointEndActivityNotTransactedExecutor
$1.run(SleeEndpointEndActivityNotTransactedExecutor.java:40)
at
org.mobicents.slee.resource.SleeEndpointEndActivityNotTransactedExecutor.execute
(SleeEndpointEndActivityNotTransactedExecutor.java:68)
at org.mobicents.slee.resource.SleeEndpointImpl.endActivity
(SleeEndpointImpl.java:160)
at
org.mobicents.slee.resource.mgcp.ra.MgcpResourceAdaptor.processNonCreateConnectionMgcpEvent
(MgcpResourceAdaptor.java:615)
at
org.mobicents.slee.resource.mgcp.ra.MgcpResourceAdaptor.processMgcpResponseEvent
(MgcpResourceAdaptor.java:477)
at org.mobicents.slee.resource.mgcp.ra.JainMgcpProviderImpl
$MgcpStackListener.processMgcpResponseEvent(JainMgcpProviderImpl.java:
197)
at
org.mobicents.mgcp.stack.JainMgcpStackProviderImpl.processMgcpResponseEvent
(JainMgcpStackProviderImpl.java:257)
at org.mobicents.mgcp.stack.TransactionHandler
$ScheduleResponseReceival.perform(TransactionHandler.java:756)
at org.mobicents.mgcp.stack.TransactionHandler.run
(TransactionHandler.java:400)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask
(ThreadPoolExecutor.java:650)
at java.util.concurrent.ThreadPoolExecutor$Worker.run
(ThreadPoolExecutor.java:675)
at java.lang.Thread.run(Thread.java:595)

This just happens because I am trying to delete the connection at
Media Server Standalone and if I erease this code, after sometime
always stop work, I could not hear any announcement again.

Follow a part of the dumpState of the MobicentsManagement MBean:
+-- Number of ACs: 190
Activity context Naming Facility:
+-- Names: []
org.mobicents.slee.runtime.facilities.nullactivity.NullActivityFactoryImpl@2c8e93
EventRouter:
+-- Executors: 313
+-- Activities: [ACH=RA>SipRA>z9hG4bK-4720-496-0_INVITE,
ACH=RA>MGCPRA>MgcpConnectionActivityHandle(id=2d55bd79-8e63-4ffd-a69a-
fde7ebdba292), ACH=RA>SipRA>743a0e5e:124e4451547:-7c04,
ACH=RA>SipRA>743a0e5e:124e4451547:-7c00, ACH=RA>SipRA>743a0e5e:
124e4451547:-7c06, ACH=RA>MGCPRA>MgcpConnectionActivityHandle
(id=3b60af30-7b53-4f7a-9bae-13a863441b7f),
ACH=RA>SipRA>z9hG4bK-4720-520-0_INVITE,
ACH=RA>SipRA>z9hG4bK-4720-481-0_INVITE, ACH=RA>SipRA>743a0e5e:
124e4451547:-7c08, ACH=RA>MGCPRA>MgcpConnectionActivityHandle
(id=dd12e1ab-3b1a-427d-bc55-f7c15e09ba2d),
ACH=RA>MGCPRA>MgcpConnectionActivityHandle(id=c3d8db51-1587-4bc5-
b7fc-12b162c96630), ACH=RA>MGCPRA>MgcpConnectionActivityHandle
(id=77419ad7-46db-4faa-a33e-4844d63fd96c),


Follow a part of cache details of Mobicents Cache MBean:
null
/ac null
/ACH=RA>SipRA>743a0e5e:124e4451547:-7bae {flags=2}
/attached-sbbs null
/a4f4bf02-90ea-4fee-8639-76c2e511da16 null
/ACH=RA>MGCPRA>MgcpConnectionActivityHandle
(id=71e12132-0191-44e5-9bd7-fe1d2d4a66e3) {flags=0}
/attached-sbbs null
/12c7d5a8-d7c3-4788-ae52-73c1e88f6f1f null
/ACH=RA>MGCPRA>MgcpConnectionActivityHandle(id=09e7459b-9484-4c71-
a639-2ca5b25590bd) {flags=0}
/attached-sbbs null
/186eb1af-c78a-483c-abc6-e55ba91bb6b0 null
/ACH=RA>SipRA>z9hG4bK-4720-496-0_INVITE {flags=2}
/attached-sbbs null
/72ac62c9-5b5b-4476-b442-15e00ccd101b null
/ACH=RA>MGCPRA>MgcpConnectionActivityHandle(id=2d55bd79-8e63-4ffd-
a69a-fde7ebdba292) {flags=0}
/attached-sbbs null
/717b632d-383c-40b2-ae23-cc28d7e29d3c null
/ACH=RA>MGCPRA>MgcpConnectionActivityHandle(id=68248e3f-
c82b-427d-8588-d1ca3e7705f2) {flags=0}
/attached-sbbs null
/88db23ae-9029-4e12-b404-eb0be9736d55 null


Would you have an idea? Would you like more informations?

Regards,

Normandes Junior.




On Nov 11, 11:51 am, Eduardo Martins <emmart...@gmail.com> wrote:
> Normandes, it sounds like a leak somewhere. I can tell that SIP RA is
> leak free from heavy testing lately, so either the app is forgetting
> to remove some activities or the issue is in MGCP/MMS.
>
> As a first approach, do some calls then go to jmx console,
> specifically to MobicentsManagement MBean under org.mobicents.slee,
> and invoke dumpState, this will print the container state as text,
> past it here please.
>
> You can also go to org.jboss.cache, lookup the Mobicents Cache MBean
> there and do a printCacheDetails, show us that info also, it is the
> Mobicents content in JBoss Cache.
>
> -- Eduardo
>
> On Wed, Nov 11, 2009 at 1:30 PM, Bartosz Baranowski <baran...@gmail.com> wrote:
> > Yes, we just have been busy with release :)
> > Can You share test case and used setup. Also VM setup and OS/HW details.
>
> > Btw. 2.x container is still Beta, we just finishied adding all planed
> > features for 2.0.00, so now its time to improve performance
>

Eduardo Martins

unread,
Nov 11, 2009, 1:30:47 PM11/11/09
to mobicent...@googlegroups.com, Amit
Clearly those errors are leaking activities, possibly also sbb
entities, at least in SLEE. Is it possible to see the source code? :)

Amit , any idea what is going on?

-- Eduardo

Normandes Jr

unread,
Nov 11, 2009, 5:49:50 PM11/11/09
to mobicents-public
Of course: Follow the method onCallTermited:
public void onCallTerminated(RequestEvent evt,
ActivityContextInterface aci) {
try {
EndpointIdentifier endpointID = new EndpointIdentifier
(this.getEndpointName(), JBOSS_BIND_ADDRESS + ":"
+ MGCP_PEER_PORT);
DeleteConnection deleteConnection = new DeleteConnection(this, new
CallIdentifier(this.getCallIdentifier()),
endpointID);

deleteConnection.setTransactionHandle
(mgcpProvider.getUniqueTransactionHandler());
mgcpProvider.sendMgcpEvents(new JainMgcpEvent[]
{ deleteConnection });
} catch (Exception e) {}

try {
aci.detach(this.sbbContext.getSbbLocalObject());
} catch (Exception e) {}

try {
ServerTransaction tx = evt.getServerTransaction();
Request request = evt.getRequest();
Response response = messageFactory.createResponse(Response.OK,
request);
logger.info("\n-----------------\n RESPONSE \n ---------------\n" +
response);
tx.sendResponse(response);
} catch (Exception e) {}
}

I can post all code, actually I am testing the mobicents to decide if
we will use it at production. So the code is very simple, I based at
the example.




On Nov 11, 4:30 pm, Eduardo Martins <emmart...@gmail.com> wrote:
> Clearly those errors are leaking activities, possibly also sbb
> entities, at least in SLEE. Is it possible to see the source code? :)
>
> Amit , any idea what is going on?
>
> -- Eduardo
>
> > mobicents/media/IVR...@192.168.2.100:2427)
> ...
>
> read more »

Bartosz Baranowski

unread,
Nov 11, 2009, 8:17:22 PM11/11/09
to mobicent...@googlegroups.com, Amit
1. Does this exception happen frequently? each subsequent call or cyclic?
2. Do You use in code wildcard for "any"
3. if so could You try with specific endpoint id, just to make sure that fault lies on slee side rather than mms assigning endpoint before acitivty dies in slee?
 Also could YOu post debug for mms for that exception? Or atleast within timeslot?

Amit Bhayani

unread,
Nov 12, 2009, 12:03:46 AM11/12/09
to mobicent...@googlegroups.com, Bartosz Baranowski
Looks like activityEnded of MGCP RA was never called as new Activity was never started with ActivityFlags.REQUEST_ENDED_CALLBACK flag.

In JSLEE 1.x.y this was called by default. Sorry I missed it in migration.

Can you please take latest code from svn and try once more?

Thanks
Amit.

Normandes Jr

unread,
Nov 12, 2009, 5:51:15 AM11/12/09
to mobicents-public
I took the lastest code from SVN and the exceptions stopped, thanks.
Bartosz, I think that your questions are answered because of this last
test, right?

But the memory use continue increasing. When I stop SIPP, the memory
use doesn't decrease yet.

I added this configuration to run.conf file: -server -Xms712m -Xmx712m
-Xss128k -XX:MaxPermSize=256m -XX:+UseParallelGC -XX:+UseParallelOldGC

Any other idea? Would you like some other code? Other information from
jmx-console?

Regards,

Normandes Junior.


On Nov 12, 3:03 am, Amit Bhayani <amit.bhay...@gmail.com> wrote:
> Looks like activityEnded of MGCP RA was never called as new Activity was
> never started with ActivityFlags.REQUEST_ENDED_CALLBACK flag.
>
> In JSLEE 1.x.y this was called by default. Sorry I missed it in migration.
>
> Can you please take latest code from svn and try once more?
>
> Thanks
> Amit.
>
> On Thu, Nov 12, 2009 at 6:47 AM, Bartosz Baranowski <baran...@gmail.com>wrote:
>
> > 1. Does this exception happen frequently? each subsequent call or cyclic?
> > 2. Do You use in code wildcard for "any"
> > 3. if so could You try with specific endpoint id, just to make sure that
> > fault lies on slee side rather than mms assigning endpoint before acitivty
> > dies in slee?
> >  Also could YOu post debug for mms for that exception? Or atleast within
> > timeslot?
>
> > On Wed, Nov 11, 2009 at 7:30 PM, Eduardo Martins <emmart...@gmail.com>wrote:
>
> >> Clearly those errors are leaking activities, possibly also sbb
> >> entities, at least in SLEE. Is it possible to see the source code? :)
>
> >> Amit , any idea what is going on?
>
> >> -- Eduardo
>
> >> On Wed, Nov 11, 2009 at 6:08 PM, Normandes Jr <normande...@gmail.com>
> >> > mobicents/media/IVR...@192.168.2.100:2427)
> ...
>
> read more »

Bartosz Baranowski

unread,
Nov 12, 2009, 5:53:17 AM11/12/09
to mobicent...@googlegroups.com
On Thu, Nov 12, 2009 at 11:51 AM, Normandes Jr <norma...@gmail.com> wrote:

I took the lastest code from SVN and the exceptions stopped, thanks.
Bartosz, I think that your questions are answered because of this last
test, right?

Yes, did not catch it happens everytime after first call, nevertheles RA needs some fix there I think, should not allow such situation. Thanks for reporting.

Normandes Jr

unread,
Nov 17, 2009, 5:35:47 AM11/17/09
to mobicents-public
I noticed that the problem of memory happens even at Mobicents Jain
Slee Server 1.2.6.GA with Mobicents Media Server 1.0.2.GA. I don't
know what to do anymore, I am releasing all activities, but the memory
use continue rise.



On Nov 12, 8:53 am, Bartosz Baranowski <baran...@gmail.com> wrote:
> ...
>
> read more »

Normandes Jr

unread,
Nov 20, 2009, 9:38:59 AM11/20/09
to mobicents-public
Somebody could repeat this test? If this problem really happens, it
could be a big problem.
> ...
>
> read more »

Eduardo Martins

unread,
Nov 20, 2009, 10:14:21 AM11/20/09
to mobicent...@googlegroups.com
So now the issue is with SLEE 1.2.6 and MMS 1.0.2.GA ? Do you see any exceptions? How can we replicate the issue?

-- Eduardo

John Franey

unread,
Nov 20, 2009, 10:40:40 AM11/20/09
to mobicent...@googlegroups.com
If none of the mobicents team can replicate, perhaps you can run your case with your memory analyzer.  This could give the needed information, too.

Normandes Jr

unread,
Nov 21, 2009, 6:03:37 PM11/21/09
to mobicents-public
The problems is happening at both Mobicents 1 and 2. I didn't see any
exception.

Using command "top" at linux I can see the java memory rising.

I could sent the source code for you test with mobicents 1.2.6.GA and
MMS 1.0.2.GA and the source code of Mobicents 2.0.0.BETA1 and MMS
Standalone 2.0.0.BETA2. I could send the source code (eclipse project)
using email, do you this is a problem?



On Nov 20, 1:40 pm, John Franey <jjfra...@gmail.com> wrote:
> If none of the mobicents team can replicate, perhaps you can run your case
> with your memory analyzer.  This could give the needed information, too.
>
> ...
>
> read more »

aayush bhatnagar

unread,
Nov 21, 2009, 10:02:38 PM11/21/09
to mobicent...@googlegroups.com
Have you tried profiling the application?
Jprofilier will help you pin point the exact location of the memory
leak if you suspect one.
--
aayush
http://in.linkedin.com/in/abhatnagar19
======

Eduardo Martins

unread,
Nov 22, 2009, 10:04:24 AM11/22/09
to mobicent...@googlegroups.com
Normandes, try 2.0.0.BETA2, and if behavior is similar then please paste what is the content of the 2 JMX operations I refered before, so we can see what is the container and jboss cache state.

-- Eduardo

Normandes Jr

unread,
Nov 23, 2009, 6:31:54 AM11/23/09
to mobicents-public
The same behaviour with 2.0.0.BETA2.

I have noticed that mgcp binary RA that is released with 2.0.0.BETA2
is not with the last Amit corrections, because of this, some
exceptions occurs and I have to use the mgcp RA that I built.

Follow the MobicentsManagement MBean dumpState:
Deployable Unit Management:
+-- Deployable Unit IDs: [DeployableUnitID[url=file:/opt/
mobicents-2.0.0.BETA2/jboss-5.1.0.GA/server/default/deploy/mgcp-ra-
DU-2.0.0-SNAPSHOT.jar/], DeployableUnitID[url=file:/opt/
mobicents-2.0.0.BETA2/jboss-5.1.0.GA/server/default/deploy/teste-
mobicents-du-1.0-SNAPSHOT.jar/], DeployableUnitID[url=file:/opt/
mobicents-2.0.0.BETA2/jboss-5.1.0.GA/server/default/deploy/sip11-ra-
DU-2.0.0.BETA2.jar/], DeployableUnitID[url=file:/opt/
mobicents-2.0.0.BETA2/jboss-5.1.0.GA/server/default/deploy/mobicents-
slee/standard-components-du.jar/]]
Component Repository:
+-- Event Type Components: [EventTypeID
[name=javax.sip.message.Request.SIP_EXTENSION,vendor=net.java.slee,version=1.2],
EventTypeID
[name=javax.sip.message.Response.GLOBAL_FAILURE,vendor=net.java.slee,version=1.2],
EventTypeID
[name=net.java.slee.resource.mgcp.AUDIT_CONNECTION_RESPONSE,vendor=net.java,version=1.0],
EventTypeID
[name=net.java.slee.resource.mgcp.RESTART_IN_PROGRESS,vendor=net.java,version=1.0],
EventTypeID
[name=net.java.slee.resource.mgcp.AUDIT_CONNECTION,vendor=net.java,version=1.0],
EventTypeID
[name=javax.sip.Dialog.ACK,vendor=net.java.slee,version=1.2],
EventTypeID
[name=javax.sip.Dialog.INFO,vendor=net.java.slee,version=1.2],
EventTypeID
[name=javax.sip.message.Request.INVITE,vendor=net.java.slee,version=1.2],
EventTypeID
[name=javax.sip.message.Request.UPDATE,vendor=net.java.slee,version=1.2],
EventTypeID
[name=net.java.slee.resource.mgcp.NOTIFICATION_REQUEST_RESPONSE,vendor=net.java,version=1.0],
EventTypeID
[name=javax.sip.Dialog.BYE,vendor=net.java.slee,version=1.2],
EventTypeID
[name=net.java.slee.resource.mgcp.DELETE_CONNECTION,vendor=net.java,version=1.0],
EventTypeID
[name=net.java.slee.resource.mgcp.AUDIT_ENDPOINT_RESPONSE,vendor=net.java,version=1.0],
EventTypeID
[name=javax.sip.message.Response.CLIENT_ERROR,vendor=net.java.slee,version=1.2],
EventTypeID
[name=javax.sip.Dialog.SIP_EXTENSION,vendor=net.java.slee,version=1.2],
EventTypeID
[name=net.java.slee.resource.mgcp.NOTIFY,vendor=net.java,version=1.0],
EventTypeID
[name=net.java.slee.resource.mgcp.DELETE_CONNECTION_RESPONSE,vendor=net.java,version=1.0],
EventTypeID
[name=javax.sip.Timeout.TRANSACTION,vendor=net.java.slee,version=1.2],
EventTypeID
[name=javax.sip.message.Response.TRYING,vendor=net.java.slee,version=1.2],
EventTypeID
[name=javax.sip.Dialog.MESSAGE,vendor=net.java.slee,version=1.2],
EventTypeID
[name=javax.slee.facilities.TimerEvent,vendor=javax.slee,version=1.0],
EventTypeID
[name=javax.sip.message.Request.REGISTER,vendor=net.java.slee,version=1.2],
EventTypeID
[name=javax.slee.ActivityEndEvent,vendor=javax.slee,version=1.0],
EventTypeID
[name=javax.sip.message.Response.PROVISIONAL,vendor=net.java.slee,version=1.2],
EventTypeID
[name=javax.sip.message.Request.REFER,vendor=net.java.slee,version=1.2],
EventTypeID
[name=net.java.slee.resource.mgcp.MODIFY_CONNECTION,vendor=net.java,version=1.0],
EventTypeID
[name=javax.sip.Dialog.FORKED,vendor=net.java.slee,version=1.2],
EventTypeID
[name=javax.sip.Timeout.Dialog,vendor=net.java.slee,version=1.2],
EventTypeID
[name=javax.sip.Dialog.PUBLISH,vendor=net.java.slee,version=1.2],
EventTypeID
[name=javax.slee.profile.ProfileAddedEvent,vendor=javax.slee,version=1.0],
EventTypeID
[name=javax.sip.Dialog.PRACK,vendor=net.java.slee,version=1.2],
EventTypeID
[name=javax.slee.serviceactivity.ServiceStartedEvent,vendor=javax.slee,version=1.0],
EventTypeID
[name=javax.sip.message.Response.SERVER_ERROR,vendor=net.java.slee,version=1.2],
EventTypeID
[name=javax.sip.message.Request.MESSAGE,vendor=net.java.slee,version=1.2],
EventTypeID
[name=javax.sip.message.Request.BYE,vendor=net.java.slee,version=1.2],
EventTypeID
[name=javax.sip.message.Response.REDIRECT,vendor=net.java.slee,version=1.2],
EventTypeID
[name=javax.sip.Dialog.INVITE,vendor=net.java.slee,version=1.2],
EventTypeID
[name=javax.slee.profile.ProfileRemovedEvent,vendor=javax.slee,version=1.0],
EventTypeID
[name=javax.sip.message.Response.SUCCESS,vendor=net.java.slee,version=1.2],
EventTypeID
[name=javax.sip.Dialog.REGISTER,vendor=net.java.slee,version=1.2],
EventTypeID
[name=net.java.slee.resource.mgcp.RESTART_IN_PROGRESS_RESPONSE,vendor=net.java,version=1.0],
EventTypeID
[name=javax.sip.message.Request.INFO,vendor=net.java.slee,version=1.2],
EventTypeID
[name=javax.sip.message.Request.CANCEL,vendor=net.java.slee,version=1.2],
EventTypeID
[name=net.java.slee.resource.mgcp.AUDIT_ENDPOINT,vendor=net.java,version=1.0],
EventTypeID
[name=javax.sip.Dialog.UPDATE,vendor=net.java.slee,version=1.2],
EventTypeID
[name=net.java.slee.resource.mgcp.MODIFY_CONNECTION_RESPONSE,vendor=net.java,version=1.0],
EventTypeID
[name=net.java.slee.resource.mgcp.ENDPOINT_CONFIGURATION_RESPONSE,vendor=net.java,version=1.0],
EventTypeID
[name=javax.sip.Dialog.REFER,vendor=net.java.slee,version=1.2],
EventTypeID
[name=net.java.slee.resource.mgcp.CREATE_CONNECTION_RESPONSE,vendor=net.java,version=1.0],
EventTypeID
[name=javax.sip.Dialog.SUBSCRIBE,vendor=net.java.slee,version=1.2],
EventTypeID
[name=javax.sip.message.Request.ACK,vendor=net.java.slee,version=1.2],
EventTypeID
[name=net.java.slee.resource.mgcp.TRANSACTION_TIMEOUT,vendor=net.java,version=1.0],
EventTypeID
[name=javax.slee.profile.ProfileUpdatedEvent,vendor=javax.slee,version=1.0],
EventTypeID
[name=javax.sip.message.Request.PUBLISH,vendor=net.java.slee,version=1.2],
EventTypeID
[name=net.java.slee.resource.mgcp.ENDPOINT_CONFIGURATION,vendor=net.java,version=1.0],
EventTypeID
[name=javax.slee.serviceactivity.ServiceStartedEvent,vendor=javax.slee,version=1.1],
EventTypeID
[name=javax.sip.message.Request.SUBSCRIBE,vendor=net.java.slee,version=1.2],
EventTypeID
[name=net.java.slee.resource.mgcp.CREATE_CONNECTION,vendor=net.java,version=1.0],
EventTypeID
[name=javax.sip.message.Request.OPTIONS,vendor=net.java.slee,version=1.2],
EventTypeID
[name=net.java.slee.resource.mgcp.NOTIFICATION_REQUEST,vendor=net.java,version=1.0],
EventTypeID
[name=net.java.slee.resource.mgcp.NOTIFY_RESPONSE,vendor=net.java,version=1.0],
EventTypeID
[name=javax.sip.Dialog.OPTIONS,vendor=net.java.slee,version=1.2],
EventTypeID
[name=javax.sip.message.Request.NOTIFY,vendor=net.java.slee,version=1.2],
EventTypeID
[name=javax.sip.Dialog.NOTIFY,vendor=net.java.slee,version=1.2],
EventTypeID
[name=javax.sip.message.Request.PRACK,vendor=net.java.slee,version=1.2]]
+-- Library Components: [LibraryID[name=jain-
sip,vendor=javax.sip,version=1.2], LibraryID[name=library-
mgcp,vendor=library-mgcp,version=2.0]]
+-- Profile Specification Components: [ProfileSpecificationID
[name=AddressProfileSpec,vendor=javax.slee,version=1.0],
ProfileSpecificationID
[name=AddressProfileSpec,vendor=javax.slee,version=1.1],
ProfileSpecificationID
[name=ResourceInfoProfileSpec,vendor=javax.slee,version=1.0]]
+-- Resource Adaptor Components: [ResourceAdaptorID
[name=JainSipResourceAdaptor,vendor=net.java.slee.sip,version=1.2],
ResourceAdaptorID
[name=MGCPResourceAdaptor,vendor=org.mobicents,version=2.0]]
+-- Resource Adaptor Type Components: [ResourceAdaptorTypeID[name=jain-
mgcp,vendor=net.java,version=2.0], ResourceAdaptorTypeID[name=JAIN
SIP,vendor=javax.sip,version=1.2]]
+-- Sbb Components: [SbbID[name=teste-mobicents
SBB,vendor=br.com.coreo.teste,version=1.0-SNAPSHOT]]
+-- Service Components: [ServiceID[name=teste-mobicents SLEE
Service,vendor=br.com.coreo.teste,version=1.0-SNAPSHOT]]
Resource Management:
+-- Resource Adaptor Entities: [MGCPRA, SipRA]
+-- Resource Adaptor Entity Links: [MGCPRA, SipRA]
+-- Resource Adaptor Entities per RA Type size: 2
SbbObject Pool Management:
+-- Pools: [ServiceID[name=teste-mobicents SLEE
Service,vendor=br.com.coreo.teste,version=1.0-SNAPSHOT] & SbbID
[name=teste-mobicents SBB,vendor=br.com.coreo.teste,version=1.0-
SNAPSHOT]]
Timer Facility:
+-- FaultTolerantScheduler [ name = timer-facility , local tasks = 0 ,
all tasks 0 ]
Trace MBean Impl :
+-- Tracers: {SbbNotification[service=ServiceID[name=teste-mobicents
SLEE Service,vendor=br.com.coreo.teste,version=1.0-SNAPSHOT],sbb=SbbID
[name=teste-mobicents SBB,vendor=br.com.coreo.teste,version=1.0-
SNAPSHOT]]=org.mobicents.slee.runtime.facilities.TracerStorage@8da6f,
RAEntityNotification[entity=MGCPRA]
=org.mobicents.slee.runtime.facilities.TracerStorage@13cd468,
RAEntityNotification[entity=SipRA]
=org.mobicents.slee.runtime.facilities.TracerStorage@9d259d}
Profile Table Manager:
+-- Profile Tables: []
Profile Object Pool Management:
+-- Pools: []
ActivityContext Factory:
+-- Number of ACs: 95
Activity context Naming Facility:
+-- Names: []
org.mobicents.slee.runtime.facilities.nullactivity.NullActivityFactoryImpl@141185c
EventRouter:
+-- Executors: 64
+-- Activities: [ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/
mobicents/media/IVR/3...@10.11.67.45:2427),
ACH=RA>SipRA>z9hG4bK-9365-1666-0,
ACH=RA>SipRA>1671...@10.11.67.45:d987d5fa:9365sipptag001671,
ACH=RA>SipRA>z9hG4bK-9365-1675-0,
ACH=RA>SipRA>1640...@10.11.67.45:f6f27a47:9365sipptag001640,
ACH=RA>MGCPRA>MgcpConnectionActivityHandle(id=bef06ebc-c872-4432-9b56-
ef69b97ec5b7), ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/
media/IVR/8...@10.11.67.45:2427), ACH=RA>SipRA>z9hG4bK-9365-1656-0,
ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/media/IVR/
3...@10.11.67.45:2427), ACH=RA>SipRA>z9hG4bK-9365-1665-0,
ACH=RA>SipRA>1637...@10.11.67.45:91907c78:9365sipptag001637,
ACH=RA>SipRA>1643...@10.11.67.45:c9aadf21:9365sipptag001643,
ACH=RA>SipRA>1675...@10.11.67.45:cd1f9c1c:9365sipptag001675,
ACH=RA>MGCPRA>MgcpConnectionActivityHandle(id=558a3e3f-f3f1-45bf-9953-
b475b290b9db), ACH=RA>SipRA>1673...@10.11.67.45:10a2c00b:
9365sipptag001673, ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/
mobicents/media/IVR/2...@10.11.67.45:2427),
ACH=RA>SipRA>1642...@10.11.67.45:ce8023bf:9365sipptag001642,
ACH=RA>SipRA>z9hG4bK-9365-1674-0,
ACH=RA>MGCPRA>MgcpConnectionActivityHandle(id=46e06064-5a02-40cd-9979-
d32610912fae), ACH=RA>SipRA>1638...@10.11.67.45:a2db1fef:
9365sipptag001638, ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/
mobicents/media/IVR/9...@10.11.67.45:2427),
ACH=RA>SipRA>1665...@10.11.67.45:ff146377:9365sipptag001665,
ACH=RA>SipRA>z9hG4bK-9365-1655-0,
ACH=RA>SipRA>1639...@10.11.67.45:726fff17:9365sipptag001639,
ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/media/IVR/
2...@10.11.67.45:2427), ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/
mobicents/media/IVR/4...@10.11.67.45:2427),
ACH=RA>SipRA>1648...@10.11.67.45:a39d8e0:9365sipptag001648,
ACH=RA>SipRA>z9hG4bK-9365-1664-0,
ACH=RA>MGCPRA>MgcpConnectionActivityHandle(id=6409bb14-7df9-4e97-a2de-
df250bb3b07b),
ACH=RA>SipRA>1653...@10.11.67.45:544c3fc9:9365sipptag001653,
ACH=RA>MGCPRA>MgcpConnectionActivityHandle(id=d4677171-b36a-4f57-a352-
c91a52d33d85), ACH=RA>SipRA>z9hG4bK-9365-1673-0,
ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/media/IVR/
4...@10.11.67.45:2427), ACH=RA>MGCPRA>MgcpConnectionActivityHandle
(id=254033df-3f0b-4791-a9ba-2651ef197b60),
ACH=RA>SipRA>1666...@10.11.67.45:6a76511f:9365sipptag001666,
ACH=RA>MGCPRA>MgcpConnectionActivityHandle(id=38f50456-ed24-4176-
b2ff-846b99d09789), ACH=RA>SipRA>z9hG4bK-9365-1663-0,
ACH=RA>SipRA>1661...@10.11.67.45:677b61e8:9365sipptag001661,
ACH=RA>SipRA>1660...@10.11.67.45:c1596c70:9365sipptag001660,
ACH=RA>SipRA>z9hG4bK-9365-1654-0,
ACH=RA>SipRA>1658...@10.11.67.45:348cec5e:9365sipptag001658,
ACH=RA>SipRA>z9hG4bK-9365-1672-0,
ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/media/IVR/
4...@10.11.67.45:2427),
ACH=RA>SipRA>1667...@10.11.67.45:3dd84445:9365sipptag001667,
ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/media/IVR/
1...@10.11.67.45:2427), ACH=RA>MGCPRA>MgcpConnectionActivityHandle
(id=cef59044-be25-45eb-bb62-54c93a8a0307),
ACH=RA>SipRA>1649...@10.11.67.45:aedb8481:9365sipptag001649,
ACH=RA>SipRA>1655...@10.11.67.45:43e14443:9365sipptag001655,
ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/media/IVR/
3...@10.11.67.45:2427),
ACH=RA>SipRA>1650...@10.11.67.45:948f8223:9365sipptag001650,
ACH=RA>SipRA>z9hG4bK-9365-1653-0, ACH=RA>SipRA>z9hG4bK-9365-1662-0,
ACH=RA>SipRA>1659...@10.11.67.45:f1079506:9365sipptag001659,
ACH=RA>SipRA>1662...@10.11.67.45:4bba8915:9365sipptag001662,
ACH=RA>SipRA>1654...@10.11.67.45:13d10228:9365sipptag001654,
ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/media/IVR/
8...@10.11.67.45:2427), ACH=RA>MGCPRA>MgcpConnectionActivityHandle
(id=bd0eb99f-856c-4dc9-8487-7821ee3fded1),
ACH=RA>SipRA>z9hG4bK-9365-1671-0,
ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/media/IVR/
5...@10.11.67.45:2427), ACH=RA>SipRA>1670...@10.11.67.45:b2c6cf6e:
9365sipptag001670, ACH=RA>MGCPRA>MgcpConnectionActivityHandle
(id=56a3a545-90ff-4805-9d2f-16cae8c56390),
ACH=RA>SipRA>z9hG4bK-9365-1669-0,
ACH=RA>SipRA>1664...@10.11.67.45:88b45c54:9365sipptag001664,
ACH=RA>SipRA>z9hG4bK-9365-1652-0,
ACH=RA>SipRA>1645...@10.11.67.45:f844c869:9365sipptag001645,
ACH=RA>SipRA>1644...@10.11.67.45:3cec6bdb:9365sipptag001644,
ACH=RA>SipRA>1669...@10.11.67.45:e19c09ce:9365sipptag001669,
ACH=RA>SipRA>z9hG4bK-9365-1661-0,
ACH=RA>MGCPRA>MgcpConnectionActivityHandle
(id=425faa76-2da9-4c1e-8b04-9adc9eb3cc3d),
ACH=RA>MGCPRA>MgcpConnectionActivityHandle
(id=757ca403-0f2f-457c-89f6-98406571771a),
ACH=RA>SipRA>z9hG4bK-9365-1659-0, ACH=RA>SipRA>z9hG4bK-9365-1670-0,
ACH=RA>SipRA>1657...@10.11.67.45:4338253a:9365sipptag001657,
ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/media/IVR/
4...@10.11.67.45:2427), ACH=SERVICE>>ServiceID[name=teste-mobicents SLEE
Service,vendor=br.com.coreo.teste,version=1.0-SNAPSHOT],
ACH=RA>SipRA>1651...@10.11.67.45:fc32928f:9365sipptag001651,
ACH=RA>MGCPRA>MgcpConnectionActivityHandle(id=5cc435e8-aefc-499f-9ff3-
e3e053e2c753),
ACH=RA>SipRA>1668...@10.11.67.45:ca0aa2a3:9365sipptag001668,
ACH=RA>MGCPRA>MgcpConnectionActivityHandle(id=cffcaac8-2a80-4965-b3a1-
fd55cda1f230), ACH=RA>SipRA>z9hG4bK-9365-1668-0,
ACH=RA>SipRA>1672...@10.11.67.45:f1c6374b:9365sipptag001672,
ACH=RA>SipRA>z9hG4bK-9365-1651-0, ACH=RA>SipRA>z9hG4bK-9365-1660-0,
ACH=RA>SipRA>1646...@10.11.67.45:e748516:9365sipptag001646,
ACH=RA>SipRA>z9hG4bK-9365-1658-0, ACH=RA>SipRA>z9hG4bK-9365-1667-0,
ACH=RA>SipRA>1663...@10.11.67.45:f6da4c2b:9365sipptag001663,
ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/media/IVR/
6...@10.11.67.45:2427), ACH=RA>SipRA>1674...@10.11.67.45:c9b78fc:
9365sipptag001674,
ACH=RA>SipRA>1641...@10.11.67.45:5d0ee370:9365sipptag001641,
ACH=RA>SipRA>1656...@10.11.67.45:fe1ea196:9365sipptag001656,
ACH=RA>MGCPRA>MgcpConnectionActivityHandle(id=64354fa1-7dee-49c3-
aad5-0b54999247b9), ACH=RA>SipRA>1652...@10.11.67.45:5ca69cac:
9365sipptag001652,
ACH=RA>SipRA>1647...@10.11.67.45:f947a648:9365sipptag001647,
ACH=RA>SipRA>z9hG4bK-9365-1657-0]
org.mobicents.slee.runtime.transaction.SleeTransactionManagerImpl@a669b1



*********************************************************************************************************************
Follow the Mobicents Cache MBean printCacheDetails:
/ null
/ac null
/ACH=RA>SipRA>1678...@10.11.67.45:d4069eea:9365sipptag001678
{flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72cf null
/ACH=RA>SipRA>z9hG4bK-9365-1675-0 {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72d5 null
/ACH=RA>SipRA>1642...@10.11.67.45:ce8023bf:9365sipptag001642
{flags=2}
/attached-sbbs null
/ACH=RA>SipRA>1643...@10.11.67.45:c9aadf21:9365sipptag001643
{flags=2}
/attached-sbbs null
/ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/media/IVR/
8...@10.11.67.45:2427) {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72cd null
/ACH=RA>SipRA>z9hG4bK-9365-1666-0 {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72e7 null
/ACH=RA>SipRA>z9hG4bK-9365-1656-0 {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72fb null
/ACH=RA>SipRA>1665...@10.11.67.45:ff146377:9365sipptag001665
{flags=2}
/attached-sbbs null
/ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/media/IVR/
3...@10.11.67.45:2427) {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72d9 null
/ACH=RA>SipRA>1675...@10.11.67.45:cd1f9c1c:9365sipptag001675
{flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72d5 null
/ACH=RA>SipRA>1671...@10.11.67.45:d987d5fa:9365sipptag001671
{flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72dd null
/ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/media/IVR/
2...@10.11.67.45:2427) {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72dd null
/ACH=RA>SipRA>z9hG4bK-9365-1665-0 {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72e9 null
/ACH=RA>MGCPRA>MgcpConnectionActivityHandle(id=e470fa82-5b08-475e-
a4ad-15e2bb3176d7) {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72cd null
/ACH=RA>MGCPRA>MgcpConnectionActivityHandle(id=05f342d4-
d30d-4899-8018-cef75b2ffec8) {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72d3 null
/ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/media/IVR/
3...@10.11.67.45:2427) {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72cf null
/ACH=RA>SipRA>z9hG4bK-9365-1674-0 {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72d7 null
/ACH=RA>MGCPRA>MgcpConnectionActivityHandle(id=558a3e3f-
f3f1-45bf-9953-b475b290b9db) {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72d7 null
/ACH=RA>MGCPRA>MgcpConnectionActivityHandle(id=bef06ebc-
c872-4432-9b56-ef69b97ec5b7) {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72e3 null
/ACH=RA>SipRA>1673...@10.11.67.45:10a2c00b:9365sipptag001673
{flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72d9 null
/ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/media/IVR/
9...@10.11.67.45:2427) {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72e7 null
/ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/media/IVR/
4...@10.11.67.45:2427) {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72d7 null
/ACH=RA>SipRA>1667...@10.11.67.45:3dd84445:9365sipptag001667
{flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72e5 null
/ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/media/IVR/
1...@10.11.67.45:2427) {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72e1 null
/ACH=RA>SipRA>1666...@10.11.67.45:6a76511f:9365sipptag001666
{flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72e7 null
/ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/media/IVR/
4...@10.11.67.45:2427) {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72d5 null
/ACH=RA>MGCPRA>MgcpConnectionActivityHandle(id=ac6a229e-
ac46-48d1-9a3e-9b50fad7deb4) {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72d1 null
/ACH=RA>MGCPRA>MgcpConnectionActivityHandle(id=d4677171-b36a-4f57-
a352-c91a52d33d85) {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72df null
/ACH=RA>MGCPRA>MgcpConnectionActivityHandle(id=cef59044-be25-45eb-
bb62-54c93a8a0307) {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72e1 null
/ACH=RA>SipRA>1660...@10.11.67.45:c1596c70:9365sipptag001660
{flags=2}
/attached-sbbs null
/ACH=RA>SipRA>1649...@10.11.67.45:aedb8481:9365sipptag001649
{flags=2}
/attached-sbbs null
/ACH=RA>MGCPRA>MgcpConnectionActivityHandle(id=38f50456-ed24-4176-
b2ff-846b99d09789) {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72e7 null
/ACH=RA>SipRA>z9hG4bK-9365-1672-0 {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72db null
/ACH=RA>MGCPRA>MgcpConnectionActivityHandle
(id=a9ad736e-2f2d-4282-956c-d2dbc307ebb7) {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72cf null
/ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/media/IVR/
2...@10.11.67.45:2427) {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72e5 null
/ACH=RA>SipRA>1648...@10.11.67.45:a39d8e0:9365sipptag001648
{flags=2}
/attached-sbbs null
/ACH=RA>SipRA>z9hG4bK-9365-1663-0 {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72ed null
/ACH=RA>SipRA>z9hG4bK-9365-1673-0 {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72d9 null
/ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/media/IVR/
4...@10.11.67.45:2427) {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72db null
/ACH=RA>SipRA>z9hG4bK-9365-1664-0 {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72eb null
/ACH=RA>SipRA>1680...@10.11.67.45:9de40b6b:9365sipptag001680
{flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72cb null
/ACH=RA>MGCPRA>MgcpConnectionActivityHandle(id=6409bb14-7df9-4e97-
a2de-df250bb3b07b) {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72d9 null
/ACH=RA>SipRA>1653...@10.11.67.45:544c3fc9:9365sipptag001653
{flags=2}
/attached-sbbs null
/ACH=RA>SipRA>1661...@10.11.67.45:677b61e8:9365sipptag001661
{flags=2}
/attached-sbbs null
/ACH=RA>SipRA>1658...@10.11.67.45:348cec5e:9365sipptag001658
{flags=2}
/attached-sbbs null
/ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/media/IVR/
3...@10.11.67.45:2427) {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72df null
/ACH=RA>SipRA>1645...@10.11.67.45:f844c869:9365sipptag001645
{flags=2}
/attached-sbbs null
/ACH=RA>SipRA>1644...@10.11.67.45:3cec6bdb:9365sipptag001644
{flags=2}
/attached-sbbs null
/ACH=RA>SipRA>z9hG4bK-9365-1662-0 {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72ef null
/ACH=RA>SipRA>z9hG4bK-9365-1661-0 {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72f1 null
/ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/media/IVR/
5...@10.11.67.45:2427) {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72e3 null
/ACH=RA>SipRA>1654...@10.11.67.45:13d10228:9365sipptag001654
{flags=2}
/attached-sbbs null
/ACH=RA>SipRA>1676...@10.11.67.45:d9554d47:9365sipptag001676
{flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72d3 null
/ACH=RA>SipRA>1679...@10.11.67.45:baeee4f9:9365sipptag001679
{flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72cd null
/ACH=RA>SipRA>z9hG4bK-9365-1679-0 {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72cd null
/ACH=RA>SipRA>z9hG4bK-9365-1669-0 {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72e1 null
/ACH=RA>SipRA>z9hG4bK-9365-1670-0 {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72df null
/ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/media/IVR/
4...@10.11.67.45:2427) {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72d1 null
/ACH=RA>SipRA>1650...@10.11.67.45:948f8223:9365sipptag001650
{flags=2}
/attached-sbbs null
/ACH=RA>SipRA>1669...@10.11.67.45:e19c09ce:9365sipptag001669
{flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72e1 null
/ACH=RA>SipRA>z9hG4bK-9365-1680-0 {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72cb null
/ACH=RA>MGCPRA>MgcpConnectionActivityHandle
(id=757ca403-0f2f-457c-89f6-98406571771a) {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72db null
/ACH=RA>MGCPRA>MgcpConnectionActivityHandle
(id=56a3a545-90ff-4805-9d2f-16cae8c56390) {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72dd null
/ACH=RA>SipRA>1655...@10.11.67.45:43e14443:9365sipptag001655
{flags=2}
/attached-sbbs null
/ACH=RA>SipRA>z9hG4bK-9365-1678-0 {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72cf null
/ACH=RA>SipRA>1677...@10.11.67.45:9011b0b6:9365sipptag001677
{flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72d1 null
/ACH=RA>SipRA>z9hG4bK-9365-1671-0 {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72dd null
/ACH=SERVICE>>ServiceID[name=teste-mobicents SLEE
Service,vendor=br.com.coreo.teste,version=1.0-SNAPSHOT] {flags=0}
/ACH=RA>SipRA>1662...@10.11.67.45:4bba8915:9365sipptag001662
{flags=2}
/attached-sbbs null
/ACH=RA>SipRA>z9hG4bK-9365-1659-0 {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72f5 null
/ACH=RA>SipRA>1657...@10.11.67.45:4338253a:9365sipptag001657
{flags=2}
/attached-sbbs null
/ACH=RA>SipRA>1664...@10.11.67.45:88b45c54:9365sipptag001664
{flags=2}
/attached-sbbs null
/ACH=RA>SipRA>1659...@10.11.67.45:f1079506:9365sipptag001659
{flags=2}
/attached-sbbs null
/ACH=RA>MGCPRA>MgcpConnectionActivityHandle
(id=425faa76-2da9-4c1e-8b04-9adc9eb3cc3d) {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72e5 null
/ACH=RA>SipRA>1670...@10.11.67.45:b2c6cf6e:9365sipptag001670
{flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72df null
/ACH=RA>SipRA>z9hG4bK-9365-1660-0 {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72f3 null
/ACH=RA>SipRA>z9hG4bK-9365-1676-0 {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72d3 null
/ACH=RA>SipRA>1668...@10.11.67.45:ca0aa2a3:9365sipptag001668
{flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72e3 null
/ACH=RA>SipRA>1652...@10.11.67.45:5ca69cac:9365sipptag001652
{flags=2}
/attached-sbbs null
/ACH=RA>SipRA>z9hG4bK-9365-1677-0 {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72d1 null
/ACH=RA>SipRA>1646...@10.11.67.45:e748516:9365sipptag001646
{flags=2}
/attached-sbbs null
/ACH=RA>SipRA>1647...@10.11.67.45:f947a648:9365sipptag001647
{flags=2}
/attached-sbbs null
/ACH=RA>SipRA>1672...@10.11.67.45:f1c6374b:9365sipptag001672
{flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72db null
/ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/media/IVR/
5...@10.11.67.45:2427) {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72d3 null
/ACH=RA>SipRA>1651...@10.11.67.45:fc32928f:9365sipptag001651
{flags=2}
/attached-sbbs null
/ACH=RA>SipRA>1663...@10.11.67.45:f6da4c2b:9365sipptag001663
{flags=2}
/attached-sbbs null
/ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/media/IVR/
6...@10.11.67.45:2427) {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72cb null
/ACH=RA>MGCPRA>MgcpConnectionActivityHandle
(id=6f0379dc-91be-4faa-9f61-59b28fb88935) {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72cb null
/ACH=RA>SipRA>1674...@10.11.67.45:c9b78fc:9365sipptag001674
{flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72d7 null
/ACH=RA>MGCPRA>MgcpConnectionActivityHandle(id=cffcaac8-2a80-4965-
b3a1-fd55cda1f230) {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72d5 null
/ACH=RA>SipRA>z9hG4bK-9365-1668-0 {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72e3 null
/ACH=RA>SipRA>z9hG4bK-9365-1667-0 {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72e5 null
/ACH=RA>SipRA>z9hG4bK-9365-1658-0 {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72f7 null
/ACH=RA>SipRA>1656...@10.11.67.45:fe1ea196:9365sipptag001656
{flags=2}
/attached-sbbs null
/ACH=RA>SipRA>z9hG4bK-9365-1657-0 {flags=2}
/attached-sbbs null
/-7c521751:12520b47452:-72f9 null
/service null
/ServiceID[name=teste-mobicents SLEE
Service,vendor=br.com.coreo.teste,version=1.0-SNAPSHOT]
{state=Active}
/childs null
/ACH=RA>SipRA>z9hG4bK-9365-1658-0nullnullnullnullnullnull
{sbbeid=-7c521751:12520b47452:-72f7}
/ACH=RA>SipRA>z9hG4bK-9365-1657-0nullnullnullnullnullnull
{sbbeid=-7c521751:12520b47452:-72f9}
/ACH=RA>SipRA>z9hG4bK-9365-1662-0nullnullnullnullnullnull
{sbbeid=-7c521751:12520b47452:-72ef}
/ACH=RA>SipRA>z9hG4bK-9365-1661-0nullnullnullnullnullnull
{sbbeid=-7c521751:12520b47452:-72f1}
/ACH=RA>SipRA>z9hG4bK-9365-1656-0nullnullnullnullnullnull
{sbbeid=-7c521751:12520b47452:-72fb}
/ACH=RA>SipRA>z9hG4bK-9365-1660-0nullnullnullnullnullnull
{sbbeid=-7c521751:12520b47452:-72f3}
/ACH=RA>SipRA>z9hG4bK-9365-1679-0nullnullnullnullnullnull
{sbbeid=-7c521751:12520b47452:-72cd}
/ACH=RA>SipRA>z9hG4bK-9365-1680-0nullnullnullnullnullnull
{sbbeid=-7c521751:12520b47452:-72cb}
/ACH=RA>SipRA>z9hG4bK-9365-1675-0nullnullnullnullnullnull
{sbbeid=-7c521751:12520b47452:-72d5}
/ACH=RA>SipRA>z9hG4bK-9365-1674-0nullnullnullnullnullnull
{sbbeid=-7c521751:12520b47452:-72d7}
/ACH=RA>SipRA>z9hG4bK-9365-1677-0nullnullnullnullnullnull
{sbbeid=-7c521751:12520b47452:-72d1}
/ACH=RA>SipRA>z9hG4bK-9365-1678-0nullnullnullnullnullnull
{sbbeid=-7c521751:12520b47452:-72cf}
/ACH=RA>SipRA>z9hG4bK-9365-1676-0nullnullnullnullnullnull
{sbbeid=-7c521751:12520b47452:-72d3}
/ACH=RA>SipRA>z9hG4bK-9365-1670-0nullnullnullnullnullnull
{sbbeid=-7c521751:12520b47452:-72df}
/ACH=RA>SipRA>z9hG4bK-9365-1673-0nullnullnullnullnullnull
{sbbeid=-7c521751:12520b47452:-72d9}
/ACH=RA>SipRA>z9hG4bK-9365-1664-0nullnullnullnullnullnull
{sbbeid=-7c521751:12520b47452:-72eb}
/ACH=RA>SipRA>z9hG4bK-9365-1666-0nullnullnullnullnullnull
{sbbeid=-7c521751:12520b47452:-72e7}
/ACH=RA>SipRA>z9hG4bK-9365-1659-0nullnullnullnullnullnull
{sbbeid=-7c521751:12520b47452:-72f5}
/ACH=RA>SipRA>z9hG4bK-9365-1672-0nullnullnullnullnullnull
{sbbeid=-7c521751:12520b47452:-72db}
/ACH=RA>SipRA>z9hG4bK-9365-1665-0nullnullnullnullnullnull
{sbbeid=-7c521751:12520b47452:-72e9}
/ACH=RA>SipRA>z9hG4bK-9365-1663-0nullnullnullnullnullnull
{sbbeid=-7c521751:12520b47452:-72ed}
/ACH=RA>SipRA>z9hG4bK-9365-1667-0nullnullnullnullnullnull
{sbbeid=-7c521751:12520b47452:-72e5}
/ACH=RA>SipRA>z9hG4bK-9365-1671-0nullnullnullnullnullnull
{sbbeid=-7c521751:12520b47452:-72dd}
/ACH=RA>SipRA>z9hG4bK-9365-1668-0nullnullnullnullnullnull
{sbbeid=-7c521751:12520b47452:-72e3}
/ACH=RA>SipRA>z9hG4bK-9365-1669-0nullnullnullnullnullnull
{sbbeid=-7c521751:12520b47452:-72e1}
/aci-names null
/timer-facility null
/jain-sip-ha null
/Dialogs null
/sbb-entity null
/-7c521751:12520b47452:-72ef
{idata=org.mobicents.slee.runtime.sbbentity.SbbEntityImmutableData@170d783,
priority=0}
/ac {ACH=RA>SipRA>z9hG4bK-9365-1662-0=true}
/cmp-fields
{connectionIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@316c8a27,
endpointName=org.mobicents.slee.runtime.sbbentity.CmpWrapper@cd4939c0,
callIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@de3225a7}
/-7c521751:12520b47452:-72f9
{idata=org.mobicents.slee.runtime.sbbentity.SbbEntityImmutableData@154e788,
priority=0}
/ac {ACH=RA>SipRA>z9hG4bK-9365-1657-0=true}
/cmp-fields
{connectionIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@316c8a27,
endpointName=org.mobicents.slee.runtime.sbbentity.CmpWrapper@cd4939c0,
callIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@de3225a7}
/-7c521751:12520b47452:-72cd
{idata=org.mobicents.slee.runtime.sbbentity.SbbEntityImmutableData@12c988e,
priority=0}
/ac {ACH=RA>MGCPRA>MgcpConnectionActivityHandle
(id=e470fa82-5b08-475e-a4ad-15e2bb3176d7)=true,
ACH=RA>SipRA>z9hG4bK-9365-1679-0=true,
ACH=RA>SipRA>1679...@10.11.67.45:baeee4f9:9365sipptag001679=true,
ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/media/IVR/
8...@10.11.67.45:2427)=true}
/cmp-fields
{connectionIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@316c8a27,
endpointName=org.mobicents.slee.runtime.sbbentity.CmpWrapper@cd4939c0,
callIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@de3225a7}
/-7c521751:12520b47452:-72d7
{idata=org.mobicents.slee.runtime.sbbentity.SbbEntityImmutableData@d3b40f,
priority=0}
/ac {ACH=RA>SipRA>z9hG4bK-9365-1674-0=true,
ACH=RA>SipRA>1674...@10.11.67.45:c9b78fc:9365sipptag001674=true,
ACH=RA>MGCPRA>MgcpConnectionActivityHandle(id=558a3e3f-f3f1-45bf-9953-
b475b290b9db)=true, ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/
mobicents/media/IVR/4...@10.11.67.45:2427)=true}
/cmp-fields
{connectionIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@316c8a27,
endpointName=org.mobicents.slee.runtime.sbbentity.CmpWrapper@cd4939c0,
callIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@de3225a7}
/-7c521751:12520b47452:-72e5
{idata=org.mobicents.slee.runtime.sbbentity.SbbEntityImmutableData@d27151,
priority=0}
/ac
{ACH=RA>SipRA>1667...@10.11.67.45:3dd84445:9365sipptag001667=true,
ACH=RA>MGCPRA>MgcpConnectionActivityHandle
(id=425faa76-2da9-4c1e-8b04-9adc9eb3cc3d)=true,
ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/media/IVR/
2...@10.11.67.45:2427)=true, ACH=RA>SipRA>z9hG4bK-9365-1667-0=true}
/cmp-fields
{connectionIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@316c8a27,
endpointName=org.mobicents.slee.runtime.sbbentity.CmpWrapper@cd4939c0,
callIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@de3225a7}
/-7c521751:12520b47452:-72fb
{idata=org.mobicents.slee.runtime.sbbentity.SbbEntityImmutableData@db08d,
priority=0}
/ac {ACH=RA>SipRA>z9hG4bK-9365-1656-0=true}
/cmp-fields
{connectionIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@316c8a27,
endpointName=org.mobicents.slee.runtime.sbbentity.CmpWrapper@cd4939c0,
callIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@de3225a7}
/-7c521751:12520b47452:-72f1
{idata=org.mobicents.slee.runtime.sbbentity.SbbEntityImmutableData@c213ad,
priority=0}
/ac {ACH=RA>SipRA>z9hG4bK-9365-1661-0=true}
/cmp-fields
{connectionIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@316c8a27,
endpointName=org.mobicents.slee.runtime.sbbentity.CmpWrapper@cd4939c0,
callIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@de3225a7}
/-7c521751:12520b47452:-72cb
{idata=org.mobicents.slee.runtime.sbbentity.SbbEntityImmutableData@199fbaa,
priority=0}
/ac {ACH=RA>SipRA>1680...@10.11.67.45:9de40b6b:
9365sipptag001680=true, ACH=RA>MGCPRA>MgcpConnectionActivityHandle
(id=6f0379dc-91be-4faa-9f61-59b28fb88935)=true,
ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/media/IVR/
6...@10.11.67.45:2427)=true, ACH=RA>SipRA>z9hG4bK-9365-1680-0=true}
/cmp-fields
{connectionIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@316c8a27,
endpointName=org.mobicents.slee.runtime.sbbentity.CmpWrapper@cd4939c0,
callIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@de3225a7}
/-7c521751:12520b47452:-72d9
{idata=org.mobicents.slee.runtime.sbbentity.SbbEntityImmutableData@5959cc,
priority=0}
/ac {ACH=RA>SipRA>z9hG4bK-9365-1673-0=true,
ACH=RA>SipRA>1673...@10.11.67.45:10a2c00b:9365sipptag001673=true,
ACH=RA>MGCPRA>MgcpConnectionActivityHandle(id=6409bb14-7df9-4e97-a2de-
df250bb3b07b)=true, ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/
mobicents/media/IVR/3...@10.11.67.45:2427)=true}
/cmp-fields
{connectionIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@316c8a27,
endpointName=org.mobicents.slee.runtime.sbbentity.CmpWrapper@cd4939c0,
callIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@de3225a7}
/-7c521751:12520b47452:-72e7
{idata=org.mobicents.slee.runtime.sbbentity.SbbEntityImmutableData@166770,
priority=0}
/ac {ACH=RA>SipRA>z9hG4bK-9365-1666-0=true,
ACH=RA>SipRA>1666...@10.11.67.45:6a76511f:9365sipptag001666=true,
ACH=RA>MGCPRA>MgcpConnectionActivityHandle(id=38f50456-ed24-4176-
b2ff-846b99d09789)=true, ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/
mobicents/media/IVR/9...@10.11.67.45:2427)=true}
/cmp-fields
{connectionIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@316c8a27,
endpointName=org.mobicents.slee.runtime.sbbentity.CmpWrapper@cd4939c0,
callIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@de3225a7}
/-7c521751:12520b47452:-72ed
{idata=org.mobicents.slee.runtime.sbbentity.SbbEntityImmutableData@e0f043,
priority=0}
/ac {ACH=RA>SipRA>z9hG4bK-9365-1663-0=true}
/cmp-fields
{connectionIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@316c8a27,
endpointName=org.mobicents.slee.runtime.sbbentity.CmpWrapper@cd4939c0,
callIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@de3225a7}
/-7c521751:12520b47452:-72f3
{idata=org.mobicents.slee.runtime.sbbentity.SbbEntityImmutableData@1bdc863,
priority=0}
/ac {ACH=RA>SipRA>z9hG4bK-9365-1660-0=true}
/cmp-fields
{connectionIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@316c8a27,
endpointName=org.mobicents.slee.runtime.sbbentity.CmpWrapper@cd4939c0,
callIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@de3225a7}
/-7c521751:12520b47452:-72f5
{idata=org.mobicents.slee.runtime.sbbentity.SbbEntityImmutableData@af13de,
priority=0}
/ac {ACH=RA>SipRA>z9hG4bK-9365-1659-0=true}
/cmp-fields
{connectionIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@316c8a27,
endpointName=org.mobicents.slee.runtime.sbbentity.CmpWrapper@cd4939c0,
callIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@de3225a7}
/-7c521751:12520b47452:-72d1
{idata=org.mobicents.slee.runtime.sbbentity.SbbEntityImmutableData@417813,
priority=0}
/ac {ACH=RA>SipRA>z9hG4bK-9365-1677-0=true,
ACH=RA>MGCPRA>MgcpConnectionActivityHandle(id=ac6a229e-
ac46-48d1-9a3e-9b50fad7deb4)=true,
ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/media/IVR/
4...@10.11.67.45:2427)=true,
ACH=RA>SipRA>1677...@10.11.67.45:9011b0b6:9365sipptag001677=true}
/cmp-fields
{connectionIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@316c8a27,
endpointName=org.mobicents.slee.runtime.sbbentity.CmpWrapper@cd4939c0,
callIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@de3225a7}
/-7c521751:12520b47452:-72e1
{idata=org.mobicents.slee.runtime.sbbentity.SbbEntityImmutableData@322fbb,
priority=0}
/ac {ACH=RA>MGCPRA>MgcpConnectionActivityHandle(id=cef59044-
be25-45eb-bb62-54c93a8a0307)=true,
ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/media/IVR/
1...@10.11.67.45:2427)=true, ACH=RA>SipRA>1669...@10.11.67.45:e19c09ce:
9365sipptag001669=true, ACH=RA>SipRA>z9hG4bK-9365-1669-0=true}
/cmp-fields
{connectionIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@316c8a27,
endpointName=org.mobicents.slee.runtime.sbbentity.CmpWrapper@cd4939c0,
callIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@de3225a7}
/-7c521751:12520b47452:-72eb
{idata=org.mobicents.slee.runtime.sbbentity.SbbEntityImmutableData@dbbbd6,
priority=0}
/ac {ACH=RA>SipRA>z9hG4bK-9365-1664-0=true}
/cmp-fields
{connectionIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@316c8a27,
endpointName=org.mobicents.slee.runtime.sbbentity.CmpWrapper@cd4939c0,
callIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@de3225a7}
/-7c521751:12520b47452:-72d3
{idata=org.mobicents.slee.runtime.sbbentity.SbbEntityImmutableData@8f9b6,
priority=0}
/ac {ACH=RA>SipRA>z9hG4bK-9365-1676-0=true,
ACH=RA>SipRA>1676...@10.11.67.45:d9554d47:9365sipptag001676=true,
ACH=RA>MGCPRA>MgcpConnectionActivityHandle(id=05f342d4-d30d-4899-8018-
cef75b2ffec8)=true, ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/
mobicents/media/IVR/5...@10.11.67.45:2427)=true}
/cmp-fields
{connectionIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@316c8a27,
endpointName=org.mobicents.slee.runtime.sbbentity.CmpWrapper@cd4939c0,
callIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@de3225a7}
/-7c521751:12520b47452:-72e9
{idata=org.mobicents.slee.runtime.sbbentity.SbbEntityImmutableData@1423fa5,
priority=0}
/ac {ACH=RA>SipRA>z9hG4bK-9365-1665-0=true}
/cmp-fields
{connectionIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@316c8a27,
endpointName=org.mobicents.slee.runtime.sbbentity.CmpWrapper@cd4939c0,
callIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@de3225a7}
/-7c521751:12520b47452:-72df
{idata=org.mobicents.slee.runtime.sbbentity.SbbEntityImmutableData@60a6ce,
priority=0}
/ac {ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/
media/IVR/3...@10.11.67.45:2427)=true,
ACH=RA>SipRA>z9hG4bK-9365-1670-0=true,
ACH=RA>SipRA>1670...@10.11.67.45:b2c6cf6e:9365sipptag001670=true,
ACH=RA>MGCPRA>MgcpConnectionActivityHandle(id=d4677171-b36a-4f57-a352-
c91a52d33d85)=true}
/cmp-fields
{connectionIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@316c8a27,
endpointName=org.mobicents.slee.runtime.sbbentity.CmpWrapper@cd4939c0,
callIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@de3225a7}
/-7c521751:12520b47452:-72f7
{idata=org.mobicents.slee.runtime.sbbentity.SbbEntityImmutableData@1672df6,
priority=0}
/ac {ACH=RA>SipRA>z9hG4bK-9365-1658-0=true}
/cmp-fields
{connectionIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@316c8a27,
endpointName=org.mobicents.slee.runtime.sbbentity.CmpWrapper@cd4939c0,
callIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@de3225a7}
/-7c521751:12520b47452:-72e3
{idata=org.mobicents.slee.runtime.sbbentity.SbbEntityImmutableData@faa05b,
priority=0}
/ac {ACH=RA>MGCPRA>MgcpConnectionActivityHandle(id=bef06ebc-
c872-4432-9b56-ef69b97ec5b7)=true,
ACH=RA>SipRA>z9hG4bK-9365-1668-0=true,
ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/media/IVR/
5...@10.11.67.45:2427)=true,
ACH=RA>SipRA>1668...@10.11.67.45:ca0aa2a3:9365sipptag001668=true}
/cmp-fields
{connectionIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@316c8a27,
endpointName=org.mobicents.slee.runtime.sbbentity.CmpWrapper@cd4939c0,
callIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@de3225a7}
/-7c521751:12520b47452:-72d5
{idata=org.mobicents.slee.runtime.sbbentity.SbbEntityImmutableData@35e0ec,
priority=0}
/ac {ACH=RA>SipRA>1675...@10.11.67.45:cd1f9c1c:
9365sipptag001675=true, ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/
mobicents/media/IVR/4...@10.11.67.45:2427)=true,
ACH=RA>SipRA>z9hG4bK-9365-1675-0=true,
ACH=RA>MGCPRA>MgcpConnectionActivityHandle(id=cffcaac8-2a80-4965-b3a1-
fd55cda1f230)=true}
/cmp-fields
{connectionIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@316c8a27,
endpointName=org.mobicents.slee.runtime.sbbentity.CmpWrapper@cd4939c0,
callIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@de3225a7}
/-7c521751:12520b47452:-72db
{idata=org.mobicents.slee.runtime.sbbentity.SbbEntityImmutableData@141c8f0,
priority=0}
/ac {ACH=RA>SipRA>z9hG4bK-9365-1672-0=true,
ACH=RA>MGCPRA>MgcpConnectionActivityHandle
(id=757ca403-0f2f-457c-89f6-98406571771a)=true,
ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/media/IVR/
4...@10.11.67.45:2427)=true, ACH=RA>SipRA>1672...@10.11.67.45:f1c6374b:
9365sipptag001672=true}
/cmp-fields
{connectionIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@316c8a27,
endpointName=org.mobicents.slee.runtime.sbbentity.CmpWrapper@cd4939c0,
callIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@de3225a7}
/-7c521751:12520b47452:-72dd
{idata=org.mobicents.slee.runtime.sbbentity.SbbEntityImmutableData@1ef1bc6,
priority=0}
/ac {ACH=RA>MGCPRA>MgcpConnectionActivityHandle
(id=56a3a545-90ff-4805-9d2f-16cae8c56390)=true,
ACH=RA>SipRA>1671...@10.11.67.45:d987d5fa:9365sipptag001671=true,
ACH=RA>SipRA>z9hG4bK-9365-1671-0=true,
ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/media/IVR/
2...@10.11.67.45:2427)=true}
/cmp-fields
{connectionIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@316c8a27,
endpointName=org.mobicents.slee.runtime.sbbentity.CmpWrapper@cd4939c0,
callIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@de3225a7}
/-7c521751:12520b47452:-72cf
{idata=org.mobicents.slee.runtime.sbbentity.SbbEntityImmutableData@10881e1,
priority=0}
/ac {ACH=RA>MGCPRA>MgcpConnectionActivityHandle
(id=a9ad736e-2f2d-4282-956c-d2dbc307ebb7)=true,
ACH=RA>MGCPRA>MgcpEndpointActivityHandle(id=/mobicents/media/IVR/
3...@10.11.67.45:2427)=true, ACH=RA>SipRA>z9hG4bK-9365-1678-0=true,
ACH=RA>SipRA>1678...@10.11.67.45:d4069eea:9365sipptag001678=true}
/cmp-fields
{connectionIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@316c8a27,
endpointName=org.mobicents.slee.runtime.sbbentity.CmpWrapper@cd4939c0,
callIdentifier=org.mobicents.slee.runtime.sbbentity.CmpWrapper@de3225a7}




Amit Bhayani

unread,
Nov 23, 2009, 6:40:27 AM11/23/09
to mobicent...@googlegroups.com
many activites are leaking

Are you firing DLCX ? Is it on Endpoint or Connection?

Amit Bhayani

unread,
Nov 23, 2009, 8:15:36 AM11/23/09
to mobicent...@googlegroups.com
Just tested the MGCP RA from binary release. The activityEnded() changes are not reflecting there and hence you will still see those errors :(

Eduardo Martins

unread,
Nov 23, 2009, 8:17:51 AM11/23/09
to mobicent...@googlegroups.com
Normandes, can you please try to build the RA from svn trunk?

-- Eduardo

Eduardo Martins

unread,
Nov 23, 2009, 1:09:36 PM11/23/09
to mobicent...@googlegroups.com
Well, actually, you don't need to build from source, the binary snapshot is already pointing to sources from trunk, so just grab it here:

http://hudson.jboss.org/hudson/view/Mobicents/job/MobicentsSleeRelease/

-- Eduardo
Reply all
Reply to author
Forward
0 new messages