or shorter with
        <Context docBase="/<your-doc-base>" path="/<your-context>">

                <Manager pathname="" />
        </Context>

at tomcat 5.5 add the description at your META-INF/context.xml
      <Context>
                <Manager pathname="" />
        </Context>

or at the conf/context.xml

:-)

Peter



Am 14.03.2006 um 15:31 schrieb Michael Südkamp:

Hmm, context.xml? I know only of server.xml. At least on Windows. Here is a
context snippet for server.xml which disables session persistence.

Michael

        <Context docBase="/<your-doc-base>" path="/<your-context>">
<Manager className="org.apache.catalina.session.PersistentManager"
            saveOnRestart="false">
<Store className="org.apache.catalina.session.FileStore"/>
            </Manager>
        </Context>


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




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

Reply via email to