Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

VOIP: How to Create a Web app to make Call like skype or msn? [closed]

Tags:

This is a very newbie question.

I want to know how to create a web app to make a telephone call, most likely using VOIP protocol.

What programming languages, both client and server side, do I have to learn?

like image 983
xRobot Avatar asked Mar 14 '10 01:03

xRobot


People also ask

What software is used to make VoIP calls?

There are many different types of VoIP softwares, including WhatsApp, Facetime and Skype voice calling which you may have used before. These are typical examples of consumer VoIP softwares. For business VoIP softwares, we typically use a VoIP service know as SIP.

What is VoIP Web application?

Voice over Internet Protocol (VoIP), is a technology that allows you to make voice calls using a broadband Internet connection instead of a regular (or analog) phone line.


1 Answers

The primary question you need to answer to get started is are you looking for a computer to computer call or do you want your app to call a telephone number?

Since you specify that you want your "web app to make a call," I suspect you're looking for a way to place automated calls to a user's telephone. If that's the case, you've got a few options.

Install a VoIP server like Asterisk or Freeswitch and write code to have your web app interact with it. For Asterisk, the Adhearsion project can help by allowing you to write Asterisk integrations in Ruby. http://adhearsion.com/

Or you can use a cloud telephony service like Cloudvox or Tropo http://tropo.com (disclosure, I work for Voxeo, the company behind Tropo). These services allow you to use web programming languages and web services to talk to the phone system. You don't need to know anything about Voip to make it happen. A sample Tropo script...

<?php answer(); say('Yes, it really is this easy.'); hangup(); ?> 

A side benefit to the cloud services is many of them allow your app to run over other communications channels (Tropo does IM and SMS, too).

The third option is to look into VoiceXML, a W3C standard for creating voice apps. Voxeo provides detailed docs and VoiceXML tutorials at http://vxml.org/. With a VoiceXML (sometimes called VXML) application, you can install a VoiceXML server and the associated VoIP bits or you can use a VoiceXML hosting provider. Voxeo provides both a downloadable server and hosting (both are free for developers), or a search for VoiceXML hosting will reveal a large number of options.

like image 161
Adam Kalsey Avatar answered Jan 01 '23 21:01

Adam Kalsey