Using RXTX library im doing serial communication.I want to do it in swing based application
Write an AT commands to read received SMS in GSM modem
I need to send the messages to mobiles from java application
Is there any Java API which send/receive SMS using RxTx libraries.
There is a Java API called smslib.
Related
I have developed a JAVA application and I need it to send reports/notifications through SMS. How can I do it using a GSM dongle?
You need to make use of AT commands for sending SMS from GSM Modem. This article explains in brief about AT commands.
Sample command might be something like this:
AT
OK
AT+CMGF=1
OK
AT+CMGW="+12345678922"
> A simple demo of SMS text messaging.
+CMGW: 1
OK
AT+CMSS=1
+CMSS: 20
OK
Is there any way to send SMS from website to mobile without using SMS gateway?
Any other alternative ways...
Any help/suggestions really appreciable.
You can send SMS using devices like a Phone or GSM Modem directly connected to computer via USB.
If it's an android phone: You may try PDANet (a tethering program) will let you send and receive SMS via a little desktop client when you are connected to your phone via USB or bluetooth.
If it's GSM Modem you can try This
I want to use SMSLib in a Java application in order to send an SMS to my iPhone without using an external gateway, So, i want to deal with the phone as the gateway and make it receive the message, node that I'm considering the GSM of the mobile as the modem.
You can't access any of iOS SMS settings nor the messages. Java is also not support natively on iOS. It is also not possible to do any low level GSM calls like SMS.
If you want to send a SMS in iOS you will need to use the MFMessageComposeViewController
I'm developing an Android app that will monitor the height of the flood. The data that will be used are from a SMS message that will be received by a USB modem. The data from the SMS will then be uploaded to a internet Server or FTP. This data will be downloaded by an Android App.
My Question is how to access this SMS from the USB modem. I'm much familiar with C, and PHP and other Web related language. Any suggestion on what language to use just to Access the SMS? thanks. :D
I'm not sure a that using a USB modem to receive sms is going to be your best option. Seeing that you are familiar with php and other web languages have you considered trying out the Twilio SMS API?
I want to implement Java code to send and receive sms through serial comport using gsm modem. Before implementing this I need Java communication api for this. If so please let me know from where I have to download for Windows Xp?
Here is the download link for Java Communication API:
http://www.oracle.com/technetwork/java/index-jsp-141752.html
Don't know if it helps but on one of my previous project we were using http://www.kannel.org/ to manage sms.
Don't remember exactly how it worked but i think we can set a kannel server that would receive REST requests to send sms for exemple.
You can download the Java communication api from http://smslib.org/download/. There are some other useful links on that page also like the RXTX library also.