Hunt
Hunt

Reputation: 8425

handle incoming calls from browser

How to handle incoming calls (from Land Line / Mobile ) to browser ? that means a client can handle all his incoming calls via browser only they no need to go to fetch their phones at the time of working

Just like Twilio handles all incoming calls in their OpenVBX client

After searching few things i came to know following ( i may wrong so please do help in getting better)

What i want to know is ?

you can say i want to develop a kind of softphone in which i can only handle incoming calls

Upvotes: 2

Views: 648

Answers (1)

sipsorcery
sipsorcery

Reputation: 30699

Most of your questions about where to get a number, the hardware required for VoIP etc aren't programming related. If the Telephony site ever gets off the ground it would be the place to ask those sort of questions. There are lots of VoIP providers that can provide you with incoming DIDs and every other kind of VoIP/PSTN integration service you could want.

As far as handling calls in a browser there are lots of different options, here are three to get you started:

  • You could set up your own Asterisk/FreeSWTICH or other soft switch and do some kind of HTTP integration in your dialplan that would notify a browser about call events,

  • You could take a look at phono from voxeo which is a javascript API that talks to back end SIP servers,

  • Or you could run a SIP stack directly in a browser or as I've done with my Silverlight switchboard which provides notifications and call handling abilities within a browser with SIP

Upvotes: 1

Related Questions