netty-socketio-demo
netty-socketio-demo copied to clipboard
netty-socketio demo
Hey guys, I am trying to use your library to do a server to server communication, and I am having some trouble connecting `spring-boot-starter-websocket` client. I get a failure specially...
thanks your amazing socket io framework.i check the sample code on **BinaryEventLauncher**.it's just a simple image file upload.Is there any sample code on big file upload ? or integrate with...
I have hosted it in apache, it works fine in chrome,firefox and IE(8,10).But client can not connect in IE9; and client can connect in IE6, IE7, when sending a message...
first of all, I am not good at English, please let me konw if you don't know what i say. I modifed the example of BinaryEventLauncher as below, just to...
var chat1Socket = io.connect('http://localhost:9092/chat1'); //yes var chat1Socket = io.connect('http://192.168.1.105:9092/chat1'); //error How to solve this CORS problem?
``` server.addJsonObjectListener(ChatObject.class, new DataListener() { @Override public void onData(SocketIOClient client, ChatObject data, AckRequest ackRequest) { String roomName=data.getRoomName(); if(!client.getAllRooms().contains(roomName)){ client.joinRoom(roomName); } log.debug("roomName is "+roomName+" message is "+data.getMessage()); server.getRoomOperations(roomName+"/"+roomName).sendJsonObject(data); //server.getBroadcastOperations().sendJsonObject(data); } });...
can you add example for multiroom chat?
Try typing ``` alert("yo"); ```
It seems missing link to repo (server pom.xml) ``` java Failed to execute goal on project demo: Could not resolve dependencies for project demo:demo:war:1.0-SNAPSHOT: Could not find artifact com.corundumstudio.socketio:netty-socketio:jar:1.0.0 in...
I want to store client to redis, is it feasible?