3 Replies Latest reply on Jul 7, 2004 12:51 AM by jefffry

    Unable to get UsersRolesLoginModule to work

    jefffry

      Release ID: JBoss [WonderLand] 3.2.3 (build: CVSTag=JBoss_3_2_3 date=200311301445) with Embedded Tomcat

      I am unable to get the "other" domain's UserRolesLoginModule to work for me. Authentication always fails. I have added TRACE to the log4j.xml, but I don't see a LoginException. I placed users.properties and roles.properties under /conf. Any help would be appreciated.

      log4j.xml

      <category name="org.jboss.security">
       <priority value="TRACE" class="org.jboss.logging.XLevel"/>
       </category>
      


      server.log
      2004-06-30 15:29:41,048 INFO [org.jboss.web.localhost.Engine] StandardContext[/motorsportsClubs]: Mapping contextPath='/motorsportsClubs' with requestURI='/motorsportsClubs/test/test.jsp' and relativeURI='/test/test.jsp'
      2004-06-30 15:29:41,048 INFO [org.jboss.web.localhost.Engine] StandardContext[/motorsportsClubs]: Trying exact match
      2004-06-30 15:29:41,048 INFO [org.jboss.web.localhost.Engine] StandardContext[/motorsportsClubs]: Trying prefix match
      2004-06-30 15:29:41,048 INFO [org.jboss.web.localhost.Engine] StandardContext[/motorsportsClubs]: Trying extension match
      2004-06-30 15:29:41,048 INFO [org.jboss.web.localhost.Engine] StandardContext[/motorsportsClubs]: Mapped to servlet 'jsp' with servlet path '/test/test.jsp' and path info 'null' and update=true
      2004-06-30 15:29:41,048 INFO [org.jboss.web.localhost.Engine] Authenticator[/motorsportsClubs]: Security checking request GET /motorsportsClubs/test/test.jsp
      2004-06-30 15:29:41,048 INFO [org.jboss.web.localhost.Engine] Authenticator[/motorsportsClubs]: Checking constraint 'SecurityConstraint[Club Administration]' against GET /test/test.jsp --> false
      2004-06-30 15:29:41,058 INFO [org.jboss.web.localhost.Engine] Authenticator[/motorsportsClubs]: Checking constraint 'SecurityConstraint[Test Security]' against GET /test/test.jsp --> true
      2004-06-30 15:29:41,058 INFO [org.jboss.web.localhost.Engine] Authenticator[/motorsportsClubs]: Subject to constraint SecurityConstraint[Test Security]
      2004-06-30 15:29:41,058 INFO [org.jboss.web.localhost.Engine] Authenticator[/motorsportsClubs]: Calling checkUserData()
      2004-06-30 15:29:41,058 INFO [org.jboss.web.localhost.Engine] Authenticator[/motorsportsClubs]: User data constraint has no restrictions
      2004-06-30 15:29:41,058 INFO [org.jboss.web.localhost.Engine] Authenticator[/motorsportsClubs]: Calling authenticate()
      2004-06-30 15:29:41,068 INFO [org.jboss.web.localhost.Engine] Authenticator[/motorsportsClubs]: Failed authenticate() test
      2004-06-30 15:29:41,128 INFO [org.jboss.web.localhost.Engine] StandardContext[/motorsportsClubs]: Mapping contextPath='/motorsportsClubs' with requestURI='/motorsportsClubs/test/test.jsp' and relativeURI='/test/test.jsp'
      2004-06-30 15:29:41,128 INFO [org.jboss.web.localhost.Engine] StandardContext[/motorsportsClubs]: Trying exact match
      2004-06-30 15:29:41,128 INFO [org.jboss.web.localhost.Engine] StandardContext[/motorsportsClubs]: Trying prefix match
      2004-06-30 15:29:41,128 INFO [org.jboss.web.localhost.Engine] StandardContext[/motorsportsClubs]: Trying extension match
      2004-06-30 15:29:41,128 INFO [org.jboss.web.localhost.Engine] StandardContext[/motorsportsClubs]: Mapped to servlet 'jsp' with servlet path '/test/test.jsp' and path info 'null' and update=true
      


      web.xml
      <security-constraint>
       <web-resource-collection>
       <web-resource-name>Test Security</web-resource-name>
       <description>Testing web security</description>
       <url-pattern>/test/*</url-pattern>
       <http-method>GET</http-method>
       </web-resource-collection>
       <auth-constraint>
       <description>Member</description>
       <role-name>member</role-name>
       </auth-constraint>
       <user-data-constraint>
       <description>Testing web security.</description>
       <transport-guarantee>NONE</transport-guarantee>
       </user-data-constraint>
       </security-constraint>
       <login-config>
       <auth-method>BASIC</auth-method>
       <realm-name>other</realm-name>
       <form-login-config>
       <form-login-page>/user/authentication/loginFlow/login.jsp</form-login-page>
       <form-error-page>/user/authentication/loginFlow/loginError.jsp</form-error-page>
       </form-login-config>
       </login-config>
       <security-role>
       <description>nonMembers are users that have not registered with motorsportsClubs.</description>
       <role-name>nonMember</role-name>
       </security-role>
       <security-role>
       <description>members are users that have registered with motorsportsClubs.</description>
       <role-name>member</role-name>
       </security-role>
      


      jboss-web.xml
      <jboss-web>
      
       <security-domain>java:/jaas/other</security-domain>
       <context-root>/motorsportsClubs</context-root>
      
       <!-- Resource references -->
      
       <!-- EJB References -->
      
      </jboss-web>
      


        • 1. Re: Unable to get UsersRolesLoginModule to work
          starksm64

          Show the org.jboss.security category log output.

          • 2. Re: Unable to get UsersRolesLoginModule to work
            jefffry

            I don't see an log statements from org.jboss.security during authentication. I do see the during server launch:

            2004-07-05 19:05:10,075 DEBUG [org.jboss.security.plugins.SecurityConfig] Creating
            2004-07-05 19:05:10,075 DEBUG [org.jboss.security.plugins.SecurityConfig] Created
            2004-07-05 19:05:10,075 DEBUG [org.jboss.security.auth.login.XMLLoginConfig] Creating
            2004-07-05 19:05:10,075 DEBUG [org.jboss.security.auth.login.XMLLoginConfig] Created
            2004-07-05 19:05:10,075 DEBUG [org.jboss.security.plugins.JaasSecurityManagerService] Creating
            2004-07-05 19:05:10,075 DEBUG [org.jboss.security.plugins.JaasSecurityManagerService] Created
            2004-07-05 19:05:10,166 INFO [org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread] Running
            2004-07-05 19:05:10,166 INFO [org.jboss.management.j2ee.LocalJBossServerDomain] Started jboss.management.local:j2eeType=J2EEDomain,name=Manager
            2004-07-05 19:05:10,166 INFO [org.jboss.logging.Log4jService] Started jboss.system:type=Log4jService,service=Logging
            2004-07-05 19:05:10,176 INFO [org.jboss.web.WebService] Started WebServer with address: 0.0.0.0:8083
            2004-07-05 19:05:10,176 INFO [org.jboss.web.WebService] Using RMI server codebase: http://WAL11132382:8083/
            2004-07-05 19:05:10,176 INFO [org.jboss.web.WebService] Started jboss:service=WebService
            2004-07-05 19:05:10,186 INFO [org.jboss.naming.NamingService] Starting jnp server
            2004-07-05 19:05:10,286 INFO [org.jboss.naming.NamingService] Started jnpPort=1099, rmiPort=1098, backlog=50, bindAddress=/0.0.0.0, Client SocketFactory=null, Server SocketFactory=org.jboss.net.sockets.DefaultSocketFactory@ad093076
            2004-07-05 19:05:10,306 INFO [org.jboss.naming.NamingService] Listening on port 1099
            2004-07-05 19:05:10,326 INFO [org.jboss.naming.NamingService] Started jboss:service=Naming
            2004-07-05 19:05:10,326 INFO [org.jboss.naming.JNDIView] Started jboss:service=JNDIView
            2004-07-05 19:05:10,326 DEBUG [org.jboss.security.plugins.SecurityConfig] Starting
            2004-07-05 19:05:10,326 DEBUG [org.jboss.security.plugins.SecurityConfig] Installed JAAS Configuration service=jboss.security:service=XMLLoginConfig, config=org.jboss.security.auth.login.XMLLoginConfigImpl@15c97e4
            2004-07-05 19:05:10,326 INFO [org.jboss.security.plugins.SecurityConfig] Started jboss.security:service=SecurityConfig
            2004-07-05 19:05:10,326 DEBUG [org.jboss.security.auth.login.XMLLoginConfig] Starting
            2004-07-05 19:05:10,326 DEBUG [org.jboss.security.auth.login.XMLLoginConfigImpl] Try loading config as XML, url=file:/C:/jboss-3.2.3/server/default/conf/login-config.xml
            2004-07-05 19:05:10,366 TRACE [org.jboss.security.auth.login.XMLLoginConfigImpl] Parsing application-policy=motorsportsClubs
            2004-07-05 19:05:10,386 TRACE [org.jboss.security.auth.login.XMLLoginConfigImpl] Parsing application-policy=client-login
            2004-07-05 19:05:10,386 TRACE [org.jboss.security.auth.login.XMLLoginConfigImpl] Parsing application-policy=jbossmq
            2004-07-05 19:05:10,386 TRACE [org.jboss.security.auth.login.XMLLoginConfigImpl] Parsing application-policy=HsqlDbRealm
            2004-07-05 19:05:10,386 TRACE [org.jboss.security.auth.login.XMLLoginConfigImpl] Parsing application-policy=FirebirdDBRealm
            2004-07-05 19:05:10,386 TRACE [org.jboss.security.auth.login.XMLLoginConfigImpl] Parsing application-policy=JmsXARealm
            2004-07-05 19:05:10,386 TRACE [org.jboss.security.auth.login.XMLLoginConfigImpl] Parsing application-policy=jmx-console
            2004-07-05 19:05:10,386 TRACE [org.jboss.security.auth.login.XMLLoginConfigImpl] Parsing application-policy=web-console
            2004-07-05 19:05:10,386 TRACE [org.jboss.security.auth.login.XMLLoginConfigImpl] Parsing application-policy=other
            2004-07-05 19:05:10,386 INFO [org.jboss.security.auth.login.XMLLoginConfig] Started jboss.security:service=XMLLoginConfig
            2004-07-05 19:05:10,386 DEBUG [org.jboss.security.plugins.JaasSecurityManagerService] Starting
            2004-07-05 19:05:10,386 DEBUG [org.jboss.security.plugins.JaasSecurityManagerService] securityMgrCtxPath=java:/jaas
            2004-07-05 19:05:10,386 DEBUG [org.jboss.security.plugins.JaasSecurityManagerService] cachePolicyCtxPath=java:/timedCacheFactory
            2004-07-05 19:05:10,396 DEBUG [org.jboss.security.plugins.JaasSecurityManagerService] SecurityProxyFactory=org.jboss.security.SubjectSecurityProxyFactory@1d8d237
            2004-07-05 19:05:10,396 INFO [org.jboss.security.plugins.JaasSecurityManagerService] Started jboss.security:service=JaasSecurityManager
            2004-07-05 19:05:10,446 INFO [org.jboss.tm.TransactionManagerService] Started jboss:service=TransactionManager
            2004-07-05 19:05:10,486 INFO [org.jboss.invocation.jrmp.server.JRMPInvoker] Started jboss:service=invoker,type=jrmp
            2004-07-05 19:05:10,546 INFO [org.jboss.invocation.jrmp.server.JRMPProxyFactory] Started jboss:service=proxyFactory,target=ClientUserTransactionFactory
            2004-07-05 19:05:10,556 INFO [org.jboss.invocation.jrmp.server.JRMPProxyFactory] Started jboss:service=proxyFactory,target=ClientUserTransaction
            2004-07-05 19:05:10,566 INFO [org.jboss.tm.usertx.server.ClientUserTransactionService] Started jboss:service=ClientUserTransaction
            2004-07-05 19:05:10,566 INFO [org.jboss.invocation.local.LocalInvoker] Started jboss:service=invoker,type=local
            2004-07-05 19:05:10,596 INFO [org.jboss.invocation.pooled.server.PooledInvoker] Started jboss:service=invoker,type=pooled
            2004-07-05 19:05:10,606 INFO [org.jboss.deployment.MainDeployer] Adding deployer: org.jboss.ejb.EJBDeployer@dc1f04
            2004-07-05 19:05:10,606 INFO [org.jboss.ejb.EJBDeployer] Started jboss.ejb:service=EJBDeployer
            2004-07-05 19:05:10,606 INFO [org.jboss.deployment.MainDeployer] Adding deployer: org.jboss.deployment.EARDeployer@6ffd79
            2004-07-05 19:05:10,606 INFO [org.jboss.deployment.EARDeployer] Started jboss.j2ee:service=EARDeployer
            2004-07-05 19:05:10,636 INFO [org.jboss.deployment.MainDeployer] Adding deployer: org.jboss.varia.deployment.BeanShellSubDeployer@e555bd
            2004-07-05 19:05:10,636 INFO [org.jboss.varia.deployment.BeanShellSubDeployer] Started jboss.scripts:service=BSHDeployer
            2004-07-05 19:05:10,666 INFO [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/http-invoker.sar/
            2004-07-05 19:05:10,676 INFO [org.jboss.deployment.SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/http-invoker.sar/invoker.war/
            2004-07-05 19:05:10,676 INFO [org.jboss.deployment.MainDeployer] deployment waiting for deployer: file:/C:/jboss-3.2.3/server/default/deploy/http-invoker.sar/invoker.war/
            2004-07-05 19:05:10,977 INFO [org.jboss.invocation.http.server.HttpInvoker] Started jboss:service=invoker,type=http
            2004-07-05 19:05:10,987 INFO [org.jboss.invocation.http.server.HttpInvokerHA] Started jboss:service=invoker,type=httpHA
            2004-07-05 19:05:10,997 INFO [org.jboss.invocation.http.server.HttpProxyFactory] Started jboss:service=invoker,type=http,target=Naming
            2004-07-05 19:05:10,997 INFO [org.jboss.invocation.http.server.HttpProxyFactory] Started jboss:service=invoker,type=http,target=Naming,readonly=true
            2004-07-05 19:05:11,067 INFO [org.jboss.deployment.MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/http-invoker.sar/
            2004-07-05 19:05:11,067 INFO [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/jboss-jca.sar
            2004-07-05 19:05:11,377 INFO [org.jboss.deployment.XSLSubDeployer] Created templates: org.apache.xalan.templates.StylesheetRoot@1c70315
            2004-07-05 19:05:11,377 INFO [org.jboss.deployment.MainDeployer] Adding deployer: org.jboss.resource.RARDeployer@9b59a2
            2004-07-05 19:05:11,377 INFO [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/http-invoker.sar/invoker.war/
            2004-07-05 19:05:11,377 INFO [org.jboss.deployment.MainDeployer] deployment waiting for deployer: file:/C:/jboss-3.2.3/server/default/deploy/http-invoker.sar/invoker.war/
            2004-07-05 19:05:11,377 INFO [org.jboss.deployment.MainDeployer] Deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/http-invoker.sar/invoker.war/ is waiting for an appropriate deployer.
            2004-07-05 19:05:11,377 INFO [org.jboss.resource.RARDeployer] Started jboss.jca:service=RARDeployer
            2004-07-05 19:05:11,377 INFO [org.jboss.deployment.MainDeployer] Adding deployer: org.jboss.deployment.XSLSubDeployer@a166bd
            2004-07-05 19:05:11,377 INFO [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/http-invoker.sar/invoker.war/
            2004-07-05 19:05:11,377 INFO [org.jboss.deployment.MainDeployer] deployment waiting for deployer: file:/C:/jboss-3.2.3/server/default/deploy/http-invoker.sar/invoker.war/
            2004-07-05 19:05:11,377 INFO [org.jboss.deployment.MainDeployer] Deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/http-invoker.sar/invoker.war/ is waiting for an appropriate deployer.
            2004-07-05 19:05:11,377 INFO [org.jboss.deployment.XSLSubDeployer] Started jboss.jca:service=ConnectionFactoryDeployer
            2004-07-05 19:05:11,387 INFO [org.jboss.deployment.MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/jboss-jca.sar
            2004-07-05 19:05:11,397 INFO [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/
            2004-07-05 19:05:11,407 INFO [org.jboss.deployment.SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/ant.jar
            2004-07-05 19:05:11,407 INFO [org.jboss.deployment.SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/bootstrap.jar
            2004-07-05 19:05:11,407 INFO [org.jboss.deployment.SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/catalina.jar
            2004-07-05 19:05:11,407 INFO [org.jboss.deployment.SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/commons-beanutils.jar
            2004-07-05 19:05:11,407 INFO [org.jboss.deployment.SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/commons-collections.jar
            2004-07-05 19:05:11,407 INFO [org.jboss.deployment.SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/commons-digester.jar
            2004-07-05 19:05:11,407 INFO [org.jboss.deployment.SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/commons-logging.jar
            2004-07-05 19:05:11,407 INFO [org.jboss.deployment.SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/jakarta-regexp-1.3.jar
            2004-07-05 19:05:11,407 INFO [org.jboss.deployment.SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/jasper-compiler.jar
            2004-07-05 19:05:11,407 INFO [org.jboss.deployment.SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/jasper-runtime.jar
            2004-07-05 19:05:11,407 INFO [org.jboss.deployment.SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/naming-common.jar
            2004-07-05 19:05:11,417 INFO [org.jboss.deployment.SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/naming-resources.jar
            2004-07-05 19:05:11,417 INFO [org.jboss.deployment.SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/servlets-common.jar
            2004-07-05 19:05:11,417 INFO [org.jboss.deployment.SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/servlets-default.jar
            2004-07-05 19:05:11,417 INFO [org.jboss.deployment.SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/servlets-invoker.jar
            2004-07-05 19:05:11,417 INFO [org.jboss.deployment.SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/servlets-webdav.jar
            2004-07-05 19:05:11,417 INFO [org.jboss.deployment.SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/tomcat-coyote.jar
            2004-07-05 19:05:11,417 INFO [org.jboss.deployment.SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/tomcat-http11.jar
            2004-07-05 19:05:11,417 INFO [org.jboss.deployment.SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/tomcat-jk2.jar
            2004-07-05 19:05:11,417 INFO [org.jboss.deployment.SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/tomcat-util.jar
            2004-07-05 19:05:11,417 INFO [org.jboss.deployment.SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/tomcat41-service.jar
            2004-07-05 19:05:13,180 INFO [STDOUT] Apache Tomcat/4.1.29
            2004-07-05 19:05:13,210 INFO [org.jboss.web.localhost.Engine] StandardContext[/motorsportsClubs]: Starting
            2004-07-05 19:05:13,210 INFO [org.jboss.web.localhost.Engine] StandardContext[/motorsportsClubs]: Processing start(), current available=false
            2004-07-05 19:05:13,210 INFO [org.jboss.web.localhost.Engine] StandardContext[/motorsportsClubs]: Configuring default Resources
            2004-07-05 19:05:13,280 INFO [org.jboss.web.localhost.Engine] StandardContext[/motorsportsClubs]: Configuring default Manager
            2004-07-05 19:05:13,340 INFO [org.jboss.web.localhost.Engine] StandardContext[/motorsportsClubs]: Processing standard container startup
            2004-07-05 19:05:13,370 INFO [org.jboss.web.localhost.Engine] WebappLoader[/motorsportsClubs]: Deploying class repositories to work directory C:\jboss-3.2.3\server\default\work\MainEngine\localhost\motorsportsClubs
            2004-07-05 19:05:13,390 INFO [org.jboss.web.localhost.Engine] WebappLoader[/motorsportsClubs]: Deploy class files /WEB-INF/classes to C:\eclipse\workspace\motorsportsClubsWeb\WebContent\WEB-INF\classes
            2004-07-05 19:05:13,400 INFO [org.jboss.web.localhost.Engine] WebappLoader[/motorsportsClubs]: Deploy JAR /WEB-INF/lib/commons-beanutils.jar to C:\eclipse\workspace\motorsportsClubsWeb\WebContent\WEB-INF\lib\commons-beanutils.jar
            2004-07-05 19:05:13,410 INFO [org.jboss.web.localhost.Engine] WebappLoader[/motorsportsClubs]: Deploy JAR /WEB-INF/lib/commons-collections.jar to C:\eclipse\workspace\motorsportsClubsWeb\WebContent\WEB-INF\lib\commons-collections.jar
            2004-07-05 19:05:13,410 INFO [org.jboss.web.localhost.Engine] WebappLoader[/motorsportsClubs]: Deploy JAR /WEB-INF/lib/commons-digester.jar to C:\eclipse\workspace\motorsportsClubsWeb\WebContent\WEB-INF\lib\commons-digester.jar
            2004-07-05 19:05:13,410 INFO [org.jboss.web.localhost.Engine] WebappLoader[/motorsportsClubs]: Deploy JAR /WEB-INF/lib/commons-fileupload.jar to C:\eclipse\workspace\motorsportsClubsWeb\WebContent\WEB-INF\lib\commons-fileupload.jar
            2004-07-05 19:05:13,420 INFO [org.jboss.web.localhost.Engine] WebappLoader[/motorsportsClubs]: Deploy JAR /WEB-INF/lib/commons-lang.jar to C:\eclipse\workspace\motorsportsClubsWeb\WebContent\WEB-INF\lib\commons-lang.jar
            2004-07-05 19:05:13,420 INFO [org.jboss.web.localhost.Engine] WebappLoader[/motorsportsClubs]: Deploy JAR /WEB-INF/lib/commons-logging.jar to C:\eclipse\workspace\motorsportsClubsWeb\WebContent\WEB-INF\lib\commons-logging.jar
            2004-07-05 19:05:13,430 INFO [org.jboss.web.localhost.Engine] WebappLoader[/motorsportsClubs]: Deploy JAR /WEB-INF/lib/commons-validator.jar to C:\eclipse\workspace\motorsportsClubsWeb\WebContent\WEB-INF\lib\commons-validator.jar
            2004-07-05 19:05:13,430 INFO [org.jboss.web.localhost.Engine] WebappLoader[/motorsportsClubs]: Deploy JAR /WEB-INF/lib/jakarta-oro.jar to C:\eclipse\workspace\motorsportsClubsWeb\WebContent\WEB-INF\lib\jakarta-oro.jar
            2004-07-05 19:05:13,430 INFO [org.jboss.web.localhost.Engine] WebappLoader[/motorsportsClubs]: Deploy JAR /WEB-INF/lib/struts-legacy.jar to C:\eclipse\workspace\motorsportsClubsWeb\WebContent\WEB-INF\lib\struts-legacy.jar
            2004-07-05 19:05:13,440 INFO [org.jboss.web.localhost.Engine] WebappLoader[/motorsportsClubs]: Deploy JAR /WEB-INF/lib/struts.jar to C:\eclipse\workspace\motorsportsClubsWeb\WebContent\WEB-INF\lib\struts.jar
            2004-07-05 19:05:13,440 INFO [org.jboss.web.localhost.Engine] WebappLoader[/motorsportsClubs]: Reloading checks are enabled for this Context
            2004-07-05 19:05:13,450 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: ContextConfig: Processing START
            2004-07-05 19:05:13,550 INFO [org.jboss.web.localhost.Engine] StandardContext[/motorsportsClubs]: Setting deployment descriptor public ID to '-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN'
            2004-07-05 19:05:13,841 INFO [org.jboss.web.localhost.Engine] StandardContext[/motorsportsClubs]: Setting deployment descriptor public ID to '-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN'
            2004-07-05 19:05:13,881 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Accumulating TLD resource paths
            2004-07-05 19:05:13,881 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Scanning <taglib> elements in web.xml
            2004-07-05 19:05:13,881 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Adding path '/WEB-INF/struts-tiles.tld' for URI 'struts-tiles'
            2004-07-05 19:05:13,881 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Adding path '/WEB-INF/struts-bean.tld' for URI 'struts-bean'
            2004-07-05 19:05:13,881 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Adding path '/WEB-INF/struts-nested.tld' for URI 'struts-nested'
            2004-07-05 19:05:13,881 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Adding path '/WEB-INF/struts-logic.tld' for URI 'struts-logic'
            2004-07-05 19:05:13,881 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Adding path '/WEB-INF/struts-html.tld' for URI 'struts-html'
            2004-07-05 19:05:13,881 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Scanning TLDs in /WEB-INF subdirectory
            2004-07-05 19:05:13,891 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Adding path '/WEB-INF/struts-bean.tld'
            2004-07-05 19:05:13,891 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Adding path '/WEB-INF/struts-html.tld'
            2004-07-05 19:05:13,891 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Adding path '/WEB-INF/struts-logic.tld'
            2004-07-05 19:05:13,891 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Adding path '/WEB-INF/struts-nested.tld'
            2004-07-05 19:05:13,891 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Adding path '/WEB-INF/struts-tiles.tld'
            2004-07-05 19:05:13,891 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Scanning JARs in /WEB-INF/lib subdirectory
            2004-07-05 19:05:13,891 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Adding path '/WEB-INF/lib/commons-beanutils.jar'
            2004-07-05 19:05:13,891 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Adding path '/WEB-INF/lib/commons-collections.jar'
            2004-07-05 19:05:13,891 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Adding path '/WEB-INF/lib/commons-digester.jar'
            2004-07-05 19:05:13,891 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Adding path '/WEB-INF/lib/commons-fileupload.jar'
            2004-07-05 19:05:13,891 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Adding path '/WEB-INF/lib/commons-lang.jar'
            2004-07-05 19:05:13,891 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Adding path '/WEB-INF/lib/commons-logging.jar'
            2004-07-05 19:05:13,891 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Adding path '/WEB-INF/lib/commons-validator.jar'
            2004-07-05 19:05:13,891 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Adding path '/WEB-INF/lib/jakarta-oro.jar'
            2004-07-05 19:05:13,891 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Adding path '/WEB-INF/lib/struts-legacy.jar'
            2004-07-05 19:05:13,891 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Adding path '/WEB-INF/lib/struts.jar'
            2004-07-05 19:05:13,891 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Scanning JAR at resource path '/WEB-INF/lib/commons-collections.jar'
            2004-07-05 19:05:13,911 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Scanning JAR at resource path '/WEB-INF/lib/commons-validator.jar'
            2004-07-05 19:05:13,921 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Scanning JAR at resource path '/WEB-INF/lib/commons-fileupload.jar'
            2004-07-05 19:05:13,931 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Scanning JAR at resource path '/WEB-INF/lib/commons-beanutils.jar'
            2004-07-05 19:05:13,941 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Scanning TLD at resource path '/WEB-INF/struts-html.tld'
            2004-07-05 19:05:14,051 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Scanning TLD at resource path '/WEB-INF/struts-logic.tld'
            2004-07-05 19:05:14,081 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Scanning JAR at resource path '/WEB-INF/lib/commons-lang.jar'
            2004-07-05 19:05:14,091 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Scanning JAR at resource path '/WEB-INF/lib/jakarta-oro.jar'
            2004-07-05 19:05:14,101 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Scanning TLD at resource path '/WEB-INF/struts-tiles.tld'
            2004-07-05 19:05:14,121 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Scanning JAR at resource path '/WEB-INF/lib/commons-logging.jar'
            2004-07-05 19:05:14,131 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Scanning TLD at resource path '/WEB-INF/struts-nested.tld'
            2004-07-05 19:05:14,171 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Scanning JAR at resource path '/WEB-INF/lib/commons-digester.jar'
            2004-07-05 19:05:14,181 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Scanning JAR at resource path '/WEB-INF/lib/struts-legacy.jar'
            2004-07-05 19:05:14,191 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Scanning JAR at resource path '/WEB-INF/lib/struts.jar'
            2004-07-05 19:05:14,221 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Processing TLD at 'META-INF/tlds/struts-bean.tld'
            2004-07-05 19:05:14,241 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Processing TLD at 'META-INF/tlds/struts-html.tld'
            2004-07-05 19:05:14,282 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Processing TLD at 'META-INF/tlds/struts-logic.tld'
            2004-07-05 19:05:14,292 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Processing TLD at 'META-INF/tlds/struts-nested.tld'
            2004-07-05 19:05:14,322 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Processing TLD at 'META-INF/tlds/struts-template.tld'
            2004-07-05 19:05:14,342 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Processing TLD at 'META-INF/tlds/struts-tiles.tld'
            2004-07-05 19:05:14,372 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Scanning TLD at resource path '/WEB-INF/struts-bean.tld'
            2004-07-05 19:05:14,392 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Added certificates -> request attribute Valve
            2004-07-05 19:05:14,442 INFO [org.jboss.web.localhost.Engine] Authenticator[/motorsportsClubs]: No SingleSignOn Valve is present
            2004-07-05 19:05:14,442 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Configured an authenticator for method BASIC
            2004-07-05 19:05:14,442 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: Pipline Configuration:
            2004-07-05 19:05:14,442 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: org.apache.catalina.valves.CertificatesValve/1.0
            2004-07-05 19:05:14,442 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: org.apache.catalina.authenticator.BasicAuthenticator/1.0
            2004-07-05 19:05:14,452 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: org.apache.catalina.core.StandardContextValve/1.0
            2004-07-05 19:05:14,452 INFO [org.jboss.web.localhost.Engine] ContextConfig[/motorsportsClubs]: ======================
            2004-07-05 19:05:14,452 INFO [org.jboss.web.localhost.Engine] StandardManager[/motorsportsClubs]: Seeding random number generator class java.security.SecureRandom
            2004-07-05 19:05:14,572 INFO [org.jboss.web.localhost.Engine] StandardManager[/motorsportsClubs]: Seeding of random number generator has been completed
            2004-07-05 19:05:14,582 INFO [org.jboss.web.localhost.Engine] StandardContext[/motorsportsClubs]: Posting standard context attributes
            2004-07-05 19:05:14,582 INFO [org.jboss.web.localhost.Engine] StandardContext[/motorsportsClubs]: Configuring application event listeners
            2004-07-05 19:05:14,582 INFO [org.jboss.web.localhost.Engine] StandardContext[/motorsportsClubs]: Sending application start events
            2004-07-05 19:05:14,582 INFO [org.jboss.web.localhost.Engine] StandardContext[/motorsportsClubs]: Starting filters
            2004-07-05 19:05:14,722 INFO [org.apache.struts.util.PropertyMessageResources] Initializing, config='org.apache.struts.util.LocalStrings', returnNull=true
            2004-07-05 19:05:14,722 INFO [org.apache.struts.util.PropertyMessageResources] Initializing, config='org.apache.struts.action.ActionResources', returnNull=true
            2004-07-05 19:05:14,792 DEBUG [org.apache.struts.action.ActionServlet] Scanning web.xml for controller servlet mapping
            2004-07-05 19:05:14,902 DEBUG [org.apache.struts.action.ActionServlet] Process servletName=Struts, urlPattern=*.do
            2004-07-05 19:05:14,912 DEBUG [org.apache.struts.action.ActionServlet] Mapping for servlet 'Struts' = '*.do'
            2004-07-05 19:05:14,912 DEBUG [org.apache.struts.action.ActionServlet] Initializing module path '' configuration from '/WEB-INF/struts-config.xml'
            2004-07-05 19:05:15,263 DEBUG [org.apache.struts.action.ActionServlet] Initializing module path '' message resources from 'Resources'
            2004-07-05 19:05:15,263 INFO [org.apache.struts.util.PropertyMessageResources] Initializing, config='Resources', returnNull=true
            2004-07-05 19:05:15,263 DEBUG [org.apache.struts.action.ActionServlet] Initializing module path '' data sources
            2004-07-05 19:05:15,263 DEBUG [org.apache.struts.action.ActionServlet] Initializing module path '' plug ins
            2004-07-05 19:05:15,283 INFO [org.apache.struts.validator.ValidatorPlugIn] Loading validation rules file from '/WEB-INF/validator-rules.xml'
            2004-07-05 19:05:15,503 INFO [org.apache.struts.validator.ValidatorPlugIn] Loading validation rules file from '/WEB-INF/validation.xml'
            2004-07-05 19:05:15,623 INFO [org.jboss.web.localhost.Engine] StandardWrapper[/motorsportsClubs:default]: Loading container servlet default
            2004-07-05 19:05:15,684 INFO [org.jboss.web.localhost.Engine] default: DefaultServlet.init: input buffer size=2048, output buffer size=2048
            2004-07-05 19:05:15,684 INFO [org.jboss.web.localhost.Engine] default: DefaultServlet.init: welcome file=index.jsp
            2004-07-05 19:05:15,684 INFO [org.jboss.web.localhost.Engine] StandardWrapper[/motorsportsClubs:invoker]: Loading container servlet invoker
            2004-07-05 19:05:15,824 INFO [org.jboss.web.localhost.Engine] StandardContext[/motorsportsClubs]: Starting completed
            2004-07-05 19:05:15,824 INFO [org.jboss.web.localhost.Engine] StandardContext[/AcctActWeb]: Starting
            2004-07-05 19:05:15,824 INFO [org.jboss.web.localhost.Engine] StandardContext[/AcctActWeb]: Processing start(), current available=false
            2004-07-05 19:05:15,824 INFO [org.jboss.web.localhost.Engine] StandardContext[/AcctActWeb]: Configuring default Resources
            2004-07-05 19:05:15,834 INFO [org.jboss.web.localhost.Engine] StandardContext[/AcctActWeb]: Configuring default Manager
            2004-07-05 19:05:15,834 INFO [org.jboss.web.localhost.Engine] StandardContext[/AcctActWeb]: Processing standard container startup
            2004-07-05 19:05:15,844 INFO [org.jboss.web.localhost.Engine] WebappLoader[/AcctActWeb]: Deploying class repositories to work directory C:\jboss-3.2.3\server\default\work\MainEngine\localhost\AcctActWeb
            2004-07-05 19:05:15,844 INFO [org.jboss.web.localhost.Engine] WebappLoader[/AcctActWeb]: Deploy class files /WEB-INF/classes to C:\eclipse\workspace\AcctActWeb\WebContent\WEB-INF\classes
            2004-07-05 19:05:15,844 INFO [org.jboss.web.localhost.Engine] WebappLoader[/AcctActWeb]: Reloading checks are enabled for this Context
            2004-07-05 19:05:15,844 INFO [org.jboss.web.localhost.Engine] ContextConfig[/AcctActWeb]: ContextConfig: Processing START
            2004-07-05 19:05:15,914 INFO [org.jboss.web.localhost.Engine] StandardContext[/AcctActWeb]: Setting deployment descriptor public ID to '-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN'
            2004-07-05 19:05:16,024 INFO [org.jboss.web.localhost.Engine] StandardContext[/AcctActWeb]: Setting deployment descriptor public ID to '-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN'
            2004-07-05 19:05:16,034 INFO [org.jboss.web.localhost.Engine] ContextConfig[/AcctActWeb]: Accumulating TLD resource paths
            2004-07-05 19:05:16,034 INFO [org.jboss.web.localhost.Engine] ContextConfig[/AcctActWeb]: Scanning <taglib> elements in web.xml
            2004-07-05 19:05:16,034 INFO [org.jboss.web.localhost.Engine] ContextConfig[/AcctActWeb]: Scanning TLDs in /WEB-INF subdirectory
            2004-07-05 19:05:16,034 INFO [org.jboss.web.localhost.Engine] ContextConfig[/AcctActWeb]: Scanning JARs in /WEB-INF/lib subdirectory
            2004-07-05 19:05:16,034 INFO [org.jboss.web.localhost.Engine] ContextConfig[/AcctActWeb]: Added certificates -> request attribute Valve
            2004-07-05 19:05:16,034 INFO [org.jboss.web.localhost.Engine] ContextConfig[/AcctActWeb]: Pipline Configuration:
            2004-07-05 19:05:16,034 INFO [org.jboss.web.localhost.Engine] ContextConfig[/AcctActWeb]: org.apache.catalina.valves.CertificatesValve/1.0
            2004-07-05 19:05:16,034 INFO [org.jboss.web.localhost.Engine] ContextConfig[/AcctActWeb]: org.apache.catalina.core.StandardContextValve/1.0
            2004-07-05 19:05:16,034 INFO [org.jboss.web.localhost.Engine] ContextConfig[/AcctActWeb]: ======================
            2004-07-05 19:05:16,034 INFO [org.jboss.web.localhost.Engine] StandardManager[/AcctActWeb]: Seeding random number generator class java.security.SecureRandom
            2004-07-05 19:05:16,034 INFO [org.jboss.web.localhost.Engine] StandardManager[/AcctActWeb]: Seeding of random number generator has been completed
            2004-07-05 19:05:16,034 INFO [org.jboss.web.localhost.Engine] StandardContext[/AcctActWeb]: Posting standard context attributes
            2004-07-05 19:05:16,034 INFO [org.jboss.web.localhost.Engine] StandardContext[/AcctActWeb]: Configuring application event listeners
            2004-07-05 19:05:16,034 INFO [org.jboss.web.localhost.Engine] StandardContext[/AcctActWeb]: Sending application start events
            2004-07-05 19:05:16,034 INFO [org.jboss.web.localhost.Engine] StandardContext[/AcctActWeb]: Starting filters
            2004-07-05 19:05:16,034 INFO [org.jboss.web.localhost.Engine] StandardWrapper[/AcctActWeb:default]: Loading container servlet default
            2004-07-05 19:05:16,034 INFO [org.jboss.web.localhost.Engine] default: DefaultServlet.init: input buffer size=2048, output buffer size=2048
            2004-07-05 19:05:16,034 INFO [org.jboss.web.localhost.Engine] default: DefaultServlet.init: welcome file=test.jsp
            2004-07-05 19:05:16,034 INFO [org.jboss.web.localhost.Engine] StandardWrapper[/AcctActWeb:invoker]: Loading container servlet invoker
            2004-07-05 19:05:16,134 INFO [org.jboss.web.localhost.Engine] StandardContext[/AcctActWeb]: Starting completed
            2004-07-05 19:05:16,264 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute soLinger: -1
            2004-07-05 19:05:16,264 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute soTimeout: 60000
            2004-07-05 19:05:16,264 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute serverSoTimeout: 0
            2004-07-05 19:05:16,264 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute tcpNoDelay: true
            2004-07-05 19:05:16,274 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute jkHome: C:\jboss-3.2.3\server\default
            2004-07-05 19:05:16,274 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute port: 8080
            2004-07-05 19:05:16,274 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute maxThreads: 100
            2004-07-05 19:05:16,274 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute backlog: 10
            2004-07-05 19:05:16,274 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute tcpNoDelay: true
            2004-07-05 19:05:16,274 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute soLinger: -1
            2004-07-05 19:05:16,274 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute soTimeout: 20000
            2004-07-05 19:05:16,274 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute timeout: 300000
            2004-07-05 19:05:16,274 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute serverSoTimeout: 0
            2004-07-05 19:05:16,274 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute maxKeepAliveRequests: 100
            2004-07-05 19:05:16,274 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute tomcatAuthentication: true
            2004-07-05 19:05:16,274 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute compression: off
            2004-07-05 19:05:16,274 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute address: /0.0.0.0
            2004-07-05 19:05:16,284 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute secure: false
            2004-07-05 19:05:16,284 INFO [org.apache.coyote.http11.Http11Protocol] Initializing Coyote HTTP/1.1 on port 8080
            2004-07-05 19:05:16,284 INFO [org.jboss.web.localhost.Engine] CoyoteConnector Coyote can't register jmx for protocol
            2004-07-05 19:05:16,304 INFO [org.apache.coyote.http11.Http11Protocol] Starting Coyote HTTP/1.1 on port 8080
            2004-07-05 19:05:16,405 DEBUG [org.apache.jk.server.JkCoyoteHandler] setProperty jkHome C:\jboss-3.2.3\server\default
            2004-07-05 19:05:16,415 DEBUG [org.apache.jk.server.JkCoyoteHandler] setProperty port 8009
            2004-07-05 19:05:16,415 DEBUG [org.apache.jk.server.JkCoyoteHandler] setProperty maxThreads 75
            2004-07-05 19:05:16,415 DEBUG [org.apache.jk.server.JkCoyoteHandler] setProperty backlog 10
            2004-07-05 19:05:16,425 DEBUG [org.apache.jk.server.JkCoyoteHandler] setProperty tcpNoDelay true
            2004-07-05 19:05:16,435 DEBUG [org.apache.jk.server.JkCoyoteHandler] setProperty soLinger -1
            2004-07-05 19:05:16,435 DEBUG [org.apache.jk.server.JkCoyoteHandler] setProperty soTimeout 20000
            2004-07-05 19:05:16,435 DEBUG [org.apache.jk.server.JkCoyoteHandler] setProperty timeout 300000
            2004-07-05 19:05:16,435 DEBUG [org.apache.jk.server.JkCoyoteHandler] setProperty serverSoTimeout 0
            2004-07-05 19:05:16,435 DEBUG [org.apache.jk.server.JkCoyoteHandler] setProperty disableUploadTimeout false
            2004-07-05 19:05:16,435 DEBUG [org.apache.jk.server.JkCoyoteHandler] setProperty maxKeepAliveRequests 100
            2004-07-05 19:05:16,435 DEBUG [org.apache.jk.server.JkCoyoteHandler] setProperty tomcatAuthentication true
            2004-07-05 19:05:16,435 DEBUG [org.apache.jk.server.JkCoyoteHandler] setProperty compression off
            2004-07-05 19:05:16,435 DEBUG [org.apache.jk.server.JkCoyoteHandler] setProperty address 0.0.0.0
            2004-07-05 19:05:16,435 DEBUG [org.apache.jk.server.JkCoyoteHandler] setProperty secure false
            2004-07-05 19:05:16,435 DEBUG [org.apache.jk.server.JkMain] Starting Jk2, base dir= C:\jboss-3.2.3\server\default
            2004-07-05 19:05:16,435 DEBUG [org.apache.jk.server.JkMain] No properties file found C:\jboss-3.2.3\server\default\conf\jk2.properties
            2004-07-05 19:05:16,435 INFO [org.jboss.web.localhost.Engine] CoyoteConnector Coyote can't register jmx for protocol
            2004-07-05 19:05:16,495 DEBUG [org.apache.jk.server.JkMain] Substituting tomcatAuthentication request.tomcatAuthentication true
            2004-07-05 19:05:16,495 DEBUG [org.apache.jk.server.JkMain] Substituting soTimeout channelSocket.soTimeout 20000
            2004-07-05 19:05:16,495 DEBUG [org.apache.jk.server.JkMain] Substituting port channelSocket.port 8009
            2004-07-05 19:05:16,495 DEBUG [org.apache.jk.server.JkMain] Substituting maxThreads channelSocket.maxThreads 75
            2004-07-05 19:05:16,495 DEBUG [org.apache.jk.server.JkMain] Substituting backlog channelSocket.backlog 10
            2004-07-05 19:05:16,495 DEBUG [org.apache.jk.server.JkMain] Substituting timeout channelSocket.timeout 300000
            2004-07-05 19:05:16,495 DEBUG [org.apache.jk.server.JkMain] Substituting address channelSocket.address 0.0.0.0
            2004-07-05 19:05:16,495 DEBUG [org.apache.jk.server.JkMain] Substituting tcpNoDelay channelSocket.tcpNoDelay true
            2004-07-05 19:05:16,495 DEBUG [org.apache.jk.server.JkMain] Processing channelSocket::channelSocket address
            2004-07-05 19:05:16,495 DEBUG [org.apache.jk.server.JkMain] Setting address on channelSocket org.apache.jk.common.ChannelSocket@1a1b2f
            2004-07-05 19:05:16,495 DEBUG [org.apache.jk.server.JkMain] setProperty org.apache.jk.common.ChannelSocket@1a1b2f address=0.0.0.0
            2004-07-05 19:05:16,495 DEBUG [org.apache.jk.server.JkMain] Processing channelSocket::channelSocket soTimeout
            2004-07-05 19:05:16,495 DEBUG [org.apache.jk.server.JkMain] Setting soTimeout on channelSocket org.apache.jk.common.ChannelSocket@1a1b2f
            2004-07-05 19:05:16,495 DEBUG [org.apache.jk.server.JkMain] setProperty org.apache.jk.common.ChannelSocket@1a1b2f soTimeout=20000
            2004-07-05 19:05:16,495 DEBUG [org.apache.jk.server.JkMain] Processing channelSocket::channelSocket timeout
            2004-07-05 19:05:16,495 DEBUG [org.apache.jk.server.JkMain] Setting timeout on channelSocket org.apache.jk.common.ChannelSocket@1a1b2f
            2004-07-05 19:05:16,495 DEBUG [org.apache.jk.server.JkMain] setProperty org.apache.jk.common.ChannelSocket@1a1b2f timeout=300000
            2004-07-05 19:05:16,495 DEBUG [org.apache.jk.server.JkMain] Processing channelSocket::channelSocket maxThreads
            2004-07-05 19:05:16,495 DEBUG [org.apache.jk.server.JkMain] Setting maxThreads on channelSocket org.apache.jk.common.ChannelSocket@1a1b2f
            2004-07-05 19:05:16,495 DEBUG [org.apache.jk.server.JkMain] setProperty org.apache.jk.common.ChannelSocket@1a1b2f maxThreads=75
            2004-07-05 19:05:16,495 DEBUG [org.apache.jk.common.ChannelSocket] Setting maxThreads 75
            2004-07-05 19:05:16,495 DEBUG [org.apache.jk.server.JkMain] Processing channelSocket::channelSocket backlog
            2004-07-05 19:05:16,495 DEBUG [org.apache.jk.server.JkMain] Setting backlog on channelSocket org.apache.jk.common.ChannelSocket@1a1b2f
            2004-07-05 19:05:16,495 DEBUG [org.apache.jk.server.JkMain] setProperty org.apache.jk.common.ChannelSocket@1a1b2f backlog=10
            2004-07-05 19:05:16,495 DEBUG [org.apache.jk.server.JkMain] Processing channelSocket::channelSocket tcpNoDelay
            2004-07-05 19:05:16,495 DEBUG [org.apache.jk.server.JkMain] Setting tcpNoDelay on channelSocket org.apache.jk.common.ChannelSocket@1a1b2f
            2004-07-05 19:05:16,495 DEBUG [org.apache.jk.server.JkMain] setProperty org.apache.jk.common.ChannelSocket@1a1b2f tcpNoDelay=true
            2004-07-05 19:05:16,495 DEBUG [org.apache.jk.server.JkMain] Processing request::request tomcatAuthentication
            2004-07-05 19:05:16,495 DEBUG [org.apache.jk.server.JkMain] Setting tomcatAuthentication on request org.apache.jk.common.HandlerRequest@1eeba19
            2004-07-05 19:05:16,495 DEBUG [org.apache.jk.server.JkMain] setProperty org.apache.jk.common.HandlerRequest@1eeba19 tomcatAuthentication=true
            2004-07-05 19:05:16,495 DEBUG [org.apache.jk.server.JkMain] Processing channelSocket::channelSocket port
            2004-07-05 19:05:16,495 DEBUG [org.apache.jk.server.JkMain] Setting port on channelSocket org.apache.jk.common.ChannelSocket@1a1b2f
            2004-07-05 19:05:16,495 DEBUG [org.apache.jk.server.JkMain] setProperty org.apache.jk.common.ChannelSocket@1a1b2f port=8009
            2004-07-05 19:05:16,495 DEBUG [org.apache.jk.common.HandlerRequest] Container handler org.apache.jk.server.JkCoyoteHandler@1fbe226 container org.apache.jk.server.JkCoyoteHandler
            2004-07-05 19:05:16,495 INFO [org.apache.jk.common.ChannelSocket] JK2: ajp13 listening on /0.0.0.0:8009
            2004-07-05 19:05:16,515 INFO [org.apache.jk.server.JkMain] Jk running ID=0 time=0/80 config=null
            2004-07-05 19:05:16,515 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute soLinger: -1
            2004-07-05 19:05:16,515 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute soTimeout: 60000
            2004-07-05 19:05:16,515 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute serverSoTimeout: 0
            2004-07-05 19:05:16,515 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute tcpNoDelay: true
            2004-07-05 19:05:16,515 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute jkHome: C:\jboss-3.2.3\server\default
            2004-07-05 19:05:16,515 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute port: 8443
            2004-07-05 19:05:16,515 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute maxThreads: 20
            2004-07-05 19:05:16,515 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute backlog: 10
            2004-07-05 19:05:16,515 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute tcpNoDelay: true
            2004-07-05 19:05:16,515 DEBUG [org.apache.jk.common.ChannelSocket] Accepting ajp connections on 8009
            2004-07-05 19:05:16,515 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute soLinger: -1
            2004-07-05 19:05:16,515 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute soTimeout: 60000
            2004-07-05 19:05:16,515 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute timeout: 300000
            2004-07-05 19:05:16,515 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute serverSoTimeout: 0
            2004-07-05 19:05:16,525 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute maxKeepAliveRequests: 100
            2004-07-05 19:05:16,525 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute tomcatAuthentication: true
            2004-07-05 19:05:16,525 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute compression: off
            2004-07-05 19:05:16,525 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute address: /0.0.0.0
            2004-07-05 19:05:16,525 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute secure: true
            2004-07-05 19:05:16,525 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute algorithm: null
            2004-07-05 19:05:16,535 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute keystore: C:\jboss-3.2.3\server\default\conf\chap8.keystore
            2004-07-05 19:05:16,535 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute randomfile: C:\Documents and Settings\jfry\random.pem
            2004-07-05 19:05:16,535 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute rootfile: C:\Documents and Settings\jfry\root.pem
            2004-07-05 19:05:16,535 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute keystoreType: JKS
            2004-07-05 19:05:16,535 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute protocol: TLS
            2004-07-05 19:05:16,535 DEBUG [org.apache.coyote.http11.Http11Protocol] Attribute sslImplementation: null
            2004-07-05 19:05:16,785 INFO [org.apache.coyote.http11.Http11Protocol] Initializing Coyote HTTP/1.1 on port 8443
            2004-07-05 19:05:16,785 INFO [org.jboss.web.localhost.Engine] CoyoteConnector Coyote can't register jmx for protocol
            2004-07-05 19:05:16,785 INFO [org.apache.coyote.http11.Http11Protocol] Starting Coyote HTTP/1.1 on port 8443
            2004-07-05 19:05:16,785 INFO [org.jboss.web.tomcat.tc4.EmbeddedTomcatService] OK
            2004-07-05 19:05:16,785 INFO [org.jboss.deployment.MainDeployer] Adding deployer: org.jboss.web.tomcat.tc4.EmbeddedTomcatService@183268e
            2004-07-05 19:05:16,785 INFO [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/http-invoker.sar/invoker.war/
            2004-07-05 19:05:16,945 INFO [org.jboss.web.tomcat.tc4.EmbeddedTomcatService] deploy, ctxPath=/invoker, warUrl=file:/C:/jboss-3.2.3/server/default/deploy/http-invoker.sar/invoker.war/
            2004-07-05 19:05:17,206 INFO [org.jboss.web.localhost.Engine] SingleSignOnContextConfig[/invoker]: Added certificates -> request attribute Valve
            2004-07-05 19:05:17,236 INFO [org.jboss.web.localhost.Engine] SingleSignOnContextConfig[/invoker]: Configured an authenticator for method BASIC
            2004-07-05 19:05:17,256 WARN [org.jboss.web.tomcat.tc4.EmbeddedTomcatService] Unable to invoke setDelegate on class loader:org.jboss.web.tomcat.tc4.WebCtxLoader$ENCLoader@1c634b9
            2004-07-05 19:05:17,266 INFO [org.jboss.web.localhost.Engine] StandardManager[/invoker]: Seeding random number generator class java.security.SecureRandom
            2004-07-05 19:05:17,276 INFO [org.jboss.web.localhost.Engine] StandardManager[/invoker]: Seeding of random number generator has been completed
            2004-07-05 19:05:17,296 INFO [org.jboss.web.localhost.Engine] StandardWrapper[/invoker:default]: Loading container servlet default
            2004-07-05 19:05:17,306 INFO [org.jboss.web.localhost.Engine] default: DefaultServlet.init: input buffer size=2048, output buffer size=2048
            2004-07-05 19:05:17,306 INFO [org.jboss.web.localhost.Engine] default: DefaultServlet.init: welcome file=index.html
            2004-07-05 19:05:17,306 INFO [org.jboss.web.localhost.Engine] default: DefaultServlet.init: welcome file=index.htm
            2004-07-05 19:05:17,306 INFO [org.jboss.web.localhost.Engine] default: DefaultServlet.init: welcome file=index.jsp
            2004-07-05 19:05:17,316 INFO [org.jboss.web.localhost.Engine] StandardWrapper[/invoker:invoker]: Loading container servlet invoker
            2004-07-05 19:05:17,937 INFO [org.jboss.deployment.MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/http-invoker.sar/invoker.war/
            2004-07-05 19:05:17,937 INFO [org.jboss.web.tomcat.tc4.EmbeddedTomcatService] Started jboss.web:service=WebServer
            2004-07-05 19:05:17,947 INFO [org.jboss.deployment.MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/jbossweb-tomcat41.sar/
            2004-07-05 19:05:17,947 INFO [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/jms/jbossmq-httpil.sar/
            2004-07-05 19:05:18,137 INFO [org.jboss.deployment.SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/
            2004-07-05 19:05:18,277 INFO [org.jboss.web.tomcat.tc4.EmbeddedTomcatService] deploy, ctxPath=/jbossmq-httpil, warUrl=file:/C:/jboss-3.2.3/server/default/deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/
            2004-07-05 19:05:18,488 INFO [org.jboss.web.localhost.Engine] SingleSignOnContextConfig[/jbossmq-httpil]: Added certificates -> request attribute Valve
            2004-07-05 19:05:18,488 INFO [org.jboss.web.localhost.Engine] SingleSignOnContextConfig[/jbossmq-httpil]: Configured an authenticator for method BASIC
            2004-07-05 19:05:18,498 WARN [org.jboss.web.tomcat.tc4.EmbeddedTomcatService] Unable to invoke setDelegate on class loader:org.jboss.web.tomcat.tc4.WebCtxLoader$ENCLoader@eb9f0d
            2004-07-05 19:05:18,498 INFO [org.jboss.web.localhost.Engine] StandardManager[/jbossmq-httpil]: Seeding random number generator class java.security.SecureRandom
            2004-07-05 19:05:18,498 INFO [org.jboss.web.localhost.Engine] StandardManager[/jbossmq-httpil]: Seeding of random number generator has been completed
            2004-07-05 19:05:18,498 INFO [org.jboss.web.localhost.Engine] StandardWrapper[/jbossmq-httpil:default]: Loading container servlet default
            2004-07-05 19:05:18,498 INFO [org.jboss.web.localhost.Engine] default: DefaultServlet.init: input buffer size=2048, output buffer size=2048
            2004-07-05 19:05:18,498 INFO [org.jboss.web.localhost.Engine] default: DefaultServlet.init: welcome file=index.html
            2004-07-05 19:05:18,498 INFO [org.jboss.web.localhost.Engine] default: DefaultServlet.init: welcome file=index.htm
            2004-07-05 19:05:18,498 INFO [org.jboss.web.localhost.Engine] default: DefaultServlet.init: welcome file=index.jsp
            2004-07-05 19:05:18,498 INFO [org.jboss.web.localhost.Engine] StandardWrapper[/jbossmq-httpil:invoker]: Loading container servlet invoker
            2004-07-05 19:05:18,758 INFO [org.jboss.deployment.MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/jms/jbossmq-httpil.sar/
            2004-07-05 19:05:18,768 INFO [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/jmx-invoker-adaptor-server.sar/
            2004-07-05 19:05:18,918 INFO [org.jboss.invocation.jrmp.server.JRMPProxyFactory] Started jboss.jmx:type=adaptor,name=Invoker,protocol=jrmp,service=proxyFactory
            2004-07-05 19:05:18,918 INFO [org.jboss.naming.NamingAlias] Bound link jmx/rmi/RMIAdaptor to jmx/invoker/RMIAdaptor
            2004-07-05 19:05:18,918 INFO [org.jboss.naming.NamingAlias] Started jboss.jmx:alias=jmx/rmi/RMIAdaptor
            2004-07-05 19:05:18,938 INFO [org.jboss.jmx.connector.invoker.InvokerAdaptorService] Started jboss.jmx:type=adaptor,name=Invoker
            2004-07-05 19:05:18,948 INFO [org.jboss.deployment.MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/jmx-invoker-adaptor-server.sar/
            2004-07-05 19:05:18,948 INFO [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/management/console-mgr.sar
            2004-07-05 19:05:19,008 INFO [org.jboss.deployment.SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/tmp/deploy/tmp40036console-mgr.sar-contents/console-mgr-classes.jar
            2004-07-05 19:05:19,038 INFO [org.jboss.deployment.SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/tmp/deploy/tmp40036console-mgr.sar-contents/jcommon.jar
            2004-07-05 19:05:19,058 INFO [org.jboss.deployment.SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/tmp/deploy/tmp40036console-mgr.sar-contents/jfreechart-demo.jar
            2004-07-05 19:05:19,118 INFO [org.jboss.deployment.SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/tmp/deploy/tmp40036console-mgr.sar-contents/jfreechart.jar
            2004-07-05 19:05:19,449 INFO [org.jboss.console.manager.PluginManager] Started jboss.admin:service=PluginManager
            2004-07-05 19:05:19,469 INFO [org.jboss.deployment.MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/management/console-mgr.sar
            2004-07-05 19:05:19,469 INFO [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/snmp-adaptor.sar/
            2004-07-05 19:05:19,479 INFO [org.jboss.deployment.SARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/deploy/snmp-adaptor.sar/castor.jar
            2004-07-05 19:05:19,860 INFO [org.jboss.jmx.adaptor.snmp.trapd.TrapdService] Started jboss.jmx:name=SnmpAgent,service=trapd,type=logger
            2004-07-05 19:05:19,870 INFO [org.jboss.jmx.adaptor.snmp.agent.SnmpAgentService] Instantiating trap emitter ...
            2004-07-05 19:05:19,910 INFO [org.jboss.jmx.adaptor.snmp.agent.SnmpAgentService] Starting trap emitter ...
            2004-07-05 19:05:19,910 INFO [org.jboss.jmx.adaptor.snmp.agent.TrapEmitter] Reading resource: "/managers.xml"
            2004-07-05 19:05:20,290 INFO [org.jboss.jmx.adaptor.snmp.agent.TrapEmitter] "/managers.xml" valid. Read 1 monitoring managers
            2004-07-05 19:05:20,290 INFO [org.jboss.jmx.adaptor.snmp.agent.TrapEmitter] Executing resource: "/managers.xml"
            2004-07-05 19:05:20,380 INFO [org.jboss.jmx.adaptor.snmp.agent.TrapFactorySupport] Reading resource: "/notifications.xml"
            2004-07-05 19:05:20,430 INFO [org.jboss.jmx.adaptor.snmp.agent.TrapFactorySupport] "/notifications.xml" valid. Read 2 mappings
            2004-07-05 19:05:20,430 INFO [org.jboss.jmx.adaptor.snmp.agent.TrapFactorySupport] Executing resource: "/notifications.xml"
            2004-07-05 19:05:20,490 INFO [org.jboss.jmx.adaptor.snmp.agent.TrapFactorySupport] Trap factory going active
            2004-07-05 19:05:20,490 INFO [org.jboss.jmx.adaptor.snmp.agent.SnmpAgentService] Instantiating subscription manager ...
            2004-07-05 19:05:20,490 INFO [org.jboss.jmx.adaptor.snmp.agent.SnmpAgentService] Starting subscription manager ...
            2004-07-05 19:05:20,490 INFO [org.jboss.jmx.adaptor.snmp.agent.SubscriptionMgr] Reading resource: "/mbeans.xml"
            2004-07-05 19:05:20,521 INFO [org.jboss.jmx.adaptor.snmp.agent.SubscriptionMgr] "/mbeans.xml" valid. Read 2 monitored objects
            2004-07-05 19:05:20,521 INFO [org.jboss.jmx.adaptor.snmp.agent.SubscriptionMgr] Executing resource: "/mbeans.xml"
            2004-07-05 19:05:20,531 INFO [org.jboss.jmx.adaptor.snmp.agent.SubscriptionMgr] Subscription manager done
            2004-07-05 19:05:20,531 INFO [org.jboss.jmx.adaptor.snmp.agent.SnmpAgentService] Starting heartbeat controller ...
            2004-07-05 19:05:20,531 WARN [org.jboss.jmx.adaptor.snmp.agent.Heartbeat] Heartbeat disabled
            2004-07-05 19:05:20,601 INFO [org.jboss.jmx.adaptor.snmp.agent.SnmpAgentService] Snmp Agent going active
            2004-07-05 19:05:20,601 INFO [org.jboss.jmx.adaptor.snmp.agent.SnmpAgentService] Started jboss.jmx:name=SnmpAgent,service=snmp,type=adaptor
            2004-07-05 19:05:20,621 INFO [org.jboss.deployment.MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/snmp-adaptor.sar/
            2004-07-05 19:05:20,621 INFO [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/uuid-key-generator.sar
            2004-07-05 19:05:20,691 INFO [org.jboss.ejb.plugins.keygenerator.uuid.UUIDKeyGeneratorFactoryService] Started jboss:service=UUIDKeyGeneratorFactory
            2004-07-05 19:05:20,701 INFO [org.jboss.deployment.MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/uuid-key-generator.sar
            2004-07-05 19:05:20,701 INFO [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/jboss-local-jdbc.rar
            2004-07-05 19:05:20,801 INFO [org.jboss.resource.RARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/tmp/deploy/tmp40039jboss-local-jdbc.rar-contents/jboss-local-jdbc.jar
            2004-07-05 19:05:20,851 INFO [org.jboss.deployment.MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/jboss-local-jdbc.rar
            2004-07-05 19:05:20,851 INFO [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/jboss-xa-jdbc.rar
            2004-07-05 19:05:20,931 INFO [org.jboss.resource.RARMetaData] Loading JBoss Resource Adapter for JDBC 2 XA drivers
            2004-07-05 19:05:20,931 INFO [org.jboss.resource.RARMetaData] Required license terms present. See deployment descriptor.
            2004-07-05 19:05:20,941 INFO [org.jboss.resource.RARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/tmp/deploy/tmp40040jboss-xa-jdbc.rar-contents/jboss-xa-jdbc.jar
            2004-07-05 19:05:20,961 INFO [org.jboss.deployment.MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/jboss-xa-jdbc.rar
            2004-07-05 19:05:20,961 INFO [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/jms/jms-ra.rar
            2004-07-05 19:05:21,031 INFO [org.jboss.resource.RARDeployer] nested deployment: file:/C:/jboss-3.2.3/server/default/tmp/deploy/tmp40041jms-ra.rar-contents/jms-ra.jar
            2004-07-05 19:05:21,061 INFO [org.jboss.deployment.MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/jms/jms-ra.rar
            2004-07-05 19:05:21,061 INFO [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/hsqldb-ds.xml
            2004-07-05 19:05:21,252 INFO [org.jboss.resource.connectionmanager.RARDeployment] Started jboss.jca:service=ManagedConnectionFactory,name=DefaultDS
            2004-07-05 19:05:21,262 INFO [org.jboss.resource.connectionmanager.JBossManagedConnectionPool] Started jboss.jca:service=ManagedConnectionPool,name=DefaultDS
            2004-07-05 19:05:21,302 INFO [org.jboss.deployment.MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/hsqldb-ds.xml
            2004-07-05 19:05:21,302 INFO [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/jms/jms-ds.xml
            2004-07-05 19:05:21,412 INFO [org.jboss.jms.jndi.JMSProviderLoader] Bound adapter to java:/DefaultJMSProvider
            2004-07-05 19:05:21,412 INFO [org.jboss.jms.jndi.JMSProviderLoader] Started jboss.mq:service=JMSProviderLoader,name=JBossMQProvider
            2004-07-05 19:05:21,432 INFO [org.jboss.jms.asf.ServerSessionPoolLoader] pool factory StdJMSPool bound to java:/StdJMSPool
            2004-07-05 19:05:21,432 INFO [org.jboss.jms.asf.ServerSessionPoolLoader] Started jboss.mq:service=ServerSessionPoolMBean,name=StdJMSPool
            2004-07-05 19:05:21,742 INFO [org.jboss.resource.connectionmanager.RARDeployment] Started jboss.jca:service=ManagedConnectionFactory,name=JmsXA
            2004-07-05 19:05:21,742 INFO [org.jboss.resource.connectionmanager.JBossManagedConnectionPool] Started jboss.jca:service=ManagedConnectionPool,name=JmsXA
            2004-07-05 19:05:21,792 INFO [org.jboss.deployment.MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/jms/jms-ds.xml
            2004-07-05 19:05:21,802 INFO [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/mysql-ds.xml
            2004-07-05 19:05:21,953 INFO [org.jboss.resource.connectionmanager.RARDeployment] Started jboss.jca:service=ManagedConnectionFactory,name=jdbc/motorsportsClubs/primaryDS
            2004-07-05 19:05:21,953 INFO [org.jboss.resource.connectionmanager.JBossManagedConnectionPool] Started jboss.jca:service=ManagedConnectionPool,name=jdbc/motorsportsClubs/primaryDS
            2004-07-05 19:05:21,963 INFO [org.jboss.deployment.MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/mysql-ds.xml
            2004-07-05 19:05:21,963 INFO [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/cache-invalidation-service.xml
            2004-07-05 19:05:22,083 INFO [org.jboss.cache.invalidation.InvalidationManager] Starting Invalidation Manager jboss.cache:service=InvalidationManager
            2004-07-05 19:05:22,083 INFO [org.jboss.cache.invalidation.InvalidationManager] Started jboss.cache:service=InvalidationManager
            2004-07-05 19:05:22,083 INFO [org.jboss.deployment.MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/cache-invalidation-service.xml
            2004-07-05 19:05:22,093 INFO [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/client-deployer-service.xml
            2004-07-05 19:05:22,153 INFO [org.jboss.deployment.MainDeployer] Adding deployer: org.jboss.deployment.ClientDeployer@d5e270
            2004-07-05 19:05:22,153 INFO [org.jboss.deployment.ClientDeployer] Started jboss.j2ee:service=ClientDeployer
            2004-07-05 19:05:22,163 INFO [org.jboss.deployment.MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/client-deployer-service.xml
            2004-07-05 19:05:22,163 INFO [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/jms/hsqldb-jdbc2-service.xml
            2004-07-05 19:05:22,313 INFO [org.jboss.mq.server.MessageCache] Started jboss.mq:service=MessageCache
            2004-07-05 19:05:22,333 INFO [org.jboss.deployment.MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/jms/hsqldb-jdbc2-service.xml
            2004-07-05 19:05:22,333 INFO [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/jms/jbossmq-destinations-service.xml
            2004-07-05 19:05:22,473 INFO [org.jboss.deployment.MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/jms/jbossmq-destinations-service.xml
            2004-07-05 19:05:22,473 INFO [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/jms/jbossmq-service.xml
            2004-07-05 19:05:22,634 INFO [org.jboss.mq.sm.file.DynamicStateManager] Started jboss.mq:service=StateManager
            2004-07-05 19:05:22,654 INFO [org.jboss.deployment.MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/jms/jbossmq-service.xml
            2004-07-05 19:05:22,654 INFO [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/jms/jvm-il-service.xml
            2004-07-05 19:05:22,714 INFO [org.jboss.deployment.MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/jms/jvm-il-service.xml
            2004-07-05 19:05:22,724 INFO [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/jms/oil-service.xml
            2004-07-05 19:05:22,764 INFO [org.jboss.deployment.MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/jms/oil-service.xml
            2004-07-05 19:05:22,764 INFO [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/jms/oil2-service.xml
            2004-07-05 19:05:22,824 INFO [org.jboss.deployment.MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/jms/oil2-service.xml
            2004-07-05 19:05:22,824 INFO [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/jms/rmi-il-service.xml
            2004-07-05 19:05:22,854 INFO [org.jboss.deployment.MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/jms/rmi-il-service.xml
            2004-07-05 19:05:22,854 INFO [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/jms/uil2-service.xml
            2004-07-05 19:05:22,934 INFO [org.jboss.naming.NamingAlias] Bound link UILConnectionFactory to UIL2ConnectionFactory
            2004-07-05 19:05:22,934 INFO [org.jboss.naming.NamingAlias] Started jboss.mq:service=InvocationLayer,type=UIL
            2004-07-05 19:05:22,944 INFO [org.jboss.naming.NamingAlias] Bound link UILXAConnectionFactory to UIL2XAConnectionFactory
            2004-07-05 19:05:22,944 INFO [org.jboss.naming.NamingAlias] Started jboss.mq:service=InvocationLayer,type=UILXA
            2004-07-05 19:05:22,954 INFO [org.jboss.deployment.MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/jms/uil2-service.xml
            2004-07-05 19:05:22,954 INFO [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/mail-service.xml
            2004-07-05 19:05:23,224 INFO [org.jboss.mail.MailService] Mail Service bound to java:/mail/motorsportsClubs/MailSession
            2004-07-05 19:05:23,224 INFO [org.jboss.mail.MailService] Started jboss:service=MailSession
            2004-07-05 19:05:23,224 INFO [org.jboss.deployment.MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/mail-service.xml
            2004-07-05 19:05:23,224 INFO [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/properties-service.xml
            2004-07-05 19:05:23,264 INFO [org.jboss.varia.property.PropertyEditorManagerService] Started jboss:type=Service,name=PropertyEditorManager
            2004-07-05 19:05:23,264 INFO [org.jboss.varia.property.SystemPropertiesService] Started jboss:type=Service,name=SystemProperties
            2004-07-05 19:05:23,294 INFO [org.jboss.deployment.MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/properties-service.xml
            2004-07-05 19:05:23,294 INFO [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/schedule-manager-service.xml
            2004-07-05 19:05:23,315 INFO [org.jboss.deployment.MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/schedule-manager-service.xml
            2004-07-05 19:05:23,315 INFO [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/scheduler-service.xml
            2004-07-05 19:05:23,355 INFO [org.jboss.deployment.MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/scheduler-service.xml
            2004-07-05 19:05:23,355 INFO [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/sqlexception-service.xml
            2004-07-05 19:05:23,395 INFO [org.jboss.deployment.MainDeployer] Deployed package: file:/C:/jboss-3.2.3/server/default/deploy/sqlexception-service.xml
            2004-07-05 19:05:23,395 INFO [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.3/server/default/deploy/transaction-service.xml
            2004-07-05 19:05:23,485 INFO [org.jboss.resource.connectionmanager.CachedConnectionManager] Started jboss.jca:service=CachedConnectionManager
            2004-07-05 19:05:23,515 INFO [org.jboss.security.plugins.JaasSecurityManagerService] Created securityMgr=org.jboss.security.plugins.JaasSecurityManager@1a76fdd
            2004-07-05 19:05:23,525 DEBUG [org.jboss.security.plugins.JaasSecurityManager.HsqlDbRealm] CachePolicy set to: org.jboss.util.TimedCachePolicy@12bc407
            2004-07-05 19:05:23,525 INFO [org.jboss.security.plugins.JaasSecurityManagerService] setCachePolicy, c=org.jboss.util.TimedCachePolicy@12bc407
            2004-07-05 19:05:23,525 INFO [org.jboss.security.plugins.JaasSecurityManagerService] Added HsqlDbRealm, org.jboss.security.plugins.SecurityDomainContext@


            • 3. Re: Unable to get UsersRolesLoginModule to work
              jefffry

              Got it to work. This doesn't seem to work when the web app is configured to run in an external directory configured through a context element in the /jbossweb=tomcat41.sar/META-INF/jboss-service.xml. When I dropped my working directory into the /deploy dir as an exploded WAR it worked.