운영환경 질의응답
xFrame5 운영 환경과 관련된 질의응답 정보를 제공합니다.
질의응답 목록
질의응답 내용
xadmin은 xFrame5 솔루션에서 제공하는 UI 운영 관리 웹 어플리케이션입니다.
xFrame5 솔루션에서 사용하는 특별한 확장자에 대한 MimeType은 아래와 예와 같습니다.
webtob 기준 설정 예시
- lst MimeType = “text/plain”, SvrType = HTML
- xstl MimeType = “text/plain”, SvrType = HTML
- pic MimeType = “text/plain”, SvrType = HTML
TOMCAT 기준 설정 예시
<mime-mapping> <extension>xstl</extension> <mime-type>text/plain</mime-type> </mime-mapping> <mime-mapping> <extension>lst</extension> <mime-type>text/plain</mime-type> </mime-mapping> <mime-mapping> <extension>pic</extension> <mime-type>text/plain</mime-type> </mime-mapping>
JEUS 어드민 화면에서 해당 서버선택 한 후 webtob connector 설정에서 postdata read timeout 시간을 늘려서 확인합니다.
JEUS postdata-read-timeout 설정 정보
- 파일: WEBMain.xml
- XML: <jeus-system><web-container><context-group><webserver-connection><webtob-listener><postdata-read-timeout>
- 의미: postdata read timeout 설정은 웹서버나 Web 클라이언트으로부터 보내진 post-data를 읽어 들일 때 기다릴 수 있는 최대 시간 값이다.
- 단위: millisecond value
- 기본값: 30000
webtob 설정 정보
- 클라이언트의 요청시 HTTP 프로토콜을 통해 서버가 제공할 수 있는 Request Body 크기를 바이트 단위로 정의하는 것으로,
- 0의 값은 크기에 제한이 없음을 의미한다.
- default 설정은 0 bytes 이다.
maxPostSize 파라미터 및 maxParameterCount 파라미터 값을 0으로 설정해서 확인합니다.
maxPostSize 설정 정보
- The maximum size in bytes of the POST which will be handled by the container FORM URL parameter parsing.
- The limit can be disabled by setting this attribute to a value less than or equal to 0.
- If not specified, this attribute is set to 2097152 (2 megabytes).)
maxParameterCount 설정 정보
- The maximum number of parameter and value pairs (GET plus POST) which will be automatically parsed by the container.
- Parameter and value pairs beyond this limit will be ignored.
- A value of less than 0 means no limit. If not specified, a default of 10000 is used.
- Note thatFailedRequestFilter filter can be used to reject requests that hit the limit.)