UbiReport 설정

dev
박성영 3 months ago
parent d787f88040
commit 1f4afb4d9c

1
.gitignore vendored

@ -30,3 +30,4 @@ replay_pid*
/.idea/
/.gradle/
/.idea/
/src/main/UbiService/logs/

@ -136,6 +136,11 @@ dependencies {
// SQL datasource-proxy
implementation 'net.ttddyy:datasource-proxy:1.10.1'
// ===== UBI =====
// UbiServer.jar - UBI ( , WAR WEB-INF/lib )
providedCompile files('src/main/webapp/WEB-INF/lib/UbiServer.jar')
implementation 'xerces:xercesImpl:2.12.2'
// ===== =====
// Lombok - (Getter, Setter, Builder )
compileOnly 'org.projectlombok:lombok'

Binary file not shown.

@ -0,0 +1,26 @@
JAVA_DIR=/usr/local/jdk1.6.0
UBISERVICE_DIR=/webapp/myapp/UbiService
PROPERTY_DIR=$UBISERVICE_DIR
FONT_DIR=$UBISERVICE_DIR/fonts/
CLASSPATH=$UBISERVICE_DIR/lib/UbiServer.jar
XMS=1024M
XMX=2048M
GREP_STR=$UBISERVICE_DIR/lib/UbiServer.jar
#For SunOS
#if [ `/usr/ucb/ps -auxwww | grep $GREP_STR | grep -v grep | awk '{print $2}'` ];then
# kill -9 `/usr/ucb/ps -auxwww | grep $GREP_STR | grep -v grep | awk '{print $2}'`
if [ `ps -ef | grep $GREP_STR | grep -v grep | awk '{print $2}'` ];then
kill -9 `ps -ef | grep $GREP_STR | grep -v grep | awk '{print $2}'`
echo ""
echo ">>> UbiService has shutdown."
$JAVA_DIR/bin/java -Xms$XMS -Xmx$XMX -Dfile.encoding=UTF-8 -Djava.awt.headless=true -Dsun.java2d.fontpath=$FONT_DIR -classpath $CLASSPATH:. com.ubireport.service.UbiService4 $PROPERTY_DIR &
echo ">>> UbiService has started."
echo ""
else
echo ""
echo ">>> UbiService is not running."
echo ""
fi

@ -0,0 +1,18 @@
UBISERVICE_DIR=/webapp/myapp/UbiService
GREP_STR=$UBISERVICE_DIR/lib/UbiServer.jar
#For SunOS
#if [ `/usr/ucb/ps -auxwww | grep $GREP_STR | grep -v grep | awk '{print $2}'` ];then
# kill -9 `/usr/ucb/ps -auxwww | grep $GREP_STR | grep -v grep | awk '{print $2}'`
if [ `ps -ef | grep $GREP_STR | grep -v grep | awk '{print $2}'` ];then
kill -9 `ps -ef | grep $GREP_STR | grep -v grep | awk '{print $2}'`
echo ""
echo ">>> UbiService has shutdown."
echo ""
else
echo ""
echo ">>> UbiService is not running."
echo ""
fi

@ -0,0 +1,31 @@
JAVA_DIR=/usr/local/jdk1.6.0
UBISERVICE_DIR=/webapp/myapp/UbiService
PROPERTY_DIR=$UBISERVICE_DIR
FONT_DIR=$UBISERVICE_DIR/fonts/
CLASSPATH=$UBISERVICE_DIR/lib/UbiServer.jar
#For Redbc
#CLASSPATH=$UBISERVICE_DIR/lib/UbiServer.jar:$UBISERVICE_DIR/lib/EzIssuerJava.jar
#For Voiceye
#CLASSPATH=$UBISERVICE_DIR/lib/UbiServer.jar:$UBISERVICE_DIR/lib/VERVMakerJNI.jar
#CLASSPATH=$UBISERVICE_DIR/lib/UbiServer.jar:$UBISERVICE_DIR/lib/VERVMakerJNI64.jar
XMS=1024M
XMX=2048M
GREP_STR=$UBISERVICE_DIR/lib/UbiServer.jar
#For SunOS
#if [ `/usr/ucb/ps -auxwww | grep $GREP_STR | grep -v grep | awk '{print $2}'` ];then
if [ `ps -ef | grep $GREP_STR | grep -v grep | awk '{print $2}'` ];then
echo ""
echo ">>> UbiService is running."
echo ""
else
$JAVA_DIR/bin/java -Xms$XMS -Xmx$XMX -Dfile.encoding=UTF-8 -Djava.awt.headless=true -Dsun.java2d.fontpath=$FONT_DIR -classpath $CLASSPATH:. com.ubireport.service.UbiService4 $PROPERTY_DIR &
echo ""
echo ">>> UbiService has started."
echo ""
fi

@ -0,0 +1,68 @@
echo off
set INPUT=%1
set UBISERVICE_DIR=C:\webapps\myapp\UbiService
set BATPATH=%UBISERVICE_DIR%\bin\ubiservice.bat
set NSSM=%UBISERVICE_DIR%\bin\nssm64.exe
if "%INPUT%" == "" (
echo ----------------------------------------
echo ex : svcregist.bat [install] [uninstall]
echo ----------------------------------------
echo.
) else (
if "%INPUT%" == "install" (
echo ----------------------------------------
echo UbiService Registration Job
echo ----------------------------------------
echo.
echo [UbiService Regist]
%NSSM% install UbiService %BATPATH%
echo.
echo [UbiService Set Description]
%NSSM% set UbiService Description "UbiService for UbiReport4.0"
echo.
echo [UbiService Start]
%NSSM% start UbiService
echo.
echo ----------------------------------------
echo Install Completed
echo ----------------------------------------
echo.
) else (
if "%INPUT%" == "uninstall" (
echo ----------------------------------------
echo UbiService UnRegistration Job
echo ----------------------------------------
echo.
echo [UbiService Stop]
%NSSM% stop UbiService
echo.
echo [UbiService Unregist]
%NSSM% remove UbiService confirm
echo.
echo ----------------------------------------
echo Uninstall Completed
echo ----------------------------------------
echo.
) else (
echo ----------------------------------------
echo ex : svcregist.bat [install] [uninstall]
echo ----------------------------------------
echo.
)
)
)

@ -0,0 +1,34 @@
echo off
echo ----------------------------------------
echo UbiService.bat
echo ----------------------------------------
echo.
set JAVA_DIR=D:\DEV\.jdks\jdk1.8.0_271
set UBISERVICE_DIR=D:\workspace\git\IBMS_NEW\src\main\UbiService
set PROPERTY_DIR=%UBISERVICE_DIR%
set FONT_DIR=%UBISERVICE_DIR%\fonts\
set XMS=512M
set XMX=1024M
set CLASSPATH=%UBISERVICE_DIR%\lib\UbiServer.jar
REM For Redbc
REM set CLASSPATH=%UBISERVICE_DIR%\lib\UbiServer.jar;%UBISERVICE_DIR%\lib\EzIssuerJava.jar
REM For Voiceye
REM set CLASSPATH=%UBISERVICE_DIR%\lib\UbiServer.jar;%UBISERVICE_DIR%\lib\VERVMakerJNI.jar
REM set CLASSPATH=%UBISERVICE_DIR%\lib\UbiServer.jar;%UBISERVICE_DIR%\lib\VERVMakerJNI64.jar
echo.
echo [Directory Information]
echo - Java : %JAVA_DIR%
echo - UbiService : %UBISERVICE_DIR%
echo.
echo [Java Information]
%JAVA_DIR%\bin\java -version
echo.
echo [UbiService Start]
%JAVA_DIR%\bin\java -Xms%XMS% -Xmx%XMX% -Dfile.encoding=UTF-8 -Djava.awt.headless=true -Dsun.java2d.fontpath=%FONT_DIR% -classpath %CLASSPATH%;. com.ubireport.service.UbiService4 %PROPERTY_DIR%

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="UTF-8"?>
<Doc version="1.0" pagecount="1" docname="" fontRevision="1" serviceid="48B5F134F77599425FC9AA878FCF78" enableNoPage="true" isconverthtml="false">
<DocProperty width="595" height="841" dwidth="595.2755905511812" dheight="841.8897637795277" margintop="58" marginbottom="56" marginleft="58" marginright="57" marginheader="0" marginfooter="0" pagesize="A4" orientation="Portrait" language="Korean" />
<Fontobj id="0_0" name="Arial" style="0" size="40" />
<Fontobj id="1_0" name="맑은 고딕" style="1" size="16" />
<Fontobj id="2_0" name="맑은 고딕" style="1" size="10" />
<Lineobj id="0_0" type="-1" thickness="1" colorid="0_0" />
<Colorobj id="0_0" color="000000" />
<Colorobj id="1_0" color="ffffff" />
<Colorobj id="2_0" color="cc0033" />
<Colorobj id="3_0" color="3366ff" />
<Colorobj id="4_0" color="003300" />
<Borderobj id="0_0" top="0_0" bottom="0_0" left="0_0" right="0_0" diagonaldown="0_0" diagonalup="0_0" />
<Imageobj id="IMAGE5httplocalhost8080ubi4workimagesLOGOjpg" width="0" height="0" originalsize="false" fixedrate="1" brightness="0" loadtype="2" loadsrc="http://localhost:8080/ubi4/work/images/LOGO.jpg" />
<Page pagenum="1" masterflag="0" mastertitle="" width="595" height="841" iwidth="480" iheight="727" x="58" y="58" pagesize="A4" orientation="Portrait">
<Fontid>0_0</Fontid>
<Fontid>1_0</Fontid>
<Fontid>2_0</Fontid>
<Lineid>0_0</Lineid>
<Colorid>0_0</Colorid>
<Colorid>1_0</Colorid>
<Colorid>2_0</Colorid>
<Colorid>3_0</Colorid>
<Colorid>4_0</Colorid>
<Borderid>0_0</Borderid>
<Objectid>IMAGE5httplocalhost8080ubi4workimagesLOGOjpg</Objectid>
<Item classname="UbiImageItem" id="IMAGE5" x="0" y="218" width="480" height="267" compid="COMP1" forecolorid="" backcolorid="" transparent="0" >
<Image imageid="IMAGE5httplocalhost8080ubi4workimagesLOGOjpg" halign="1" valign="1" borderid="0_0" />
</Item>
<Item classname="UbiTextItem" id="TEXT5" x="0" y="0" width="480" height="84" compid="COMP1" forecolorid="0_0" backcolorid="1_0" >
<Text fontid="0_0" halign="1" border="0_0" >UbiReport 4.0</Text>
</Item>
<Item classname="UbiTextItem" id="TEXT4" x="0" y="588" width="480" height="33" compid="COMP1" forecolorid="2_0" backcolorid="1_0" linked="1" linkfilename="www.ubireport.com" linkstyle="WEBPAGE" >
<Text fontid="1_0" halign="1" border="0_0" >UbiReport Homepage ( http://www.ubireport.com )</Text>
</Item>
<Item classname="UbiTextItem" id="USERCOLUMN1" x="240" y="707" width="240" height="20" compid="COMP1" forecolorid="0_0" backcolorid="1_0" >
<Text fontid="2_0" halign="2" border="0_0" marginleft="1" marginright="5" margintop="1" marginbottom="1" >출력일시 : 2025/09/04 04:40:22</Text>
</Item>
<Item classname="UbiTextItem" id="USERCOLUMN2" x="0" y="707" width="240" height="20" compid="COMP1" forecolorid="0_0" backcolorid="1_0" >
<Text fontid="2_0" border="0_0" marginleft="5" marginright="1" margintop="1" marginbottom="1" >출력자 : 홍길동</Text>
</Item>
<Item classname="UbiTextItem" id="TEXT9" x="0" y="321" width="480" height="267" compid="COMP1" forecolorid="3_0" backcolorid="1_0" >
<Text fontid="1_0" halign="1" border="0_0" marginleft="5" marginright="1" margintop="1" marginbottom="1" >This page is the UbiReport 4.0 installation test page.
If preview is normal in web browser, please save and
print test.</Text>
</Item>
<Item classname="UbiTextItem" id="TEXT7" x="0" y="84" width="480" height="237" compid="COMP1" forecolorid="4_0" backcolorid="1_0" >
<Text fontid="1_0" halign="1" border="0_0" marginleft="5" marginright="1" margintop="1" marginbottom="1" >UbiReport 4.0 설치 테스트 화면 입니다.
웹브라우저에서 미리보기가 정상적이라면, 파일저장, 인쇄
테스트를 진행하시기 바랍니다.</Text>
</Item>
</Page>
<DocInfo startindex="1" pagecount="1" docname="" />
</Doc>

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="UTF-8"?>
<Doc version="1.0" pagecount="1" docname="" fontRevision="1" serviceid="48B5F134F77599425FC9AA878FCF78" enableNoPage="true" isconverthtml="false">
<DocProperty width="595" height="841" dwidth="595.2755905511812" dheight="841.8897637795277" margintop="58" marginbottom="56" marginleft="58" marginright="57" marginheader="0" marginfooter="0" pagesize="A4" orientation="Portrait" language="Korean" />
<Fontobj id="0_0" name="Arial" style="0" size="40" />
<Fontobj id="1_0" name="맑은 고딕" style="1" size="16" />
<Fontobj id="2_0" name="맑은 고딕" style="1" size="10" />
<Lineobj id="0_0" type="-1" thickness="1" colorid="0_0" />
<Colorobj id="0_0" color="000000" />
<Colorobj id="1_0" color="ffffff" />
<Colorobj id="2_0" color="cc0033" />
<Colorobj id="3_0" color="3366ff" />
<Colorobj id="4_0" color="003300" />
<Borderobj id="0_0" top="0_0" bottom="0_0" left="0_0" right="0_0" diagonaldown="0_0" diagonalup="0_0" />
<Imageobj id="IMAGE5httplocalhost8080ubi4workimagesLOGOjpg" width="0" height="0" originalsize="false" fixedrate="1" brightness="0" loadtype="2" loadsrc="http://localhost:8080/ubi4/work/images/LOGO.jpg" />
<Page pagenum="1" masterflag="0" mastertitle="" width="595" height="841" iwidth="480" iheight="727" x="58" y="58" pagesize="A4" orientation="Portrait">
<Fontid>0_0</Fontid>
<Fontid>1_0</Fontid>
<Fontid>2_0</Fontid>
<Lineid>0_0</Lineid>
<Colorid>0_0</Colorid>
<Colorid>1_0</Colorid>
<Colorid>2_0</Colorid>
<Colorid>3_0</Colorid>
<Colorid>4_0</Colorid>
<Borderid>0_0</Borderid>
<Objectid>IMAGE5httplocalhost8080ubi4workimagesLOGOjpg</Objectid>
<Item classname="UbiImageItem" id="IMAGE5" x="0" y="218" width="480" height="267" compid="COMP1" forecolorid="" backcolorid="" transparent="0" >
<Image imageid="IMAGE5httplocalhost8080ubi4workimagesLOGOjpg" halign="1" valign="1" borderid="0_0" />
</Item>
<Item classname="UbiTextItem" id="TEXT5" x="0" y="0" width="480" height="84" compid="COMP1" forecolorid="0_0" backcolorid="1_0" >
<Text fontid="0_0" halign="1" border="0_0" >UbiReport 4.0</Text>
</Item>
<Item classname="UbiTextItem" id="TEXT4" x="0" y="588" width="480" height="33" compid="COMP1" forecolorid="2_0" backcolorid="1_0" linked="1" linkfilename="www.ubireport.com" linkstyle="WEBPAGE" >
<Text fontid="1_0" halign="1" border="0_0" >UbiReport Homepage ( http://www.ubireport.com )</Text>
</Item>
<Item classname="UbiTextItem" id="USERCOLUMN1" x="240" y="707" width="240" height="20" compid="COMP1" forecolorid="0_0" backcolorid="1_0" >
<Text fontid="2_0" halign="2" border="0_0" marginleft="1" marginright="5" margintop="1" marginbottom="1" >출력일시 : 2025/09/04 04:47:33</Text>
</Item>
<Item classname="UbiTextItem" id="USERCOLUMN2" x="0" y="707" width="240" height="20" compid="COMP1" forecolorid="0_0" backcolorid="1_0" >
<Text fontid="2_0" border="0_0" marginleft="5" marginright="1" margintop="1" marginbottom="1" >출력자 : 홍길동</Text>
</Item>
<Item classname="UbiTextItem" id="TEXT9" x="0" y="321" width="480" height="267" compid="COMP1" forecolorid="3_0" backcolorid="1_0" >
<Text fontid="1_0" halign="1" border="0_0" marginleft="5" marginright="1" margintop="1" marginbottom="1" >This page is the UbiReport 4.0 installation test page.
If preview is normal in web browser, please save and
print test.</Text>
</Item>
<Item classname="UbiTextItem" id="TEXT7" x="0" y="84" width="480" height="237" compid="COMP1" forecolorid="4_0" backcolorid="1_0" >
<Text fontid="1_0" halign="1" border="0_0" marginleft="5" marginright="1" margintop="1" marginbottom="1" >UbiReport 4.0 설치 테스트 화면 입니다.
웹브라우저에서 미리보기가 정상적이라면, 파일저장, 인쇄
테스트를 진행하시기 바랍니다.</Text>
</Item>
</Page>
<DocInfo startindex="1" pagecount="1" docname="" />
</Doc>

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="UTF-8"?>
<Doc version="1.0" pagecount="1" docname="" fontRevision="1" serviceid="48B5F134F77599425FC9AA878FCF78" enableNoPage="true" isconverthtml="false">
<DocProperty width="595" height="841" dwidth="595.2755905511812" dheight="841.8897637795277" margintop="58" marginbottom="56" marginleft="58" marginright="57" marginheader="0" marginfooter="0" pagesize="A4" orientation="Portrait" language="Korean" />
<Fontobj id="0_0" name="Arial" style="0" size="40" />
<Fontobj id="1_0" name="맑은 고딕" style="1" size="16" />
<Fontobj id="2_0" name="맑은 고딕" style="1" size="10" />
<Lineobj id="0_0" type="-1" thickness="1" colorid="0_0" />
<Colorobj id="0_0" color="000000" />
<Colorobj id="1_0" color="ffffff" />
<Colorobj id="2_0" color="cc0033" />
<Colorobj id="3_0" color="3366ff" />
<Colorobj id="4_0" color="003300" />
<Borderobj id="0_0" top="0_0" bottom="0_0" left="0_0" right="0_0" diagonaldown="0_0" diagonalup="0_0" />
<Imageobj id="IMAGE5httplocalhost8080ubi4workimagesLOGOjpg" width="0" height="0" originalsize="false" fixedrate="1" brightness="0" loadtype="2" loadsrc="http://localhost:8080/ubi4/work/images/LOGO.jpg" />
<Page pagenum="1" masterflag="0" mastertitle="" width="595" height="841" iwidth="480" iheight="727" x="58" y="58" pagesize="A4" orientation="Portrait">
<Fontid>0_0</Fontid>
<Fontid>1_0</Fontid>
<Fontid>2_0</Fontid>
<Lineid>0_0</Lineid>
<Colorid>0_0</Colorid>
<Colorid>1_0</Colorid>
<Colorid>2_0</Colorid>
<Colorid>3_0</Colorid>
<Colorid>4_0</Colorid>
<Borderid>0_0</Borderid>
<Objectid>IMAGE5httplocalhost8080ubi4workimagesLOGOjpg</Objectid>
<Item classname="UbiImageItem" id="IMAGE5" x="0" y="218" width="480" height="267" compid="COMP1" forecolorid="" backcolorid="" transparent="0" >
<Image imageid="IMAGE5httplocalhost8080ubi4workimagesLOGOjpg" halign="1" valign="1" borderid="0_0" />
</Item>
<Item classname="UbiTextItem" id="TEXT5" x="0" y="0" width="480" height="84" compid="COMP1" forecolorid="0_0" backcolorid="1_0" >
<Text fontid="0_0" halign="1" border="0_0" >UbiReport 4.0</Text>
</Item>
<Item classname="UbiTextItem" id="TEXT4" x="0" y="588" width="480" height="33" compid="COMP1" forecolorid="2_0" backcolorid="1_0" linked="1" linkfilename="www.ubireport.com" linkstyle="WEBPAGE" >
<Text fontid="1_0" halign="1" border="0_0" >UbiReport Homepage ( http://www.ubireport.com )</Text>
</Item>
<Item classname="UbiTextItem" id="USERCOLUMN1" x="240" y="707" width="240" height="20" compid="COMP1" forecolorid="0_0" backcolorid="1_0" >
<Text fontid="2_0" halign="2" border="0_0" marginleft="1" marginright="5" margintop="1" marginbottom="1" >출력일시 : 2025/09/04 04:47:37</Text>
</Item>
<Item classname="UbiTextItem" id="USERCOLUMN2" x="0" y="707" width="240" height="20" compid="COMP1" forecolorid="0_0" backcolorid="1_0" >
<Text fontid="2_0" border="0_0" marginleft="5" marginright="1" margintop="1" marginbottom="1" >출력자 : 홍길동</Text>
</Item>
<Item classname="UbiTextItem" id="TEXT9" x="0" y="321" width="480" height="267" compid="COMP1" forecolorid="3_0" backcolorid="1_0" >
<Text fontid="1_0" halign="1" border="0_0" marginleft="5" marginright="1" margintop="1" marginbottom="1" >This page is the UbiReport 4.0 installation test page.
If preview is normal in web browser, please save and
print test.</Text>
</Item>
<Item classname="UbiTextItem" id="TEXT7" x="0" y="84" width="480" height="237" compid="COMP1" forecolorid="4_0" backcolorid="1_0" >
<Text fontid="1_0" halign="1" border="0_0" marginleft="5" marginright="1" margintop="1" marginbottom="1" >UbiReport 4.0 설치 테스트 화면 입니다.
웹브라우저에서 미리보기가 정상적이라면, 파일저장, 인쇄
테스트를 진행하시기 바랍니다.</Text>
</Item>
</Page>
<DocInfo startindex="1" pagecount="1" docname="" />
</Doc>

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="UTF-8"?>
<Doc version="1.0" pagecount="1" docname="" fontRevision="1" serviceid="48B5F134F77599425FC9AA878FCF78" enableNoPage="true" isconverthtml="false">
<DocProperty width="595" height="841" dwidth="595.2755905511812" dheight="841.8897637795277" margintop="58" marginbottom="56" marginleft="58" marginright="57" marginheader="0" marginfooter="0" pagesize="A4" orientation="Portrait" language="Korean" />
<Fontobj id="0_0" name="Arial" style="0" size="40" />
<Fontobj id="1_0" name="맑은 고딕" style="1" size="16" />
<Fontobj id="2_0" name="맑은 고딕" style="1" size="10" />
<Lineobj id="0_0" type="-1" thickness="1" colorid="0_0" />
<Colorobj id="0_0" color="000000" />
<Colorobj id="1_0" color="ffffff" />
<Colorobj id="2_0" color="cc0033" />
<Colorobj id="3_0" color="3366ff" />
<Colorobj id="4_0" color="003300" />
<Borderobj id="0_0" top="0_0" bottom="0_0" left="0_0" right="0_0" diagonaldown="0_0" diagonalup="0_0" />
<Imageobj id="IMAGE5httplocalhost8080ubi4workimagesLOGOjpg" width="0" height="0" originalsize="false" fixedrate="1" brightness="0" loadtype="2" loadsrc="http://localhost:8080/ubi4/work/images/LOGO.jpg" />
<Page pagenum="1" masterflag="0" mastertitle="" width="595" height="841" iwidth="480" iheight="727" x="58" y="58" pagesize="A4" orientation="Portrait">
<Fontid>0_0</Fontid>
<Fontid>1_0</Fontid>
<Fontid>2_0</Fontid>
<Lineid>0_0</Lineid>
<Colorid>0_0</Colorid>
<Colorid>1_0</Colorid>
<Colorid>2_0</Colorid>
<Colorid>3_0</Colorid>
<Colorid>4_0</Colorid>
<Borderid>0_0</Borderid>
<Objectid>IMAGE5httplocalhost8080ubi4workimagesLOGOjpg</Objectid>
<Item classname="UbiImageItem" id="IMAGE5" x="0" y="218" width="480" height="267" compid="COMP1" forecolorid="" backcolorid="" transparent="0" >
<Image imageid="IMAGE5httplocalhost8080ubi4workimagesLOGOjpg" halign="1" valign="1" borderid="0_0" />
</Item>
<Item classname="UbiTextItem" id="TEXT5" x="0" y="0" width="480" height="84" compid="COMP1" forecolorid="0_0" backcolorid="1_0" >
<Text fontid="0_0" halign="1" border="0_0" >UbiReport 4.0</Text>
</Item>
<Item classname="UbiTextItem" id="TEXT4" x="0" y="588" width="480" height="33" compid="COMP1" forecolorid="2_0" backcolorid="1_0" linked="1" linkfilename="www.ubireport.com" linkstyle="WEBPAGE" >
<Text fontid="1_0" halign="1" border="0_0" >UbiReport Homepage ( http://www.ubireport.com )</Text>
</Item>
<Item classname="UbiTextItem" id="USERCOLUMN1" x="240" y="707" width="240" height="20" compid="COMP1" forecolorid="0_0" backcolorid="1_0" >
<Text fontid="2_0" halign="2" border="0_0" marginleft="1" marginright="5" margintop="1" marginbottom="1" >출력일시 : 2025/09/04 04:47:38</Text>
</Item>
<Item classname="UbiTextItem" id="USERCOLUMN2" x="0" y="707" width="240" height="20" compid="COMP1" forecolorid="0_0" backcolorid="1_0" >
<Text fontid="2_0" border="0_0" marginleft="5" marginright="1" margintop="1" marginbottom="1" >출력자 : 홍길동</Text>
</Item>
<Item classname="UbiTextItem" id="TEXT9" x="0" y="321" width="480" height="267" compid="COMP1" forecolorid="3_0" backcolorid="1_0" >
<Text fontid="1_0" halign="1" border="0_0" marginleft="5" marginright="1" margintop="1" marginbottom="1" >This page is the UbiReport 4.0 installation test page.
If preview is normal in web browser, please save and
print test.</Text>
</Item>
<Item classname="UbiTextItem" id="TEXT7" x="0" y="84" width="480" height="237" compid="COMP1" forecolorid="4_0" backcolorid="1_0" >
<Text fontid="1_0" halign="1" border="0_0" marginleft="5" marginright="1" margintop="1" marginbottom="1" >UbiReport 4.0 설치 테스트 화면 입니다.
웹브라우저에서 미리보기가 정상적이라면, 파일저장, 인쇄
테스트를 진행하시기 바랍니다.</Text>
</Item>
</Page>
<DocInfo startindex="1" pagecount="1" docname="" />
</Doc>

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="UTF-8"?>
<Doc version="1.0" pagecount="1" docname="" fontRevision="1" serviceid="48B5F134F77599425FC9AA878FCF78" enableNoPage="true" isconverthtml="false">
<DocProperty width="595" height="841" dwidth="595.2755905511812" dheight="841.8897637795277" margintop="58" marginbottom="56" marginleft="58" marginright="57" marginheader="0" marginfooter="0" pagesize="A4" orientation="Portrait" language="Korean" />
<Fontobj id="0_0" name="Arial" style="0" size="40" />
<Fontobj id="1_0" name="맑은 고딕" style="1" size="16" />
<Fontobj id="2_0" name="맑은 고딕" style="1" size="10" />
<Lineobj id="0_0" type="-1" thickness="1" colorid="0_0" />
<Colorobj id="0_0" color="000000" />
<Colorobj id="1_0" color="ffffff" />
<Colorobj id="2_0" color="cc0033" />
<Colorobj id="3_0" color="3366ff" />
<Colorobj id="4_0" color="003300" />
<Borderobj id="0_0" top="0_0" bottom="0_0" left="0_0" right="0_0" diagonaldown="0_0" diagonalup="0_0" />
<Imageobj id="IMAGE5httplocalhost8080ubi4workimagesLOGOjpg" width="0" height="0" originalsize="false" fixedrate="1" brightness="0" loadtype="2" loadsrc="http://localhost:8080/ubi4/work/images/LOGO.jpg" />
<Page pagenum="1" masterflag="0" mastertitle="" width="595" height="841" iwidth="480" iheight="727" x="58" y="58" pagesize="A4" orientation="Portrait">
<Fontid>0_0</Fontid>
<Fontid>1_0</Fontid>
<Fontid>2_0</Fontid>
<Lineid>0_0</Lineid>
<Colorid>0_0</Colorid>
<Colorid>1_0</Colorid>
<Colorid>2_0</Colorid>
<Colorid>3_0</Colorid>
<Colorid>4_0</Colorid>
<Borderid>0_0</Borderid>
<Objectid>IMAGE5httplocalhost8080ubi4workimagesLOGOjpg</Objectid>
<Item classname="UbiImageItem" id="IMAGE5" x="0" y="218" width="480" height="267" compid="COMP1" forecolorid="" backcolorid="" transparent="0" >
<Image imageid="IMAGE5httplocalhost8080ubi4workimagesLOGOjpg" halign="1" valign="1" borderid="0_0" />
</Item>
<Item classname="UbiTextItem" id="TEXT5" x="0" y="0" width="480" height="84" compid="COMP1" forecolorid="0_0" backcolorid="1_0" >
<Text fontid="0_0" halign="1" border="0_0" >UbiReport 4.0</Text>
</Item>
<Item classname="UbiTextItem" id="TEXT4" x="0" y="588" width="480" height="33" compid="COMP1" forecolorid="2_0" backcolorid="1_0" linked="1" linkfilename="www.ubireport.com" linkstyle="WEBPAGE" >
<Text fontid="1_0" halign="1" border="0_0" >UbiReport Homepage ( http://www.ubireport.com )</Text>
</Item>
<Item classname="UbiTextItem" id="USERCOLUMN1" x="240" y="707" width="240" height="20" compid="COMP1" forecolorid="0_0" backcolorid="1_0" >
<Text fontid="2_0" halign="2" border="0_0" marginleft="1" marginright="5" margintop="1" marginbottom="1" >출력일시 : 2025/09/04 04:47:39</Text>
</Item>
<Item classname="UbiTextItem" id="USERCOLUMN2" x="0" y="707" width="240" height="20" compid="COMP1" forecolorid="0_0" backcolorid="1_0" >
<Text fontid="2_0" border="0_0" marginleft="5" marginright="1" margintop="1" marginbottom="1" >출력자 : 홍길동</Text>
</Item>
<Item classname="UbiTextItem" id="TEXT9" x="0" y="321" width="480" height="267" compid="COMP1" forecolorid="3_0" backcolorid="1_0" >
<Text fontid="1_0" halign="1" border="0_0" marginleft="5" marginright="1" margintop="1" marginbottom="1" >This page is the UbiReport 4.0 installation test page.
If preview is normal in web browser, please save and
print test.</Text>
</Item>
<Item classname="UbiTextItem" id="TEXT7" x="0" y="84" width="480" height="237" compid="COMP1" forecolorid="4_0" backcolorid="1_0" >
<Text fontid="1_0" halign="1" border="0_0" marginleft="5" marginright="1" margintop="1" marginbottom="1" >UbiReport 4.0 설치 테스트 화면 입니다.
웹브라우저에서 미리보기가 정상적이라면, 파일저장, 인쇄
테스트를 진행하시기 바랍니다.</Text>
</Item>
</Page>
<DocInfo startindex="1" pagecount="1" docname="" />
</Doc>

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="UTF-8"?>
<Doc version="1.0" pagecount="1" docname="" fontRevision="1" serviceid="48B5F134F77599425FC9AA878FCF78" enableNoPage="true" isconverthtml="false">
<DocProperty width="595" height="841" dwidth="595.2755905511812" dheight="841.8897637795277" margintop="58" marginbottom="56" marginleft="58" marginright="57" marginheader="0" marginfooter="0" pagesize="A4" orientation="Portrait" language="Korean" />
<Fontobj id="0_0" name="Arial" style="0" size="40" />
<Fontobj id="1_0" name="맑은 고딕" style="1" size="16" />
<Fontobj id="2_0" name="맑은 고딕" style="1" size="10" />
<Lineobj id="0_0" type="-1" thickness="1" colorid="0_0" />
<Colorobj id="0_0" color="000000" />
<Colorobj id="1_0" color="ffffff" />
<Colorobj id="2_0" color="cc0033" />
<Colorobj id="3_0" color="3366ff" />
<Colorobj id="4_0" color="003300" />
<Borderobj id="0_0" top="0_0" bottom="0_0" left="0_0" right="0_0" diagonaldown="0_0" diagonalup="0_0" />
<Imageobj id="IMAGE5httplocalhost8080ubi4workimagesLOGOjpg" width="0" height="0" originalsize="false" fixedrate="1" brightness="0" loadtype="2" loadsrc="http://localhost:8080/ubi4/work/images/LOGO.jpg" />
<Page pagenum="1" masterflag="0" mastertitle="" width="595" height="841" iwidth="480" iheight="727" x="58" y="58" pagesize="A4" orientation="Portrait">
<Fontid>0_0</Fontid>
<Fontid>1_0</Fontid>
<Fontid>2_0</Fontid>
<Lineid>0_0</Lineid>
<Colorid>0_0</Colorid>
<Colorid>1_0</Colorid>
<Colorid>2_0</Colorid>
<Colorid>3_0</Colorid>
<Colorid>4_0</Colorid>
<Borderid>0_0</Borderid>
<Objectid>IMAGE5httplocalhost8080ubi4workimagesLOGOjpg</Objectid>
<Item classname="UbiImageItem" id="IMAGE5" x="0" y="218" width="480" height="267" compid="COMP1" forecolorid="" backcolorid="" transparent="0" >
<Image imageid="IMAGE5httplocalhost8080ubi4workimagesLOGOjpg" halign="1" valign="1" borderid="0_0" />
</Item>
<Item classname="UbiTextItem" id="TEXT5" x="0" y="0" width="480" height="84" compid="COMP1" forecolorid="0_0" backcolorid="1_0" >
<Text fontid="0_0" halign="1" border="0_0" >UbiReport 4.0</Text>
</Item>
<Item classname="UbiTextItem" id="TEXT4" x="0" y="588" width="480" height="33" compid="COMP1" forecolorid="2_0" backcolorid="1_0" linked="1" linkfilename="www.ubireport.com" linkstyle="WEBPAGE" >
<Text fontid="1_0" halign="1" border="0_0" >UbiReport Homepage ( http://www.ubireport.com )</Text>
</Item>
<Item classname="UbiTextItem" id="USERCOLUMN1" x="240" y="707" width="240" height="20" compid="COMP1" forecolorid="0_0" backcolorid="1_0" >
<Text fontid="2_0" halign="2" border="0_0" marginleft="1" marginright="5" margintop="1" marginbottom="1" >출력일시 : 2025/09/04 04:48:27</Text>
</Item>
<Item classname="UbiTextItem" id="USERCOLUMN2" x="0" y="707" width="240" height="20" compid="COMP1" forecolorid="0_0" backcolorid="1_0" >
<Text fontid="2_0" border="0_0" marginleft="5" marginright="1" margintop="1" marginbottom="1" >출력자 : 홍길동</Text>
</Item>
<Item classname="UbiTextItem" id="TEXT9" x="0" y="321" width="480" height="267" compid="COMP1" forecolorid="3_0" backcolorid="1_0" >
<Text fontid="1_0" halign="1" border="0_0" marginleft="5" marginright="1" margintop="1" marginbottom="1" >This page is the UbiReport 4.0 installation test page.
If preview is normal in web browser, please save and
print test.</Text>
</Item>
<Item classname="UbiTextItem" id="TEXT7" x="0" y="84" width="480" height="237" compid="COMP1" forecolorid="4_0" backcolorid="1_0" >
<Text fontid="1_0" halign="1" border="0_0" marginleft="5" marginright="1" margintop="1" marginbottom="1" >UbiReport 4.0 설치 테스트 화면 입니다.
웹브라우저에서 미리보기가 정상적이라면, 파일저장, 인쇄
테스트를 진행하시기 바랍니다.</Text>
</Item>
</Page>
<DocInfo startindex="1" pagecount="1" docname="" />
</Doc>

@ -0,0 +1,297 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE HWPML>
<HWPML Version="2.1" Style="embed" SubVersion="7.0.0.0">
<HEAD SecCnt="1">
<DOCSETTING>
<BEGINNUMBER Page="1" Footnote="1" Endnote="1" Picture="1" Table="1" Equation="1" />
<CARETPOS List="0" Para="0" Pos="16" />
</DOCSETTING>
<MAPPINGTABLE>
<FACENAMELIST>
<FONTFACE Lang="Hangul" Count="3">
<FONT Id="0" Type="ttf" Name="바탕" />
<FONT Id="1" Type="ttf" Name="Arial" />
<FONT Id="2" Type="ttf" Name="맑은 고딕" />
</FONTFACE>
<FONTFACE Lang="Latin" Count="3">
<FONT Id="0" Type="ttf" Name="바탕" />
<FONT Id="1" Type="ttf" Name="Arial" />
<FONT Id="2" Type="ttf" Name="맑은 고딕" />
</FONTFACE>
<FONTFACE Lang="Hanja" Count="3">
<FONT Id="0" Type="ttf" Name="바탕" />
<FONT Id="1" Type="ttf" Name="Arial" />
<FONT Id="2" Type="ttf" Name="맑은 고딕" />
</FONTFACE>
<FONTFACE Lang="Japanese" Count="3">
<FONT Id="0" Type="ttf" Name="바탕" />
<FONT Id="1" Type="ttf" Name="Arial" />
<FONT Id="2" Type="ttf" Name="맑은 고딕" />
</FONTFACE>
<FONTFACE Lang="Other" Count="3">
<FONT Id="0" Type="ttf" Name="바탕" />
<FONT Id="1" Type="ttf" Name="Arial" />
<FONT Id="2" Type="ttf" Name="맑은 고딕" />
</FONTFACE>
<FONTFACE Lang="Symbol" Count="3">
<FONT Id="0" Type="ttf" Name="바탕" />
<FONT Id="1" Type="ttf" Name="Arial" />
<FONT Id="2" Type="ttf" Name="맑은 고딕" />
</FONTFACE>
<FONTFACE Lang="User" Count="3">
<FONT Id="0" Type="ttf" Name="바탕" />
<FONT Id="1" Type="ttf" Name="Arial" />
<FONT Id="2" Type="ttf" Name="맑은 고딕" />
</FONTFACE>
</FACENAMELIST>
<BORDERFILLLIST Count="5">
<BORDERFILL Id="1" ThreeD="false" Shadow="false" BackSlash="0" Slash="0" CrookedSlash="0">
<LEFTBORDER Type="None" Width="0mm" Color="-1" />
<RIGHTBORDER Type="None" Width="0mm" Color="-1" />
<TOPBORDER Type="None" Width="0mm" Color="-1" />
<BOTTOMBORDER Type="None" Width="0mm" Color="-1" />
<FILLBRUSH>
<WINDOWBRUSH FaceColor="16777215" HatchColor="0" />
</FILLBRUSH>
</BORDERFILL>
<BORDERFILL Id="2" ThreeD="false" Shadow="false" BackSlash="0" Slash="0" CrookedSlash="0">
<LEFTBORDER Type="None" Width="0.1mm" Color="0" />
<RIGHTBORDER Type="None" Width="0.1mm" Color="0" />
<TOPBORDER Type="None" Width="0.1mm" Color="0" />
<BOTTOMBORDER Type="None" Width="0.1mm" Color="0" />
<FILLBRUSH>
<WINDOWBRUSH FaceColor="-1" HatchColor="0" />
</FILLBRUSH>
</BORDERFILL>
<BORDERFILL Id="3" ThreeD="false" Shadow="false" BackSlash="0" Slash="0" CrookedSlash="0">
<LEFTBORDER Type="None" Width="0.1mm" Color="0" />
<RIGHTBORDER Type="None" Width="0.1mm" Color="0" />
<TOPBORDER Type="None" Width="0.1mm" Color="0" />
<BOTTOMBORDER Type="None" Width="0.1mm" Color="0" />
<FILLBRUSH>
<WINDOWBRUSH FaceColor="-1" HatchColor="0" />
</FILLBRUSH>
</BORDERFILL>
<BORDERFILL Id="4" ThreeD="false" Shadow="false" BackSlash="0" Slash="0" CrookedSlash="0">
<LEFTBORDER Type="None" Width="0.1mm" Color="0" />
<RIGHTBORDER Type="None" Width="0.1mm" Color="0" />
<TOPBORDER Type="None" Width="0.1mm" Color="0" />
<BOTTOMBORDER Type="None" Width="0.1mm" Color="0" />
<FILLBRUSH>
<WINDOWBRUSH FaceColor="-1" HatchColor="0" />
</FILLBRUSH>
</BORDERFILL>
<BORDERFILL Id="5" ThreeD="false" Shadow="false" BackSlash="0" Slash="0" CrookedSlash="0">
<LEFTBORDER Type="None" Width="0.1mm" Color="0" />
<RIGHTBORDER Type="None" Width="0.1mm" Color="0" />
<TOPBORDER Type="None" Width="0.1mm" Color="0" />
<BOTTOMBORDER Type="None" Width="0.1mm" Color="0" />
<FILLBRUSH>
<WINDOWBRUSH FaceColor="-1" HatchColor="0" />
</FILLBRUSH>
</BORDERFILL>
</BORDERFILLLIST>
<CHARSHAPELIST Count="6">
<CHARSHAPE Id="0" Height="1000" TextColor="0" ShadeColor="4294967295" UseFontSpace="false" UseKerning="false" SymMark="0">
<FONTID Hangul="0" Latin="0" Hanja="0" Japanese="0" Other="0" Symbol="0" User="0" />
<RATIO Hangul="100" Latin="100" Hanja="100" Japanese="100" Other="100" Symbol="100" User="100" />
<CHARSPACING Hangul="0" Latin="0" Hanja="0" Japanese="0" Other="0" Symbol="0" User="0" />
<RELSIZE Hangul="100" Latin="100" Hanja="100" Japanese="100" Other="100" Symbol="100" User="100" />
<CHAROFFSET Hangul="0" Latin="0" Hanja="0" Japanese="0" Other="0" Symbol="0" User="0" />
</CHARSHAPE>
<CHARSHAPE Id="1" Height="4000" TextColor="0" ShadeColor="4294967295" UseFontSpace="false" UseKerning="false" SymMark="0">
<FONTID Hangul="1" Latin="1" Hanja="1" Japanese="1" Other="1" Symbol="1" User="1" />
<RATIO Hangul="100" Latin="100" Hanja="100" Japanese="100" Other="100" Symbol="100" User="100" />
<CHARSPACING Hangul="0" Latin="0" Hanja="0" Japanese="0" Other="0" Symbol="0" User="0" />
<RELSIZE Hangul="100" Latin="100" Hanja="100" Japanese="100" Other="100" Symbol="100" User="100" />
<CHAROFFSET Hangul="0" Latin="0" Hanja="0" Japanese="0" Other="0" Symbol="0" User="0" />
</CHARSHAPE>
<CHARSHAPE Id="2" Height="1600" TextColor="3342540" ShadeColor="4294967295" UseFontSpace="false" UseKerning="false" SymMark="0">
<FONTID Hangul="2" Latin="2" Hanja="2" Japanese="2" Other="2" Symbol="2" User="2" />
<RATIO Hangul="100" Latin="100" Hanja="100" Japanese="100" Other="100" Symbol="100" User="100" />
<CHARSPACING Hangul="0" Latin="0" Hanja="0" Japanese="0" Other="0" Symbol="0" User="0" />
<RELSIZE Hangul="100" Latin="100" Hanja="100" Japanese="100" Other="100" Symbol="100" User="100" />
<CHAROFFSET Hangul="0" Latin="0" Hanja="0" Japanese="0" Other="0" Symbol="0" User="0" />
<BOLD />
</CHARSHAPE>
<CHARSHAPE Id="3" Height="1000" TextColor="0" ShadeColor="4294967295" UseFontSpace="false" UseKerning="false" SymMark="0">
<FONTID Hangul="2" Latin="2" Hanja="2" Japanese="2" Other="2" Symbol="2" User="2" />
<RATIO Hangul="100" Latin="100" Hanja="100" Japanese="100" Other="100" Symbol="100" User="100" />
<CHARSPACING Hangul="0" Latin="0" Hanja="0" Japanese="0" Other="0" Symbol="0" User="0" />
<RELSIZE Hangul="100" Latin="100" Hanja="100" Japanese="100" Other="100" Symbol="100" User="100" />
<CHAROFFSET Hangul="0" Latin="0" Hanja="0" Japanese="0" Other="0" Symbol="0" User="0" />
<BOLD />
</CHARSHAPE>
<CHARSHAPE Id="4" Height="1600" TextColor="16737843" ShadeColor="4294967295" UseFontSpace="false" UseKerning="false" SymMark="0">
<FONTID Hangul="2" Latin="2" Hanja="2" Japanese="2" Other="2" Symbol="2" User="2" />
<RATIO Hangul="100" Latin="100" Hanja="100" Japanese="100" Other="100" Symbol="100" User="100" />
<CHARSPACING Hangul="0" Latin="0" Hanja="0" Japanese="0" Other="0" Symbol="0" User="0" />
<RELSIZE Hangul="100" Latin="100" Hanja="100" Japanese="100" Other="100" Symbol="100" User="100" />
<CHAROFFSET Hangul="0" Latin="0" Hanja="0" Japanese="0" Other="0" Symbol="0" User="0" />
<BOLD />
</CHARSHAPE>
<CHARSHAPE Id="5" Height="1600" TextColor="13056" ShadeColor="4294967295" UseFontSpace="false" UseKerning="false" SymMark="0">
<FONTID Hangul="2" Latin="2" Hanja="2" Japanese="2" Other="2" Symbol="2" User="2" />
<RATIO Hangul="100" Latin="100" Hanja="100" Japanese="100" Other="100" Symbol="100" User="100" />
<CHARSPACING Hangul="0" Latin="0" Hanja="0" Japanese="0" Other="0" Symbol="0" User="0" />
<RELSIZE Hangul="100" Latin="100" Hanja="100" Japanese="100" Other="100" Symbol="100" User="100" />
<CHAROFFSET Hangul="0" Latin="0" Hanja="0" Japanese="0" Other="0" Symbol="0" User="0" />
<BOLD />
</CHARSHAPE>
</CHARSHAPELIST>
<TABDEFLIST Count="3">
<TABDEF Id="0" AutoTabLeft="false" AutoTabRight="false" />
<TABDEF Id="1" AutoTabLeft="true" AutoTabRight="false" />
<TABDEF Id="2" AutoTabLeft="false" AutoTabRight="true" />
</TABDEFLIST>
<PARASHAPELIST Count="5">
<PARASHAPE Id="0" Align="Justify" VerAlign="Baseline" TabDef="0" BreakLatinWord="BreakWord" BreakNonLatinWord="true">
<PARAMARGIN Left="0" Right="0" Indent="0" LineSpacing="160" LineSpacingType="Percent" />
<PARASPACING />
</PARASHAPE>
<PARASHAPE Id="1" Align="Center" VerAlign="Baseline" TabDef="0" BreakLatinWord="BreakWord" BreakNonLatinWord="true">
<PARAMARGIN Left="0" Right="0" Indent="0" LineSpacing="100" LineSpacingType="Percent" />
<PARASPACING />
</PARASHAPE>
<PARASHAPE Id="2" Align="Right" VerAlign="Baseline" TabDef="0" BreakLatinWord="BreakWord" BreakNonLatinWord="true">
<PARAMARGIN Left="200" Right="1000" Indent="0" LineSpacing="100" LineSpacingType="Percent" />
<PARASPACING />
</PARASHAPE>
<PARASHAPE Id="3" Align="Left" VerAlign="Baseline" TabDef="0" BreakLatinWord="BreakWord" BreakNonLatinWord="true">
<PARAMARGIN Left="1000" Right="200" Indent="0" LineSpacing="100" LineSpacingType="Percent" />
<PARASPACING />
</PARASHAPE>
<PARASHAPE Id="4" Align="Center" VerAlign="Baseline" TabDef="0" BreakLatinWord="BreakWord" BreakNonLatinWord="true">
<PARAMARGIN Left="1000" Right="200" Indent="0" LineSpacing="100" LineSpacingType="Percent" />
<PARASPACING />
</PARASHAPE>
</PARASHAPELIST>
</MAPPINGTABLE>
</HEAD>
<BODY>
<SECTION Id="0">
<P>
<TEXT CharShape="0">
<SECDEF TabStop="8000">
<PAGEDEF Landscape="0" Width="59528" Height="84189" GutterType="0">
<PAGEMARGIN Left="5700" Right="5700" Top="5700" Bottom="5600" Header="0" Footer="0" Gutter="0" />
</PAGEDEF>
</SECDEF>
<COLDEF Type="Newspaper" Count="1" Layout="Left" SameSize="true" SameGap="0" />
<TABLE RowCount="4" ColCount="1" PageBreak="Cell" RepeatHeader="true" CellSpacing="0" borderFill="0">
<SHAPEOBJECT Id="1" NumberingType="Table" TextWrap="InFrontOfText">
<POSITION TreatAsChar="false" VertRelTo="Para" HorzRelTo="Column" FlowWithText="true" AllowOverlap="false" VertOffset="0" HorzOffset="0" VertAlign="Top" HorzAlign="Top" />
<SIZE Width="48000" Height="62100" WidthRelTo="Absolute" HeightRelTo="Absolute" Protect="false" />
<OUTSIDEMARGIN Left="0" Right="0" Top="0" Bottom="0" />
</SHAPEOBJECT>
<INSIDEMARGIN Left="141" Right="141" Top="141" Bottom="141" />
<ROW>
<CELL ColAddr="0" RowAddr="0" ColSpan="1" RowSpan="1" Width="48000" Height="8400" BorderFill="2" HasMargin="true">
<CELLMARGIN Left="0" Right="0" Top="0" Bottom="0" />
<PARALIST Count="1" TextDirection="0" LineWrap="0" VertAlign="Center">
<P ParaShape="1">
<TEXT CharShape="1">
<CHAR>UbiReport 4.0</CHAR>
</TEXT>
</P>
</PARALIST>
</CELL>
</ROW>
<ROW>
<CELL ColAddr="0" RowAddr="1" ColSpan="1" RowSpan="1" Width="48000" Height="23700" BorderFill="5" HasMargin="true">
<CELLMARGIN Left="500" Right="100" Top="100" Bottom="100" />
<PARALIST Count="1" TextDirection="0" LineWrap="0" VertAlign="Center">
<P ParaShape="4">
<TEXT CharShape="5">
<CHAR>UbiReport 4.0 설치 테스트 화면 입니다.</CHAR>
</TEXT>
</P>
<P ParaShape="4" />
<P ParaShape="4">
<TEXT CharShape="5">
<CHAR>웹브라우저에서 미리보기가 정상적이라면, 파일저장, 인쇄 </CHAR>
</TEXT>
</P>
<P ParaShape="4" />
<P ParaShape="4">
<TEXT CharShape="5">
<CHAR>테스트를 진행하시기 바랍니다.</CHAR>
</TEXT>
</P>
</PARALIST>
</CELL>
</ROW>
<ROW>
<CELL ColAddr="0" RowAddr="2" ColSpan="1" RowSpan="1" Width="48000" Height="26700" BorderFill="4" HasMargin="true">
<CELLMARGIN Left="500" Right="100" Top="100" Bottom="100" />
<PARALIST Count="1" TextDirection="0" LineWrap="0" VertAlign="Center">
<P ParaShape="4">
<TEXT CharShape="4">
<CHAR>This page is the UbiReport 4.0 installation test page.</CHAR>
</TEXT>
</P>
<P ParaShape="4" />
<P ParaShape="4">
<TEXT CharShape="4">
<CHAR>If preview is normal in web browser, please save and </CHAR>
</TEXT>
</P>
<P ParaShape="4" />
<P ParaShape="4">
<TEXT CharShape="4">
<CHAR>print test.</CHAR>
</TEXT>
</P>
</PARALIST>
</CELL>
</ROW>
<ROW>
<CELL ColAddr="0" RowAddr="3" ColSpan="1" RowSpan="1" Width="48000" Height="3300" BorderFill="3" HasMargin="true">
<CELLMARGIN Left="0" Right="0" Top="0" Bottom="0" />
<PARALIST Count="1" TextDirection="0" LineWrap="0" VertAlign="Center">
<P ParaShape="1">
<TEXT CharShape="2">
<CHAR>UbiReport Homepage ( http://www.ubireport.com )</CHAR>
</TEXT>
</P>
</PARALIST>
</CELL>
</ROW>
</TABLE>
<TABLE RowCount="1" ColCount="2" PageBreak="Cell" RepeatHeader="true" CellSpacing="0" borderFill="0">
<SHAPEOBJECT Id="2" NumberingType="Table" TextWrap="InFrontOfText">
<POSITION TreatAsChar="false" VertRelTo="Para" HorzRelTo="Column" FlowWithText="true" AllowOverlap="false" VertOffset="70700" HorzOffset="0" VertAlign="Top" HorzAlign="Top" />
<SIZE Width="48000" Height="2000" WidthRelTo="Absolute" HeightRelTo="Absolute" Protect="false" />
<OUTSIDEMARGIN Left="0" Right="0" Top="0" Bottom="0" />
</SHAPEOBJECT>
<INSIDEMARGIN Left="141" Right="141" Top="141" Bottom="141" />
<ROW>
<CELL ColAddr="0" RowAddr="0" ColSpan="1" RowSpan="1" Width="24000" Height="2000" BorderFill="2" HasMargin="true">
<CELLMARGIN Left="500" Right="100" Top="100" Bottom="100" />
<PARALIST Count="1" TextDirection="0" LineWrap="0" VertAlign="Center">
<P ParaShape="3">
<TEXT CharShape="3">
<CHAR>출력자 : 홍길동</CHAR>
</TEXT>
</P>
</PARALIST>
</CELL>
<CELL ColAddr="1" RowAddr="0" ColSpan="1" RowSpan="1" Width="24000" Height="2000" BorderFill="2" HasMargin="true">
<CELLMARGIN Left="100" Right="500" Top="100" Bottom="100" />
<PARALIST Count="1" TextDirection="0" LineWrap="0" VertAlign="Center">
<P ParaShape="2">
<TEXT CharShape="3">
<CHAR>출력일시 : 2021/04/01 11:03:23</CHAR>
</TEXT>
</P>
</PARALIST>
</CELL>
</ROW>
</TABLE>
<CHAR />
</TEXT>
</P>
</SECTION>
</BODY>
</HWPML>

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="UTF-8"?>
<Doc version="1.0" pagecount="1" docname="" fontRevision="1" serviceid="48B5F134F77599425FC9AA878FCF78" enableNoPage="true" isconverthtml="false">
<DocProperty width="595" height="841" dwidth="595.2755905511812" dheight="841.8897637795277" margintop="58" marginbottom="56" marginleft="58" marginright="57" marginheader="0" marginfooter="0" pagesize="A4" orientation="Portrait" language="Korean" />
<Fontobj id="0_0" name="Arial" style="0" size="40" />
<Fontobj id="1_0" name="맑은 고딕" style="1" size="16" />
<Fontobj id="2_0" name="맑은 고딕" style="1" size="10" />
<Lineobj id="0_0" type="-1" thickness="1" colorid="0_0" />
<Colorobj id="0_0" color="000000" />
<Colorobj id="1_0" color="ffffff" />
<Colorobj id="2_0" color="cc0033" />
<Colorobj id="3_0" color="3366ff" />
<Colorobj id="4_0" color="003300" />
<Borderobj id="0_0" top="0_0" bottom="0_0" left="0_0" right="0_0" diagonaldown="0_0" diagonalup="0_0" />
<Imageobj id="IMAGE5httplocalhost8080ubi4LOGOjpg" width="0" height="0" originalsize="false" fixedrate="1" brightness="0" loadtype="2" loadsrc="http://localhost:8080/ubi4//LOGO.jpg" />
<Page pagenum="1" masterflag="0" mastertitle="" width="595" height="841" iwidth="480" iheight="727" x="58" y="58" pagesize="A4" orientation="Portrait">
<Fontid>0_0</Fontid>
<Fontid>1_0</Fontid>
<Fontid>2_0</Fontid>
<Lineid>0_0</Lineid>
<Colorid>0_0</Colorid>
<Colorid>1_0</Colorid>
<Colorid>2_0</Colorid>
<Colorid>3_0</Colorid>
<Colorid>4_0</Colorid>
<Borderid>0_0</Borderid>
<Objectid>IMAGE5httplocalhost8080ubi4LOGOjpg</Objectid>
<Item classname="UbiImageItem" id="IMAGE5" x="0" y="218" width="480" height="267" compid="COMP1" forecolorid="" backcolorid="" transparent="0" >
<Image imageid="IMAGE5httplocalhost8080ubi4LOGOjpg" halign="1" valign="1" borderid="0_0" />
</Item>
<Item classname="UbiTextItem" id="TEXT5" x="0" y="0" width="480" height="84" compid="COMP1" forecolorid="0_0" backcolorid="1_0" >
<Text fontid="0_0" halign="1" border="0_0" >UbiReport 4.0</Text>
</Item>
<Item classname="UbiTextItem" id="TEXT4" x="0" y="588" width="480" height="33" compid="COMP1" forecolorid="2_0" backcolorid="1_0" linked="1" linkfilename="www.ubireport.com" linkstyle="WEBPAGE" >
<Text fontid="1_0" halign="1" border="0_0" >UbiReport Homepage ( http://www.ubireport.com )</Text>
</Item>
<Item classname="UbiTextItem" id="USERCOLUMN1" x="240" y="707" width="240" height="20" compid="COMP1" forecolorid="0_0" backcolorid="1_0" >
<Text fontid="2_0" halign="2" border="0_0" marginleft="1" marginright="5" margintop="1" marginbottom="1" >출력일시 : 2021/04/01 11:03:23</Text>
</Item>
<Item classname="UbiTextItem" id="USERCOLUMN2" x="0" y="707" width="240" height="20" compid="COMP1" forecolorid="0_0" backcolorid="1_0" >
<Text fontid="2_0" border="0_0" marginleft="5" marginright="1" margintop="1" marginbottom="1" >출력자 : 홍길동</Text>
</Item>
<Item classname="UbiTextItem" id="TEXT9" x="0" y="321" width="480" height="267" compid="COMP1" forecolorid="3_0" backcolorid="1_0" >
<Text fontid="1_0" halign="1" border="0_0" marginleft="5" marginright="1" margintop="1" marginbottom="1" >This page is the UbiReport 4.0 installation test page.
If preview is normal in web browser, please save and
print test.</Text>
</Item>
<Item classname="UbiTextItem" id="TEXT7" x="0" y="84" width="480" height="237" compid="COMP1" forecolorid="4_0" backcolorid="1_0" >
<Text fontid="1_0" halign="1" border="0_0" marginleft="5" marginright="1" margintop="1" marginbottom="1" >UbiReport 4.0 설치 테스트 화면 입니다.
웹브라우저에서 미리보기가 정상적이라면, 파일저장, 인쇄
테스트를 진행하시기 바랍니다.</Text>
</Item>
</Page>
<DocInfo startindex="1" pagecount="1" docname="" />
</Doc>

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="UTF-8"?>
<Doc version="1.0" pagecount="1" docname="" fontRevision="1" serviceid="48B5F134F77599425FC9AA878FCF78" enableNoPage="true" isconverthtml="false">
<DocProperty width="595" height="841" dwidth="595.2755905511812" dheight="841.8897637795277" margintop="58" marginbottom="56" marginleft="58" marginright="57" marginheader="0" marginfooter="0" pagesize="A4" orientation="Portrait" language="Korean" />
<Fontobj id="0_0" name="Arial" style="0" size="40" />
<Fontobj id="1_0" name="맑은 고딕" style="1" size="16" />
<Fontobj id="2_0" name="맑은 고딕" style="1" size="10" />
<Lineobj id="0_0" type="-1" thickness="1" colorid="0_0" />
<Colorobj id="0_0" color="000000" />
<Colorobj id="1_0" color="ffffff" />
<Colorobj id="2_0" color="cc0033" />
<Colorobj id="3_0" color="3366ff" />
<Colorobj id="4_0" color="003300" />
<Borderobj id="0_0" top="0_0" bottom="0_0" left="0_0" right="0_0" diagonaldown="0_0" diagonalup="0_0" />
<Imageobj id="IMAGE5httplocalhost8080xit-ibmsubi4LOGOjpg" width="0" height="0" originalsize="false" fixedrate="1" brightness="0" loadtype="2" loadsrc="http://localhost:8080/xit-ibms/ubi4//LOGO.jpg" />
<Page pagenum="1" masterflag="0" mastertitle="" width="595" height="841" iwidth="480" iheight="727" x="58" y="58" pagesize="A4" orientation="Portrait">
<Fontid>0_0</Fontid>
<Fontid>1_0</Fontid>
<Fontid>2_0</Fontid>
<Lineid>0_0</Lineid>
<Colorid>0_0</Colorid>
<Colorid>1_0</Colorid>
<Colorid>2_0</Colorid>
<Colorid>3_0</Colorid>
<Colorid>4_0</Colorid>
<Borderid>0_0</Borderid>
<Objectid>IMAGE5httplocalhost8080xit-ibmsubi4LOGOjpg</Objectid>
<Item classname="UbiImageItem" id="IMAGE5" x="0" y="218" width="480" height="267" compid="COMP1" forecolorid="" backcolorid="" transparent="0" >
<Image imageid="IMAGE5httplocalhost8080xit-ibmsubi4LOGOjpg" halign="1" valign="1" borderid="0_0" />
</Item>
<Item classname="UbiTextItem" id="TEXT5" x="0" y="0" width="480" height="84" compid="COMP1" forecolorid="0_0" backcolorid="1_0" >
<Text fontid="0_0" halign="1" border="0_0" >UbiReport 4.0</Text>
</Item>
<Item classname="UbiTextItem" id="TEXT4" x="0" y="588" width="480" height="33" compid="COMP1" forecolorid="2_0" backcolorid="1_0" linked="1" linkfilename="www.ubireport.com" linkstyle="WEBPAGE" >
<Text fontid="1_0" halign="1" border="0_0" >UbiReport Homepage ( http://www.ubireport.com )</Text>
</Item>
<Item classname="UbiTextItem" id="USERCOLUMN1" x="240" y="707" width="240" height="20" compid="COMP1" forecolorid="0_0" backcolorid="1_0" >
<Text fontid="2_0" halign="2" border="0_0" marginleft="1" marginright="5" margintop="1" marginbottom="1" >출력일시 : 2021/03/31 05:03:15</Text>
</Item>
<Item classname="UbiTextItem" id="USERCOLUMN2" x="0" y="707" width="240" height="20" compid="COMP1" forecolorid="0_0" backcolorid="1_0" >
<Text fontid="2_0" border="0_0" marginleft="5" marginright="1" margintop="1" marginbottom="1" >출력자 : 홍길동</Text>
</Item>
<Item classname="UbiTextItem" id="TEXT9" x="0" y="321" width="480" height="267" compid="COMP1" forecolorid="3_0" backcolorid="1_0" >
<Text fontid="1_0" halign="1" border="0_0" marginleft="5" marginright="1" margintop="1" marginbottom="1" >This page is the UbiReport 4.0 installation test page.
If preview is normal in web browser, please save and
print test.</Text>
</Item>
<Item classname="UbiTextItem" id="TEXT7" x="0" y="84" width="480" height="237" compid="COMP1" forecolorid="4_0" backcolorid="1_0" >
<Text fontid="1_0" halign="1" border="0_0" marginleft="5" marginright="1" margintop="1" marginbottom="1" >UbiReport 4.0 설치 테스트 화면 입니다.
웹브라우저에서 미리보기가 정상적이라면, 파일저장, 인쇄
테스트를 진행하시기 바랍니다.</Text>
</Item>
</Page>
<DocInfo startindex="1" pagecount="1" docname="" />
</Doc>

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="UTF-8"?>
<Doc version="1.0" pagecount="1" docname="" fontRevision="1" serviceid="48B5F134F77599425FC9AA878FCF78" enableNoPage="true" isconverthtml="false">
<DocProperty width="595" height="841" dwidth="595.2755905511812" dheight="841.8897637795277" margintop="58" marginbottom="56" marginleft="58" marginright="57" marginheader="0" marginfooter="0" pagesize="A4" orientation="Portrait" language="Korean" />
<Fontobj id="0_0" name="Arial" style="0" size="40" />
<Fontobj id="1_0" name="맑은 고딕" style="1" size="16" />
<Fontobj id="2_0" name="맑은 고딕" style="1" size="10" />
<Lineobj id="0_0" type="-1" thickness="1" colorid="0_0" />
<Colorobj id="0_0" color="000000" />
<Colorobj id="1_0" color="ffffff" />
<Colorobj id="2_0" color="cc0033" />
<Colorobj id="3_0" color="3366ff" />
<Colorobj id="4_0" color="003300" />
<Borderobj id="0_0" top="0_0" bottom="0_0" left="0_0" right="0_0" diagonaldown="0_0" diagonalup="0_0" />
<Imageobj id="IMAGE5httplocalhost8080xit-ibmsubi4LOGOjpg" width="0" height="0" originalsize="false" fixedrate="1" brightness="0" loadtype="2" loadsrc="http://localhost:8080/xit-ibms/ubi4//LOGO.jpg" />
<Page pagenum="1" masterflag="0" mastertitle="" width="595" height="841" iwidth="480" iheight="727" x="58" y="58" pagesize="A4" orientation="Portrait">
<Fontid>0_0</Fontid>
<Fontid>1_0</Fontid>
<Fontid>2_0</Fontid>
<Lineid>0_0</Lineid>
<Colorid>0_0</Colorid>
<Colorid>1_0</Colorid>
<Colorid>2_0</Colorid>
<Colorid>3_0</Colorid>
<Colorid>4_0</Colorid>
<Borderid>0_0</Borderid>
<Objectid>IMAGE5httplocalhost8080xit-ibmsubi4LOGOjpg</Objectid>
<Item classname="UbiImageItem" id="IMAGE5" x="0" y="218" width="480" height="267" compid="COMP1" forecolorid="" backcolorid="" transparent="0" >
<Image imageid="IMAGE5httplocalhost8080xit-ibmsubi4LOGOjpg" halign="1" valign="1" borderid="0_0" />
</Item>
<Item classname="UbiTextItem" id="TEXT5" x="0" y="0" width="480" height="84" compid="COMP1" forecolorid="0_0" backcolorid="1_0" >
<Text fontid="0_0" halign="1" border="0_0" >UbiReport 4.0</Text>
</Item>
<Item classname="UbiTextItem" id="TEXT4" x="0" y="588" width="480" height="33" compid="COMP1" forecolorid="2_0" backcolorid="1_0" linked="1" linkfilename="www.ubireport.com" linkstyle="WEBPAGE" >
<Text fontid="1_0" halign="1" border="0_0" >UbiReport Homepage ( http://www.ubireport.com )</Text>
</Item>
<Item classname="UbiTextItem" id="USERCOLUMN1" x="240" y="707" width="240" height="20" compid="COMP1" forecolorid="0_0" backcolorid="1_0" >
<Text fontid="2_0" halign="2" border="0_0" marginleft="1" marginright="5" margintop="1" marginbottom="1" >출력일시 : 2021/03/31 05:06:24</Text>
</Item>
<Item classname="UbiTextItem" id="USERCOLUMN2" x="0" y="707" width="240" height="20" compid="COMP1" forecolorid="0_0" backcolorid="1_0" >
<Text fontid="2_0" border="0_0" marginleft="5" marginright="1" margintop="1" marginbottom="1" >출력자 : 홍길동</Text>
</Item>
<Item classname="UbiTextItem" id="TEXT9" x="0" y="321" width="480" height="267" compid="COMP1" forecolorid="3_0" backcolorid="1_0" >
<Text fontid="1_0" halign="1" border="0_0" marginleft="5" marginright="1" margintop="1" marginbottom="1" >This page is the UbiReport 4.0 installation test page.
If preview is normal in web browser, please save and
print test.</Text>
</Item>
<Item classname="UbiTextItem" id="TEXT7" x="0" y="84" width="480" height="237" compid="COMP1" forecolorid="4_0" backcolorid="1_0" >
<Text fontid="1_0" halign="1" border="0_0" marginleft="5" marginright="1" margintop="1" marginbottom="1" >UbiReport 4.0 설치 테스트 화면 입니다.
웹브라우저에서 미리보기가 정상적이라면, 파일저장, 인쇄
테스트를 진행하시기 바랍니다.</Text>
</Item>
</Page>
<DocInfo startindex="1" pagecount="1" docname="" />
</Doc>

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="UTF-8"?>
<Doc version="1.0" pagecount="1" docname="" fontRevision="1" serviceid="48B5F134F77599425FC9AA878FCF78" enableNoPage="true" isconverthtml="false">
<DocProperty width="595" height="841" dwidth="595.2755905511812" dheight="841.8897637795277" margintop="58" marginbottom="56" marginleft="58" marginright="57" marginheader="0" marginfooter="0" pagesize="A4" orientation="Portrait" language="Korean" />
<Fontobj id="0_0" name="Arial" style="0" size="40" />
<Fontobj id="1_0" name="맑은 고딕" style="1" size="16" />
<Fontobj id="2_0" name="맑은 고딕" style="1" size="10" />
<Lineobj id="0_0" type="-1" thickness="1" colorid="0_0" />
<Colorobj id="0_0" color="000000" />
<Colorobj id="1_0" color="ffffff" />
<Colorobj id="2_0" color="cc0033" />
<Colorobj id="3_0" color="3366ff" />
<Colorobj id="4_0" color="003300" />
<Borderobj id="0_0" top="0_0" bottom="0_0" left="0_0" right="0_0" diagonaldown="0_0" diagonalup="0_0" />
<Imageobj id="IMAGE5httplocalhost8080xit-ibmsubi4LOGOjpg" width="0" height="0" originalsize="false" fixedrate="1" brightness="0" loadtype="2" loadsrc="http://localhost:8080/xit-ibms/ubi4//LOGO.jpg" />
<Page pagenum="1" masterflag="0" mastertitle="" width="595" height="841" iwidth="480" iheight="727" x="58" y="58" pagesize="A4" orientation="Portrait">
<Fontid>0_0</Fontid>
<Fontid>1_0</Fontid>
<Fontid>2_0</Fontid>
<Lineid>0_0</Lineid>
<Colorid>0_0</Colorid>
<Colorid>1_0</Colorid>
<Colorid>2_0</Colorid>
<Colorid>3_0</Colorid>
<Colorid>4_0</Colorid>
<Borderid>0_0</Borderid>
<Objectid>IMAGE5httplocalhost8080xit-ibmsubi4LOGOjpg</Objectid>
<Item classname="UbiImageItem" id="IMAGE5" x="0" y="218" width="480" height="267" compid="COMP1" forecolorid="" backcolorid="" transparent="0" >
<Image imageid="IMAGE5httplocalhost8080xit-ibmsubi4LOGOjpg" halign="1" valign="1" borderid="0_0" />
</Item>
<Item classname="UbiTextItem" id="TEXT5" x="0" y="0" width="480" height="84" compid="COMP1" forecolorid="0_0" backcolorid="1_0" >
<Text fontid="0_0" halign="1" border="0_0" >UbiReport 4.0</Text>
</Item>
<Item classname="UbiTextItem" id="TEXT4" x="0" y="588" width="480" height="33" compid="COMP1" forecolorid="2_0" backcolorid="1_0" linked="1" linkfilename="www.ubireport.com" linkstyle="WEBPAGE" >
<Text fontid="1_0" halign="1" border="0_0" >UbiReport Homepage ( http://www.ubireport.com )</Text>
</Item>
<Item classname="UbiTextItem" id="USERCOLUMN1" x="240" y="707" width="240" height="20" compid="COMP1" forecolorid="0_0" backcolorid="1_0" >
<Text fontid="2_0" halign="2" border="0_0" marginleft="1" marginright="5" margintop="1" marginbottom="1" >출력일시 : 2021/03/31 05:14:05</Text>
</Item>
<Item classname="UbiTextItem" id="USERCOLUMN2" x="0" y="707" width="240" height="20" compid="COMP1" forecolorid="0_0" backcolorid="1_0" >
<Text fontid="2_0" border="0_0" marginleft="5" marginright="1" margintop="1" marginbottom="1" >출력자 : 홍길동</Text>
</Item>
<Item classname="UbiTextItem" id="TEXT9" x="0" y="321" width="480" height="267" compid="COMP1" forecolorid="3_0" backcolorid="1_0" >
<Text fontid="1_0" halign="1" border="0_0" marginleft="5" marginright="1" margintop="1" marginbottom="1" >This page is the UbiReport 4.0 installation test page.
If preview is normal in web browser, please save and
print test.</Text>
</Item>
<Item classname="UbiTextItem" id="TEXT7" x="0" y="84" width="480" height="237" compid="COMP1" forecolorid="4_0" backcolorid="1_0" >
<Text fontid="1_0" halign="1" border="0_0" marginleft="5" marginright="1" margintop="1" marginbottom="1" >UbiReport 4.0 설치 테스트 화면 입니다.
웹브라우저에서 미리보기가 정상적이라면, 파일저장, 인쇄
테스트를 진행하시기 바랍니다.</Text>
</Item>
</Page>
<DocInfo startindex="1" pagecount="1" docname="" />
</Doc>

@ -0,0 +1,87 @@
<?xml version="1.0" encoding="UTF-8"?>
<UbiService port="16996">
<!-- Executor urfThreads="6" exportThreads="3" pageThreads="3" /-->
<!-- TaskInfo property value : MINUTE,HOUR,DAY,WEEK,MONTH,YEAR -->
<TaskInfo taskResId="UBIHTML" taskPeriod="1" taskPeriodType="DAY" delPeriod="1" delPeriodType="DAY" />
<LogInfo logPath=""
backupStyle="date"
backupPattern="yyyy-MM-dd"
backupSize="180" />
<S3Info useS3="false"
bucketName=""
accessKey=""
secretKey="" />
<!-- For Redbc
<Redbc configXml=""
drmCopyProtectFileName=""
drmBarcodeType="HTML"
drmBarcodeCount="3" /> -->
<!-- Resources 설정 관련
- jrfDir : 리포트 파일의 경로.
- resultDir : UbiService에서 생성되는 결과 파일(xml, pdf, image)등이 위치하는 경로.
- ubiserverUrl : 리포트 파일의 결과 데이터를 전송하는 Servlet URL.
* Resources 설정 관련 문서 : UbiReport_매뉴얼 > UbiService Operation Guide.pdf 11페이지 참고 *
-->
<Resources>
<Resource id="UBIHTML"
isLocalFile="true"
jrfDir="D:/workspace/git/IBMS_NEW/src/main/webapp/ubi4/work/"
resultDir="D:/workspace/git/IBMS_NEW/src/main/UbiService/results/"
ubiserverUrl="http://localhost:8080/UbiServer"
servletRoot="http://localhost:8080"
fileUrl="http://localhost:8080/ubi4"
resource="false"
dataSource="DEV_DB"
useLog="true"
useDebug="true"
useDetail="true"
httpConnectionClassName=""
voiceyeClassName="" />
<!--<Resource id="UBIHTML"
isLocalFile="true"
jrfDir="C:/Program Files/Apache Software Foundation/Tomcat 9.0/webapps/IBMS/ubi4/work/"
resultDir="C:/Program Files/Apache Software Foundation/UbiService/results/"
ubiserverUrl="http://localhost:8998/IBMS/UbiServer"
servletRoot="http://localhost:8998/IBMS"
fileUrl="http://localhost:8998/IBMS/ubi4"
resource="false"
dataSource="DEV_DB"
useLog="true"
useDebug="true"
useDetail="true"
httpConnectionClassName=""
voiceyeClassName="" />-->
</Resources>
<!-- <Resources>
<Resource id="UBIHTML"
isLocalFile="true"
jrfDir="D:/IUP-eGovFrameDev-3.9.0-64bit/workspace/IBMS/src/main/webapp/ubi4/work/"
resultDir="D:/IUP-eGovFrameDev-3.9.0-64bit/workspace/UbiService/results/"
ubiserverUrl="http://localhost:8080/xit-ibms/UbiServer.do"
servletRoot="http://localhost:8080/xit-ibms"
fileUrl="http://localhost:8080/xit-ibms/ubi4/"
resource="false"
dataSource="DEV_DB"
useLog="true"
httpConnectionClassName=""
voiceyeClassName="" />
</Resources> -->
<!-- <Resources>
<Resource id="UBIHTML"
isLocalFile="true"
jrfDir="D:/IUP-eGovFrameDev-3.9.0-64bit/workspace/IBMS/src/main/webapp/ubi4/work/"
resultDir="D:/IUP-eGovFrameDev-3.9.0-64bit/workspace/UbiService/results/"
ubiserverUrl="http://localhost:8080/xit-ibms/UbiServer.do"
servletRoot="http://localhost:8080/xit-ibms"
fileUrl="http://localhost:8080/xit-ibms/ubi4/"
resource="false"
dataSource="Tutorial"
useLog="true"
httpConnectionClassName=""
voiceyeClassName="" />
</Resources> -->
</UbiService>

@ -0,0 +1,31 @@
package egovframework.config;
import org.springframework.boot.web.servlet.ServletRegistrationBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
/**
* UbiServer servlet
* UBI servlet mapping
*/
@Configuration
public class UbiServerConfig {
/**
* UbiServer servlet
* URL : /UbiServer
*
* @return ServletRegistrationBean UbiServer servlet
*/
@Bean
public ServletRegistrationBean<com.ubireport.server.UbiServer4> ubiServerServlet() {
ServletRegistrationBean<com.ubireport.server.UbiServer4> registrationBean =
new ServletRegistrationBean<>(new com.ubireport.server.UbiServer4(), "/UbiServer");
registrationBean.setName("UbiServer");
registrationBean.setLoadOnStartup(1); // 서버 시작 시 로드
return registrationBean;
}
}

@ -76,6 +76,7 @@ query-executor:
# Interceptor configuration
interceptor:
interceptorExclude:
- /** #ubi report test
- /login/** #로그인
- / #루트 페이지
- /.well-known/** #개발 툴

@ -0,0 +1,53 @@
<?xml version="1.0" encoding="UTF-8"?>
<UbiServer version="4.0.0000.0000">
<Environment licensePath="{APP_ROOT}/ubi4/license"
admin="YWRtcEBzc3dkIQ=="
adminImgUri="./ubi4/js/images"
xslPath=""
osCharset="KSC5601" />
<LogInfo logPath="{APP_ROOT}/ubi4/logs"
timeZone="GMT+9"
rowSize="5"
backupStyle="date"
backupSize="30"
serverBackupSize="180"
backupPattern="yyyy-MM-dd"
useLog="true"
info="true" />
<Resources>
<!-- <DataSource id="SAMPLE_DB1" type="auto" dataSourceName="jdbc/tutorial" charset="KSC5601" />
<DataSource id="SAMPLE_DB2"
type="direct"
vendor="Access"
driverClassName="sun.jdbc.odbc.JdbcOdbcDriver"
url="jdbc:odbc:UbiReport40"
charset="KSC5601"
username=""
password="" />
</Resources> -->
<!-- 로컬환경 및 개발서버 설정정보 url="jdbc:mariadb://115.21.123.117:53306/ibmsdb" [2021.10] IP변경됨 -->
<DataSource id="DEV_DB"
type="direct"
vendor="MariaDB"
driverClassName="org.mariadb.jdbc.Driver"
url="jdbc:mariadb://211.119.124.117:53306/ibmsdb"
charset="KSC5601"
username="root"
password="xit5811807" />
<!-- 운영 -->
<DataSource id="REAL_DB"
type="direct"
vendor="MariaDB"
driverClassName="org.mariadb.jdbc.Driver"
url="jdbc:mariadb://localhost:53306/ibmsdb"
charset="KSC5601"
username="root"
password="xit5811807" />
</Resources>
<UbiServiceInfo urftype="normal" connectionTime="1800000" >
<UbiService ip="localhost" port="16996" path=""/>
</UbiServiceInfo>
</UbiServer>

@ -0,0 +1,293 @@
<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8" %>
<%@ page import="java.sql.*, javax.sql.*, javax.naming.*" %>
<%
request.setCharacterEncoding("UTF-8"); //2020.09.25. 박민규- 캐릭터셋 설정
String uri = request.getRequestURI();
String type = request.getParameter("type");
String dsNm = request.getParameter("dsNm");
String driver = request.getParameter("driver");
String url = request.getParameter("url");
String user = request.getParameter("user");
String password = request.getParameter("password");
String sql = request.getParameter("sql");
if( type == null || type.equalsIgnoreCase("null") ) type = "";
if( dsNm == null || dsNm.equalsIgnoreCase("null") ) dsNm = "";
if( driver == null || driver.equalsIgnoreCase("null") ) driver = "";
if( url == null || url.equalsIgnoreCase("null") ) url = "";
if( user == null || user.equalsIgnoreCase("null") ) user = "";
if( password == null || password.equalsIgnoreCase("null") ) password = "";
if( sql == null || sql.equalsIgnoreCase("null") ) sql = "";
String msg = "";
Connection conn = null;
PreparedStatement ps = null;
ResultSet rs = null;
%>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>DataSource 확인</title>
<style>
body { font-family:sans-serif, arial; font-size:9pt; }
table { font-family:sans-serif, arial; font-size:9pt; }
</style>
<script language="JavaScript">
<!--
function setField() {
var check = document.dbinfo.type.value;
if( check == "direct" ) {
document.all["nondirect"].style.visibility = "hidden";
document.all["direct1"].style.visibility = "visible";
document.all["direct2"].style.visibility = "visible";
document.all["direct3"].style.visibility = "visible";
document.all["direct4"].style.visibility = "visible";
}
else {
document.all["nondirect"].style.visibility = "visible";
document.all["direct1"].style.visibility = "hidden";
document.all["direct2"].style.visibility = "hidden";
document.all["direct3"].style.visibility = "hidden";
document.all["direct4"].style.visibility = "hidden";
}
}
function checkFiled() {
if( document.dbinfo.type.value == "direct" ) {
if(document.dbinfo.driver.value == "") {
alert("Plaese Input Driver Name.(ex : oracle.jdbc.driver.OracleDriver)");
document.dbinfo.driver.focus();
return false;
}
else if(document.dbinfo.url.value == "") {
alert("Please Input DB URL.(ex : jdbc:oracle:thin:@dbip:dbport:dbsid)");
document.dbinfo.url.focus();
return false;
}
else document.dbinfo.submit();
}
else {
if(document.dbinfo.dsNm.value == "") {
alert("Please Input DataSource Name.(ex : jdbc/demo)");
document.dbinfo.dsNm.focus();
return false;
}
else document.dbinfo.submit();
}
}
function checkFiled2() {
if( document.dbinfo.sql.value == "" ) {
alert("Plaese Input SQL statment.");
document.dbinfo.sql.focus();
return false;
}
else {
document.dbinfo.submit();
}
}
//-->
</script>
</head>
<body style="margin:10" onload="setField()">
<h2>Check DataSource<h2>
<form name="dbinfo" method="post" action="<%= uri %>">
<table width="585" border="1" cellspacing="0" cellpadding="0" bordercolor="#808080" bordercolorlight="#C0C0C0" bordercolordark="#F6F6F6">
<tr height="20">
<td align="center" bgcolor="#C0C0C0" width="100">WAS 유형</td>
<td align="center" width="192">
<select name="type" onchange="setField()">
<option value="lookup" <%= type.equals("lookup")?"selected":"" %>>lookup</option>
<option value="nonlookup" <%= type.equals("nonlookup")?"selected":"" %>>nonlookup</option>
<option value="direct" <%= type.equals("direct")?"selected":"" %>>direct</option>
</select>
</td>
<td align="center" bgcolor="#C0C0C0" width="100">DataSource</td>
<td align="center" width="192">
<div id="nondirect" style="visibility:">
<input type="text" name="dsNm" size="20" value="<%= dsNm %>">
</div>
</td>
</tr>
<tr height="20">
<td align="center" bgcolor="#C0C0C0" width="100">Driver</td>
<td align="center">
<div id="direct1" style="visibility:hidden">
<input type="text" name="driver" size="20" value="<%= driver %>">
</div>
</td>
<td align="center" bgcolor="#C0C0C0" width="100">URL</td>
<td align="center">
<div id="direct2" style="visibility:hidden">
<input type="text" name="url" size="20" value="<%= url %>">
</div>
</td>
</tr>
<tr height="20">
<td align="center" bgcolor="#C0C0C0" width="100">User</td>
<td align="center">
<div id="direct3" style="visibility:hidden">
<input type="text" name="user" size="20" value="<%= user %>">
</div>
</td>
<td align="center" bgcolor="#C0C0C0" width="100">Password</td>
<td align="center">
<div id="direct4" style="visibility:hidden">
<input type="text" name="password" size="20" value="<%= password %>">
</div>
</td>
</tr>
</table>
<table width="585" border="0" cellspacing="0" cellpadding="0" bordercolor="#808080" bordercolorlight="#C0C0C0" bordercolordark="#F6F6F6">
<tr height="30">
<td align="center">
<input type="button" value="DB Connect Test" onclick="checkFiled()">
</td>
</tr>
</table>
<%
if( type.equals("lookup") || type.equals("nonlookup") || type.equals("direct") ) {
try {
if( type.equals("lookup") ) { //lookup type (Tomcat, resin, Jrun ...)
Context ctx = new InitialContext();
Context env = (Context)ctx.lookup("java:comp/env");
DataSource ds = (DataSource)env.lookup(dsNm);
conn = ds.getConnection();
}
else if( type.equals("nonlookup") ) { //nonlookup type (Jeus, WebLogic, WebSphere ...)
Context ctx = new InitialContext();
DataSource ds = (DataSource)ctx.lookup(dsNm);
conn = ds.getConnection();
}
else { //direct
Class.forName(driver);
conn = DriverManager.getConnection(url, user, password);
}
if( conn == null ) msg = "Connection Fail!!!";
else msg = "Connection Success!!!";
}
catch(Exception e) {
msg = e.getMessage();
}
finally {
%>
<table width="585" border="1" cellspacing="0" cellpadding="0" bordercolor="#808080" bordercolorlight="#C0C0C0" bordercolordark="#F6F6F6">
<tr height="20">
<td align="center" bgcolor="#C0C0C0">Result(<%= type %>)</td>
</tr>
<tr height="50">
<td align="center" valign="middle"><%= msg %></td>
</tr>
</table>
<%
if( conn != null ) {
%>
<br>
<table width="585" border="1" cellspacing="0" cellpadding="0" bordercolor="#808080" bordercolorlight="#C0C0C0" bordercolordark="#F6F6F6">
<tr height="20">
<td align="center" bgcolor="#C0C0C0">SQL</td>
</tr>
<tr height="50">
<td>
<textarea name="sql" rows="8" cols="80"><%= sql %></textarea>
</td>
</tr>
</table>
<table width="585" border="0" cellspacing="0" cellpadding="0" bordercolor="#808080" bordercolorlight="#C0C0C0" bordercolordark="#F6F6F6">
<tr height="30">
<td align="center">
<input type="button" value="Data View" onclick="checkFiled2()">
</td>
</tr>
</table>
<%
if( sql != null && !sql.equals("") ) {
%>
<table width="585" border="1" cellspacing="0" cellpadding="0" bordercolor="#808080" bordercolorlight="#C0C0C0" bordercolordark="#F6F6F6">
<%
try {
ps = conn.prepareStatement(sql);
rs = ps.executeQuery();
ResultSetMetaData rsmd = rs.getMetaData();
int cnt = rsmd.getColumnCount();
out.println("<tr>");
for(int i = 0; i <= cnt; i++) {
if( i == 0 ) out.println("<td bgcolor=\"#C0C0C0\" align=\"center\">No</td>");
else out.println("<td bgcolor=\"#C0C0C0\" align=\"center\">" + rsmd.getColumnLabel(i) + "</td>");
}
int row_cnt = 0;
while( rs.next() ) {
out.println("<tr>");
for(int i = 0; i <= cnt; i++) {
if( i == 0 ) out.println("<td align=\"center\">" + ++row_cnt + "</td>");
else out.println("<td align=\"center\">" + rs.getString(i) + "</td>");
}
out.println("</tr>");
}
if( row_cnt == 0 ) {
out.println("<tr height=\"100\"><td align=\"center\" colspan=\"" + (cnt + 1) + "\">조회 내역이 없습니다.</td></tr>");
}
}
catch(Exception ee) {
out.println("<tr><td bgcolor=\"#C0C0C0\" align=\"center\">Error Message</td></tr>");
out.println("<tr height=\"100\"><td align=\"left\" valign=\"top\">" + ee.getMessage() + "</td></tr>");
}
%>
</table>
<%
}
if( rs != null ) try{ rs.close(); rs = null; } catch (Exception ex) {}
if( ps != null ) try{ ps.close(); ps = null; } catch (Exception ex) {}
if( conn != null ) try { conn.close(); conn = null; } catch(Exception e) {}
}
}
}
%>
</form>
</body>
</html>

@ -0,0 +1,24 @@
<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8" %>
<%@ page import="java.awt.*" %>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Font 정보</title>
<style>
body { font-family:sans-serif, arial; font-size:9pt; }
table { font-family:sans-serif, arial; font-size:9pt; }
</style>
<body>
<%
//System.setProperty("sun.java2d.fontpath", "font_location_path");
// System.setProperty("java.awt.headless", "true");
String[] fontNames = GraphicsEnvironment.getLocalGraphicsEnvironment().getAvailableFontFamilyNames();
for (int i=0; i<fontNames.length; i++)
{
out.println(fontNames[i]+"<br>");
}
%>
</body>
</html>

@ -0,0 +1,19 @@
<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8" %>
<%@ page import="java.net.*" %>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Hostname 확인</title>
<style>
body { font-family:sans-serif, arial; font-size:9pt; }
</style>
</head>
<body style="margin:10">
<h2>Hostname Check</h2>
Hostname : [<%= InetAddress.getLocalHost().getHostName() %>]<br>
AppPath : [<%= getServletContext().getRealPath("/") %>]
</body>
</html>

@ -0,0 +1,100 @@
<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8" %>
<%@ page import="java.util.jar.*, java.io.File" %>
<%
String appPath = "";
try { appPath = request.getRealPath("/"); } catch(Exception e) {}
if( appPath == null || appPath.equals("") )
try { appPath = this.getClass().getResource("/").getPath(); } catch(Exception e) {}
boolean checkFlag = false;
String jar = request.getParameter("jar");
String version = "";
if( jar == null || jar.equalsIgnoreCase("null") || jar.equals("") ) {
checkFlag = false;
jar = appPath + "WEB-INF" + File.separator + "lib" + File.separator + "UbiServer.jar";
}
else {
try {
JarFile fJar = new JarFile(jar);
Manifest manifest = fJar.getManifest();
Attributes attrs = manifest.getMainAttributes();
version = attrs.getValue("version");
}
catch(Exception e) {
version = e.getMessage();
}
finally {
checkFlag = true;
}
}
%>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Jar 버전 확인</title>
<style>
body { font-family:sans-serif, arial; font-size:9pt; }
table { font-family:sans-serif, arial; font-size:9pt; }
</style>
<script language="JavaScript">
<!--
function checkVersion() {
if(document.jarcheck.jar.value == "") {
// alert("Please Input URL(ex : /webapp/myapp/WEB-INF/lib/UbiServer.jar)");
alert("Please Input URL(ex : /webapp/WEB-INF/lib/UbiServer.jar)");
document.jarcheck.jar.focus();
return false;
}
else document.jarcheck.submit();
}
//-->
</script>
</head>
<body style="margin:10">
<h2>Jar Version Check</h2>
<form name='jarcheck' method='post' action='./jarcheck.jsp'>
<table width="585" border="1" cellspacing="0" cellpadding="0" bordercolor="#808080" bordercolorlight="#C0C0C0" bordercolordark="#F6F6F6">
<tr height="30">
<td align="center" bgcolor="#C0C0C0" width="120px" style='padding:3px'>App Home</td>
<td align="left" style='padding:3px'><%= appPath %></td>
</tr>
<tr height="30">
<td align="center" bgcolor="#C0C0C0" width="120px" style='padding:3px'>Jar File</td>
<td align="left" style='padding:3px'>
<input type="text" name="jar" size="55" value="<%= jar %>">
</td>
</tr>
<%
if( checkFlag ) {
%>
<tr height="30">
<td align="center" style='padding:3px' colspan='2'><%= version %></td>
</tr>
<%
}
%>
</table>
<table width="585" border="0" cellspacing="0" cellpadding="0" bordercolor="#808080" bordercolorlight="#C0C0C0" bordercolordark="#F6F6F6">
<tr height="30">
<td align="center">
<input type="button" value="Version CHECK" onclick="checkVersion()">
</td>
</tr>
</table>
</form>
</body>
</html>

@ -0,0 +1,26 @@
<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8" %>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Java Environment 확인</title>
<style>
body {
font-size:10pt;
font-family: Arial;
color: #000000;
line-height:18px;
}
</style>
<body>
<%
java.util.Enumeration e = System.getProperties().propertyNames();
while(e.hasMoreElements()) {
String key = (String)e.nextElement();
if( key.indexOf("class.path") != -1 || key.indexOf("loader") != -1 ) out.print("<li><font color='red'>" + key + " : " + System.getProperty(key) + "</font></li>");
else out.print("<li>" + key + " : " + System.getProperty(key) + "<br>");
}
%>
</body>
</html>

@ -0,0 +1,134 @@
<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8" %>
<%@ page import="java.net.*, java.io.*" %>
<%
String NL = System.getProperty("line.separator");
String sReqType = request.getParameter("req_type");
String sUrl = request.getParameter("url");
if( sReqType == null || sReqType.equalsIgnoreCase("null") ) {
sReqType = "GET";
}
if( sUrl == null || sUrl.equalsIgnoreCase("null") ) {
sUrl = "";
}
StringBuffer contents = new StringBuffer();
if( !sUrl.equals("") ) {
try {
URL url = new URL(sUrl);
contents.append(">> URL(" + sUrl + ") Connecting...").append(NL);
HttpURLConnection uc = (HttpURLConnection)url.openConnection();
uc.setDoOutput(true);
uc.setDoInput(true);
uc.setUseCaches(false);
uc.setRequestMethod(sReqType);
StringBuffer sb = new StringBuffer();
InputStream is = uc.getInputStream();
contents.append(">> Reading Contents...").append(NL);
BufferedReader in = new BufferedReader(new InputStreamReader(is));
int buffSize = 1024 * 8;
char[] buff;
int insize = 0;
while ((insize = in.read(buff = new char[buffSize], 0, buffSize)) != -1) {
sb.append((new String(buff, 0, insize)));
}
String receivestr = sb.toString().trim();
contents.append(">> Contents").append(NL);
contents.append("------------------------------------------").append(NL);
contents.append(sb.toString().trim()).append(NL);
contents.append("------------------------------------------").append(NL);
contents.append(">> End").append(NL);
}
catch(FileNotFoundException fnfe){
contents.append(">> FileNotFoundException").append(NL);
contents.append("------------------------------------------").append(NL);
contents.append(fnfe.getMessage()).append(NL);
contents.append("------------------------------------------").append(NL);
contents.append(">> End").append(NL);
fnfe.printStackTrace();
}
catch(Exception e){
contents.append(">> Exception").append(NL);
contents.append("------------------------------------------").append(NL);
contents.append(e.getMessage()).append(NL);
contents.append("------------------------------------------").append(NL);
contents.append(">> End").append(NL);
e.printStackTrace();
}
}
%>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>URL 확인</title>
<style>
body { font-family:sans-serif, arial; font-size:9pt; }
table { font-family:sans-serif, arial; font-size:9pt; }
</style>
<script language="JavaScript">
<!--
function checkURL() {
if(document.urlcheck.url.value == "") {
alert("Please Input URL(ex : http://localhost:8080/UbiData)");
document.urlcheck.url.focus();
return false;
}
else document.urlcheck.submit();
}
//-->
</script>
</head>
<body style="margin:10">
<h2>Check URL<h2>
<form name='urlcheck' method='post' action='./urlcheck.jsp'>
<table width="585" border="1" cellspacing="0" cellpadding="0" bordercolor="#808080" bordercolorlight="#C0C0C0" bordercolordark="#F6F6F6">
<tr height="20">
<td align="center" bgcolor="#C0C0C0" width="100" style='padding:3px'>REQ TYPE</td>
<td align="left" style='padding:3px; padding-left:6px;'' >
<select name="req_type">
<option value="GET" <%= sReqType.equals("GET")?"selected":"" %>>GET</option>
<option value="POST" <%= sReqType.equals("POST")?"selected":"" %>>POST</option>
</select>
</td>
</tr>
<tr height="20">
<td align="center" bgcolor="#C0C0C0" width="100" style='padding:3px'>URL</td>
<td align="center" style='padding:3px'>
<input type="text" name="url" size="70" value="<%= sUrl %>">
</td>
</tr>
</table>
<table width="585" border="0" cellspacing="0" cellpadding="0" bordercolor="#808080" bordercolorlight="#C0C0C0" bordercolordark="#F6F6F6">
<tr height="30">
<td align="center">
<input type="button" value="URL CHECK" onclick="checkURL()">
</td>
</tr>
</table>
</form>
Result<br>
<textarea name="sql" rows="20" cols="84"><%= contents.toString() %></textarea>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 979 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save