Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What are the possible ways to send and receive sms from java application ?

Note: I am expecting a list of possible ways. also your opinion about each, which is better / how?

share|improve this question
4  
So, what worked for you? – Buhake Sindi Mar 7 '11 at 18:13
@The Its still open question. – Jigar Joshi Mar 8 '11 at 5:47
@JigarJoshi: What approach did you take, even am having similar requirement. – Rachel May 2 '12 at 1:47
1  
@JigarJoshi "Its still open question." It gets to a point (now more than a year later) when questions are either answered or pointless. If the former, please choose the best answer, if the latter, please delete it as 'unanswerable'. – Andrew Thompson Jun 20 '12 at 9:17

9 Answers

Have a look at Simplewire Java SMS Software Development Kit

Sending and receiving SMS From Java using the Ozeki Java SMS SDK

share|improve this answer
Thank you all... – Jigar Joshi Apr 3 '10 at 10:26
Yeah Simplewire is good choice it is realy easy to use :) – sfrj Mar 11 '11 at 11:04

if all you want is simple notifications, many carriers support SMS via email; see SMS through E-Mail

share|improve this answer
Thank you all... – Jigar Joshi Apr 3 '10 at 10:06
This is awesome. Thank you, Steven. – David Conrad Jun 22 '12 at 1:20

There is an API called SMSLib, it's really awsome. http://smslib.org/

share|improve this answer
+1 Thank you, just what I needed! A C++ port would be great, but since the library has http/ip interface would work for me also. – Valentin Heinitz Dec 2 '12 at 20:42

(Disclaimer: I work at Twilio)

Twilio offers a Java SDK for sending SMS via the Twilio REST API.

share|improve this answer
what if i want to recieve it on my server? – Jigar Joshi Apr 12 '10 at 4:47
You would sign up for a Twilio account, then assign a URL to be hit when an incoming message is received: twilio.com/sms – John Sheehan Apr 13 '10 at 14:40

ie.omk.smpp. is api it's base on SMPP and simulator is also available for free

And another option is KAnnel a free sms gateway for all type - SMPP ,mobile

share|improve this answer

The best SMS API I've seen in Java is JSMPP. It is powerful, easy to use, and I used it myself for an enterprise-level application (sending over 20K SMS messages daily).

This API created to reduce the verbosity of the existing SMPP API. It's very simple and easy to use because it hides the complexity of the low level protocol communication such as automatically enquire link request-response.

I've tried some other APIs such as Ozeki, but most of them either is commercial or has limitation in its throughput (i.e can't send more than 3 SMS messages in a second, for example).

share|improve this answer

TextMarks gives you access to its shared shortcode to send and receive text messages from your app via their API. Messages come from/to 41411 (instead of e.g. a random phone# and unlike e-mail gateways you have the full 160 chars to work with).

You can also tell people to text in your keyword(s) to 41411 to invoke various functionality in your app. There is a JAVA API client along with several other popular languages and very comprehensive documentation and technical support.

The 14 day free trial can be easily extended for developers who are still testing it out and building their apps.

Check it out here: TextMarks API Info

share|improve this answer

You can you LOGICA SMPP Java API for sending and Recieving SMS in Java application. LOGICA SMPP is well proven api in telecom application. Logica API also provide you with signalling capicity on TCP/IP connection.

You can directly integrate with various telecom operator accross the world.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.