I wanna send SMS with JMS and Spring ,How can I do this ? Could you give me tutorial or sample ,may be?
2 Answers
Before starting JMS and Spring you should probably check if it would work out at all.
Unless you have a JMS-to-SMS gateway programming won't help at all. First you have to find a reseller or provider for your SMS service. Afterwards check what APIs they provide.
If they happen to provide a JMS gateway start reading the Spring JMS manual.
You would probably need some JMSs provider as well. Check MQ or some smaller implementation like ActiveMQ.

- 12,314
- 11
- 67
- 93
First of all read this. It is important that you first under stand the beans that are required and there roles.
If your searching for samples you need to find out what JMS technology your going to be using:
Tibco
, MQ
etc. If this a test your going to run locally then ActiveMQ
can get you up and running quickly:
-
Ok. I understood you, I try to ask this. I have to send lots of SMS and Mail to users bringing data from database,How can I configure this problem on Spring ?Can I use JMS ? – Cetin Imre Dec 10 '11 at 22:18
-
Cant really add more than @Udo Held has already said. JMS is primarily used for more than ona java application to exchange information via a jms provider. It will not send sms or mail for you so as mentioned a third party will be required – Michael W Dec 10 '11 at 23:02