sending bulk sms using springMVC - java

I am developing an application in wihch involvees sending sms to many mobiles using Spring MVC. Can anyone please help me in this regard. Please also tell me the if any hardware component required, for now i am using a SMS Gateway.

Here nothing to do with Spring MVC as server side you need to handle the load. Better have look SMSLib http://smslib.org/. SMSLib support bulk SMS handling and you can go with GSM Modem or SMS Gateway.

Related

Unified java api to integrate with multiple SMS gateways

I'm building a common messaging service for our distributed micro services solution to send SMS notifications for the users using Spring Boot, this service should be configurable with N number of SMS gateways providers (Nexmo, Twilio, Twizo, etc.) according to our customers, so any suggestions for unified java api to handle this case instead of hacking the code every time I have a new SMS gateway?
You can decouple your code with the SMS gateways by middleware such as message queue or JMS. You just push your SMS message to the MQ and then the SMS gateways act as comsumers to consume these messages.

Sending SMS via Java web applications

Have you seen how some companies send SMS in order to send access code etc? I am also in need of something like that. I have Java web application developed using JSP and Servlet. Through this application, I need to send SMS messages to some selected people.
I am open for free or paid APIs. But that API should support web based apps and should have the capability to send messages to Sri Lanka.
I went through lot of stuff like SMS Lib etc, but they are not built for web applications.
Any ideas?
You should see Simplewire Java SMS Software Development Kit
Sending and receiving SMS From Java using the Ozeki Java SMS SDK
You can have a look at OpenMarket Sms API. Its good and quite economical also.

How to send SMS using modem or gateway from java Web application?

I am new in java web application and I want to send SMS from my Java web application to mobile. How can i do this using mobile/modem or any other way? any easy java API?
i really appreciate ur help.
here is an api :
http://code.google.com/p/serial-comm/
i love this api over other is the reason that you dont have to worry about the native libraries and there path as this api automatically installs the desired native libraries to your system..
there are also other api/s like :
http://code.google.com/p/smslib/
i have recently developed an application using serial-comm which reads SMS from mobile/modem.
the other way around is to buy a sms gateway service like i use mvaayoo in that case you dont have to develop an application just use the api provided by the gateway vendor and that is just a http link to send SMS

how to send SMS to mobiles using JAVA

I want to send SMS to mobiles.Can any one help me how to send SMS to mobiles using JAVA. Is there any Free API?
Any ideas?
i have done this before by installing and using kannel. It can then be used with a java-client or a library like kannel java api.
This is not going to be a simple task, though. There probably are easier alternatives.
You need access to sms gateway.Providers use different protocols SOAP, rest.
There is no free working sms gateways as far is know.
Your question is very vague..
You can send SMS using SMS Gateway where they would provide you with the REST API calls to send SMS's to the numbers..

Send mail from my web application

I have a feature in my web app like I have to send mails from the server to many email ids (some kind of notification stuff)
my web application is implemented in struts2. Possibly I have to use javamail api i guess. I am completely new to this javamail and sending mail from server. what basic steps I need to do to setup a mail server in windows, contact the server from my java web app. What api i should I use ?
The web has very limited tutorials on javamail and they are damn complicated too.
Is there any other api other than javamail by which I can send mail from my java struts2 web app.
thanks
I suggest you use Mercury for your mail server. The javamail API is pretty straightforward. Just create a utility class to simplify the javamail API further.
for this use smtp in your jsp page...
for more refrence go to www.java2s.com

Categories

Resources