Link to home
Start Free TrialLog in
Avatar of hp746
hp746

asked on

Class not found exception with BOF classes on Weblogic 8.1

HI,

I had deployed a WDK 5.2.5 application on Weblogic 8.1 application server. When I type in the URL for the application, I get a class not found exception. This happens only with the type based and service based business objects.

Could you please tell me if I am missing some jar files that need to be included?

I have the dfc.jar and the dfcbase.jar included in the classpath. Are there some other ones that I need to include?
Avatar of CEHJ
CEHJ
Flag of United Kingdom of Great Britain and Northern Ireland image

>>Could you please tell me if I am missing some jar files that need to be included?

Almost certainly. Please post the exception stack trace
Avatar of hp746
hp746

ASKER

Hi,
Here is the stack trace,

java.lang.NoClassDefFoundError: com/pbsg/pathfinder/bof/type/IPfDocument
at java.lang.Class.getDeclaredMethods0(Native Method)
at java.lang.Class.privateGetDeclaredMethods(Class.java:1647)
at java.lang.Class.privateGetPublicMethods(Class.java:1770)
at java.lang.Class.privateGetPublicMethods(Class.java:1786)
at java.lang.Class.getMethods(Class.java:824)
at com.documentum.web.form.FormProcessor.findMethod(FormProcessor.java:1298)
at com.documentum.web.form.FormProcessor.invokeMethod(FormProcessor.java:1209)
at com.documentum.web.form.FormProcessor.fireActionEvent(FormProcessor.java:777)
at com.documentum.web.form.RecallOperation.execute(RecallOperation.java:98)
at com.documentum.web.form.FormProcessor.openForm(FormProcessor.java:136)
at com.documentum.web.form.WebformTag.doStartTag(WebformTag.java:124)
at jsp_servlet._pathfinder._pages._main.__pf_main_body_launcher._jspService(__pf_main_body_launcher.java:200)
at weblogic.servlet.jsp.JspBase.service(JspBase.java:33)
at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:996)
at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:419)
at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28)
at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
at com.pbsg.pathfinder.metrics.MetricFilter.doFilter(MetricFilter.java:45)
at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6458)
at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3661)
at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2630)
at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
 
 
>>com/pbsg/pathfinder/bof/type/IPfDocument

Is the class you're missing. I don't recognise that - what software is it?
Avatar of hp746

ASKER

EMC Documentum.
Make sure that class is in one of the jars you mentioned and if so, that they really *are* in the classpath (of the server if necessary in addition to your webapp)
> I have the dfc.jar and the dfcbase.jar included in the classpath

they shouldn't be in your classpath, they should be deployed as part of webapp (in WEB-INF/lib)

you can check the contents of a jar using the jar command

jav tvf <jar file name>

Avatar of hp746

ASKER

I have them in the WEB-INF/lib folder also. I got the same exception and so had put them in the classpath.
Is there any other reason for this exception other than not including the jar files?

I had also checked the dbor.properties file and all the business objects are registered.
Please post the listing of the jars

jar tf <thejar>
> Is there any other reason for this exception other than not including the jar files?

It means the classloader cannot find the specified class. Meaning the jar file is not available to it.
Perhaps also checj the class name and package that they are spelt correctly

eg. is it IPF not IPf

> Please post the listing of the jars
> jar tf <thejar>

Thats already been suggested, stop repeatedly copying other experts comments :)
Avatar of hp746

ASKER

I had checked for the spellings and they all match.

IPfDocument is a custom interface class which extends IDfBusinessObject provided by the DFC 5.2.5. It is present in dfc.jar which I mentioned earlier. There are a hierarchy of objects provided by documentum and so I am guessing the problem lies in the import of those jars.

Do you happen to specifically know what I am missing other than dfc.jar and dfcbase.jar?
You also need to check

jar tf <thewar>

for those jars
> Do you happen to specifically know what I am missing other than dfc.jar and dfcbase.jar?

u are missing the class mentioned, if it is in that jar then the jar is not being seen by the classloader.

ASKER CERTIFIED SOLUTION
Avatar of Thlware
Thlware

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial