• 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

jSMSEngine to send sms doesn't work in webapplication why?

 
Ranch Hand
Posts: 79
Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hii frnds i have used jsmsengine to send sms.I have copied all javax.properties n comm jar n win32.dll in appropriate folders when i create an object of this class in same file i.e SendMessage.java it send sms but I want to fetch mobile number from database and send sms to that mobile no.
Actually its a website , i used apache tomcat for that , but when i click on link show in my site which fetches record correctly then i used fetched mobile no to send sms like this first created class

SendMessage s=new SendMessage() ;
s.sendSms("9999999999","Hell0"); //(Mob no,msg) n sendSms is a method in that class to send sms

but this doesnt send but when i run that SendMessage file code separately by creating main method in that it works why?

and in last in that it has code System.exit(0) i think which shutting my apache tomcat so i commented that please need help
 
Sheriff
Posts: 67746
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Ganesh Pat wrote:I have copied all javax.properties n comm jar n win32.dll


To be honest, you've used so many needless abbreviations that I have no idea what you are saying here.

Please use real words when posting to the forums. Abbreviations such as "n" in place of "in" only serve to make your posts more difficult to read and less likely to generate useful responses.

Please click this link ⇒ UseRealWords for more information.
 
Ganesh Pat
Ranch Hand
Posts: 79
Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
@ Marshal ya sure
 
Marshal
Posts: 28193
95
Eclipse IDE Firefox Browser MySQL Database
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If you're using the ancient Sun version of comm.jar to communicate with your server's serial port, then quite likely (contrary to what I think you said) you put the components into the wrong place. Or perhaps your instance of Tomcat isn't authorized to access the serial port. Or perhaps any one of numerous possible error situations could have arisen.

You didn't say anything about looking in the logs for error messages. I would suggest you start by doing that.
 
Arthur, where are your pants? Check under this tiny ad.
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic