해당 프로그램 실행과 resin 과 apache 로그에서 확인 한 로그는 아래와 같습니다
1. /usr/local/resin-3.0.26/log/stdout.log 에는 log가 생성되지 않습니다 2. /usr/local/apache/logs/sysgate-error_log 에 생성된 log는 없습니다 3. /usr/local/apache/logs/sysGate-access_log 에 생성된 log 는
165.225.229.23 - - [29/Jul/2021:16:00:04 +0900] "GET /intra/newtop.php HTTP/1.1" 200 23326 165.225.229.23 - - [29/Jul/2021:16:00:04 +0900] "GET /intra/css/commstyle.css HTTP/1.1" 304 - 165.225.229.23 - - [29/Jul/2021:16:00:04 +0900] "GET /intra/Scripts/AC_RunActiveContent.js HTTP/1.1" 304 - 165.225.229.23 - - [29/Jul/2021:16:00:04 +0900] "GET /intra/js/commscript.js HTTP/1.1" 304 - 165.225.229.23 - - [29/Jul/2021:16:00:04 +0900] "GET /intra/images/newtopmenu/btn_main_sitemap.png HTTP/1.1" 304 - 165.225.229.23 - - [29/Jul/2021:16:00:04 +0900] "GET /intra/btn_work_report.png HTTP/1.1" 304 - 165.225.229.23 - - [29/Jul/2021:16:00:04 +0900] "GET /intra/images/newtopmenu/btn_logout.gif HTTP/1.1" 304 - 165.225.229.23 - - [29/Jul/2021:16:00:04 +0900] "GET /intra/images/icon/pe.png HTTP/1.1" 304 - 165.225.229.23 - - [29/Jul/2021:16:00:04 +0900] "GET /intra/images/newtopmenu/btn_psearch.png HTTP/1.1" 304 - 165.225.229.23 - - [29/Jul/2021:16:00:04 +0900] "GET /intra/images/new_intra/sub_bar1.png HTTP/1.1" 304 - 165.225.229.23 - - [29/Jul/2021:16:00:04 +0900] "GET /intra/js/jquery-migrate-1.2.1.min.js HTTP/1.1" 304 - 165.225.229.23 - - [29/Jul/2021:16:00:04 +0900] "GET /intra/js/jquery-1.11.2.min.js HTTP/1.1" 304 - 165.225.229.23 - - [29/Jul/2021:16:00:04 +0900] "GET /intra/images/new_intra/menu_bg.jpg HTTP/1.1" 304 - 165.225.229.23 - - [29/Jul/2021:16:00:04 +0900] "GET /intra/images/new_intra/sub_bar2.png HTTP/1.1" 304 - 165.225.229.23 - - [29/Jul/2021:16:00:04 +0900] "GET /jquery-1.8/jquery-1.4.2.js HTTP/1.1" 304 - 207.46.13.99 - - [29/Jul/2021:16:00:05 +0900] "GET /sys/qna/viewbody.html?code=board&page=714&number=117584&keyfield=&key= HTTP/1.1" 200 1487 114.119.155.64 - - [29/Jul/2021:16:00:06 +0900] "GET /home/index.php?module=Board&action=SiteBoard&sMode=VIEW_FORM&iBrdNo=2&iBrdContNo=37&sBrdContRe=0&sSearchField&sSearchValue&CurrentPage=1 HTTP/1.1" 200 10807 207.46.13.166 - - [29/Jul/2021:16:00:06 +0900] "GET /sys/qna/viewbody.html?code=board&page=708&number=116445&keyfield=&key= HTTP/1.1" 200 1487 4. 호출하는 프로그램 -> 프로그램에서 관련된 소스 일부내용 입니다 http://sysgate.co.kr:8081/jsp/cust/visit/cvcvcfq02.jsp?listpage=1&cust_comp_id=&cust_comp_nm=&chrg_dept_cd=&chrg_dept_nm=&visit_dept=&visit_dept_nm=&bchrg_chif_id=&bchrg_chif_nm=&key_word=&draf_dt=&draf_dt2=&id=cjb1609 String sCustCompNm = ""; // 고객사명 if(request.getParameter("cust_comp_nm") != null) { sCustCompNm = request.getParameter("cust_comp_nm"); }
<input type="hidden" name="cust_comp_nm" value="<%=sCustCompNm%>"> 5. 호출되는 프로그램 -> 프로그램에서 관련된 소스 일부내용 입니다 http://sysgate.co.kr/cust/approval/cvcvcfq01.php?cust_id=cvcvcfq01.cust_comp_id&cust_nm=cvcvcfq01.cust_comp_nm <tr> <td align=center valign=middle> <!-------------------------------- 고객사 검색 //--------------------------------> <form name="cust_search" method=post onsubmit='return custSelect()'> <B>고객사 검색</B> <input type="text" name="cust_name" class="fldles" STYLE="ime-mode:active"> <input type="image" src="http://121.190.159.102:8081/images/cust/button/find.gif" border=0 align="absmiddle" onClick="custSelect()"> <input type=hidden name='cust_id' value="<?=$cust_id?>"> <input type=hidden name='cust_nm' value="<?=$cust_nm?>"> </form> </td> </tr> <tr> <td> <!------------------------------------------------------ 선택된 고객사명 //-----------------------------------------------------> <iframe name="DeptNameFrame" src="cvcvcfq04.html" align="left" frameborder="0" scrolling="no" width="374" height="38" marginwidth="0" marginheight="0"> </iframe> </td> </tr> 6. JAVA 버전 : 1.4.2 입니다
|