sso 테스트 코드 적용
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
<%@ page language="java" contentType="text/html; charset=EUC-KR"
|
||||
pageEncoding="EUC-KR"%>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
|
||||
<%
|
||||
String user_id = (String)session.getAttribute("SSO_ID");
|
||||
String app_id = (String)session.getAttribute("APP_ID");
|
||||
String ext_info = (String)session.getAttribute("EXT_INFO");
|
||||
String retCode = (String)session.getAttribute("RET_CODE");
|
||||
|
||||
%>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">
|
||||
<title>Insert title here</title>
|
||||
</head>
|
||||
<body>
|
||||
<h4>Single Sign On [<%=user_id %>]</h4>
|
||||
<font size=2>
|
||||
<b>[ 업무시스템 - (SAMPLE_APP)]</b>
|
||||
</font>
|
||||
|
||||
<table border=0 width=700 cellpadding=4 cellspacing=1 style="border: solid 1px;">
|
||||
<tr>
|
||||
<td width=200 bgcolor=#C3C3C3><font size=2>* 사용자ID</font></td>
|
||||
<td><font size=2><%=user_id%></font></td>
|
||||
</tr>
|
||||
|
||||
|
||||
<tr>
|
||||
<td width=200 bgcolor=#C3C3C3><font size=2>* SERVICE_NAME</font></td>
|
||||
<td><font size=2><%=app_id%></font></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td width=200 bgcolor=#C3C3C3><font size=2>* 확장정보</font></td>
|
||||
<td><font size=2><%=ext_info%></font></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td width=200 bgcolor=#C3C3C3><font size=2>* 인증토큰 상태</font></td>
|
||||
<td><font size=2>retCode = [<%=retCode%>] (1000:누락, 1001:시간, 1002:비정상)</font></td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
<hr width=700 align=left>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user