I have a simple j2me application that send sms to a certain cell no and then erase a certain record once it succeed. But sometimes it fails due to several reasons like network, battery, etc. Is there a way to validate if an sms message is successfully sent?

Thanks, czetsuya

link|improve this question

47% accept rate
feedback

2 Answers

if this line is successfully executed in this example then it must be sent else exception would be thrown

 smsconn.send(txtmessage)
link|improve this answer
Hi, thanks for the quick reply. Actually that's what I'm doing enclosing the method send() with try/catch block. But it seems it was not able to catch when the message sending page in a series of sms. It's because the program can send 5 sms in a row. – czetsuya Aug 31 '11 at 6:43
return boolean flag false from your method if exception s thrown you can not determine it later – Nirmal- thInk beYond Aug 31 '11 at 8:26
feedback

When using a try catch on the code that will send an sms, if an exception is thrown then an error occured, else the message is sent successfully, so if you didn't got an error than it is sent successfully

You can check it in the example below:

boolean sent = false
try {
   //send the message
   sent = true;
}
catch (Exception ex) {
   sent = false;
}
if (sent) {
    //your message has been sent
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.