begin with java voip [closed]

泪湿孤枕 提交于 2019-12-21 05:16:18

问题


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


回答1:


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.




回答2:


Take a look at Asterisk PBX project and Asterisk Java integration project http://asterisk-java.org. Might get some hints and not be forced to reinvent the wheel.



来源:https://stackoverflow.com/questions/2321582/begin-with-java-voip

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!