[jboss-user] [EJB 3.0] - Re: Stateless Session Bean - java.lang.reflect.UndeclaredThr

2007-08-28 Thread wolfc
You're trying to force an object over the line which has a reference to an org.apache.log4j.Logger instance, which is not serializable. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4078719#4078719 Reply to the post : http://www.jboss.com/index.html?module=b

[jboss-user] [EJB 3.0] - Re: Stateless Session Bean - java.lang.reflect.UndeclaredThr

2007-08-28 Thread ramarao_1234
Hi, Thanks for the early response. I am giving part of my code where the error is coming. Could you suggest me where may be error. Method in the Bean: public TabFactory getTabList(String corporateId) throws EccException { Connection conn = null; TabFactory tabF

[jboss-user] [EJB 3.0] - Re: Stateless Session Bean - java.lang.reflect.UndeclaredThr

2007-08-29 Thread ramarao_1234
Hi All, My sincere thanks to Wolfc. He correctly pointed out the error. In my code TabFactory contain some other objects which are not serializable. When i made them serializable, it is working fine. If anybody faces similar error then plz check you objects returning from remote interfac