I need a way to send messages between 2 android devices, 1 a phone and 1 a tablet. I'm using Java to create the app. I'm looking at servers but I can't figure out where to start. Thanks for any help :-)

P.s. Both devices would be using the same wifi connection so could I use a port to send messages

link|improve this question
Something like PubNub may be the easiest thing. – jeffamaphone Nov 20 '11 at 21:13
feedback

2 Answers

I think you can try sockets to send\receive messages: http://developer.android.com/reference/java/net/ServerSocket.html

http://developer.android.com/reference/java/net/Socket.html

Try to searh "android socket" and you can find some information even on the stackoverflow.

link|improve this answer
feedback

Beside the obvious solution from @dilix you could use a library like JGroups which provides automatic discovery of other devices.

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.