嗨所以我试图从Gottox运行socket.io-java-client并简单地通过在eclips中打开项目(导入)并运行BasicExample.java我收到此错误
握手时出错 服务器返回HTTP响应代码:400为URL:http://localhost:3000/socket.io/1/
我尝试了很多解决方案,但无法运行它,我也在端口3000上运行nodejs服务器。
var app = require('express')();
var http = require('http').Server(app);
var io = require('socket.io')(http);
app.get('/', function(req, res){
res.sendfile('index.html');
});
io.on('connection', function(socket){
console.log('a user connected');
socket.on('message', function(msg){
io.emit('message', msg);
console.log('1111111111111111111');
});
});
http.listen(3000, function(){
console.log('listening on *:3000');
});
答案 0 :(得分:2)
在节点服务器上安装旧版本(< 1.0)的socket.io:
npm uninstall socket.io
npm install -g socket.io@0.9.17
我在项目中使用了Gottox库,它似乎不适用于socket.io版本1.0 +
A more recent Java socket.io library that works with version 1.0+