Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

begin with java voip [closed]

Tags:

java

voip

i have to write a chat application enable to conference calling with voip, but i dont know anything about this technology at all and i couldnt find anything useful. do you know any useful site which help to begin working with it? thanks

like image 940
samuel Avatar asked Feb 23 '10 20:02

samuel


1 Answers

You might look at hosted voice platforms. There's VoiceXML (see http://vxml.org/ for docs and tutorials) and numerous VoiceXML hosts, including my employer, Voxeo ( http://voxeo.com/ ).

There's also Adhearsion, a programming framework that runs on Asterisk http://adhearsion.com/ (it's Ruby, but there's always JRuby if you need to stay in the Java world).

And finally, a number of hosted API services you can use to create voice apps. Tropo ( http://tropo.com/ ), Twilio, ifByPhone ( http://ifbyphone.com/ ), and a few others.

Most of the hosted APIs are designed so you don't need to be a voice developer to understand them. For instance, to create a conference in Java with Tropo, here's the code...

answer();
conference('unique-id');

Using that code, everyone who calls the phone number this code is attached to will be joined into a conference together.

like image 153
Adam Kalsey Avatar answered Sep 18 '22 14:09

Adam Kalsey