Hi, after my previous posts, i started reading the user manual ... and ... i got stuck on setting my eclipse to work with the examples provided. I followed the steps:
1. Downloaded Activiti-5.8
2. Downloaded Eclipse
3. In Eclipse I Clicked File -> Import -> Existing Projects into Workspace
4. Browsed for Unpacked activiti-5.8/workspace folder
5. After clicking finish the eclipse loaded the files into workspace, but, i got up to 51 errors .. like (Project 'activiti-cxf-examples' is missing required library: 'libs-runtime/commons-lang-2.4.jar') ... etc
How can I fix this problem ?
And also I downloaded the activiti-in-action examples and i wanted to get started with those, but there is no guide on how to import or start with theese examples... i´ve also read the MEAP Chapter 1 on Activiti in Action pdf, but there is no clear explanation on how to use those in eclipse, or netbeans, ... etc.
Those errors are easily fixed by importing the missing *.jars.
Just rightclick on the project, click on properties and then on "Java Build Path". Open the Libraries View and there on the right side click on "Add external JARs". In the popup window navigate to your workspace/activiti-engine-examples/libs-runtime folder and add all the jars in there to the project. That
should resolve the errors.
OK, I´ve tried to do as you said. But right after that, i looked for the libs ... the bad thing is, that my activiti-cxf-examples is missing required library -> libs-runtime/commons-lang-2.4.jar. This lib i havent found in any af the hierarchy of activiti 5.8. The mentioned lib is one of the 51 i´m missing. Weren´t they suppose to be in the archive of activiti-5.8 ? All packed and no additional downloading required ?
OK, so i manually downloaded all of the missing, but now i´ve got suck on AbstractWebServiceTaskTest.java, where it say´s that the "method destroy() is undefined for type Server"
I have no such error, did you maybe accidentally removed the import?
import org.apache.cxf.endpoint.Server;No the import is there, and i havent done no erasing ... imported the project and these errors came up. Beside of that .. i have another question ... i followed the ten minute tutorial ... in the last point we create something like this
how do i test it ? ... or better ... how do i test more activiti-engine exapmples ... or even better ... how to play with the activiti-in-action examples ?