vote up 0 vote down star

Reading among the list of possibilities of the Java ME platform, its possible for a J2ME app running on a mobile to initiate a TCP Socket or HTTP connection with a server.
On similar lines, Is it possible to form a TCP socket connection between two mobile phones?

flag

how do you plan on communicating non-static IP addresses between phones so the initial connection can be established? – QuickRecipesOnSymbianOS Sep 3 at 20:20
@ QROS - I don't know really, and the matter isn't resolved yet. – Kevin Boyd Sep 3 at 20:50
1  
For initiating the connection you can use sms. I know one application (mobilerise.com) does it that way. When you want to connect you enter the phone number of the other person and it sends your connection information to the other side as an sms. Other application should be already running or at least registered for certains sms's using PushRegistry I believe. – Szere Dyeri Sep 9 at 21:23

2 Answers

vote up 2 vote down check

You can open a ServerSocketConnection and a SocketConnection on the other side. This allow two way direct communication between two mobile phones. You can look at this page for some more details. But I am not sure about the security requirements and what is allowed and what is not using these classes.

link|flag
vote up 0 vote down

Not if the server phone is running a J2ME app; J2ME does not support socket server connections. Also beware that many mobile operators do not allow socket server connections to be made on their networks.

link|flag
JSR118 specifies an Interface ServerSocketConnection, you could find more info at java.sun.com/javame/reference/apis/jsr118 – Kevin Boyd Aug 30 at 16:25

Your Answer

Get an OpenID
or

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