• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Liutauras Vilda
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Devaka Cooray
  • Paul Clapham
Saloon Keepers:
  • Scott Selikoff
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
  • Frits Walraven
Bartenders:
  • Stephan van Hulst
  • Carey Brown

SMS interchange from J2EE appln.

 
Greenhorn
Posts: 21
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have a J2EE appln. I want to enable the application for SMS request/response. What are the options to implenment this solution?
Please help.
 
Ranch Hand
Posts: 4982
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You may consider to use:
1. JMS
2. JMS with MDB
3. Web Services over JMS

In addition, depends on the format of SMS, you may need to decode it and wrap the content as the format of JMS.

Nick
[ July 21, 2004: Message edited by: Nicholas Cheung ]
 
Rajat Nayer
Greenhorn
Posts: 21
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Nick, Thanks for the quick reply post.

Cud u pls guide me to a tutorial/document that describe these approaches and then go down to API/Code level for sample refernce implementations.

I am very new to the world of mobile computing, although i have been using a cell phone for last 6 months or so

Will appreciate a guide map to help me on in the learning curve.

Just one more point, I want to use something freely available/downloadable on the net.

Thnx
 
author
Posts: 11962
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Just sending "messages" to a JMS queue doesn't make them reach a mobile phone's SMS inbox... In order to integrate with a mobile operator's SMSC, you need to either
1) buy an SMS gateway product such as FirstHop Message Router and sign contracts with some mobile operators in order to connect to their SMSC's
2) pay for someone else to do the integration stuff with mobile operators and just use the proprietary API provided by the integrator (some alternatives include SimpleWire and MobileWay)
 
Lasse Koskela
author
Posts: 11962
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Oh, and I'd strongly suggest going with option 2).
It's a LOT easier that way.
 
Ranch Hand
Posts: 1312
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
More discussion or tutorial in this title

Topic: Can I send SMS from web using JMS?

http://forum.java.sun.com/profile.jsp?user=339847&showMore=true
 
Ranch Hand
Posts: 5093
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Lasse Koskela:
Oh, and I'd strongly suggest going with option 2).
It's a LOT easier that way.



Not to mention cheaper unless you expect a massive volume of messages
 
The only cure for that is hours of television radiation. And this tiny ad:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic