09-10-2014 12:44 PM
Hi
I am developing a web based utility for Cisco IP Phone using javascript and c#, I am stuck in making a conference call using code. I have tried to make a CONSULT_CALL and turn it to CONFERENCE. Can anyone help me with this.
I hope to hear from you soon.
Thanks,
09-11-2014 12:34 PM
Are you creating a Finesse gadget or creating a non-gadget application using the REST API and an xmpp library?
For the Rest API, use Dialog – Take Action on a Participant
http://(mediaAddress, action, handlers)
Where action is CONFERENCE
09-11-2014 12:52 PM
Thanks for the response, I am making non gadget application in C#,
I have 2 calls in System and I am trying to do something like this
request.Method = "PUT";
using (var s = request.GetRequestStream())
using (var sw = new StreamWriter(s))
{
sw.Write("<Dialog> <targetMediaAddress>111111111</targetMediaAddress><requestedAction>CONFERENCE</requestedAction></Dialog>");
}
using (HttpWebResponse response = (HttpWebResponse)request.GetResponse())
{
if (response.StatusCode.ToString() == "Accepted")
{
}
}
I am not getting any kind of exception it runs smoothly, but its not affecting any of the calls.
08-19-2016 01:37 AM
Hi syrus,
Are you able to achieve this, can share on the action taken ? Or anybody have similar experience and can share?
Thanks.
Regards,
Maria
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide