[Asterisk-java-users] Multiple users calling into a conference (soft phone works, hard phone doesnt)
Brought to you by:
srt
From: Forte, G. \(GFORTE\) <gf...@ar...> - 2006-05-20 01:22:03
|
Hello all, This is probably not the proper forum for this question but since I am = using *-java to accomplish the following I thought someone here may have = had this problem. I am using the following code from Stefan to make multiple users dial = into conference room 8200 for(int i=3D0;i<array.length;i++) { originateAction =3D new OriginateAction(); originateAction.setApplication("MeetMe"); originateAction.setData("8200"); originateAction.setChannel(array[i]); originateAction.setCallerId("8200"); originateAction.setTimeout(new Long(30000)); originateAction.setAsync(Boolean.TRUE); if(!managerConnection.isConnected()){ = managerConnection.login();} managerResponse =3D = managerConnection.sendAction(originateAction,30000); } Lets say I have phone 200 and 201. 200 rings and when 200 is picked up, 201 then rings. This works great with softphones(x-phone). Now I am attempting to have a land line phone in the mix. So now lets say I have phone 212-555-1212 and softphone 200. I was thinking that 212-555-1212 would ring and then when it was picked = up, 200 would ring. Question: Should this behaviour be expected?=20 OR=20 is there no way that asterisk would be expected to dial a land line = phone to initiate a conference or rather is the expected behaviour : = 212-555-1212 can only join a conference by dialing the conference? Once again I understand this is more of an asterisk forum question but I = thought I would ask here first. Thanks in advance! GF |