On apache tomcat
C:\Program Files\Apache Software Foundation\Tomcat 6.0\conf\Catalina\localhost\
we can change folders for another by specify it in XML like: THE_FOLDER.xml
and in that xml we can change that THE_FOLDER path
<Context path="/MF_PHRASES" reloadable="true" docBase="C:\Projects\Customers\test\phrases" workDir="C:\Projects\Customers\test\phrases" />
but it doesn't work for folder located on other server:
<Context path="/MF_PHRASES" reloadable="true" docBase="\\192.168.0.100\c$\Projects\Customers\test\phrases"
workDir="\\192.168.0.100\c$\Projects\Customers\test\phrases" />
not working
is there any way to make it work?