我在 haproxy 后面有两个 socketio 服务器,出于粘性的目的,我将 cookie 插入到 haproxy,以识别来自哪个服务器的响应。现在的问题是,当我使用下面的代码这样做时,我的连接没有升级到'websocket',我尝试调试问题并意识到'transport'事件仅在engineio套接字类的'setTransport'方法中发出,而不是在'createTransport'方法中,(简而言之,在探测'transport'事件期间没有发出,导致websocket握手请求在不同的socketio服务器上进行,而不是客户端已经使用xhrpolling连接的地方)。
我想知道是否还有其他解决此问题的方法,或者问题是真实的。请帮忙。提前致谢。
链接到 -我尝试过的代码问题
final StringBuffer buf = new StringBuffer();
socket.io().on(Manager.EVENT_TRANSPORT, new Emitter.Listener() {
@Override
public void call(Object... args) {
final Transport transport = (Transport)args[0];
if(transport.name.equalsIgnoreCase(WebSocket.NAME)){
transport.once(Transport.EVENT_REQUEST_HEADERS, new Emitter.Listener() {
@Override
public void call(Object... args) {
@SuppressWarnings("unchecked")
Map<String, String> headers = (Map<String, String>)args[0];
if(buf.length()!=0){
headers.put("Cookie", buf.toString());
}
}
});
}
if(transport.name.equalsIgnoreCase(PollingXHR.NAME)){
transport.once(Transport.EVENT_RESPONSE_HEADERS,
new Emitter.Listener() {
@Override
public void call(Object... args) {
@SuppressWarnings("unchecked")
Map<String, String> headers = (Map<String, String>) args[0];
String cookie = null;
if (headers.containsKey("Set-Cookie") && headers.get("Set-Cookie").contains("SERVERID")) {
cookie = headers.get("Set-Cookie").split(";")[0];
}
if (cookie != null) {
final String stickyCookie = cookie;
if(buf.length()==0){
buf.append(stickyCookie);
}
transport.on(
Transport.EVENT_REQUEST_HEADERS,
new Emitter.Listener() {
@Override
public void call(Object... args) {
@SuppressWarnings("unchecked")
Map<String, String> headers = (Map<String, String>) args[0];
// set header
headers.put("Cookie", stickyCookie);
}
});
}
}
});
}
}
});