mobile - Sending SMS using Java ME application -


I want to apply a Java ME which transmits an SMS received in a PC using Bluetooth. The PC can then direct the Java ME application via Bluetooth to send the reply message. Is the library available for this architecture or do I have to design myself? Is this attitude correct or better? As long as I want to use Bluetooth, I will not be dependent on cable.

Make it yourself, though you think that you do not want J. can do.

The J2ME can not access any old SMS which receives the handset, is sent only to a specific port on which the MIDlet is listening, to get all the other SMSes, I In the way I have described, make a Bluetooth serial / dial-up connection on their handsets.

Create a PC client which repeatedly calls AT + CGML commands (as mentioned in the AT command set document associated with the answer given above), to see if one When received SMS. Use AT + CGMR to read and parse the message text then use AT + CGMS to send a response. All this can be done on Bluetooth.

It is better to use a serial connection to send feedback because one income can not always be triggered to open on the basis of incoming Bluetooth data.

Hope it helps.


Comments