I'm using the gdata-java-client from Google to work with Google spreadsheets.
SpreadsheetService s = new SpreadsheetService("myAppName");
This works in Eclipse. As soon as I run it on App Engine (dev environment), I get NoClassDefError.
The following jars are in WEB-INF/lib
- gdata-spreadsheet-meta-3.0.jar
- gdata-spreadsheet-3.0.jar
- jsr305.jar
- google-collect-1.0-rc1.jar
- gdata-client-1.0.jar
Instantiate other objects from those jars such as SpreadsheetEntry for example works. The solutions I've found for this problem lied all in missing jars. I think this isn't the problem here, since I could create other objects from those jars.