Could anyone answer my question, please?
I\'d like to deploy a web application folder
C:\\app\\myapp
to Tomcat6.x instead of havin
You should create a myapp.xml file for this app and place it in %TOMCAT_HOME%\conf\Catalina\localhost.
myapp.xml
%TOMCAT_HOME%\conf\Catalina\localhost
The file looks something like this:
<Context displayName="myapp" docBase="C:/app/myapp" path="/myapp" reloadable="true" />