Carlos López wrote:
Does any body knows how can I change the Maximum session allow by tomcat. 


This is not supported in Tomcat 3.2, but is possible in Tomcat 4.0 by nesting a <Manager> element inside your <Context> element:

    <Context path="/myapp" ...>
        <Manager maxActiveSessions="50"/>
    </Context>

This applies to the standard session manager -- extended session managers that are being added will support additional facilities like swapping active but idle sessions out to persistent storage, in addition to a limit on the number of sessions currently in memory.

Craig McClanahan
 

Reply via email to