I have to make an application that make pc-phone and pc – pc call with asp.net. However examples I see on the web are generally made as windows application.
Can anyone give me refference, examples, documents about voip and asp.net?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can’t make a VoIP call with a pure ASP.NET application. The problem is HTTP is a stateless protocol that drops connections as soon as data transfer has occurred. VoIP is a real time application where you need to have a constant connection between the various parties (client-pbx-destination, usually).
As a result, you would need to extend your ASP.NET application with either a ClickOnce .NET Windows Forms Application or other component that runs a local application on the user’s machine.