Help on K700i- OK/Send Command Problem...

Hi guys,

I need your help with SE K700i I developed a midlet that can send SMS.

It works well with other phones but in SE K700i when i execute the SEND Command it doesn't do anything and sometimes when I used the BACK command and returned to SEND Command it will send/response...

I tried a lot to solve this problem but I don't know if it's a bug or maybe the code is wrong...By the way this is some parts of the codes.

staticfinal Command sendMsgCommand =new Command("SEND",Command.OK,2);

publicvoid commandAction(Command c, Displayable d){

// TODO Auto-generated method stub

if(c==exitCommand){

notifyDestroyed();

started=false;

}elseif(c==sendMsgCommand){

new Thread(this).start();

}elseif(c==backCommand){

display.setCurrent(itemMenu);

}

Thanks in advance...

Regards,

Psyeu

[1564 byte] By [psyeua] at [2007-11-27 10:48:11]
# 1

Have you tested it on the devices or only on emulators as some times the emulators can mess up and it may work fine on the actual device.

-fluffy-a at 2007-7-28 22:25:03 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 2

Yes i have tested it on real K700i and also on other devices like nokia 6101, P910i the midlet works fine with that devices...

When I implemented alert for the OK command it seems no problem...and for SEND command to send message it works fine...

I think the problem is the defaulted OK command after selecting contacts in the local phone book when implemented like SEND command it didn't respond and also the SEND command is also affected- it didn't response sometimes.

psyeua at 2007-7-28 22:25:03 > top of Java-index,Java Mobility Forums,Java ME Technologies...