[jboss-user] [JBoss Seam] - Re: Exception getting value of property resultList of base o

2007-05-09 Thread nathandennis
I dont know why someone hasnt said something before now... make me want to pay some maintains to these jokes the problem appears to have something to do with the number of connections jboss is handling and the clean up of an unused connection failing. after i restarted the Jboss deplorer i

[jboss-user] [JBoss Seam] - Re: Exception getting value of property resultList of base o

2007-05-09 Thread nathandennis
Ditto seam generated entities have a bug of some sort. If your apps are like mine,, i get this error message randomly after about five queries. has anyone figure out what is going on,,, or have a work around?? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=40

[jboss-user] [JBoss Seam] - Re: Exception getting value of property

2007-05-07 Thread koriel
I'm using Seam 1.1.6 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043601#4043601 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043601 ___ jboss-user mailing list jboss-user

[jboss-user] [JBoss Seam] - Re: Exception getting value of property

2007-05-07 Thread petemuir
s/interface/class View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043594#4043594 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043594 ___ jboss-user mailing list jboss-user@li

[jboss-user] [JBoss Seam] - Re: Exception getting value of property

2007-05-07 Thread petemuir
Part of the contract of marking an interface serializable is to ensure that all objects referenced from it are serializable. Context isn't, so mark it transient. What version of Seam btw? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043593#4043593 Reply t

[jboss-user] [JBoss Seam] - Re: Exception getting value of property

2007-05-07 Thread koriel
Felix, thx for your answer but by injecting the component what do you mean exactly? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043588#4043588 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043588 __

[jboss-user] [JBoss Seam] - Re: Exception getting value of property

2007-05-07 Thread fhh
The error message is right there: | Could not create instance of org.jboss.seam.contexts.WebSessionContext - org.jboss.seam.contexts.WebSessionContext | Inject the component - not the context. Regards Felix View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic

[jboss-user] [JBoss Seam] - Re: Exception getting value of property resultList of base o

2007-02-20 Thread swells77
I am having the same problem with other seam generated entities - any ideas? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4019509#4019509 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4019509 __

[jboss-user] [JBoss Seam] - Re: Exception getting value of property resultList of base o

2007-02-16 Thread petemuir
This is key part of the above stack trace: Caused by: org.hibernate.hql.ast.QuerySyntaxException: User is not mapped [select user from User user] I would infer from this that something went wrong with your generate entities. Does the User object exist and is it mapped? View the original post