- This topic has 1 reply, 2 voices, and was last updated 15 years, 10 months ago by Loyal Water.
-
AuthorPosts
-
bipien@yahoo.comMembersir i want to integrate my session bean with with java class on another project through MyEclipe 6.5 in weblogic 8.1
I selected the project in java build path of my bean and selected project in order and export but could not call
please help
this is function (which i want to call )my bean code
public void myCall() throws EJBException {
System.out.println(“Hi Bipin !!!”);
System.out.println(“Test I”);
Bipin temp = new Bipin();
temp.testFunction();following is error on server
<Jan 19, 2009 7:27:28 AM IST> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) Client VM Version 1.4.1_02-er-20030219 from Sun Microsystems Inc.>
<Jan 19, 2009 7:27:29 AM IST> <Info> <Configuration Management> <BEA-150016> <This server is being started as the administration server.>
<Jan 19, 2009 7:27:29 AM IST> <Info> <Management> <BEA-141107> <Version: WebLogic Server 8.1 Thu Mar 20 23:06:05 PST 2003 246620
WebLogic XMLX Module 8.1 Thu Mar 20 23:06:05 PST 2003 246620 >
<Jan 19, 2009 7:27:30 AM IST> <Notice> <Management> <BEA-140005> <Loading domain configuration from configuration repository at C:\bea\user_projects\mydomain\config.xml.>
<Jan 19, 2009 7:27:36 AM IST> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
<Jan 19, 2009 7:27:36 AM IST> <Notice> <WebLogicServer> <BEA-000327> <Starting WebLogic Admin Server “myserver” for domain “mydomain”>
<Jan 19, 2009 7:27:50 AM IST> <Notice> <WebLogicServer> <BEA-000355> <Thread “ListenThread.Default” listening on port 7001, ip address *.*>
<Jan 19, 2009 7:27:50 AM IST> <Notice> <WebLogicServer> <BEA-000331> <Started WebLogic Admin Server “myserver” for domain “mydomain” running in Development Mode>
<Jan 19, 2009 7:27:50 AM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING>
<Jan 19, 2009 7:27:50 AM IST> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
Hi Bipin !!!
Test I
java.rmi.RemoteException: EJB Exception: ; nested exception is:
java.lang.NoClassDefFoundError: test/Bipin
at weblogic.ejb20.internal.EJBRuntimeUtils.throwRemoteException(EJBRuntimeUtils.java:103)
at weblogic.ejb20.internal.BaseEJBHome.handleSystemException(BaseEJBHome.java:293)
at weblogic.ejb20.internal.BaseEJBObject.postInvoke(BaseEJBObject.java:253)
at weblogic.ejb20.internal.StatelessEJBObject.postInvoke(StatelessEJBObject.java:131)
at two.ejb.Two_q1241i_EOImpl.myCall(Two_q1241i_EOImpl.java:55)
at MyServlet.doGet(MyServlet.java:84)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1053)
at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:387)
at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:305)
at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6291)
at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:97)
at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3575)
at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2573)
at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:178)
at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:151)
Caused by: java.lang.NoClassDefFoundError: test/Bipin
at two.ejb.TwoBean.myCall(TwoBean.java:83)
at two.ejb.Two_q1241i_EOImpl.myCall(Two_q1241i_EOImpl.java:45)
… 13 more
Loyal WaterMemberbipien@yahoo.com ,
Im not sure how this issue can be resolved Sorry about that. Maybe some other users on the forums could be aware of this issue. We will have to wait for their feedback. -
AuthorPosts