0 Replies Latest reply on Aug 12, 2003 9:44 AM by simon555

    problem deploying my .jar

    simon555

      hi,
      I deployed an .jar on JBoss.When I was starting the server.disply following error:
      22:51:55,456 WARN [verifier] EJB spec violation:
      Bean : SquenceSessionBean
      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: parts.ejb.SquenceSessionBean

      22:51:55,507 ERROR [MainDeployer] could not create deployment: file:/G:/jboss-3.2.1_tomcat-4.1.24/server/default/deploy/SequenceBean.jar
      org.jboss.deployment.DeploymentException: Verification of Enterprise Beans failed, see above for error messages.
      at org.jboss.ejb.EJBDeployer.create(EJBDeployer.java:487)
      at org.jboss.deployment.MainDeployer.create(MainDeployer.java:784)
      at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:639)

      It hint "Class not found: parts.ejb.SquenceSessionBean"
      But there is the SquenceSessionBean.class in my "bin" folder.
      My ejb.xml descriptor fragment:
      <display-name>SquenceSession Bean</display-name>

      <ejb-name>SquenceSessionBean</ejb-name>

      parts.partsInterface.SquenceSessionBeanHome
      parts.partsInterface.SquenceSessionBean
      <local-home>parts.partsInterface.SquenceSessionBeanLocalHome</local-home>
      parts.partsInterface.SquenceSessionBeanLocal
      <ejb-class>parts.ejb.SquenceSessionBean</ejb-class>
      <session-type>Stateless</session-type>
      <transaction-type>Container</transaction-type>

      What reason that is?