0

I'm developing an application in javaME and I'm trying to receive incoming sms but there is a way to catch them that is working only with ports and there must be two applications but I want to send sms in a phone without using javame application to other phone that hasn't javame application.

I want to receive incoming sms without using port. How can I do this, is it possible?

tshepang
  • 12,111
  • 21
  • 91
  • 136
mertaydin
  • 2,184
  • 5
  • 19
  • 26

1 Answers1

2

In Java ME, You can't read SMS from inbox. There is a way to read SMS from Inbox, but it is for symbian phone like S60 series ( Nokia E72,E5 ) etc only.

In S60 series phone using API Bridge jar file, you can achieve your requirement. Please check out http://www.developer.nokia.com/Resources/Tools_and_downloads/Other/APIBridge/ page for more details.

Lucifer
  • 29,392
  • 25
  • 90
  • 143
  • Thanks for your answer. But I wonder something. If I use this API Bridge jar file for S60 can I install and use the application to all over java phones? For example, application will work on nokia s60 devices but will it work on samsung star? In fact, how can implement this function in java telephones like Samsung star or etc. – mertaydin Nov 21 '12 at 14:58
  • sorry, you can use if only if and if the ApiBridge.jar is there, because as the name Bridge says, it is bridge between your Java ME code and Symbian Operating system. – Lucifer Nov 21 '12 at 15:01
  • And sorry, I have a problem. I rode the articles about apibridges on developer.nokia but I didn't find anything about reading inbox? – mertaydin Nov 22 '12 at 08:48
  • No Problem, please check my [another answer](http://stackoverflow.com/a/10645996/996493) – Lucifer Nov 22 '12 at 11:24
  • I checked it. By the way, i wrote a program to try this apibridge but i couldn't get calllog. If you want i can send to my source code, can you check it? – mertaydin Nov 22 '12 at 12:15
  • 1
    do one thing, ask it in new question, so others can also see it and write answers if they know about it – Lucifer Nov 22 '12 at 12:48