• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Java & SMS

 
Greenhorn
Posts: 18
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm looking for a good resource to learn how to create SMS messages using Java. My search in the Net yields very little; some tutorials I found use Visual Basic. I'd appreciate it if anybody can help me on this.
Anthony
 
Greenhorn
Posts: 27
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i have developed one solutions using C# it is base on ATI commands.
but i have looked on solutions on net
utl is
http://sourceforge.net/projects/kvanttisms
i hope this might helps
 
Ranch Hand
Posts: 164
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Sending A Wireless Text-Message With Java
http://www.wirelessdevnet.com/channels/java/features/simplewire/
 
Ranch Hand
Posts: 442
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
will you be using a GCOM modem or SMPP ?
the modem route is pretty simple but really slow, well as slow as a phone is.
the SMPP route will also be simple cos there are many products that handle the complexity for you, try SMS-JDK.
a few lines of code later you can send 100 messages per second, so its claimed
 
Author & Gold Digger
Posts: 7617
6
IntelliJ IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
jSMSEngine also provides a solution to the problem at hand.
http://www.imail.gr/jsmsengine/index.php
 
author
Posts: 1436
6
Python TypeScript Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If you can wait for the reference implementation to come out, JSR 120 "Wireless Messaging API" looks promising.
 
Ranch Hand
Posts: 91
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Depending on the phone you want to send from there are also proprietary APIs available for J2ME apps.
e.g. Siemens have an
SMS.send(String phoneNumber, String message)method - or something like that. Nokia also provide a similar method.
 
Ranch Hand
Posts: 1561
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
www.simplewire.com
you can download a SDK to send sms messages using java.
 
Anthony Castillon
Greenhorn
Posts: 18
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Folks,
Thanx for the replies. I've been looking at the leads you've provided. Again, thanx!
Anthony
 
reply
    Bookmark Topic Watch Topic
  • New Topic