[Beginners Corner] - Re: Trying to install/test-run JBoss 5, encountering errors
by zauberlehrling
Hello,
I wish you a happy new year!
Concerning JBoss 5 Beta 1 I have similar problems mentioned above on a linux box.I start the application server jboss-5.0.0.Beta1 with jdk1.6.0_01. The first time I start the application server I get only the message:
JBoss Messaging Warning: DataSource connection transaction isolation should be READ_COMMITTED, but it is currently NONE.
| Using an isolation level less strict than READ_COMMITTED may lead to data consistency problems.
| Using an isolation level more strict than READ_COMMITTED may lead to deadlock.
Should I therefore adapt the isolation level in the file hsqldb-ds.xml? The scond time I get in addition the following Exceptions:
11:24:53,768 ERROR [BaseModelMBean] Exception invoking method addChild
| java.lang.RuntimeException: org.jboss.xb.binding.JBossXBException: Failed to parse source: Bad file descriptor
| at org.jboss.web.tomcat.tc6.TomcatInjectionContainer.processMetadata(TomcatInjectionContainer.java:264)
| at org.jboss.web.tomcat.tc6.WebAppLoader.start(WebAppLoader.java:104)
| ..
| 11:24:53,787 ERROR [BaseModelMBean] Exception invoking method init
| LifecycleException: Manager has not yet been started
| at org.apache.catalina.session.StandardManager.stop(StandardManager.java:660)
| ..
By the way, do you have a description how to check out the latest version of jboss application server 5 from subversion and how to build it?
Thanks and best regards,
Frank
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3997101#3997101
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3997101
17 years, 11 months
[Clustering/JBoss] - Some trouble with EJB3 StatefulSessionBean in Clustering of
by chencao0524
Hi, All.
I'm using EJB3 Cluster in Jboss, when I learned the jboss Tutorial, I met some trouble. This is:
When I deploy the jar to jboss, I always met the error:
12:11:21,937 ERROR [URLDeploymentScanner] Incomplete Deployment listing:
--- MBeans waiting for other MBeans ---
ObjectName: jboss.j2ee:jar=tutorial.jar,name=StatefulBean,service=EJB3
State: FAILED
Reason: java.lang.RuntimeException: java.lang.NoSuchFieldError: eviction_polic
y_provider
--- MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM ---
ObjectName: jboss.j2ee:jar=tutorial.jar,name=StatefulBean,service=EJB3
State: FAILED
Reason: java.lang.RuntimeException: java.lang.NoSuchFieldError : eviction_polic
y_provider
the sources are below:
//interface
| public interface StatefulRemote
| {
| void increment();
| }
//stateful sessionbean
| @Stateful
| @Clustered
| @Remote( StatefulRemote.class)
| public class StatefulBean implements java.io.Serializable, StatefulRemote
| {
| private int state = 0;
|
| public void increment()
| {
| System.out.println("counter: " + (++state));
| }
|
| public String toString()
| {
| return super.toString() + " state-(" + state + ")";
| }
| }
My environments are: JBoss 4.0.5.GA and java-cache.jar version is 1.4.0.SP1
It trouble me several days, Anyone could help me? ^_^~
Happy new year!
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3997097#3997097
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3997097
17 years, 11 months