[Tomcat, HTTPD, Servlets & JSP] - Re: Unwaring web app - leaves some files in the war
by PeterJ
Wow, lots of posts. Let me see what I can answer.
First, I did see where you stated that in 4.2.x that the work directory does not contain web-inf, but as I pointed out you never said that the app worked correctly there, though you did now. The presence of the web-inf directory under the work directory does not necessarily indicate a problem - the class loader could still load the classes from the web-inf/lib directory in the exploded directories, in which case the code could work even though the web-inf/lib and its jars are in the work directory.
I have added a conf/config.properties to my war. And I tried the exploded ear with the exploded war in 4.2.x, 5.0 beta2 and a early version on beta3. And I tried it on Linux and XP. The results?
4.2.x beta2 beta3
| _____ _____ _____
| XP works broke broke
| Linux works works works
It is somewhat interesting that the deployer is not working correctly on Windows. Just for grins, I tried beta3 on Vista, it's broke there too.
As I mentioned earlier, deployment in beta2 is broken in so many ways. Congratulations on finding yet another way that it is broken. And the issue with redeployment not happing when you touch application.xml is yet another way deployment is broken in beta2. But hey, hot deployment was not working at all in beta1. You should try the touching application.xml thing in beta3 when it comes out (I'm guessing next week).
One final bit of info: in 5.0, the hot deployment configuration is found in the file server/xxx/conf/bootstrap-beans.xml, look for a bean named HDScanner. In addition, there are several other beans that aid in deployment.
So what should you do about your problem. I suggest that either:
a) you deploy in Linux
b) you fall back to 4.2.x
The behavior of the deployer on Windows in the 5.0 betas is clearly wrong, not sure if there is a JIRA issue for that problem (anyone from RedHat want to chime in on that?).
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114741#4114741
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4114741
18 years, 4 months
[JBoss Messaging] - Connecting MDB to remote topic
by paduffy
Must connect EJB3 MDB in server X to remote topic on server Y.
|
| First confirmed that server Y is up and topic deployed (via JMXConsole to Y).
|
| I added a Remote provider to deploy/jms-ds.xml on server X.
|
| <!-- Remote JMS provider -->
| <mbean code="org.jboss.jms.jndi.JMSProviderLoader"
| name="jboss.messaging:service=JMSProviderLoader,name=RemoteJMSProvider,server=remotehost">
| <attribute name="ProviderName">RemoteJMSProvider</attribute>
| <attribute name="ProviderAdapterClass">org.jboss.jms.jndi.JNDIProviderAdapter</attribute>
| <!-- The connection factory -->
| <attribute name="FactoryRef">java:/XAConnectionFactory</attribute>
| <!-- The queue connection factory -->
| <attribute name="QueueFactoryRef">java:/XAConnectionFactory</attribute>
| <!-- The topic factory -->
| <attribute name="TopicFactoryRef">java:/XAConnectionFactory</attribute>
| <!-- Connect to JNDI on the host "the-remote-host-name" port 1099-->
| <attribute name="Properties">
| java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
| java.naming.factory.url.pkgs=org.jnp.interfaces
| java.naming.provider.url=10.86.147.208:1099
| </attribute>
| </mbean>
|
| Annotations on the topic listener MDB as below (running on server X).
|
|
| @MessageDriven(activationConfig = {
| @ActivationConfigProperty(propertyName = "destinationType", propertyValue = "javax.jms.Topic"),
| @ActivationConfigProperty(propertyName = "destination", propertyValue = "topic/edgeGroupRequestTopic"),
| @ActivationConfigProperty(propertyName = "providerAdapterJNDI", propertyValue="java:/RemoteJMSProvider"),
| @ActivationConfigProperty(propertyName = "maxSession", propertyValue = "60"),
| // TBD: need ability to setup selector at installation/configuration time.
| @ActivationConfigProperty(propertyName = "messageSelector", propertyValue = "EDU_ID IN ('ALL', 'EDU_0001')")})
|
| AS startup on server X gives the following error when MDB tries to connect to remote topic (typical of a JNDI problem?).
|
|
| 2007-12-19 18:58:37,342 WARN [org.jboss.ejb3.mdb.MessagingContainer] Could not find the topic destination-jndi-name=/topic/edgeGroupRequestTopic
| 2007-12-19 18:58:37,342 WARN [org.jboss.ejb3.mdb.MessagingContainer] destination not found: topic/topic/edgeGroupRequestTopic reason: javax.naming.NameNotFoundException: topic not bound
| 2007-12-19 18:58:37,342 WARN [org.jboss.ejb3.mdb.MessagingContainer] creating a new temporary destination: topic/topic/edgeGroupRequestTopic
| 2007-12-19 18:58:37,358 WARN [org.jboss.system.ServiceController] Problem starting service jboss.j2ee:ear=mdpe-1.0-SNAPSHOT.ear,jar=eduRequestRouter-ejb-1.0-SNAPSHOT.jar,name=EDURequestRouterMDB,service=EJB3
| javax.management.InstanceNotFoundException: jboss.mq:service=DestinationManager is not registered.
| at org.jboss.mx.server.registry.BasicMBeanRegistry.get(BasicMBeanRegistry.java:523)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:653)
| at org.jboss.ejb3.JmxClientKernelAbstraction.invoke(JmxClientKernelAbstraction.java:44)
| at org.jboss.ejb3.jms.DestinationManagerJMSDestinationFactory.createDestination(DestinationManagerJMSDestinationFactory.java:75)
| at org.jboss.ejb3.mdb.MessagingContainer.createTemporaryDestination(MessagingContainer.java:557)
| at org.jboss.ejb3.mdb.MessagingContainer.createDestination(MessagingContainer.java:496)
|
|
| What am I doing wrong?
|
|
| --------------------
|
| Further DEBUG turned up...llosk like the DefaultJMSProvider is being used tot he remote lookup instead of RemoteJMSProvider?
|
|
|
| 2007-12-20 11:51:08,744 DEBUG [org.jboss.ejb3.mdb.MessagingContainer] Initializing
| 2007-12-20 11:51:08,744 DEBUG [org.jboss.ejb3.mdb.MessagingContainer] Looking up provider adapter: java:/DefaultJMSProvider
| 2007-12-20 11:51:08,744 DEBUG [org.jboss.ejb3.mdb.MessagingContainer] Provider adapter: org.jboss.jms.jndi.JNDIProviderAdapter@1781288
| 2007-12-20 11:51:08,744 DEBUG [org.jboss.ejb3.mdb.MessagingContainer] context: javax.naming.InitialContext@e8a298
| 2007-12-20 11:51:08,744 DEBUG [org.jboss.ejb3.mdb.MessagingContainer] Got destination type Topic for EDURequestRouterMDB
| 2007-12-20 11:51:08,744 DEBUG [org.jboss.ejb3.mdb.MessagingContainer] jndiSuffix: topic/edgeGroupRequestTopic
| 2007-12-20 11:51:08,744 WARN [org.jboss.ejb3.mdb.MessagingContainer] Could not find the topic destination-jndi-name=/topic/edgeGroupRequestTopic
| 2007-12-20 11:51:08,744 WARN [org.jboss.ejb3.mdb.MessagingContainer] destination not found: topic/topic/edgeGroupRequestTopic reason: javax.naming.NameNotFoundException: topic not bound
| 2007-12-20 11:51:08,744 WARN [org.jboss.ejb3.mdb.MessagingContainer] creating a new temporary destination: topic/topic/edgeGroupRequestTopic
| 2007-12-20 11:51:08,759 DEBUG [org.jboss.ejb3.mdb.MdbDelegateWrapper] Starting failed jboss.j2ee:ear=mdpe-1.0-SNAPSHOT.ear,jar=eduRequestRouter-ejb-1.0-SNAPSHOT.jar,name=EDURequestRouterMDB,service=EJB3
| javax.management.InstanceNotFoundException: jboss.mq:service=DestinationManager is not registered.
| at org.jboss.mx.server.registry.BasicMBeanRegistry.get(BasicMBeanRegistry.java:523)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:653)
|
|
|
|
| [code]
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114736#4114736
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4114736
18 years, 4 months
[JBoss Seam] - Re: problem with Integration test in Seam 2.0.0 GA
by seamdev
It seems my app files (build/classes) are never scanned, no wonder it can't find authenticator component. I don't understand why?
| [testng] [Parser] Running:
| [testng] C:\proj\testsrc\com\login\test\testng.xml
| [testng] WARN [org.jboss.mx.loading.UnifiedLoaderRepository3] Tried to add non-URLClassLoader. Ignored
| [testng] INFO [com.arjuna.ats.jbossatx.jta.TransactionManagerService] JBossTS Transaction Service (JTA version) - JBoss Inc.
| [testng] INFO [com.arjuna.ats.jbossatx.jta.TransactionManagerService] Setting up property manager MBean and JMX layer
| [testng] WARN [com.arjuna.ats.arjuna.logging.arjLoggerI18N] [com.arjuna.ats.arjuna.coordinator.TxControl_1] - Name of XA node not defined. Using -639de6b2:1d7b:476a9c18:0
| [testng] INFO [com.arjuna.ats.arjuna.logging.arjLoggerI18N] [com.arjuna.ats.arjuna.recovery.TransactionStatusManager_1] - Starting service com.arjuna.ats.arjuna.recovery.ActionStatusService on port 7547
| [testng] INFO [com.arjuna.ats.arjuna.logging.arjLogger] TransactionStatusManagerItem - host: 156.98.25.78 port: 7547
| [testng] INFO [com.arjuna.ats.arjuna.logging.arjLoggerI18N] [com.arjuna.ats.arjuna.recovery.TransactionStatusManager_3] - TransactionStatusManager started on port 7547 with service com.arjuna.ats.arjuna.recovery.ActionStatusService
| [testng] INFO [com.arjuna.ats.tsmx.logging.tsmxLogger] Registering mbean for module 'arjuna'
| [testng] INFO [com.arjuna.ats.tsmx.logging.tsmxLogger] Initialising JMX agent com.arjuna.ats.internal.jbossatx.agent.LocalJBossAgentImpl
| [testng] INFO [com.arjuna.ats.jbossatx.jta.TransactionManagerService] Starting recovery manager
| [testng] INFO [com.arjuna.ats.arjuna.logging.arjLogger]
| [testng] --- Start RecoveryActivators
| [testng] INFO [com.arjuna.ats.arjuna.logging.arjLoggerI18N] [com.arjuna.ats.internal.arjuna.recovery.ready] RecoveryManagerImple is ready on port 7,548
| [testng] INFO [com.arjuna.ats.jbossatx.jta.TransactionManagerService] Recovery manager started
| [testng] INFO [com.arjuna.ats.jbossatx.jta.TransactionManagerService] Binding TransactionManager JNDI Reference
| [testng] INFO [org.jboss.resource.deployers.RARDeployment] Required license terms exist, view vfsfile:/C:/proj/lib/bootstrap/deploy/jboss-local-jdbc.rar/META-INF/ra.xml
| [testng] INFO [org.jboss.resource.connectionmanager.ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=DefaultDS' to JNDI name 'java:DefaultDS'
| [testng] INFO [org.jboss.resource.deployers.RARDeployment] Required license terms exist, view vfsfile:/C:/proj/lib/bootstrap/deploy/jboss-xa-jdbc.rar/META-INF/ra.xml
| [testng] INFO [org.jboss.resource.deployers.RARDeployment] Required license terms exist, view vfsfile:/C:/proj/lib/bootstrap/deploy/jms-ra.rar/META-INF/ra.xml
| [testng] WARN [org.jboss.messaging.core.plugin.JDBCPersistenceManager]
| [testng] JBoss Messaging Warning: DataSource connection transaction isolation should be READ_COMMITTED, but it is currently NONE.
| [testng] Using an isolation level less strict than READ_COMMITTED may lead to data consistency problems.
| [testng] Using an isolation level more strict than READ_COMMITTED may lead to deadlock.
| [testng] INFO [org.jboss.jms.server.ServerPeer] ServerPeer[0] creating server peer with ID 0
| [testng] INFO [org.jboss.jms.server.ServerPeer] JBoss Messaging 1.2.0.sp1 server [0] started
| [testng] INFO [org.jboss.jms.server.connectionfactory.ConnectionFactory] Connector bisocket://156.98.25.78:4457 has leasing enabled, lease period 10000 milliseconds
| [testng] INFO [org.jboss.jms.server.connectionfactory.ConnectionFactory] [/ConnectionFactory, /XAConnectionFactory, java:/ConnectionFactory, java:/XAConnectionFactory] started
| [testng] INFO [org.jboss.jms.server.destination.TopicService] Topic[/topic/TopicWithOwnDLQAndExpiryQueue] started, fullSize=200000, pageSize=2000, downCacheSize=2000
| [testng] INFO [org.jboss.jms.server.destination.QueueService] Queue[/queue/ExpiryQueue] started, fullSize=200000, pageSize=2000, downCacheSize=2000
| [testng] INFO [org.jboss.jms.server.destination.QueueService] Queue[/queue/PrivateDLQ] started, fullSize=200000, pageSize=2000, downCacheSize=2000
| [testng] INFO [org.jboss.jms.server.destination.QueueService] Queue[/queue/QueueWithOwnDLQAndExpiryQueue] started, fullSize=200000, pageSize=2000, downCacheSize=2000
| [testng] INFO [org.jboss.jms.server.destination.QueueService] Queue[/queue/DLQ] started, fullSize=200000, pageSize=2000, downCacheSize=2000
| [testng] INFO [org.jboss.jms.server.destination.QueueService] Queue[/queue/PrivateExpiryQueue] started, fullSize=200000, pageSize=2000, downCacheSize=2000
| [testng] INFO [org.jboss.jms.server.destination.QueueService] Queue[/queue/QueueWithOwnRedeliveryDelay] started, fullSize=200000, pageSize=2000, downCacheSize=2000
| [testng] INFO [org.jboss.jms.server.destination.TopicService] Topic[/topic/TopicWithOwnRedeliveryDelay] started, fullSize=200000, pageSize=2000, downCacheSize=2000
| [testng] INFO [org.jboss.resource.connectionmanager.ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=JmsXA' to JNDI name 'java:JmsXA'
| [testng] INFO [org.jboss.ejb3.MCKernelAbstraction] installing bean: jboss.j2ee:jar=jboss-seam.jar,name=TimerServiceDispatcher,service=EJB3 with dependencies:
| [testng] INFO [org.jboss.ejb3.EJBContainer] STARTED EJB: org.jboss.seam.async.TimerServiceDispatcher ejbName: TimerServiceDispatcher
| [testng] WARN [org.jboss.ejb3.timerservice.jboss.JBossTimerServiceFactory] TIMER SERVICE IS NOT INSTALLED
| [testng] INFO [org.jboss.ejb3.MCKernelAbstraction] installing bean: jboss.j2ee:jar=jboss-seam.jar,name=EjbSynchronizations,service=EJB3 with dependencies:
| [testng] INFO [org.jboss.ejb3.EJBContainer] STARTED EJB: org.jboss.seam.transaction.EjbSynchronizations ejbName: EjbSynchronizations
| [testng] INFO [org.jboss.seam.deployment.Scanner] scanning: /C:/proj/lib/seam/jboss-seam-remoting.jar
| [testng] INFO [org.jboss.seam.deployment.Scanner] scanning: /C:/proj/lib/seam/jboss-seam-ioc.jar
| [testng] INFO [org.jboss.seam.deployment.Scanner] scanning: /C:/proj/lib/seam/jboss-seam.jar
| [testng] INFO [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/international, package: org.jboss.seam.international, prefix: org.jboss.seam.international
| [testng] INFO [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/security, package: org.jboss.seam.security, prefix: org.jboss.seam.security
| [testng] INFO [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/persistence, package: org.jboss.seam.persistence, prefix: org.jboss.seam.persistence
| [testng] INFO [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/remoting, package: org.jboss.seam.remoting, prefix: org.jboss.seam.remoting
| [testng] INFO [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/core, package: org.jboss.seam.core, prefix: org.jboss.seam.core
| [testng] INFO [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/async, package: org.jboss.seam.async, prefix: org.jboss.seam.async
| [testng] INFO [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/drools, package: org.jboss.seam.drools, prefix: org.jboss.seam.drools
| [testng] INFO [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/spring, package: org.jboss.seam.ioc.spring, prefix: org.jboss.seam.ioc.spring
| [testng] INFO [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/mail, package: org.jboss.seam.mail, prefix: org.jboss.seam.mail
| [testng] INFO [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/transaction, package: org.jboss.seam.transaction, prefix: org.jboss.seam.transaction
| [testng] INFO [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/web, package: org.jboss.seam.web, prefix: org.jboss.seam.web
| [testng] INFO [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/theme, package: org.jboss.seam.theme, prefix: org.jboss.seam.theme
| [testng] INFO [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/navigation, package: org.jboss.seam.navigation, prefix: org.jboss.seam.navigation
| [testng] INFO [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/bpm, package: org.jboss.seam.bpm, prefix: org.jboss.seam.bpm
| [testng] INFO [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/framework, package: org.jboss.seam.framework, prefix: org.jboss.seam.core.framework
| [testng] INFO [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/jms, package: org.jboss.seam.jms, prefix: org.jboss.seam.jms
| [testng] INFO [org.jboss.seam.deployment.Scanner] scanning: /C:/proj/lib/seam/jboss-seam-mail.jar
| [testng] INFO [org.jboss.seam.deployment.Scanner] scanning: /C:/proj/lib/seam/jboss-seam-pdf.jar
| [testng] INFO [org.jboss.seam.deployment.Scanner] scanning: /C:/proj/lib/seam/jboss-seam-debug.jar
| [testng] INFO [org.jboss.seam.deployment.Scanner] scanning: C:\proj\WebContent\WEB-INF\classes
| [testng] INFO [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/pdf, package: org.jboss.seam.pdf, prefix:
| [testng] INFO [org.jboss.seam.init.Initialization] reading /WEB-INF/components.xml
| [testng] INFO [org.jboss.seam.init.Initialization] reading jar:file:/C:/proj/lib/seam/jboss-seam-ioc.jar!/META-INF/components.xml
| [testng] INFO [org.jboss.seam.init.Initialization] reading jar:file:/C:/proj/lib/seam/jboss-seam-remoting.jar!/META-INF/components.xml
| [testng] INFO [org.jboss.seam.init.Initialization] reading jar:file:/C:/proj/lib/seam/jboss-seam.jar!/META-INF/components.xml
| [testng] INFO [org.jboss.seam.init.Initialization] reading properties from: /seam.properties
| [testng] INFO [org.jboss.seam.init.Initialization] reading properties from: /jndi.properties
| [testng] INFO [org.jboss.seam.init.Initialization] initializing Seam
| [testng] INFO [org.jboss.seam.deployment.Scanner] scanning: /C:/proj/lib/seam/jboss-seam-mail.jar
| [testng] INFO [org.jboss.seam.deployment.Scanner] scanning: /C:/proj/lib/seam/jboss-seam-pdf.jar
| [testng] INFO [org.jboss.seam.deployment.Scanner] scanning: /C:/proj/lib/seam/jboss-seam-debug.jar
| [testng] INFO [org.jboss.seam.deployment.Scanner] scanning: C:\proj\WebContent\WEB-INF\classes
| [testng] INFO [org.jboss.seam.deployment.Scanner] scanning: /C:/proj/lib/seam/jboss-seam-remoting.jar
| [testng] INFO [org.jboss.seam.deployment.Scanner] scanning: /C:/proj/lib/seam/jboss-seam-ioc.jar
| [testng] INFO [org.jboss.seam.deployment.Scanner] scanning: /C:/proj/lib/seam/jboss-seam.jar
| [testng] INFO [org.jboss.seam.init.Initialization] two components with same name, higher precedence wins: org.jboss.seam.core.manager
| [testng] INFO [org.jboss.seam.init.Initialization] two components with same name, higher precedence wins: org.jboss.seam.security.identity
| [testng] INFO [org.jboss.seam.init.Initialization] two components with same name, higher precedence wins: org.jboss.seam.core.resourceLoader
| [testng] INFO [org.jboss.seam.init.Initialization] two components with same name, higher precedence wins: org.jboss.seam.web.isUserInRole
| [testng] INFO [org.jboss.seam.init.Initialization] two components with same name, higher precedence wins: org.jboss.seam.core.locale
| [testng] INFO [org.jboss.seam.init.Initialization] two components with same name, higher precedence wins: org.jboss.seam.web.parameters
| [testng] INFO [org.jboss.seam.init.Initialization] two components with same name, higher precedence wins: org.jboss.seam.persistence.persistenceProvider
| [testng] INFO [org.jboss.seam.init.Initialization] two components with same name, higher precedence wins: org.jboss.seam.web.userPrincipal
| [testng] INFO [org.jboss.seam.init.Initialization] two components with same name, higher precedence wins: org.jboss.seam.core.expressions
| [testng] INFO [org.jboss.seam.init.Initialization] two components with same name, higher precedence wins: org.jboss.seam.core.locale
| [testng] INFO [org.jboss.seam.init.Initialization] two components with same name, higher precedence wins: org.jboss.seam.transaction.synchronizations
| [testng] INFO [org.jboss.seam.init.Initialization] two components with same name, higher precedence wins: org.jboss.seam.bpm.businessProcess
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.core.init, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.Init
| [testng] INFO [org.jboss.seam.init.Initialization] Installing components...
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.async.dispatcher, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.async.ThreadPoolDispatcher
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.core.contexts, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.core.Contexts
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.core.conversation, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.core.Conversation
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.core.conversationEntries, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.core.ConversationEntries
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.core.conversationListFactory, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.core.ConversationList
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.core.conversationPropagation, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.core.ConversationPropagation
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.core.conversationStackFactory, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.core.ConversationStack
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.core.events, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.core.Events
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.core.expressions, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.faces.FacesExpressions
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.core.interpolator, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.core.Interpolator
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.core.locale, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.international.Locale
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.core.manager, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.faces.FacesManager
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.core.resourceBundle, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.core.ResourceBundle
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.core.resourceLoader, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.faces.ResourceLoader
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.core.validators, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.Validators
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.debug.contexts, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.debug.Contexts
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.debug.hotDeployFilter, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.debug.hot.HotDeployFilter
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.debug.introspector, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.debug.Introspector
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.exception.exceptions, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.exception.Exceptions
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.faces.dataModels, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.faces.DataModels
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.faces.facesContext, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.faces.FacesContext
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.faces.facesMessages, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.faces.FacesMessages
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.faces.facesPage, scope: PAGE, type: JAVA_BEAN, class: org.jboss.seam.faces.FacesPage
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.faces.httpError, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.faces.HttpError
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.faces.redirect, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.faces.Redirect
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.faces.switcher, scope: PAGE, type: JAVA_BEAN, class: org.jboss.seam.faces.Switcher
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.faces.uiComponent, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.faces.UiComponent
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.faces.validation, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.faces.Validation
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.framework.currentDate, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.framework.CurrentDate
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.framework.currentDatetime, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.framework.CurrentDatetime
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.framework.currentTime, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.framework.CurrentTime
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.international.localeSelector, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.international.LocaleSelector
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.international.messagesFactory, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.international.Messages
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.international.timeZone, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.international.TimeZone
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.international.timeZoneSelector, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.international.TimeZoneSelector
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.navigation.pages, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.navigation.Pages
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.navigation.safeActions, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.navigation.SafeActions
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.pdf.documentStore, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.pdf.DocumentStore
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.persistence.persistenceContexts, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.persistence.PersistenceContexts
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.persistence.persistenceProvider, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.persistence.HibernatePersistenceProvider
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.remoting.gwt.gwtToSeamAdapter, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.remoting.gwt.GWTToSeamAdapter
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.remoting.remoting, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.remoting.Remoting
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.security.configurationFactory, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.security.Configuration
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.security.identity, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.security.Identity
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.theme.themeFactory, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.theme.Theme
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.theme.themeSelector, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.theme.ThemeSelector
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.transaction.synchronizations, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.transaction.SeSynchronizations
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.transaction.transaction, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.transaction.Transaction
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.web.exceptionFilter, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.web.ExceptionFilter
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.web.isUserInRole, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.faces.IsUserInRole
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.web.loggingFilter, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.web.LoggingFilter
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.web.multipartFilter, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.web.MultipartFilter
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.web.parameters, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.faces.Parameters
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.web.redirectFilter, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.web.RedirectFilter
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.web.servletContexts, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.web.ServletContexts
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.web.session, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.web.Session
| [testng] INFO [org.jboss.seam.Component] Component: org.jboss.seam.web.userPrincipal, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.faces.UserPrincipal
| [testng] INFO [org.jboss.seam.contexts.Contexts] starting up: org.jboss.seam.remoting.remoting
| [testng] INFO [org.jboss.seam.init.Initialization] done initializing Seam
| [testng] INFO [org.jboss.seam.servlet.SeamFilter] Initializing filter: org.jboss.seam.web.redirectFilter
| [testng] INFO [org.jboss.seam.servlet.SeamFilter] Initializing filter: org.jboss.seam.web.exceptionFilter
| [testng] INFO [org.jboss.seam.servlet.SeamFilter] Initializing filter: org.jboss.seam.web.multipartFilter
| [testng] INFO [org.jboss.seam.servlet.SeamFilter] Initializing filter: org.jboss.seam.web.loggingFilter
| [testng] INFO [org.jboss.seam.servlet.SeamFilter] Initializing filter: org.jboss.seam.debug.hotDeployFilter
| [testng] INFO [org.jboss.seam.contexts.Contexts] starting up: org.jboss.seam.web.session
| [testng] INFO [org.jboss.seam.contexts.Contexts] starting up: org.jboss.seam.security.identity
| [testng] ERROR [org.jboss.seam.security.jaas.SeamLoginModule] Error invoking login method
| [testng] javax.el.PropertyNotFoundException: Target Unreachable, identifier 'authenticator' resolved to null
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114732#4114732
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4114732
18 years, 4 months