init
This commit is contained in:
@@ -0,0 +1,147 @@
|
||||
<%@ page language="java" contentType="text/html; charset=utf-8"%>
|
||||
<%@ page import="java.io.*"%>
|
||||
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
|
||||
<%
|
||||
response.setHeader("Pragma", "No-cache");
|
||||
response.setHeader("Cache-Control", "no-cache");
|
||||
response.setHeader("Expires", "0");
|
||||
%>
|
||||
<html>
|
||||
<head>
|
||||
<title></title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<jsp:include page="/jsp/common/include/css.jsp"/>
|
||||
<jsp:include page="/jsp/common/include/script.jsp"/>
|
||||
<script language="javascript" >
|
||||
var url_excel = '<c:url value="/common/noauth/excel/listGridToExcel.json" />';
|
||||
|
||||
function stopSession(serverName, processName, organName, localIpPort, remoteIpPort, uuid) {
|
||||
|
||||
if ( confirm( "* FEP 서버 : "+ serverName +"\n"+
|
||||
"* 업무구분 : "+ processName + "\n"+
|
||||
"* 대외기관 : "+ organName +"\n"+
|
||||
"* FEP IP:Port : "+ localIpPort + "\n"+
|
||||
"* 대외기관 IP:Port : " + remoteIpPort +"\n\n"+
|
||||
"해당 Socket 연결을 강제 종료 하시겠습니까?") != true ) {
|
||||
return;
|
||||
}
|
||||
var postData = new Array();
|
||||
postData.push({ name: "cmd" , value:"CONTROL"});
|
||||
postData.push({ name: "startStop" , value:"STOP_SOCKET_SESSION"});
|
||||
postData.push({ name: "uuid" , value:uuid});
|
||||
$.ajax({
|
||||
type : "POST",
|
||||
url:'<c:url value="/bap/adapter/socket/connStatus.json" />',
|
||||
data:postData,
|
||||
success:function(args){
|
||||
$("#grid").trigger("reloadGrid");
|
||||
},
|
||||
error:function(e){
|
||||
alert(e.responseText);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
$(document).ready(function() {
|
||||
$('#grid').jqGrid({
|
||||
datatype:"json",
|
||||
mtype: 'POST',
|
||||
url: '<c:url value="/bap/adapter/socket/connStatus.json" />',
|
||||
postData : { cmd : 'LIST' },
|
||||
colNames:['서버인스턴스명',
|
||||
'업무구분',
|
||||
'대외기관',
|
||||
'업무유형',
|
||||
'UUID',
|
||||
'어댑터그룹',
|
||||
'어댑터명',
|
||||
'Local IP:Port',
|
||||
'REMOTE IP:Port',
|
||||
'연결시각',
|
||||
'상태',
|
||||
'연결종료'
|
||||
],
|
||||
colModel:[
|
||||
{ name : 'serverName' , align:'center' , sortable : false },
|
||||
{ name : 'processName' , align:'left' },
|
||||
{ name : 'organName' , align:'left' },
|
||||
{ name : 'processType' , align:'center'},
|
||||
{ name : 'uuid' , align:'left' },
|
||||
{ name : 'adapterGroupName' , align:'left' },
|
||||
{ name : 'adapterName' , align:'left' },
|
||||
{ name : 'localIpPort' , align:'center'},
|
||||
{ name : 'remoteIpPort' , align:'center'},
|
||||
{ name : 'startTimeStamp' , align:'center'},
|
||||
{ name : 'status' , align:'center'},
|
||||
{ name : 'stop' , align:'center'}
|
||||
],
|
||||
autoheight: true,
|
||||
height: $("#container").height(),
|
||||
//height: "500",
|
||||
rowNum: 10000,
|
||||
jsonReader: {
|
||||
repeatitems:false
|
||||
},
|
||||
gridComplete: function() {
|
||||
var ids = $(this).getDataIDs();
|
||||
for(var i=0;i<ids.length;i++){
|
||||
var cl = ids[i];
|
||||
var rowData = $(this).getRowData(cl);
|
||||
var serverName = rowData['serverName'];
|
||||
var processName = rowData['processName'];
|
||||
var organName = rowData['organName'];
|
||||
var localIpPort = rowData['localIpPort'];
|
||||
var remoteIpPort = rowData['remoteIpPort'];
|
||||
var uuid = rowData['uuid'];
|
||||
var be = "<input style='height:22px;width:60px;' type='button' value='연결종료' onclick=\"stopSession('"+serverName+"','"+processName+"','"+organName+"','"+localIpPort+"','"+remoteIpPort+"','" +uuid +"');\" >";
|
||||
$(this).setRowData(ids[i],{stop:be});
|
||||
}
|
||||
},
|
||||
loadComplete:function (d) {
|
||||
var colModel = $(this).getGridParam("colModel");
|
||||
for(var i = 0 ; i< colModel.length; i++){
|
||||
$(this).setColProp(colModel[i].name, {sortable : false});
|
||||
}
|
||||
},
|
||||
});
|
||||
|
||||
resizeJqGridWidth('grid','content_middle','1000');
|
||||
|
||||
$("#btn_search").click(function() {
|
||||
$("#grid").trigger("reloadGrid");
|
||||
});
|
||||
|
||||
$("#btn_excel").click(function(event) {
|
||||
event.stopPropagation(); // Do not propagate the event.
|
||||
// Create an object that will manage to download the file.
|
||||
var merge = new Array();
|
||||
gridToExcelSubmit(url_excel, "LIST_GRID_TO_EXCEL", $("#grid"), $("#ajaxForm"), "연결된 세션정보", merge);
|
||||
return false;
|
||||
});
|
||||
|
||||
buttonControl();
|
||||
});
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="right_box">
|
||||
<div class="content_top">
|
||||
<ul class="path">
|
||||
<li><a href=#>${rmsMenuPath}</a></li>
|
||||
</ul>
|
||||
</div><!-- end content_top -->
|
||||
<div class="content_middle" id="content_middle">
|
||||
<div class="search_wrap">
|
||||
<img src="<c:url value="/img/btn_excel.png"/>" id="btn_excel" level="R"/>
|
||||
<img src="<c:url value="/img/btn_search.png"/>" alt="" id="btn_search" level="R" />
|
||||
</div>
|
||||
<div class="title">연결된 세션정보</div>
|
||||
<!-- grid -->
|
||||
<table id="grid"></table>
|
||||
<div id="pager"></div>
|
||||
<!-- end content_middle -->
|
||||
</div>
|
||||
<!-- end right_box -->
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user