%@page import="com.forgon.directory.vo.LoginUserData"%>
<%@page import="com.forgon.directory.acegi.tools.AcegiHelper"%>
<%@page import="com.forgon.websocket.NoticeType"%>
<%@ page contentType="text/html; charset=UTF-8"%>
<%
//用于websocket实时刷新
LoginUserData loginUser = AcegiHelper.getLoginUser();
String moduleName = request.getParameter("module");
String taskGroup = request.getParameter("taskGroup");
String websocketName = request.getParameter("websocketName");
String ipHostAndContext = request.getServerName() + ":" + request.getServerPort();
String contextPath = request.getContextPath();
if(contextPath != null && !contextPath.trim().equals("")){
ipHostAndContext = ipHostAndContext + contextPath;
}
System.out.println(ipHostAndContext);
%>