1 Reply Latest reply on Dec 1, 2004 3:20 AM by john_anderson_ii

    JBossIDE FiboBean Example issue..

    biele

      Hi Chaos,
      is it possible that you forgot the ejbCreate method at first and then, after adding the method and running XDoclet and Packaging again, didn't redeploy the FiboApp.ear?
      Regards, Stefan

        • 1. Re: JBossIDE FiboBean Example issue..
          john_anderson_ii

          I'm not 100% sure, but I think you get the same error if the ejbCreate() method you have isn't defined as throwing a CreateException.

          
          /**
           * @ejb.create-method
           */
          
          public void ejbCreate() throws CreateException {
          
          }
          
          


          Also make sure that create() is defined in FiboBean's remote interface. I think you'll get a different error if it's not, but it's worth a shot.