I have a Node.js app that uses HTTP / REST (using Express.js), and a native Android application that communicates with this. This works fine.

I am now looking at writing a more real-time version, which can push messages to a native client. Unfortunately, it needs to be a native client, as there is some fairly complex work done with the data that simply will not be possible in a mobile browser for the forseable future (otherwise I would just wait for WebSockets support to appear in the Android browser).

So, my question is what are my options?

I know about the Android Cloud to Device Messaging framework, but this requires registration and a Google sign-in, and I would much prefer the server to be client agnostic.

Is there a reliable WebSocket client that I can use (ideally) to talk to a Node.js server running Socket.io? Or any other native method (using the NIO classes)?

link|improve this question
Doesn't a native android app have tcp support? Just talk to node over a net socket. – Raynos May 5 '11 at 12:01
feedback

1 Answer

See Java socket.io client

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.