I need to read and write to a directory which is a peer to my WebDAV root. The WebDAV root is "$TOMCAT_HOME/webapps/webdav". I would like to write to "$TOMCAT_HOME/webapps/myApp". Can it be configured to allow this? Perhaps via a symbolic link?


Crickets... chirp... chirp... chirp

link|improve this question

67% accept rate
feedback

1 Answer

up vote 1 down vote accepted

A symlink will work fine, assuming your WebDAV server is configured to follow them. For Apache, you want "Options FollowSymLinks" in the DAV config, probably. See the apache docs for details on that.

link|improve this answer
I'm using Tomcat, so I edited the root tag of context.xml in $TOMCAT_HOME/conf from <Context> to <Context allowLinking="true">. Works perfectly. – dacracot Oct 29 '09 at 14:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.