Here is the scenario:
web application running on jboss with both a web part and ejb part. On the top 
of this, when the application is first invoked I launch a thread which runs 
indefinetly and check every 20 sec. if there is something it must do.

During one of these iterations, where it must actually take action, it meets 
this code:

....
MyBeanLocalHome mblh = MyBeanUtil.getLocalHome();   // I use xdoclet generated 
methods
MyBeanLocal mbl = mblh.create();

try{
    mbl.doSomeMethod(); // opens a HttpConnection and do other things
} catch (...) {...}
....

After running smoothly for many itarations, it unexplainedly hangs during 
doSomeMethod. The really bad thing is that it hangs/kills my supervisor thread 
and so it causes serius problem to my application. It simply disappears in the 
method, nothing happens, not even an exception which is caught by the catch 
clause.

Any idea?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3951856#3951856

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3951856


_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to