Then its really shocking that it's not working for me. I am attaching my
web.xml below.

    
    <security-constraint>
        <web-resource-collection>
            <web-resource-name>protected</web-resource-name>
            <url-pattern>/*</url-pattern>
            <http-method>TRACE</http-method>
            <http-method>PUT</http-method>
            <http-method>OPTIONS</http-method>
            <http-method>DELETE</http-method>
        </web-resource-collection>
    </security-constraint>

    <session-config>
        <session-timeout>30</session-timeout>
    </session-config>

    
    <servlet>
        <servlet-name>wicket.ssp</servlet-name>
        <servlet-class>org.atmosphere.cpr.AtmosphereServlet</servlet-class>
        <init-param>
            <param-name>applicationClassName</param-name>
            <param-value>Start up class</param-value>
        </init-param>
        <init-param>
            <param-name>listings</param-name>
            <param-value>false</param-value> 
        </init-param>
        <init-param>
            <param-name>configuration</param-name>
            <param-value>deployment</param-value>
        </init-param>
        <init-param>
            <param-name>org.atmosphere.useWebSocket</param-name>
            <param-value>false</param-value>
        </init-param>
        <init-param>
            <param-name>org.atmosphere.useNative</param-name>
            <param-value>true</param-value>
        </init-param>
        <init-param>
            <param-name>org.atmosphere.cpr.sessionSupport</param-name>
            <param-value>true</param-value>
        </init-param>
        <init-param>
            <param-name>filterMappingUrlPattern</param-name>
            <param-value>/ssp/*</param-value>
        </init-param>
        <init-param>
           
<param-name>org.atmosphere.cpr.broadcastFilterClasses</param-name>
           
<param-value>org.atmosphere.client.TrackMessageSizeFilter</param-value>
        </init-param>
        <load-on-startup>0</load-on-startup>
    </servlet>

    <servlet-mapping>
        <servlet-name>wicket.ssp</servlet-name>
        <url-pattern>/sst/*</url-pattern>
    </servlet-mapping>
</web-app>



--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Session-timeout-tp4658356p4658360.html
Sent from the Users forum mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to