views:

36

answers:

0

I'm trying to connect my Google App Engine webapp to the Google Latitude API using OAuth. I have it working in my dev environment, but when I try to test the app using Google's dev_appserver.sh, I get the following error:

java.security.AccessControlException: access denied (java.net.SocketPermission www.googleapis.com resolve)

Is this an issue with the GAE Java class whitelist? If so, is there any way around this?

I'm pretty sure consuming OAuth services is possible on App Engine, after reading this tutorial and others like it using GAE Python.

Thanks!