Welcome to the Official BlackBerry® Support Community Forums. This is your resource to discuss support topics with your peers, and learn from each other. New to the forum? Please visit the ‘Getting Started’ link below.
inside custom component

Java Development

Reply
New Developer
myquestion
Posts: 115
Registered: 11-12-2008

Programaticaly conference call

How to do conferencecall programatically in blackberry   .....

 

3 call should established with atuoredial..........

Please use plain text.
Developer
AlbertSiu
Posts: 58
Registered: 09-22-2010

Re: Programaticaly conference call

[ Edited ]

You should make use of the phone listener to check the call status (incoming, outgoing, connected ...) of your phone.

 

In target call status make use of the event injector to control the phone menu to hold the first call.

 

Then dial to the third party with the command.

 

 

					PhoneArguments call = new PhoneArguments(PhoneArguments.ARG_CALL, "123456");

Invoke.invokeApplication(Invoke.APP_TYPE_PHONE, call);

 

Check the call status of the third party with the help of the phone listener.

 

 

Then use event injector again to control the phone menu to join these two call together.

 

You can establish a conference call manually with you phone menu for more detail steps on how to establish a conference call with the help of the phone menu.

 

Please be remind that CDMA network may not be able to establish conference call (Information from other thread of this forum).

 

One thing I am not sure is whether autoredial is possible.

Please use plain text.
New Developer
myquestion
Posts: 115
Registered: 11-12-2008

Re: Programaticaly conference call

actually i know how to call manually the conference call...but want to do programatically...

 

say i have two number    12324,45454   i want to join this two number through conference call...

 

through programatically....

Please use plain text.
Developer
AlbertSiu
Posts: 58
Registered: 09-22-2010

Re: Programaticaly conference call

There is some demo program within Eclipse. You can refere to it for detail. I can sure the folw I provide is work. Sinice I already establish a program that establish a conference call in case of any incoming or outing call.

 

Phone listener is quite easy to implement. (With demo program in Eclipse)

The code provide about can establish a phone call.

The only thing you need to do is to implement the flow with the help of event injector.

 

Not a difficult program. Can complete in just a few hundred codes.

 

Please use plain text.