ProgramME
ProgramME

Reputation: 653

Getting Permission Denied on using app engine

Using eclispe Helios with Google app plugin.
I am learning to use google app engine and was trying to make guestbook as provided in demo.
when ran it as Web Application i got the following error:

May 3, 2011 3:16:59 PM com.google.appengine.tools.info.RemoteVersionFactory getVersion
INFO: Unable to access https://appengine.google.com/api/updatecheck?runtime=java&release=1.4.0×tamp=1291156877&api_versions=['1.0']
java.net.SocketException: Permission denied: connect
    at java.net.PlainSocketImpl.socketConnect(Native Method)**  

Please provide me with a solution.

Upvotes: 1

Views: 1184

Answers (2)

jrichard
jrichard

Reputation: 11

Solution: create a file whit name: .appcfg_no_nag in the user path System.getProperty("user.home")

For this you can use the command "rename" :

C:\Users\tony>rename some_fyle.txt .appcfg_no_nag

This disabled the checkUpdate !

Upvotes: 1

Abdul Kader
Abdul Kader

Reputation: 5842

Its because appengine is not able to check for updates, That is you should configure network settings in eclipse to use internet for update. But i don't think that should stop you from running your application. To know more about network configuration in eclipse you can have a look here.If you are behind proxy make sure that you are giving your proxy ip address and username, password if required

Upvotes: 1

Related Questions