private static String getConnectionId(HttpServletRequest request) {
return request.getParameter(Protocol.CONNECTIONID_KEY);
}
protected static SocketManager creatSocketManager() {
SocketStore socketStore = new LocalSocketStore();
SocketManager socketManager = new SocketManager(socketStore);
return socketManager;
}