I have a Java Application, using Eclipse plugin. When I try to upload, I get error:
com.google.appengine.tools.admin.HttpIoException: Error posting to URL: https://appengine.google.com/api/appversion/create?app_id=my_appname&version=1&
404 Not Found
This application does not exist (app_id=u'my_appname').
Here, my_appname is the application id from my Google App Engine account. I have already checked the contents of appengine-web.xml, it looks fine:
<?xml version="1.0" encoding="utf-8"?>
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
<application>my_appname</application>
<version>1</version>
</appengine-web-app>
Why am I getting this error and how can I fix my application?