Reputation: 1
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)
Upvotes: 0
Views: 767
Reputation: 5931
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
Upvotes: 1