I have an application using the Manager API and the Asterisk-Java framework.
When I start two outgoing calls (by using the OriginateAction) and start a meetme conference (by using the context ‘meetme1’, see below), this conference works correctly. But when one of the participants hangs up, the other one is hung up too (and further extensions in the dialplan are not triggered). This is not what I want, I want the other one to stay in the conference room.
This problem does not occur, when I don’t use the manager API but simply connect two incoming calls in a conference (see default ‘context’ below).
Asterisk version is 1.2.1.
The simplified extensions.conf:
[default]
exten => s,1,Goto(meetme1,s,1)
[meetme1]
exten => s,1,meetme(1)
I haven’t found anything on this issue, any help is appreciated.