2 Replies Latest reply on Jun 24, 2003 10:33 AM by vbfischer

    xdoclet generated sources error

    vbfischer

      Posting here as it appears my EJBs are being generated correctly. Problem is, I keep getting the following error:

      21:58:11,772 WARN [verifier] EJB spec violation:
      Bean : Expend
      Section: 22.2
      Warning: The Bean Provider must specify the fully-qualified name of the Java class that implements the enterprise bean's business methods in the <ejb-class> element.
      Info : Class not found: com.berzerkersoft.bisweb.db.ejb.ExpendCMP

      Problem is, when I open my jar file, the specified class is found. I'm attaching my jar file as well as my source in hopes that someone might point me in the right direction.

      Thanks in advance.

      Bryce

        • 1. Re: xdoclet generated sources error

          It probably depends upon another
          class you haven't included.

          The verifier only reports it cannot load the class,
          it does not give the reason why.
          Try turning off the verifier on the EJBDeployer,
          it should give a more informatitive error message
          when it tries to load it at run time.

          Regards,
          Adrian

          • 2. Re: xdoclet generated sources error
            vbfischer

            Thanks for your reply. Learned how to turn the verifier off now..

            Also realized I've been deploying to Tomcat too long, as I had placed my classes under the META-INF/classes directory. (I know, it would have been WEB-INF/classes for Tomcat, but it slipped my mind)...

            DOH!!!!

            Working now.