[jboss-user] [JBoss Seam] - Re: Exception thrown on Stateful Session Bean lifecycle

2007-08-14 Thread gringalet
i am the same trouble View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4074271#4074271 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4074271 ___ jboss-user mailing list jboss-use

[jboss-user] [JBoss Seam] - Re: Exception thrown on Stateful Session Bean lifecycle

2007-08-08 Thread sverker
Ok, maybe I've found it. Look at this: | queue = new PriorityBlockingQueue(result.size(), new Comparator() { | public int compare(QueueItem o1, QueueItem o2) { | // This will cause the queue to be sorted in the inverse natural or

[jboss-user] [JBoss Seam] - Re: Exception thrown on Stateful Session Bean lifecycle

2007-08-08 Thread sverker
Hi, the problem is that my stateful bean does implement Serializable and do have a default constructor. I've also searched all the attributes and they also implements Serializable. That's why I'm pretty lost on this one... View the original post : http://www.jboss.com/index.html?module=bb&op=v

[jboss-user] [JBoss Seam] - Re: Exception thrown on Stateful Session Bean lifecycle

2007-08-08 Thread FabryProg
The problem is caused by ... at java.lang.Class.newInstance0(Class.java:335) ... Try this fix: All stateful bean's variables should implement serializable object and contain their own default constructor View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=407