views:

110

answers:

1

The task is to validate an US phone number. Checking format of the number is not enough.
So I should make a call to the number and determine if the subscriber answers.

Is it possible to automate it using VOIP solutions?

Please, suggest any ideas to start with.

I'm going to implement it on Windows platform (probably .NET or Java). It can me for example a console application that receives a parameter (a phone number) and returns true or false.

+1  A: 

I would recommend using Twilio (twilio.com) for this. It is a simple to use web application that allows you to build this type of functionality in the cloud. Your system would make an HTTP POST request to initiate the process - and your web server would end up being called with the outcome of the call. Their website provides many examples that would fit what you're looking to do.

Kevin O'Donnell
+1 Thanks for the link--I may end up using the site too!
ewall