I have installed jboss-5.0.0.GA, JDK 1.6 on Ubuntu 8.04. I did minor changes to startup
script. When I started jboss , I am getting errors in the log file.
If this is not the right combination to install on ubuntu, can anybody point me the right
direction.
Any help in resolving this issue is greatly appreciated.
===============Startup script modifications ===============
#!/bin/sh
#
# $Id: jboss_init.sh 81068 2008-11-14 15:14:35Z dimitris(a)jboss.org $
#
# JBoss Control Script
#
# To use this script run it as root - it will switch to the specified user
#
# Here is a little (and extremely primitive) startup/shutdown script
# for RedHat systems. It assumes that JBoss lives in /usr/local/jboss,
# it's run by user 'jboss' and JDK binaries are in /usr/local/jdk/bin.
# All this can be changed in the script itself.
#
# Either modify this script for your requirements or just ensure that
# the following variables are set correctly before calling the script.
#define where jboss is - this is the directory containing directories log, bin, conf etc
JBOSS_HOME=${JBOSS_HOME:-"/home/jboss/jboss"}
#define the user under which jboss will run, or use 'RUNASIS' to run as the
current user
JBOSS_USER=${JBOSS_USER:-"jboss"}
#make sure java is in your path
JAVAPTH=${JAVAPTH:-"/usr/lib/jvm/java-6-sun-1.6.0.07"}
#configuration to use, usually one of 'minimal', 'default', 'all'
JBOSS_CONF=${JBOSS_CONF:-"default"}
#the host where jboss should answer. o.o.o.o means answer all calls. set this to
yourhost.com
JBOSS_HOST=${JBOSS_HOST:-"0.0.0.0"}
# Uncomment this line to store the console output, otherwise it's sent to /dev/null
echo "JBOSS_CONF: location for saving console log : $JBOSS_CONF"
JBOSS_CONSOLE=${JBOSS_CONSOLE:+"$JBOSS_HOME/server/$JBOSS_CONF/log/console.log"}
#if JBOSS_HOST specified, use -b to bind jboss services to that address
JBOSS_BIND_ADDR=${JBOSS_HOST:-"-b $JBOSS_HOST"}
#define the classpath for the shutdown class
JBOSSCP=${JBOSSCP:-"$JBOSS_HOME/bin/shutdown.jar:$JBOSS_HOME/client/jnet.jar"}
#define the script to use to start jboss
JBOSSSH=${JBOSSSH:-"$JBOSS_HOME/bin/run.sh -c $JBOSS_CONF $JBOSS_BIND_ADDR"}
#
if [ "$JBOSS_USER" = "RUNASIS" ]; then
SUBIT=""
else
SUBIT="su - $JBOSS_USER -c "
fi
if [ -n "$JBOSS_CONSOLE" -a ! -d "$JBOSS_CONSOLE" ]; then
# ensure the file exists
touch $JBOSS_CONSOLE
if [ ! -z "$SUBIT" ]; then
chown $JBOSS_USER $JBOSS_CONSOLE
fi
fi
if [ -n "$JBOSS_CONSOLE" -a ! -f "$JBOSS_CONSOLE" ]; then
echo "WARNING: location for saving console log invalid: $JBOSS_CONSOLE"
echo "WARNING: ignoring it and using /dev/null"
JBOSS_CONSOLE="/dev/null"
fi
#define what will be done with the console log
JBOSS_CONSOLE=${JBOSS_CONSOLE:-"/dev/null"}
JBOSS_CMD_START="cd $JBOSS_HOME/bin; $JBOSSSH"
JBOSS_CMD_STOP=${JBOSS_CMD_STOP:-"java -classpath $JBOSSCP org.jboss.Shutdown
--shutdown"}
if [ -z "`echo $PATH | grep $JAVAPTH`" ]; then
export PATH=$PATH:$JAVAPTH
fi
if [ ! -d "$JBOSS_HOME" ]; then
echo JBOSS_HOME does not exist as a valid directory : $JBOSS_HOME
exit 1
fi
echo JBOSS_CMD_START = $JBOSS_CMD_START
case "$1" in
start)
cd $JBOSS_HOME/bin
if [ -z "$SUBIT" ]; then
eval $JBOSS_CMD_START >${JBOSS_CONSOLE} 2>&1 &
else
$SUBIT "$JBOSS_CMD_START >${JBOSS_CONSOLE} 2>&1 &"
fi
;;
stop)
if [ -z "$SUBIT" ]; then
$JBOSS_CMD_STOP
else
$SUBIT "$JBOSS_CMD_STOP"
fi
;;
restart)
$0 stop
$0 start
;;
*)
echo "usage: $0 (start|stop|restart|help)"
esac
=================================================
======Complete Server log file ( Errors are in the end) ========
2009-02-14 08:45:08,566 DEBUG [org.jboss.logging.Log4jService] (main) Installed System.out
adapter
2009-02-14 08:45:08,567 DEBUG [org.jboss.logging.Log4jService] (main) Installed System.err
adapter
2009-02-14 08:45:08,571 DEBUG [org.jboss.logging.Log4jService] (main) Added
ThrowableListener: org.jboss.logging.Log4jService$ThrowableListenerLoggingAdapter@174f478
2009-02-14 08:45:08,571 DEBUG [org.jboss.logging.Log4jService] (main) Created
jboss.system:type=Log4jService,service=Logging
2009-02-14 08:45:08,571 DEBUG [org.jboss.system.ServiceController] (main) starting service
jboss.system:type=Log4jService,service=Logging
2009-02-14 08:45:08,572 DEBUG [org.jboss.logging.Log4jService] (main) Starting
jboss.system:type=Log4jService,service=Logging
2009-02-14 08:45:08,572 DEBUG [org.jboss.logging.Log4jService] (main) Started
jboss.system:type=Log4jService,service=Logging
2009-02-14 08:45:08,573 DEBUG [org.jboss.system.ServiceCreator] (main) About to create
bean: jboss.rmi:type=RMIClassLoader with code:
org.jboss.util.property.jmx.SystemPropertyClassValue
2009-02-14 08:45:08,577 DEBUG [org.jboss.system.ServiceCreator] (main) Created mbean:
jboss.rmi:type=RMIClassLoader
2009-02-14 08:45:08,579 DEBUG [org.jboss.system.ServiceConfigurator] (main) Property set
to java.rmi.server.RMIClassLoaderSpi in jboss.rmi:type=RMIClassLoader
2009-02-14 08:45:08,580 DEBUG [org.jboss.system.ServiceConfigurator] (main) ClassName set
to org.jboss.system.JBossRMIClassLoader in jboss.rmi:type=RMIClassLoader
2009-02-14 08:45:08,581 DEBUG [org.jboss.system.ServiceController] (main) Creating service
jboss.rmi:type=RMIClassLoader
2009-02-14 08:45:08,586 DEBUG [org.jboss.system.ServiceController] (main) starting service
jboss.rmi:type=RMIClassLoader
2009-02-14 08:45:08,590 DEBUG [org.jboss.system.ServiceCreator] (main) About to create
bean: jboss:service=WebService with code: org.jboss.web.WebService
2009-02-14 08:45:08,607 DEBUG [org.jboss.system.ServiceCreator] (main) Created mbean:
jboss:service=WebService
2009-02-14 08:45:08,608 DEBUG [org.jboss.system.ServiceConfigurator] (main) BindAddress
set to 127.0.0.1 in jboss:service=WebService
2009-02-14 08:45:08,610 DEBUG [org.jboss.system.ServiceConfigurator] (main) Port set to
8083 in jboss:service=WebService
2009-02-14 08:45:08,612 DEBUG [org.jboss.system.ServiceConfigurator] (main) Host set to
127.0.0.1 in jboss:service=WebService
2009-02-14 08:45:08,613 DEBUG [org.jboss.system.ServiceConfigurator] (main)
DownloadServerClasses set to true in jboss:service=WebService
2009-02-14 08:45:08,614 DEBUG [org.jboss.system.ServiceConfigurator] (main)
DownloadResources set to false in jboss:service=WebService
2009-02-14 08:45:08,625 DEBUG [org.jboss.system.ServiceConfigurator] (main) ThreadPool set
to MBeanProxyExt[jboss.system:service=ThreadPool] in jboss:service=WebService
2009-02-14 08:45:08,626 DEBUG [org.jboss.system.ServiceController] (main) Creating service
jboss:service=WebService
2009-02-14 08:45:08,626 DEBUG [org.jboss.web.WebService] (main) Creating
jboss:service=WebService
2009-02-14 08:45:08,638 INFO [org.jboss.web.WebService] (main) Using RMI server codebase:
http://127.0.0.1:8083/
2009-02-14 08:45:08,638 DEBUG [org.jboss.web.WebService] (main) Created
jboss:service=WebService
2009-02-14 08:45:08,638 DEBUG [org.jboss.system.ServiceController] (main) starting service
jboss:service=WebService
2009-02-14 08:45:08,638 DEBUG [org.jboss.web.WebService] (main) Starting
jboss:service=WebService
2009-02-14 08:45:08,642 DEBUG [org.jboss.web.WebServer] (main) Started server:
ServerSocket[addr=/127.0.0.1,port=0,localport=8083]
2009-02-14 08:45:08,645 DEBUG [org.jboss.web.WebService] (main) Started WebServer with
address: /127.0.0.1:8083
2009-02-14 08:45:08,645 DEBUG [org.jboss.web.WebService] (main) Started
jboss:service=WebService
2009-02-14 08:45:08,646 DEBUG [org.jboss.system.ServiceCreator] (main) About to create
xmbean object: jboss:service=NamingBeanImpl with code: org.jnp.server.NamingBeanImpl with
descriptor: resource:xmdesc/NamingBean-xmbean.xml
2009-02-14 08:45:08,684 DEBUG [org.jboss.system.ServiceCreator] (main) Created mbean:
jboss:service=NamingBeanImpl
2009-02-14 08:45:08,685 DEBUG [org.jboss.system.ServiceController] (main) Creating service
jboss:service=NamingBeanImpl
2009-02-14 08:45:08,685 DEBUG [org.jboss.system.ServiceController] (main) starting service
jboss:service=NamingBeanImpl
2009-02-14 08:45:08,811 DEBUG [org.jnp.server.NamingBeanImpl] (main) Using NamingServer:
org.jnp.server.NamingServer@13dc4d5
2009-02-14 08:45:08,811 DEBUG [org.jnp.server.NamingBeanImpl] (main) Installed global
NamingServer: org.jnp.server.NamingServer@13dc4d5
2009-02-14 08:45:08,837 DEBUG [org.jnp.server.NamingBeanImpl] (main) InitialContext
Environment:
2009-02-14 08:45:08,847 DEBUG [org.jnp.server.NamingBeanImpl] (main)
key=java.naming.factory.initial,
value(java.lang.String)=org.jnp.interfaces.NamingContextFactory
2009-02-14 08:45:08,847 DEBUG [org.jnp.server.NamingBeanImpl] (main)
key=java.naming.factory.url.pkgs,
value(java.lang.String)=org.jboss.naming:org.jnp.interfaces
2009-02-14 08:45:08,859 DEBUG [org.jboss.system.ServiceCreator] (main) About to create
xmbean object: jboss:service=Naming with code: org.jboss.naming.NamingService with
descriptor: resource:xmdesc/NamingService-xmbean.xml
2009-02-14 08:45:08,872 DEBUG [org.jboss.naming.Naming] (main) isTraceEnabled: false
2009-02-14 08:45:08,923 DEBUG [org.jboss.mx.modelmbean.ModelMBeanInvoker] (main) Ignoring
obsolete legacy interceptor: org.jboss.mx.interceptor.PersistenceInterceptor2
2009-02-14 08:45:08,924 DEBUG [org.jboss.mx.modelmbean.ModelMBeanInvoker] (main) Ignoring
obsolete legacy interceptor: org.jboss.mx.interceptor.ModelMBeanInterceptor
2009-02-14 08:45:08,924 DEBUG [org.jboss.mx.modelmbean.ModelMBeanInvoker] (main) Ignoring
obsolete legacy interceptor: org.jboss.mx.interceptor.ObjectReferenceInterceptor
2009-02-14 08:45:08,925 DEBUG [org.jboss.system.ServiceCreator] (main) Created mbean:
jboss:service=Naming
2009-02-14 08:45:08,926 DEBUG [org.jboss.system.ServiceConfigurator] (main) CallByValue
set to false in jboss:service=Naming
2009-02-14 08:45:08,928 DEBUG [org.jboss.system.ServiceConfigurator] (main) Port set to
1099 in jboss:service=Naming
2009-02-14 08:45:08,930 DEBUG [org.jboss.system.ServiceConfigurator] (main) BindAddress
set to 127.0.0.1 in jboss:service=Naming
2009-02-14 08:45:08,931 DEBUG [org.jboss.system.ServiceConfigurator] (main) RmiPort set to
1098 in jboss:service=Naming
2009-02-14 08:45:08,932 DEBUG [org.jboss.system.ServiceConfigurator] (main) RmiBindAddress
set to 127.0.0.1 in jboss:service=Naming
2009-02-14 08:45:08,939 DEBUG [org.jboss.system.ServiceConfigurator] (main) LookupPool set
to MBeanProxyExt[jboss.system:service=ThreadPool] in jboss:service=Naming
2009-02-14 08:45:08,944 DEBUG [org.jboss.system.ServiceConfigurator] (main) Naming set to
MBeanProxyExt[jboss:service=NamingBeanImpl] in jboss:service=Naming
2009-02-14 08:45:08,945 DEBUG [org.jboss.system.ServiceController] (main) Creating service
jboss:service=Naming
2009-02-14 08:45:08,946 DEBUG [org.jboss.naming.NamingService] (main) Creating
jboss:service=Naming
2009-02-14 08:45:08,946 DEBUG [org.jboss.naming.NamingService] (main) Created
jboss:service=Naming
2009-02-14 08:45:08,946 DEBUG [org.jboss.system.ServiceController] (main) starting service
jboss:service=Naming
2009-02-14 08:45:08,947 DEBUG [org.jboss.naming.NamingService] (main) Starting
jboss:service=Naming
2009-02-14 08:45:08,948 DEBUG [org.jboss.naming.NamingService] (main) System.setProperty,
key=java.naming.factory.initial, value=org.jnp.interfaces.NamingContextFactory
2009-02-14 08:45:08,948 DEBUG [org.jboss.naming.NamingService] (main) System.setProperty,
key=java.naming.factory.url.pkgs, value=org.jboss.naming:org.jnp.interfaces
2009-02-14 08:45:08,948 DEBUG [org.jboss.naming.Naming] (main) Begin start
2009-02-14 08:45:08,950 DEBUG [org.jboss.naming.Naming] (main) Creating NamingServer stub,
theServer=MBeanProxyExt[jboss:service=NamingBeanImpl],rmiPort=1098,clientSocketFactory=null,serverSocketFactory=org.jboss.net.sockets.DefaultSocketFactory@e048aaa4[bindAddress=/127.0.0.1]
2009-02-14 08:45:09,018 DEBUG [org.jboss.naming.Naming] (main) NamingServer stub:
NamingServer_Stub[UnicastRef2 [liveRef:
[endpoint:[127.0.0.1:1098,org.jboss.net.sockets.DefaultSocketFactory@e048aaa4[bindAddress=/127.0.0.1]](local),objID:[-6d2a05c9:11f75088e68:-7fff,
8505697508585435513]]]]
2009-02-14 08:45:09,349 DEBUG [org.jboss.naming.Naming] (main) JNDI bootstrap
JNP=/127.0.0.1:1099, RMI=/127.0.0.1:1098, backlog=50, no client SocketFactory, Server
SocketFactory=org.jboss.net.sockets.DefaultSocketFactory(a)e048aaa4[bindAddress=/127.0.0.1]
2009-02-14 08:45:09,355 DEBUG [org.jboss.naming.Naming] (main) End start
2009-02-14 08:45:09,430 DEBUG [org.jboss.naming.NamingService] (main) Started
jboss:service=Naming
2009-02-14 08:45:09,432 DEBUG [org.jboss.system.ServiceCreator] (main) About to create
xmbean object: jboss:service=JNDIView with code: org.jboss.naming.JNDIView with
descriptor: resource:xmdesc/JNDIView-xmbean.xml
2009-02-14 08:45:09,484 DEBUG [org.jboss.system.ServiceCreator] (main) Created mbean:
jboss:service=JNDIView
2009-02-14 08:45:09,486 DEBUG [org.jboss.system.ServiceConfigurator] (main)
HANamingService set to jboss:service=HAJNDI in jboss:service=JNDIView
2009-02-14 08:45:09,487 DEBUG [org.jboss.system.ServiceController] (main) Creating service
jboss:service=JNDIView
2009-02-14 08:45:09,487 DEBUG [org.jboss.naming.JNDIView] (main) Creating
jboss:service=JNDIView
2009-02-14 08:45:09,487 DEBUG [org.jboss.naming.JNDIView] (main) Created
jboss:service=JNDIView
2009-02-14 08:45:09,488 DEBUG [org.jboss.system.ServiceController] (main) starting service
jboss:service=JNDIView
2009-02-14 08:45:09,488 DEBUG [org.jboss.naming.JNDIView] (main) Starting
jboss:service=JNDIView
2009-02-14 08:45:09,488 DEBUG [org.jboss.naming.JNDIView] (main) Started
jboss:service=JNDIView
2009-02-14 08:45:09,489 DEBUG [org.jboss.system.ServiceCreator] (main) About to create
bean: jboss.security:service=JaasSecurityManager with code:
org.jboss.security.plugins.JaasSecurityManagerService
2009-02-14 08:45:09,562 DEBUG [org.jboss.system.ServiceCreator] (main) Created mbean:
jboss.security:service=JaasSecurityManager
2009-02-14 08:45:09,562 DEBUG [org.jboss.system.ServiceConfigurator] (main) ServerMode set
to true in jboss.security:service=JaasSecurityManager
2009-02-14 08:45:09,564 DEBUG [org.jboss.system.ServiceConfigurator] (main)
SecurityManagerClassName set to org.jboss.security.plugins.JaasSecurityManager in
jboss.security:service=JaasSecurityManager
2009-02-14 08:45:09,565 DEBUG [org.jboss.system.ServiceConfigurator] (main)
DefaultUnauthenticatedPrincipal set to anonymous in
jboss.security:service=JaasSecurityManager
2009-02-14 08:45:09,566 DEBUG [org.jboss.system.ServiceConfigurator] (main)
DefaultCacheTimeout set to 1800 in jboss.security:service=JaasSecurityManager
2009-02-14 08:45:09,568 DEBUG [org.jboss.system.ServiceConfigurator] (main)
DefaultCacheResolution set to 60 in jboss.security:service=JaasSecurityManager
2009-02-14 08:45:09,569 DEBUG [org.jboss.system.ServiceConfigurator] (main)
DeepCopySubjectMode set to false in jboss.security:service=JaasSecurityManager
2009-02-14 08:45:09,569 DEBUG [org.jboss.security.plugins.JaasSecurityManagerService]
(main) setDeepCopySubjectMode=false
2009-02-14 08:45:09,583 DEBUG [org.jboss.system.ServiceController] (main) Creating service
jboss.security:service=JaasSecurityManager
2009-02-14 08:45:09,583 DEBUG [org.jboss.security.plugins.JaasSecurityManagerService]
(main) Creating jboss.security:service=JaasSecurityManager
2009-02-14 08:45:09,583 DEBUG [org.jboss.security.plugins.JaasSecurityManagerService]
(main) Created jboss.security:service=JaasSecurityManager
2009-02-14 08:45:09,583 DEBUG [org.jboss.system.ServiceController] (main) starting service
jboss.security:service=JaasSecurityManager
2009-02-14 08:45:09,583 DEBUG [org.jboss.security.plugins.JaasSecurityManagerService]
(main) Starting jboss.security:service=JaasSecurityManager
2009-02-14 08:45:09,608 DEBUG [org.jboss.security.SecurityAssociation] (main) Using
ThreadLocal: false
2009-02-14 08:45:09,630 DEBUG [org.jboss.security.plugins.JaasSecurityManagerService]
(main) securityMgrCtxPath=java:/jaas
2009-02-14 08:45:09,632 DEBUG [org.jboss.security.plugins.JaasSecurityManagerService]
(main) cachePolicyCtxPath=java:/timedCacheFactory
2009-02-14 08:45:09,636 DEBUG [org.jboss.security.plugins.JaasSecurityManagerService]
(main) SecurityProxyFactory=org.jboss.security.SubjectSecurityProxyFactory@17588d5
2009-02-14 08:45:09,640 DEBUG [org.jboss.security.plugins.JaasSecurityManagerService]
(main) Registered PrincipalEditor, SecurityDomainEditor
2009-02-14 08:45:09,640 DEBUG [org.jboss.security.plugins.JaasSecurityManagerService]
(main) ServerMode=true
2009-02-14 08:45:09,640 DEBUG [org.jboss.security.plugins.JaasSecurityManagerService]
(main) SecurityMgrClass=class org.jboss.security.plugins.JaasSecurityManager
2009-02-14 08:45:09,640 DEBUG [org.jboss.security.plugins.JaasSecurityManagerService]
(main) CallbackHandlerClass=class org.jboss.security.auth.callback.JBossCallbackHandler
2009-02-14 08:45:09,640 DEBUG [org.jboss.security.plugins.JaasSecurityManagerService]
(main) Started jboss.security:service=JaasSecurityManager
2009-02-14 08:45:09,641 DEBUG [org.jboss.system.ServiceCreator] (main) About to create
bean: jboss.jdbc:service=metadata with code:
org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary
2009-02-14 08:45:09,658 DEBUG [org.jboss.system.ServiceCreator] (main) Created mbean:
jboss.jdbc:service=metadata
2009-02-14 08:45:09,659 DEBUG [org.jboss.system.ServiceController] (main) Creating service
jboss.jdbc:service=metadata
2009-02-14 08:45:09,659 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary]
(main) Creating jboss.jdbc:service=metadata
2009-02-14 08:45:09,659 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary]
(main) Created jboss.jdbc:service=metadata
2009-02-14 08:45:09,659 DEBUG [org.jboss.system.ServiceController] (main) starting service
jboss.jdbc:service=metadata
2009-02-14 08:45:09,660 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary]
(main) Starting jboss.jdbc:service=metadata
2009-02-14 08:45:09,662 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary]
(main) Loading standardjbosscmp-jdbc.xml :
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/conf/standardjbosscmp-jdbc.xml
2009-02-14 08:45:09,863 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary]
(main) added type-mapping: FirstSQL/J
2009-02-14 08:45:09,878 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary]
(main) added type-mapping: Ingres
2009-02-14 08:45:09,882 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary]
(main) added type-mapping: McKoi
2009-02-14 08:45:09,890 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary]
(main) added type-mapping: Firebird
2009-02-14 08:45:09,893 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary]
(main) added type-mapping: InterBase
2009-02-14 08:45:09,907 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary]
(main) added type-mapping: DB2
2009-02-14 08:45:09,911 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary]
(main) added type-mapping: Derby
2009-02-14 08:45:09,915 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary]
(main) added type-mapping: Oracle9i
2009-02-14 08:45:09,920 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary]
(main) added type-mapping: Oracle8
2009-02-14 08:45:09,925 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary]
(main) added type-mapping: Oracle7
2009-02-14 08:45:09,929 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary]
(main) added type-mapping: Sybase
2009-02-14 08:45:09,933 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary]
(main) added type-mapping: PostgreSQL
2009-02-14 08:45:09,949 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary]
(main) added type-mapping: PostgreSQL 8.0
2009-02-14 08:45:09,953 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary]
(main) added type-mapping: PostgreSQL 7.2
2009-02-14 08:45:09,958 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary]
(main) added type-mapping: Hypersonic SQL
2009-02-14 08:45:09,961 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary]
(main) added type-mapping: PointBase
2009-02-14 08:45:09,965 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary]
(main) added type-mapping: SOLID
2009-02-14 08:45:09,970 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary]
(main) added type-mapping: mySQL
2009-02-14 08:45:09,974 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary]
(main) added type-mapping: MS SQLSERVER
2009-02-14 08:45:09,982 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary]
(main) added type-mapping: MS SQLSERVER2000
2009-02-14 08:45:09,985 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary]
(main) added type-mapping: DB2/400
2009-02-14 08:45:09,988 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary]
(main) added type-mapping: SapDB
2009-02-14 08:45:09,991 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary]
(main) added type-mapping: MaxDB
2009-02-14 08:45:09,994 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary]
(main) added type-mapping: Cloudscape
2009-02-14 08:45:09,996 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary]
(main) added type-mapping: InformixDB
2009-02-14 08:45:09,997 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary]
(main) added type-mapping: Mimer SQL
2009-02-14 08:45:09,998 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary]
(main) Started jboss.jdbc:service=metadata
2009-02-14 08:45:09,998 DEBUG [org.jboss.deployers.plugins.deployers.DeployersImpl] (main)
Fully Deployed vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/conf/jboss-service.xml
2009-02-14 08:45:09,999 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Add deployment:
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/ejb3.deployer/
2009-02-14 08:45:10,022 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Scheduling deployment:
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/ejb3.deployer/ parent=null
2009-02-14 08:45:10,022 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Scheduling deployment:
vfszip:/home/jboss/jboss-5.0.0.GA/server/default/deployers/ejb3.deployer/jboss-ejb3-deployer.jar
parent=AbstractVFSDeploymentContext@10606890{vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/ejb3.deployer/}
2009-02-14 08:45:10,022 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Scheduling deployment:
vfszip:/home/jboss/jboss-5.0.0.GA/server/default/deployers/ejb3.deployer/jboss-ejb3-iiop.jar
parent=AbstractVFSDeploymentContext@10606890{vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/ejb3.deployer/}
2009-02-14 08:45:10,022 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Add deployment:
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/hibernate-deployer-jboss-beans.xml
2009-02-14 08:45:10,023 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Scheduling deployment:
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/hibernate-deployer-jboss-beans.xml
parent=null
2009-02-14 08:45:10,023 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Add deployment:
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/ear-deployer-jboss-beans.xml
2009-02-14 08:45:10,023 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Scheduling deployment:
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/ear-deployer-jboss-beans.xml
parent=null
2009-02-14 08:45:10,023 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Add deployment:
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/dependency-deployers-jboss-beans.xml
2009-02-14 08:45:10,024 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Scheduling deployment:
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/dependency-deployers-jboss-beans.xml
parent=null
2009-02-14 08:45:10,024 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Add deployment:
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jboss-aop-jboss5.deployer/
2009-02-14 08:45:10,045 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Scheduling deployment:
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jboss-aop-jboss5.deployer/
parent=null
2009-02-14 08:45:10,045 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Scheduling deployment:
vfszip:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jboss-aop-jboss5.deployer/jboss-aop-aspects.jar
parent=AbstractVFSDeploymentContext@27730671{vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jboss-aop-jboss5.deployer/}
2009-02-14 08:45:10,045 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Scheduling deployment:
vfszip:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jboss-aop-jboss5.deployer/jboss-aspect-library.jar
parent=AbstractVFSDeploymentContext@27730671{vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jboss-aop-jboss5.deployer/}
2009-02-14 08:45:10,045 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Scheduling deployment:
vfszip:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jboss-aop-jboss5.deployer/jrockit-pluggable-instrumentor.jar
parent=AbstractVFSDeploymentContext@27730671{vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jboss-aop-jboss5.deployer/}
2009-02-14 08:45:10,046 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Scheduling deployment:
vfszip:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jboss-aop-jboss5.deployer/pluggable-instrumentor.jar
parent=AbstractVFSDeploymentContext@27730671{vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jboss-aop-jboss5.deployer/}
2009-02-14 08:45:10,046 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Add deployment:
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jbossws.deployer/
2009-02-14 08:45:10,149 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Scheduling deployment:
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jbossws.deployer/ parent=null
2009-02-14 08:45:10,149 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Scheduling deployment:
vfszip:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jbossws.deployer/FastInfoset.jar
parent=AbstractVFSDeploymentContext@26414779{vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jbossws.deployer/}
2009-02-14 08:45:10,149 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Scheduling deployment:
vfszip:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jbossws.deployer/jboss-jaxb-intros.jar
parent=AbstractVFSDeploymentContext@26414779{vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jbossws.deployer/}
2009-02-14 08:45:10,149 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Scheduling deployment:
vfszip:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jbossws.deployer/jbossws-common.jar
parent=AbstractVFSDeploymentContext@26414779{vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jbossws.deployer/}
2009-02-14 08:45:10,149 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Scheduling deployment:
vfszip:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jbossws.deployer/jbossws-framework.jar
parent=AbstractVFSDeploymentContext@26414779{vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jbossws.deployer/}
2009-02-14 08:45:10,149 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Scheduling deployment:
vfszip:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jbossws.deployer/jbossws-jboss50.jar
parent=AbstractVFSDeploymentContext@26414779{vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jbossws.deployer/}
2009-02-14 08:45:10,149 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Scheduling deployment:
vfszip:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jbossws.deployer/jbossws-native-core.jar
parent=AbstractVFSDeploymentContext@26414779{vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jbossws.deployer/}
2009-02-14 08:45:10,149 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Scheduling deployment:
vfszip:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jbossws.deployer/jettison.jar
parent=AbstractVFSDeploymentContext@26414779{vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jbossws.deployer/}
2009-02-14 08:45:10,149 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Scheduling deployment:
vfszip:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jbossws.deployer/policy.jar
parent=AbstractVFSDeploymentContext@26414779{vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jbossws.deployer/}
2009-02-14 08:45:10,149 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Scheduling deployment:
vfszip:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jbossws.deployer/wsdl4j.jar
parent=AbstractVFSDeploymentContext@26414779{vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jbossws.deployer/}
2009-02-14 08:45:10,149 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Scheduling deployment:
vfszip:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jbossws.deployer/xmlsec.jar
parent=AbstractVFSDeploymentContext@26414779{vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jbossws.deployer/}
2009-02-14 08:45:10,150 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Add deployment:
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jboss-jca.deployer/
2009-02-14 08:45:10,156 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Scheduling deployment:
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jboss-jca.deployer/
parent=null
2009-02-14 08:45:10,156 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Scheduling deployment:
vfszip:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jboss-jca.deployer/jboss-jca-deployer.jar
parent=AbstractVFSDeploymentContext@15944200{vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jboss-jca.deployer/}
2009-02-14 08:45:10,156 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Add deployment:
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/directory-deployer-jboss-beans.xml
2009-02-14 08:45:10,157 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Scheduling deployment:
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/directory-deployer-jboss-beans.xml
parent=null
2009-02-14 08:45:10,157 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Add deployment:
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jsr77-deployers-jboss-beans.xml
2009-02-14 08:45:10,157 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Scheduling deployment:
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jsr77-deployers-jboss-beans.xml
parent=null
2009-02-14 08:45:10,157 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Add deployment:
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/clustering-deployer-jboss-beans.xml
2009-02-14 08:45:10,157 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Scheduling deployment:
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/clustering-deployer-jboss-beans.xml
parent=null
2009-02-14 08:45:10,158 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Add deployment:
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jbossweb.deployer/
2009-02-14 08:45:10,159 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
Created parser: org.apache.xerces.jaxp.SAXParserImpl@818805, isNamespaceAware: true,
isValidating: true, isXIncludeAware: true
2009-02-14 08:45:10,159 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://xml.org/sax/features/validation set to: true
2009-02-14 08:45:10,160 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://xml.org/sax/features/namespaces set to: true
2009-02-14 08:45:10,160 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://apache.org/xml/features/validation/dynamic set to: true
2009-02-14 08:45:10,166 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
Created parser: org.apache.xerces.jaxp.SAXParserImpl@818805, isNamespaceAware: true,
isValidating: true, isXIncludeAware: true
2009-02-14 08:45:10,180 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Scheduling deployment:
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jbossweb.deployer/
parent=null
2009-02-14 08:45:10,180 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Add deployment:
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/alias-deployers-jboss-beans.xml
2009-02-14 08:45:10,181 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Scheduling deployment:
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/alias-deployers-jboss-beans.xml
parent=null
2009-02-14 08:45:10,181 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Add deployment:
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/security-deployer-jboss-beans.xml
2009-02-14 08:45:10,181 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Scheduling deployment:
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/security-deployer-jboss-beans.xml
parent=null
2009-02-14 08:45:10,181 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Add deployment:
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/metadata-deployer-jboss-beans.xml
2009-02-14 08:45:10,181 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Scheduling deployment:
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/metadata-deployer-jboss-beans.xml
parent=null
2009-02-14 08:45:10,182 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Add deployment:
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/seam.deployer/
2009-02-14 08:45:10,183 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
Created parser: org.apache.xerces.jaxp.SAXParserImpl@1423820, isNamespaceAware: true,
isValidating: true, isXIncludeAware: true
2009-02-14 08:45:10,184 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://xml.org/sax/features/validation set to: true
2009-02-14 08:45:10,184 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://xml.org/sax/features/namespaces set to: true
2009-02-14 08:45:10,184 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://apache.org/xml/features/validation/dynamic set to: true
2009-02-14 08:45:10,184 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
Created parser: org.apache.xerces.jaxp.SAXParserImpl@1423820, isNamespaceAware: true,
isValidating: true, isXIncludeAware: true
2009-02-14 08:45:10,190 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Scheduling deployment:
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/seam.deployer/ parent=null
2009-02-14 08:45:10,190 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Add deployment: vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/bsh.deployer/
2009-02-14 08:45:10,198 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Scheduling deployment:
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/bsh.deployer/ parent=null
2009-02-14 08:45:10,198 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Scheduling deployment:
vfszip:/home/jboss/jboss-5.0.0.GA/server/default/deployers/bsh.deployer/bsh-deployer.jar
parent=AbstractVFSDeploymentContext@28048348{vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/bsh.deployer/}
2009-02-14 08:45:10,198 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Add deployment:
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/ejb-deployer-jboss-beans.xml
2009-02-14 08:45:10,199 DEBUG [org.jboss.deployers.plugins.main.MainDeployerImpl] (main)
Scheduling deployment:
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/ejb-deployer-jboss-beans.xml
parent=null
2009-02-14 08:45:10,200 DEBUG [org.jboss.deployers.plugins.deployers.DeployersImpl] (main)
Deploying vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/bsh.deployer/
2009-02-14 08:45:10,245 DEBUG [org.jboss.deployers.plugins.deployers.DeployersImpl] (main)
Deploying vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/ejb3.deployer/
2009-02-14 08:45:10,318 DEBUG [org.jboss.deployers.plugins.deployers.DeployersImpl] (main)
Deploying
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jboss-aop-jboss5.deployer/
2009-02-14 08:45:10,378 DEBUG [org.jboss.deployers.plugins.deployers.DeployersImpl] (main)
Deploying vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jboss-jca.deployer/
2009-02-14 08:45:10,391 DEBUG [org.jboss.deployers.plugins.deployers.DeployersImpl] (main)
Deploying vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jbossweb.deployer/
2009-02-14 08:45:10,397 DEBUG [org.jboss.deployers.plugins.deployers.DeployersImpl] (main)
Deploying vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jbossws.deployer/
2009-02-14 08:45:10,464 DEBUG [org.jboss.deployers.plugins.deployers.DeployersImpl] (main)
Deploying vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/seam.deployer/
2009-02-14 08:45:10,470 DEBUG [org.jboss.deployers.plugins.deployers.DeployersImpl] (main)
Deploying
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/alias-deployers-jboss-beans.xml
2009-02-14 08:45:10,477 DEBUG [org.jboss.deployers.plugins.deployers.DeployersImpl] (main)
Deploying
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/clustering-deployer-jboss-beans.xml
2009-02-14 08:45:10,483 DEBUG [org.jboss.deployers.plugins.deployers.DeployersImpl] (main)
Deploying
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/dependency-deployers-jboss-beans.xml
2009-02-14 08:45:10,489 DEBUG [org.jboss.deployers.plugins.deployers.DeployersImpl] (main)
Deploying
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/directory-deployer-jboss-beans.xml
2009-02-14 08:45:10,495 DEBUG [org.jboss.deployers.plugins.deployers.DeployersImpl] (main)
Deploying
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/ear-deployer-jboss-beans.xml
2009-02-14 08:45:10,502 DEBUG [org.jboss.deployers.plugins.deployers.DeployersImpl] (main)
Deploying
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/ejb-deployer-jboss-beans.xml
2009-02-14 08:45:10,508 DEBUG [org.jboss.deployers.plugins.deployers.DeployersImpl] (main)
Deploying
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/hibernate-deployer-jboss-beans.xml
2009-02-14 08:45:10,514 DEBUG [org.jboss.deployers.plugins.deployers.DeployersImpl] (main)
Deploying
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jsr77-deployers-jboss-beans.xml
2009-02-14 08:45:10,520 DEBUG [org.jboss.deployers.plugins.deployers.DeployersImpl] (main)
Deploying
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/metadata-deployer-jboss-beans.xml
2009-02-14 08:45:10,526 DEBUG [org.jboss.deployers.plugins.deployers.DeployersImpl] (main)
Deploying
vfsfile:/home/jboss/jboss-5.0.0.GA/server/default/deployers/security-deployer-jboss-beans.xml
2009-02-14 08:45:10,535 DEBUG [org.jboss.deployers.vfs.spi.deployer.JBossXBDeployerHelper]
(main) Parsing file:
FileHandler(a)22941355[path=bsh.deployer/META-INF/bsh-deployers-jboss-beans.xml
context=file:/home/jboss/jboss-5.0.0.GA/server/default/deployers/
real=file:/home/jboss/jboss-5.0.0.GA/server/default/deployers/bsh.deployer/META-INF/bsh-deployers-jboss-beans.xml]
for type: interface org.jboss.kernel.spi.deployment.KernelDeployment
2009-02-14 08:45:10,536 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
Created parser: org.apache.xerces.jaxp.SAXParserImpl@1535ac, isNamespaceAware: true,
isValidating: true, isXIncludeAware: true
2009-02-14 08:45:10,536 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://xml.org/sax/features/validation set to: true
2009-02-14 08:45:10,536 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://xml.org/sax/features/namespaces set to: true
2009-02-14 08:45:10,536 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://apache.org/xml/features/xinclude/fixup-base-uris set to: false
2009-02-14 08:45:10,537 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://apache.org/xml/features/xinclude/fixup-language set to: false
2009-02-14 08:45:10,537 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://apache.org/xml/features/validation/dynamic set to: true
2009-02-14 08:45:10,537 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://apache.org/xml/features/validation/schema set to: true
2009-02-14 08:45:10,537 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://xml.org/sax/features/validation set to: true
2009-02-14 08:45:10,537 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
Created parser: org.apache.xerces.jaxp.SAXParserImpl@1535ac, isNamespaceAware: true,
isValidating: true, isXIncludeAware: true
2009-02-14 08:45:10,606 DEBUG [org.jboss.deployers.vfs.spi.deployer.JBossXBDeployerHelper]
(main) Parsed file:
FileHandler(a)22941355[path=bsh.deployer/META-INF/bsh-deployers-jboss-beans.xml
context=file:/home/jboss/jboss-5.0.0.GA/server/default/deployers/
real=file:/home/jboss/jboss-5.0.0.GA/server/default/deployers/bsh.deployer/META-INF/bsh-deployers-jboss-beans.xml]
to: AbstractKernelDeployment@129645a{name=null installed=false
beanFactories=[AbstractBeanMetaData@7b7b5d{name=BSHParserDeployer
bean=org.jboss.varia.deployment.LegacyBeanShellDeployer properties= constructor=null
autowireCandidate=true}, AbstractBeanMetaData@e038c4{name=BSHScriptDeployer
bean=org.jboss.varia.deployment.LegacyBeanShellScriptDeployer properties=
constructor=AbstractConstructorMetaData@aee908{parameters=[null]}
autowireCandidate=true}]}
2009-02-14 08:45:10,610 DEBUG [org.jboss.deployers.vfs.spi.deployer.JBossXBDeployerHelper]
(main) Parsing file:
FileHandler(a)21303468[path=ejb3.deployer/META-INF/jpa-deployers-jboss-beans.xml
context=file:/home/jboss/jboss-5.0.0.GA/server/default/deployers/
real=file:/home/jboss/jboss-5.0.0.GA/server/default/deployers/ejb3.deployer/META-INF/jpa-deployers-jboss-beans.xml]
for type: interface org.jboss.kernel.spi.deployment.KernelDeployment
2009-02-14 08:45:10,611 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
Created parser: org.apache.xerces.jaxp.SAXParserImpl@1499616, isNamespaceAware: true,
isValidating: true, isXIncludeAware: true
2009-02-14 08:45:10,611 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://xml.org/sax/features/validation set to: true
2009-02-14 08:45:10,611 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://xml.org/sax/features/namespaces set to: true
2009-02-14 08:45:10,611 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://apache.org/xml/features/xinclude/fixup-base-uris set to: false
2009-02-14 08:45:10,611 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://apache.org/xml/features/xinclude/fixup-language set to: false
2009-02-14 08:45:10,611 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://apache.org/xml/features/validation/dynamic set to: true
2009-02-14 08:45:10,611 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://apache.org/xml/features/validation/schema set to: true
2009-02-14 08:45:10,611 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://xml.org/sax/features/validation set to: true
2009-02-14 08:45:10,612 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
Created parser: org.apache.xerces.jaxp.SAXParserImpl@1499616, isNamespaceAware: true,
isValidating: true, isXIncludeAware: true
2009-02-14 08:45:10,619 DEBUG [org.jboss.deployers.vfs.spi.deployer.JBossXBDeployerHelper]
(main) Parsed file:
FileHandler(a)21303468[path=ejb3.deployer/META-INF/jpa-deployers-jboss-beans.xml
context=file:/home/jboss/jboss-5.0.0.GA/server/default/deployers/
real=file:/home/jboss/jboss-5.0.0.GA/server/default/deployers/ejb3.deployer/META-INF/jpa-deployers-jboss-beans.xml]
to: AbstractKernelDeployment@17667bd{name=null installed=false
beanFactories=[AbstractBeanMetaData@94d313{name=DataSourceDependencyResolver
bean=org.jboss.as.jpa.resolvers.JBossASDataSourceDependencyResolver properties=
constructor=null autowireCandidate=true},
AbstractBeanMetaData@ad9f5d{name=JavaEEModuleInformer
bean=org.jboss.as.javaee.SimpleJavaEEModuleInformer properties= constructor=null
autowireCandidate=true},
AbstractBeanMetaData@b99e4c{name=PersistenceUnitDependencyResolver
bean=org.jboss.jpa.resolvers.DefaultPersistenceUnitDependencyResolver properties=
constructor=null autowireCandidate=true}, AbstractBeanMetaData@47c130{name=XPCResolver
bean=org.jboss.ejb3.stateful.EJB3XPCResolver properties= constructor=null
autowireCandidate=true}, AbstractBeanMetaData@dc5434{name=PersistenceParsingDeployer
bean=org.jboss.jpa.deployers.PersistenceParsingDeployer properties= constructor=null
autowireCandidate=true}, AbstractBeanMetaData@11c4123{name=PersistenceDeployer
bean=org.jboss.jpa.deployers.PersistenceDeployer properties= constructor=null
autowireCandidate=true}, AbstractBeanMetaData@1f873dd{name=PersistenceUnitDeployer
bean=org.jboss.jpa.deployers.PersistenceUnitDeployer
properties=[defaultPersistenceProperties] constructor=null autowireCandidate=true}]}
2009-02-14 08:45:10,619 DEBUG [org.jboss.deployers.vfs.spi.deployer.JBossXBDeployerHelper]
(main) Parsing file:
FileHandler(a)8316010[path=ejb3.deployer/META-INF/ejb3-deployers-jboss-beans.xml
context=file:/home/jboss/jboss-5.0.0.GA/server/default/deployers/
real=file:/home/jboss/jboss-5.0.0.GA/server/default/deployers/ejb3.deployer/META-INF/ejb3-deployers-jboss-beans.xml]
for type: interface org.jboss.kernel.spi.deployment.KernelDeployment
2009-02-14 08:45:10,620 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
Created parser: org.apache.xerces.jaxp.SAXParserImpl@c62c07, isNamespaceAware: true,
isValidating: true, isXIncludeAware: true
2009-02-14 08:45:10,620 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://xml.org/sax/features/validation set to: true
2009-02-14 08:45:10,620 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://xml.org/sax/features/namespaces set to: true
2009-02-14 08:45:10,620 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://apache.org/xml/features/xinclude/fixup-base-uris set to: false
2009-02-14 08:45:10,621 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://apache.org/xml/features/xinclude/fixup-language set to: false
2009-02-14 08:45:10,621 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://apache.org/xml/features/validation/dynamic set to: true
2009-02-14 08:45:10,621 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://apache.org/xml/features/validation/schema set to: true
2009-02-14 08:45:10,621 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://xml.org/sax/features/validation set to: true
2009-02-14 08:45:10,621 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
Created parser: org.apache.xerces.jaxp.SAXParserImpl@c62c07, isNamespaceAware: true,
isValidating: true, isXIncludeAware: true
2009-02-14 08:45:10,670 DEBUG [org.jboss.deployers.vfs.spi.deployer.JBossXBDeployerHelper]
(main) Parsed file:
FileHandler(a)8316010[path=ejb3.deployer/META-INF/ejb3-deployers-jboss-beans.xml
context=file:/home/jboss/jboss-5.0.0.GA/server/default/deployers/
real=file:/home/jboss/jboss-5.0.0.GA/server/default/deployers/ejb3.deployer/META-INF/ejb3-deployers-jboss-beans.xml]
to: AbstractKernelDeployment@f4d6b3{name=null installed=false
beanFactories=[AbstractBeanMetaData@3ba002{name=MessageDestinationReferenceResolver
bean=org.jboss.ejb3.resolvers.DefaultMessageDestinationReferenceResolver properties=
constructor=null autowireCandidate=true},
AbstractBeanMetaData@85f3d6{name=DefaultPersistenceProperties
bean=org.jboss.ejb3.DefaultPersistenceProperties properties= constructor=null
autowireCandidate=true}, AbstractBeanMetaData@4b7c69{name=Ejb3DependenciesDeployer
bean=org.jboss.ejb3.deployers.Ejb3DependenciesDeployer properties= constructor=null
autowireCandidate=true}, AbstractBeanMetaData@1d4f279{name=Ejb3Deployer
bean=org.jboss.ejb3.deployers.Ejb3Deployer properties=[ignoredJarsSet,
cacheFactoryRegistry, defaultPersistenceProperties, deploymentDescriptorRequired,
persistenceManagerFactoryRegistry, kernel, poolFactoryRegistry, scanWars,
remoteProxyFactoryRegistry, mbeanServer] constructor=null autowireCandidate=true
depends=[AspectLibrary] installs=[ManagedDeploymentCreator.addVersionedAttachmentType]
uninstalls=[ManagedDeploymentCreator.removeVersionedAttachmentType]},
AbstractBeanMetaData@17af435{name=AppClientParsingDeployer
bean=org.jboss.ejb3.deployers.AppClientParsingDeployer properties= constructor=null
autowireCandidate=true depends=[AspectLibrary]},
AbstractBeanMetaData@136e10e{name=JBossClientParsingDeployer
bean=org.jboss.ejb3.deployers.JBossClientParsingDeployer properties= constructor=null
autowireCandidate=true depends=[AppClientParsingDeployer]},
AbstractBeanMetaData@1f17a73{name=MergedJBossClientMetaDataDeployer
bean=org.jboss.ejb3.deployers.MergedJBossClientMetaDataDeployer properties=
constructor=null autowireCandidate=true depends=[AppClientParsingDeployer]},
AbstractBeanMetaData@9e4f7c{name=Ejb3ClientDeployer
bean=org.jboss.ejb3.deployers.Ejb3ClientDeployer properties=[mbeanServer, kernel]
constructor=null autowireCandidate=true depends=[AspectLibrary]
installs=[ManagedDeploymentCreator.addAttachmentType]
uninstalls=[ManagedDeploymentCreator.removeAttachmentType]},
AbstractBeanMetaData@17490ad{name=EJB3CacheFactoryRegistry
bean=org.jboss.ejb3.cache.CacheFactoryRegistry properties=[factories] constructor=null
autowireCandidate=true}, AbstractBeanMetaData@1c68b20{name=EJB3PoolFactoryRegistry
bean=org.jboss.ejb3.pool.PoolFactoryRegistry properties=[factories] constructor=null
autowireCandidate=true}, AbstractBeanMetaData@1d7e4d6{name=EJB3RemoteProxyFactoryRegistry
bean=org.jboss.ejb3.proxy.factory.RemoteProxyFactoryRegistry properties=[factories]
constructor=null autowireCandidate=true},
AbstractBeanMetaData@f0b51d{name=EJB3PersistenceManagerFactoryRegistry
bean=org.jboss.ejb3.cache.persistence.PersistenceManagerFactoryRegistry
properties=[factories] constructor=null autowireCandidate=true},
AbstractBeanMetaData@102a01f{name=JNDIKernelRegistryPlugin
bean=org.jboss.ejb3.kernel.JNDIKernelRegistryPlugin properties= constructor=null
autowireCandidate=true}, AbstractBeanMetaData@15e7597{name=PersistenceUnitParsingDeployer
bean=org.jboss.ejb3.deployers.PersistenceUnitParsingDeployer properties= constructor=null
autowireCandidate=true installs=[ManagedDeploymentCreator.addAttachmentType]
uninstalls=[ManagedDeploymentCreator.removeAttachmentType]},
AbstractBeanMetaData(a)7a3e72{name=org.jboss.ejb3.JndiRegistrar.Session.SLSBJndiRegistrar
bean=org.jboss.ejb3.proxy.jndiregistrar.JndiStatelessSessionRegistrar properties=
constructor=AbstractConstructorMetaData@199ae9c{parameters=[null]}
autowireCandidate=true},
AbstractBeanMetaData(a)96b1b8{name=org.jboss.ejb3.JndiRegistrar.Session.SFSBJndiRegistrar
bean=org.jboss.ejb3.proxy.jndiregistrar.JndiStatefulSessionRegistrar properties=
constructor=AbstractConstructorMetaData@16de4e1{parameters=[null]}
autowireCandidate=true},
AbstractBeanMetaData(a)1cda7e7{name=org.jboss.ejb3.JndiRegistrar.Session.ServiceJndiRegistrar
bean=org.jboss.ejb3.proxy.jndiregistrar.JndiServiceRegistrar properties=
constructor=AbstractConstructorMetaData@ca548b{parameters=[null]} autowireCandidate=true},
AbstractBeanMetaData(a)174a144{name=org.jboss.ejb3.ProxyClusteringRegistry
bean=org.jboss.ejb3.proxy.clustered.registry.ProxyClusteringRegistry properties=
constructor=null autowireCandidate=true},
AbstractBeanMetaData(a)7ac6c{name=org.jboss.ejb3.JndiRegistrar.Session.ClusteredSLSBJndiRegistrar
bean=org.jboss.ejb3.proxy.clustered.jndiregistrar.JndiClusteredStatelessSessionRegistrar
properties= constructor=AbstractConstructorMetaData@1c8f3cd{parameters=[null, null]}
autowireCandidate=true},
AbstractBeanMetaData(a)1fe500a{name=org.jboss.ejb3.JndiRegistrar.Session.ClusteredSFSBJndiRegistrar
bean=org.jboss.ejb3.proxy.clustered.jndiregistrar.JndiClusteredStatefulSessionRegistrar
properties= constructor=AbstractConstructorMetaData@138d2fc{parameters=[null, null]}
autowireCandidate=true}, AbstractBeanMetaData@1a3a52c{name=Ejb3MetadataProcessingDeployer
bean=org.jboss.ejb3.deployers.Ejb3MetadataProcessingDeployer properties= constructor=null
autowireCandidate=true},
AbstractBeanMetaData@b0f2b2{name=EjbMetadataJndiPolicyDecoratorDeployer
bean=org.jboss.ejb3.deployers.EjbMetadataJndiPolicyDecoratorDeployer properties=
constructor=null autowireCandidate=true}]}
2009-02-14 08:45:10,674 DEBUG [org.jboss.deployers.vfs.spi.deployer.JBossXBDeployerHelper]
(main) Parsing file:
FileHandler(a)16030403[path=jboss-aop-jboss5.deployer/META-INF/jboss-aspect-library-jboss-beans.xml
context=file:/home/jboss/jboss-5.0.0.GA/server/default/deployers/
real=file:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jboss-aop-jboss5.deployer/META-INF/jboss-aspect-library-jboss-beans.xml]
for type: interface org.jboss.kernel.spi.deployment.KernelDeployment
2009-02-14 08:45:10,675 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
Created parser: org.apache.xerces.jaxp.SAXParserImpl@dc904a, isNamespaceAware: true,
isValidating: true, isXIncludeAware: true
2009-02-14 08:45:10,676 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://xml.org/sax/features/validation set to: true
2009-02-14 08:45:10,676 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://xml.org/sax/features/namespaces set to: true
2009-02-14 08:45:10,676 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://apache.org/xml/features/xinclude/fixup-base-uris set to: false
2009-02-14 08:45:10,676 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://apache.org/xml/features/xinclude/fixup-language set to: false
2009-02-14 08:45:10,676 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://apache.org/xml/features/validation/dynamic set to: true
2009-02-14 08:45:10,676 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://apache.org/xml/features/validation/schema set to: true
2009-02-14 08:45:10,676 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://xml.org/sax/features/validation set to: true
2009-02-14 08:45:10,676 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
Created parser: org.apache.xerces.jaxp.SAXParserImpl@dc904a, isNamespaceAware: true,
isValidating: true, isXIncludeAware: true
2009-02-14 08:45:10,680 DEBUG [org.jboss.deployers.vfs.spi.deployer.JBossXBDeployerHelper]
(main) Parsed file:
FileHandler(a)16030403[path=jboss-aop-jboss5.deployer/META-INF/jboss-aspect-library-jboss-beans.xml
context=file:/home/jboss/jboss-5.0.0.GA/server/default/deployers/
real=file:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jboss-aop-jboss5.deployer/META-INF/jboss-aspect-library-jboss-beans.xml]
to: AbstractKernelDeployment@71c5bc{name=null installed=false
beanFactories=[AbstractBeanMetaData@16cdbb8{name=AspectLibrary
bean=org.jboss.aspects.library.JBossAspectLibrary properties=[aspectManager]
constructor=null autowireCandidate=true}]}
2009-02-14 08:45:10,683 DEBUG [org.jboss.deployers.vfs.spi.deployer.JBossXBDeployerHelper]
(main) Parsing file:
FileHandler(a)30223234[path=jboss-jca.deployer/META-INF/jca-deployers-jboss-beans.xml
context=file:/home/jboss/jboss-5.0.0.GA/server/default/deployers/
real=file:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jboss-jca.deployer/META-INF/jca-deployers-jboss-beans.xml]
for type: interface org.jboss.kernel.spi.deployment.KernelDeployment
2009-02-14 08:45:10,685 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
Created parser: org.apache.xerces.jaxp.SAXParserImpl@e3990b, isNamespaceAware: true,
isValidating: true, isXIncludeAware: true
2009-02-14 08:45:10,685 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://xml.org/sax/features/validation set to: true
2009-02-14 08:45:10,685 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://xml.org/sax/features/namespaces set to: true
2009-02-14 08:45:10,685 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://apache.org/xml/features/xinclude/fixup-base-uris set to: false
2009-02-14 08:45:10,685 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://apache.org/xml/features/xinclude/fixup-language set to: false
2009-02-14 08:45:10,685 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://apache.org/xml/features/validation/dynamic set to: true
2009-02-14 08:45:10,685 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://apache.org/xml/features/validation/schema set to: true
2009-02-14 08:45:10,685 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
http://xml.org/sax/features/validation set to: true
2009-02-14 08:45:10,686 DEBUG [org.jboss.xb.binding.parser.sax.SaxJBossXBParser] (main)
Created parser: org.apache.xerces.jaxp.SAXParserImpl@e3990b, isNamespaceAware: true,
isValidating: true, isXIncludeAware: true
2009-02-14 08:45:10,713 DEBUG [org.jboss.deployers.vfs.spi.deployer.JBossXBDeployerHelper]
(main) Parsed file:
FileHandler(a)30223234[path=jboss-jca.deployer/META-INF/jca-deployers-jboss-beans.xml
context=file:/home/jboss/jboss-5.0.0.GA/server/default/deployers/
real=file:/home/jboss/jboss-5.0.0.GA/server/default/deployers/jboss-jca.deployer/META-INF/jca-deployers-jboss-beans.xml]
to: AbstractKernelDeployment@16e1ccd{name=null installed=false
beanFactories=[AbstractBeanMetaData@250cce{name=JCAMetaDataRepository
bean=org.jboss.resource.metadata.repository.DefaultJCAMetaDataRepository properties=
constructor=null autowireCandidate=true},
AbstractBeanMetaData@6bc73b{name=RARParserDeployer
bean=org.jboss.resource.deployers.RARParserDeployer properties=[metaDataRepository]
constructor=null autowireCandidate=true}, AbstractBeanMetaData@1e5052b{name=RARDeployer
bean=org.jboss.resource.deployers.RARDeployer properties=[workManagerName,
XATerminatorName] constructor=null autowireCandidate=true},
AbstractBeanMetaData@b65a68{name=MCFClassLoaderDeployer
bean=org.jboss.resource.deployers.ManagedConnectionFactoryClassLoaderDeployer properties=
constructor=null autowireCandidate=true}, AbstractBeanMetaData@1e99db4{name=MCFBuilder
bean=org.jboss.resource.deployers.builder.ManagedConnectionFactoryBuilder
properties=[metaDataRepository] constructor=null autowireCandidate=true},
AbstractBeanMetaData@70cdd2{name=PoolBuilder
bean=org.jboss.resource.deployers.builder.ManagedConnectionPoolBuilder properties=
constructor=null autowireCandidate=true},
AbstractBeanMetaData@1d8c046{name=ConnectionManagerBuilder
bean=org.jboss.resource.deployers.builder.ConnectionManagerBuilder properties=
constructor=null autowireCandidate=true},
AbstractBeanMetaData@1376afa{name=ConnectionFactoryBindingBuilder
bean=org.jboss.resource.deployers.builder.ConnectionFactoryBindingBuilder properties=
constructor=null autowireCandidate=true},
AbstractBeanMetaData@15075f9{name=MetaDataTypeMappingBuilder
bean=org.jboss.resource.deployers.builder.MetaDataTypeMappingBuilder properties=
constructor=null autowireCandidate=true},
AbstractBeanMetaData@1715510{name=LocalDSInstanceClassFactory
bean=org.jboss.resource.deployers.management.LocalDSInstanceClassFactory properties=
constructor=AbstractConstructorMetaData@187955b{parameters=[null]}
autowireCandidate=true}, AbstractBeanMetaData@5eb748{name=XADSInstanceClassFactory
bean=org.jboss.resource.deployers.management.XADSInstanceClassFactory properties=
constructor=AbstractConstructorMetaData@53033e{parameters=[null]} autowireCandidate=true},
AbstractBeanMetaData@1f9e6e5{name=NoTxInstanceClassFactory
bean=org.jboss.resource.deployers.management.NoTxInstanceClassFactory properties=
constructor=AbstractConstructorMetaData@1a5d6d6{parameters=[null]}
autowireCandidate=true}, AbstractBeanMetaData@bbb2d0{name=TxInstanceClassFactory
bean=org.jboss.resource.deployers.management.TxInstanceClassFactory properties=
constructor=AbstractConstructorMetaData@d8a125{parameters=[null]} autowireCandidate=true},
AbstractBeanMetaData@3bbcfd{name=NoTxCFInstanceClassFactory
bean=org.jboss.resource.deployers.management.NoTxCFInstanceClassFactory properties=
constructor=AbstractConstructorMetaData@1f4af32{parameters=[null]}
autowireCandidate=true},
AbstractBeanMetaData@119fc9e{name=ManagedConnectionFactoryParserDeployer
bean=org.jboss.resource.deployers.ManagedConnectionFactoryParserDeployer
properties=[repository, suffix] constructor=null autowireCandidate=true
installs=[ManagedDeploymentCreator.addAttachmentType]
uninstalls=[ManagedDeploymentCreator.removeAttachmentType]},
AbstractBeanMetaData@1181df3{name=ManagedConnectionFactoryDeployer
bean=org.jboss.resource.deployers.ManagedConnectionFactoryDeployer properties=[repository,
builders] constructor=null autowireCandidate=true},
AbstractBeanMetaData@566b3e{name=DSDeploymentTemplateInfoFactory
bean=org.jboss.managed.plugins.factory.DeploymentTemplateInfoFactory properties=
constructor=null autowireCandidate=true},
AbstractBeanMetaData@19ab9c5{name=LocalTxDataSourceTemplate
bean=org.jboss.resource.deployers.management.DsDataSourceTemplate properties=[info]
constructor=null autowireCandidate=true},
AbstractBeanMetaData@11a74ef{name=LocalTxDataSourceTemplateInfo
bean=org.jboss.resource.deployers.management.DsDataSourceTemplateInfo
properties=[connectionFactoryType]
constructor=AbstractConstructorMetaData(a)1f31432{parameters=[java.lang.Class,
java.lang.Class, java.lang.String, java.lang.String]
factory=AbstractDependencyValueMetaData@1b31c23{value=DSDeploymentTemplateInfoFactory}
factoryMethod=createTemplateInfo} autowireCandidate=true},
AbstractBeanMetaData@1fc7b3a{name=XADataSourceTemplate
bean=org.jboss.resource.deployers.management.DsDataSourceTemplate properties=[info]
constructor=null autowireCandidate=true},
AbstractBeanMetaData@fe2509{name=XADataSourceTemplateInfo
bean=org.jboss.resource.deployers.management.DsDataSourceTemplateInfo
properties=[connectionFactoryType]
constructor=AbstractConstructorMetaData(a)131767b{parameters=[java.lang.Class,
java.lang.Class, java.lang.String, java.lang.String]
factory=AbstractDependencyValueMetaData@59b924{value=DSDeploymentTemplateInfoFactory}
factoryMethod=createTemplateInfo} autowireCandidate=true},
AbstractBeanMetaData@89f3e5{name=NoTxDataSourceTemplate
bean=org.jboss.resource.deployers.management.DsDataSourceTemplate properties=[info]
constructor=null autowireCandidate=true},
AbstractBeanMetaData@eb607d{name=NoTxDataSourceTemplateInfo
bean=org.jboss.resource.deployers.management.DsDataSourceTemplateInfo
properties=[connectionFactoryType]
constructor=AbstractConstructorMetaData(a)10bbf6d{parameters=[java.lang.Class,
java.lang.Class, java.lang.String, java.lang.String]
factory=AbstractDependencyValueMetaData@44ac6a{value=DSDeploymentTemplateInfoFactory}
factoryMethod=createTemplateInfo} autowireCandidate=true},
AbstractBeanMetaData@938b4a{name=TxConnectionFactoryTemplate
bean=org.jboss.resource.deployers.management.DsDataSourceTemplate properties=[info]
constructor=null autowireCandidate=true},
AbstractBeanMetaData@9de832{name=TxConnectionFactoryTemplateInfo
bean=org.jboss.resource.deployers.management.DsDataSourceTemplateInfo
properties=[connectionFactoryType]
constructor=AbstractConstructorMetaData(a)f72f09{parameters=[java.lang.Class,
java.lang.Class, java.lang.String, java.lang.String]
factory=AbstractDependencyValueMetaData@311410{value=DSDeploymentTemplateInfoFactory}
factoryMethod=createTemplateInfo} autowireCandidate=true},
AbstractBeanMetaData@1c35ec{name=NoTxConnectionFactoryTemplate
bean=org.jboss.resource.deployers.management.DsDataSourceTemplate properties=[info]
constructor=null autowireCandidate=true},
AbstractBeanMetaData@182d86{name=NoTxConnectionFactoryTemplateInfo
bean=org.jboss.resource.deployers.management.DsDataSourceTemplateInfo
properties=[connectionFactoryType]
constructor=AbstractConstructorMetaData(a)154e38b{parameters=[java.lang.Class,
java.lang.Class, java.lang.String, java.lang.String]
factory=AbstractDependencyValueMetaData@26fbfc{value=DSDeploymentTemplateInfoFactory}
factoryMethod=createTemplateInfo} autowireCandidate=true}]}
2009-02-14 08:45:10,716 DEBUG [org.jboss.deployers.vfs.spi.deployer.JBossXBDeployerHelper]
(main) Parsing file:
FileHandler(a)23686363[path=jbossweb.deployer/META-INF/war-deployers-jboss-beans.xml
context=file:/home/jboss/j
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4210129#...
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&a...