[RESOLVIDO] JBoss Seam Framework - New Seam Web Project

Olá,

Instalei as ferramentas do JBoss Tools no Eclipse Indigo e estou tentando criar um novo projeto utilizando o Seam Framework.
O problema que não consegui criar nada por enquanto porque está apresentando erro.

O projeto está sendo criado utilizando Seam 2.2 (2.2.2-Final para ser mais específico) e JBoss Server 6.x…

Ao criar o projeto estou precisando tirar uma linha do faces-config.xml porque ele diz não encontrar. A linha é a seguinte:

<view-handler>com.sun.facelets.FaceletViewHandler</view-handler>

Então eu também acerto o web.xml, deixando o welcome-file apenas para “index.html”.

Quando mando rodar a aplicação no servidor ele inicia sem nenhum erro, mas apresenta um erro: This webpage has a redirect loop.

Estou desde ontem procurando uma solução, já vi posts no Websphere e algumas outras soluções que não se encaixaram com minha situação.

Se alguém puder me ajudar, agradeço. O Seam Framework parece ser uma ótima ferramenta, mas não estou conseguindo iniciar e dizer se vai me ajudar ou não…

[quote=gmantovani2005]Olá,

Instalei as ferramentas do JBoss Tools no Eclipse Indigo e estou tentando criar um novo projeto utilizando o Seam Framework.
O problema que não consegui criar nada por enquanto porque está apresentando erro.

O projeto está sendo criado utilizando Seam 2.2 (2.2.2-Final para ser mais específico) e JBoss Server 6.x…

Ao criar o projeto estou precisando tirar uma linha do faces-config.xml porque ele diz não encontrar. A linha é a seguinte:

<view-handler>com.sun.facelets.FaceletViewHandler</view-handler>

[/quote]

Bom vamos por partes hehe, primeiramente essa linha ai serve pra indicar que voce vai usar Facelets no seu projeto, o que é requerido pelo Seam. Verifique se o jar do facelets está nas dependencias do projeto que está sendo gerado; senão, você vai ter que incluir esse jar (mais algumas configurações do Facelets no web.xml)

Olá alias,

Quando descomento a linha referente ao facelet ele diz:

Mas isto é apenas um aviso, não dá erro…

Acredito que o problema esteja mesmo após subir o servidor com o projeto “deployed” e ao tentar acessar dizer que está entrando em loop na chamada, ou melhor, tendo muitas “redirects”.
Não estou sabendo nem por onde começar a ver sobre isto…

[quote=gmantovani2005]Olá alias,

Quando descomento a linha referente ao facelet ele diz:

Mas isto é apenas um aviso, não dá erro…

Acredito que o problema esteja mesmo após subir o servidor com o projeto “deployed” e ao tentar acessar dizer que está entrando em loop na chamada, ou melhor, tendo muitas “redirects”.
Não estou sabendo nem por onde começar a ver sobre isto…[/quote]

E o seu web.xml? Suponho que esteja configurado certinho, já que o projeto foi gerado automatico aí e tal…Provavelmente a sua tela está gerando algum erro pra ser exibida e o Seam tá se destrambelhando pra mostrar o erro…

Essa aqui é a config basica de um projetinho no Seam

faces-config.xml

<application>
    	<view-handler>com.sun.facelets.FaceletViewHandler</view-handler>
       <!-- meio bizarro esse seu warning, vou dar uma pesquisada aqui. Essa linha ai precisa existir -->
</application>

web.xml

<servlet>
        <servlet-name>Faces Servlet</servlet-name>
        <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
</servlet>
  	
<servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>*.jsf</url-pattern>
</servlet-mapping>
  	
<context-param>
    	<param-name>javax.faces.DEFAULT_SUFFIX</param-name>
    	<param-value>.xhtml</param-value>
</context-param>

<filter>
    	<filter-name>Seam Filter</filter-name>
    	<filter-class>org.jboss.seam.servlet.SeamFilter</filter-class>
</filter>
<filter-mapping>
    	<filter-name>Seam Filter</filter-name>
    	<url-pattern>/*</url-pattern>
</filter-mapping>

<listener>
        <listener-class>org.jboss.seam.servlet.SeamListener</listener-class>
</listener>

Bata aí com os seus arquivos. Vou dar uma pesquisada no seu xabu por aqui.

Falou.

Então, estava no IRC conversando com um cara da Red Hat que pediu para eu trocar o servidor JBoss para versão 6.0.0-Final.
Fiz isto, gerei um novo projeto para garantir e mesmo assim apresenta o mesmo erro. Já tentei comentar algumas linhas das configurações, nada. Comecei novamente do zero.
Eu até entendo se eu tivesse configurando tudo manual de não estar funcionando alguma coisa, ou ainda se eu tivesse alterado a configuração.

Abaixo meu arquivo faces-config.xml e web.xml.

FACES-CONFIG.XML

<?xml version="1.0" encoding="UTF-8"?>

<faces-config
    xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd"
    version="1.2">
	<application>
		<view-handler>com.sun.facelets.FaceletViewHandler</view-handler>
		<locale-config>
			<default-locale>en</default-locale>
			<supported-locale>bg</supported-locale>
			<supported-locale>de</supported-locale>
			<supported-locale>en</supported-locale>
			<supported-locale>fr</supported-locale>
			<supported-locale>tr</supported-locale>
		</locale-config>
	</application>

</faces-config>

WEB.XML

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
  <display-name>firstseam</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <!--
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
    -->
  </welcome-file-list>
  <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
  </servlet>
  <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.seam</url-pattern>
  </servlet-mapping>
  <context-param>
    <description>State saving method: 'client' or 'server' (=default). See JSF Specification 2.5.2</description>
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
    <param-value>client</param-value>
  </context-param>
  <context-param>
    <param-name>javax.servlet.jsp.jstl.fmt.localizationContext</param-name>
    <param-value>resources.application</param-value>
  </context-param>
  <listener>
    <listener-class>com.sun.faces.config.ConfigureListener</listener-class>
  </listener>
  <context-param>
    <param-name>org.jboss.jbossfaces.JSF_CONFIG_NAME</param-name>
    <param-value>Mojarra-1.2</param-value>
  </context-param>
  <context-param>
    <param-name>org.richfaces.SKIN</param-name>
    <param-value>blueSky</param-value>
  </context-param>
  <listener>
    <listener-class>org.jboss.seam.servlet.SeamListener</listener-class>
  </listener>
  <filter>
    <filter-name>Seam Filter</filter-name>
    <filter-class>org.jboss.seam.servlet.SeamFilter</filter-class>
  </filter>
  <filter-mapping>
    <filter-name>Seam Filter</filter-name>
    <url-pattern>/*</url-pattern>
  </filter-mapping>
  <servlet>
    <servlet-name>Seam Resource Servlet</servlet-name>
    <servlet-class>org.jboss.seam.servlet.SeamResourceServlet</servlet-class>
  </servlet>
  <servlet-mapping>
    <servlet-name>Seam Resource Servlet</servlet-name>
    <url-pattern>/seam/resource/*</url-pattern>
  </servlet-mapping>
  <context-param>
    <param-name>facelets.DEVELOPMENT</param-name>
    <param-value>true</param-value>
  </context-param>
  <context-param>
    <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
    <param-value>.xhtml</param-value>
  </context-param>
  <security-constraint>
    <display-name>Restrict raw XHTML Documents</display-name>
    <web-resource-collection>
      <web-resource-name>XHTML</web-resource-name>
      <url-pattern>*.xhtml</url-pattern>
    </web-resource-collection>
    <auth-constraint/>
  </security-constraint>
</web-app>

não tá saindo nenhuma stack de erro? dei uma pesquisada e em todos os casos que encontrei algum problema ocorria no bean, e depois o seam fazia merda na hora de exibir o erro.

Olha, dei uma olhada no console quando mando rodar a aplicação no servidor.
Não consigo identificar nada. No log do servidor menos ainda…
Segue console:

13:53:32,596 INFO  [AbstractJBossASServerBase] Server Configuration:

	JBOSS_HOME URL: file:/usr/local/jboss-6.0.0.Final/
	Bootstrap: $JBOSS_HOME/server/default/conf/bootstrap.xml
	Common Base: $JBOSS_HOME/common/
	Common Library: $JBOSS_HOME/common/lib/
	Server Name: default
	Server Base: $JBOSS_HOME/server/
	Server Library: $JBOSS_HOME/server/default/lib/
	Server Config: $JBOSS_HOME/server/default/conf/
	Server Home: $JBOSS_HOME/server/default/
	Server Data: $JBOSS_HOME/server/default/data/
	Server Log: $JBOSS_HOME/server/default/log/
	Server Temp: $JBOSS_HOME/server/default/tmp/

13:53:32,598 INFO  [AbstractServer] Starting: JBossAS [6.0.0.Final "Neo"]
13:53:34,252 INFO  [ServerInfo] Java version: 1.6.0_26,Sun Microsystems Inc.
13:53:34,252 INFO  [ServerInfo] Java Runtime: Java(TM) SE Runtime Environment (build 1.6.0_26-b03)
13:53:34,253 INFO  [ServerInfo] Java VM: Java HotSpot(TM) Server VM 20.1-b02,Sun Microsystems Inc.
13:53:34,253 INFO  [ServerInfo] OS-System: Linux 2.6.38-13-generic-pae,i386
13:53:34,253 INFO  [ServerInfo] VM arguments: -Dprogram.name=JBossTools: JBoss 6.0.0-Final Runtime -Xms256m -Xmx768m -XX:MaxPermSize=256m -Djava.net.preferIPv4Stack=true -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000 -Djava.endorsed.dirs=/usr/local/jboss-6.0.0.Final/lib/endorsed -Djava.library.path=/usr/local/jboss-6.0.0.Final/bin/native -Dfile.encoding=UTF-8 
13:53:34,301 INFO  [JMXKernel] Legacy JMX core initialized
13:53:38,714 INFO  [AbstractServerConfig] JBoss Web Services - Stack CXF Server 3.4.1.GA
13:53:39,222 INFO  [JSFImplManagementDeployer] Initialized 3 JSF configurations: [Mojarra-1.2, MyFaces-2.0, Mojarra-2.0]
13:53:43,343 WARNING [FileConfigurationParser] AIO wasn't located on this platform, it will fall back to using pure Java NIO. If your platform is Linux, install LibAIO to enable the AIO journal
13:54:01,646 INFO  [PersistenceUnitValueMetaData] iDependOn persistence.unit:unitName=jboss-ejb3-timerservice-mk2.jar#timerdb
13:54:01,794 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@21054214{vfs:///usr/local/jboss-6.0.0.Final/server/default/deploy/firstseam.war}
13:54:01,795 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@21054214{vfs:///usr/local/jboss-6.0.0.Final/server/default/deploy/firstseam.war}
13:54:02,879 WARNING [FileConfigurationParser] AIO wasn't located on this platform, it will fall back to using pure Java NIO. If your platform is Linux, install LibAIO to enable the AIO journal
13:54:03,045 INFO  [JMXConnector] starting JMXConnector on host localhost:1090
13:54:03,165 INFO  [MailService] Mail Service bound to java:/Mail
13:54:04,017 INFO  [HornetQServerImpl] live server is starting..
13:54:04,088 INFO  [JournalStorageManager] Using NIO Journal
13:54:04,109 WARNING [HornetQServerImpl] Security risk! It has been detected that the cluster admin user and password have not been changed from the installation default. Please see the HornetQ user guide, cluster chapter, for instructions on how to do this.
13:54:04,727 INFO  [NettyAcceptor] Started Netty Acceptor version 3.2.1.Final-r2319 localhost:5455 for CORE protocol
13:54:04,728 INFO  [NettyAcceptor] Started Netty Acceptor version 3.2.1.Final-r2319 localhost:5445 for CORE protocol
13:54:04,732 INFO  [HornetQServerImpl] HornetQ Server version 2.1.2.Final (Colmeia, 120) started
13:54:04,777 INFO  [WebService] Using RMI server codebase: http://localhost:8083/
13:54:04,968 INFO  [jbossatx] ARJUNA-32010 JBossTS Recovery Service (tag: JBOSSTS_4_14_0_Final) - JBoss Inc.
13:54:04,974 INFO  [arjuna] ARJUNA-12324 Start RecoveryActivators
13:54:04,994 INFO  [arjuna] ARJUNA-12296 ExpiredEntryMonitor running at Tue, 27 Mar 2012 13:54:04
13:54:05,052 INFO  [arjuna] ARJUNA-12310 Recovery manager listening on endpoint 127.0.0.1:4712
13:54:05,052 INFO  [arjuna] ARJUNA-12344 RecoveryManagerImple is ready on port 4712
13:54:05,052 INFO  [jbossatx] ARJUNA-32013 Starting transaction recovery manager
13:54:05,068 INFO  [arjuna] ARJUNA-12163 Starting service com.arjuna.ats.arjuna.recovery.ActionStatusService on port 4713
13:54:05,069 INFO  [arjuna] ARJUNA-12337 TransactionStatusManagerItem host: 127.0.0.1 port: 4713
13:54:05,166 INFO  [arjuna] ARJUNA-12170 TransactionStatusManager started on port 4713 and host 127.0.0.1 with service com.arjuna.ats.arjuna.recovery.ActionStatusService
13:54:05,218 INFO  [jbossatx] ARJUNA-32017 JBossTS Transaction Service (JTA version - tag: JBOSSTS_4_14_0_Final) - JBoss Inc.
13:54:05,258 INFO  [arjuna] ARJUNA-12202 registering bean jboss.jta:type=ObjectStore.
13:54:05,439 INFO  [AprLifecycleListener] The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: /usr/local/jboss-6.0.0.Final/bin/native
13:54:06,417 INFO  [ModClusterService] Initializing mod_cluster 1.1.0.Final
13:54:06,429 INFO  [TomcatDeployment] deploy, ctxPath=/invoker
13:54:06,738 INFO  [RARDeployment] Required license terms exist, view vfs:/usr/local/jboss-6.0.0.Final/server/default/deploy/jboss-local-jdbc.rar/META-INF/ra.xml
13:54:06,750 INFO  [RARDeployment] Required license terms exist, view vfs:/usr/local/jboss-6.0.0.Final/server/default/deploy/jboss-xa-jdbc.rar/META-INF/ra.xml
13:54:06,757 INFO  [RARDeployment] Required license terms exist, view vfs:/usr/local/jboss-6.0.0.Final/server/default/deploy/jms-ra.rar/META-INF/ra.xml
13:54:06,772 INFO  [HornetQResourceAdapter] HornetQ resource adaptor started
13:54:06,778 INFO  [RARDeployment] Required license terms exist, view vfs:/usr/local/jboss-6.0.0.Final/server/default/deploy/mail-ra.rar/META-INF/ra.xml
13:54:06,791 INFO  [RARDeployment] Required license terms exist, view vfs:/usr/local/jboss-6.0.0.Final/server/default/deploy/quartz-ra.rar/META-INF/ra.xml
13:54:06,863 INFO  [SimpleThreadPool] Job execution threads will use class loader of thread: Thread-2
13:54:06,888 INFO  [SchedulerSignalerImpl] Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
13:54:06,888 INFO  [QuartzScheduler] Quartz Scheduler v.1.8.3 created.
13:54:06,890 INFO  [RAMJobStore] RAMJobStore initialized.
13:54:06,892 INFO  [QuartzScheduler] Scheduler meta-data: Quartz Scheduler (v1.8.3) 'JBossQuartzScheduler' with instanceId 'NON_CLUSTERED'
  Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  NOT STARTED.
  Currently in standby mode.
  Number of jobs executed: 0
  Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.

13:54:06,892 INFO  [StdSchedulerFactory] Quartz scheduler 'JBossQuartzScheduler' initialized from an externally opened InputStream.
13:54:06,892 INFO  [StdSchedulerFactory] Quartz scheduler version: 1.8.3
13:54:06,893 INFO  [QuartzScheduler] Scheduler JBossQuartzScheduler_$_NON_CLUSTERED started.
13:54:06,999 INFO  [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=firstseamDatasource' to JNDI name 'java:firstseamDatasource'
13:54:07,279 INFO  [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=DefaultDS' to JNDI name 'java:DefaultDS'
13:54:07,280 INFO  [PersistenceUnitDeployment] Starting persistence unit persistence.unit:unitName=jboss-ejb3-timerservice-mk2.jar#timerdb
13:54:07,479 INFO  [Version] Hibernate Commons Annotations 3.2.0.Final
13:54:07,488 INFO  [Environment] Hibernate 3.6.0.Final
13:54:07,490 INFO  [Environment] hibernate.properties not found
13:54:07,494 INFO  [Environment] Bytecode provider name : javassist
13:54:07,500 INFO  [Environment] using JDK 1.4 java.sql.Timestamp handling
13:54:07,606 INFO  [Version] Hibernate EntityManager 3.6.0.Final
13:54:07,635 INFO  [Ejb3Configuration] Processing PersistenceUnitInfo [
	name: timerdb
	...]
13:54:07,653 WARN  [Ejb3Configuration] Persistence provider caller does not implement the EJB3 spec correctly.PersistenceUnitInfo.getNewTempClassLoader() is null.
13:54:07,721 INFO  [AnnotationBinder] Binding entity from annotated class: org.jboss.ejb3.timerservice.mk2.persistence.TimerEntity
13:54:07,790 INFO  [EntityBinder] Bind entity org.jboss.ejb3.timerservice.mk2.persistence.TimerEntity on table timer
13:54:07,866 INFO  [AnnotationBinder] Binding entity from annotated class: org.jboss.ejb3.timerservice.mk2.persistence.CalendarTimerEntity
13:54:07,869 INFO  [EntityBinder] Bind entity org.jboss.ejb3.timerservice.mk2.persistence.CalendarTimerEntity on table calendar_timer
13:54:07,898 INFO  [AnnotationBinder] Binding entity from annotated class: org.jboss.ejb3.timerservice.mk2.persistence.TimeoutMethod
13:54:07,907 INFO  [EntityBinder] Bind entity org.jboss.ejb3.timerservice.mk2.persistence.TimeoutMethod on table timeout_method
13:54:07,983 INFO  [Version] Hibernate Validator 3.1.0.GA
13:54:08,022 INFO  [Version] Hibernate Validator 4.1.0.Final
13:54:08,036 INFO  [DefaultTraversableResolver] Instantiated an instance of org.hibernate.validator.engine.resolver.JPATraversableResolver.
13:54:08,163 INFO  [DefaultTraversableResolver] Instantiated an instance of org.hibernate.validator.engine.resolver.JPATraversableResolver.
13:54:08,167 INFO  [DefaultTraversableResolver] Instantiated an instance of org.hibernate.validator.engine.resolver.JPATraversableResolver.
13:54:08,174 INFO  [HibernateSearchEventListenerRegister] Unable to find org.hibernate.search.event.FullTextIndexEventListener on the classpath. Hibernate Search is not enabled.
13:54:08,184 INFO  [ConnectionProviderFactory] Initializing connection provider: org.hibernate.ejb.connection.InjectedDataSourceConnectionProvider
13:54:08,187 INFO  [InjectedDataSourceConnectionProvider] Using provided datasource
13:54:08,287 INFO  [SettingsFactory] Database ->
       name : HSQL Database Engine
    version : 1.8.0
      major : 1
      minor : 8
13:54:08,288 INFO  [SettingsFactory] Driver ->
       name : HSQL Database Engine Driver
    version : 1.8.0
      major : 1
      minor : 8
13:54:08,344 INFO  [Dialect] Using dialect: org.hibernate.dialect.HSQLDialect
13:54:08,367 INFO  [JdbcSupportLoader] Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
13:54:08,370 INFO  [TransactionFactoryFactory] Transaction strategy: org.hibernate.ejb.transaction.JoinableCMTTransactionFactory
13:54:08,372 INFO  [TransactionManagerLookupFactory] instantiating TransactionManagerLookup: org.hibernate.transaction.JBossTransactionManagerLookup
13:54:08,375 INFO  [TransactionManagerLookupFactory] instantiated TransactionManagerLookup
13:54:08,375 INFO  [SettingsFactory] Automatic flush during beforeCompletion(): disabled
13:54:08,375 INFO  [SettingsFactory] Automatic session close at end of transaction: disabled
13:54:08,375 INFO  [SettingsFactory] JDBC batch size: 15
13:54:08,375 INFO  [SettingsFactory] JDBC batch updates for versioned data: disabled
13:54:08,375 INFO  [SettingsFactory] Scrollable result sets: enabled
13:54:08,375 INFO  [SettingsFactory] JDBC3 getGeneratedKeys(): disabled
13:54:08,376 INFO  [SettingsFactory] Connection release mode: auto
13:54:08,377 INFO  [SettingsFactory] Default batch fetch size: 1
13:54:08,377 INFO  [SettingsFactory] Generate SQL with comments: disabled
13:54:08,377 INFO  [SettingsFactory] Order SQL updates by primary key: disabled
13:54:08,377 INFO  [SettingsFactory] Order SQL inserts for batching: disabled
13:54:08,377 INFO  [SettingsFactory] Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
13:54:08,381 INFO  [ASTQueryTranslatorFactory] Using ASTQueryTranslatorFactory
13:54:08,381 INFO  [SettingsFactory] Query language substitutions: {}
13:54:08,381 INFO  [SettingsFactory] JPA-QL strict compliance: enabled
13:54:08,381 INFO  [SettingsFactory] Second-level cache: enabled
13:54:08,381 INFO  [SettingsFactory] Query cache: disabled
13:54:08,383 INFO  [SettingsFactory] Cache region factory : org.hibernate.cache.impl.bridge.RegionFactoryCacheProviderBridge
13:54:08,392 INFO  [RegionFactoryCacheProviderBridge] Cache provider: org.hibernate.cache.HashtableCacheProvider
13:54:08,394 INFO  [SettingsFactory] Optimize cache for minimal puts: disabled
13:54:08,394 INFO  [SettingsFactory] Cache region prefix: persistence.unit:unitName=jboss-ejb3-timerservice-mk2.jar#timerdb
13:54:08,394 INFO  [SettingsFactory] Structured second-level cache entries: disabled
13:54:08,403 INFO  [SettingsFactory] Statistics: disabled
13:54:08,403 INFO  [SettingsFactory] Deleted entity synthetic identifier rollback: disabled
13:54:08,404 INFO  [SettingsFactory] Default entity-mode: pojo
13:54:08,404 INFO  [SettingsFactory] Named query checking : enabled
13:54:08,404 INFO  [SettingsFactory] Check Nullability in Core (should be disabled when Bean Validation is on): disabled
13:54:08,432 INFO  [SessionFactoryImpl] building session factory
13:54:08,682 INFO  [SessionFactoryObjectFactory] Factory name: persistence.unit:unitName=jboss-ejb3-timerservice-mk2.jar#timerdb
13:54:08,684 INFO  [NamingHelper] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
13:54:08,687 INFO  [SessionFactoryObjectFactory] Bound factory to JNDI name: persistence.unit:unitName=jboss-ejb3-timerservice-mk2.jar#timerdb
13:54:08,687 WARN  [SessionFactoryObjectFactory] InitialContext did not implement EventContext
13:54:08,696 INFO  [SchemaUpdate] Running hbm2ddl schema update
13:54:08,696 INFO  [SchemaUpdate] fetching database metadata
13:54:08,709 INFO  [SchemaUpdate] updating schema
13:54:08,711 INFO  [DefaultTraversableResolver] Instantiated an instance of org.hibernate.validator.engine.resolver.JPATraversableResolver.
13:54:08,744 INFO  [TableMetadata] table found: PUBLIC.TIMEOUTMETHOD_METHODPARAMS
13:54:08,744 INFO  [TableMetadata] columns: [methodparams, timeoutmethod_id]
13:54:08,744 INFO  [TableMetadata] foreign keys: [fkf294c964b7de2d8a]
13:54:08,744 INFO  [TableMetadata] indexes: [sys_idx_55]
13:54:08,762 INFO  [TableMetadata] table found: PUBLIC.CALENDAR_TIMER
13:54:08,763 INFO  [TableMetadata] columns: [scheduleexprtimezone, scheduleexprsecond, autotimer, scheduleexprstartdate, scheduleexprminute, scheduleexprhour, timeoutmethod_id, id, scheduleexprdayofmonth, scheduleexprenddate, scheduleexprmonth, scheduleexprdayofweek, scheduleexpryear]
13:54:08,763 INFO  [TableMetadata] foreign keys: [fk2b697f04b7de2d8a, fk2b697f04e6e6ef93]
13:54:08,763 INFO  [TableMetadata] indexes: [sys_idx_57, sys_idx_47, sys_idx_59]
13:54:08,772 INFO  [TableMetadata] table found: PUBLIC.TIMEOUT_METHOD
13:54:08,772 INFO  [TableMetadata] columns: [id, methodname, declaringclass]
13:54:08,772 INFO  [TableMetadata] foreign keys: []
13:54:08,772 INFO  [TableMetadata] indexes: [sys_idx_49]
13:54:08,784 INFO  [TableMetadata] table found: PUBLIC.TIMER
13:54:08,785 INFO  [TableMetadata] columns: [id, previousrun, initialdate, repeatinterval, timedobjectid, timerstate, nextdate, info]
13:54:08,785 INFO  [TableMetadata] foreign keys: []
13:54:08,785 INFO  [TableMetadata] indexes: [sys_idx_51]
13:54:08,787 INFO  [SchemaUpdate] schema update complete
13:54:08,792 INFO  [NamingHelper] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
13:54:08,940 INFO  [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=ConnectionFactoryBinding,name=JmsXA' to JNDI name 'java:JmsXA'
13:54:09,070 INFO  [xnio] XNIO Version 2.1.0.CR2
13:54:09,078 INFO  [nio] XNIO NIO Implementation Version 2.1.0.CR2
13:54:09,187 INFO  [remoting] JBoss Remoting version 3.1.0.Beta2
13:54:09,260 INFO  [TomcatDeployment] deploy, ctxPath=/
13:54:09,307 INFO  [BeanInstantiatorDeployerBase] Installed org.jboss.ejb3.instantiator.impl.Ejb31SpecBeanInstantiator@920e0 into MC at org.jboss.ejb.bean.instantiator/firstseam/firstseam/EjbSynchronizations
13:54:09,308 INFO  [BeanInstantiatorDeployerBase] Installed org.jboss.ejb3.instantiator.impl.Ejb31SpecBeanInstantiator@920e0 into MC at org.jboss.ejb.bean.instantiator/firstseam/firstseam/TimerServiceDispatcher
13:54:09,317 WARN  [InterceptorInfoRepository] EJBTHREE-1852: InterceptorInfoRepository is deprecated
13:54:11,206 INFO  [JBossASKernel] Created KernelDeployment for: firstseam.war
13:54:11,209 INFO  [JBossASKernel] installing bean: jboss.j2ee:jar=firstseam.war,name=EjbSynchronizations,service=EJB3
13:54:11,209 INFO  [JBossASKernel]   with dependencies:
13:54:11,209 INFO  [JBossASKernel]   and demands:
13:54:11,209 INFO  [JBossASKernel] 	jboss-switchboard:appName=firstseam,module=firstseam; Required: Create
13:54:11,209 INFO  [JBossASKernel] 	jboss.ejb:service=EJBTimerService; Required: Described
13:54:11,210 INFO  [JBossASKernel]   and supplies:
13:54:11,210 INFO  [JBossASKernel] 	jndi:EjbSynchronizations
13:54:11,210 INFO  [JBossASKernel] 	jndi:EjbSynchronizations/local
13:54:11,210 INFO  [JBossASKernel] 	jndi:EjbSynchronizations/local-org.jboss.seam.transaction.LocalEjbSynchronizations
13:54:11,210 INFO  [JBossASKernel] 	Class:org.jboss.seam.transaction.LocalEjbSynchronizations
13:54:11,214 INFO  [JBossASKernel] Added bean(jboss.j2ee:jar=firstseam.war,name=EjbSynchronizations,service=EJB3) to KernelDeployment of: firstseam.war
13:54:11,225 INFO  [JBossASKernel] installing bean: jboss.j2ee:jar=firstseam.war,name=TimerServiceDispatcher,service=EJB3
13:54:11,226 INFO  [JBossASKernel]   with dependencies:
13:54:11,226 INFO  [JBossASKernel]   and demands:
13:54:11,226 INFO  [JBossASKernel] 	jboss-injector:topLevelUnit=firstseam.war,unit=firstseam.war,bean=TimerServiceDispatcher; Required: Described
13:54:11,226 INFO  [JBossASKernel] 	jboss-switchboard:appName=firstseam,module=firstseam; Required: Create
13:54:11,226 INFO  [JBossASKernel] 	jboss.ejb:service=EJBTimerService; Required: Described
13:54:11,226 INFO  [JBossASKernel]   and supplies:
13:54:11,227 INFO  [JBossASKernel] 	Class:org.jboss.seam.async.LocalTimerServiceDispatcher
13:54:11,227 INFO  [JBossASKernel] 	jndi:TimerServiceDispatcher
13:54:11,227 INFO  [JBossASKernel] 	jndi:TimerServiceDispatcher/local-org.jboss.seam.async.LocalTimerServiceDispatcher
13:54:11,227 INFO  [JBossASKernel] 	jndi:TimerServiceDispatcher/local
13:54:11,230 INFO  [JBossASKernel] Added bean(jboss.j2ee:jar=firstseam.war,name=TimerServiceDispatcher,service=EJB3) to KernelDeployment of: firstseam.war
13:54:13,377 INFO  [TomcatDeployment] deploy, ctxPath=/firstseam
13:54:13,420 INFO  [StandardContext] The listener "com.sun.faces.config.ConfigureListener" is already configured for this context. The duplicate definition has been ignored.
13:54:13,423 INFO  [StandardContext] The listener "com.sun.faces.config.ConfigureListener" is already configured for this context. The duplicate definition has been ignored.
13:54:13,458 INFO  [config] Initializing Mojarra 2.1.1 (FCS 20110408) for context '/firstseam'
13:54:15,662 INFO  [ServletContextListener] Welcome to Seam 2.2.2.Final
13:54:16,434 INFO  [Initialization] reading /WEB-INF/components.xml
13:54:16,454 INFO  [Initialization] reading properties from: /seam.properties
13:54:16,455 INFO  [Initialization] reading properties from: /jndi.properties
13:54:16,463 INFO  [Component] Component: org.jboss.seam.core.init, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.Init
13:54:16,467 INFO  [Initialization] two components with same name, higher precedence wins: org.jboss.seam.core.locale
13:54:16,467 INFO  [Initialization] two components with same name, higher precedence wins: org.jboss.seam.web.parameters
13:54:16,467 INFO  [Initialization] two components with same name, higher precedence wins: org.jboss.seam.web.isUserInRole
13:54:16,468 INFO  [Initialization] two components with same name, higher precedence wins: org.jboss.seam.transaction.synchronizations
13:54:16,468 INFO  [Initialization] two components with same name, higher precedence wins: org.jboss.seam.core.manager
13:54:16,468 INFO  [Initialization] two components with same name, higher precedence wins: org.jboss.seam.core.locale
13:54:16,468 INFO  [Initialization] two components with same name, higher precedence wins: org.jboss.seam.jms.topicConnection
13:54:16,468 INFO  [Initialization] two components with same name, higher precedence wins: org.jboss.seam.core.expressions
13:54:16,468 INFO  [Initialization] two components with same name, higher precedence wins: org.jboss.seam.core.resourceLoader
13:54:16,468 INFO  [Initialization] two components with same name, higher precedence wins: org.jboss.seam.persistence.persistenceProvider
13:54:16,469 INFO  [Initialization] two components with same name, higher precedence wins: org.jboss.seam.web.userPrincipal
13:54:16,496 INFO  [Component] Component: authenticator, scope: EVENT, type: JAVA_BEAN, class: org.domain.firstseam.session.Authenticator
13:54:16,506 INFO  [Component] Component: entityManager, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.persistence.ManagedPersistenceContext
13:54:16,506 INFO  [Component] Component: org.jboss.seam.async.asynchronousExceptionHandler, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.async.AsynchronousExceptionHandler
13:54:16,507 INFO  [Component] Component: org.jboss.seam.async.dispatcher, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.async.ThreadPoolDispatcher
13:54:16,510 INFO  [Component] Component: org.jboss.seam.captcha.captcha, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.captcha.Captcha
13:54:16,510 INFO  [Component] Component: org.jboss.seam.captcha.captchaImage, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.captcha.CaptchaImage
13:54:16,511 INFO  [Component] Component: org.jboss.seam.core.ConversationIdGenerator, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.ConversationIdGenerator
13:54:16,513 INFO  [Component] Component: org.jboss.seam.core.contexts, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.core.Contexts
13:54:16,514 INFO  [Component] Component: org.jboss.seam.core.conversation, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.core.Conversation
13:54:16,515 INFO  [Component] Component: org.jboss.seam.core.conversationEntries, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.core.ConversationEntries
13:54:16,515 INFO  [Component] Component: org.jboss.seam.core.conversationListFactory, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.core.ConversationList
13:54:16,516 INFO  [Component] Component: org.jboss.seam.core.conversationPropagation, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.core.ConversationPropagation
13:54:16,516 INFO  [Component] Component: org.jboss.seam.core.conversationStackFactory, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.core.ConversationStack
13:54:16,517 INFO  [Component] Component: org.jboss.seam.core.events, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.core.Events
13:54:16,517 INFO  [Component] Component: org.jboss.seam.core.expressions, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.faces.FacesExpressions
13:54:16,518 INFO  [Component] Component: org.jboss.seam.core.interpolator, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.core.Interpolator
13:54:16,518 INFO  [Component] Component: org.jboss.seam.core.locale, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.international.Locale
13:54:16,519 INFO  [Component] Component: org.jboss.seam.core.manager, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.faces.FacesManager
13:54:16,520 INFO  [Component] Component: org.jboss.seam.core.resourceBundle, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.core.ResourceBundle
13:54:16,521 INFO  [Component] Component: org.jboss.seam.core.resourceLoader, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.faces.ResourceLoader
13:54:16,522 INFO  [Component] Component: org.jboss.seam.core.validators, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.Validators
13:54:16,523 INFO  [Component] Component: org.jboss.seam.debug.contexts, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.debug.Contexts
13:54:16,524 INFO  [Component] Component: org.jboss.seam.debug.introspector, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.debug.Introspector
13:54:16,526 INFO  [Component] Component: org.jboss.seam.debug.jsf.debugRedirect, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.debug.jsf.DebugRedirect
13:54:16,527 INFO  [Component] Component: org.jboss.seam.document.documentStore, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.document.DocumentStore
13:54:16,528 INFO  [Component] Component: org.jboss.seam.el.referenceCache, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.el.JBossELReferenceCache
13:54:16,531 INFO  [Component] Component: org.jboss.seam.excel.excelFactory, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.excel.ExcelFactory
13:54:16,531 INFO  [Component] Component: org.jboss.seam.excel.exporter.excelExporter, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.excel.exporter.ExcelExporter
13:54:16,532 INFO  [Component] Component: org.jboss.seam.exception.exceptions, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.exception.Exceptions
13:54:16,532 INFO  [Component] Component: org.jboss.seam.faces.dataModels, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.faces.DataModels
13:54:16,535 INFO  [Component] Component: org.jboss.seam.faces.dateConverter, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.faces.DateConverter
13:54:16,535 INFO  [Component] Component: org.jboss.seam.faces.facesContext, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.faces.FacesContext
13:54:16,536 INFO  [Component] Component: org.jboss.seam.faces.facesPage, scope: PAGE, type: JAVA_BEAN, class: org.jboss.seam.faces.FacesPage
13:54:16,536 INFO  [Component] Component: org.jboss.seam.faces.httpError, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.faces.HttpError
13:54:16,537 INFO  [Component] Component: org.jboss.seam.faces.redirect, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.faces.Redirect
13:54:16,538 INFO  [Component] Component: org.jboss.seam.faces.renderer, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.ui.facelet.FaceletsRenderer
13:54:16,539 INFO  [Component] Component: org.jboss.seam.faces.switcher, scope: PAGE, type: JAVA_BEAN, class: org.jboss.seam.faces.Switcher
13:54:16,539 INFO  [Component] Component: org.jboss.seam.faces.uiComponent, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.faces.UiComponent
13:54:16,539 INFO  [Component] Component: org.jboss.seam.faces.validation, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.faces.Validation
13:54:16,540 INFO  [Component] Component: org.jboss.seam.framework.currentDate, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.framework.CurrentDate
13:54:16,542 INFO  [Component] Component: org.jboss.seam.framework.currentDatetime, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.framework.CurrentDatetime
13:54:16,543 INFO  [Component] Component: org.jboss.seam.framework.currentTime, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.framework.CurrentTime
13:54:16,546 INFO  [Component] Component: org.jboss.seam.graphicImage.image, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.ui.graphicImage.Image
13:54:16,546 INFO  [Component] Component: org.jboss.seam.international.localeSelector, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.international.LocaleSelector
13:54:16,547 INFO  [Component] Component: org.jboss.seam.international.messagesFactory, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.international.Messages
13:54:16,549 INFO  [Component] Component: org.jboss.seam.international.statusMessages, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.faces.FacesMessages
13:54:16,549 INFO  [Component] Component: org.jboss.seam.international.timeZone, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.international.TimeZone
13:54:16,550 INFO  [Component] Component: org.jboss.seam.international.timeZoneSelector, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.international.TimeZoneSelector
13:54:16,550 INFO  [Component] Component: org.jboss.seam.international.timeZones, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.international.TimeZones
13:54:16,552 INFO  [Component] Component: org.jboss.seam.mail.mailSession, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.mail.MailSession
13:54:16,553 INFO  [Component] Component: org.jboss.seam.navigation.pages, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.navigation.Pages
13:54:16,554 INFO  [Component] Component: org.jboss.seam.navigation.safeActions, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.navigation.SafeActions
13:54:16,555 INFO  [Component] Component: org.jboss.seam.persistence.persistenceContexts, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.persistence.PersistenceContexts
13:54:16,556 INFO  [Component] Component: org.jboss.seam.persistence.persistenceProvider, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.persistence.HibernatePersistenceProvider
13:54:16,558 INFO  [Component] Component: org.jboss.seam.remoting.gwt.gwtToSeamAdapter, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.remoting.gwt.GWTToSeamAdapter
13:54:16,559 INFO  [Component] Component: org.jboss.seam.remoting.messaging.SubscriptionRegistry.userTokens, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.remoting.messaging.UserTokens
13:54:16,560 INFO  [Component] Component: org.jboss.seam.remoting.remoting, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.remoting.Remoting
13:54:16,561 INFO  [Component] Component: org.jboss.seam.security.configurationFactory, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.security.Configuration
13:54:16,561 INFO  [Component] Component: org.jboss.seam.security.credentials, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.security.Credentials
13:54:16,562 INFO  [Component] Component: org.jboss.seam.security.entityPermissionChecker, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.security.EntityPermissionChecker
13:54:16,563 INFO  [Component] Component: org.jboss.seam.security.facesSecurityEvents, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.security.FacesSecurityEvents
13:54:16,563 INFO  [Component] Component: org.jboss.seam.security.identifierPolicy, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.security.permission.IdentifierPolicy
13:54:16,564 INFO  [Component] Component: org.jboss.seam.security.identity, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.security.Identity
13:54:16,566 INFO  [Component] Component: org.jboss.seam.security.identityManager, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.security.management.IdentityManager
13:54:16,567 INFO  [Component] Component: org.jboss.seam.security.management.roleAction, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.security.management.action.RoleAction
13:54:16,568 INFO  [Component] Component: org.jboss.seam.security.management.roleSearch, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.security.management.action.RoleSearch
13:54:16,570 INFO  [Component] Component: org.jboss.seam.security.management.userAction, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.security.management.action.UserAction
13:54:16,571 INFO  [Component] Component: org.jboss.seam.security.management.userSearch, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.security.management.action.UserSearch
13:54:16,576 INFO  [Component] Component: org.jboss.seam.security.passwordHash, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.security.management.PasswordHash
13:54:16,577 INFO  [Component] Component: org.jboss.seam.security.permission.permissionSearch, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.security.permission.action.PermissionSearch
13:54:16,579 INFO  [Component] Component: org.jboss.seam.security.permissionManager, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.security.permission.PermissionManager
13:54:16,580 INFO  [Component] Component: org.jboss.seam.security.permissionMapper, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.security.permission.PermissionMapper
13:54:16,581 INFO  [Component] Component: org.jboss.seam.security.persistentPermissionResolver, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.security.permission.PersistentPermissionResolver
13:54:16,581 INFO  [Component] Component: org.jboss.seam.security.rememberMe, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.security.RememberMe
13:54:16,582 INFO  [Component] Component: org.jboss.seam.security.ruleBasedPermissionResolver, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.security.permission.RuleBasedPermissionResolver
13:54:16,583 INFO  [Component] Component: org.jboss.seam.theme.themeFactory, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.theme.Theme
13:54:16,583 INFO  [Component] Component: org.jboss.seam.theme.themeSelector, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.theme.ThemeSelector
13:54:16,584 INFO  [Component] Component: org.jboss.seam.transaction.facesTransactionEvents, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.transaction.FacesTransactionEvents
13:54:16,584 INFO  [Component] Component: org.jboss.seam.transaction.synchronizations, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.transaction.SeSynchronizations
13:54:16,584 INFO  [Component] Component: org.jboss.seam.transaction.transaction, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.transaction.Transaction
13:54:16,586 INFO  [Component] Component: org.jboss.seam.ui.EntityConverter, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.ui.EntityConverter
13:54:16,587 INFO  [Component] Component: org.jboss.seam.ui.clientUidSelector, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.ui.ClientUidSelector
13:54:16,588 INFO  [Component] Component: org.jboss.seam.ui.entityIdentifierStore, scope: PAGE, type: JAVA_BEAN, class: org.jboss.seam.ui.EntityIdentifierStore
13:54:16,590 INFO  [Component] Component: org.jboss.seam.ui.entityLoader, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.ui.JpaEntityLoader
13:54:16,592 INFO  [Component] Component: org.jboss.seam.ui.facelet.faceletCompiler, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.ui.facelet.FaceletCompiler
13:54:16,593 INFO  [Component] Component: org.jboss.seam.ui.facelet.facesContextFactory, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.ui.facelet.RendererFacesContextFactory
13:54:16,593 INFO  [Component] Component: org.jboss.seam.ui.facelet.mockHttpSession, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.ui.facelet.HttpSessionManager
13:54:16,593 INFO  [Component] Component: org.jboss.seam.ui.facelet.mockServletContext, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.ui.facelet.ServletContextManager
13:54:16,594 INFO  [Component] Component: org.jboss.seam.ui.graphicImage.graphicImageResource, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.ui.graphicImage.GraphicImageResource
13:54:16,595 INFO  [Component] Component: org.jboss.seam.ui.graphicImage.graphicImageStore, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.ui.graphicImage.GraphicImageStore
13:54:16,596 INFO  [Component] Component: org.jboss.seam.ui.resource.webResource, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.ui.resource.WebResource
13:54:16,596 INFO  [Component] Component: org.jboss.seam.web.ajax4jsfFilter, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.web.Ajax4jsfFilter
13:54:16,597 INFO  [Component] Component: org.jboss.seam.web.ajax4jsfFilterInstantiator, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.ui.filter.Ajax4jsfFilterInstantiator
13:54:16,597 INFO  [Component] Component: org.jboss.seam.web.exceptionFilter, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.web.ExceptionFilter
13:54:16,598 INFO  [Component] Component: org.jboss.seam.web.hotDeployFilter, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.web.HotDeployFilter
13:54:16,598 INFO  [Component] Component: org.jboss.seam.web.identityFilter, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.web.IdentityFilter
13:54:16,598 INFO  [Component] Component: org.jboss.seam.web.isUserInRole, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.faces.IsUserInRole
13:54:16,599 INFO  [Component] Component: org.jboss.seam.web.loggingFilter, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.web.LoggingFilter
13:54:16,599 INFO  [Component] Component: org.jboss.seam.web.multipartFilter, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.web.MultipartFilter
13:54:16,600 INFO  [Component] Component: org.jboss.seam.web.parameters, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.faces.Parameters
13:54:16,600 INFO  [Component] Component: org.jboss.seam.web.redirectFilter, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.web.RedirectFilter
13:54:16,600 INFO  [Component] Component: org.jboss.seam.web.servletContexts, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.web.ServletContexts
13:54:16,601 INFO  [Component] Component: org.jboss.seam.web.session, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.web.Session
13:54:16,601 INFO  [Component] Component: org.jboss.seam.web.userPrincipal, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.faces.UserPrincipal
13:54:16,601 INFO  [Component] Component: securityRules, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.drools.RuleBase
13:54:16,605 WARN  [PersistentPermissionResolver] no permission store available - please install a PermissionStore with the name 'org.jboss.seam.security.jpaPermissionStore' if persistent permissions are required.
13:54:16,628 INFO  [SeamFilter] Initializing filter: org.jboss.seam.web.hotDeployFilter
13:54:16,628 INFO  [SeamFilter] Initializing filter: org.jboss.seam.web.loggingFilter
13:54:16,628 INFO  [SeamFilter] Initializing filter: org.jboss.seam.web.ajax4jsfFilter
13:54:16,631 WARN  [BaseXMLFilter] This version of RichFaces implementation compatible for JSF1.2, but running under JSF2.0
13:54:16,633 INFO  [CacheManager] Selected [org.ajax4jsf.cache.LRUMapCacheFactory] cache factory
13:54:16,634 INFO  [LRUMapCacheFactory] Creating LRUMap cache instance using parameters: {org.jboss.jbossfaces.JSF_CONFIG_NAME=Mojarra-1.2, facelets.DEVELOPMENT=true, com.sun.faces.duplicateJARPattern=^tmp\d+(\S*\.jar), org.richfaces.SKIN=blueSky, com.sun.faces.injectionProvider=org.jboss.web.jsf.integration.injection.JBossDelegatingInjectionProvider, javax.servlet.jsp.jstl.fmt.localizationContext=resources.application, resteasy.unwrapped.exceptions=javax.ejb.EJBException, javax.faces.STATE_SAVING_METHOD=client, javax.faces.DEFAULT_SUFFIX=.xhtml}
13:54:16,634 INFO  [LRUMapCacheFactory] Creating LRUMap cache instance of default capacity
13:54:16,638 INFO  [CacheManager] Selected [org.ajax4jsf.cache.LRUMapCacheFactory] cache factory
13:54:16,638 INFO  [LRUMapCacheFactory] Creating LRUMap cache instance using parameters: {org.jboss.jbossfaces.JSF_CONFIG_NAME=Mojarra-1.2, facelets.DEVELOPMENT=true, com.sun.faces.duplicateJARPattern=^tmp\d+(\S*\.jar), org.richfaces.SKIN=blueSky, com.sun.faces.injectionProvider=org.jboss.web.jsf.integration.injection.JBossDelegatingInjectionProvider, javax.servlet.jsp.jstl.fmt.localizationContext=resources.application, resteasy.unwrapped.exceptions=javax.ejb.EJBException, javax.faces.STATE_SAVING_METHOD=client, javax.faces.DEFAULT_SUFFIX=.xhtml}
13:54:16,638 INFO  [LRUMapCacheFactory] Creating LRUMap cache instance of default capacity
13:54:16,638 INFO  [SeamFilter] Initializing filter: org.jboss.seam.web.redirectFilter
13:54:16,639 INFO  [SeamFilter] Initializing filter: org.jboss.seam.web.exceptionFilter
13:54:16,639 INFO  [SeamFilter] Initializing filter: org.jboss.seam.web.multipartFilter
13:54:16,639 INFO  [SeamFilter] Initializing filter: org.jboss.seam.web.identityFilter
13:54:16,642 INFO  [SessionSpecContainer] Starting jboss.j2ee:jar=firstseam.war,name=EjbSynchronizations,service=EJB3
13:54:16,648 INFO  [EJBContainer] STARTED EJB: org.jboss.seam.transaction.EjbSynchronizations ejbName: EjbSynchronizations
13:54:16,683 INFO  [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:

	EjbSynchronizations/local - EJB3.x Default Local Business Interface
	EjbSynchronizations/local-org.jboss.seam.transaction.LocalEjbSynchronizations - EJB3.x Local Business Interface

13:54:16,699 INFO  [PersistenceUnitDeployment] Starting persistence unit persistence.unit:unitName=firstseam.war#firstseam
13:54:16,700 INFO  [Ejb3Configuration] Processing PersistenceUnitInfo [
	name: firstseam
	...]
13:54:16,704 WARN  [Ejb3Configuration] Persistence provider caller does not implement the EJB3 spec correctly.PersistenceUnitInfo.getNewTempClassLoader() is null.
13:54:16,707 INFO  [DefaultTraversableResolver] Instantiated an instance of org.hibernate.validator.engine.resolver.JPATraversableResolver.
13:54:16,710 INFO  [DefaultTraversableResolver] Instantiated an instance of org.hibernate.validator.engine.resolver.JPATraversableResolver.
13:54:16,711 INFO  [DefaultTraversableResolver] Instantiated an instance of org.hibernate.validator.engine.resolver.JPATraversableResolver.
13:54:16,713 INFO  [HibernateSearchEventListenerRegister] Unable to find org.hibernate.search.event.FullTextIndexEventListener on the classpath. Hibernate Search is not enabled.
13:54:16,713 INFO  [ConnectionProviderFactory] Initializing connection provider: org.hibernate.ejb.connection.InjectedDataSourceConnectionProvider
13:54:16,714 INFO  [InjectedDataSourceConnectionProvider] Using provided datasource
13:54:16,974 INFO  [SettingsFactory] Database ->
       name : MySQL
    version : 5.1.58-1ubuntu1
      major : 5
      minor : 1
13:54:16,974 INFO  [SettingsFactory] Driver ->
       name : MySQL-AB JDBC Driver
    version : mysql-connector-java-5.1.18 ( Revision: tonci.grgin@oracle.com-20110930151701-jfj14ddfq48ifkfq )
      major : 5
      minor : 1
13:54:16,978 INFO  [Dialect] Using dialect: org.hibernate.dialect.MySQL5InnoDBDialect
13:54:16,984 INFO  [TransactionFactoryFactory] Transaction strategy: org.hibernate.ejb.transaction.JoinableCMTTransactionFactory
13:54:16,985 INFO  [TransactionManagerLookupFactory] instantiating TransactionManagerLookup: org.hibernate.transaction.JBossTransactionManagerLookup
13:54:16,985 INFO  [TransactionManagerLookupFactory] instantiated TransactionManagerLookup
13:54:16,985 INFO  [SettingsFactory] Automatic flush during beforeCompletion(): disabled
13:54:16,985 INFO  [SettingsFactory] Automatic session close at end of transaction: disabled
13:54:16,985 INFO  [SettingsFactory] JDBC batch size: 15
13:54:16,985 INFO  [SettingsFactory] JDBC batch updates for versioned data: disabled
13:54:16,986 INFO  [SettingsFactory] Scrollable result sets: enabled
13:54:16,986 INFO  [SettingsFactory] JDBC3 getGeneratedKeys(): enabled
13:54:16,986 INFO  [SettingsFactory] Connection release mode: auto
13:54:16,986 INFO  [SettingsFactory] Maximum outer join fetch depth: 2
13:54:16,986 INFO  [SettingsFactory] Default batch fetch size: 1
13:54:16,986 INFO  [SettingsFactory] Generate SQL with comments: disabled
13:54:16,986 INFO  [SettingsFactory] Order SQL updates by primary key: disabled
13:54:16,986 INFO  [SettingsFactory] Order SQL inserts for batching: disabled
13:54:16,986 INFO  [SettingsFactory] Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
13:54:16,987 INFO  [ASTQueryTranslatorFactory] Using ASTQueryTranslatorFactory
13:54:16,987 INFO  [SettingsFactory] Query language substitutions: {}
13:54:16,987 INFO  [SettingsFactory] JPA-QL strict compliance: enabled
13:54:16,987 INFO  [SettingsFactory] Second-level cache: enabled
13:54:16,987 INFO  [SettingsFactory] Query cache: disabled
13:54:16,987 INFO  [SettingsFactory] Cache region factory : org.hibernate.cache.impl.bridge.RegionFactoryCacheProviderBridge
13:54:16,988 INFO  [RegionFactoryCacheProviderBridge] Cache provider: org.hibernate.cache.HashtableCacheProvider
13:54:16,988 INFO  [SettingsFactory] Optimize cache for minimal puts: disabled
13:54:16,988 INFO  [SettingsFactory] Cache region prefix: persistence.unit:unitName=firstseam.war#firstseam
13:54:16,988 INFO  [SettingsFactory] Structured second-level cache entries: disabled
13:54:16,988 INFO  [SettingsFactory] Echoing all SQL to stdout
13:54:16,988 INFO  [SettingsFactory] Statistics: disabled
13:54:16,988 INFO  [SettingsFactory] Deleted entity synthetic identifier rollback: disabled
13:54:16,989 INFO  [SettingsFactory] Default entity-mode: pojo
13:54:16,989 INFO  [SettingsFactory] Named query checking : enabled
13:54:16,989 INFO  [SettingsFactory] Check Nullability in Core (should be disabled when Bean Validation is on): disabled
13:54:16,991 INFO  [SessionFactoryImpl] building session factory
13:54:16,991 INFO  [SessionFactoryObjectFactory] Factory name: persistence.unit:unitName=firstseam.war#firstseam
13:54:16,992 INFO  [NamingHelper] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
13:54:16,993 INFO  [SessionFactoryObjectFactory] Bound factory to JNDI name: persistence.unit:unitName=firstseam.war#firstseam
13:54:16,994 WARN  [SessionFactoryObjectFactory] InitialContext did not implement EventContext
13:54:16,994 INFO  [SchemaUpdate] Running hbm2ddl schema update
13:54:16,994 INFO  [SchemaUpdate] fetching database metadata
13:54:16,994 INFO  [SchemaUpdate] updating schema
13:54:16,994 INFO  [DefaultTraversableResolver] Instantiated an instance of org.hibernate.validator.engine.resolver.JPATraversableResolver.
13:54:16,995 INFO  [SchemaUpdate] schema update complete
13:54:16,995 INFO  [NamingHelper] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
13:54:17,004 INFO  [SessionSpecContainer] Starting jboss.j2ee:jar=firstseam.war,name=TimerServiceDispatcher,service=EJB3
13:54:17,005 INFO  [EJBContainer] STARTED EJB: org.jboss.seam.async.TimerServiceDispatcher ejbName: TimerServiceDispatcher
13:54:17,012 INFO  [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:

	TimerServiceDispatcher/local - EJB3.x Default Local Business Interface
	TimerServiceDispatcher/local-org.jboss.seam.async.LocalTimerServiceDispatcher - EJB3.x Local Business Interface

13:54:17,015 WARN  [TimerServiceContainer] EJBTHREE-2193: using deprecated TimerServiceFactory for restoring timers
13:54:17,377 INFO  [service] Removing bootstrap log handlers
13:54:17,452 INFO  [org.apache.coyote.http11.Http11Protocol] Starting Coyote HTTP/1.1 on http-localhost%2F127.0.0.1-8080
13:54:17,458 INFO  [org.apache.coyote.ajp.AjpProtocol] Starting Coyote AJP/1.3 on ajp-localhost%2F127.0.0.1-8009
13:54:17,459 INFO  [org.jboss.bootstrap.impl.base.server.AbstractServer] JBossAS [6.0.0.Final "Neo"] Started in 44s:854ms

Não sei o que eu fiz, se foi apagar as propriedades do arquivo hibernate-console.properties, mudar o web.xml para Mojarra-2.0 (que voltei mas acredito que tem que ficar assim) ou alterar o dialect para org.hibernate.dialect.MySQLInnoDBDialect.
Também reiniciei o computador e removi os arquivos do deployed.
Agora está dando um outro erro:

16:29:26,002 INFO  [AbstractJBossASServerBase] Server Configuration:

	JBOSS_HOME URL: file:/usr/local/jboss-6.0.0.Final/
	Bootstrap: $JBOSS_HOME/server/default/conf/bootstrap.xml
	Common Base: $JBOSS_HOME/common/
	Common Library: $JBOSS_HOME/common/lib/
	Server Name: default
	Server Base: $JBOSS_HOME/server/
	Server Library: $JBOSS_HOME/server/default/lib/
	Server Config: $JBOSS_HOME/server/default/conf/
	Server Home: $JBOSS_HOME/server/default/
	Server Data: $JBOSS_HOME/server/default/data/
	Server Log: $JBOSS_HOME/server/default/log/
	Server Temp: $JBOSS_HOME/server/default/tmp/

16:29:26,005 INFO  [AbstractServer] Starting: JBossAS [6.0.0.Final "Neo"]
16:29:27,282 INFO  [ServerInfo] Java version: 1.6.0_26,Sun Microsystems Inc.
16:29:27,282 INFO  [ServerInfo] Java Runtime: Java(TM) SE Runtime Environment (build 1.6.0_26-b03)
16:29:27,282 INFO  [ServerInfo] Java VM: Java HotSpot(TM) Server VM 20.1-b02,Sun Microsystems Inc.
16:29:27,282 INFO  [ServerInfo] OS-System: Linux 2.6.38-13-generic-pae,i386
16:29:27,283 INFO  [ServerInfo] VM arguments: -Dprogram.name=JBossTools: JBoss 6.0.0-Final Runtime -Xms256m -Xmx768m -XX:MaxPermSize=256m -Djava.net.preferIPv4Stack=true -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000 -Djava.endorsed.dirs=/usr/local/jboss-6.0.0.Final/lib/endorsed -Djava.library.path=/usr/local/jboss-6.0.0.Final/bin/native -Dfile.encoding=UTF-8 
16:29:27,313 INFO  [JMXKernel] Legacy JMX core initialized
16:29:31,368 INFO  [AbstractServerConfig] JBoss Web Services - Stack CXF Server 3.4.1.GA
16:29:32,072 INFO  [JSFImplManagementDeployer] Initialized 3 JSF configurations: [Mojarra-1.2, MyFaces-2.0, Mojarra-2.0]
16:29:36,577 WARNING [FileConfigurationParser] AIO wasn't located on this platform, it will fall back to using pure Java NIO. If your platform is Linux, install LibAIO to enable the AIO journal
16:29:53,692 INFO  [PersistenceUnitValueMetaData] iDependOn persistence.unit:unitName=jboss-ejb3-timerservice-mk2.jar#timerdb
16:29:53,816 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@8052753{vfs:///usr/local/jboss-6.0.0.Final/server/default/deploy/firstseam.war}
16:29:53,816 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@8052753{vfs:///usr/local/jboss-6.0.0.Final/server/default/deploy/firstseam.war}
16:29:54,823 WARNING [FileConfigurationParser] AIO wasn't located on this platform, it will fall back to using pure Java NIO. If your platform is Linux, install LibAIO to enable the AIO journal
16:29:54,969 INFO  [JMXConnector] starting JMXConnector on host localhost:1090
16:29:55,050 INFO  [MailService] Mail Service bound to java:/Mail
16:29:55,645 INFO  [HornetQServerImpl] live server is starting..
16:29:55,723 INFO  [JournalStorageManager] Using NIO Journal
16:29:55,742 WARNING [HornetQServerImpl] Security risk! It has been detected that the cluster admin user and password have not been changed from the installation default. Please see the HornetQ user guide, cluster chapter, for instructions on how to do this.
16:29:56,246 INFO  [NettyAcceptor] Started Netty Acceptor version 3.2.1.Final-r2319 localhost:5455 for CORE protocol
16:29:56,248 INFO  [NettyAcceptor] Started Netty Acceptor version 3.2.1.Final-r2319 localhost:5445 for CORE protocol
16:29:56,251 INFO  [HornetQServerImpl] HornetQ Server version 2.1.2.Final (Colmeia, 120) started
16:29:56,296 INFO  [WebService] Using RMI server codebase: http://localhost:8083/
16:29:56,480 INFO  [jbossatx] ARJUNA-32010 JBossTS Recovery Service (tag: JBOSSTS_4_14_0_Final) - JBoss Inc.
16:29:57,358 INFO  [arjuna] ARJUNA-12324 Start RecoveryActivators
16:29:57,375 INFO  [arjuna] ARJUNA-12296 ExpiredEntryMonitor running at Tue, 27 Mar 2012 16:29:57
16:29:57,436 INFO  [arjuna] ARJUNA-12310 Recovery manager listening on endpoint 127.0.0.1:4712
16:29:57,437 INFO  [arjuna] ARJUNA-12344 RecoveryManagerImple is ready on port 4712
16:29:57,437 INFO  [jbossatx] ARJUNA-32013 Starting transaction recovery manager
16:29:57,452 INFO  [arjuna] ARJUNA-12163 Starting service com.arjuna.ats.arjuna.recovery.ActionStatusService on port 4713
16:29:57,453 INFO  [arjuna] ARJUNA-12337 TransactionStatusManagerItem host: 127.0.0.1 port: 4713
16:29:57,493 INFO  [arjuna] ARJUNA-12170 TransactionStatusManager started on port 4713 and host 127.0.0.1 with service com.arjuna.ats.arjuna.recovery.ActionStatusService
16:29:57,531 INFO  [jbossatx] ARJUNA-32017 JBossTS Transaction Service (JTA version - tag: JBOSSTS_4_14_0_Final) - JBoss Inc.
16:29:57,580 INFO  [arjuna] ARJUNA-12202 registering bean jboss.jta:type=ObjectStore.
16:29:57,766 INFO  [AprLifecycleListener] The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: /usr/local/jboss-6.0.0.Final/bin/native
16:29:57,896 INFO  [ModClusterService] Initializing mod_cluster 1.1.0.Final
16:29:57,909 INFO  [TomcatDeployment] deploy, ctxPath=/invoker
16:29:58,190 INFO  [RARDeployment] Required license terms exist, view vfs:/usr/local/jboss-6.0.0.Final/server/default/deploy/jboss-local-jdbc.rar/META-INF/ra.xml
16:29:58,201 INFO  [RARDeployment] Required license terms exist, view vfs:/usr/local/jboss-6.0.0.Final/server/default/deploy/jboss-xa-jdbc.rar/META-INF/ra.xml
16:29:58,208 INFO  [RARDeployment] Required license terms exist, view vfs:/usr/local/jboss-6.0.0.Final/server/default/deploy/jms-ra.rar/META-INF/ra.xml
16:29:58,222 INFO  [HornetQResourceAdapter] HornetQ resource adaptor started
16:29:58,229 INFO  [RARDeployment] Required license terms exist, view vfs:/usr/local/jboss-6.0.0.Final/server/default/deploy/mail-ra.rar/META-INF/ra.xml
16:29:58,240 INFO  [RARDeployment] Required license terms exist, view vfs:/usr/local/jboss-6.0.0.Final/server/default/deploy/quartz-ra.rar/META-INF/ra.xml
16:29:58,312 INFO  [SimpleThreadPool] Job execution threads will use class loader of thread: Thread-2
16:29:58,342 INFO  [SchedulerSignalerImpl] Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
16:29:58,342 INFO  [QuartzScheduler] Quartz Scheduler v.1.8.3 created.
16:29:58,344 INFO  [RAMJobStore] RAMJobStore initialized.
16:29:58,346 INFO  [QuartzScheduler] Scheduler meta-data: Quartz Scheduler (v1.8.3) 'JBossQuartzScheduler' with instanceId 'NON_CLUSTERED'
  Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  NOT STARTED.
  Currently in standby mode.
  Number of jobs executed: 0
  Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.

16:29:58,346 INFO  [StdSchedulerFactory] Quartz scheduler 'JBossQuartzScheduler' initialized from an externally opened InputStream.
16:29:58,346 INFO  [StdSchedulerFactory] Quartz scheduler version: 1.8.3
16:29:58,347 INFO  [QuartzScheduler] Scheduler JBossQuartzScheduler_$_NON_CLUSTERED started.
16:29:58,712 INFO  [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=DefaultDS' to JNDI name 'java:DefaultDS'
16:29:58,846 INFO  [PersistenceUnitDeployment] Starting persistence unit persistence.unit:unitName=jboss-ejb3-timerservice-mk2.jar#timerdb
16:29:59,046 INFO  [Version] Hibernate Commons Annotations 3.2.0.Final
16:29:59,055 INFO  [Environment] Hibernate 3.6.0.Final
16:29:59,058 INFO  [Environment] hibernate.properties not found
16:29:59,062 INFO  [Environment] Bytecode provider name : javassist
16:29:59,069 INFO  [Environment] using JDK 1.4 java.sql.Timestamp handling
16:29:59,174 INFO  [Version] Hibernate EntityManager 3.6.0.Final
16:29:59,203 INFO  [Ejb3Configuration] Processing PersistenceUnitInfo [
	name: timerdb
	...]
16:29:59,219 WARN  [Ejb3Configuration] Persistence provider caller does not implement the EJB3 spec correctly.PersistenceUnitInfo.getNewTempClassLoader() is null.
16:29:59,289 INFO  [AnnotationBinder] Binding entity from annotated class: org.jboss.ejb3.timerservice.mk2.persistence.TimerEntity
16:29:59,349 INFO  [EntityBinder] Bind entity org.jboss.ejb3.timerservice.mk2.persistence.TimerEntity on table timer
16:29:59,442 INFO  [AnnotationBinder] Binding entity from annotated class: org.jboss.ejb3.timerservice.mk2.persistence.TimeoutMethod
16:29:59,449 INFO  [EntityBinder] Bind entity org.jboss.ejb3.timerservice.mk2.persistence.TimeoutMethod on table timeout_method
16:29:59,489 INFO  [AnnotationBinder] Binding entity from annotated class: org.jboss.ejb3.timerservice.mk2.persistence.CalendarTimerEntity
16:29:59,491 INFO  [EntityBinder] Bind entity org.jboss.ejb3.timerservice.mk2.persistence.CalendarTimerEntity on table calendar_timer
16:29:59,532 INFO  [Version] Hibernate Validator 3.1.0.GA
16:29:59,571 INFO  [Version] Hibernate Validator 4.1.0.Final
16:29:59,585 INFO  [DefaultTraversableResolver] Instantiated an instance of org.hibernate.validator.engine.resolver.JPATraversableResolver.
16:29:59,703 INFO  [DefaultTraversableResolver] Instantiated an instance of org.hibernate.validator.engine.resolver.JPATraversableResolver.
16:29:59,709 INFO  [DefaultTraversableResolver] Instantiated an instance of org.hibernate.validator.engine.resolver.JPATraversableResolver.
16:29:59,716 INFO  [HibernateSearchEventListenerRegister] Unable to find org.hibernate.search.event.FullTextIndexEventListener on the classpath. Hibernate Search is not enabled.
16:29:59,727 INFO  [ConnectionProviderFactory] Initializing connection provider: org.hibernate.ejb.connection.InjectedDataSourceConnectionProvider
16:29:59,731 INFO  [InjectedDataSourceConnectionProvider] Using provided datasource
16:29:59,735 INFO  [SettingsFactory] Database ->
       name : HSQL Database Engine
    version : 1.8.0
      major : 1
      minor : 8
16:29:59,735 INFO  [SettingsFactory] Driver ->
       name : HSQL Database Engine Driver
    version : 1.8.0
      major : 1
      minor : 8
16:29:59,772 INFO  [Dialect] Using dialect: org.hibernate.dialect.HSQLDialect
16:29:59,796 INFO  [JdbcSupportLoader] Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
16:29:59,797 INFO  [TransactionFactoryFactory] Transaction strategy: org.hibernate.ejb.transaction.JoinableCMTTransactionFactory
16:29:59,800 INFO  [TransactionManagerLookupFactory] instantiating TransactionManagerLookup: org.hibernate.transaction.JBossTransactionManagerLookup
16:29:59,803 INFO  [TransactionManagerLookupFactory] instantiated TransactionManagerLookup
16:29:59,803 INFO  [SettingsFactory] Automatic flush during beforeCompletion(): disabled
16:29:59,803 INFO  [SettingsFactory] Automatic session close at end of transaction: disabled
16:29:59,803 INFO  [SettingsFactory] JDBC batch size: 15
16:29:59,803 INFO  [SettingsFactory] JDBC batch updates for versioned data: disabled
16:29:59,803 INFO  [SettingsFactory] Scrollable result sets: enabled
16:29:59,804 INFO  [SettingsFactory] JDBC3 getGeneratedKeys(): disabled
16:29:59,804 INFO  [SettingsFactory] Connection release mode: auto
16:29:59,805 INFO  [SettingsFactory] Default batch fetch size: 1
16:29:59,805 INFO  [SettingsFactory] Generate SQL with comments: disabled
16:29:59,805 INFO  [SettingsFactory] Order SQL updates by primary key: disabled
16:29:59,805 INFO  [SettingsFactory] Order SQL inserts for batching: disabled
16:29:59,805 INFO  [SettingsFactory] Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
16:29:59,809 INFO  [ASTQueryTranslatorFactory] Using ASTQueryTranslatorFactory
16:29:59,809 INFO  [SettingsFactory] Query language substitutions: {}
16:29:59,809 INFO  [SettingsFactory] JPA-QL strict compliance: enabled
16:29:59,809 INFO  [SettingsFactory] Second-level cache: enabled
16:29:59,810 INFO  [SettingsFactory] Query cache: disabled
16:29:59,811 INFO  [SettingsFactory] Cache region factory : org.hibernate.cache.impl.bridge.RegionFactoryCacheProviderBridge
16:29:59,819 INFO  [RegionFactoryCacheProviderBridge] Cache provider: org.hibernate.cache.HashtableCacheProvider
16:29:59,821 INFO  [SettingsFactory] Optimize cache for minimal puts: disabled
16:29:59,821 INFO  [SettingsFactory] Cache region prefix: persistence.unit:unitName=jboss-ejb3-timerservice-mk2.jar#timerdb
16:29:59,821 INFO  [SettingsFactory] Structured second-level cache entries: disabled
16:29:59,830 INFO  [SettingsFactory] Statistics: disabled
16:29:59,830 INFO  [SettingsFactory] Deleted entity synthetic identifier rollback: disabled
16:29:59,830 INFO  [SettingsFactory] Default entity-mode: pojo
16:29:59,830 INFO  [SettingsFactory] Named query checking : enabled
16:29:59,830 INFO  [SettingsFactory] Check Nullability in Core (should be disabled when Bean Validation is on): disabled
16:29:59,858 INFO  [SessionFactoryImpl] building session factory
16:30:00,107 INFO  [SessionFactoryObjectFactory] Factory name: persistence.unit:unitName=jboss-ejb3-timerservice-mk2.jar#timerdb
16:30:00,109 INFO  [NamingHelper] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
16:30:00,112 INFO  [SessionFactoryObjectFactory] Bound factory to JNDI name: persistence.unit:unitName=jboss-ejb3-timerservice-mk2.jar#timerdb
16:30:00,112 WARN  [SessionFactoryObjectFactory] InitialContext did not implement EventContext
16:30:00,122 INFO  [SchemaUpdate] Running hbm2ddl schema update
16:30:00,122 INFO  [SchemaUpdate] fetching database metadata
16:30:00,123 INFO  [SchemaUpdate] updating schema
16:30:00,126 INFO  [DefaultTraversableResolver] Instantiated an instance of org.hibernate.validator.engine.resolver.JPATraversableResolver.
16:30:00,149 INFO  [TableMetadata] table found: PUBLIC.TIMEOUTMETHOD_METHODPARAMS
16:30:00,150 INFO  [TableMetadata] columns: [methodparams, timeoutmethod_id]
16:30:00,150 INFO  [TableMetadata] foreign keys: [fkf294c964b7de2d8a]
16:30:00,150 INFO  [TableMetadata] indexes: [sys_idx_55]
16:30:00,163 INFO  [TableMetadata] table found: PUBLIC.CALENDAR_TIMER
16:30:00,164 INFO  [TableMetadata] columns: [scheduleexprtimezone, scheduleexprsecond, autotimer, scheduleexprstartdate, scheduleexprminute, scheduleexprhour, timeoutmethod_id, id, scheduleexprdayofmonth, scheduleexprenddate, scheduleexprmonth, scheduleexprdayofweek, scheduleexpryear]
16:30:00,164 INFO  [TableMetadata] foreign keys: [fk2b697f04b7de2d8a, fk2b697f04e6e6ef93]
16:30:00,164 INFO  [TableMetadata] indexes: [sys_idx_57, sys_idx_47, sys_idx_59]
16:30:00,173 INFO  [TableMetadata] table found: PUBLIC.TIMEOUT_METHOD
16:30:00,173 INFO  [TableMetadata] columns: [id, methodname, declaringclass]
16:30:00,173 INFO  [TableMetadata] foreign keys: []
16:30:00,173 INFO  [TableMetadata] indexes: [sys_idx_49]
16:30:00,182 INFO  [TableMetadata] table found: PUBLIC.TIMER
16:30:00,183 INFO  [TableMetadata] columns: [id, previousrun, initialdate, repeatinterval, timedobjectid, timerstate, nextdate, info]
16:30:00,183 INFO  [TableMetadata] foreign keys: []
16:30:00,183 INFO  [TableMetadata] indexes: [sys_idx_51]
16:30:00,185 INFO  [SchemaUpdate] schema update complete
16:30:00,189 INFO  [NamingHelper] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
16:30:00,327 INFO  [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=ConnectionFactoryBinding,name=JmsXA' to JNDI name 'java:JmsXA'
16:30:00,453 INFO  [xnio] XNIO Version 2.1.0.CR2
16:30:00,460 INFO  [nio] XNIO NIO Implementation Version 2.1.0.CR2
16:30:00,568 INFO  [remoting] JBoss Remoting version 3.1.0.Beta2
16:30:00,639 INFO  [TomcatDeployment] deploy, ctxPath=/
16:30:00,675 INFO  [BeanInstantiatorDeployerBase] Installed org.jboss.ejb3.instantiator.impl.Ejb31SpecBeanInstantiator@f2f242 into MC at org.jboss.ejb.bean.instantiator/firstseam/firstseam/EjbSynchronizations
16:30:00,675 INFO  [BeanInstantiatorDeployerBase] Installed org.jboss.ejb3.instantiator.impl.Ejb31SpecBeanInstantiator@f2f242 into MC at org.jboss.ejb.bean.instantiator/firstseam/firstseam/TimerServiceDispatcher
16:30:00,682 WARN  [InterceptorInfoRepository] EJBTHREE-1852: InterceptorInfoRepository is deprecated
16:30:02,502 INFO  [JBossASKernel] Created KernelDeployment for: firstseam.war
16:30:02,505 INFO  [JBossASKernel] installing bean: jboss.j2ee:jar=firstseam.war,name=EjbSynchronizations,service=EJB3
16:30:02,505 INFO  [JBossASKernel]   with dependencies:
16:30:02,505 INFO  [JBossASKernel]   and demands:
16:30:02,505 INFO  [JBossASKernel] 	jboss-switchboard:appName=firstseam,module=firstseam; Required: Create
16:30:02,505 INFO  [JBossASKernel] 	jboss.ejb:service=EJBTimerService; Required: Described
16:30:02,505 INFO  [JBossASKernel]   and supplies:
16:30:02,506 INFO  [JBossASKernel] 	jndi:EjbSynchronizations
16:30:02,506 INFO  [JBossASKernel] 	jndi:EjbSynchronizations/local
16:30:02,506 INFO  [JBossASKernel] 	jndi:EjbSynchronizations/local-org.jboss.seam.transaction.LocalEjbSynchronizations
16:30:02,506 INFO  [JBossASKernel] 	Class:org.jboss.seam.transaction.LocalEjbSynchronizations
16:30:02,510 INFO  [JBossASKernel] Added bean(jboss.j2ee:jar=firstseam.war,name=EjbSynchronizations,service=EJB3) to KernelDeployment of: firstseam.war
16:30:02,518 INFO  [JBossASKernel] installing bean: jboss.j2ee:jar=firstseam.war,name=TimerServiceDispatcher,service=EJB3
16:30:02,518 INFO  [JBossASKernel]   with dependencies:
16:30:02,518 INFO  [JBossASKernel]   and demands:
16:30:02,519 INFO  [JBossASKernel] 	jboss-injector:topLevelUnit=firstseam.war,unit=firstseam.war,bean=TimerServiceDispatcher; Required: Described
16:30:02,519 INFO  [JBossASKernel] 	jboss-switchboard:appName=firstseam,module=firstseam; Required: Create
16:30:02,519 INFO  [JBossASKernel] 	jboss.ejb:service=EJBTimerService; Required: Described
16:30:02,519 INFO  [JBossASKernel]   and supplies:
16:30:02,519 INFO  [JBossASKernel] 	Class:org.jboss.seam.async.LocalTimerServiceDispatcher
16:30:02,519 INFO  [JBossASKernel] 	jndi:TimerServiceDispatcher
16:30:02,519 INFO  [JBossASKernel] 	jndi:TimerServiceDispatcher/local-org.jboss.seam.async.LocalTimerServiceDispatcher
16:30:02,519 INFO  [JBossASKernel] 	jndi:TimerServiceDispatcher/local
16:30:02,521 INFO  [JBossASKernel] Added bean(jboss.j2ee:jar=firstseam.war,name=TimerServiceDispatcher,service=EJB3) to KernelDeployment of: firstseam.war
16:30:04,376 INFO  [TomcatDeployment] deploy, ctxPath=/firstseam
16:30:04,412 INFO  [StandardContext] The listener "com.sun.faces.config.ConfigureListener" is already configured for this context. The duplicate definition has been ignored.
16:30:04,415 INFO  [StandardContext] The listener "com.sun.faces.config.ConfigureListener" is already configured for this context. The duplicate definition has been ignored.
16:30:04,444 INFO  [config] Initializing Mojarra 2.1.1 (FCS 20110408) for context '/firstseam'
16:30:06,100 INFO  [ServletContextListener] Welcome to Seam 2.2.2.Final
16:30:06,852 INFO  [Initialization] reading /WEB-INF/components.xml
16:30:06,874 INFO  [Initialization] reading properties from: /seam.properties
16:30:06,874 INFO  [Initialization] reading properties from: /jndi.properties
16:30:06,883 INFO  [Component] Component: org.jboss.seam.core.init, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.Init
16:30:06,887 INFO  [Initialization] two components with same name, higher precedence wins: org.jboss.seam.core.expressions
16:30:06,888 INFO  [Initialization] two components with same name, higher precedence wins: org.jboss.seam.jms.topicConnection
16:30:06,888 INFO  [Initialization] two components with same name, higher precedence wins: org.jboss.seam.web.parameters
16:30:06,888 INFO  [Initialization] two components with same name, higher precedence wins: org.jboss.seam.web.isUserInRole
16:30:06,888 INFO  [Initialization] two components with same name, higher precedence wins: org.jboss.seam.core.resourceLoader
16:30:06,888 INFO  [Initialization] two components with same name, higher precedence wins: org.jboss.seam.core.locale
16:30:06,888 INFO  [Initialization] two components with same name, higher precedence wins: org.jboss.seam.persistence.persistenceProvider
16:30:06,888 INFO  [Initialization] two components with same name, higher precedence wins: org.jboss.seam.core.manager
16:30:06,889 INFO  [Initialization] two components with same name, higher precedence wins: org.jboss.seam.transaction.synchronizations
16:30:06,889 INFO  [Initialization] two components with same name, higher precedence wins: org.jboss.seam.core.locale
16:30:06,889 INFO  [Initialization] two components with same name, higher precedence wins: org.jboss.seam.web.userPrincipal
16:30:06,922 INFO  [Component] Component: authenticator, scope: EVENT, type: JAVA_BEAN, class: org.domain.firstseam.session.Authenticator
16:30:06,928 INFO  [Component] Component: entityManager, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.persistence.ManagedPersistenceContext
16:30:06,929 INFO  [Component] Component: org.jboss.seam.async.asynchronousExceptionHandler, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.async.AsynchronousExceptionHandler
16:30:06,930 INFO  [Component] Component: org.jboss.seam.async.dispatcher, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.async.ThreadPoolDispatcher
16:30:06,932 INFO  [Component] Component: org.jboss.seam.captcha.captcha, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.captcha.Captcha
16:30:06,932 INFO  [Component] Component: org.jboss.seam.captcha.captchaImage, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.captcha.CaptchaImage
16:30:06,932 INFO  [Component] Component: org.jboss.seam.core.ConversationIdGenerator, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.ConversationIdGenerator
16:30:06,935 INFO  [Component] Component: org.jboss.seam.core.contexts, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.core.Contexts
16:30:06,936 INFO  [Component] Component: org.jboss.seam.core.conversation, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.core.Conversation
16:30:06,936 INFO  [Component] Component: org.jboss.seam.core.conversationEntries, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.core.ConversationEntries
16:30:06,937 INFO  [Component] Component: org.jboss.seam.core.conversationListFactory, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.core.ConversationList
16:30:06,937 INFO  [Component] Component: org.jboss.seam.core.conversationPropagation, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.core.ConversationPropagation
16:30:06,938 INFO  [Component] Component: org.jboss.seam.core.conversationStackFactory, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.core.ConversationStack
16:30:06,939 INFO  [Component] Component: org.jboss.seam.core.events, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.core.Events
16:30:06,940 INFO  [Component] Component: org.jboss.seam.core.expressions, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.faces.FacesExpressions
16:30:06,940 INFO  [Component] Component: org.jboss.seam.core.interpolator, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.core.Interpolator
16:30:06,940 INFO  [Component] Component: org.jboss.seam.core.locale, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.international.Locale
16:30:06,942 INFO  [Component] Component: org.jboss.seam.core.manager, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.faces.FacesManager
16:30:06,943 INFO  [Component] Component: org.jboss.seam.core.resourceBundle, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.core.ResourceBundle
16:30:06,943 INFO  [Component] Component: org.jboss.seam.core.resourceLoader, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.faces.ResourceLoader
16:30:06,943 INFO  [Component] Component: org.jboss.seam.core.validators, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.Validators
16:30:06,944 INFO  [Component] Component: org.jboss.seam.debug.contexts, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.debug.Contexts
16:30:06,946 INFO  [Component] Component: org.jboss.seam.debug.introspector, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.debug.Introspector
16:30:06,948 INFO  [Component] Component: org.jboss.seam.debug.jsf.debugRedirect, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.debug.jsf.DebugRedirect
16:30:06,948 INFO  [Component] Component: org.jboss.seam.document.documentStore, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.document.DocumentStore
16:30:06,950 INFO  [Component] Component: org.jboss.seam.el.referenceCache, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.el.JBossELReferenceCache
16:30:06,953 INFO  [Component] Component: org.jboss.seam.excel.excelFactory, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.excel.ExcelFactory
16:30:06,954 INFO  [Component] Component: org.jboss.seam.excel.exporter.excelExporter, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.excel.exporter.ExcelExporter
16:30:06,955 INFO  [Component] Component: org.jboss.seam.exception.exceptions, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.exception.Exceptions
16:30:06,956 INFO  [Component] Component: org.jboss.seam.faces.dataModels, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.faces.DataModels
16:30:06,959 INFO  [Component] Component: org.jboss.seam.faces.dateConverter, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.faces.DateConverter
16:30:06,960 INFO  [Component] Component: org.jboss.seam.faces.facesContext, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.faces.FacesContext
16:30:06,960 INFO  [Component] Component: org.jboss.seam.faces.facesPage, scope: PAGE, type: JAVA_BEAN, class: org.jboss.seam.faces.FacesPage
16:30:06,961 INFO  [Component] Component: org.jboss.seam.faces.httpError, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.faces.HttpError
16:30:06,962 INFO  [Component] Component: org.jboss.seam.faces.redirect, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.faces.Redirect
16:30:06,963 INFO  [Component] Component: org.jboss.seam.faces.renderer, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.ui.facelet.FaceletsRenderer
16:30:06,964 INFO  [Component] Component: org.jboss.seam.faces.switcher, scope: PAGE, type: JAVA_BEAN, class: org.jboss.seam.faces.Switcher
16:30:06,965 INFO  [Component] Component: org.jboss.seam.faces.uiComponent, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.faces.UiComponent
16:30:06,965 INFO  [Component] Component: org.jboss.seam.faces.validation, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.faces.Validation
16:30:06,966 INFO  [Component] Component: org.jboss.seam.framework.currentDate, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.framework.CurrentDate
16:30:06,969 INFO  [Component] Component: org.jboss.seam.framework.currentDatetime, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.framework.CurrentDatetime
16:30:06,971 INFO  [Component] Component: org.jboss.seam.framework.currentTime, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.framework.CurrentTime
16:30:06,974 INFO  [Component] Component: org.jboss.seam.graphicImage.image, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.ui.graphicImage.Image
16:30:06,975 INFO  [Component] Component: org.jboss.seam.international.localeSelector, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.international.LocaleSelector
16:30:06,975 INFO  [Component] Component: org.jboss.seam.international.messagesFactory, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.international.Messages
16:30:06,977 INFO  [Component] Component: org.jboss.seam.international.statusMessages, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.faces.FacesMessages
16:30:06,978 INFO  [Component] Component: org.jboss.seam.international.timeZone, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.international.TimeZone
16:30:06,979 INFO  [Component] Component: org.jboss.seam.international.timeZoneSelector, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.international.TimeZoneSelector
16:30:06,979 INFO  [Component] Component: org.jboss.seam.international.timeZones, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.international.TimeZones
16:30:06,982 INFO  [Component] Component: org.jboss.seam.mail.mailSession, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.mail.MailSession
16:30:06,983 INFO  [Component] Component: org.jboss.seam.navigation.pages, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.navigation.Pages
16:30:06,984 INFO  [Component] Component: org.jboss.seam.navigation.safeActions, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.navigation.SafeActions
16:30:06,984 INFO  [Component] Component: org.jboss.seam.persistence.persistenceContexts, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.persistence.PersistenceContexts
16:30:06,986 INFO  [Component] Component: org.jboss.seam.persistence.persistenceProvider, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.persistence.HibernatePersistenceProvider
16:30:06,988 INFO  [Component] Component: org.jboss.seam.remoting.gwt.gwtToSeamAdapter, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.remoting.gwt.GWTToSeamAdapter
16:30:06,989 INFO  [Component] Component: org.jboss.seam.remoting.messaging.SubscriptionRegistry.userTokens, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.remoting.messaging.UserTokens
16:30:06,991 INFO  [Component] Component: org.jboss.seam.remoting.remoting, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.remoting.Remoting
16:30:06,992 INFO  [Component] Component: org.jboss.seam.security.configurationFactory, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.security.Configuration
16:30:06,992 INFO  [Component] Component: org.jboss.seam.security.credentials, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.security.Credentials
16:30:06,993 INFO  [Component] Component: org.jboss.seam.security.entityPermissionChecker, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.security.EntityPermissionChecker
16:30:06,995 INFO  [Component] Component: org.jboss.seam.security.facesSecurityEvents, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.security.FacesSecurityEvents
16:30:06,995 INFO  [Component] Component: org.jboss.seam.security.identifierPolicy, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.security.permission.IdentifierPolicy
16:30:06,997 INFO  [Component] Component: org.jboss.seam.security.identity, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.security.Identity
16:30:06,998 INFO  [Component] Component: org.jboss.seam.security.identityManager, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.security.management.IdentityManager
16:30:06,999 INFO  [Component] Component: org.jboss.seam.security.management.roleAction, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.security.management.action.RoleAction
16:30:07,002 INFO  [Component] Component: org.jboss.seam.security.management.roleSearch, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.security.management.action.RoleSearch
16:30:07,004 INFO  [Component] Component: org.jboss.seam.security.management.userAction, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.security.management.action.UserAction
16:30:07,006 INFO  [Component] Component: org.jboss.seam.security.management.userSearch, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.security.management.action.UserSearch
16:30:07,010 INFO  [Component] Component: org.jboss.seam.security.passwordHash, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.security.management.PasswordHash
16:30:07,011 INFO  [Component] Component: org.jboss.seam.security.permission.permissionSearch, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.security.permission.action.PermissionSearch
16:30:07,014 INFO  [Component] Component: org.jboss.seam.security.permissionManager, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.security.permission.PermissionManager
16:30:07,015 INFO  [Component] Component: org.jboss.seam.security.permissionMapper, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.security.permission.PermissionMapper
16:30:07,016 INFO  [Component] Component: org.jboss.seam.security.persistentPermissionResolver, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.security.permission.PersistentPermissionResolver
16:30:07,016 INFO  [Component] Component: org.jboss.seam.security.rememberMe, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.security.RememberMe
16:30:07,017 INFO  [Component] Component: org.jboss.seam.security.ruleBasedPermissionResolver, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.security.permission.RuleBasedPermissionResolver
16:30:07,018 INFO  [Component] Component: org.jboss.seam.theme.themeFactory, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.theme.Theme
16:30:07,019 INFO  [Component] Component: org.jboss.seam.theme.themeSelector, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.theme.ThemeSelector
16:30:07,019 INFO  [Component] Component: org.jboss.seam.transaction.facesTransactionEvents, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.transaction.FacesTransactionEvents
16:30:07,020 INFO  [Component] Component: org.jboss.seam.transaction.synchronizations, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.transaction.SeSynchronizations
16:30:07,020 INFO  [Component] Component: org.jboss.seam.transaction.transaction, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.transaction.Transaction
16:30:07,022 INFO  [Component] Component: org.jboss.seam.ui.EntityConverter, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.ui.EntityConverter
16:30:07,023 INFO  [Component] Component: org.jboss.seam.ui.clientUidSelector, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.ui.ClientUidSelector
16:30:07,025 INFO  [Component] Component: org.jboss.seam.ui.entityIdentifierStore, scope: PAGE, type: JAVA_BEAN, class: org.jboss.seam.ui.EntityIdentifierStore
16:30:07,028 INFO  [Component] Component: org.jboss.seam.ui.entityLoader, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.ui.JpaEntityLoader
16:30:07,031 INFO  [Component] Component: org.jboss.seam.ui.facelet.faceletCompiler, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.ui.facelet.FaceletCompiler
16:30:07,031 INFO  [Component] Component: org.jboss.seam.ui.facelet.facesContextFactory, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.ui.facelet.RendererFacesContextFactory
16:30:07,032 INFO  [Component] Component: org.jboss.seam.ui.facelet.mockHttpSession, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.ui.facelet.HttpSessionManager
16:30:07,032 INFO  [Component] Component: org.jboss.seam.ui.facelet.mockServletContext, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.ui.facelet.ServletContextManager
16:30:07,033 INFO  [Component] Component: org.jboss.seam.ui.graphicImage.graphicImageResource, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.ui.graphicImage.GraphicImageResource
16:30:07,034 INFO  [Component] Component: org.jboss.seam.ui.graphicImage.graphicImageStore, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.ui.graphicImage.GraphicImageStore
16:30:07,035 INFO  [Component] Component: org.jboss.seam.ui.resource.webResource, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.ui.resource.WebResource
16:30:07,036 INFO  [Component] Component: org.jboss.seam.web.ajax4jsfFilter, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.web.Ajax4jsfFilter
16:30:07,036 INFO  [Component] Component: org.jboss.seam.web.ajax4jsfFilterInstantiator, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.ui.filter.Ajax4jsfFilterInstantiator
16:30:07,037 INFO  [Component] Component: org.jboss.seam.web.exceptionFilter, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.web.ExceptionFilter
16:30:07,037 INFO  [Component] Component: org.jboss.seam.web.hotDeployFilter, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.web.HotDeployFilter
16:30:07,037 INFO  [Component] Component: org.jboss.seam.web.identityFilter, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.web.IdentityFilter
16:30:07,038 INFO  [Component] Component: org.jboss.seam.web.isUserInRole, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.faces.IsUserInRole
16:30:07,038 INFO  [Component] Component: org.jboss.seam.web.loggingFilter, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.web.LoggingFilter
16:30:07,039 INFO  [Component] Component: org.jboss.seam.web.multipartFilter, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.web.MultipartFilter
16:30:07,040 INFO  [Component] Component: org.jboss.seam.web.parameters, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.faces.Parameters
16:30:07,040 INFO  [Component] Component: org.jboss.seam.web.redirectFilter, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.web.RedirectFilter
16:30:07,041 INFO  [Component] Component: org.jboss.seam.web.servletContexts, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.web.ServletContexts
16:30:07,041 INFO  [Component] Component: org.jboss.seam.web.session, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.web.Session
16:30:07,042 INFO  [Component] Component: org.jboss.seam.web.userPrincipal, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.faces.UserPrincipal
16:30:07,042 INFO  [Component] Component: securityRules, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.drools.RuleBase
16:30:07,061 WARN  [PersistentPermissionResolver] no permission store available - please install a PermissionStore with the name 'org.jboss.seam.security.jpaPermissionStore' if persistent permissions are required.
16:30:07,089 INFO  [SeamFilter] Initializing filter: org.jboss.seam.web.hotDeployFilter
16:30:07,089 INFO  [SeamFilter] Initializing filter: org.jboss.seam.web.loggingFilter
16:30:07,089 INFO  [SeamFilter] Initializing filter: org.jboss.seam.web.ajax4jsfFilter
16:30:07,092 WARN  [BaseXMLFilter] This version of RichFaces implementation compatible for JSF1.2, but running under JSF2.0
16:30:07,095 INFO  [CacheManager] Selected [org.ajax4jsf.cache.LRUMapCacheFactory] cache factory
16:30:07,096 INFO  [LRUMapCacheFactory] Creating LRUMap cache instance using parameters: {org.jboss.jbossfaces.JSF_CONFIG_NAME=Mojarra-1.2, facelets.DEVELOPMENT=true, com.sun.faces.duplicateJARPattern=^tmp\d+(\S*\.jar), org.richfaces.SKIN=blueSky, com.sun.faces.injectionProvider=org.jboss.web.jsf.integration.injection.JBossDelegatingInjectionProvider, javax.servlet.jsp.jstl.fmt.localizationContext=resources.application, resteasy.unwrapped.exceptions=javax.ejb.EJBException, javax.faces.STATE_SAVING_METHOD=client, javax.faces.DEFAULT_SUFFIX=.xhtml}
16:30:07,096 INFO  [LRUMapCacheFactory] Creating LRUMap cache instance of default capacity
16:30:07,101 INFO  [CacheManager] Selected [org.ajax4jsf.cache.LRUMapCacheFactory] cache factory
16:30:07,102 INFO  [LRUMapCacheFactory] Creating LRUMap cache instance using parameters: {org.jboss.jbossfaces.JSF_CONFIG_NAME=Mojarra-1.2, facelets.DEVELOPMENT=true, com.sun.faces.duplicateJARPattern=^tmp\d+(\S*\.jar), org.richfaces.SKIN=blueSky, com.sun.faces.injectionProvider=org.jboss.web.jsf.integration.injection.JBossDelegatingInjectionProvider, javax.servlet.jsp.jstl.fmt.localizationContext=resources.application, resteasy.unwrapped.exceptions=javax.ejb.EJBException, javax.faces.STATE_SAVING_METHOD=client, javax.faces.DEFAULT_SUFFIX=.xhtml}
16:30:07,102 INFO  [LRUMapCacheFactory] Creating LRUMap cache instance of default capacity
16:30:07,102 INFO  [SeamFilter] Initializing filter: org.jboss.seam.web.redirectFilter
16:30:07,102 INFO  [SeamFilter] Initializing filter: org.jboss.seam.web.exceptionFilter
16:30:07,102 INFO  [SeamFilter] Initializing filter: org.jboss.seam.web.multipartFilter
16:30:07,102 INFO  [SeamFilter] Initializing filter: org.jboss.seam.web.identityFilter
16:30:07,109 INFO  [SessionSpecContainer] Starting jboss.j2ee:jar=firstseam.war,name=TimerServiceDispatcher,service=EJB3
16:30:07,116 INFO  [EJBContainer] STARTED EJB: org.jboss.seam.async.TimerServiceDispatcher ejbName: TimerServiceDispatcher
16:30:07,151 INFO  [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:

	TimerServiceDispatcher/local - EJB3.x Default Local Business Interface
	TimerServiceDispatcher/local-org.jboss.seam.async.LocalTimerServiceDispatcher - EJB3.x Local Business Interface

16:30:07,154 WARN  [TimerServiceContainer] EJBTHREE-2193: using deprecated TimerServiceFactory for restoring timers
16:30:07,546 INFO  [SessionSpecContainer] Starting jboss.j2ee:jar=firstseam.war,name=EjbSynchronizations,service=EJB3
16:30:07,583 INFO  [EJBContainer] STARTED EJB: org.jboss.seam.transaction.EjbSynchronizations ejbName: EjbSynchronizations
16:30:07,592 INFO  [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:

	EjbSynchronizations/local - EJB3.x Default Local Business Interface
	EjbSynchronizations/local-org.jboss.seam.transaction.LocalEjbSynchronizations - EJB3.x Local Business Interface

16:30:07,635 INFO  [service] Removing bootstrap log handlers
16:30:07,698 ERROR [ProfileServiceBootstrap] Failed to load profile:: org.jboss.deployers.client.spi.IncompleteDeploymentException: Summary of incomplete deployments (SEE PREVIOUS ERRORS FOR DETAILS):

DEPLOYMENTS MISSING DEPENDENCIES:
  Deployment "persistence.unit:unitName=firstseam.war#firstseam" is missing the following dependencies:
    Dependency "jboss.jca:name=firstseamDatasource,service=DataSourceBinding" (should be in state "Create", but is actually in state "** NOT FOUND Depends on 'jboss.jca:name=firstseamDatasource,service=DataSourceBinding' **")

DEPLOYMENTS IN ERROR:
  Deployment "jboss.jca:name=firstseamDatasource,service=DataSourceBinding" is in error due to the following reason(s): ** NOT FOUND Depends on 'jboss.jca:name=firstseamDatasource,service=DataSourceBinding' **

	at org.jboss.deployers.plugins.deployers.DeployersImpl.checkComplete(DeployersImpl.java:1228) [:2.2.0.GA]
	at org.jboss.deployers.plugins.main.MainDeployerImpl.checkComplete(MainDeployerImpl.java:905) [:2.2.0.GA]
	at org.jboss.system.server.profileservice.deployers.MainDeployerPlugin.checkComplete(MainDeployerPlugin.java:87) [:6.0.0.Final]
	at org.jboss.profileservice.deployment.ProfileDeployerPluginRegistry.checkAllComplete(ProfileDeployerPluginRegistry.java:107) [:0.2.2]
	at org.jboss.system.server.profileservice.bootstrap.BasicProfileServiceBootstrap.start(BasicProfileServiceBootstrap.java:135) [:6.0.0.Final]
	at org.jboss.system.server.profileservice.bootstrap.BasicProfileServiceBootstrap.start(BasicProfileServiceBootstrap.java:56) [:6.0.0.Final]
	at org.jboss.bootstrap.impl.base.server.AbstractServer.startBootstraps(AbstractServer.java:827) [jboss-bootstrap-impl-base.jar:2.1.0-alpha-5]
	at org.jboss.bootstrap.impl.base.server.AbstractServer$StartServerTask.run(AbstractServer.java:417) [jboss-bootstrap-impl-base.jar:2.1.0-alpha-5]
	at java.lang.Thread.run(Thread.java:662) [:1.6.0_26]

16:30:07,725 INFO  [org.apache.coyote.http11.Http11Protocol] Starting Coyote HTTP/1.1 on http-localhost%2F127.0.0.1-8080
16:30:07,728 INFO  [org.apache.coyote.ajp.AjpProtocol] Starting Coyote AJP/1.3 on ajp-localhost%2F127.0.0.1-8009
16:30:07,731 INFO  [org.jboss.bootstrap.impl.base.server.AbstractServer] JBossAS [6.0.0.Final "Neo"] Started in 41s:720ms

Eu consegui fazer rodar minha primeira aplicação usando JBoss Seam.
O meu erro acredito que estava nas bibliotecas do JSF.
Criei um projeto utilizando as bibliotecas do Servidor de Aplicação e agora funcionou.

Obrigado por tentarem me ajudar.