써먹는 웹개발
[Crownix Viewer] 서버가 켜져있는데 화면이 안뜨는 이유 본문
728x90
반응형
1. url 접속 시도
1
2
|
명령어 : curl 운영서버URL
curl: (28) Failed to connect to 운영서버URL port 443 after 130877 ms: Connection timed out
|
cs |
2. 원인 : https 연결이 안됨
3. 해결방법 : http로 접속
4-1. 소스 수정전
1
2
|
var viewer = new m2soft.crownix.Viewer('https://운영서버URL/ReportingServer/service', 'crownix-viewer');
viewer.openFile('https://운영서버URL/mrd/attachForm.mrd', '/rfn [https://운영서버URL/DataServer/rdagent.jsp] /rp [<c:out value="${rp}"/>]');
|
cs |
4-2. 소스 수정후
1
2
|
var viewer = new m2soft.crownix.Viewer('http://운영서버URL/ReportingServer/service', 'crownix-viewer');
viewer.openFile('http://운영서버URL/mrd/attachForm.mrd', '/rfn [http://운영서버URL/DataServer/rdagent.jsp] /rp [<c:out value="${rp}"/>]');
|
cs |
728x90
반응형
'Client > 기타 솔루션' 카테고리의 다른 글
[ERWin] Logical/Physical 이미지 다운로드 (0) | 2024.03.20 |
---|---|
[ERWin] 논리(Logical) 컬럼명을 물리(Physical) 컬럼의 Comment로 (0) | 2024.03.20 |
[SynapViewer] 문서뷰어서버 재기동 절차 (2) | 2023.10.23 |
[Directsend] 상태 코드(status code) (0) | 2023.09.20 |
[quill] 툴바 안보이게 하는 소스 (0) | 2023.09.18 |
Comments