| Author |
sending sms!
|
Mateen Dar
Ranch Hand
Joined: Jan 14, 2005
Posts: 55
|
|
|
hi my service number for my phone company is +92300000042 . how do i use this to send sms to a phone nummer
|
 |
Mateen Dar
Ranch Hand
Joined: Jan 14, 2005
Posts: 55
|
|
|
i have read about the wma form java. could u please give a small example. thanks
|
 |
Mateen Dar
Ranch Hand
Joined: Jan 14, 2005
Posts: 55
|
|
String addr = "sms://" + destination; MessageConnection sender = null; try { try { //connection creation sender = (MessageConnection) Connector.open(addr); //message creation TextMessage msg = (TextMessage) sender.newMessage(MessageConnection.TEXT_MESSAGE); //message is load msg.setPayloadText(message); //send it sender.send(msg); } finally { sender.close(); } } catch (Exception ex) { //handle exception } what format must the destination be in .. i have a service number a port and a phone number ...
|
 |
 |
|
|
subject: sending sms!
|
|
|