1 Reply Latest reply on Nov 14, 2007 5:00 PM by bsnyder

    Compiling error in my first lession on Eclipse - and ServiceMix tutorial

    ptran

      Please help explain why I get the following error

      Failed to run generate source goals /PricingService/pom.xml Some builds failed

      when I try to follow the "first contract service - JSR-181" turorial

      I do not see any new files under the folder target/generated-sources

      Regards

        • 1. Re: Compiling error in my first lession on Eclipse - and ServiceMix tutoria
          bsnyder

          The most common error that people experience is during the creation of the contract first service unit. Below is an excerpt of the error that is typically seen:

           

          ...

          java.lang.ClassNotFoundException: put.your.implementation.here

          ...

           

          Look through the error you received to see if it contains the snippet above.

           

          This error occurs because the package path to your class has not yet been specified. It is OK to proceed with the rest of the tutorial as the rest of the steps will work past this issue. (In short, you must create an implementation class and name it in the src/main/resources/xbean.xml of this service unit.)

           

          Bruce