0 Replies Latest reply on Sep 6, 2003 8:10 AM by raj797

    Problem..Please

    raj797


      Hi ,

      please solve this problem.

      when we create war file is it mandatory, defining web.xml with all ejb-reference.
      i kept web.xml with out defining any ejb-references.


      Class Cast Exception. when i access the following test.jsp


      //test.jsp

      TstClient clnt=new TstClient();
      String code= clnt.getCode();





      //TstClient.java


      public String getCode()
      {
      Properties properties = new Properties();
      String s = "x";
      String s1 = "y";

      properties.put("java.naming.factory.initial", "org.jnp.interfaces.NamingContextFactory");
      properties.put("java.naming.provider.url", "jnp://localhost:1099/");
      properties.put("java.naming.security.principal", s);
      System.out.println("entered in server lookup method-----in try3333");
      properties.put("java.naming.security.credentials", s1);
      InitialContext lContext=new InitialContext(properties);
      Object lObject = lContext.lookup( "/sf/ResourceSF" );
      ResourceSFHome ResourceSFHome = (ResourceSFHome)PortableRemoteObject.narrow(lObject,ResourceSFHome.class);
      ResourceSF ResourceSF = ResourceSFHome.create();
      String val=ResourceSF.getCode();
      return val;
      }


      following exception is comming


      D:\javasoft\jboss-3.2.2RC2\bin>run -c all
      ===============================================================================
      .
      JBoss Bootstrap Environment
      .
      JBOSS_HOME: D:\javasoft\jboss-3.2.2RC2\..
      .
      JAVA: d:\javasoft\bea\jdk131\bin\java
      .
      JAVA_OPTS: -Dprogram.name=run.bat
      .
      CLASSPATH: ;d:\javasoft\bea\jdk131\lib\tools.jar;D:\javasoft\jboss-3.2.2RC2\bin\run.jar;D:\javasoft\jboss-3.2.2RC2\server\all\WEB-INF\classes;..\server\all\lib\hibernate.jar;..\server\all\lib\commons-pool.jar;..\server\all\lib\commons-collections.jar;..\server\all\lib\commons-lang.jar;..\server\all\lib\commons-logging.jar;..\server\all\lib\jcs.jar;..\server\all\lib\odmg.jar;..\server\all\lib\xalan.jar;..\server\all\lib\xerces.jar;..\server\all\lib\xml-apis.jar;..\server\all\lib\xml4j_1_1_16.jar;..\server\all\lib\jasperreports.jar;..\server\all\lib\itext-0.81.jar;..\server\all\lib\hsqldb.jar;..\server\all\lib\bcel.jar;..\server\all\lib\jdom.jar;..\server\all\lib\dom4j.jar;..\server\all\lib\dom4j-full.jar;..\server\all\lib\xmlx.jar
      .
      ===============================================================================
      .
      18:23:26,261 INFO [Server] Starting JBoss (MX MicroKernel)...
      18:23:26,261 INFO [Server] Release ID: JBoss [WonderLand] 3.2.2RC2 (build: CVSTag=JBoss_3_2_2_RC2 date=200307231513)
      18:23:26,261 INFO [Server] Home Dir: D:\javasoft\jboss-3.2.2RC2
      18:23:26,261 INFO [Server] Home URL: file:/D:/javasoft/jboss-3.2.2RC2/
      18:23:26,261 INFO [Server] Library URL: file:/D:/javasoft/jboss-3.2.2RC2/lib/
      18:23:26,276 INFO [Server] Patch URL: null
      18:23:26,276 INFO [Server] Server Name: all
      18:23:26,276 INFO [Server] Server Home Dir: D:\javasoft\jboss-3.2.2RC2\server\all
      18:23:26,276 INFO [Server] Server Home URL: file:/D:/javasoft/jboss-3.2.2RC2/server/all/
      18:23:26,276 INFO [Server] Server Data Dir: D:\javasoft\jboss-3.2.2RC2\server\all\data
      18:23:26,276 INFO [Server] Server Temp Dir: D:\javasoft\jboss-3.2.2RC2\server\all\tmp
      18:23:26,276 INFO [Server] Server Config URL: file:/D:/javasoft/jboss-3.2.2RC2/server/all/conf/
      18:23:26,276 INFO [Server] Server Library URL: file:/D:/javasoft/jboss-3.2.2RC2/server/all/lib/
      18:23:26,292 INFO [Server] Root Deployemnt Filename: jboss-service.xml
      18:23:26,292 INFO [Server] Starting General Purpose Architecture (GPA)...
      18:23:27,589 INFO [ServerInfo] Java version: 1.3.1,Sun Microsystems Inc.
      18:23:27,589 INFO [ServerInfo] Java VM: Java HotSpot(TM) Client VM 1.3.1-b24,Sun Microsystems Inc.
      18:23:27,589 INFO [ServerInfo] OS-System: Windows 2000 5.0,x86
      18:23:27,651 INFO [ServiceController] Controller MBean online
      18:23:27,730 INFO [MainDeployer] Creating
      18:23:27,839 INFO [MainDeployer] Created
      18:23:27,839 INFO [MainDeployer] Starting
      18:23:27,839 INFO [MainDeployer] Started
      18:23:27,964 INFO [JARDeployer] Creating
      18:23:27,995 INFO [JARDeployer] Created
      18:23:27,995 INFO [JARDeployer] Starting
      18:23:27,995 INFO [MainDeployer] Adding deployer: org.jboss.deployment.JARDeployer@6df84b
      18:23:27,995 INFO [JARDeployer] Started
      18:23:28,011 INFO [SARDeployer] Creating
      18:23:28,026 INFO [SARDeployer] Created
      18:23:28,026 INFO [SARDeployer] Starting
      18:23:28,042 INFO [MainDeployer] Adding deployer: org.jboss.deployment.SARDeployer@763f5d
      18:23:28,058 INFO [SARDeployer] Started
      18:23:28,058 INFO [Server] Core system initialized
      18:23:28,089 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/conf/jboss-service.xml
      18:23:32,542 INFO [LocalJBossServerDomain] Creating
      18:23:32,589 INFO [LocalJBossServerDomain] Created
      18:23:32,589 INFO [Log4jService] Creating
      18:23:32,605 INFO [Log4jService$URLWatchTimerTask] Configuring from URL: resource:log4j.xml
      18:23:32,808 INFO [Log4jService] Created
      18:23:32,823 INFO [WebService] Creating
      18:23:32,823 INFO [WebService] Created
      18:23:32,839 INFO [NamingService] Creating
      18:23:32,855 INFO [NamingService] Created
      18:23:32,886 INFO [JNDIView] Creating
      18:23:32,902 INFO [JNDIView] Created
      18:23:32,902 INFO [SecurityConfig] Creating
      18:23:32,917 INFO [SecurityConfig] Created
      18:23:32,933 INFO [XMLLoginConfig] Creating
      18:23:32,933 INFO [XMLLoginConfig] Created
      18:23:32,948 INFO [JaasSecurityManagerService] Creating
      18:23:32,964 INFO [JaasSecurityManagerService] Created
      18:23:32,980 INFO [TransactionManagerService] Creating
      18:23:32,980 INFO [TransactionManagerService] Created
      18:23:33,011 INFO [EJBDeployer] Creating
      18:23:33,027 INFO [EJBDeployer] Created
      18:23:33,042 INFO [JRMPInvoker] Creating
      18:23:33,042 INFO [JRMPInvoker] Created
      18:23:33,058 INFO [LocalInvoker] Creating
      18:23:33,073 INFO [LocalInvoker] Created
      18:23:33,089 INFO [PooledInvoker] Creating
      18:23:33,105 INFO [PooledInvoker] Created
      18:23:33,105 INFO [ClientUserTransactionService] Creating
      18:23:33,120 INFO [ClientUserTransactionService] Created
      18:23:33,136 INFO [EARDeployer] Creating
      18:23:33,152 INFO [EARDeployer] Created
      18:23:33,167 INFO [BeanShellSubDeployer] Creating
      18:23:33,198 INFO [BeanShellSubDeployer] Created
      18:23:33,214 INFO [URLDeploymentScanner] Creating
      18:23:33,230 INFO [URLDeploymentScanner] Created
      18:23:33,245 INFO [LocalJBossServerDomain] Starting
      18:23:33,245 INFO [LocalJBossServerDomain] Started
      18:23:33,261 INFO [Log4jService] Starting
      18:23:33,261 INFO [Log4jService] Started
      18:23:33,277 INFO [WebService] Starting
      18:23:33,292 INFO [AbstractDeploymentScanner$ScannerThread] Running
      18:23:33,386 INFO [WebService] Started WebServer with address: 192.168.1.131:8083
      18:23:33,402 INFO [WebService] Using RMI server codebase: http://DSRSO:8083/
      18:23:33,417 INFO [WebService] Started
      18:23:33,417 INFO [NamingService] Starting
      18:23:33,433 INFO [NamingService] Starting jnp server
      18:23:33,620 INFO [NamingService] Started jnpPort=1099, rmiPort=0, backlog=50, bindAddress=null, Client SocketFactory=null, Server SocketFactory=null
      18:23:33,652 WARN [NamingService] Context.PROVIDER_URL in server jndi.properties, url=localhost:1099
      18:23:33,667 INFO [NamingService] Listening on port 1099
      18:23:33,698 INFO [NamingService] Started
      18:23:33,698 INFO [JNDIView] Starting
      18:23:33,714 INFO [JNDIView] Started
      18:23:33,730 INFO [SecurityConfig] Starting
      18:23:33,730 INFO [SecurityConfig] Started
      18:23:33,761 INFO [XMLLoginConfig] Starting
      18:23:33,823 INFO [XMLLoginConfig] Started
      18:23:33,823 INFO [JaasSecurityManagerService] Starting
      18:23:33,855 INFO [JaasSecurityManagerService] Started
      18:23:33,870 INFO [TransactionManagerService] Starting
      18:23:33,917 INFO [TransactionManagerService] Started
      18:23:33,933 INFO [EJBDeployer] Starting
      18:23:33,964 INFO [MainDeployer] Adding deployer: org.jboss.ejb.EJBDeployer@1bfb30
      18:23:33,964 INFO [EJBDeployer] Started
      18:23:33,980 INFO [JRMPInvoker] Starting
      18:23:34,136 INFO [JRMPInvoker] Started
      18:23:34,152 INFO [LocalInvoker] Starting
      18:23:34,152 INFO [LocalInvoker] Started
      18:23:34,167 INFO [PooledInvoker] Starting
      18:23:34,214 INFO [PooledInvoker] Started
      18:23:34,230 INFO [ClientUserTransactionService] Starting
      18:23:34,292 INFO [ClientUserTransactionService] Started
      18:23:34,292 INFO [EARDeployer] Starting
      18:23:34,308 INFO [MainDeployer] Adding deployer: org.jboss.deployment.EARDeployer@269997
      18:23:34,323 INFO [EARDeployer] Started
      18:23:34,323 INFO [BeanShellSubDeployer] Starting
      18:23:34,339 INFO [MainDeployer] Adding deployer: org.jboss.varia.deployment.BeanShellSubDeployer@7f92f5
      18:23:34,355 INFO [BeanShellSubDeployer] Started
      18:23:34,370 INFO [URLDeploymentScanner] Starting
      18:23:34,433 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/http-invoker.sar/
      18:23:34,495 INFO [SARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/http-invoker.sar/invoker.war/
      18:23:34,542 INFO [MainDeployer] deployment waiting for deployer: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/http-invoker.sar/invoker.war/
      18:23:34,714 INFO [HttpInvoker] Creating
      18:23:34,730 INFO [HttpInvoker] Created
      18:23:34,730 INFO [HttpInvokerHA] Creating
      18:23:34,745 INFO [HttpInvokerHA] Created
      18:23:34,761 INFO [HttpProxyFactory] Creating
      18:23:34,761 INFO [HttpProxyFactory] Created
      18:23:34,777 INFO [HttpProxyFactory] Creating
      18:23:34,792 INFO [HttpProxyFactory] Created
      18:23:34,808 INFO [HttpInvoker] Starting
      18:23:34,855 INFO [HttpInvoker] Started
      18:23:34,855 INFO [HttpInvokerHA] Starting
      18:23:34,870 INFO [HttpInvokerHA] Started
      18:23:34,886 INFO [HttpProxyFactory] Starting
      18:23:34,948 INFO [HttpProxyFactory] Started
      18:23:34,948 INFO [HttpProxyFactory] Starting
      18:23:34,964 INFO [HttpProxyFactory] Started
      18:23:35,058 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/http-invoker.sar/
      18:23:35,073 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jboss-jca.sar
      18:23:35,230 INFO [RARDeployer] Creating
      18:23:35,245 INFO [RARDeployer] Created
      18:23:35,261 INFO [XSLSubDeployer] Creating
      18:23:36,042 INFO [XSLSubDeployer] Created templates: org.apache.xalan.templates.StylesheetRoot@56747b
      18:23:36,042 INFO [XSLSubDeployer] Created
      18:23:36,058 INFO [RARDeployer] Starting
      18:23:36,073 INFO [MainDeployer] Adding deployer: org.jboss.resource.RARDeployer@7976c1
      18:23:36,073 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/http-invoker.sar/invoker.war/
      18:23:36,089 INFO [MainDeployer] deployment waiting for deployer: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/http-invoker.sar/invoker.war/
      18:23:36,105 INFO [MainDeployer] Deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/http-invoker.sar/invoker.war/ is waiting for an appropriate deployer.
      18:23:36,105 INFO [RARDeployer] Started
      18:23:36,120 INFO [XSLSubDeployer] Starting
      18:23:36,136 INFO [MainDeployer] Adding deployer: org.jboss.deployment.XSLSubDeployer@aeb74
      18:23:36,136 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/http-invoker.sar/invoker.war/
      18:23:36,152 INFO [MainDeployer] deployment waiting for deployer: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/http-invoker.sar/invoker.war/
      18:23:36,167 INFO [MainDeployer] Deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/http-invoker.sar/invoker.war/ is waiting for an appropriate deployer.
      18:23:36,167 INFO [XSLSubDeployer] Started
      18:23:36,323 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jboss-jca.sar
      18:23:36,323 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jboss-net.sar/
      18:23:36,355 INFO [SARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jboss-net.sar/axis.jar
      18:23:36,370 INFO [SARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jboss-net.sar/commons-discovery.jar
      18:23:36,386 INFO [SARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jboss-net.sar/commons-logging.jar
      18:23:36,402 INFO [SARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jboss-net.sar/jaxrpc.jar
      18:23:36,417 INFO [SARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jboss-net.sar/jboss-net.jar
      18:23:36,433 INFO [SARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jboss-net.sar/jboss-net.war/
      18:23:36,433 INFO [SARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jboss-net.sar/jmx-net.wsr/
      18:23:36,448 INFO [SARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jboss-net.sar/saaj.jar
      18:23:36,464 INFO [SARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jboss-net.sar/wsdl4j.jar
      18:23:36,948 WARN [MainDeployer] The manifest entry in file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jboss-net.sar/commons-logging.jar references URL file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jboss-net.sar/log4j.jar which could not be opened, entry ignored
      18:23:36,964 WARN [MainDeployer] The manifest entry in file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jboss-net.sar/commons-logging.jar references URL file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jboss-net.sar/log4j-core.jar which could not be opened, entry ignored
      18:23:37,277 INFO [MainDeployer] deployment waiting for deployer: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jboss-net.sar/jboss-net.war/
      18:23:37,292 INFO [MainDeployer] deployment waiting for deployer: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jboss-net.sar/jmx-net.wsr/
      18:23:37,433 INFO [AxisService] Creating
      18:23:37,448 INFO [AxisService] Created
      18:23:37,464 INFO [Adaptor] Creating
      18:23:37,480 INFO [Adaptor] Created
      18:23:37,495 INFO [AxisService] Starting
      18:23:38,917 INFO [MainDeployer] Adding deployer: org.jboss.net.axis.server.AxisService@33788d
      18:23:38,933 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/http-invoker.sar/invoker.war/
      18:23:38,948 INFO [MainDeployer] deployment waiting for deployer: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/http-invoker.sar/invoker.war/
      18:23:38,948 INFO [MainDeployer] Deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/http-invoker.sar/invoker.war/ is waiting for an appropriate deployer.
      18:23:38,964 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jboss-net.sar/jboss-net.war/
      18:23:38,980 INFO [MainDeployer] deployment waiting for deployer: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jboss-net.sar/jboss-net.war/
      18:23:38,980 INFO [MainDeployer] Deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jboss-net.sar/jboss-net.war/ is waiting for an appropriate deployer.
      18:23:38,995 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jboss-net.sar/jmx-net.wsr/
      18:23:39,058 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jboss-net.sar/jmx-net.wsr/
      18:23:39,073 INFO [AxisService] Started
      18:23:39,073 INFO [Adaptor] Starting
      18:23:39,089 INFO [Adaptor] Started
      18:23:39,105 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jboss-net.sar/
      18:23:39,120 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossha-httpsession.sar/
      18:23:39,167 INFO [SARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossha-httpsession.sar/ClusteredHttpSessionEB.jar/
      18:23:39,870 INFO [EjbModule] Creating
      18:23:39,902 INFO [EjbModule] Deploying ClusteredHTTPSession
      18:23:40,183 INFO [EjbModule] Created
      18:23:40,245 INFO [EjbModule] Starting
      18:23:40,261 INFO [EjbModule] Started
      18:23:40,277 INFO [EJBDeployer] Deployed: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossha-httpsession.sar/ClusteredHttpSessionEB.jar/
      18:23:40,386 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossha-httpsession.sar/
      18:23:40,386 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/
      18:23:40,433 INFO [SARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/ant.jar
      18:23:40,448 INFO [SARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/bootstrap.jar
      18:23:40,448 INFO [SARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/catalina.jar
      18:23:40,480 INFO [SARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/commons-beanutils.jar
      18:23:40,480 INFO [SARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/commons-collections.jar
      18:23:40,495 INFO [SARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/commons-digester.jar
      18:23:40,511 INFO [SARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/commons-logging.jar
      18:23:40,527 INFO [SARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/jakarta-regexp-1.2.jar
      18:23:40,527 INFO [SARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/jasper-compiler.jar
      18:23:40,542 INFO [SARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/jasper-runtime.jar
      18:23:40,558 INFO [SARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/naming-common.jar
      18:23:40,573 INFO [SARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/naming-resources.jar
      18:23:40,573 INFO [SARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/servlets-common.jar
      18:23:40,605 INFO [SARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/servlets-default.jar
      18:23:40,605 INFO [SARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/servlets-invoker.jar
      18:23:40,620 INFO [SARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/servlets-webdav.jar
      18:23:40,636 INFO [SARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/tomcat-coyote.jar
      18:23:40,652 INFO [SARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/tomcat-http11.jar
      18:23:40,667 INFO [SARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/tomcat-jk2.jar
      18:23:40,667 INFO [SARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/tomcat-util.jar
      18:23:40,683 INFO [SARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/tomcat41-service.jar
      18:23:41,183 WARN [MainDeployer] The manifest entry in file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/tomcat-jk2.jar references URL file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/workers.jar which could not be opened, entry ignored
      18:23:41,183 WARN [MainDeployer] The manifest entry in file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/tomcat-jk2.jar references URL file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/classes/ which could not be opened, entry ignored
      18:23:41,230 WARN [MainDeployer] The manifest entry in file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/tomcat-jk2.jar references URL file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/log4j.jar which could not be opened, entry ignored
      18:23:41,683 WARN [MainDeployer] The manifest entry in file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/commons-logging.jar references URL file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/log4j.jar which could not be opened, entry ignored
      18:23:41,698 WARN [MainDeployer] The manifest entry in file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/commons-logging.jar references URL file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/log4j-core.jar which could not be opened, entry ignored
      18:23:42,073 WARN [MainDeployer] The manifest entry in file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/tomcat-util.jar references URL file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/log4j.jar which could not be opened, entry ignored
      18:23:42,089 WARN [MainDeployer] The manifest entry in file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/tomcat-util.jar references URL file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/log4j-core.jar which could not be opened, entry ignored
      18:23:42,105 WARN [MainDeployer] The manifest entry in file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/tomcat-util.jar references URL file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/mx4j.jar which could not be opened, entry ignored
      18:23:42,339 WARN [MainDeployer] The manifest entry in file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/bootstrap.jar references URL file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/commons-daemon.jar which could not be opened, entry ignored
      18:23:42,620 WARN [MainDeployer] The manifest entry in file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/ant.jar references URL file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/xml-apis.jar which could not be opened, entry ignored
      18:23:42,620 WARN [MainDeployer] The manifest entry in file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/ant.jar references URL file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/xercesImpl.jar which could not be opened, entry ignored
      18:23:42,636 WARN [MainDeployer] The manifest entry in file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/ant.jar references URL file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/optional.jar which could not be opened, entry ignored
      18:23:42,652 WARN [MainDeployer] The manifest entry in file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/ant.jar references URL file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/xalan.jar which could not be opened, entry ignored
      18:23:42,886 INFO [EmbeddedCatalinaService41] Creating
      18:23:42,902 INFO [EmbeddedCatalinaService41] Created
      18:23:42,933 INFO [EmbeddedCatalinaService41] Starting
      18:23:44,027 INFO [STDOUT] Apache Tomcat/4.1.24-LE-jdk14
      18:23:44,214 INFO [Http11Protocol] Initializing Coyote HTTP/1.1 on port 8080
      18:23:44,245 INFO [Http11Protocol] Starting Coyote HTTP/1.1 on port 8080
      18:23:44,402 WARN [JkMain] No properties file found D:\javasoft\jboss-3.2.2RC2\server\all\conf\jk2.properties
      18:23:44,495 INFO [ChannelSocket] JK2: ajp13 listening on 0.0.0.0/0.0.0.0:8009
      18:23:44,511 INFO [JkMain] Jk running ID=0 time=15/94 config=null
      18:23:44,527 INFO [EmbeddedCatalinaService41] OK
      18:23:44,527 INFO [MainDeployer] Adding deployer: org.jboss.web.catalina.EmbeddedCatalinaService41@345b43
      18:23:44,542 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/http-invoker.sar/invoker.war/
      18:23:44,652 INFO [EmbeddedCatalinaService41] deploy, ctxPath=/invoker, warUrl=file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/http-invoker.sar/invoker.war/
      18:23:45,308 INFO [Engine] ContextConfig[/invoker]: Added certificates -> request attribute Valve
      18:23:45,402 INFO [Engine] ContextConfig[/invoker]: Configured an authenticator for method BASIC
      18:23:45,448 WARN [EmbeddedCatalinaService41] Unable to invoke setDelegate on class loader:org.jboss.web.catalina.WebCtxLoader$ENCLoader@7b1d64
      18:23:45,464 INFO [Engine] StandardManager[/invoker]: Seeding random number generator class java.security.SecureRandom
      18:23:45,464 INFO [Engine] StandardManager[/invoker]: Seeding of random number generator has been completed
      18:23:45,652 INFO [Engine] StandardWrapper[/invoker:default]: Loading container servlet default
      18:23:45,714 INFO [Engine] StandardWrapper[/invoker:invoker]: Loading container servlet invoker
      18:23:46,480 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/http-invoker.sar/invoker.war/
      18:23:46,495 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jboss-net.sar/jboss-net.war/
      18:23:46,558 INFO [EmbeddedCatalinaService41] deploy, ctxPath=/jboss-net, warUrl=file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jboss-net.sar/jboss-net.war/
      18:23:46,667 INFO [Engine] ContextConfig[/jboss-net]: Added certificates -> request attribute Valve
      18:23:46,683 INFO [Engine] ContextConfig[/jboss-net]: Configured an authenticator for method BASIC
      18:23:46,714 WARN [EmbeddedCatalinaService41] Unable to invoke setDelegate on class loader:org.jboss.web.catalina.WebCtxLoader$ENCLoader@45e2cf
      18:23:46,730 INFO [Engine] StandardManager[/jboss-net]: Seeding random number generator class java.security.SecureRandom
      18:23:46,745 INFO [Engine] StandardManager[/jboss-net]: Seeding of random number generator has been completed
      18:23:46,761 INFO [Engine] StandardWrapper[/jboss-net:default]: Loading container servlet default
      18:23:46,761 INFO [Engine] StandardWrapper[/jboss-net:invoker]: Loading container servlet invoker
      18:23:47,027 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jboss-net.sar/jboss-net.war/
      18:23:47,027 INFO [EmbeddedCatalinaService41] Started
      18:23:47,042 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jbossweb-tomcat41.sar/
      18:23:47,058 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jms/jbossmq-httpil.sar/
      18:23:47,089 INFO [SARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/
      18:23:47,230 INFO [EmbeddedCatalinaService41] deploy, ctxPath=/jbossmq-httpil, warUrl=file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/
      18:23:47,339 INFO [Engine] ContextConfig[/jbossmq-httpil]: Added certificates -> request attribute Valve
      18:23:47,355 INFO [Engine] ContextConfig[/jbossmq-httpil]: Configured an authenticator for method BASIC
      18:23:47,402 WARN [EmbeddedCatalinaService41] Unable to invoke setDelegate on class loader:org.jboss.web.catalina.WebCtxLoader$ENCLoader@78b64b
      18:23:47,417 INFO [Engine] StandardManager[/jbossmq-httpil]: Seeding random number generator class java.security.SecureRandom
      18:23:47,417 INFO [Engine] StandardManager[/jbossmq-httpil]: Seeding of random number generator has been completed
      18:23:47,433 INFO [Engine] StandardWrapper[/jbossmq-httpil:default]: Loading container servlet default
      18:23:47,448 INFO [Engine] StandardWrapper[/jbossmq-httpil:invoker]: Loading container servlet invoker
      18:23:47,652 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jms/jbossmq-httpil.sar/
      18:23:47,667 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jmx-ejb-connector-server.sar
      18:23:47,745 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jmx-ejb-connector-server.sar
      18:23:47,745 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jmx-invoker-adaptor-server.sar/
      18:23:47,902 INFO [JRMPProxyFactory] Creating
      18:23:47,902 INFO [JRMPProxyFactory] Created
      18:23:47,917 INFO [InvokerAdaptorService] Creating
      18:23:47,933 INFO [InvokerAdaptorService] Created
      18:23:47,948 INFO [JRMPProxyFactory] Starting
      18:23:48,073 INFO [JRMPProxyFactory] Started
      18:23:48,073 INFO [InvokerAdaptorService] Starting
      18:23:48,089 INFO [InvokerAdaptorService] Started
      18:23:48,120 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jmx-invoker-adaptor-server.sar/
      18:23:48,136 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jmx-rmi-adaptor.sar/
      18:23:48,183 INFO [RMIAdaptorService] Creating
      18:23:48,198 INFO [RMIAdaptorService] Created
      18:23:48,214 INFO [RMIAdaptorService] Starting
      18:23:48,339 INFO [RMIAdaptorService] Started
      18:23:48,370 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jmx-rmi-adaptor.sar/
      18:23:48,370 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/management/console-mgr.sar
      18:23:48,449 INFO [SARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/tmp/deploy/tmp13236console-mgr.sar-contents/console-mgr-classes.jar
      18:23:48,542 INFO [PluginManager] Creating
      18:23:48,558 INFO [PluginManager] Created
      18:23:48,574 INFO [PluginManager] Starting
      18:23:48,667 INFO [PluginManager] Started
      18:23:48,683 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/management/console-mgr.sar
      18:23:48,730 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/uuid-key-generator.sar
      18:23:48,824 INFO [UUIDKeyGeneratorFactoryService] Creating
      18:23:48,824 INFO [UUIDKeyGeneratorFactoryService] Created
      18:23:48,839 INFO [UUIDKeyGeneratorFactoryService] Starting
      18:23:48,886 INFO [UUIDKeyGeneratorFactoryService] Started
      18:23:48,902 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/uuid-key-generator.sar
      18:23:48,917 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jboss-local-jdbc.rar
      18:23:49,027 INFO [RARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/tmp/deploy/tmp13238jboss-local-jdbc.rar-contents/jboss-local-jdbc.jar
      18:23:49,355 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jboss-local-jdbc.rar
      18:23:49,370 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jboss-xa-jdbc.rar
      18:23:49,433 INFO [RARMetaData] Loading JBoss Resource Adapter for JDBC 2 XA drivers
      18:23:49,449 INFO [RARMetaData] Required license terms present. See deployment descriptor.
      18:23:49,464 INFO [RARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/tmp/deploy/tmp13239jboss-xa-jdbc.rar-contents/jboss-xa-jdbc.jar
      18:23:49,542 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jboss-xa-jdbc.rar
      18:23:49,542 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jms/jms-ra.rar
      18:23:49,683 INFO [RARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/tmp/deploy/tmp13240jms-ra.rar-contents/jms-ra.jar
      18:23:49,761 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jms/jms-ra.rar
      18:23:49,777 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jms/jms-ds.xml
      18:23:50,089 INFO [XSLSubDeployer] transformed into doc: org.apache.crimson.tree.XmlDocument@5b28c9
      18:23:50,261 INFO [JMSProviderLoader] Creating
      18:23:50,277 INFO [JMSProviderLoader] Created
      18:23:50,292 INFO [ServerSessionPoolLoader] Creating
      18:23:50,292 INFO [ServerSessionPoolLoader] Created
      18:23:50,308 INFO [RARDeployment] Creating
      18:23:50,324 INFO [RARDeployment] Created
      18:23:50,324 INFO [JBossManagedConnectionPool] Creating
      18:23:50,339 INFO [JBossManagedConnectionPool] Created
      18:23:50,355 INFO [JMSProviderLoader] Starting
      18:23:50,402 INFO [JMSProviderLoader] Bound adapter to java:/DefaultJMSProvider
      18:23:50,417 INFO [JMSProviderLoader] Started
      18:23:50,417 INFO [ServerSessionPoolLoader] Starting
      18:23:50,449 INFO [ServerSessionPoolLoader] pool factory StdJMSPool bound to java:/StdJMSPool
      18:23:50,449 INFO [ServerSessionPoolLoader] Started
      18:23:50,464 INFO [RARDeployment] Starting
      18:23:50,542 INFO [RARDeployment] Started
      18:23:50,542 INFO [JBossManagedConnectionPool] Starting
      18:23:50,574 INFO [JBossManagedConnectionPool] Started
      18:23:50,620 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jms/jms-ds.xml
      18:23:50,636 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/mssql-ds.xml
      18:23:50,699 INFO [XSLSubDeployer] transformed into doc: org.apache.crimson.tree.XmlDocument@b34b1
      18:23:50,745 INFO [RARDeployment] Creating
      18:23:50,761 INFO [RARDeployment] Created
      18:23:50,777 INFO [JBossManagedConnectionPool] Creating
      18:23:50,777 INFO [JBossManagedConnectionPool] Created
      18:23:50,792 INFO [RARDeployment] Starting
      18:23:50,824 INFO [RARDeployment] Started
      18:23:50,839 INFO [JBossManagedConnectionPool] Starting
      18:23:50,855 INFO [JBossManagedConnectionPool] Started
      18:23:50,870 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/mssql-ds.xml
      18:23:50,886 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/cache-invalidation-service.xml
      18:23:50,964 INFO [InvalidationManager] Creating
      18:23:50,964 INFO [InvalidationManager] Created
      18:23:50,980 INFO [InvalidationManager] Starting
      18:23:50,995 INFO [InvalidationManager] Starting Invalidation Manager jboss.cache:service=InvalidationManager
      18:23:50,995 INFO [InvalidationManager] Started
      18:23:51,027 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/cache-invalidation-service.xml
      18:23:51,042 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/cluster-service.xml
      18:23:51,230 INFO [ClusterPartition] Creating
      18:23:51,636 INFO [ClusterPartition] Set the JavaGroups logging to log4j with category:org.apache.log4j.Logger@682b72, priority: DEBUG, JavaGroupsLevel: 4
      18:23:51,761 INFO [DefaultPartition] Initializing
      18:23:51,886 INFO [ClusterPartition] Created
      18:23:51,886 INFO [EntityContainer] Creating
      18:23:51,933 INFO [EntityInstancePool] Creating
      18:23:51,949 INFO [EntityInstancePool] Created
      18:23:52,011 INFO [EntityContainer] Created
      18:23:52,027 INFO [ClusteredHTTPSessionService] Creating
      18:23:52,027 INFO [ClusteredHTTPSessionService] Created
      18:23:52,042 INFO [HASessionStateService] Creating
      18:23:52,105 INFO [HASessionStateService] Created
      18:23:52,120 INFO [HANamingService] Creating
      18:23:52,324 INFO [HANamingService] Created
      18:23:52,339 INFO [JGCacheInvalidationBridge] Creating
      18:23:52,339 INFO [JGCacheInvalidationBridge] Created
      18:23:52,355 INFO [JRMPInvokerHA] Creating
      18:23:52,355 INFO [JRMPInvokerHA] Created
      18:23:52,370 INFO [ClusterPartition] Starting
      18:23:52,417 INFO [STDOUT]
      -------------------------------------------------------
      GMS: address is DSRSO:2224
      -------------------------------------------------------
      18:23:54,511 INFO [ClusterPartition] Starting channel
      18:23:54,511 INFO [DefaultPartition] Number of cluster members: 1
      18:23:54,527 INFO [DefaultPartition] Other members: 0
      18:23:54,558 INFO [ClusterPartition] Started ClusterPartition: DefaultPartition
      18:23:54,574 INFO [ClusterPartition] Started
      18:23:54,574 INFO [EntityContainer] Starting
      18:23:54,699 INFO [EntityInstancePool] Starting
      18:23:54,699 INFO [EntityInstancePool] Started
      18:23:54,714 INFO [EntityContainer] Started
      18:23:54,714 INFO [ClusteredHTTPSessionService] Starting
      18:23:54,855 INFO [ClusteredHTTPSessionService] Started
      18:23:54,855 INFO [HASessionStateService] Starting
      18:23:54,870 INFO [HASessionStateService] Started
      18:23:54,886 INFO [HANamingService] Starting
      18:23:55,011 INFO [HANamingService] Listening on 0.0.0.0/0.0.0.0:1100
      18:23:55,042 INFO [HANamingService$AutomaticDiscovery] Listening on 0.0.0.0/0.0.0.0:1102, group=230.0.0.4
      18:23:55,042 INFO [HANamingService] Started
      18:23:55,058 INFO [JGCacheInvalidationBridge] Starting
      18:23:55,074 INFO [InvalidationManager] Subscribing a new cache-invalidation bridge
      18:23:55,089 INFO [JGCacheInvalidationBridge] Started
      18:23:55,105 INFO [JRMPInvokerHA] Starting
      18:23:55,120 INFO [JRMPInvokerHA] Started
      18:23:55,152 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/cluster-service.xml
      18:23:55,167 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/iiop-service.xml
      18:23:55,495 INFO [CorbaORBService] Creating
      18:23:56,699 INFO [CorbaORBService] Created
      18:23:56,730 INFO [IIOPInvoker] Creating
      18:23:56,808 INFO [IIOPInvoker] Created
      18:23:56,824 INFO [CorbaNamingService] Creating
      18:23:56,839 INFO [CorbaNamingService] Created
      18:23:56,855 INFO [CorbaORBService] Starting
      18:23:56,855 INFO [CorbaORBService] Started
      18:23:56,870 INFO [IIOPInvoker] Starting
      18:23:56,902 INFO [IIOPInvoker] Started
      18:23:56,902 INFO [CorbaNamingService] Starting
      18:23:57,183 INFO [CorbaNamingService] Naming: [IOR:000000000000002B49444C3A6F6D672E6F72672F436F734E616D696E672F4E616D696E67436F6E746578744578743A312E300000000000020000000000000068000102000000000E3139322E3136382E312E313331000DC8000000114A426F73732F4E616D696E672F726F6F74000000000000020000000000000008000000004A414300000000010000001C00000000000100010000000105010001000101090000000105010001000000010000002C0000000000000001000000010000001C00000000000100010000000105010001000101090000000105010001]
      18:23:57,183 INFO [CorbaNamingService] Started
      18:23:57,230 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/iiop-service.xml
      18:23:57,245 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jms/jbossmq-destinations-service.xml
      18:23:57,542 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jms/jbossmq-destinations-service.xml
      18:23:57,558 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jms/jbossmq-service.xml
      18:23:58,167 INFO [MessageCache] Creating
      18:23:58,167 INFO [MessageCache] Created
      18:23:58,183 INFO [CacheStore] Creating
      18:23:58,199 INFO [CacheStore] Created
      18:23:58,199 INFO [DynamicStateManager] Creating
      18:23:58,214 INFO [DynamicStateManager] Created
      18:23:58,230 INFO [MessageCache] Starting
      18:23:58,245 INFO [MessageCache] Started
      18:23:58,245 INFO [CacheStore] Starting
      18:23:58,277 INFO [CacheStore] Started
      18:23:58,277 INFO [DynamicStateManager] Starting
      18:23:58,308 INFO [DynamicStateManager] Started
      18:23:58,386 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jms/jbossmq-service.xml
      18:23:58,402 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/mail-service.xml
      18:23:58,480 INFO [MailService] Creating
      18:23:58,495 INFO [MailService] Created
      18:23:58,511 INFO [MailService] Starting
      18:23:58,745 INFO [MailService] Mail Service bound to java:/Mail
      18:23:58,761 INFO [MailService] Started
      18:23:58,777 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/mail-service.xml
      18:23:58,792 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/properties-service.xml
      18:23:58,870 INFO [PropertyEditorManagerService] Creating
      18:23:58,886 INFO [PropertyEditorManagerService] Created
      18:23:58,886 INFO [SystemPropertiesService] Creating
      18:23:58,902 INFO [SystemPropertiesService] Created
      18:23:58,917 INFO [PropertyEditorManagerService] Starting
      18:23:58,917 INFO [PropertyEditorManagerService] Started
      18:23:58,933 INFO [SystemPropertiesService] Starting
      18:23:58,949 INFO [SystemPropertiesService] Started
      18:23:58,964 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/properties-service.xml
      18:23:58,980 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/schedule-manager-service.xml
      18:23:59,058 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/schedule-manager-service.xml
      18:23:59,074 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/scheduler-service.xml
      18:23:59,136 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/scheduler-service.xml
      18:23:59,152 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/sqlexception-service.xml
      18:23:59,230 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/sqlexception-service.xml
      18:23:59,245 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/transaction-service.xml
      18:23:59,308 INFO [CachedConnectionManager] Creating
      18:23:59,324 INFO [CachedConnectionManager] Created
      18:23:59,324 INFO [TxConnectionManager] Creating
      18:23:59,339 INFO [TxConnectionManager] Created
      18:23:59,355 INFO [TxConnectionManager] Creating
      18:23:59,355 INFO [TxConnectionManager] Created
      18:23:59,370 INFO [CachedConnectionManager] Starting
      18:23:59,417 INFO [CachedConnectionManager] Started
      18:23:59,417 INFO [TxConnectionManager] Starting
      18:23:59,449 INFO [JaasSecurityManagerService] Created securityMgr=org.jboss.security.plugins.JaasSecurityManager@5e041e
      18:23:59,495 INFO [JaasSecurityManagerService] setCachePolicy, c=org.jboss.util.TimedCachePolicy@314530
      18:23:59,495 INFO [JaasSecurityManagerService] Added JmsXARealm, org.jboss.security.plugins.SecurityDomainContext@35877f to map
      18:23:59,542 INFO [JmsXA] Bound connection factory for resource adapter for ConnectionManager 'jboss.jca:service=TxCM,name=JmsXA to JNDI name 'java:/JmsXA'
      18:23:59,558 INFO [TxConnectionManager] Started
      18:23:59,558 INFO [TxConnectionManager] Starting
      18:23:59,605 INFO [SO] Bound connection factory for resource adapter for ConnectionManager 'jboss.jca:service=LocalTxCM,name=SO to JNDI name 'java:/SO'
      18:23:59,620 INFO [TxConnectionManager] Started
      18:23:59,636 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/transaction-service.xml
      18:23:59,652 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/user-service.xml
      18:23:59,714 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/user-service.xml
      18:23:59,730 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/management/ejb-management.jar
      18:24:00,058 INFO [EjbModule] Creating
      18:24:00,074 INFO [EjbModule] Deploying MEJB
      18:24:00,214 INFO [StatelessSessionContainer] Creating
      18:24:00,245 INFO [StatelessSessionInstancePool] Creating
      18:24:00,245 INFO [StatelessSessionInstancePool] Created
      18:24:00,261 INFO [StatelessSessionContainer] Created
      18:24:00,277 INFO [EjbModule] Created
      18:24:00,292 INFO [EjbModule] Starting
      18:24:00,292 INFO [StatelessSessionContainer] Starting
      18:24:00,370 INFO [StatelessSessionInstancePool] Starting
      18:24:00,386 INFO [StatelessSessionInstancePool] Started
      18:24:00,402 INFO [StatelessSessionContainer] Started
      18:24:00,402 INFO [EjbModule] Started
      18:24:00,417 INFO [EJBDeployer] Deployed: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/management/ejb-management.jar
      18:24:00,495 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/management/ejb-management.jar
      18:24:00,495 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/tester.jar
      18:24:00,636 INFO [EjbModule] Creating
      18:24:00,652 INFO [EjbModule] Deploying TesterBean
      18:24:00,699 INFO [StatelessSessionContainer] Creating
      18:24:00,714 INFO [StatelessSessionInstancePool] Creating
      18:24:00,714 INFO [StatelessSessionInstancePool] Created
      18:24:00,730 INFO [StatelessSessionContainer] Created
      18:24:00,745 INFO [EjbModule] Created
      18:24:00,745 INFO [EjbModule] Starting
      18:24:00,761 INFO [StatelessSessionContainer] Starting
      18:24:00,808 INFO [StatelessSessionInstancePool] Starting
      18:24:00,824 INFO [StatelessSessionInstancePool] Started
      18:24:00,824 INFO [StatelessSessionContainer] Started
      18:24:00,839 INFO [EjbModule] Started
      18:24:00,855 INFO [EJBDeployer] Deployed: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/tester.jar
      18:24:00,886 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/tester.jar
      18:24:00,902 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jmx-console.war/
      18:24:01,011 INFO [EmbeddedCatalinaService41] deploy, ctxPath=/jmx-console, warUrl=file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jmx-console.war/
      18:24:01,245 INFO [Engine] ContextConfig[/jmx-console]: Added certificates -> request attribute Valve
      18:24:01,574 WARN [EmbeddedCatalinaService41] Unable to invoke setDelegate on class loader:org.jboss.web.catalina.WebCtxLoader$ENCLoader@64776b
      18:24:01,574 INFO [Engine] StandardManager[/jmx-console]: Seeding random number generator class java.security.SecureRandom
      18:24:01,589 INFO [Engine] StandardManager[/jmx-console]: Seeding of random number generator has been completed
      18:24:01,605 INFO [Engine] StandardWrapper[/jmx-console:default]: Loading container servlet default
      18:24:01,620 INFO [Engine] StandardWrapper[/jmx-console:invoker]: Loading container servlet invoker
      18:24:01,949 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/jmx-console.war/
      18:24:01,949 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/management/web-console.war
      18:24:02,464 INFO [EmbeddedCatalinaService41] deploy, ctxPath=/web-console, warUrl=file:/D:/javasoft/jboss-3.2.2RC2/server/all/tmp/deploy/tmp13258web-console.war/
      18:24:02,589 INFO [Engine] ContextConfig[/web-console]: Added certificates -> request attribute Valve
      18:24:02,636 WARN [EmbeddedCatalinaService41] Unable to invoke setDelegate on class loader:org.jboss.web.catalina.WebCtxLoader$ENCLoader@4c5002
      18:24:02,652 INFO [Engine] StandardManager[/web-console]: Seeding random number generator class java.security.SecureRandom
      18:24:02,652 INFO [Engine] StandardManager[/web-console]: Seeding of random number generator has been completed
      18:24:03,230 INFO [Engine] StandardWrapper[/web-console:default]: Loading container servlet default
      18:24:03,245 INFO [Engine] StandardWrapper[/web-console:invoker]: Loading container servlet invoker
      18:24:03,699 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/management/web-console.war
      18:24:03,714 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/sov2.ear
      18:24:03,792 INFO [EARDeployer] Init J2EE application: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/sov2.ear
      18:24:04,230 WARN [ClassLoadingTask] Duplicate class found: com.dsr.sov02.customer.custservice.sf.CustServiceSFEJB
      Current CS: (file:/D:/javasoft/jboss-3.2.2RC2/server/all/tmp/deploy/tmp13259sov2.ear-contents/custservice.jar <no certificates>)
      Duplicate CS: (file:/D:/javasoft/jboss-3.2.2RC2/server/all/lib/cust.jar <no certificates>)
      18:24:04,308 INFO [EjbModule] Creating
      18:24:04,324 INFO [EjbModule] Deploying CustServiceSF
      18:24:04,355 INFO [StatelessSessionContainer] Creating
      18:24:04,370 INFO [StatelessSessionInstancePool] Creating
      18:24:04,370 INFO [StatelessSessionInstancePool] Created
      18:24:04,386 INFO [StatelessSessionContainer] Created
      18:24:04,402 INFO [EjbModule] Created
      18:24:04,417 INFO [EjbModule] Starting
      18:24:04,417 INFO [StatelessSessionContainer] Starting
      18:24:04,495 INFO [StatelessSessionInstancePool] Starting
      18:24:04,511 INFO [StatelessSessionInstancePool] Started
      18:24:04,511 INFO [StatelessSessionContainer] Started
      18:24:04,527 INFO [EjbModule] Started
      18:24:04,527 INFO [EJBDeployer] Deployed: file:/D:/javasoft/jboss-3.2.2RC2/server/all/tmp/deploy/tmp13259sov2.ear-contents/custservice.jar
      18:24:04,620 INFO [EmbeddedCatalinaService41] deploy, ctxPath=/SchOptimus, warUrl=file:/D:/javasoft/jboss-3.2.2RC2/server/all/tmp/deploy/tmp13259sov2.ear-contents/test.war/
      18:24:04,777 INFO [Engine] ContextConfig[/SchOptimus]: Added certificates -> request attribute Valve
      18:24:04,824 WARN [EmbeddedCatalinaService41] Unable to invoke setDelegate on class loader:org.jboss.web.catalina.WebCtxLoader$ENCLoader@13f501
      18:24:04,839 INFO [Engine] StandardManager[/SchOptimus]: Seeding random number generator class java.security.SecureRandom
      18:24:04,855 INFO [Engine] StandardManager[/SchOptimus]: Seeding of random number generator has been completed
      18:24:04,855 INFO [Engine] StandardWrapper[/SchOptimus:default]: Loading container servlet default
      18:24:04,870 INFO [Engine] StandardWrapper[/SchOptimus:invoker]: Loading container servlet invoker
      18:24:05,011 INFO [EARDeployer] Started J2EE application: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/sov2.ear
      18:24:05,027 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/sov2.ear
      18:24:05,042 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/deploy.last/
      18:24:05,042 INFO [JARDeployer] nested deployment: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/deploy.last/farm-service.xml
      18:24:05,183 INFO [FarmMemberService] Creating
      18:24:05,183 INFO [FarmMemberService] Created
      18:24:05,199 INFO [FarmMemberService] Starting
      18:24:05,214 INFO [MainDeployer] Starting deployment of package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/farm/cluster-examples-service.xml
      18:24:05,230 INFO [AbstractDeploymentScanner$ScannerThread] Running
      18:24:05,324 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/farm/cluster-examples-service.xml
      18:24:05,339 INFO [FarmMemberService] Started
      18:24:05,355 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/deploy/deploy.last/
      18:24:05,370 ERROR [URLDeploymentScanner] MBeanException: Exception in MBean operation 'checkIncompleteDeployments()'
      Cause: Incomplete Deployment listing:
      Packages waiting for a deployer:

      Incompletely deployed packages:

      MBeans waiting for classes:

      MBeans waiting for other MBeans:
      [ObjectName: jboss.mq:service=InvocationLayer,type=HTTP
      state: CONFIGURED
      I Depend On: jboss.mq:service=Invoker
      jboss.web:service=WebServer

      Depends On Me: , ObjectName: jboss.mq.destination:service=Topic,name=testTopic
      state: CONFIGURED
      I Depend On: jboss.mq:service=DestinationManager
      jboss.mq:service=SecurityManager

      Depends On Me: , ObjectName: jboss.mq.destination:service=Topic,name=securedTopic
      state: CONFIGURED
      I Depend On: jboss.mq:service=DestinationManager
      jboss.mq:service=SecurityManager

      Depends On Me: , ObjectName: jboss.mq.destination:service=Topic,name=testDurableTopic
      state: CONFIGURED
      I Depend On: jboss.mq:service=DestinationManager
      jboss.mq:service=SecurityManager

      Depends On Me: , ObjectName: jboss.mq.destination:service=Queue,name=testQueue
      state: CONFIGURED
      I Depend On: jboss.mq:service=DestinationManager
      jboss.mq:service=SecurityManager

      Depends On Me: , ObjectName: jboss.mq.destination:service=Queue,name=A
      state: CONFIGURED
      I Depend On: jboss.mq:service=DestinationManager

      Depends On Me: , ObjectName: jboss.mq.destination:service=Queue,name=B
      state: CONFIGURED
      I Depend On: jboss.mq:service=DestinationManager

      Depends On Me: , ObjectName: jboss.mq.destination:service=Queue,name=C
      state: CONFIGURED
      I Depend On: jboss.mq:service=DestinationManager

      Depends On Me: , ObjectName: jboss.mq.destination:service=Queue,name=D
      state: CONFIGURED
      I Depend On: jboss.mq:service=DestinationManager

      Depends On Me: , ObjectName: jboss.mq.destination:service=Queue,name=ex
      state: CONFIGURED
      I Depend On: jboss.mq:service=DestinationManager

      Depends On Me: , ObjectName: jboss.mq:service=InvocationLayer,type=JVM
      state: CONFIGURED
      I Depend On: jboss.mq:service=Invoker

      Depends On Me: , ObjectName: jboss.mq:service=InvocationLayer,type=RMI
      state: CONFIGURED
      I Depend On: jboss.mq:service=Invoker

      Depends On Me: , ObjectName: jboss.mq:service=InvocationLayer,type=OIL
      state: CONFIGURED
      I Depend On: jboss.mq:service=Invoker

      Depends On Me: , ObjectName: jboss.mq:service=InvocationLayer,type=UIL
      state: CONFIGURED
      I Depend On: jboss.mq:service=Invoker

      Depends On Me: , ObjectName: jboss.mq:service=InvocationLayer,type=OIL2
      state: CONFIGURED
      I Depend On: jboss.mq:service=Invoker

      Depends On Me: , ObjectName: jboss.mq:service=InvocationLayer,type=UIL2
      state: CONFIGURED
      I Depend On: jboss.mq:service=Invoker

      Depends On Me: , ObjectName: jboss.mq:service=Invoker
      state: CONFIGURED
      I Depend On: jboss.mq:service=TracingInterceptor

      Depends On Me: jboss.mq:service=InvocationLayer,type=HTTP
      jboss.mq:service=InvocationLayer,type=JVM
      jboss.mq:service=InvocationLayer,type=RMI
      jboss.mq:service=InvocationLayer,type=OIL
      jboss.mq:service=InvocationLayer,type=UIL
      jboss.mq:service=InvocationLayer,type=OIL2
      jboss.mq:service=InvocationLayer,type=UIL2
      , ObjectName: jboss.mq:service=TracingInterceptor
      state: CONFIGURED
      I Depend On: jboss.mq:service=SecurityManager

      Depends On Me: jboss.mq:service=Invoker
      , ObjectName: jboss.mq:service=SecurityManager
      state: CONFIGURED
      I Depend On: jboss.mq:service=DestinationManager

      Depends On Me: jboss.mq.destination:service=Topic,name=testTopic
      jboss.mq.destination:service=Topic,name=securedTopic
      jboss.mq.destination:service=Topic,name=testDurableTopic
      jboss.mq.destination:service=Queue,name=testQueue
      jboss.mq:service=TracingInterceptor
      jboss.mq.destination:service=Queue,name=DLQ
      , ObjectName: jboss.mq:service=DestinationManager
      state: CONFIGURED
      I Depend On: jboss.mq:service=PersistenceManager
      jboss.mq:service=StateManager

      Depends On Me: jboss.mq.destination:service=Topic,name=testTopic
      jboss.mq.destination:service=Topic,name=securedTopic
      jboss.mq.destination:service=Topic,name=testDurableTopic
      jboss.mq.destination:service=Queue,name=testQueue
      jboss.mq.destination:service=Queue,name=A
      jboss.mq.destination:service=Queue,name=B
      jboss.mq.destination:service=Queue,name=C
      jboss.mq.destination:service=Queue,name=D
      jboss.mq.destination:service=Queue,name=ex
      jboss.mq:service=SecurityManager
      jboss.mq.destination:service=Queue,name=DLQ
      , ObjectName: jboss.mq:service=PersistenceManager
      state: CONFIGURED
      I Depend On: jboss.mq:service=MessageCache
      jboss.jca:service=LocalTxCM,name=DefaultDS

      Depends On Me: jboss.mq:service=DestinationManager
      , ObjectName: jboss.mq.destination:service=Queue,name=DLQ
      state: CONFIGURED
      I Depend On: jboss.mq:service=DestinationManager
      jboss.mq:service=SecurityManager

      Depends On Me: ]
      18:24:06,558 INFO [URLDeploymentScanner] Started
      18:24:06,683 INFO [MainDeployer] Deployed package: file:/D:/javasoft/jboss-3.2.2RC2/server/all/conf/jboss-service.xml
      18:24:06,699 INFO [Server] JBoss (MX MicroKernel) [3.2.2RC2 (build: CVSTag=JBoss_3_2_2_RC2 date=200307231513)] Started in 40s:407ms
      18:24:38,699 ERROR [Engine] StandardWrapperValve[jsp]: Servlet.service() for servlet jsp threw exception
      org.apache.jasper.JasperException: com/dsr/sov02/customer/custservice/sf/CustServiceSFBI
      at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:254)
      at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
      at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
      at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
      at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
      at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
      at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
      at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
      at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
      at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
      at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
      at org.jboss.web.catalina.security.JBossSecurityMgrRealm.invoke(JBossSecurityMgrRealm.java:229)
      at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
      at org.apache.catalina.valves.CertificatesValve.invoke(CertificatesValve.java:246)
      at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
      at org.jboss.web.catalina.statistics.ContainerStatsValve.invoke(ContainerStatsValve.java:75)
      at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
      at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
      at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
      at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415)
      at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
      at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
      at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
      at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
      at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
      at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
      at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:509)
      at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
      at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
      at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
      at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
      at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
      at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
      at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
      at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
      at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:594)
      at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:392)
      at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:565)
      at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:619)
      at java.lang.Thread.run(Thread.java:484)
      18:24:39,058 ERROR [Engine] ----- Root Cause -----
      javax.servlet.ServletException: com/dsr/sov02/customer/custservice/sf/CustServiceSFBI
      at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:536)
      at org.apache.jsp.index3_jsp._jspService(index3_jsp.java:86)
      at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:137)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
      at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:210)
      at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
      at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
      at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
      at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
      at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
      at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
      at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
      at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
      at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
      at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
      at org.jboss.web.catalina.security.JBossSecurityMgrRealm.invoke(JBossSecurityMgrRealm.java:229)
      at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
      at org.apache.catalina.valves.CertificatesValve.invoke(CertificatesValve.java:246)
      at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
      at org.jboss.web.catalina.statistics.ContainerStatsValve.invoke(ContainerStatsValve.java:75)
      at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
      at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
      at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
      at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415)
      at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
      at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
      at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
      at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
      at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
      at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
      at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:509)
      at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
      at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
      at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
      at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
      at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
      at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
      at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
      at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
      at org.apache.coyote.http11.Http11Processor