1

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

dev
  • 1,343
  • 2
  • 19
  • 40
Vicky
  • 11
  • 1
  • 4
  • What are you using to build your application? That sounds like a missing dependency. Could you also tell us the class hierarchy of AdslLocal (I assume that's one of your own classes?) – hugh Jul 15 '15 at 20:30

1 Answers1

2

In order to resolve it:

  1. 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.

  2. 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

Community
  • 1
  • 1