Regis Muller schrieb:
> 
> Sorry to ask such a trivial question to all of you but how can I put my
> .jsp files outside of the ROOT Directory of tomcat in e.g. in
> apache\htdocs ?
> 
you have to configure the position of the directory in the config file: 
        tomcat/conf/server.xml
there should be some example.

        <Context path="/myapp" 
                 docBase="apache\htdocs\myappdocbase" 
                 crossContext="false"
                 debug="0" 
                 reloadable="true" > 
        </Context>

The docbase should probably given as an absolute path.

simon

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

Reply via email to