12345678910111213141516171819202122232425262728293031323334353637 |
- <%@ page language="java" contentType="text/html; charset=euc-kr"%>
- <%
- // JSESSIONID 값을 가져와서 Launcher 띄울 때 넘겨준다.(서버와 컨테이너 고정용)
- String sessionVal = session.getId();
- %>
- <!DOCTYPE html>
- <HTML>
- <HEAD>
- <meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">
- <meta http-equiv="X-UA-Compatible" content="requiresActiveX=true">
- <TITLE>HIMED2 Login Before Page</TITLE>
- <SCRIPT LANGUAGE="javascript">
- function fn_load() {
- var msg = "<%=sessionVal%>";
- window.TOBEHTML.FireUserNotify("kuxpsess|" + msg);
- }
- if (!window.TOBEHTML) {
- window.TOBEHTML = {};
- }
- window.TOBEHTML.FireUserNotify = function(userdata) {
- var parent = window.TOBEWEBBROWSER;
-
- if (parent) {
- parent.$fire_onusernotify(parent, userdata);
- } else {
- window.document.title = userdata;
- }
- }
- </SCRIPT>
- </HEAD>
- <BODY onload="fn_load()">
- </BODY>
- </HTML>
|