All Questions
6 questions
0
votes
0
answers
405
views
How do i send multiple arguments in android using socket.IO?
I want to emit a JSON object like this, want to receive Auth Token in response. Is there any way I can emit multiple arguments in android using socket.io (client)?
I can emit multiple arguments in js ...
1
vote
1
answer
45
views
Java socket.io client portage
I got the nodeJS simpliest server running :
var app = require('express')();
var http = require('http').Server(app);
var io = require('socket.io')(http);
app.get('/', function(req, res){
...
0
votes
1
answer
1k
views
My netty client program is not receiving any response from server
I have written a client-server programme using netty IO in which I am able to send a message to the server and server responds back but unfortunately, any of the listener methods in my Client Handler ...
1
vote
1
answer
1k
views
Socket.io java client get same message more than one time
I am using socket.io on my android chat application. In order to keep connection alive, I am connecting socket in a service which is started in main activity. And I check if socket is connected. If it ...
2
votes
1
answer
53
views
Error during the transfering of an ArrayList<Object> from server to client
I implemented a code that permit the communication between server and client. I sent from the server an ArrayList<Object> and the client recieves it.
The problem is when I try to print my list ...
2
votes
1
answer
3k
views
Java implementation for client Socket.io compatible with version 1.0
It is almost 1 week that I am wasting time trying to find a WORKING library that implements the client side of Socket.IO compatible with v. 1.0
Mentioning just the most relevant results...so far I ...