아래 문제는 해결 되었습니다.
자답합니다.
비슷한 문제로 고민할 분들이 있을 것 같아 올립니다.
제 경우에 아래 에러가 발생했던 것은 가우스4.0 환경설정이 제대로 안된 상태에서
소스를 실행해서 였습니다.
4.0에서는 3.5와 다르게
WEB-INF/lib 아래에 guace4.jar 파일 설치 외에
WEB-INF/ 아래에 가우스 설정관련 파일이 추가되네요.(gauce.xml, gauce.properties,...)
그리고, web.xml 파일에 Gaucefilter 관련 추가해주어야 하는 내용이 있습니다.<--관련 에러 발생
>게시판을 이용해 주셔서 감사합니다.
>다음양식에 맞게 입력해주세요.
>
>* 고객시스템명 : 삼성SDI 업무표준
>* GAUCE 버전 : 4.0
>* WAS 종류(WebLogic 등등) : 웹로직11
>* DB 종류 : 오라클9
>* 문의 유형(질문/요청/참조) : 질문
>* 내용 :
>
>안녕하세요,
>방금 전화드렸던 하충선이라고 합니다.
>최초 시작 시에 아래와 같은 에러가 나면서 진행이 안되네요.
>
>1) 에러 메세지
>url is /console/console.portal?_nfpb=true&_pageLabel=AppDeploymentsControlPage.>
><Jun 28, 2012 2:28:04 PM KST> <Error> <HTTP> <BEA-101020> <[ServletContext@429791646[app:gsmm module:gsm
>c-version:null]] Servlet failed with Exception
>java.lang.NullPointerException
> at com.gauce.ServiceLoader.restoreService(Unknown Source)
> at com.sdi.bizint.Bizint_UserInfo.service(Bizint_UserInfo.java:285)
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
> at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java
> at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
> Truncated. see log file for complete stacktrace
>>
>
>2) 해당 소스
>
>package com.sdi.bizint;
>
>import java.io.IOException;
>import java.sql.Connection;
>import java.sql.PreparedStatement;
>import java.sql.ResultSet;
>import java.sql.SQLException;
>import java.util.MissingResourceException;
>
>import javax.servlet.http.HttpServlet;
>import javax.servlet.http.HttpServletRequest;
>import javax.servlet.http.HttpServletResponse;
>import javax.servlet.http.HttpSession;
>
>import com.gauce.GauceContext;
>import com.gauce.GauceDataRow;
>import com.gauce.GauceDataSet;
>import com.gauce.GauceException;
>import com.gauce.GauceService;
>import com.gauce.engine.H;
>import com.gauce.http.HttpGauceResponse;
>import com.gauce.io.GauceRequest;
>import com.gauce.io.GauceResponse;
>import com.gauce.log.Logger;
>import com.sdi.common.SdiString;
>import com.sdi.common.SdiUtil;
>import com.sdi.common.comFunc;
>
>
>public class Bizint_UserInfo extends HttpServlet {
>
> private static final long serialVersionUID = 1L;
>
> public void service(HttpServletRequest request, HttpServletResponse response) throws IOException
> {
> //ServiceLoader loader = new ServiceLoader(request, response);
> com.gauce.ServiceLoader loader = new com.gauce.ServiceLoader(request, response);
>
> HttpSession session = request.getSession();
> GauceService service = null;
> GauceContext context = null;
> Logger m_logger = null;
> GauceDataSet dSet = null;
> GauceRequest req = null;
> GauceResponse res = null;
>
> Connection conn = null;
> String TR_TYPE = null;
>
>
> try {
> //throw myException;
> //service = loader.newService(com.sdi.common.comFunc.getProperty("GS_DOMAIN"));
> service = loader.newService(comFunc.getProperty("GS_DOMAIN"));
> context = service.getContext();
> m_logger = context.getLogger();
> req = service.getGauceRequest();
> res = service.getGauceResponse();
>
> conn = SdiUtil.getSdiConnection(comFunc.getProperty("GS_DB_02"));
>
> PreparedStatement select = null;
> dSet = req.getGauceDataSet("OUTPUT");
> res.enableFirstRow(dSet);
>
> .........................
>
>
> } catch (SQLException se) {
> System.out.println("Main Job SQL Error");
> comFunc.rollback(conn);
> se.printStackTrace();
>
> } catch (MissingResourceException e) {
> // TODO Auto-generated catch block
> e.printStackTrace();
> } catch (H e) {
> // TODO Auto-generated catch block
> e.printStackTrace();
>
> }finally {
> if (conn != null) {
> try {conn.close();} catch (Exception e) {}
> }
> loader.restoreService(service);
> }
>