I created one application in eclipse.I deployed that application in google app engine.It deployed successfully.But now i want to do some changes in my application.It is possible to do the changes.And also one more doubt possible to delete my appliction after done the deployement.
You need re-deploy the whole application again.
You cannot selectively update parts of it.
What you can do, however, is deploy many versions at the same time, for example to test the most recent changes before rolling it out to the public. Every version is accessible via a different URL (versionName.latest.appName.appspot.com), and you can choose one of them to be the default one (appName.appspot.com). Keep in mind, though, that all versions use the same data store and memcache.
So, do not delete you local copy of the application (and more importantly its source, if this is a Java app) after deployment.
You can delete the application from App Engine (from Google's servers) using the Admin Console.
If its a python app use the appcfg.py like this
appcfg.py [email protected] update .
from the local directory of your application after making the updates.
Follow these links for more info. Python: http://code.google.com/appengine/docs/python/tools/uploadinganapp.html Java: http://code.google.com/appengine/docs/java/tools/uploadinganapp.html