I'm currently working on a web project that hosts external questions using MTURK with Java.
My problem is that I've installed JAVA SDK, and on my eclipse project I've added to the buildpath all the necessary libraries like: AWS SDK, java-aws-mturk, aws-mturk-dataschema, etc.
And I'm trying to create HIT's and when doing that I needed to import all the necessary classes like:
import com.amazonaws.mturk.service.axis.RequesterService;
import com.amazonaws.mturk.util.PropertiesClientConfig;
import com.amazonaws.mturk.requester.HIT;
The weird thing is that it compiles and everything, but when running it gives me an exception:
java.lang.NoClassDefFoundError: com/amazonaws/mturk/util/ClientConfig
calculations.ProcessPassages.doGet(ProcessPassages.java:80)
calculations.ProcessPassages.doPost(ProcessPassages.java:183)
javax.servlet.http.HttpServlet.service(HttpServlet.java:641)
javax.servlet.http.HttpServlet.service(HttpServlet.java:722)
I don't know what might be the case, since its fine when compiling, and all the build-paths are set correctly, could it be that somehow the libraries are corrupted (i guess highly unlikely)?
Appreciate your help in advance .
NoClassDefFoundError(almost) always means that you have forgotten to put a library in the classpath. Note that you don't only need all the libraries in the classpath while compiling, you also need them to be in the classpath while running the program. – Jesper May 9 '11 at 11:38