Sms Sending problem
I am beginner in J2ME mobile application. I want to develop a [b]sms[/b] sending application for all Mobile Phones.[b]I have used the code is given bellow:[/b]
[code]
try {
String addr = "sms://" + phno.getString();
MessageConnection sender = (MessageConnection) Connector.open(addr);
TextMessage msg = (TextMessage) sender.newMessage(MessageConnection.TEXT_MESSAGE);
msg.setPayloadText("Hi, How are u ?");
sender.send(msg);
sender.close();
Alert sending = new Alert("Thanks","Message sent...", null, AlertType.INFO);
sending.setTimeout(Alert.FOREVER);
display.setCurrent(sending);
} catch (Exception ex) {}
/code]
It is working fine in NOKIA phones like: 7610 , 3250, e61
But is not working in,Sony Ericsson, Motorwala, LG Mobile Phones. Giving a Security Exceptions, Please Help me...

