我使用mrniko/netty-socketio (Java)来启动一个websocket服务器,如下所示:
config = new Configuration();
config.setHostname("localhost");
config.setPort(8001);
server = new SocketIOServer(config);
server.addListeners(serviceClass);
server.start();然后我使用(推荐的) socketio/socket.io-client (JavaScript)尝试连接到websocket服务器,如下所示(全部在同一服务器上):
var socket = io("http://localhost:8001");连接在服务器上被“阻止”,服务器打印:
8239 [nioEventLoopGroup-5-1] WARN com.corundumstudio.socketio.handler.AuthorizeHandler - Blocked wrong request! url: /socket.io/, ip: /127.0.0.1:48915
28889 [nioEventLoopGroup-5-2] WARN com.corundumstudio.socketio.handler.AuthorizeHandler - Blocked wrong request! url: /socket.io/, ip: /127.0.0.1:48916当客户端继续重试连接时,这会无休止地发生。
我似乎无法让服务器接受连接。我试过了:
var socket = io("ws://localhost:8001");但这给出了同样的结果。对于这两种情况,我也尝试过在URL后面加上一个尾随斜杠--没有什么不同。我还尝试了在服务器和客户端使用"localhost“或"127.0.0.1”的所有组合,等等。
localhost:8000上的http服务器提供JavaScript页面本身。这似乎不是一个跨站点的问题,因为这会在浏览器中产生完全不同的错误。
有没有人知道哪里出了问题,以及如何修复?
发布于 2016-03-09 01:52:03
在我的例子中,网络监控每10秒访问一次该端口。我暂时将log4j.properties更改为错误级别日志记录,但希望为网络提供一个不会导致过多警告日志记录的路径。我不确定这是否是最好的方法,但这就是我最终要做的。
config.setAllowCustomRequests(true);通过允许自定义请求,在Authorizehandler中绕过了显示警告的代码片段。
我创建了一个自定义管道,它允许我用自定义管道切换wrongUrlHandler,以允许使用安全路径进行监控。
public class CustomSocketIOChannelInitializer extends SocketIOChannelInitializer {
CustomWrongUrlHandler customWrongUrlHandler = null;
public CustomSocketIOChannelInitializer(Configuration configuration) {
customWrongUrlHandler = new CustomWrongUrlHandler(configuration);
}
protected void initChannel(Channel ch) throws Exception {
ChannelPipeline pipeline = ch.pipeline();
addSslHandler(pipeline);
addSocketioHandlers(pipeline);
// Replace wrong url handler with our custom one to allow network monitoring without logging warnings.
pipeline.replace(SocketIOChannelInitializer.WRONG_URL_HANDLER, "CUSTOM_WRONG_URL_HANDLER", customWrongUrlHandler);
}这是我的自定义处理程序:
@Sharable
public class CustomWrongUrlHandler extends ChannelInboundHandlerAdapter {
private final Logger log = LoggerFactory.getLogger(getClass());
Configuration configuration = null;
/**
* @param configuration
*/
public CustomWrongUrlHandler(Configuration configuration) {
this.configuration = configuration;
}
@Override
public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception {
if (msg instanceof FullHttpRequest) {
FullHttpRequest req = (FullHttpRequest) msg;
Channel channel = ctx.channel();
QueryStringDecoder queryDecoder = new QueryStringDecoder(req.getUri());
// Don't log when port is pinged for monitoring. Must use context that starts with /ping.
if (configuration.isAllowCustomRequests() && queryDecoder.path().startsWith("/ping")) {
HttpResponse res = new DefaultHttpResponse(HTTP_1_1, HttpResponseStatus.BAD_REQUEST);
channel.writeAndFlush(res).addListener(ChannelFutureListener.CLOSE);
req.release();
//log.info("Blocked wrong request! url: {}, ip: {}", queryDecoder.path(), channel.remoteAddress());
return;
}
// This is the last channel handler in the pipe so if it is not ping then log warning.
HttpResponse res = new DefaultHttpResponse(HTTP_1_1, HttpResponseStatus.BAD_REQUEST);
ChannelFuture f = channel.writeAndFlush(res);
f.addListener(ChannelFutureListener.CLOSE);
req.release();
log.warn("Blocked wrong socket.io-context request! url: {}, params: {}, ip: {}", channel.remoteAddress() + " " + queryDecoder.path(), queryDecoder.parameters());
}
}
}
CustomSocketIOChannelInitializer customSocketIOChannelInitializer = new CustomSocketIOChannelInitializer(config);
server.setPipelineFactory(customSocketIOChannelInitializer);https://stackoverflow.com/questions/33315676
复制相似问题