Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Java: Is it possible to send SMS from a Java application

Tags:

java

sms

Is it possible to send SMS from a Java application. I don't want to use J2ME in this case. I want to know with respect to J2SE and J2EE only. Is there any API available to achieve this? If it is available whether we have to use any service provider or not for this? Can you tell me how to achieve that?

like image 737
dhiraj Avatar asked Oct 15 '22 05:10

dhiraj


2 Answers

Certainly. We're currently sending SMS messages via Ericsson IPX. We simply POST to a specific URL to send the message (and they post an XML document to our URL when we receive SMSes). This is easy to do in most languages.

There are also quite a few lower-end providers that allow free or low-cost SMSes as long as the volume is low enough.

like image 170
ndp Avatar answered Oct 20 '22 16:10

ndp


You could look into my cool sms, they have an API for sending SMS, works with Java.

like image 22
Lars Andren Avatar answered Oct 20 '22 15:10

Lars Andren