Rakesh Vende
Rakesh Vende

Reputation: 31

Java library to make recorded phone call

Scenario: GSM SIM card is connected to PC using a USB port. I have a audio file. I have a list of mobile numbers to call.

Question: I'm looking for JAVA library which detects the GSM SIM card, and allow my application to make a recorded phone call to this list of mobile numbers.

Extra Information: This is NOT A J2ME application. I studied some of resources from net. I found this http://smslib.org/ & http://www.voicent.com/devnet/docs/javaapi.htm which does not completely solve my problem. Former can only send SMS, latter uses a gateway which actually makes a call & application's responsibility is to connect to the gateway with necessary details.

Upvotes: 1

Views: 652

Answers (1)

Ravinder Reddy
Ravinder Reddy

Reputation: 24002

There is an API called KooKoo and they have developed telephony API for automation. You can find details on Outbound calls here.

You require to send recipient's number and the audio file over the API to play it to the recipient. You need to explore more on the API to understand its capabilities and fulfil your requirements.

Upvotes: 1

Related Questions