I am getting the following issue. Urgenct please. I need a solution to the issue. I am seeing cglib as a reason in google. I dont have any cglib in my classpath. Urgency help please
Additional Details:
net/sf/cglib/beans/BulkBeanException
I have added the cglib2.2. It worked to some extent. It is creating the session object, but not able to execute the query. It is not able to reach the third statement.
Application.showMessage("DPDAO:::Inside try"); -->Pass
session=getSession();
Application.showMessage("After getsession"); --> Pass
Query query = session.getNamedQuery("com.twc.soatest.bsif.entity.ServiceProfile.getServiceFeaturesList");
query.setString("tn", tn);
sfList=query.list();
Application.showMessage("In DAO layer..."); --> not displaying this statement
Gurvinder Pal Singh
what is the query exactly? Also please post the related class.
If you can post the exception stack trace, it will be a help also.
prsubject
ASKER
The same query works if I run in java perspective. If I run the soatest it is not working. Some hibernate jars are missing I doubt. It has nothing to do with soatest. SOme jars are missing to execute the query in soatest perspective. Could you guide me.
Application.showMessage("D
session=getSession();
Application.showMessage("A
Query query = session.getNamedQuery("com
query.setString("tn", tn);
sfList=query.list();
Application.showMessage("I