[EJB 3.0] - Persistence context injection problem - is it a bug ?
by cyril.joui@supinfo.com
Hello,
I have a very strange problem.
I try to deploy 2 applications (in the same JBoss AS) with same session and entity beans (and 1 persistence unit for each application of course !).
Application which deploies first, deploies well, but the second one try to use the unit context of the first application !
Here is the log (first application which deploies) :
anonymous wrote :
| 09:49:15,219 INFO [EARDeployer] Init J2EE application: file:/home/popom/Documents/labosun/2006-2007/Devs/LaboSite/jboss/server/default/deploy/AppEjb1EAR.ear
| 09:49:15,935 INFO [Ejb3Deployment] EJB3 deployment time took: 531
| 09:49:16,004 INFO [JmxKernelAbstraction] installing MBean: persistence.units:ear=AppEjb1EAR.ear,jar=AppEjb1.jar,unitName=app1EM with dependencies:
| 09:49:16,006 INFO [JmxKernelAbstraction] jboss.jca:name=MysqlDS,service=DataSourceBinding
| 09:49:16,110 INFO [Version] Hibernate EntityManager 3.2.0.GA
| 09:49:16,192 INFO [Version] Hibernate Annotations 3.2.0.GA
| 09:49:16,202 INFO [Environment] Hibernate 3.2.0.ga
| 09:49:16,210 INFO [Environment] hibernate.properties not found
| 09:49:16,212 INFO [Environment] Bytecode provider name : javassist
| 09:49:16,218 INFO [Environment] using JDK 1.4 java.sql.Timestamp handling
| 09:49:16,438 INFO [Ejb3Configuration] found EJB3 Entity bean: com.supinfo.entities.Category
| 09:49:16,443 WARN [Ejb3Configuration] Persistence provider caller does not implements the EJB3 spec correctly. PersistenceUnitInfo.getNewTempClassLoader() is null.
| 09:49:16,617 INFO [Configuration] Reading mappings from resource: META-INF/orm.xml
| 09:49:16,620 INFO [Ejb3Configuration] [PersistenceUnit: app1EM] no META-INF/orm.xml found
| 09:49:16,758 INFO [AnnotationBinder] Binding entity from annotated class: com.supinfo.entities.Category
| 09:49:16,878 INFO [EntityBinder] Bind entity com.supinfo.entities.Category on table LS3_CATEGORY
| 09:49:17,190 INFO [ConnectionProviderFactory] Initializing connection provider: org.hibernate.ejb.connection.InjectedDataSourceConnectionProvider
| 09:49:17,194 INFO [InjectedDataSourceConnectionProvider] Using provided datasource
| 09:49:17,878 INFO [SettingsFactory] RDBMS: MySQL, version: 5.0.24a-Debian_9-log
| 09:49:17,878 INFO [SettingsFactory] JDBC driver: MySQL-AB JDBC Driver, version: mysql-connector-java-3.1.11 ( $Date: 2005-09-21 18:20:03 +0000 (Wed, 21 Sep 2005) $, $Revision: 4287 $ )
| 09:49:17,974 INFO [Dialect] Using dialect: org.hibernate.dialect.MySQLDialect
| 09:49:17,981 INFO [TransactionFactoryFactory] Transaction strategy: org.hibernate.ejb.transaction.JoinableCMTTransactionFactory
| 09:49:17,985 INFO [TransactionManagerLookupFactory] instantiating TransactionManagerLookup: org.hibernate.transaction.JBossTransactionManagerLookup
| 09:49:17,989 INFO [TransactionManagerLookupFactory] instantiated TransactionManagerLookup
| 09:49:17,990 INFO [SettingsFactory] Automatic flush during beforeCompletion(): disabled
| 09:49:17,990 INFO [SettingsFactory] Automatic session close at end of transaction: disabled
| 09:49:17,990 INFO [SettingsFactory] JDBC batch size: 15
| 09:49:17,990 INFO [SettingsFactory] JDBC batch updates for versioned data: disabled
| 09:49:17,991 INFO [SettingsFactory] Scrollable result sets: enabled
| 09:49:17,992 INFO [SettingsFactory] JDBC3 getGeneratedKeys(): enabled
| 09:49:17,992 INFO [SettingsFactory] Connection release mode: auto
| 09:49:17,993 INFO [SettingsFactory] Maximum outer join fetch depth: 2
| 09:49:17,994 INFO [SettingsFactory] Default batch fetch size: 1
| 09:49:17,994 INFO [SettingsFactory] Generate SQL with comments: disabled
| 09:49:17,994 INFO [SettingsFactory] Order SQL updates by primary key: disabled
| 09:49:17,994 INFO [SettingsFactory] Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
| 09:49:17,999 INFO [ASTQueryTranslatorFactory] Using ASTQueryTranslatorFactory
| 09:49:17,999 INFO [SettingsFactory] Query language substitutions: {}
| 09:49:18,000 INFO [SettingsFactory] JPA-QL strict compliance: enabled
| 09:49:18,000 INFO [SettingsFactory] Second-level cache: enabled
| 09:49:18,000 INFO [SettingsFactory] Query cache: disabled
| 09:49:18,000 INFO [SettingsFactory] Cache provider: org.hibernate.cache.HashtableCacheProvider
| 09:49:18,002 INFO [SettingsFactory] Optimize cache for minimal puts: disabled
| 09:49:18,003 INFO [SettingsFactory] Structured second-level cache entries: disabled
| 09:49:18,090 INFO [SettingsFactory] Statistics: disabled
| 09:49:18,091 INFO [SettingsFactory] Deleted entity synthetic identifier rollback: disabled
| 09:49:18,092 INFO [SettingsFactory] Default entity-mode: pojo
| 09:49:18,201 INFO [SessionFactoryImpl] building session factory
| 09:49:18,540 INFO [SessionFactoryObjectFactory] Not binding factory to JNDI, no JNDI name configured
| 09:49:18,547 INFO [SchemaUpdate] Running hbm2ddl schema update
| 09:49:18,547 INFO [SchemaUpdate] fetching database metadata
| 09:49:18,548 INFO [SchemaUpdate] updating schema
| 09:49:18,645 INFO [TableMetadata] table found: MYTESTS.LS3_CATEGORY
| 09:49:18,646 INFO [TableMetadata] columns: [code, idcateg, label, language]
| 09:49:18,646 INFO [TableMetadata] foreign keys: []
| 09:49:18,646 INFO [TableMetadata] indexes: [primary]
| 09:49:18,647 INFO [SchemaUpdate] schema update complete
| 09:49:18,651 INFO [NamingHelper] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
| 09:49:18,795 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:ear=AppEjb1EAR.ear,jar=AppEjb1.jar,name=HelloServiceBean,service=EJB3 with dependencies:
| 09:49:18,796 INFO [JmxKernelAbstraction] persistence.units:ear=AppEjb1EAR.ear,jar=AppEjb1.jar,unitName=app1EM
| 09:49:19,054 INFO [EJBContainer] STARTED EJB: com.supinfo.session.bean.HelloServiceBean ejbName: HelloServiceBean
| 09:49:19,147 INFO [EJB3Deployer] Deployed: file:/home/popom/Documents/labosun/2006-2007/Devs/LaboSite/jboss/server/default/tmp/deploy/tmp1902AppEjb1EAR.ear-contents/AppEjb1.jar
|
And the second one (same application) :
anonymous wrote :
| 09:49:19,158 INFO [EARDeployer] Init J2EE application: file:/home/popom/Documents/labosun/2006-2007/Devs/LaboSite/jboss/server/default/deploy/AppEjb2EAR.ear
| 09:49:19,304 INFO [Ejb3Deployment] EJB3 deployment time took: 15
| 09:49:19,308 INFO [JmxKernelAbstraction] installing MBean: persistence.units:ear=AppEjb2EAR.ear,jar=AppEjb2.jar,unitName=app2EM with dependencies:
| 09:49:19,308 INFO [JmxKernelAbstraction] jboss.jca:name=MysqlDS,service=DataSourceBinding
| 09:49:19,399 INFO [Ejb3Configuration] found EJB3 Entity bean: com.supinfo.entities.Category
| 09:49:19,400 WARN [Ejb3Configuration] Persistence provider caller does not implements the EJB3 spec correctly. PersistenceUnitInfo.getNewTempClassLoader() is null.
| 09:49:19,401 INFO [Configuration] Reading mappings from resource: META-INF/orm.xml
| 09:49:19,403 INFO [Ejb3Configuration] [PersistenceUnit: app2EM] no META-INF/orm.xml found
| 09:49:19,403 INFO [AnnotationBinder] Binding entity from annotated class: com.supinfo.entities.Category
| 09:49:19,404 INFO [EntityBinder] Bind entity com.supinfo.entities.Category on table LS3_CATEGORY
| 09:49:19,634 INFO [ConnectionProviderFactory] Initializing connection provider: org.hibernate.ejb.connection.InjectedDataSourceConnectionProvider
| 09:49:19,635 INFO [InjectedDataSourceConnectionProvider] Using provided datasource
| 09:49:19,635 INFO [SettingsFactory] RDBMS: MySQL, version: 5.0.24a-Debian_9-log
| 09:49:19,635 INFO [SettingsFactory] JDBC driver: MySQL-AB JDBC Driver, version: mysql-connector-java-3.1.11 ( $Date: 2005-09-21 18:20:03 +0000 (Wed, 21 Sep 2005) $, $Revision: 4287 $ )
| 09:49:19,636 INFO [Dialect] Using dialect: org.hibernate.dialect.MySQLDialect
| 09:49:19,636 INFO [TransactionFactoryFactory] Transaction strategy: org.hibernate.ejb.transaction.JoinableCMTTransactionFactory
| 09:49:19,636 INFO [TransactionManagerLookupFactory] instantiating TransactionManagerLookup: org.hibernate.transaction.JBossTransactionManagerLookup
| 09:49:19,636 INFO [TransactionManagerLookupFactory] instantiated TransactionManagerLookup
| 09:49:19,637 INFO [SettingsFactory] Automatic flush during beforeCompletion(): disabled
| 09:49:19,637 INFO [SettingsFactory] Automatic session close at end of transaction: disabled
| 09:49:19,637 INFO [SettingsFactory] JDBC batch size: 15
| 09:49:19,637 INFO [SettingsFactory] JDBC batch updates for versioned data: disabled
| 09:49:19,637 INFO [SettingsFactory] Scrollable result sets: enabled
| 09:49:19,637 INFO [SettingsFactory] JDBC3 getGeneratedKeys(): enabled
| 09:49:19,638 INFO [SettingsFactory] Connection release mode: auto
| 09:49:19,638 INFO [SettingsFactory] Maximum outer join fetch depth: 2
| 09:49:19,638 INFO [SettingsFactory] Default batch fetch size: 1
| 09:49:19,638 INFO [SettingsFactory] Generate SQL with comments: disabled
| 09:49:19,638 INFO [SettingsFactory] Order SQL updates by primary key: disabled
| 09:49:19,638 INFO [SettingsFactory] Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
| 09:49:19,638 INFO [ASTQueryTranslatorFactory] Using ASTQueryTranslatorFactory
| 09:49:19,639 INFO [SettingsFactory] Query language substitutions: {}
| 09:49:19,640 INFO [SettingsFactory] JPA-QL strict compliance: enabled
| 09:49:19,640 INFO [SettingsFactory] Second-level cache: enabled
| 09:49:19,640 INFO [SettingsFactory] Query cache: disabled
| 09:49:19,640 INFO [SettingsFactory] Cache provider: org.hibernate.cache.HashtableCacheProvider
| 09:49:19,640 INFO [SettingsFactory] Optimize cache for minimal puts: disabled
| 09:49:19,640 INFO [SettingsFactory] Structured second-level cache entries: disabled
| 09:49:19,641 INFO [SettingsFactory] Statistics: disabled
| 09:49:19,641 INFO [SettingsFactory] Deleted entity synthetic identifier rollback: disabled
| 09:49:19,641 INFO [SettingsFactory] Default entity-mode: pojo
| 09:49:19,651 INFO [SessionFactoryImpl] building session factory
| 09:49:19,658 INFO [SessionFactoryObjectFactory] Not binding factory to JNDI, no JNDI name configured
| 09:49:19,658 INFO [SchemaUpdate] Running hbm2ddl schema update
| 09:49:19,659 INFO [SchemaUpdate] fetching database metadata
| 09:49:19,659 INFO [SchemaUpdate] updating schema
| 09:49:19,669 INFO [TableMetadata] table found: MYTESTS.LS3_CATEGORY
| 09:49:19,670 INFO [TableMetadata] columns: [code, idcateg, label, language]
| 09:49:19,671 INFO [TableMetadata] foreign keys: []
| 09:49:19,671 INFO [TableMetadata] indexes: [primary]
| 09:49:19,671 INFO [SchemaUpdate] schema update complete
| 09:49:19,671 INFO [NamingHelper] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
| 09:49:19,673 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:ear=AppEjb2EAR.ear,jar=AppEjb2.jar,name=HelloServiceBean,service=EJB3 with dependencies:
|
| 09:49:19,673 INFO [JmxKernelAbstraction] persistence.units:unitName=app1EM
|
| 09:49:19,675 INFO [EJB3Deployer] Deployed: file:/home/popom/Documents/labosun/2006-2007/Devs/LaboSite/jboss/server/default/tmp/deploy/tmp1903AppEjb2EAR.ear-contents/AppEjb2.jar
| 09:49:19,764 INFO [EARDeployer] Started J2EE application: file:/home/popom/Documents/labosun/2006-2007/Devs/LaboSite/jboss/server/default/deploy/AppEjb2EAR.ear
|
|
Second application try to use app1EM instead of app2EM !
Here is the Session Bean of app1 :
anonymous wrote :
| @Stateless
| @Local(HelloServiceLocal.class)
| public class HelloServiceBean implements HelloServiceLocal {
|
| @PersistenceContext(unitName = "app1EM")
| private EntityManager em;
|
| public String sayHello(String name) {
| System.out.println("EM " + em);
| return "hello : " + name;
| }
| }
|
Here is the session bean of app2 :
anonymous wrote :
| @Stateless
| @Local(HelloServiceLocal.class)
| public class HelloServiceBean implements HelloServiceLocal {
|
| @PersistenceContext(unitName = "app2EM")
| private EntityManager em;
|
| public String sayHello(String name) {
| System.out.println("EM " + em);
| return "hello : " + name;
| }
| }
|
Does anyone can help me please ?
It seems to work on JBoss 4.0.4RC1 ... I try to use JBoss 4.0.5.GA now but I have this problem ...
Thanks by advance !!
Cyril
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4004736#4004736
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4004736
19 years, 3 months
[Clustering/JBoss] - Clustering Issue / SEAM
by mikepkp17
maybe someone can give me a pointer what to check to solve this issue.
I am working with JBoss-4.0.5.GA installed with the latest JEMS-installer. I installed the EJB3-cluster profile and I am using the latest SEAM-release 1.1.1.GA.
In my application I have several SFSBs annotated with @Clustered and after a certain amount of time the following huge stacktrace is printed.
The class which is not found can be any of my SFSBs so it is not always the same class which is not found. The my.TestSFSBean has 3 private String members and a private static Collection where SelectItem implements Serializable.
Any idea?
btw. I already posted the same question in the SEAM forum..
| 16:10:48,031 ERROR [STDERR] java.lang.ClassNotFoundException: No ClassLoaders found for: my.TestSFSB
| ean
| 16:10:48,031 ERROR [STDERR] at org.jboss.mx.loading.LoadMgr3.beginLoadTask(LoadMgr3.java:212)
| 16:10:48,031 ERROR [STDERR] at org.jboss.mx.loading.RepositoryClassLoader.loadClassImpl(RepositoryC
| lassLoader.java:511)
| 16:10:48,031 ERROR [STDERR] at org.jboss.mx.loading.RepositoryClassLoader.loadClass(RepositoryClass
| Loader.java:405)
| 16:10:48,031 ERROR [STDERR] at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
| 16:10:48,031 ERROR [STDERR] at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
| 16:10:48,031 ERROR [STDERR] at java.lang.Class.forName0(Native Method)
| 16:10:48,031 ERROR [STDERR] at java.lang.Class.forName(Class.java:242)
| 16:10:48,031 ERROR [STDERR] at org.jboss.serial.io.JBossObjectInputStream.resolveClass(JBossObjectI
| nputStream.java:141)
| 16:10:48,046 ERROR [STDERR] at org.jboss.serial.io.JBossObjectInputStream$1.resolveClass(JBossObjec
| tInputStream.java:127)
| 16:10:48,046 ERROR [STDERR] at org.jboss.serial.classmetamodel.ClassMetamodelFactory.resolveClassBy
| Name(ClassMetamodelFactory.java:266)
| 16:10:48,046 ERROR [STDERR] at org.jboss.serial.classmetamodel.ClassMetamodelFactory.getClassMetaDa
| ta(ClassMetamodelFactory.java:289)
| 16:10:48,046 ERROR [STDERR] at org.jboss.serial.classmetamodel.StreamingClass.readStream(StreamingC
| lass.java:72)
| 16:10:48,046 ERROR [STDERR] at org.jboss.serial.objectmetamodel.ObjectDescriptorFactory.readObjectD
| escriptionFromStreaming(ObjectDescriptorFactory.java:381)
| 16:10:48,046 ERROR [STDERR] at org.jboss.serial.objectmetamodel.ObjectDescriptorFactory.objectFromD
| escription(ObjectDescriptorFactory.java:82)
| 16:10:48,046 ERROR [STDERR] at org.jboss.serial.objectmetamodel.DataContainer$DataContainerDirectIn
| put.readObject(DataContainer.java:643)
| 16:10:48,046 ERROR [STDERR] at org.jboss.serial.persister.ArrayPersister.readObjectArray(ArrayPersi
| ster.java:196)
| 16:10:48,046 ERROR [STDERR] at org.jboss.serial.persister.ArrayPersister.readData(ArrayPersister.ja
| va:172)
| 16:10:48,046 ERROR [STDERR] at org.jboss.serial.objectmetamodel.ObjectDescriptorFactory.readObjectD
| escriptionFromStreaming(ObjectDescriptorFactory.java:412)
| 16:10:48,046 ERROR [STDERR] at org.jboss.serial.objectmetamodel.ObjectDescriptorFactory.objectFromD
| escription(ObjectDescriptorFactory.java:82)
| 16:10:48,046 ERROR [STDERR] at org.jboss.serial.objectmetamodel.DataContainer$DataContainerDirectIn
| put.readObject(DataContainer.java:643)
| 16:10:48,046 ERROR [STDERR] at org.jboss.serial.io.JBossObjectInputStream.readObjectOverride(JBossO
| bjectInputStream.java:163)
| 16:10:48,046 ERROR [STDERR] at java.io.ObjectInputStream.readObject(ObjectInputStream.java:333)
| 16:10:48,046 ERROR [STDERR] at org.jboss.serial.io.MarshalledObject.get(MarshalledObject.java:68)
| 16:10:48,046 ERROR [STDERR] at org.jboss.ejb3.stateful.StatefulBeanContext.extractBeanAndIntercepto
| rs(StatefulBeanContext.java:342)
| 16:10:48,046 ERROR [STDERR] at org.jboss.ejb3.stateful.StatefulBeanContext.getInterceptorInstances(
| StatefulBeanContext.java:333)
| 16:10:48,046 ERROR [STDERR] at org.jboss.ejb3.interceptor.LifecycleInvocationContextImpl.getLifecyc
| leInvocationContext(LifecycleInvocationContextImpl.java:65)
| 16:10:48,046 ERROR [STDERR] at org.jboss.ejb3.interceptor.LifecycleInterceptorHandler.postActivate(
| LifecycleInterceptorHandler.java:143)
| 16:10:48,046 ERROR [STDERR] at org.jboss.ejb3.stateful.StatefulContainer.invokePostActivate(Statefu
| lContainer.java:376)
| 16:10:48,046 ERROR [STDERR] at org.jboss.ejb3.stateful.StatefulBeanContext.postActivate(StatefulBea
| nContext.java:183)
| 16:10:48,046 ERROR [STDERR] at org.jboss.ejb3.cache.tree.StatefulTreeCache$ClusteredStatefulCacheLi
| stener.nodeActivate(StatefulTreeCache.java:275)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.TreeCache.notifyNodeActivate(TreeCache.java:5714)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.ActivationInterceptor.remove(Activation
| Interceptor.java:162)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.ActivationInterceptor.invoke(Activation
| Interceptor.java:152)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
|
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.UnlockInterceptor.invoke(UnlockIntercep
| tor.java:32)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
|
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.ReplicationInterceptor.invoke(Replicati
| onInterceptor.java:34)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
|
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.PassivationInterceptor.invoke(Passivati
| onInterceptor.java:69)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
|
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.TxInterceptor.handleNonTxMethod(TxInter
| ceptor.java:345)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.TxInterceptor.invoke(TxInterceptor.java
| :156)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
|
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.CacheMgmtInterceptor.invoke(CacheMgmtIn
| terceptor.java:183)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.TreeCache.invokeMethod(TreeCache.java:5520)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.TreeCache.get(TreeCache.java:3367)
| 16:10:48,046 ERROR [STDERR] at org.jboss.ejb3.cache.tree.StatefulTreeCache$ClusteredStatefulCacheLi
| stener.nodePassivate(StatefulTreeCache.java:285)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.TreeCache.notifyNodePassivate(TreeCache.java:5739)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.PassivationInterceptor.invoke(Passivati
| onInterceptor.java:62)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
|
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.TxInterceptor.handleNonTxMethod(TxInter
| ceptor.java:345)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.TxInterceptor.invoke(TxInterceptor.java
| :156)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
|
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.CacheMgmtInterceptor.invoke(CacheMgmtIn
| terceptor.java:179)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.TreeCache.invokeMethod(TreeCache.java:5520)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.TreeCache.evict(TreeCache.java:3716)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.eviction.BaseEvictionPolicy.evict(BaseEvictionPolicy
| .java:34)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.eviction.BaseEvictionAlgorithm.evictCacheNode(BaseEv
| ictionAlgorithm.java:210)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.eviction.LRUAlgorithm.evict(LRUAlgorithm.java:90)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.eviction.LRUAlgorithm.prune(LRUAlgorithm.java:121)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.eviction.BaseEvictionAlgorithm.process(BaseEvictionA
| lgorithm.java:98)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.eviction.EvictionTimerTask.run(EvictionTimerTask.jav
| a:80)
| 16:10:48,046 ERROR [STDERR] at java.util.TimerThread.mainLoop(Timer.java:512)
| 16:10:48,046 ERROR [STDERR] at java.util.TimerThread.run(Timer.java:462)
| 16:10:48,046 INFO [TxInterceptor] There was a problem handling this request
| java.lang.RuntimeException: java.lang.RuntimeException: java.io.IOException: No ClassLoaders found f
| or: my.TestSFSBean
| at org.jboss.ejb3.interceptor.LifecycleInterceptorHandler.postActivate(LifecycleInterceptorHandler.
| java:152)
| at org.jboss.ejb3.stateful.StatefulContainer.invokePostActivate(StatefulContainer.java:376)
| at org.jboss.ejb3.stateful.StatefulBeanContext.postActivate(StatefulBeanContext.java:183)
| at org.jboss.ejb3.cache.tree.StatefulTreeCache$ClusteredStatefulCacheListener.nodeActivate(Stateful
| TreeCache.java:275)
| at org.jboss.cache.TreeCache.notifyNodeActivate(TreeCache.java:5714)
| at org.jboss.cache.interceptors.ActivationInterceptor.remove(ActivationInterceptor.java:162)
| at org.jboss.cache.interceptors.ActivationInterceptor.invoke(ActivationInterceptor.java:152)
| at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
| at org.jboss.cache.interceptors.UnlockInterceptor.invoke(UnlockInterceptor.java:32)
| at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
| at org.jboss.cache.interceptors.ReplicationInterceptor.invoke(ReplicationInterceptor.java:34)
| at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
| at org.jboss.cache.interceptors.PassivationInterceptor.invoke(PassivationInterceptor.java:69)
| at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
| at org.jboss.cache.interceptors.TxInterceptor.handleNonTxMethod(TxInterceptor.java:345)
| at org.jboss.cache.interceptors.TxInterceptor.invoke(TxInterceptor.java:156)
| at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
| at org.jboss.cache.interceptors.CacheMgmtInterceptor.invoke(CacheMgmtInterceptor.java:183)
| at org.jboss.cache.TreeCache.invokeMethod(TreeCache.java:5520)
| at org.jboss.cache.TreeCache.get(TreeCache.java:3367)
| at org.jboss.ejb3.cache.tree.StatefulTreeCache$ClusteredStatefulCacheListener.nodePassivate(Statefu
| lTreeCache.java:285)
| at org.jboss.cache.TreeCache.notifyNodePassivate(TreeCache.java:5739)
| at org.jboss.cache.interceptors.PassivationInterceptor.invoke(PassivationInterceptor.java:62)
| at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
| at org.jboss.cache.interceptors.TxInterceptor.handleNonTxMethod(TxInterceptor.java:345)
| at org.jboss.cache.interceptors.TxInterceptor.invoke(TxInterceptor.java:156)
| at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
| at org.jboss.cache.interceptors.CacheMgmtInterceptor.invoke(CacheMgmtInterceptor.java:179)
| at org.jboss.cache.TreeCache.invokeMethod(TreeCache.java:5520)
| at org.jboss.cache.TreeCache.evict(TreeCache.java:3716)
| at org.jboss.cache.eviction.BaseEvictionPolicy.evict(BaseEvictionPolicy.java:34)
| at org.jboss.cache.eviction.BaseEvictionAlgorithm.evictCacheNode(BaseEvictionAlgorithm.java:210)
| at org.jboss.cache.eviction.LRUAlgorithm.evict(LRUAlgorithm.java:90)
| at org.jboss.cache.eviction.LRUAlgorithm.prune(LRUAlgorithm.java:121)
| at org.jboss.cache.eviction.BaseEvictionAlgorithm.process(BaseEvictionAlgorithm.java:98)
| at org.jboss.cache.eviction.EvictionTimerTask.run(EvictionTimerTask.java:80)
| at java.util.TimerThread.mainLoop(Timer.java:512)
| at java.util.TimerThread.run(Timer.java:462)
| Caused by: java.lang.RuntimeException: java.io.IOException: No ClassLoaders found for: my.TestSFSBea
| n
| at org.jboss.ejb3.stateful.StatefulBeanContext.extractBeanAndInterceptors(StatefulBeanContext.java:
| 367)
| at org.jboss.ejb3.stateful.StatefulBeanContext.getInterceptorInstances(StatefulBeanContext.java:333
| )
| at org.jboss.ejb3.interceptor.LifecycleInvocationContextImpl.getLifecycleInvocationContext(Lifecycl
| eInvocationContextImpl.java:65)
| at org.jboss.ejb3.interceptor.LifecycleInterceptorHandler.postActivate(LifecycleInterceptorHandler.
| java:143)
| ... 37 more
| Caused by: java.io.IOException: No ClassLoaders found for: my.TestSFSBean
| at org.jboss.serial.classmetamodel.ClassMetamodelFactory.getClassMetaData(ClassMetamodelFactory.jav
| a:332)
| at org.jboss.serial.classmetamodel.StreamingClass.readStream(StreamingClass.java:72)
| at org.jboss.serial.objectmetamodel.ObjectDescriptorFactory.readObjectDescriptionFromStreaming(Obje
| ctDescriptorFactory.java:381)
| at org.jboss.serial.objectmetamodel.ObjectDescriptorFactory.objectFromDescription(ObjectDescriptorF
| actory.java:82)
| at org.jboss.serial.objectmetamodel.DataContainer$DataContainerDirectInput.readObject(DataContainer
| .java:643)
| at org.jboss.serial.persister.ArrayPersister.readObjectArray(ArrayPersister.java:196)
| at org.jboss.serial.persister.ArrayPersister.readData(ArrayPersister.java:172)
| at org.jboss.serial.objectmetamodel.ObjectDescriptorFactory.readObjectDescriptionFromStreaming(Obje
| ctDescriptorFactory.java:412)
| at org.jboss.serial.objectmetamodel.ObjectDescriptorFactory.objectFromDescription(ObjectDescriptorF
| actory.java:82)
| at org.jboss.serial.objectmetamodel.DataContainer$DataContainerDirectInput.readObject(DataContainer
| .java:643)
| at org.jboss.serial.io.JBossObjectInputStream.readObjectOverride(JBossObjectInputStream.java:163)
| at java.io.ObjectInputStream.readObject(ObjectInputStream.java:333)
| at org.jboss.serial.io.MarshalledObject.get(MarshalledObject.java:68)
| at org.jboss.ejb3.stateful.StatefulBeanContext.extractBeanAndInterceptors(StatefulBeanContext.java:
| 342)
| ... 40 more
| Caused by: java.lang.ClassNotFoundException: No ClassLoaders found for: my.TestSFSBean
| at org.jboss.mx.loading.LoadMgr3.beginLoadTask(LoadMgr3.java:212)
| at org.jboss.mx.loading.RepositoryClassLoader.loadClassImpl(RepositoryClassLoader.java:511)
| at org.jboss.mx.loading.RepositoryClassLoader.loadClass(RepositoryClassLoader.java:405)
| at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
| at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
| at java.lang.Class.forName0(Native Method)
| at java.lang.Class.forName(Class.java:242)
| at org.jboss.serial.classmetamodel.ClassMetamodelFactory.resolveClassByName(ClassMetamodelFactory.j
| ava:269)
| at org.jboss.serial.classmetamodel.ClassMetamodelFactory.getClassMetaData(ClassMetamodelFactory.jav
| a:289)
| ... 53 more
| 16:10:48,062 INFO [TxInterceptor] There was a problem handling this request
| java.lang.RuntimeException: java.lang.RuntimeException: java.lang.RuntimeException: java.io.IOExcept
| ion: No ClassLoaders found for: my.TestSFSBean
| at org.jboss.cache.TreeCache.invokeMethod(TreeCache.java:5526)
| at org.jboss.cache.TreeCache.get(TreeCache.java:3367)
| at org.jboss.ejb3.cache.tree.StatefulTreeCache$ClusteredStatefulCacheListener.nodePassivate(Statefu
| lTreeCache.java:285)
| at org.jboss.cache.TreeCache.notifyNodePassivate(TreeCache.java:5739)
| at org.jboss.cache.interceptors.PassivationInterceptor.invoke(PassivationInterceptor.java:62)
| at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
| at org.jboss.cache.interceptors.TxInterceptor.handleNonTxMethod(TxInterceptor.java:345)
| at org.jboss.cache.interceptors.TxInterceptor.invoke(TxInterceptor.java:156)
| at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
| at org.jboss.cache.interceptors.CacheMgmtInterceptor.invoke(CacheMgmtInterceptor.java:179)
| at org.jboss.cache.TreeCache.invokeMethod(TreeCache.java:5520)
| at org.jboss.cache.TreeCache.evict(TreeCache.java:3716)
| at org.jboss.cache.eviction.BaseEvictionPolicy.evict(BaseEvictionPolicy.java:34)
| at org.jboss.cache.eviction.BaseEvictionAlgorithm.evictCacheNode(BaseEvictionAlgorithm.java:210)
| at org.jboss.cache.eviction.LRUAlgorithm.evict(LRUAlgorithm.java:90)
| at org.jboss.cache.eviction.LRUAlgorithm.prune(LRUAlgorithm.java:121)
| at org.jboss.cache.eviction.BaseEvictionAlgorithm.process(BaseEvictionAlgorithm.java:98)
| at org.jboss.cache.eviction.EvictionTimerTask.run(EvictionTimerTask.java:80)
| at java.util.TimerThread.mainLoop(Timer.java:512)
| at java.util.TimerThread.run(Timer.java:462)
| Caused by: java.lang.RuntimeException: java.lang.RuntimeException: java.io.IOException: No ClassLoad
| ers found for: my.TestSFSBean
| at org.jboss.ejb3.interceptor.LifecycleInterceptorHandler.postActivate(LifecycleInterceptorHandler.
| java:152)
| at org.jboss.ejb3.stateful.StatefulContainer.invokePostActivate(StatefulContainer.java:376)
| at org.jboss.ejb3.stateful.StatefulBeanContext.postActivate(StatefulBeanContext.java:183)
| at org.jboss.ejb3.cache.tree.StatefulTreeCache$ClusteredStatefulCacheListener.nodeActivate(Stateful
| TreeCache.java:275)
| at org.jboss.cache.TreeCache.notifyNodeActivate(TreeCache.java:5714)
| at org.jboss.cache.interceptors.ActivationInterceptor.remove(ActivationInterceptor.java:162)
| at org.jboss.cache.interceptors.ActivationInterceptor.invoke(ActivationInterceptor.java:152)
| at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
| at org.jboss.cache.interceptors.UnlockInterceptor.invoke(UnlockInterceptor.java:32)
| at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
| at org.jboss.cache.interceptors.ReplicationInterceptor.invoke(ReplicationInterceptor.java:34)
| at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
| at org.jboss.cache.interceptors.PassivationInterceptor.invoke(PassivationInterceptor.java:69)
| at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
| at org.jboss.cache.interceptors.TxInterceptor.handleNonTxMethod(TxInterceptor.java:345)
| at org.jboss.cache.interceptors.TxInterceptor.invoke(TxInterceptor.java:156)
| at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
| at org.jboss.cache.interceptors.CacheMgmtInterceptor.invoke(CacheMgmtInterceptor.java:183)
| at org.jboss.cache.TreeCache.invokeMethod(TreeCache.java:5520)
| ... 19 more
| Caused by: java.lang.RuntimeException: java.io.IOException: No ClassLoaders found for: my.TestSFSBea
| n
| at org.jboss.ejb3.stateful.StatefulBeanContext.extractBeanAndInterceptors(StatefulBeanContext.java:
| 367)
| at org.jboss.ejb3.stateful.StatefulBeanContext.getInterceptorInstances(StatefulBeanContext.java:333
| )
| at org.jboss.ejb3.interceptor.LifecycleInvocationContextImpl.getLifecycleInvocationContext(Lifecycl
| eInvocationContextImpl.java:65)
| at org.jboss.ejb3.interceptor.LifecycleInterceptorHandler.postActivate(LifecycleInterceptorHandler.
| java:143)
| ... 37 more
| Caused by: java.io.IOException: No ClassLoaders found for: my.TestSFSBean
| at org.jboss.serial.classmetamodel.ClassMetamodelFactory.getClassMetaData(ClassMetamodelFactory.jav
| a:332)
| at org.jboss.serial.classmetamodel.StreamingClass.readStream(StreamingClass.java:72)
| at org.jboss.serial.objectmetamodel.ObjectDescriptorFactory.readObjectDescriptionFromStreaming(Obje
| ctDescriptorFactory.java:381)
| at org.jboss.serial.objectmetamodel.ObjectDescriptorFactory.objectFromDescription(ObjectDescriptorF
| actory.java:82)
| at org.jboss.serial.objectmetamodel.DataContainer$DataContainerDirectInput.readObject(DataContainer
| .java:643)
| at org.jboss.serial.persister.ArrayPersister.readObjectArray(ArrayPersister.java:196)
| at org.jboss.serial.persister.ArrayPersister.readData(ArrayPersister.java:172)
| at org.jboss.serial.objectmetamodel.ObjectDescriptorFactory.readObjectDescriptionFromStreaming(Obje
| ctDescriptorFactory.java:412)
| at org.jboss.serial.objectmetamodel.ObjectDescriptorFactory.objectFromDescription(ObjectDescriptorF
| actory.java:82)
| at org.jboss.serial.objectmetamodel.DataContainer$DataContainerDirectInput.readObject(DataContainer
| .java:643)
| at org.jboss.serial.io.JBossObjectInputStream.readObjectOverride(JBossObjectInputStream.java:163)
| at java.io.ObjectInputStream.readObject(ObjectInputStream.java:333)
| at org.jboss.serial.io.MarshalledObject.get(MarshalledObject.java:68)
| at org.jboss.ejb3.stateful.StatefulBeanContext.extractBeanAndInterceptors(StatefulBeanContext.java:
| 342)
| ... 40 more
| Caused by: java.lang.ClassNotFoundException: No ClassLoaders found for: my.TestSFSBean
| at org.jboss.mx.loading.LoadMgr3.beginLoadTask(LoadMgr3.java:212)
| at org.jboss.mx.loading.RepositoryClassLoader.loadClassImpl(RepositoryClassLoader.java:511)
| at org.jboss.mx.loading.RepositoryClassLoader.loadClass(RepositoryClassLoader.java:405)
| at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
| at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
| at java.lang.Class.forName0(Native Method)
| at java.lang.Class.forName(Class.java:242)
| at org.jboss.serial.classmetamodel.ClassMetamodelFactory.resolveClassByName(ClassMetamodelFactory.j
| ava:269)
| at org.jboss.serial.classmetamodel.ClassMetamodelFactory.getClassMetaData(ClassMetamodelFactory.jav
| a:289)
| ... 53 more
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4004727#4004727
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4004727
19 years, 3 months
[EJB 3.0] - Clustering issue / SEAM
by mikepkp17
maybe someone can give me a pointer what to check to solve this issue.
I am working with JBoss-4.0.5.GA installed with the latest JEMS-installer. I installed the EJB3-cluster profile and I am using the latest SEAM-release 1.1.1.GA.
In my application I have several SFSBs annotated with @Clustered and after a certain amount of time the following huge stacktrace is printed.
The class which is not found can be any of my SFSBs so it is not always the same class which is not found. The my.TestSFSBean has 3 private String members and a private static Collection where SelectItem implements Serializable.
Any idea?
btw. I already posted the same question in the SEAM forum..
| 16:10:48,031 ERROR [STDERR] java.lang.ClassNotFoundException: No ClassLoaders found for: my.TestSFSB
| ean
| 16:10:48,031 ERROR [STDERR] at org.jboss.mx.loading.LoadMgr3.beginLoadTask(LoadMgr3.java:212)
| 16:10:48,031 ERROR [STDERR] at org.jboss.mx.loading.RepositoryClassLoader.loadClassImpl(RepositoryC
| lassLoader.java:511)
| 16:10:48,031 ERROR [STDERR] at org.jboss.mx.loading.RepositoryClassLoader.loadClass(RepositoryClass
| Loader.java:405)
| 16:10:48,031 ERROR [STDERR] at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
| 16:10:48,031 ERROR [STDERR] at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
| 16:10:48,031 ERROR [STDERR] at java.lang.Class.forName0(Native Method)
| 16:10:48,031 ERROR [STDERR] at java.lang.Class.forName(Class.java:242)
| 16:10:48,031 ERROR [STDERR] at org.jboss.serial.io.JBossObjectInputStream.resolveClass(JBossObjectI
| nputStream.java:141)
| 16:10:48,046 ERROR [STDERR] at org.jboss.serial.io.JBossObjectInputStream$1.resolveClass(JBossObjec
| tInputStream.java:127)
| 16:10:48,046 ERROR [STDERR] at org.jboss.serial.classmetamodel.ClassMetamodelFactory.resolveClassBy
| Name(ClassMetamodelFactory.java:266)
| 16:10:48,046 ERROR [STDERR] at org.jboss.serial.classmetamodel.ClassMetamodelFactory.getClassMetaDa
| ta(ClassMetamodelFactory.java:289)
| 16:10:48,046 ERROR [STDERR] at org.jboss.serial.classmetamodel.StreamingClass.readStream(StreamingC
| lass.java:72)
| 16:10:48,046 ERROR [STDERR] at org.jboss.serial.objectmetamodel.ObjectDescriptorFactory.readObjectD
| escriptionFromStreaming(ObjectDescriptorFactory.java:381)
| 16:10:48,046 ERROR [STDERR] at org.jboss.serial.objectmetamodel.ObjectDescriptorFactory.objectFromD
| escription(ObjectDescriptorFactory.java:82)
| 16:10:48,046 ERROR [STDERR] at org.jboss.serial.objectmetamodel.DataContainer$DataContainerDirectIn
| put.readObject(DataContainer.java:643)
| 16:10:48,046 ERROR [STDERR] at org.jboss.serial.persister.ArrayPersister.readObjectArray(ArrayPersi
| ster.java:196)
| 16:10:48,046 ERROR [STDERR] at org.jboss.serial.persister.ArrayPersister.readData(ArrayPersister.ja
| va:172)
| 16:10:48,046 ERROR [STDERR] at org.jboss.serial.objectmetamodel.ObjectDescriptorFactory.readObjectD
| escriptionFromStreaming(ObjectDescriptorFactory.java:412)
| 16:10:48,046 ERROR [STDERR] at org.jboss.serial.objectmetamodel.ObjectDescriptorFactory.objectFromD
| escription(ObjectDescriptorFactory.java:82)
| 16:10:48,046 ERROR [STDERR] at org.jboss.serial.objectmetamodel.DataContainer$DataContainerDirectIn
| put.readObject(DataContainer.java:643)
| 16:10:48,046 ERROR [STDERR] at org.jboss.serial.io.JBossObjectInputStream.readObjectOverride(JBossO
| bjectInputStream.java:163)
| 16:10:48,046 ERROR [STDERR] at java.io.ObjectInputStream.readObject(ObjectInputStream.java:333)
| 16:10:48,046 ERROR [STDERR] at org.jboss.serial.io.MarshalledObject.get(MarshalledObject.java:68)
| 16:10:48,046 ERROR [STDERR] at org.jboss.ejb3.stateful.StatefulBeanContext.extractBeanAndIntercepto
| rs(StatefulBeanContext.java:342)
| 16:10:48,046 ERROR [STDERR] at org.jboss.ejb3.stateful.StatefulBeanContext.getInterceptorInstances(
| StatefulBeanContext.java:333)
| 16:10:48,046 ERROR [STDERR] at org.jboss.ejb3.interceptor.LifecycleInvocationContextImpl.getLifecyc
| leInvocationContext(LifecycleInvocationContextImpl.java:65)
| 16:10:48,046 ERROR [STDERR] at org.jboss.ejb3.interceptor.LifecycleInterceptorHandler.postActivate(
| LifecycleInterceptorHandler.java:143)
| 16:10:48,046 ERROR [STDERR] at org.jboss.ejb3.stateful.StatefulContainer.invokePostActivate(Statefu
| lContainer.java:376)
| 16:10:48,046 ERROR [STDERR] at org.jboss.ejb3.stateful.StatefulBeanContext.postActivate(StatefulBea
| nContext.java:183)
| 16:10:48,046 ERROR [STDERR] at org.jboss.ejb3.cache.tree.StatefulTreeCache$ClusteredStatefulCacheLi
| stener.nodeActivate(StatefulTreeCache.java:275)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.TreeCache.notifyNodeActivate(TreeCache.java:5714)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.ActivationInterceptor.remove(Activation
| Interceptor.java:162)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.ActivationInterceptor.invoke(Activation
| Interceptor.java:152)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
|
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.UnlockInterceptor.invoke(UnlockIntercep
| tor.java:32)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
|
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.ReplicationInterceptor.invoke(Replicati
| onInterceptor.java:34)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
|
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.PassivationInterceptor.invoke(Passivati
| onInterceptor.java:69)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
|
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.TxInterceptor.handleNonTxMethod(TxInter
| ceptor.java:345)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.TxInterceptor.invoke(TxInterceptor.java
| :156)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
|
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.CacheMgmtInterceptor.invoke(CacheMgmtIn
| terceptor.java:183)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.TreeCache.invokeMethod(TreeCache.java:5520)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.TreeCache.get(TreeCache.java:3367)
| 16:10:48,046 ERROR [STDERR] at org.jboss.ejb3.cache.tree.StatefulTreeCache$ClusteredStatefulCacheLi
| stener.nodePassivate(StatefulTreeCache.java:285)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.TreeCache.notifyNodePassivate(TreeCache.java:5739)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.PassivationInterceptor.invoke(Passivati
| onInterceptor.java:62)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
|
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.TxInterceptor.handleNonTxMethod(TxInter
| ceptor.java:345)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.TxInterceptor.invoke(TxInterceptor.java
| :156)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
|
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.interceptors.CacheMgmtInterceptor.invoke(CacheMgmtIn
| terceptor.java:179)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.TreeCache.invokeMethod(TreeCache.java:5520)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.TreeCache.evict(TreeCache.java:3716)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.eviction.BaseEvictionPolicy.evict(BaseEvictionPolicy
| .java:34)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.eviction.BaseEvictionAlgorithm.evictCacheNode(BaseEv
| ictionAlgorithm.java:210)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.eviction.LRUAlgorithm.evict(LRUAlgorithm.java:90)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.eviction.LRUAlgorithm.prune(LRUAlgorithm.java:121)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.eviction.BaseEvictionAlgorithm.process(BaseEvictionA
| lgorithm.java:98)
| 16:10:48,046 ERROR [STDERR] at org.jboss.cache.eviction.EvictionTimerTask.run(EvictionTimerTask.jav
| a:80)
| 16:10:48,046 ERROR [STDERR] at java.util.TimerThread.mainLoop(Timer.java:512)
| 16:10:48,046 ERROR [STDERR] at java.util.TimerThread.run(Timer.java:462)
| 16:10:48,046 INFO [TxInterceptor] There was a problem handling this request
| java.lang.RuntimeException: java.lang.RuntimeException: java.io.IOException: No ClassLoaders found f
| or: my.TestSFSBean
| at org.jboss.ejb3.interceptor.LifecycleInterceptorHandler.postActivate(LifecycleInterceptorHandler.
| java:152)
| at org.jboss.ejb3.stateful.StatefulContainer.invokePostActivate(StatefulContainer.java:376)
| at org.jboss.ejb3.stateful.StatefulBeanContext.postActivate(StatefulBeanContext.java:183)
| at org.jboss.ejb3.cache.tree.StatefulTreeCache$ClusteredStatefulCacheListener.nodeActivate(Stateful
| TreeCache.java:275)
| at org.jboss.cache.TreeCache.notifyNodeActivate(TreeCache.java:5714)
| at org.jboss.cache.interceptors.ActivationInterceptor.remove(ActivationInterceptor.java:162)
| at org.jboss.cache.interceptors.ActivationInterceptor.invoke(ActivationInterceptor.java:152)
| at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
| at org.jboss.cache.interceptors.UnlockInterceptor.invoke(UnlockInterceptor.java:32)
| at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
| at org.jboss.cache.interceptors.ReplicationInterceptor.invoke(ReplicationInterceptor.java:34)
| at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
| at org.jboss.cache.interceptors.PassivationInterceptor.invoke(PassivationInterceptor.java:69)
| at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
| at org.jboss.cache.interceptors.TxInterceptor.handleNonTxMethod(TxInterceptor.java:345)
| at org.jboss.cache.interceptors.TxInterceptor.invoke(TxInterceptor.java:156)
| at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
| at org.jboss.cache.interceptors.CacheMgmtInterceptor.invoke(CacheMgmtInterceptor.java:183)
| at org.jboss.cache.TreeCache.invokeMethod(TreeCache.java:5520)
| at org.jboss.cache.TreeCache.get(TreeCache.java:3367)
| at org.jboss.ejb3.cache.tree.StatefulTreeCache$ClusteredStatefulCacheListener.nodePassivate(Statefu
| lTreeCache.java:285)
| at org.jboss.cache.TreeCache.notifyNodePassivate(TreeCache.java:5739)
| at org.jboss.cache.interceptors.PassivationInterceptor.invoke(PassivationInterceptor.java:62)
| at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
| at org.jboss.cache.interceptors.TxInterceptor.handleNonTxMethod(TxInterceptor.java:345)
| at org.jboss.cache.interceptors.TxInterceptor.invoke(TxInterceptor.java:156)
| at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
| at org.jboss.cache.interceptors.CacheMgmtInterceptor.invoke(CacheMgmtInterceptor.java:179)
| at org.jboss.cache.TreeCache.invokeMethod(TreeCache.java:5520)
| at org.jboss.cache.TreeCache.evict(TreeCache.java:3716)
| at org.jboss.cache.eviction.BaseEvictionPolicy.evict(BaseEvictionPolicy.java:34)
| at org.jboss.cache.eviction.BaseEvictionAlgorithm.evictCacheNode(BaseEvictionAlgorithm.java:210)
| at org.jboss.cache.eviction.LRUAlgorithm.evict(LRUAlgorithm.java:90)
| at org.jboss.cache.eviction.LRUAlgorithm.prune(LRUAlgorithm.java:121)
| at org.jboss.cache.eviction.BaseEvictionAlgorithm.process(BaseEvictionAlgorithm.java:98)
| at org.jboss.cache.eviction.EvictionTimerTask.run(EvictionTimerTask.java:80)
| at java.util.TimerThread.mainLoop(Timer.java:512)
| at java.util.TimerThread.run(Timer.java:462)
| Caused by: java.lang.RuntimeException: java.io.IOException: No ClassLoaders found for: my.TestSFSBea
| n
| at org.jboss.ejb3.stateful.StatefulBeanContext.extractBeanAndInterceptors(StatefulBeanContext.java:
| 367)
| at org.jboss.ejb3.stateful.StatefulBeanContext.getInterceptorInstances(StatefulBeanContext.java:333
| )
| at org.jboss.ejb3.interceptor.LifecycleInvocationContextImpl.getLifecycleInvocationContext(Lifecycl
| eInvocationContextImpl.java:65)
| at org.jboss.ejb3.interceptor.LifecycleInterceptorHandler.postActivate(LifecycleInterceptorHandler.
| java:143)
| ... 37 more
| Caused by: java.io.IOException: No ClassLoaders found for: my.TestSFSBean
| at org.jboss.serial.classmetamodel.ClassMetamodelFactory.getClassMetaData(ClassMetamodelFactory.jav
| a:332)
| at org.jboss.serial.classmetamodel.StreamingClass.readStream(StreamingClass.java:72)
| at org.jboss.serial.objectmetamodel.ObjectDescriptorFactory.readObjectDescriptionFromStreaming(Obje
| ctDescriptorFactory.java:381)
| at org.jboss.serial.objectmetamodel.ObjectDescriptorFactory.objectFromDescription(ObjectDescriptorF
| actory.java:82)
| at org.jboss.serial.objectmetamodel.DataContainer$DataContainerDirectInput.readObject(DataContainer
| .java:643)
| at org.jboss.serial.persister.ArrayPersister.readObjectArray(ArrayPersister.java:196)
| at org.jboss.serial.persister.ArrayPersister.readData(ArrayPersister.java:172)
| at org.jboss.serial.objectmetamodel.ObjectDescriptorFactory.readObjectDescriptionFromStreaming(Obje
| ctDescriptorFactory.java:412)
| at org.jboss.serial.objectmetamodel.ObjectDescriptorFactory.objectFromDescription(ObjectDescriptorF
| actory.java:82)
| at org.jboss.serial.objectmetamodel.DataContainer$DataContainerDirectInput.readObject(DataContainer
| .java:643)
| at org.jboss.serial.io.JBossObjectInputStream.readObjectOverride(JBossObjectInputStream.java:163)
| at java.io.ObjectInputStream.readObject(ObjectInputStream.java:333)
| at org.jboss.serial.io.MarshalledObject.get(MarshalledObject.java:68)
| at org.jboss.ejb3.stateful.StatefulBeanContext.extractBeanAndInterceptors(StatefulBeanContext.java:
| 342)
| ... 40 more
| Caused by: java.lang.ClassNotFoundException: No ClassLoaders found for: my.TestSFSBean
| at org.jboss.mx.loading.LoadMgr3.beginLoadTask(LoadMgr3.java:212)
| at org.jboss.mx.loading.RepositoryClassLoader.loadClassImpl(RepositoryClassLoader.java:511)
| at org.jboss.mx.loading.RepositoryClassLoader.loadClass(RepositoryClassLoader.java:405)
| at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
| at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
| at java.lang.Class.forName0(Native Method)
| at java.lang.Class.forName(Class.java:242)
| at org.jboss.serial.classmetamodel.ClassMetamodelFactory.resolveClassByName(ClassMetamodelFactory.j
| ava:269)
| at org.jboss.serial.classmetamodel.ClassMetamodelFactory.getClassMetaData(ClassMetamodelFactory.jav
| a:289)
| ... 53 more
| 16:10:48,062 INFO [TxInterceptor] There was a problem handling this request
| java.lang.RuntimeException: java.lang.RuntimeException: java.lang.RuntimeException: java.io.IOExcept
| ion: No ClassLoaders found for: my.TestSFSBean
| at org.jboss.cache.TreeCache.invokeMethod(TreeCache.java:5526)
| at org.jboss.cache.TreeCache.get(TreeCache.java:3367)
| at org.jboss.ejb3.cache.tree.StatefulTreeCache$ClusteredStatefulCacheListener.nodePassivate(Statefu
| lTreeCache.java:285)
| at org.jboss.cache.TreeCache.notifyNodePassivate(TreeCache.java:5739)
| at org.jboss.cache.interceptors.PassivationInterceptor.invoke(PassivationInterceptor.java:62)
| at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
| at org.jboss.cache.interceptors.TxInterceptor.handleNonTxMethod(TxInterceptor.java:345)
| at org.jboss.cache.interceptors.TxInterceptor.invoke(TxInterceptor.java:156)
| at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
| at org.jboss.cache.interceptors.CacheMgmtInterceptor.invoke(CacheMgmtInterceptor.java:179)
| at org.jboss.cache.TreeCache.invokeMethod(TreeCache.java:5520)
| at org.jboss.cache.TreeCache.evict(TreeCache.java:3716)
| at org.jboss.cache.eviction.BaseEvictionPolicy.evict(BaseEvictionPolicy.java:34)
| at org.jboss.cache.eviction.BaseEvictionAlgorithm.evictCacheNode(BaseEvictionAlgorithm.java:210)
| at org.jboss.cache.eviction.LRUAlgorithm.evict(LRUAlgorithm.java:90)
| at org.jboss.cache.eviction.LRUAlgorithm.prune(LRUAlgorithm.java:121)
| at org.jboss.cache.eviction.BaseEvictionAlgorithm.process(BaseEvictionAlgorithm.java:98)
| at org.jboss.cache.eviction.EvictionTimerTask.run(EvictionTimerTask.java:80)
| at java.util.TimerThread.mainLoop(Timer.java:512)
| at java.util.TimerThread.run(Timer.java:462)
| Caused by: java.lang.RuntimeException: java.lang.RuntimeException: java.io.IOException: No ClassLoad
| ers found for: my.TestSFSBean
| at org.jboss.ejb3.interceptor.LifecycleInterceptorHandler.postActivate(LifecycleInterceptorHandler.
| java:152)
| at org.jboss.ejb3.stateful.StatefulContainer.invokePostActivate(StatefulContainer.java:376)
| at org.jboss.ejb3.stateful.StatefulBeanContext.postActivate(StatefulBeanContext.java:183)
| at org.jboss.ejb3.cache.tree.StatefulTreeCache$ClusteredStatefulCacheListener.nodeActivate(Stateful
| TreeCache.java:275)
| at org.jboss.cache.TreeCache.notifyNodeActivate(TreeCache.java:5714)
| at org.jboss.cache.interceptors.ActivationInterceptor.remove(ActivationInterceptor.java:162)
| at org.jboss.cache.interceptors.ActivationInterceptor.invoke(ActivationInterceptor.java:152)
| at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
| at org.jboss.cache.interceptors.UnlockInterceptor.invoke(UnlockInterceptor.java:32)
| at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
| at org.jboss.cache.interceptors.ReplicationInterceptor.invoke(ReplicationInterceptor.java:34)
| at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
| at org.jboss.cache.interceptors.PassivationInterceptor.invoke(PassivationInterceptor.java:69)
| at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
| at org.jboss.cache.interceptors.TxInterceptor.handleNonTxMethod(TxInterceptor.java:345)
| at org.jboss.cache.interceptors.TxInterceptor.invoke(TxInterceptor.java:156)
| at org.jboss.cache.interceptors.Interceptor.invoke(Interceptor.java:68)
| at org.jboss.cache.interceptors.CacheMgmtInterceptor.invoke(CacheMgmtInterceptor.java:183)
| at org.jboss.cache.TreeCache.invokeMethod(TreeCache.java:5520)
| ... 19 more
| Caused by: java.lang.RuntimeException: java.io.IOException: No ClassLoaders found for: my.TestSFSBea
| n
| at org.jboss.ejb3.stateful.StatefulBeanContext.extractBeanAndInterceptors(StatefulBeanContext.java:
| 367)
| at org.jboss.ejb3.stateful.StatefulBeanContext.getInterceptorInstances(StatefulBeanContext.java:333
| )
| at org.jboss.ejb3.interceptor.LifecycleInvocationContextImpl.getLifecycleInvocationContext(Lifecycl
| eInvocationContextImpl.java:65)
| at org.jboss.ejb3.interceptor.LifecycleInterceptorHandler.postActivate(LifecycleInterceptorHandler.
| java:143)
| ... 37 more
| Caused by: java.io.IOException: No ClassLoaders found for: my.TestSFSBean
| at org.jboss.serial.classmetamodel.ClassMetamodelFactory.getClassMetaData(ClassMetamodelFactory.jav
| a:332)
| at org.jboss.serial.classmetamodel.StreamingClass.readStream(StreamingClass.java:72)
| at org.jboss.serial.objectmetamodel.ObjectDescriptorFactory.readObjectDescriptionFromStreaming(Obje
| ctDescriptorFactory.java:381)
| at org.jboss.serial.objectmetamodel.ObjectDescriptorFactory.objectFromDescription(ObjectDescriptorF
| actory.java:82)
| at org.jboss.serial.objectmetamodel.DataContainer$DataContainerDirectInput.readObject(DataContainer
| .java:643)
| at org.jboss.serial.persister.ArrayPersister.readObjectArray(ArrayPersister.java:196)
| at org.jboss.serial.persister.ArrayPersister.readData(ArrayPersister.java:172)
| at org.jboss.serial.objectmetamodel.ObjectDescriptorFactory.readObjectDescriptionFromStreaming(Obje
| ctDescriptorFactory.java:412)
| at org.jboss.serial.objectmetamodel.ObjectDescriptorFactory.objectFromDescription(ObjectDescriptorF
| actory.java:82)
| at org.jboss.serial.objectmetamodel.DataContainer$DataContainerDirectInput.readObject(DataContainer
| .java:643)
| at org.jboss.serial.io.JBossObjectInputStream.readObjectOverride(JBossObjectInputStream.java:163)
| at java.io.ObjectInputStream.readObject(ObjectInputStream.java:333)
| at org.jboss.serial.io.MarshalledObject.get(MarshalledObject.java:68)
| at org.jboss.ejb3.stateful.StatefulBeanContext.extractBeanAndInterceptors(StatefulBeanContext.java:
| 342)
| ... 40 more
| Caused by: java.lang.ClassNotFoundException: No ClassLoaders found for: my.TestSFSBean
| at org.jboss.mx.loading.LoadMgr3.beginLoadTask(LoadMgr3.java:212)
| at org.jboss.mx.loading.RepositoryClassLoader.loadClassImpl(RepositoryClassLoader.java:511)
| at org.jboss.mx.loading.RepositoryClassLoader.loadClass(RepositoryClassLoader.java:405)
| at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
| at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
| at java.lang.Class.forName0(Native Method)
| at java.lang.Class.forName(Class.java:242)
| at org.jboss.serial.classmetamodel.ClassMetamodelFactory.resolveClassByName(ClassMetamodelFactory.j
| ava:269)
| at org.jboss.serial.classmetamodel.ClassMetamodelFactory.getClassMetaData(ClassMetamodelFactory.jav
| a:289)
| ... 53 more
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4004726#4004726
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4004726
19 years, 3 months
[JNDI/Naming/Network] - Getting started guide?
by SmokingAPipe
Here's the simple thing I need to do: I have a JBoss server with a bunch of EJB3 entities in it. I also have some session beans to handle various things. That's the server side. On the client side, I have some custom-written Swing applications which need to interact with session beans (on the server), fetch entities, updated entities, and persist the changed entities (all of which are on the server).
I know that JBoss / J2EE are designed from the get-go to make such a usage "easy". But my problem is, how do I get started? I read the section on JNDI. I have Googled around. But could anyone point me to a "getting started" example? I suppose I would need to create @Remote interfaces on entities. I would need to do something to configure a JNDI server running on JBoss that takes requests over HTTP. Then on the client side I would need to specify connection properties, create an InitialContext, and then do my work I guess? I can see the outline but I don't know where to begin with all this.
Btw I'm using JBoss 4.0.5 and Java 6 for all this. It's all new code so no legacy anything. I want to do it whatever is the "best practices" way.
Thank you for any suggestions.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4004723#4004723
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4004723
19 years, 3 months
[EJB 3.0] - Stateless Session bean throwing error
by vishnu1980
Hi
I am getting error from the statless session bean after some subsequent request to the bean, First 10 or 20 calls works fine, after some time it gives the below error
And also please tell me how i can check the number of instances created for a Bean in Jboss Web Console.
| message <font face='Verdana, Arial, Helvetica' size='2'>Sorry, an error has occurred: null</font><br><br><font face='Verdana, Arial, Helvetica' size='1'>com.tlc.report.ReportException<br> at com.tlc.report.ReportBean.load(ReportBean.java:1087)<br> at com.tlc.report.ReportBean.load(ReportBean.java:1244)<br> at sun.reflect.GeneratedMethodAccessor160.invoke(Unknown Source)<br> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)<br> at java.lang.reflect.Method.invoke(Method.java:585)<br> at org.jboss.invocation.Invocation.performCall(Invocation.java:359)<br> at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionContainer.java:237)<br> at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionInterceptor.java:158)<br> at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstanceInterceptor.java:169)<br> at org.jboss.ws.server.ServiceEndpointInterceptor.invoke(ServiceEndpointInterceptor.java:64)<br> at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:63)<br> at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:121)<br> at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:315)<br> at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:181)<br> at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:168)<br> at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:205)<br> at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor.java:136)<br> at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:648)<br> at org.jboss.ejb.Container.invoke(Container.java:954)<br> at sun.reflect.GeneratedMethodAccessor125.invoke(Unknown Source)<br> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)<br> at java.lang.reflect.Method.invoke(Method.java:585)<br> at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)<br> at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)<br> at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)<br> at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)<br> at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)<br> at org.jboss.invocation.local.LocalInvoker$MBeanServerAction.invoke(LocalInvoker.java:169)<br> at org.jboss.invocation.local.LocalInvoker.invoke(LocalInvoker.java:118)<br> at org.jboss.invocation.InvokerInterceptor.invokeLocal(InvokerInterceptor.java:206)<br> at org.jboss.invocation.InvokerInterceptor.invoke(InvokerInterceptor.java:192)<br> at org.jboss.proxy.TransactionInterceptor.invoke(TransactionInterceptor.java:61)<br> at org.jboss.proxy.SecurityInterceptor.invoke(SecurityInterceptor.java:70)<br> at org.jboss.proxy.ejb.StatelessSessionInterceptor.invoke(StatelessSessionInterceptor.java:112)<br> at org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:100)<br> at $Proxy106.load(Unknown Source)<br> at com.tlc.isupport.ISupport.reportCaseLogged(ISupport.java:503)<br> at com.tlc.isupport.ISupport.service(ISupport.java:219)<br> at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)<br> at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)<br> at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)<br> at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)<br> at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)<br> at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)<br> at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)<br> at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)<br> at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:175)<br> at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)<br> at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)<br> at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)<br> at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)<br> at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)<br> at org.apache.jk.server.JkCoyoteHandler.invoke(JkCoyoteHandler.java:199)<br> at org.apache.jk.common.HandlerRequest.invoke(HandlerRequest.java:282)<br> at org.apache.jk.common.ChannelSocket.invoke(ChannelSocket.java:754)<br> at org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:684)<br> at org.apache.jk.common.ChannelSocket$SocketConnection.runIt(ChannelSocket.java:876)<br> at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)<br> at java.lang.Thread.run(Thread.java:595)</font>
|
This error does not come for the first time , it comes after subsequent calls to the Reportbean [argh]
Somebody please help
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4004722#4004722
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4004722
19 years, 3 months