I am using the manager app in tomcat 7, and i am unable to undeploy an application completely.
It says
FAIL - Unable to delete [F:\\apache-tomcat-7.0.33\\weba
This is one of the common issues with tomcat. Tomcat server catches hold of the resources on startup and deploys it. While undeploying, some resource would still be in use by tomcat. It would not yet have released the resource, but at the same time, another thread in tomcat would try to cleanup the same resources. Hence, the deletion of those resources would fail. One best way is to clean up the application's root directory in webapps manually.