I am trying to make a J2ME application to SEND and RECEIVE text messages. I'm done with the sending part of it but I am not able to receive any message..

Below is what I tried in order to receive text message;

    try {
        MessageConnection conn = (MessageConnection) Connector.open("sms://:50001");
        conn.setMessageListener(new MessageListener() {
            public void notifyIncomingMessage(MessageConnection conn) {
                try {
                    Message msg;
                    msg = conn.receive();
                    if (msg instanceof TextMessage) {
                        TextMessage tmsg = (TextMessage) msg;
                        stringItem.setText("Msg: " + tmsg.getPayloadText());
                        System.out.println(tmsg.getPayloadText());
                    }
                    // else if(msg instanceof BinaryMessage) {
                    // .....
                    // } else {
                    // ......
                    // }
                } catch (IOException ex) {
                    ex.printStackTrace();
                } finally {
                    try {
                        conn.close();
                    } catch (IOException ex) {
                        ex.printStackTrace();
                    }
                }
            }
        });
    } catch (Exception e1) {
        System.out.println(e1);
    }

But this is not working...No errors are showing up either...what is that I am doing wrong?...Can we receive message using J2ME?

The code for sending a message: (UPDATED)

MessageConnection conn = (MessageConnection) Connector.open("sms://:50001");
TextMessage tmsg = (TextMessage) conn.newMessage(MessageConnection.TEXT_MESSAGE);
tmsg.setPayloadText(message);
tmsg.setAddress("sms://" + number);
conn.send();

I have both the send and receive functions in two different forms. What I did is to install and start the application in two different mobiles, send a message from one mobile to the other and receive in the other.

The message is sent and received successfully, but not in the application. The message goes to the inbox of the other mobile.

What can I do?

link|improve this question

67% accept rate
How are you sending the SMS? Are you sending it from another MIDlet to be received on the port number 50001? – funkybro Apr 12 '11 at 8:01
@funkybro: yes I am .... here i have updated the post with the logic of sending the message... – S.M.09 Apr 12 '11 at 8:26
I think this thread contains the solution: stackoverflow.com/questions/4932972/… – newcomer Jan 25 at 7:02
feedback

2 Answers

try 5000 port no.

some phone have this port as sms listener

link|improve this answer
feedback

Try replacing tmsg.setAddress("sms://" + number); with tmsg.setAddress("sms://" + number + ":50001");.

link|improve this answer
That(Message getting received) works in the emulator in netbeans but not when I have the application running on a real mobile and set on a receiving mode...What might be the reason – S.M.09 Apr 13 '11 at 16:39
feedback

Your Answer

 
or
required, but never shown

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