Why does scriptSessionTimeout parameter not work in DWR 2.0.5?

View: New views
1 Messages — Rating Filter:   Alert me  

Why does scriptSessionTimeout parameter not work in DWR 2.0.5?

by Jian-zhi :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I try to use DWR 2.0.5 with reverse feature.
But after I set the scriptSessionTimeout parameter it does not work.
When the time expired I still see the thread in server.
My web.xml settings is below:

<servlet>
  <servlet-name>dwr-invoker</servlet-name>
  <servlet-class>org.directwebremoting.servlet.DwrServlet</servlet-class>
  <init-param>
    <param-name>scriptSessionTimeout</param-name>
    <param-value>30000</param-value>
  </init-param>
  <init-param>
    <param-name>activeReverseAjaxEnabled</param-name>
    <param-value>true</param-value>
  </init-param>
  <init-param>
    <param-name>initApplicationScopeCreatorsAtStartup</param-name>
    <param-value>true</param-value>
  </init-param>
  <load-on-startup>1</load-on-startup>
</servlet>

Any one any comments about it?