There is no WicketFilter here. You use Atmosphere, and I guess you have atmosphere.xml that specifies the delegation to WicketFilter.
I suggest you to create a quickstart with Wicket only and test it. If it works then ask in Atmosphere forums. If it doesn't then create a ticket and attach your application so we can debug it. On Sun, Apr 28, 2013 at 9:37 PM, souvikbhattacharyas < [email protected]> wrote: > 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: [email protected] > For additional commands, e-mail: [email protected] > > -- Martin Grigorov Wicket Training & Consulting http://jWeekend.com <http://jweekend.com/>
