views:

37

answers:

1

Hi everyone I'm having hard time trying to figure out how to import a Gdata library into my eclipse build to use with Google App Engine(Java)

A: 

just put the gdata jar in the application WEB-INF/lib jar file

Have you added below in appengine-web.xml

<system-properties>
  <property name="com.google.gdata.DisableCookieHandler" value="true"/>
 </system-properties>

You can refer to http://code.google.com/appengine/kb/java.html#googledata

Shekhar
Thanks for the speedy reply. I've tried this approach though. I placed all of the Gdata files in the WEB-INF/lib folder in my eclipse directory. I deployed it and whenever I tried to call the servlet via http the web browser(chrome) it gives me a 500 error. I am using the com.google.gdata.client.spreadsheet.SpreadsheetService package.
AndroidFighter
I have updated the answer.Please review it..
Shekhar
Yes I have including this as well and still I get this error - Error: Server ErrorThe server encountered an error and could not complete your request.If the problem persists, please report your problem and mention this error message and the query that caused it.
AndroidFighter