[jboss-user] [EJB/JBoss] - Re: org.hibernate.LazyInitializationException

2007-07-26 Thread waynebaylor
here's an older link that contains some good info: http://www.theserverside.com/discussions/thread.tss?thread_id=11031 i think the suggestion of using Message Driven Beans is a good one. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4067938#4067938 Reply to

[jboss-user] [EJB/JBoss] - Re: org.hibernate.LazyInitializationException

2007-07-25 Thread waynebaylor
if you're running within an application server, you shouldn't be creating your own threads. the AS performs thread management for you. your exception is probably because you've started a new thread but haven't properly associated a session with it. View the original post :

[jboss-user] [EJB/JBoss] - Re: org.hibernate.LazyInitializationException

2007-07-25 Thread veeseekay
hmmm...i am surprised to knw that I am not supposed to create my own threads within the AS... My situation is that I have to perform some job over the ntw and it cannot be done serially, i need multi threading to speed up the job. View the original post :