11 Replies Latest reply on Sep 14, 2005 11:39 AM by starksm64

    Example 04_1 works -- finally

    siegfried1

      After struggling for some 20 or 30 hours I finally discovered that I have to look at the build.xml file and manally copy the .jar, .ear and .war files to jboss/server/all/deploy instead of jboss/server/default/deploy.

      Wow -- what a lot of lost time! Where is the problem here? I just downloaded the jboss server monday so I have the recent version.

      What is involved in using MySQL instead of Hypersonic for the examples? How do I run Hypersonic to view the databases created with ex04_1?

      Siegfried

        • 1. Re: Example 04_1 works -- finally
          cardenizen

          I have also been trying for many hours to get the simplest workbook example (ex04_1) to run with mysql and oracle. Apparently I've been taking on too much for a novice (like trying to get itracker - http://sourceforge.net/projects/itracker installed).

          My setup:
          JBoss distribution - JBoss-3.0.2.zip
          JSDK distribution - j2sdk-1_4_1-windows-i586.exe
          jdbc drivers - mm.mysql-2.0.14-bin.jar and classes12.zip

          These are ALL the changed I made:
          1. added the jdbc drivers to bin/run.bat

          2. changed the ex04_1 build.xml to point directly to the jboss directory (also removed JBOSS_HOME env variable). Just make sure property jboss.home gets set properly.

          3. copied mysql-service.xml from docs/examples/jca to server/default/deploy and removed hsqldb-service.xml. In mysql-service changed the ConnectionURL config-property to jdbc:mysql://localhost:3306/mysql and added the appropriate UserName and Password in their config-property tags.

          4. in server/default/conf/standardjaws.xml changed
          java:/DefaultDS
          <type-mapping>Hypersonic SQL</type-mapping>
          to
          java:/MySqlDS
          <type-mapping>mySQL</type-mapping>

          5. in server/default/conf/standardjbosscmp-jdbc.xml changed
          java:/DefaultDS
          <datasource-mapping>Hypersonic SQL</datasource-mapping>
          to
          java:/MySqlDS
          <datasource-mapping>mySQL</datasource-mapping>

          6. started the server with run.bat (did not use "-c all")

          7. in the ex04_1
          ant
          (sucessfully deployed CabinEJB)
          ant run.client_41a
          (added the master suite record)
          ant run.client_41b
          (added 99 suite records)

          I followed the same procedure to run this agiainst the oracle db.

          Attached is a zip containing all of the changed files.
          (no its not - the attach functionality seems to be broke)

          Regards,
          Dennis

          • 2. Re: Example 04_1 works -- finally
            bill.burke

            Ok, I guess we should explain those directories

            server/all
            server/default
            server/minimal

            Chapter 6 goes into detail on how to set up your beans
            for a different datasource
            Appendix A walks through on how to configure a datasource for Oracle.

            We are adding a walkthrough of the build.xml file to the final version. Would this help?


            > After struggling for some 20 or 30 hours I finally
            > discovered that I have to look at the build.xml file
            > and manally copy the .jar, .ear and .war files to
            > jboss/server/all/deploy instead of
            > jboss/server/default/deploy.
            >
            > Wow -- what a lot of lost time! Where is the problem
            > here? I just downloaded the jboss server monday so I
            > have the recent version.
            >
            > What is involved in using MySQL instead of Hypersonic
            > for the examples? How do I run Hypersonic to view the
            > databases created with ex04_1?
            >
            > Siegfried

            • 3. Re: Example 04_1 works -- finally
              bill.burke

              I don't get it...So you got it to work or not? Was Appendix A adequate for directions for setting up MySQL and Oracle?

              BTW, just copy the jdbc drivers to either server/default/lib or server/default/deploy.

              > I have also been trying for many hours to get the
              > simplest workbook example (ex04_1) to run with mysql
              > and oracle. Apparently I've been taking on too much
              > for a novice (like trying to get itracker -
              > http://sourceforge.net/projects/itracker installed).
              >
              > My setup:
              > JBoss distribution - JBoss-3.0.2.zip
              > JSDK distribution - j2sdk-1_4_1-windows-i586.exe
              > jdbc drivers - mm.mysql-2.0.14-bin.jar and
              > classes12.zip
              >
              > These are ALL the changed I made:
              > 1. added the jdbc drivers to bin/run.bat
              >
              > 2. changed the ex04_1 build.xml to point directly to
              > the jboss directory (also removed JBOSS_HOME env
              > variable). Just make sure property jboss.home gets
              > set properly.
              >
              > 3. copied mysql-service.xml from docs/examples/jca to
              > server/default/deploy and removed
              > hsqldb-service.xml. In mysql-service changed the
              > ConnectionURL config-property to
              > jdbc:mysql://localhost:3306/mysql and added the
              > appropriate UserName and Password in their
              > config-property tags.
              >
              > 4. in server/default/conf/standardjaws.xml changed
              > java:/DefaultDS
              > <type-mapping>Hypersonic SQL</type-mapping>
              > to
              > java:/MySqlDS
              > <type-mapping>mySQL</type-mapping>
              >
              > 5. in server/default/conf/standardjbosscmp-jdbc.xml
              > changed
              > java:/DefaultDS
              > <datasource-mapping>Hypersonic
              > SQL</datasource-mapping>
              > to
              > java:/MySqlDS
              > <datasource-mapping>mySQL</datasource-mapping>
              >
              > 6. started the server with run.bat (did not use "-c
              > all")
              >
              > 7. in the ex04_1
              > ant
              > (sucessfully deployed CabinEJB)
              > ant run.client_41a
              > (added the master suite record)
              > ant run.client_41b
              > (added 99 suite records)
              >
              > I followed the same procedure to run this agiainst
              > the oracle db.
              >
              > Attached is a zip containing all of the changed
              > files.
              > (no its not - the attach functionality seems to be
              > broke)
              >
              > Regards,
              > Dennis

              • 4. Re: Example 04_1 works -- finally
                dan1

                Bill,

                Are you going to update your workbook and samples in the near future?

                I had several people asking me about it.

                Dan

                • 5. Re: Example 04_1 works -- finally
                  cardenizen

                  > I don't get it...So you got it to work or not? Was
                  > Appendix A adequate for directions for setting up
                  > MySQL and Oracle?
                  >

                  Yes, I did get it to work (sort of - read on) but I did not use anything from appendix A. Instead of using titan-service.xml I used oracle-service.xml from docs/examples/jca changing only the ConnectionURL, UserName and Password properties.
                  Here is output from the console on startup when using titan-service.xml (with no titan.jar deployed):

                  11:56:47,898 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.jca:service=LocalTxCM,name=OracleDS
                  state: CONFIGURED
                  I Depend On: jboss.jca:service=LocalTxDS,name=OracleDS
                  jboss.jca:service=LocalTxPool,name=OracleDS
                  jboss.jca:service=CachedConnectionManager
                  jboss.security:name=JaasSecurityManager
                  jboss.jca:service=RARDeployer

                  Depends On Me: ]
                  11:56:47,908 INFO [URLDeploymentScanner] Started
                  11:56:47,908 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.0.2/server/default/conf/jboss-service.xml
                  11:56:47,908 INFO [Server] JBoss (MX MicroKernel) [3.0.2 Date:200208271339] Started in 0m:9s:433ms

                  Now, back to using oracle-service.xml.
                  At the time I wrote my previous post I was working through the examples and had not yet reached 6_1. Thats when things began to break. I was able to work examples 4_1 thru 5_3 with both Oracle and MySQL. Here is the result when deploying titan.jar from 6_1:

                  11:38:22,399 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.0.2/server/default/deploy/titan.jar
                  11:38:22,489 INFO [EjbModule] Creating
                  11:38:22,499 INFO [EjbModule] Deploying CustomerEJB
                  11:38:22,529 INFO [EjbModule] Created
                  11:38:22,529 INFO [EjbModule] Starting
                  11:38:22,689 WARN [ServiceController] Problem starting service jboss.j2ee:service=EJB,jndiName=CustomerHomeRemote
                  org.jboss.deployment.DeploymentException: Error: can't find data source: java:/DefaultDS; - nested throwable: (javax.naming.NameNotFoundException: DefaultDS not bound)
                  at org.jboss.ejb.plugins.cmp.jdbc.bridge.JDBCEntityBridge.(JDBCEntityBridge.java:99)
                  .
                  .
                  Caused by: javax.naming.NameNotFoundException: DefaultDS not bound
                  at org.jnp.server.NamingServer.getBinding(NamingServer.java:495)
                  at org.jnp.server.NamingServer.getBinding(NamingServer.java:503)
                  at org.jnp.server.NamingServer.getObject(NamingServer.java:509)
                  at org.jnp.server.NamingServer.lookup(NamingServer.java:282)
                  at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:456)
                  at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:440)
                  at javax.naming.InitialContext.lookup(InitialContext.java:347)
                  at org.jboss.ejb.plugins.cmp.jdbc.bridge.JDBCEntityBridge.(JDBCEntityBridge.java:96)
                  ... 52 more
                  11:38:22,709 INFO [EjbModule] Started
                  11:38:22,709 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.0.2/server/default/deploy/titan.jar
                  11:38:22,709 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.j2ee:service=EJB,jndiName=CustomerHomeRemote
                  state: FAILED
                  I Depend On:
                  Depends On Me: org.jboss.deployment.DeploymentException: Error: can't find data source: java:/DefaultDS; - nested throwable: (javax.naming.NameNotFoundException: DefaultDS not bound)]

                  I undeployed titan.jar. This may be unrelated but... Before I started using oracle, and was using mysql for ex 4_1 - 5_3, I had accidently left hsqldb-service.xml in /default/deploy, added mysql-service.xml. When I got to ex 6_1 it appeared to work (said table was created and records added) but I could not find them with squirrel db client. I commented out the remove call, ran it again, commented out the create code, ran it again and the data I "added" were listed.

                  Well, remembering what happened with mysql and your comment about hot deploy of -service modules, I copied hsqldb-service.xml to default/deploy:

                  12:36:11,807 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.0.2/server/default/deploy/hsqldb-service.xml
                  12:36:11,938 WARN [ServiceController] jboss.jca:service=LocalTxDS,name=hsqldbDS does not implement any Service methods
                  12:36:11,938 INFO [JBossManagedConnectionPool] Creating
                  12:36:11,948 INFO [JBossManagedConnectionPool] Created
                  12:36:11,948 INFO [HypersonicDatabase] Creating
                  12:36:11,948 INFO [HypersonicDatabase] Created
                  12:36:11,948 WARN [ServiceController] jboss.jca:service=LocalTxDS,name=hsqldbDS does not implement any Service methods
                  12:36:11,948 INFO [LocalTxConnectionManager] Creating
                  12:36:11,958 INFO [LocalTxConnectionManager] Created
                  12:36:11,958 INFO [JBossManagedConnectionPool] Starting
                  12:36:11,958 INFO [JBossManagedConnectionPool] Started
                  12:36:11,958 INFO [HypersonicDatabase] Starting
                  12:36:11,958 INFO [HypersonicDatabase] Started
                  12:36:11,968 INFO [LocalTxConnectionManager] Starting
                  12:36:12,008 INFO [DefaultDS] Bound connection factory for resource adapter 'JBoss LocalTransaction JDBC Wrapper' to JNDI name 'java:/DefaultDS'
                  12:36:12,028 INFO [LocalTxConnectionManager] Started
                  12:36:12,028 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.0.2/server/default/deploy/hsqldb-service.xml
                  12:36:12,048 INFO [STDOUT] Server.run/init: java.sql.SQLException: Wrong database file version
                  12:36:12,048 ERROR [STDERR] java.sql.SQLException: Wrong database file version
                  12:36:12,058 ERROR [STDERR] at org.hsqldb.Trace.getError(Trace.java:180)
                  12:36:12,058 ERROR [STDERR] at org.hsqldb.Trace.getError(Trace.java:144)
                  12:36:12,058 ERROR [STDERR] at org.hsqldb.Trace.check(Trace.java:276)
                  12:36:12,058 ERROR [STDERR] at org.hsqldb.Trace.check(Trace.java:260)
                  12:36:12,058 ERROR [STDERR] at org.hsqldb.Log.open(Log.java:185)
                  12:36:12,058 ERROR [STDERR] at org.hsqldb.Database.(Database.java:96)
                  12:36:12,058 ERROR [STDERR] at org.hsqldb.Embedded_Server.run(Embedded_Server.java:151)
                  12:36:12,058 ERROR [STDERR] at org.hsqldb.Embedded_Server.main(Embedded_Server.java:92)
                  12:36:12,058 ERROR [STDERR] at org.jboss.jdbc.HypersonicDatabase$2.run(HypersonicDatabase.java:186)

                  Then I deployed the same titan.jar and got a slightly different exeption:

                  12:36:42,061 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.0.2/server/default/deploy/titan.jar
                  12:36:42,171 INFO [EjbModule] Creating
                  12:36:42,191 INFO [EjbModule] Deploying CustomerEJB
                  12:36:42,221 INFO [EjbModule] Created
                  12:36:42,221 INFO [EjbModule] Starting
                  12:36:44,344 WARN [ServiceController] Problem starting service jboss.j2ee:service=EJB,jndiName=CustomerHomeRemote
                  org.jboss.deployment.DeploymentException: Error while fixing table name; - nested throwable: (org.jboss.util.NestedSQLException: Could not create connection; - nested throwable: (java.sql.SQLException: Connection is broken: Connection refused: connect); - nested throwable: (org.jboss.resource.ResourceException: Could not create connection; - nested throwable: (java.sql.SQLException: Connection is broken: Connection refused: connect)))
                  at org.jboss.ejb.plugins.cmp.jdbc.SQLUtil.fixTableName(SQLUtil.java:67)
                  .
                  .
                  at org.jboss.resource.adapter.jdbc.local.LocalManagedConnectionFactory.createManagedConnection(LocalManagedConnectionFactory.java:133)
                  ... 62 more
                  12:36:44,404 INFO [EjbModule] Started
                  12:36:44,404 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.0.2/server/default/deploy/titan.jar
                  12:36:44,414 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.j2ee:service=EJB,jndiName=CustomerHomeRemote
                  state: FAILED
                  I Depend On:
                  Depends On Me: org.jboss.deployment.DeploymentException: Error while fixing table name; - nested throwable: (org.jboss.util.NestedSQLException: Could not create connection; - nested throwable: (java.sql.SQLException: Connection is broken: Connection refused: connect); - nested throwable: (org.jboss.resource.ResourceException: Could not create connection; - nested throwable: (java.sql.SQLException: Connection is broken: Connection refused: connect)))]

                  Well thats about enough for this book, here I am stuck.

                  My oracle-service.xml:
                  <?xml version="1.0" encoding="UTF-8"?>

                  <!-- ===================================================================== -->
                  <!-- -->
                  <!-- JBoss Server Configuration -->
                  <!-- -->
                  <!-- ===================================================================== -->



                  <!-- ==================================================================== -->
                  <!-- ConnectionManager setup for Oracle dbs -->
                  <!-- Build jmx-api (build/build.sh all) and view for config documentation -->
                  <!-- Thanks to Steven Coy -->
                  <!-- ==================================================================== -->




                  <!-- Include a login module configuration named OracleDbRealm.
                  Update your login-conf.xml, here is an example for a
                  ConfiguredIdentityLoginModule:

                  <application-policy name = "OracleDbRealm">

                  <login-module code = "org.jboss.resource.security.ConfiguredIdentityLoginModule" flag = "required">
                  <module-option name = "principal">yourprincipal</module-option>
                  <module-option name = "userName">yourusername</module-option>
                  <module-option name = "password">yourpassword</module-option>
                  <module-option name = "managedConnectionFactoryName">jboss.jca:service=LocalTxCM,name=OracleDS</module-option>
                  </login-module>

                  </application-policy>

                  NOTE: the application-policy name attribute must match SecurityDomainJndiName, and the
                  module-option name = "managedConnectionFactoryName"
                  must match the object name of the ConnectionManager you are configuring here.
                  -->

                  <!--uncomment out this line if you are using the OracleDbRealm above
                  OracleDbRealm
                  -->

                  <depends optional-attribute-name="ManagedConnectionFactoryName">
                  <!--embedded mbean-->


                  OracleDS



                  <config-property name="ConnectionURL" type="java.lang.String">jdbc:oracle:thin:@irmw2ks105:1521:P603</config-property>
                  <config-property name="DriverClass" type="java.lang.String">oracle.jdbc.driver.OracleDriver</config-property>
                  <!--set these only if you want only default logins, not through JAAS -->
                  <config-property name="UserName" type="java.lang.String">scott</config-property>
                  <config-property name="Password" type="java.lang.String">tiger</config-property>




                  <!--Below here are advanced properties -->
                  <!--hack-->
                  <depends optional-attribute-name="OldRarDeployment">jboss.jca:service=RARDeployment,name=JBoss LocalTransaction JDBC Wrapper



                  <depends optional-attribute-name="ManagedConnectionPool">
                  <!--embedded mbean-->


                  0
                  50
                  5000
                  15
                  <!--criteria indicates if Subject (from security domain) or app supplied
                  parameters (such as from getConnection(user, pw)) are used to distinguish
                  connections in the pool. Choices are
                  ByContainerAndApplication (use both),
                  ByContainer (use Subject),
                  ByApplication (use app supplied params only),
                  ByNothing (all connections are equivalent, usually if adapter supports
                  reauthentication)-->
                  ByContainer



                  <depends optional-attribute-name="CachedConnectionManager">jboss.jca:service=CachedConnectionManager

                  <depends optional-attribute-name="JaasSecurityManagerService">jboss.security:service=JaasSecurityManager

                  java:/TransactionManager

                  <!--make the rar deploy! hack till better deployment-->
                  jboss.jca:service=RARDeployer





                  • 6. Re: Example 04_1 works -- finally
                    bill.burke

                    It will be published by O'Reilly sometime in October. It will be updated for 3.0.2. With all your problems fixed hopefully.

                    Bill

                    > Bill,
                    >
                    > Are you going to update your workbook and samples in
                    > the near future?
                    >
                    > I had several people asking me about it.
                    >
                    > Dan

                    • 7. Re: Example 04_1 works -- finally
                      dan1

                      Bill,

                      it's OK.

                      The samples do work on my machine. I do use them to explain EJB concepts to some junior people around the office, but people in general believe a printed book explains some stuff better, because it is on paper...

                      The previously mentioned 04_1 works without any change, run the ant script and off you go.

                      Of course, the environment is correctly set up.

                      Dan

                      • 8. Re: Example 04_1 works -- finally
                        siegfried1

                        Bill,
                        But how do you start your jboss? Do you type

                        ./run.bat -c all

                        as the quickstart says to do? If so your examples will use the wrong deploy directory! (At least that is what happens for me).

                        • 9. Re: Example 04_1 works -- finally
                          slaboure

                          These examples are not for the quick-start-guide but for the O'reilly book => "jboss.bat" alone

                          • 10. Re: Example 04_1 works -- finally
                            bhasin_vikas1

                            I'm facing the problem in depolying ssl in jboss 3.2.3

                            The following log list in the server is :


                            16:14:22,921 INFO [Server] Starting JBoss (MX MicroKernel)...
                            16:14:22,921 INFO [Server] Release ID: JBoss [WonderLand] 3.2.3 (build: CVSTag=JBoss_3_2_3 date=200311301445)
                            16:14:22,921 INFO [Server] Home Dir: C:\jboss-3.2.3
                            16:14:22,921 INFO [Server] Home URL: file:/C:/jboss-3.2.3/
                            16:14:22,921 INFO [Server] Library URL: file:/C:/jboss-3.2.3/lib/
                            16:14:22,921 INFO [Server] Patch URL: null
                            16:14:22,921 INFO [Server] Server Name: default
                            16:14:22,968 INFO [Server] Server Home Dir: C:\jboss-3.2.3\server\default
                            16:14:22,968 INFO [Server] Server Home URL: file:/C:/jboss-3.2.3/server/default/
                            16:14:22,968 INFO [Server] Server Data Dir: C:\jboss-3.2.3\server\default\data
                            16:14:22,968 INFO [Server] Server Temp Dir: C:\jboss-3.2.3\server\default\tmp
                            16:14:22,968 INFO [Server] Server Config URL: file:/C:/jboss-3.2.3/server/default/conf/
                            16:14:23,093 INFO [Server] Server Library URL: file:/C:/jboss-3.2.3/server/default/lib/
                            16:14:23,093 INFO [Server] Root Deployment Filename: jboss-service.xml
                            16:14:23,093 INFO [Server] Starting General Purpose Architecture (GPA)...
                            16:14:23,374 INFO [ServerInfo] Java version: 1.4.2_08,Sun Microsystems Inc.
                            16:14:23,374 INFO [ServerInfo] Java VM: Java HotSpot(TM) Client VM 1.4.2_08-b03,Sun Microsystems Inc.
                            16:14:23,374 INFO [ServerInfo] OS-System: Windows 2000 5.0,x86
                            16:14:23,406 INFO [ServiceController] Controller MBean online
                            16:14:23,546 INFO [MainDeployer] Started jboss.system:service=MainDeployer
                            16:14:23,624 INFO [MainDeployer] Adding deployer: org.jboss.deployment.JARDeployer@1a68ef9
                            16:14:23,624 INFO [JARDeployer] Started jboss.system:service=JARDeployer
                            16:14:23,656 INFO [MainDeployer] Adding deployer: org.jboss.deployment.SARDeployer@1e232b5
                            16:14:23,671 INFO [SARDeployer] Started jboss.system:service=ServiceDeployer
                            16:14:23,671 INFO [Server] Core system initialized
                            16:14:23,702 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/conf/jboss-service.xml
                            16:14:43,890 INFO [Log4jService$URLWatchTimerTask] Configuring from URL: resource:log4j.xml
                            16:14:44,234 INFO [AbstractDeploymentScanner$ScannerThread] Running
                            16:14:44,234 INFO [LocalJBossServerDomain] Started jboss.management.local:j2eeType=J2EEDomain,name=Manager
                            16:14:44,234 INFO [Log4jService] Started jboss.system:type=Log4jService,service=Logging
                            16:14:44,249 INFO [WebService] Started WebServer with address: 0.0.0.0:8083
                            16:14:44,265 INFO [WebService] Using RMI server codebase: http://JAVAINT-003:8083/
                            16:14:44,265 INFO [WebService] Started jboss:service=WebService
                            16:14:44,265 INFO [NamingService] Starting jnp server
                            16:14:44,359 INFO [NamingService] Started jnpPort=1099, rmiPort=1098, backlog=50, bindAddress=/0.0.0.0, Client SocketFactory=null, Server SocketFactory=org.jboss.net.sockets.DefaultSocketFactory@ad093076
                            16:14:44,374 INFO [NamingService] Listening on port 1099
                            16:14:44,390 INFO [NamingService] Started jboss:service=Naming
                            16:14:44,390 INFO [JNDIView] Started jboss:service=JNDIView
                            16:14:44,390 INFO [SecurityConfig] Started jboss.security:service=SecurityConfig
                            16:14:44,452 INFO [XMLLoginConfig] Started jboss.security:service=XMLLoginConfig
                            16:14:44,468 INFO [JaasSecurityManagerService] Started jboss.security:service=JaasSecurityManager
                            16:14:44,515 INFO [TransactionManagerService] Started jboss:service=TransactionManager
                            16:14:44,562 INFO [JRMPInvoker] Started jboss:service=invoker,type=jrmp
                            16:14:44,624 INFO [JRMPProxyFactory] Started jboss:service=proxyFactory,target=ClientUserTransactionFactory
                            16:14:44,624 INFO [JRMPProxyFactory] Started jboss:service=proxyFactory,target=ClientUserTransaction
                            16:14:44,640 INFO [ClientUserTransactionService] Started jboss:service=ClientUserTransaction
                            16:14:44,640 INFO [LocalInvoker] Started jboss:service=invoker,type=local
                            16:14:44,656 INFO [PooledInvoker] Started jboss:service=invoker,type=pooled
                            16:14:44,671 INFO [MainDeployer] Adding deployer: org.jboss.ejb.EJBDeployer@1784427
                            16:14:44,671 INFO [EJBDeployer] Started jboss.ejb:service=EJBDeployer
                            16:14:44,687 INFO [MainDeployer] Adding deployer: org.jboss.deployment.EARDeployer@6a435f
                            16:14:44,687 INFO [EARDeployer] Started jboss.j2ee:service=EARDeployer
                            16:14:44,718 INFO [MainDeployer] Adding deployer: org.jboss.varia.deployment.BeanShellSubDeployer@5ff916
                            16:14:44,718 INFO [BeanShellSubDeployer] Started jboss.scripts:service=BSHDeployer
                            16:14:44,734 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/http-invoker.sar/
                            16:14:44,749 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/http-invoker.sar/invoker.war/
                            16:14:44,765 INFO [MainDeployer] deployment waiting for deployer: file:/C:/jboss-3.2.3/server/default/deploy/http-invoker.sar/invoker.war/
                            16:14:44,890 INFO [HttpInvoker] Started jboss:service=invoker,type=http
                            16:14:44,890 INFO [HttpInvokerHA] Started jboss:service=invoker,type=httpHA
                            16:14:44,906 INFO [HttpProxyFactory] Started jboss:service=invoker,type=http,target=Naming
                            16:14:44,906 INFO [HttpProxyFactory] Started jboss:service=invoker,type=http,target=Naming,readonly=true
                            16:14:44,968 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/http-invoker.sar/
                            16:14:45,249 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/jboss-jca.sar
                            16:14:45,937 INFO [XSLSubDeployer] Created templates: org.apache.xalan.templates.StylesheetRoot@ea443f
                            16:14:45,937 INFO [MainDeployer] Adding deployer: org.jboss.resource.RARDeployer@268cc6
                            16:14:45,937 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/http-invoker.sar/invoker.war/
                            16:14:45,937 INFO [MainDeployer] deployment waiting for deployer: file:/C:/jboss-3.2.3/server/default/deploy/http-invoker.sar/invoker.war/
                            16:14:45,937 INFO [MainDeployer] Deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/http-invoker.sar/invoker.war/ is waiting for an appropriate deployer.
                            16:14:45,952 INFO [RARDeployer] Started jboss.jca:service=RARDeployer
                            16:14:45,968 INFO [MainDeployer] Adding deployer: org.jboss.deployment.XSLSubDeployer@3f265b
                            16:14:45,968 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/http-invoker.sar/invoker.war/
                            16:14:45,968 INFO [MainDeployer] deployment waiting for deployer: file:/C:/jboss-3.2.3/server/default/deploy/http-invoker.sar/invoker.war/
                            16:14:45,968 INFO [MainDeployer] Deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/http-invoker.sar/invoker.war/ is waiting for an appropriate deployer.
                            16:14:45,968 INFO [XSLSubDeployer] Started jboss.jca:service=ConnectionFactoryDeployer
                            16:14:45,968 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/jboss-jca.sar
                            16:14:45,968 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/
                            16:14:45,984 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/ant.jar
                            16:14:47,609 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/bootstrap.jar
                            16:14:47,687 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/catalina.jar
                            16:14:49,406 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/commons-beanutils.jar
                            16:14:49,718 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/commons-collections.jar
                            16:14:50,359 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/commons-digester.jar
                            16:14:50,702 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/commons-logging.jar
                            16:14:50,812 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/jakarta-regexp-1.3.jar
                            16:14:50,890 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/jasper-compiler.jar
                            16:14:51,234 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/jasper-runtime.jar
                            16:14:51,421 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/naming-common.jar
                            16:14:51,546 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/naming-resources.jar
                            16:14:51,656 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/servlets-common.jar
                            16:14:51,702 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/servlets-default.jar
                            16:14:51,734 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/servlets-invoker.jar
                            16:14:51,765 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/servlets-webdav.jar
                            16:14:51,765 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/tomcat-coyote.jar
                            16:14:51,937 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/tomcat-http11.jar
                            16:14:52,046 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/tomcat-jk2.jar
                            16:14:52,218 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/tomcat-util.jar
                            16:14:52,702 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/tomcat41-service.jar
                            16:15:01,468 INFO [STDOUT] Apache Tomcat/4.1.29
                            16:15:01,624 INFO [Http11Protocol] Initializing Coyote HTTP/1.1 on port 8080
                            16:15:01,624 INFO [Engine] CoyoteConnector Coyote can't register jmx for protocol
                            16:15:01,656 INFO [Http11Protocol] Starting Coyote HTTP/1.1 on port 8080
                            16:15:01,749 INFO [Engine] CoyoteConnector Coyote can't register jmx for protocol
                            16:15:01,906 INFO [ChannelSocket] JK2: ajp13 listening on /0.0.0.0:8009
                            16:15:01,921 INFO [JkMain] Jk running ID=0 time=0/172 config=null
                            16:15:01,937 INFO [Engine] HttpConnector Opening server socket on host IP address 0.0.0.0
                            16:15:01,937 INFO [Engine] HttpConnector[3223] Starting background thread
                            16:15:02,093 INFO [Engine] HttpProcessor[3223][0] Starting background thread
                            16:15:02,093 INFO [Engine] HttpProcessor[3223][1] Starting background thread
                            16:15:02,109 INFO [Engine] HttpProcessor[3223][2] Starting background thread
                            16:15:02,109 INFO [Engine] HttpProcessor[3223][3] Starting background thread
                            16:15:02,109 INFO [Engine] HttpProcessor[3223][4] Starting background thread
                            16:15:02,109 INFO [EmbeddedTomcatService] OK
                            16:15:02,109 INFO [MainDeployer] Adding deployer: org.jboss.web.tomcat.tc4.EmbeddedTomcatService@a632be
                            16:15:02,109 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/http-invoker.sar/invoker.war/
                            16:15:02,312 INFO [EmbeddedTomcatService] deploy, ctxPath=/invoker, warUrl=file:/C:/jboss-3.2.3/server/default/deploy/http-invoker.sar/invoker.war/
                            16:15:03,031 INFO [Engine] SingleSignOnContextConfig[/invoker]: Added certificates -> request attribute Valve
                            16:15:03,093 INFO [Engine] SingleSignOnContextConfig[/invoker]: Configured an authenticator for method BASIC
                            16:15:03,124 WARN [EmbeddedTomcatService] Unable to invoke setDelegate on class loader:org.jboss.web.tomcat.tc4.WebCtxLoader$ENCLoader@82a13a
                            16:15:03,124 INFO [Engine] StandardManager[/invoker]: Seeding random number generator class java.security.SecureRandom
                            16:15:03,249 INFO [Engine] StandardManager[/invoker]: Seeding of random number generator has been completed
                            16:15:03,327 INFO [Engine] StandardWrapper[/invoker:default]: Loading container servlet default
                            16:15:03,374 INFO [Engine] StandardWrapper[/invoker:invoker]: Loading container servlet invoker
                            16:15:04,468 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/http-invoker.sar/invoker.war/
                            16:15:04,468 INFO [EmbeddedTomcatService] Started jboss.web:service=WebServer
                            16:15:04,499 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/
                            16:15:04,499 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb.sar/
                            16:15:04,515 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb.sar/ant.jar
                            16:15:06,124 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb.sar/jasper-compiler.jar
                            16:15:06,468 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb.sar/jasper-runtime.jar
                            16:15:06,656 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb.sar/javax.servlet.jar
                            16:15:06,984 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb.sar/org.jboss.jetty.jar
                            16:15:07,062 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb.sar/org.mortbay.j2ee.jar
                            16:15:07,218 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb.sar/org.mortbay.jetty.jar
                            16:15:08,296 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb.sar/org.mortbay.jmx.jar
                            16:15:12,781 WARN [NestedThrowable] Duplicate throwable nesting of same base type: class org.jboss.deployment.DeploymentException is assignable from: class org.jboss.deployment.DeploymentException
                            16:15:12,781 ERROR [MainDeployer] could not create deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb.sar/
                            org.jboss.deployment.DeploymentException: create operation failed for package file:/C:/jboss-3.2.3/server/default/deploy/jbossweb.sar/; - nested throwable: (org.jboss.deployment.DeploymentException: Trying to install an already registered mbean: jboss.web:service=WebServer)
                            at org.jboss.deployment.SARDeployer.create(SARDeployer.java:202)
                            at org.jboss.deployment.MainDeployer.create(MainDeployer.java:786)
                            at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:641)
                            at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:605)
                            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
                            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                            at java.lang.reflect.Method.invoke(Method.java:324)
                            at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
                            at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546)
                            at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
                            at $Proxy6.deploy(Unknown Source)
                            at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:302)
                            at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:476)
                            at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:201)
                            at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:274)
                            at org.jboss.system.ServiceMBeanSupport.start(ServiceMBeanSupport.java:192)
                            at sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source)
                            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                            at java.lang.reflect.Method.invoke(Method.java:324)
                            at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
                            at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546)
                            at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:976)
                            at $Proxy0.start(Unknown Source)
                            at org.jboss.system.ServiceController.start(ServiceController.java:394)
                            at sun.reflect.GeneratedMethodAccessor6.invoke(Unknown Source)
                            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                            at java.lang.reflect.Method.invoke(Method.java:324)
                            at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
                            at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546)
                            at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
                            at $Proxy4.start(Unknown Source)
                            at org.jboss.deployment.SARDeployer.start(SARDeployer.java:226)
                            at org.jboss.deployment.MainDeployer.start(MainDeployer.java:832)
                            at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:642)
                            at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:605)
                            at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:589)
                            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
                            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                            at java.lang.reflect.Method.invoke(Method.java:324)
                            at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
                            at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546)
                            at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
                            at $Proxy5.deploy(Unknown Source)
                            at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:384)
                            at org.jboss.system.server.ServerImpl.start(ServerImpl.java:291)
                            at org.jboss.Main.boot(Main.java:150)
                            at org.jboss.Main$1.run(Main.java:395)
                            at java.lang.Thread.run(Thread.java:534)
                            Caused by: org.jboss.deployment.DeploymentException: Trying to install an already registered mbean: jboss.web:service=WebServer
                            at org.jboss.system.ServiceCreator.install(ServiceCreator.java:69)
                            at org.jboss.system.ServiceConfigurator.internalInstall(ServiceConfigurator.java:151)
                            at org.jboss.system.ServiceConfigurator.install(ServiceConfigurator.java:114)
                            at org.jboss.system.ServiceController.install(ServiceController.java:225)
                            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
                            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                            at java.lang.reflect.Method.invoke(Method.java:324)
                            at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
                            at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546)
                            at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
                            at $Proxy4.install(Unknown Source)
                            at org.jboss.deployment.SARDeployer.create(SARDeployer.java:183)
                            ... 49 more
                            16:15:12,812 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/jms/jbossmq-httpil.sar/
                            16:15:12,812 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/
                            16:15:13,015 INFO [EmbeddedTomcatService] deploy, ctxPath=/jbossmq-httpil, warUrl=file:/C:/jboss-3.2.3/server/default/deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/
                            16:15:13,343 INFO [Engine] SingleSignOnContextConfig[/jbossmq-httpil]: Added certificates -> request attribute Valve
                            16:15:13,343 INFO [Engine] SingleSignOnContextConfig[/jbossmq-httpil]: Configured an authenticator for method BASIC
                            16:15:13,359 WARN [EmbeddedTomcatService] Unable to invoke setDelegate on class loader:org.jboss.web.tomcat.tc4.WebCtxLoader$ENCLoader@140243b
                            16:15:13,359 INFO [Engine] StandardManager[/jbossmq-httpil]: Seeding random number generator class java.security.SecureRandom
                            16:15:13,359 INFO [Engine] StandardManager[/jbossmq-httpil]: Seeding of random number generator has been completed
                            16:15:13,359 INFO [Engine] StandardWrapper[/jbossmq-httpil:default]: Loading container servlet default
                            16:15:13,359 INFO [Engine] StandardWrapper[/jbossmq-httpil:invoker]: Loading container servlet invoker
                            16:15:13,734 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/jms/jbossmq-httpil.sar/
                            16:15:13,734 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/jmx-invoker-adaptor-server.sar/
                            16:15:13,906 INFO [JRMPProxyFactory] Started jboss.jmx:type=adaptor,name=Invoker,protocol=jrmp,service=proxyFactory
                            16:15:13,921 INFO [NamingAlias] Bound link jmx/rmi/RMIAdaptor to jmx/invoker/RMIAdaptor
                            16:15:13,921 INFO [NamingAlias] Started jboss.jmx:alias=jmx/rmi/RMIAdaptor
                            16:15:13,921 INFO [InvokerAdaptorService] Started jboss.jmx:type=adaptor,name=Invoker
                            16:15:13,952 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/jmx-invoker-adaptor-server.sar/
                            16:15:17,265 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/management/console-mgr.sar
                            16:15:20,874 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/tmp/deploy/tmp37307console-mgr.sar-contents/console-mgr-classes.jar
                            16:15:21,734 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/tmp/deploy/tmp37307console-mgr.sar-contents/jcommon.jar
                            16:15:22,452 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/tmp/deploy/tmp37307console-mgr.sar-contents/jfreechart-demo.jar
                            16:15:23,890 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/tmp/deploy/tmp37307console-mgr.sar-contents/jfreechart.jar
                            16:15:24,281 INFO [PluginManager] Started jboss.admin:service=PluginManager
                            16:15:24,281 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/management/console-mgr.sar
                            16:15:24,296 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/snmp-adaptor.sar/
                            16:15:24,312 INFO [SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/snmp-adaptor.sar/castor.jar
                            16:15:32,484 INFO [TrapdService] Started jboss.jmx:name=SnmpAgent,service=trapd,type=logger
                            16:15:32,484 INFO [SnmpAgentService] Instantiating trap emitter ...
                            16:15:32,515 INFO [SnmpAgentService] Starting trap emitter ...
                            16:15:32,515 INFO [TrapEmitter] Reading resource: "/managers.xml"
                            16:15:32,906 INFO [TrapEmitter] "/managers.xml" valid. Read 1 monitoring managers
                            16:15:32,906 INFO [TrapEmitter] Executing resource: "/managers.xml"
                            16:15:33,140 INFO [TrapFactorySupport] Reading resource: "/notifications.xml"
                            16:15:33,218 INFO [TrapFactorySupport] "/notifications.xml" valid. Read 2 mappings
                            16:15:33,218 INFO [TrapFactorySupport] Executing resource: "/notifications.xml"
                            16:15:33,296 INFO [TrapFactorySupport] Trap factory going active
                            16:15:33,296 INFO [SnmpAgentService] Instantiating subscription manager ...
                            16:15:33,296 INFO [SnmpAgentService] Starting subscription manager ...
                            16:15:33,296 INFO [SubscriptionMgr] Reading resource: "/mbeans.xml"
                            16:15:33,343 INFO [SubscriptionMgr] "/mbeans.xml" valid. Read 2 monitored objects
                            16:15:33,343 INFO [SubscriptionMgr] Executing resource: "/mbeans.xml"
                            16:15:33,343 INFO [SubscriptionMgr] Subscription manager done
                            16:15:33,343 INFO [SnmpAgentService] Starting heartbeat controller ...
                            16:15:33,343 WARN [Heartbeat] Heartbeat disabled
                            16:15:33,421 INFO [SnmpAgentService] Snmp Agent going active
                            16:15:33,421 INFO [SnmpAgentService] Started jboss.jmx:name=SnmpAgent,service=snmp,type=adaptor
                            16:15:33,421 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/snmp-adaptor.sar/
                            16:15:33,468 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/uuid-key-generator.sar
                            16:15:33,562 INFO [UUIDKeyGeneratorFactoryService] Started jboss:service=UUIDKeyGeneratorFactory
                            16:15:33,593 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/uuid-key-generator.sar
                            16:15:33,609 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/jboss-local-jdbc.rar
                            16:15:33,781 INFO [RARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/tmp/deploy/tmp37310jboss-local-jdbc.rar-contents/jboss-local-jdbc.jar
                            16:15:33,827 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/jboss-local-jdbc.rar
                            16:15:33,890 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/jboss-xa-jdbc.rar
                            16:15:34,031 INFO [RARMetaData] Loading JBoss Resource Adapter for JDBC 2 XA drivers
                            16:15:34,031 INFO [RARMetaData] Required license terms present. See deployment descriptor.
                            16:15:34,077 INFO [RARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/tmp/deploy/tmp37311jboss-xa-jdbc.rar-contents/jboss-xa-jdbc.jar
                            16:15:34,093 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/jboss-xa-jdbc.rar
                            16:15:34,187 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/jms/jms-ra.rar
                            16:15:34,421 INFO [RARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/tmp/deploy/tmp37312jms-ra.rar-contents/jms-ra.jar
                            16:15:34,452 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/jms/jms-ra.rar
                            16:15:34,468 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/hsqldb-ds.xml
                            16:15:34,671 INFO [RARDeployment] Started jboss.jca:service=ManagedConnectionFactory,name=DefaultDS
                            16:15:34,671 INFO [JBossManagedConnectionPool] Started jboss.jca:service=ManagedConnectionPool,name=DefaultDS
                            16:15:34,702 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/hsqldb-ds.xml
                            16:15:34,718 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/jms/jms-ds.xml
                            16:15:34,843 INFO [JMSProviderLoader] Bound adapter to java:/DefaultJMSProvider
                            16:15:34,843 INFO [JMSProviderLoader] Started jboss.mq:service=JMSProviderLoader,name=JBossMQProvider
                            16:15:34,859 INFO [ServerSessionPoolLoader] pool factory StdJMSPool bound to java:/StdJMSPool
                            16:15:34,859 INFO [ServerSessionPoolLoader] Started jboss.mq:service=ServerSessionPoolMBean,name=StdJMSPool
                            16:15:34,906 INFO [RARDeployment] Started jboss.jca:service=ManagedConnectionFactory,name=JmsXA
                            16:15:34,906 INFO [JBossManagedConnectionPool] Started jboss.jca:service=ManagedConnectionPool,name=JmsXA
                            16:15:34,921 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/jms/jms-ds.xml
                            16:15:34,937 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/cache-invalidation-service.xml
                            16:15:34,984 INFO [InvalidationManager] Starting Invalidation Manager jboss.cache:service=InvalidationManager
                            16:15:34,984 INFO [InvalidationManager] Started jboss.cache:service=InvalidationManager
                            16:15:34,984 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/cache-invalidation-service.xml
                            16:15:34,999 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/client-deployer-service.xml
                            16:15:35,046 INFO [MainDeployer] Adding deployer: org.jboss.deployment.ClientDeployer@ccc621
                            16:15:35,046 INFO [ClientDeployer] Started jboss.j2ee:service=ClientDeployer
                            16:15:35,062 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/client-deployer-service.xml
                            16:15:35,077 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/jms/hsqldb-jdbc2-service.xml
                            16:15:35,218 INFO [MessageCache] Started jboss.mq:service=MessageCache
                            16:15:35,249 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/jms/hsqldb-jdbc2-service.xml
                            16:15:35,265 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/jms/jbossmq-destinations-service.xml
                            16:15:35,390 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/jms/jbossmq-destinations-service.xml
                            16:15:35,406 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/jms/jbossmq-service.xml
                            16:15:35,593 INFO [DynamicStateManager] Started jboss.mq:service=StateManager
                            16:15:35,609 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/jms/jbossmq-service.xml
                            16:15:35,624 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/jms/jvm-il-service.xml
                            16:15:35,671 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/jms/jvm-il-service.xml
                            16:15:35,687 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/jms/oil-service.xml
                            16:15:35,734 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/jms/oil-service.xml
                            16:15:35,734 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/jms/oil2-service.xml
                            16:15:35,781 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/jms/oil2-service.xml
                            16:15:35,796 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/jms/rmi-il-service.xml
                            16:15:35,827 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/jms/rmi-il-service.xml
                            16:15:35,843 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/jms/uil2-service.xml
                            16:15:35,921 INFO [NamingAlias] Bound link UILConnectionFactory to UIL2ConnectionFactory
                            16:15:35,921 INFO [NamingAlias] Started jboss.mq:service=InvocationLayer,type=UIL
                            16:15:35,921 INFO [NamingAlias] Bound link UILXAConnectionFactory to UIL2XAConnectionFactory
                            16:15:35,921 INFO [NamingAlias] Started jboss.mq:service=InvocationLayer,type=UILXA
                            16:15:35,937 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/jms/uil2-service.xml
                            16:15:35,952 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/mail-service.xml
                            16:15:36,265 INFO [MailService] Mail Service bound to java:/Mail
                            16:15:36,265 INFO [MailService] Started jboss:service=Mail
                            16:15:36,281 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/mail-service.xml
                            16:15:36,296 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/properties-service.xml
                            16:15:36,327 INFO [PropertyEditorManagerService] Started jboss:type=Service,name=PropertyEditorManager
                            16:15:36,327 INFO [SystemPropertiesService] Started jboss:type=Service,name=SystemProperties
                            16:15:36,484 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/properties-service.xml
                            16:15:36,499 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/schedule-manager-service.xml
                            16:15:36,531 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/schedule-manager-service.xml
                            16:15:36,546 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/scheduler-service.xml
                            16:15:36,562 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/scheduler-service.xml
                            16:15:36,577 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/sqlexception-service.xml
                            16:15:36,609 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/sqlexception-service.xml
                            16:15:36,624 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/transaction-service.xml
                            16:15:36,702 INFO [CachedConnectionManager] Started jboss.jca:service=CachedConnectionManager
                            16:15:36,765 INFO [JaasSecurityManagerService] Created securityMgr=org.jboss.security.plugins.JaasSecurityManager@1589d3d
                            16:15:36,765 INFO [JaasSecurityManagerService] setCachePolicy, c=org.jboss.util.TimedCachePolicy@1ab6c1c
                            16:15:36,765 INFO [JaasSecurityManagerService] Added HsqlDbRealm, org.jboss.security.plugins.SecurityDomainContext@146ac5a to map
                            16:15:36,781 INFO [DefaultDS] Bound connection factory for resource adapter for ConnectionManager 'jboss.jca:service=LocalTxCM,name=DefaultDS to JNDI name 'java:/DefaultDS'
                            16:15:36,781 INFO [TxConnectionManager] Started jboss.jca:service=LocalTxCM,name=DefaultDS
                            16:15:37,374 INFO [PersistenceManager] Started jboss.mq:service=PersistenceManager
                            16:15:37,374 INFO [DestinationManager] Started jboss.mq:service=DestinationManager
                            16:15:37,421 INFO [A] Bound to JNDI name: queue/A
                            16:15:37,421 INFO [A] Started jboss.mq.destination:service=Queue,name=A
                            16:15:37,421 INFO [B] Bound to JNDI name: queue/B
                            16:15:37,421 INFO [B] Started jboss.mq.destination:service=Queue,name=B
                            16:15:37,421 INFO [C] Bound to JNDI name: queue/C
                            16:15:37,421 INFO [C] Started jboss.mq.destination:service=Queue,name=C
                            16:15:37,421 INFO [D] Bound to JNDI name: queue/D
                            16:15:37,421 INFO [D] Started jboss.mq.destination:service=Queue,name=D
                            16:15:37,421 INFO [ex] Bound to JNDI name: queue/ex
                            16:15:37,421 INFO [ex] Started jboss.mq.destination:service=Queue,name=ex
                            16:15:37,468 INFO [JaasSecurityManagerService] Created securityMgr=org.jboss.security.plugins.JaasSecurityManager@5e6a13
                            16:15:37,468 INFO [JaasSecurityManagerService] setCachePolicy, c=org.jboss.util.TimedCachePolicy@862041
                            16:15:37,468 INFO [JaasSecurityManagerService] Added jbossmq, org.jboss.security.plugins.SecurityDomainContext@1af9d1c to map
                            16:15:37,484 INFO [SecurityManager] Started jboss.mq:service=SecurityManager
                            16:15:37,484 INFO [testTopic] Bound to JNDI name: topic/testTopic
                            16:15:37,484 INFO [testTopic] Started jboss.mq.destination:service=Topic,name=testTopic
                            16:15:37,499 INFO [securedTopic] Bound to JNDI name: topic/securedTopic
                            16:15:37,499 INFO [securedTopic] Started jboss.mq.destination:service=Topic,name=securedTopic
                            16:15:37,499 INFO [testDurableTopic] Bound to JNDI name: topic/testDurableTopic
                            16:15:37,499 INFO [testDurableTopic] Started jboss.mq.destination:service=Topic,name=testDurableTopic
                            16:15:37,499 INFO [testQueue] Bound to JNDI name: queue/testQueue
                            16:15:37,499 INFO [testQueue] Started jboss.mq.destination:service=Queue,name=testQueue
                            16:15:37,499 INFO [InterceptorLoader] Started jboss.mq:service=TracingInterceptor
                            16:15:37,499 INFO [Invoker] Started jboss.mq:service=Invoker
                            16:15:37,624 INFO [HTTPServerILService] Started jboss.mq:service=InvocationLayer,type=HTTP
                            16:15:37,624 INFO [JVMServerILService] Started jboss.mq:service=InvocationLayer,type=JVM
                            16:15:37,624 INFO [OILServerILService] JBossMQ OIL service available at : /0.0.0.0:8090
                            16:15:37,656 INFO [OILServerILService] Started jboss.mq:service=InvocationLayer,type=OIL
                            16:15:37,656 INFO [OIL2ServerILService] JBossMQ OIL2 service available at : /0.0.0.0:8092
                            16:15:37,702 INFO [OIL2ServerILService] Started jboss.mq:service=InvocationLayer,type=OIL2
                            16:15:37,796 INFO [RMIServerILService] Started jboss.mq:service=InvocationLayer,type=RMI
                            16:15:37,796 INFO [UILServerILService] JBossMQ UIL service available at : /0.0.0.0:8093
                            16:15:37,890 INFO [UILServerILService] Started jboss.mq:service=InvocationLayer,type=UIL2
                            16:15:37,890 INFO [DLQ] Bound to JNDI name: queue/DLQ
                            16:15:37,890 INFO [DLQ] Started jboss.mq.destination:service=Queue,name=DLQ
                            16:15:37,906 INFO [JaasSecurityManagerService] Created securityMgr=org.jboss.security.plugins.JaasSecurityManager@1e881b6
                            16:15:37,921 INFO [JaasSecurityManagerService] setCachePolicy, c=org.jboss.util.TimedCachePolicy@19bf795
                            16:15:37,921 INFO [JaasSecurityManagerService] Added JmsXARealm, org.jboss.security.plugins.SecurityDomainContext@9b6976 to map
                            16:15:37,921 INFO [JmsXA] Bound connection factory for resource adapter for ConnectionManager 'jboss.jca:service=TxCM,name=JmsXA to JNDI name 'java:/JmsXA'
                            16:15:37,921 INFO [TxConnectionManager] Started jboss.jca:service=TxCM,name=JmsXA
                            16:15:37,921 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/transaction-service.xml
                            16:15:37,937 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/user-service.xml
                            16:15:37,952 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/user-service.xml
                            16:15:37,952 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/jmx-console.war/
                            16:15:38,124 INFO [EmbeddedTomcatService] deploy, ctxPath=/jmx-console, warUrl=file:/C:/jboss-3.2.3/server/default/deploy/jmx-console.war/
                            16:15:38,437 INFO [Engine] SingleSignOnContextConfig[/jmx-console]: Added certificates -> request attribute Valve
                            16:15:38,468 WARN [EmbeddedTomcatService] Unable to invoke setDelegate on class loader:org.jboss.web.tomcat.tc4.WebCtxLoader$ENCLoader@1ce0eca
                            16:15:38,468 INFO [Engine] StandardManager[/jmx-console]: Seeding random number generator class java.security.SecureRandom
                            16:15:38,468 INFO [Engine] StandardManager[/jmx-console]: Seeding of random number generator has been completed
                            16:15:38,468 INFO [Engine] StandardWrapper[/jmx-console:default]: Loading container servlet default
                            16:15:38,468 INFO [Engine] StandardWrapper[/jmx-console:invoker]: Loading container servlet invoker
                            16:15:39,234 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/jmx-console.war/
                            16:15:43,624 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/management/web-console.war
                            16:15:52,609 INFO [EmbeddedTomcatService] deploy, ctxPath=/web-console, warUrl=file:/C:/jboss-3.2.3/server/default/tmp/deploy/tmp37332web-console.war/
                            16:15:52,952 INFO [Engine] SingleSignOnContextConfig[/web-console]: Added certificates -> request attribute Valve
                            16:15:52,984 WARN [EmbeddedTomcatService] Unable to invoke setDelegate on class loader:org.jboss.web.tomcat.tc4.WebCtxLoader$ENCLoader@9cd006
                            16:15:52,984 INFO [Engine] StandardManager[/web-console]: Seeding random number generator class java.security.SecureRandom
                            16:15:52,984 INFO [Engine] StandardManager[/web-console]: Seeding of random number generator has been completed
                            16:15:53,765 INFO [Engine] StandardWrapper[/web-console:default]: Loading container servlet default
                            16:15:54,327 INFO [Engine] StandardWrapper[/web-console:invoker]: Loading container servlet invoker
                            16:15:55,312 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/management/web-console.war
                            16:15:55,312 ERROR [URLDeploymentScanner] MBeanException: Exception in MBean operation 'checkIncompleteDeployments()'
                            Cause: Incomplete Deployment listing:
                            Packages waiting for a deployer:

                            Incompletely deployed packages:
                            [org.jboss.deployment.DeploymentInfo@f49bafa8 { url=file:/C:/jboss-3.2.3/server/default/deploy/jbossweb.sar/org.mortbay.jetty.jar }
                            deployer: org.jboss.deployment.JARDeployer@1a68ef9
                            status: Created
                            state: CREATED
                            watch: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb.sar/org.mortbay.jetty.jar
                            lastDeployed: 1126694709656
                            lastModified: 1126694708499
                            mbeans:
                            , org.jboss.deployment.DeploymentInfo@7c6d80ee { url=file:/C:/jboss-3.2.3/server/default/deploy/jbossweb.sar/org.mortbay.j2ee.jar }
                            deployer: org.jboss.deployment.JARDeployer@1a68ef9
                            status: Created
                            state: CREATED
                            watch: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb.sar/org.mortbay.j2ee.jar
                            lastDeployed: 1126694709843
                            lastModified: 1126694709671
                            mbeans:
                            , org.jboss.deployment.DeploymentInfo@b426115f { url=file:/C:/jboss-3.2.3/server/default/deploy/jbossweb.sar/org.mortbay.jmx.jar }
                            deployer: org.jboss.deployment.JARDeployer@1a68ef9
                            status: Created
                            state: CREATED
                            watch: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb.sar/org.mortbay.jmx.jar
                            lastDeployed: 1126694710031
                            lastModified: 1126694709843
                            mbeans:
                            , org.jboss.deployment.DeploymentInfo@ede15773 { url=file:/C:/jboss-3.2.3/server/default/deploy/jbossweb.sar/ant.jar }
                            deployer: org.jboss.deployment.JARDeployer@1a68ef9
                            status: Created
                            state: CREATED
                            watch: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb.sar/ant.jar
                            lastDeployed: 1126694711749
                            lastModified: 1126694710046
                            mbeans:
                            , org.jboss.deployment.DeploymentInfo@5200a989 { url=file:/C:/jboss-3.2.3/server/default/deploy/jbossweb.sar/org.jboss.jetty.jar }
                            deployer: org.jboss.deployment.JARDeployer@1a68ef9
                            status: Created
                            state: CREATED
                            watch: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb.sar/org.jboss.jetty.jar
                            lastDeployed: 1126694711843
                            lastModified: 1126694711749
                            mbeans:
                            , org.jboss.deployment.DeploymentInfo@a33c4479 { url=file:/C:/jboss-3.2.3/server/default/deploy/jbossweb.sar/javax.servlet.jar }
                            deployer: org.jboss.deployment.JARDeployer@1a68ef9
                            status: Created
                            state: CREATED
                            watch: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb.sar/javax.servlet.jar
                            lastDeployed: 1126694712202
                            lastModified: 1126694711843
                            mbeans:
                            , org.jboss.deployment.DeploymentInfo@ae89ef50 { url=file:/C:/jboss-3.2.3/server/default/deploy/jbossweb.sar/jasper-runtime.jar }
                            deployer: org.jboss.deployment.JARDeployer@1a68ef9
                            status: Created
                            state: CREATED
                            watch: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb.sar/jasper-runtime.jar
                            lastDeployed: 1126694712390
                            lastModified: 1126694712202
                            mbeans:
                            , org.jboss.deployment.DeploymentInfo@b5b204f7 { url=file:/C:/jboss-3.2.3/server/default/deploy/jbossweb.sar/jasper-compiler.jar }
                            deployer: org.jboss.deployment.JARDeployer@1a68ef9
                            status: Created
                            state: CREATED
                            watch: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb.sar/jasper-compiler.jar
                            lastDeployed: 1126694712765
                            lastModified: 1126694712390
                            mbeans:
                            , org.jboss.deployment.DeploymentInfo@b3fb2d97 { url=file:/C:/jboss-3.2.3/server/default/deploy/jbossweb.sar/ }
                            deployer: org.jboss.deployment.SARDeployer@1e232b5
                            status: Deployment FAILED reason: create operation failed for package file:/C:/jboss-3.2.3/server/default/deploy/jbossweb.sar/; - nested throwable: (org.jboss.deployment.DeploymentException: Trying to install an already registered mbean: jboss.web:service=WebServer)
                            state: FAILED
                            watch: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb.sar/META-INF/jboss-service.xml
                            lastDeployed: 1126694712765
                            lastModified: 1126526025114
                            mbeans:
                            ]MBeans waiting for classes:

                            MBeans waiting for other MBeans:


                            16:15:55,343 INFO [URLDeploymentScanner] Started jboss.deployment:type=DeploymentScanner,flavor=URL
                            16:15:55,421 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/conf/jboss-service.xml
                            16:15:55,421 INFO [Server] JBoss (MX MicroKernel) [3.2.3 (build: CVSTag=JBoss_3_2_3 date=200311301445)] Started in 1m:32s:328ms

                            • 11. Re: Example 04_1 works -- finally
                              starksm64

                               

                              "bhasin_vikas1" wrote:
                              I'm facing the problem in depolying ssl in jboss 3.2.3

                              Stop spamming the forums and hijacking existing threads bhasin_vikas1.