I'm using Jboss-2.2.2 and Tomcat 3.2.2 with apache/mod_jk on RedHat 6.1
and mySQL backend.  
I can run the tomcat examples such as Number Guess and Hello World and
also the Servlet calling EJB example.  However, when I try to run my own
jsp (attached), I get the error at the end of this e-mail.  When I then
try running the EJB example, it fails with a similar error.  

The output when jboss w/ tomcat starts and stops is also attached.

The machine has two network cards, which may be the problem.  One card
is linked to the outside world, and one
is linked to the machine running mySQL.

What is going wrong?  Thanks in advance,

Jeff Liu ([EMAIL PROTECTED])

javax.naming.ServiceUnavailableException: errno: 101, error: Network is
unreachable for fd: 86.  Root exception is [EmbeddedTomcatSX]
java.net.SocketException: errno: 101, error: Network is unreachable for
fd: 86
[EmbeddedTomcatSX]      at java.net.PlainSocketImpl.socketConnect(Native
Method)
[EmbeddedTomcatSX]      at
java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:323)
[EmbeddedTomcatSX]      at
java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:136)
[EmbeddedTomcatSX]      at
java.net.PlainSocketImpl.connect(PlainSocketImpl.java:123)
[EmbeddedTomcatSX]      at java.net.Socket.<init>(Socket.java:273)
[EmbeddedTomcatSX]      at java.net.Socket.<init>(Socket.java:100)
[EmbeddedTomcatSX]      at
org.jnp.interfaces.NamingContext.getServer(NamingContext.java:102)
[EmbeddedTomcatSX]      at
org.jnp.interfaces.NamingContext.checkRef(NamingContext.java:763)
[EmbeddedTomcatSX]      at
org.jnp.interfaces.NamingContext.lookup(NamingContext.java:340)
[EmbeddedTomcatSX]      at
org.jnp.interfaces.NamingContext.lookup(NamingContext.java:333)
[EmbeddedTomcatSX]      at
javax.naming.InitialContext.lookup(InitialContext.java:350)
[EmbeddedTomcatSX]      at
com.ge.financial.courseenroll.view.BaseCourseBean.initialize(BaseCourseBean.java:55)
[EmbeddedTomcatSX]      at
jsp._0002fjsp_0002fCourseList_0002ejspCourseList_jsp_8._jspService(_0002fjsp_0002fCourseList_0002ejspCourseList_jsp_8.java:122)
[EmbeddedTomcatSX]      at
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119)
[EmbeddedTomcatSX]      at
javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
[EmbeddedTomcatSX]      at
org.apache.jasper.servlet.JspServlet$JspCountedServlet.service(JspServlet.java:130)
[EmbeddedTomcatSX]      at
javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
[EmbeddedTomcatSX]      at
org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:282)
[EmbeddedTomcatSX]      at
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:429)
[EmbeddedTomcatSX]      at
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:500)
[EmbeddedTomcatSX]      at
javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
[EmbeddedTomcatSX]      at
org.apache.tomcat.core.ServletWrapper.doService(ServletWrapper.java:405)
[EmbeddedTomcatSX]      at
org.apache.tomcat.core.Handler.service(Handler.java:287)
[EmbeddedTomcatSX]      at
org.apache.tomcat.core.ServletWrapper.service(ServletWrapper.java:372)
[EmbeddedTomcatSX]      at
org.apache.tomcat.core.ContextManager.internalService(ContextManager.java:797)
[EmbeddedTomcatSX]      at
org.apache.tomcat.core.ContextManager.service(ContextManager.java:743)
[EmbeddedTomcatSX]      at
org.apache.tomcat.service.connector.Ajp12ConnectionHandler.processConnection(Ajp12ConnectionHandler.java:166)
[EmbeddedTomcatSX]      at
org.apache.tomcat.service.TcpWorkerThread.runIt(PoolTcpEndpoint.java:416)
[EmbeddedTomcatSX]      at
org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java:501)
[EmbeddedTomcatSX]      at java.lang.Thread.run(Thread.java:484)
Title: GE Financial Course Offerings
<%@page contentType="text/html" %> <%@page isErrorPage="false" errorPage="errorView.jsp" %> <%@page import="com.ge.financial.courseenroll.view.*" %> <%@page import="com.ge.financial.courseenroll.entity.*" %> <%@page import="javax.servlet.*, javax.servlet.http.*" %> <%@page import="java.util.*" %>
<% if (executor==null) { executor = new BaseCourseBean(); System.out.println("Creating bean"); } boolean foundCourses_b = false; foundCourses_b = executor.initialize(pageContext); String userName = (String) pageContext.getAttribute("userName"); if (foundCourses_b) { %> <% Course[] courses = (Course[])coursecollection.toArray(new Course[0]); System.out.println("Howdy"); if ((courses!=null)&&(courses.length!=0)) { %> <% for (int i=0; i

Course Name

Course Date

Course Time

Course Status

<% // Integer ii = courses[i].getCourseID(); System.out.println("Up up here."); String courseInfoLinkModifier = " + userName + "&courseID=" + courses[i].getCourseID() + "','CourseInfo','scrollbars=yes,status=yes,resizable=yes,width=400,height=300')\" "; System.out.println("Up here."); %> ><%= courses[i].getCourseName() %> <% System.out.println("I'm here."); String teststring = courses[i].getCourseName(); /* String courseDate = executor.formatDate(courses[i].getCourseStartDate().get(java.util.Calendar.MONTH), courses[i].getCourseStartDate().get(java.util.Calendar.DAY_OF_MONTH), courses[i].getCourseStartDate().get(java.util.Calendar.YEAR)); */ %> <%-- <%= courseDate %> --%> <%= teststring %> <% /* String courseTime = executor.formatTime(courses[i].getCourseStartDate().get(java.util.Calendar.HOUR), courses[i].getCourseStartDate().get(java.util.Calendar.MINUTE), courses[i].getCourseStartDate().get(java.util.Calendar.AM_PM)); */ %> <%-- <%= courseTime %> --%> <%= courses[i].getCourseID() %> <% boolean availableSlots_b = courses[i].getEnrollmentStatus(); if (availableSlots_b) { %> Open <% } else { %> Closed <% } %> <% String courseInfoLink = ""; /* int courseState = executor.getCourseState(courses[i].getCourseID(),userName, courses[i].getCourseStartDate(),courses[i].getCourseEndDate(),availableSlots_b); */ int courseState = 1; String linkText = ""; String htmlModifier = ""; boolean displayLink = false; switch(courseState) { case 1: courseInfoLink = "#"; linkText = "Enroll"; htmlModifier = " "; displayLink = true; break; case 2: courseInfoLink = "#"; linkText = "Go!"; htmlModifier = " "; displayLink = true; break; case 3: courseInfoLink = "#"; linkText = "Course Full"; displayLink = false; break; case 4: courseInfoLink = "#"; htmlModifier = " "; linkText = "Go Course Done"; displayLink = true; break; default: courseInfoLink = "#"; linkText = "Error"; displayLink = false; break; } if (displayLink) { %> ><%= linkText %> <% } else { %> <%= linkText %> <% } } // end FOR loop } else {//end if ((courses!=null)&&(courses.length!=0)) out.println("No courses found."); } } // end if (foundCourses_b) %>
<%! public void jspInit() { System.setProperty("java.naming.factory.initial", "org.jnp.interfaces.NamingContextFactory"); System.setProperty("java.naming.provider.url", "192.168.20.14:1099"); } %>
JBOSS_CLASSPATH=:/usr/java/jdk1.3.0_02/lib/tools.jar:run.jar:../lib/crimson.jar
jboss.home = /usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss
Using JAAS LoginConfig: 
file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/conf/tomcat/auth.conf
Using configuration "tomcat"
[Info] Java version: 1.3.0_02,Sun Microsystems Inc.
[Info] Java VM: Java HotSpot(TM) Server VM 1.3.0_02,Sun Microsystems Inc.
[Info] System: Linux 2.2.14-5.0,i386
[Shutdown] Shutdown hook added
[Service Control] Registered with server
[Service Control] Initializing 23 MBeans
[Webserver] Initializing
[Webserver] Initialized
[Naming] Initializing
[Naming] Initialized
[JNDIView] Initializing
[JNDIView] Initialized
[Transaction manager] Initializing
[Transaction manager] Initialized
[JAAS Security Manager] Initializing
[JAAS Security Manager] Initialized
[JDBC provider] Initializing
[JDBC provider] Loaded JDBC-driver:org.gjt.mm.mysql.Driver
[JDBC provider] Initialized
[DefaultDS] Initializing
[DefaultDS] Initialized
[Container factory] Initializing
[Container factory] Initialized
[EmbeddedTomcatSX] Initializing
[EmbeddedTomcatSX] Initialized
[JBossMQ] Initializing
[JBossMQ] Initialized
[DefaultJMSProvider] Initializing
[DefaultJMSProvider] Initialized
[StdJMSPool] Initializing
[StdJMSPool] Initialized
[J2EE Deployer Default] Initializing
[J2EE Deployer Default] Initialized
[Auto deploy] Initializing
[Auto deploy] Initialized
[RARDeployer] Initializing
[RARDeployer] Initialized
[ConnectionManagerFactoryLoader] Initializing
[MinervaNoTransCMFactory] Initialized
[ConnectionManagerFactoryLoader] Initializing
[MinervaSharedLocalCMFactory] Initialized
[ConnectionManagerFactoryLoader] Initializing
[MinervaXACMFactory] Initialized
[ConnectionFactoryLoader] Initializing
[BlackBoxDS] Initialized
[JMX RMI Adaptor] Initializing
[JMX RMI Adaptor] Initialized
[JMX RMI Connector] Initializing
[JMX RMI Connector] Initialized
[Mail Service] Initializing
[Mail Service] Initialized
[Service Control] Initialized 23 services
[Service Control] Starting 23 MBeans
[Webserver] Starting
[Webserver] Codebase set to http://ruth.studionext.com:8083/
[Webserver] Started webserver on port 8083
[Webserver] Started
[Naming] Starting
[Naming] Starting jnp server
[Naming] Started jnpPort=1099, rmiPort=0, Client SocketFactory=null, Server 
SocketFactory=null
[Naming] Naming started on port 1099
[Naming] Started
[JNDIView] Starting
[JNDIView] Started
[Transaction manager] Starting
[Transaction manager] Started
[JAAS Security Manager] Starting
[JAAS Security Manager] JAAS.startService, cachePolicy=null
[JAAS Security Manager] JAAS.startService, 
SecurityProxyFactory=org.jboss.security.SubjectSecurityProxyFactory@2be1bd
[JAAS Security Manager] Started
[JDBC provider] Starting
[JDBC provider] Started
[DefaultDS] Starting
[DefaultDS] XA Connection pool DefaultDS bound to java:/DefaultDS
[DefaultDS] Started
[Container factory] Starting
[Container factory] Started
[EmbeddedTomcatSX] Starting
[EmbeddedTomcatSX] Starting EmbeddedTomcatSX....
2001-06-08 12:42:53 - ContextManager: Adding context Ctx( /examples )
2001-06-08 12:42:53 - ContextManager: Adding context Ctx( /admin )
[EmbeddedTomcatSX] Starting tomcat. Check logs/tomcat.log for error messages 
2001-06-08 12:42:53 - ContextManager: Adding context Ctx(  )
2001-06-08 12:42:53 - ContextManager: Adding context Ctx( /test )
2001-06-08 12:42:56 - PoolTcpConnector: Starting HttpConnectionHandler on 8080
[EmbeddedTomcatSX] OK
[EmbeddedTomcatSX] Started
[JBossMQ] Starting
2001-06-08 12:42:57 - PoolTcpConnector: Starting Ajp12ConnectionHandler on 8007
[JBossMQ] Server Version 0.8 Started
[JBossMQ] Started
[DefaultJMSProvider] Starting
[DefaultJMSProvider] JMS provider Adapter DefaultJMSProvider bound to 
java:/DefaultJMSProvider
[DefaultJMSProvider] Started
[StdJMSPool] Starting
[StdJMSPool] JMS provider Adapter StdJMSPool bound to java:/StdJMSPool
[StdJMSPool] Started
[J2EE Deployer Default] Starting
[J2EE Deployer Default] Cleaning up deployment directory
[J2EE Deployer Default] Started
[Auto deploy] Starting
[Auto deploy] Watching /usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/deploy
[Auto deploy] Auto deploy of 
file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/deploy/tomcat-test.ear
[J2EE Deployer Default] Deploy J2EE application: 
file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/deploy/tomcat-test.ear
[J2EE Deployer Default] Create application tomcat-test.ear
[J2EE Deployer Default] inflate and install module tomcat-test.war
[J2EE Deployer Default] install module tomcat-test.jar
[J2EE Deployer Default] add all ejb jar files to the common classpath
[Container factory] 
Deploying:file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/tmp/deploy/Default/tomcat-test.ear
[Verifier] Verifying 
file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/tmp/deploy/Default/tomcat-test.ear/ejb1002.jar
[Container factory] Deploying Optimized
[Container factory] Deploying NonOptimized
[Container factory] Deployed application: 
file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/tmp/deploy/Default/tomcat-test.ear
[J2EE Deployer Default] Starting module tomcat-test.war
[Auto deploy] deploy, ctxPath=/jboss, 
warUrl=file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/tmp/deploy/Default/tomcat-test.ear/web1001/
2001-06-08 12:43:01 - ContextManager: Adding context Ctx( /jboss )
[Auto deploy] AbstractWebContainer.parseWebAppDescriptors, Begin
[Auto deploy] addEnvEntries
[Auto deploy] linkResourceRefs
[Auto deploy] linkEjbRefs
[Auto deploy] linkSecurityDomain
[Auto deploy] Binding security/securityMgr to NullSecurityManager
[Auto deploy] AbstractWebContainer.parseWebAppDescriptors, End
[Auto deploy] Initialized: {WebApplication: 
/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/tmp/deploy/Default/tomcat-test.ear/web1001/, 
URL: 
file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/tmp/deploy/Default/tomcat-test.ear/web1001/,
 classLoader: AdaptiveClassLoader(  ):3027812}
[J2EE Deployer Default] J2EE application: 
file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/deploy/tomcat-test.ear is deployed.
[Auto deploy] Auto deploy of 
file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/deploy/GEEntity.jar
[J2EE Deployer Default] Deploy J2EE application: 
file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/deploy/GEEntity.jar
[J2EE Deployer Default] Create application GEEntity.jar
[J2EE Deployer Default] install module GEEntity.jar
[Container factory] 
Deploying:file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/tmp/deploy/Default/GEEntity.jar
[Verifier] Verifying 
file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/tmp/deploy/Default/GEEntity.jar/ejb1003.jar
[Verifier] debugFlag=true
[Verifier] ->Created new CourseBean
[Verifier] class of obj: com.ge.financial.courseenroll.entity.CourseRegistrationPK
[Container factory] Deploying Course
[Container factory] Deploying CourseRegistration
[Container factory] Deploying CourseRegistrar
[JAWS] Table 'COURSEREGISTRATION' already exists
[JAWS] Table 'COURSE' already exists
[Bean Cache] Cache policy scheduler started
[Container factory] Deployed application: 
file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/tmp/deploy/Default/GEEntity.jar
[J2EE Deployer Default] J2EE application: 
file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/deploy/GEEntity.jar is deployed.
[Auto deploy] Auto deploy of 
file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/deploy/GENotification.war
[J2EE Deployer Default] Deploy J2EE application: 
file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/deploy/GENotification.war
[J2EE Deployer Default] Create application GENotification.war
[J2EE Deployer Default] inflate and install module GENotification.war
[Container factory] 
Deploying:file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/tmp/deploy/Default/GENotification.war
[Container factory] Deployed application: 
file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/tmp/deploy/Default/GENotification.war
[J2EE Deployer Default] Starting module GENotification.war
[Auto deploy] deploy, ctxPath=/GENotification, 
warUrl=file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/tmp/deploy/Default/GENotification.war/web1004/
2001-06-08 12:43:05 - ContextManager: Adding context Ctx( /GENotification )
[Auto deploy] AbstractWebContainer.parseWebAppDescriptors, Begin
[Auto deploy] addEnvEntries
[Auto deploy] linkResourceRefs
[Auto deploy] linkEjbRefs
[Auto deploy] linkSecurityDomain
[Auto deploy] Binding security/securityMgr to NullSecurityManager
[Auto deploy] AbstractWebContainer.parseWebAppDescriptors, End
[Auto deploy] Initialized: {WebApplication: 
/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/tmp/deploy/Default/GENotification.war/web1004/,
 URL: 
file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/tmp/deploy/Default/GENotification.war/web1004/,
 classLoader: AdaptiveClassLoader(  ):3682584}
[J2EE Deployer Default] J2EE application: 
file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/deploy/GENotification.war is deployed.
[Auto deploy] Auto deploy of 
file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/deploy/GEView.war
[J2EE Deployer Default] Deploy J2EE application: 
file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/deploy/GEView.war
[J2EE Deployer Default] Create application GEView.war
[J2EE Deployer Default] inflate and install module GEView.war
[Container factory] 
Deploying:file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/tmp/deploy/Default/GEView.war
[Container factory] Deployed application: 
file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/tmp/deploy/Default/GEView.war
[J2EE Deployer Default] Starting module GEView.war
[Auto deploy] deploy, ctxPath=/GEView, 
warUrl=file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/tmp/deploy/Default/GEView.war/web1005/
2001-06-08 12:43:06 - ContextManager: Adding context Ctx( /GEView )
[Auto deploy] AbstractWebContainer.parseWebAppDescriptors, Begin
[Auto deploy] addEnvEntries
[Auto deploy] linkResourceRefs
[Auto deploy] linkEjbRefs
[Auto deploy] linkSecurityDomain
[Auto deploy] Binding security/securityMgr to NullSecurityManager
[Auto deploy] AbstractWebContainer.parseWebAppDescriptors, End
[Auto deploy] Initialized: {WebApplication: 
/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/tmp/deploy/Default/GEView.war/web1005/, URL: 
file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/tmp/deploy/Default/GEView.war/web1005/, 
classLoader: AdaptiveClassLoader(  ):5681241}
[J2EE Deployer Default] J2EE application: 
file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/deploy/GEView.war is deployed.
[Auto deploy] Started
[RARDeployer] Starting
[RARDeployer] Started
[MinervaNoTransCMFactory] Starting
[MinervaNoTransCMFactory] Connection manager factory 'MinervaNoTransCMFactory bound to 
'java:/MinervaNoTransCMFactory'
[MinervaNoTransCMFactory] Started
[MinervaSharedLocalCMFactory] Starting
[MinervaSharedLocalCMFactory] Connection manager factory 'MinervaSharedLocalCMFactory 
bound to 'java:/MinervaSharedLocalCMFactory'
[MinervaSharedLocalCMFactory] Started
[MinervaXACMFactory] Starting
[MinervaXACMFactory] Connection manager factory 'MinervaXACMFactory bound to 
'java:/MinervaXACMFactory'
[MinervaXACMFactory] Started
[BlackBoxDS] Starting
[BlackBoxDS] Started
[JMX RMI Adaptor] Starting
[JMX RMI Adaptor] Started
[JMX RMI Connector] Starting
[JMX RMI Connector] Started
[Mail Service] Starting
[Mail Service] DEBUG: not loading system providers in <java.home>/lib
[Mail Service] DEBUG: not loading optional custom providers file: 
/META-INF/javamail.providers
[Mail Service] DEBUG: successfully loaded default providers
[Mail Service] 
DEBUG: Tables of loaded providers
[Mail Service] DEBUG: Providers Listed By Class Name: 
{com.sun.mail.smtp.SMTPTransport=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun
 Microsystems, Inc], 
com.sun.mail.imap.IMAPStore=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun
 Microsystems, Inc], 
com.sun.mail.pop3.POP3Store=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Sun
 Microsystems, Inc]}
[Mail Service] DEBUG: Providers Listed By Protocol: 
{imap=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun Microsystems, 
Inc], pop3=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Sun 
Microsystems, Inc], 
smtp=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun 
Microsystems, Inc]}
[Mail Service] DEBUG: not loading optional address map file: 
/META-INF/javamail.address.map
[Mail Service] Mail Service 'Mail' bound to java:/Mail
[Mail Service] Started
[Service Control] Started 23 services
[Default] JBoss 2.2.2 Started in 0m:23s
[Default] Shutting down
[Service Control] Stopping 30 MBeans
[Mail Service] Stopping
[Mail Service] Mail service 'Mail' removed from JNDI
[Mail Service] Stopped
[JMX RMI Connector] Stopping
[JMX RMI Connector] Stopped
[JMX RMI Adaptor] Stopping
[JMX RMI Adaptor] Stopped
[BlackBoxDS] Stopping
[BlackBoxDS] Stopped
[MinervaXACMFactory] Stopping
[MinervaXACMFactory] Connection manager factory 'MinervaXACMFactory' removed from JNDI
[MinervaXACMFactory] Stopped
[MinervaSharedLocalCMFactory] Stopping
[MinervaSharedLocalCMFactory] Connection manager factory 'MinervaSharedLocalCMFactory' 
removed from JNDI
[MinervaSharedLocalCMFactory] Stopped
[MinervaNoTransCMFactory] Stopping
[MinervaNoTransCMFactory] Connection manager factory 'MinervaNoTransCMFactory' removed 
from JNDI
[MinervaNoTransCMFactory] Stopped
[RARDeployer] Stopping
[RARDeployer] Stopped
[Auto deploy] Stopping
[Auto deploy] Stopped
[J2EE Deployer Default] Stopping
[J2EE Deployer Default] Undeploying all applications.
[J2EE Deployer Default] Stopping module tomcat-test.war
2001-06-08 12:43:36 - ContextManager: Removing context Ctx( /jboss )
[J2EE Deployer Default] Stopping module tomcat-test.ear
[Container factory] 
Undeploying:file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/tmp/deploy/Default/tomcat-test.ear
[Container factory] Undeployed application: 
file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/tmp/deploy/Default/tomcat-test.ear
[J2EE Deployer Default] Destroying application tomcat-test.ear
[J2EE Deployer Default] Stopping module GEEntity.jar
[Container factory] 
Undeploying:file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/tmp/deploy/Default/GEEntity.jar
[Container factory] Undeployed application: 
file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/tmp/deploy/Default/GEEntity.jar
[J2EE Deployer Default] Destroying application GEEntity.jar
[J2EE Deployer Default] Stopping module GENotification.war
2001-06-08 12:43:36 - ContextManager: Removing context Ctx( /GENotification )
[J2EE Deployer Default] Stopping module GENotification.war
[Container factory] 
Undeploying:file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/tmp/deploy/Default/GENotification.war
[Container factory] Undeployed application: 
file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/tmp/deploy/Default/GENotification.war
[J2EE Deployer Default] Destroying application GENotification.war
[J2EE Deployer Default] Stopping module GEView.war
2001-06-08 12:43:36 - ContextManager: Removing context Ctx( /GEView )
[J2EE Deployer Default] Stopping module GEView.war
[Container factory] 
Undeploying:file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/tmp/deploy/Default/GEView.war
[Container factory] Undeployed application: 
file:/usr/local/JBoss-2.2.2_Tomcat-3.2.2/jboss/tmp/deploy/Default/GEView.war
[J2EE Deployer Default] Destroying application GEView.war
[J2EE Deployer Default] Undeployed 4 applications.
[J2EE Deployer Default] Stopped
[StdJMSPool] Stopping
[StdJMSPool] JMA Provider Adapter StdJMSPool removed from JNDI
[StdJMSPool] Stopped
[DefaultJMSProvider] Stopping
[DefaultJMSProvider] JMA Provider Adapter DefaultJMSProvider removed from JNDI
[DefaultJMSProvider] Stopped
[JBossMQ] Stopping
[JBossMQ] Unregistering 'JMS:service=JMSServer'
[JBossMQ] Unregistering 'JMS:service=DistributedJMSServerSetup,type=OIL'
[JBossMQ] Unregistering 'JMS:service=DistributedConnectionFactory,type=OIL'
[JBossMQ] Unregistering 'JMS:service=DistributedJMSServerSetup,type=UIL'
[JBossMQ] Unregistering 'JMS:service=DistributedConnectionFactory,type=UIL'
[JBossMQ] Unregistering 'JMS:service=DistributedJMSServerSetup,type=RMI'
[JBossMQ] Unregistering 'JMS:service=DistributedConnectionFactory,type=RMI'
[JBossMQ] Stopped
[EmbeddedTomcatSX] Stopping
2001-06-08 12:43:37 - ContextManager: Removing context Ctx( /examples )
2001-06-08 12:43:37 - ContextManager: Removing context Ctx( /admin )
2001-06-08 12:43:37 - ContextManager: Removing context Ctx(  )
2001-06-08 12:43:37 - ContextManager: Removing context Ctx( /test )
[EmbeddedTomcatSX] Stopped
[Container factory] Stopping
[Container factory] Stopped
[DefaultDS] Stopping
[DefaultDS] XA Connection pool DefaultDS removed from JNDI
[DefaultDS] XA Connection pool DefaultDS shut down
[DefaultDS] Stopped
[JDBC provider] Stopping
[JDBC provider] Stopped
[JAAS Security Manager] Stopping
[JAAS Security Manager] Stopped
[Transaction manager] Stopping
[Transaction manager] Stopped
[JNDIView] Stopping
[JNDIView] Stopped
[Naming] Stopping
[Naming] Stopping
[Naming] Stopped
[Naming] JNP server stopped
[Naming] Stopped
[Webserver] Stopping
[Webserver] Stopped
[Service Control] Stopped 30 services
[Service Control] Destroying 23 MBeans
[Mail Service] Destroying
[Mail Service] Destroyed
[JMX RMI Connector] Destroying
[JMX RMI Connector] Destroyed
[JMX RMI Adaptor] Destroying
[JMX RMI Adaptor] Destroyed
[BlackBoxDS] Destroying
[BlackBoxDS] Destroyed
[MinervaXACMFactory] Destroying
[MinervaXACMFactory] Destroyed
[MinervaSharedLocalCMFactory] Destroying
[MinervaSharedLocalCMFactory] Destroyed
[MinervaNoTransCMFactory] Destroying
[MinervaNoTransCMFactory] Destroyed
[RARDeployer] Destroying
[RARDeployer] Destroyed
[Auto deploy] Destroying
[Auto deploy] Destroyed
[J2EE Deployer Default] Destroying
[J2EE Deployer Default] Destroyed
[StdJMSPool] Destroying
[StdJMSPool] Destroyed
[DefaultJMSProvider] Destroying
[DefaultJMSProvider] Destroyed
[JBossMQ] Destroying
[JBossMQ] Destroyed
[EmbeddedTomcatSX] Destroying
[EmbeddedTomcatSX] Destroyed
[Container factory] Destroying
[Container factory] Destroyed
[DefaultDS] Destroying
[DefaultDS] Destroyed
[JDBC provider] Destroying
[JDBC provider] Destroyed
[JAAS Security Manager] Destroying
[JAAS Security Manager] Destroyed
[Transaction manager] Destroying
[Transaction manager] Destroyed
[JNDIView] Destroying
[JNDIView] Destroyed
[Naming] Destroying
[Naming] Destroyed
[Webserver] Destroying
[Webserver] Destroyed
[Service Control] Destroyed 23 services
[Default] Shutdown complete

Reply via email to