Monday, August 22, 2011

config tomcat to pint to application folder

change server.xml file to include following tag and content inside host tag

<Context path="/cims" docBase="C:/workspace/cimsreport/web" debug="0"
reloadable="true" crossContext="true">
</Context>


for tomcat6 property debug should be removed

1 comment:

  1. this the part of Context in tomcat6 that point to my Basic_Struts2_mvn package folder

    <Context path="/Basic_Struts2_Mvn" docBase="/home/dttdev1/workspace/Basic_Struts2_Mvn/target/Basic_Struts2_Mvn" debug="0" reloadable="true" crossContext="true"></Context>

    make the attributes are same,they are case-sensitive

    ReplyDelete