본문 바로가기

develop/etc6

윈도우에서 긴 파일명 삭제 1. cmd 실행2. 폴더를 생성 ->폴더를 하나 생성 ex) c:\tempfolder ->삭제할 파일이 있는 폴더가 c:\ecripse 라고 한다면 -> 커맨드 창에 robocopy c:\tempfolder c:\ecripse /mir 입력! 출처: https://gocoder.tistory.com/21 [고코더 IT Express] 2018. 12. 20.
프로젝트 용어 관련 1. 기간계(Legacy, Existing) 1) 정의 : 고객이 사용하던 기존 시스템(새로운 시스템 도입 기준시점) 2. 계정계 1) 정의 : 금융권 영업점에서 실시간으로 고객의 거래를 처리하기 위한 업무 정보. 2) 사용 예 : 고객의 통장 정보(계좌 번호, 입ㆍ출금, 이체, 펀드, 주식 등) 3. 정보계 1) 정의 : 거래의 데이터를 관리하고, 그 데이터의 통계 및 분석하는 시스템. 2) 특징 : 저장된 데이터를 바탕으로 앞으로의 예측, 결산, 분석 등의 업무를 처리. 정보계에서 데이터로의 접근성에 대한 속도가 중요. 4. 대외계 1) 정의 : 각 금융기관의 대내외 망을 연결하는 시스템 2) 사용 예 : 전자금융, 사이버 증권, 기업 뱅킹, CD공동망, 신용 정보 2016. 4. 19.
WebSquere 설정 및 기본 스크립트 1. DATA COLLECTION 생성 - MAP - LIST 2. 서브미션 생성 후 서브미션 실행var submission = $w.getSubmission("retrieveMmnyInsrnccntrctStatsList");submission.action = "/" + CommonUtil.getContextName() + "/dmi/si/ext/retrieveMmnyInsrnccntrctStatsList.do";$w.executeSubmission("retrieveMmnyInsrnccntrctStatsList"); 3. 서브미션 콜백scwin.retrieveMmnyInsrnccntrctStatsList_submitdone = function(e) {fn_error_msg_proc(); // 오류 메시지.. 2016. 3. 25.
ssl keystore SSL, tomcat and self signed certificatesI have been through the process of getting an application to work via https before but I have always muddled through and never documented exactly what I have done. I must also admit that I never quite understood exactly what I had done and why. One problem is that I can not find one place that covers everything you need in one place. Now I think I am prett.. 2015. 2. 12.
Configuring SSL for Tomcat 7 on Windows There are dozens of guides for getting SSL working on Tomcat, but I never find one that quite fits the bill, so here’s my super-short guide to configuring Tomcat 7 (7.0.37) on Windows to serve SSL-encrypted requests for testing purposes only.1. Install & Setup OpenSSLYou need OpenSSL to generate a certificate and a server key. You can download a binary release of OpenSSL from here: http://slprow.. 2015. 2. 12.
openSSL 을 이용한 zeus webserver 설정 참고사이트 : http://blog.naver.com/PostView.nhn?blogId=satang50&logNo=127332595서버인증서 SSL구축은 첨부파일 행정전자서명_SSL_구축가이드Ver3_201006.pdf 참조 I. 유닉스 1. 인증기관 생성 다음 두가지 중에서 한가지 선택하여 실행(1 또는 2 둘중에서.)1) CA -newca 2) webtob/ssl 디렉토리에서 다음 순서되로 실행 mkdir demoCA mkdir demoCA/private echo '01' > demoCA/serial touch demoCA/index.txt mkdir demoCA/newcerts openssl req -config wbssl.cnf -new -x509 -keyout demoCA/private/cak.. 2015. 2. 11.