Reputation: 11
Currently I'm working for JAVA application. I just checked out project from SVN in RAD_9.1.1. When I added relevant jars to my project, I got stuck up with below class path error.
Do anyone has a solution for this problem?
Nearly 300+ errors has been thrown, I couldn't resolve the issue.
CHKJ2800E: interface com.sbc.ept.imagine.service.adsl.ejb.AdslLocal, or one of its supertypes, cannot be reflected. Check the classpath. ejb-jar.xml /ImagineService/ejbModule/META-INF
Upvotes: 1
Views: 3574
Reputation: 21
In order to resolve it:
Verify that the Java Build Path is set up correctly.
In each project right-click -> Properties -> Java Build Path -> Order and Export. Move ‘JRE System Library (jdk)’ to the top and have it check marked.
Right click the EJB project and click Validate. All the errors will disappear.
Refer to the following link as well: http://www.coderanch.com/t/320119/EJB-JEE/java/error-deploying-ejb-CHKJ
Upvotes: 2