0 Replies Latest reply on Jul 3, 2006 11:44 AM by thmix10

    Want to add another ThreadPool

    thmix10

      I am porting an application from Weblogic that uses a dedicated execute ThreadPool for the handling of a possible slow running and/or deadlock causing JSP.

      The given servlet/JSP was assigned to the ThreadPool in the web.xml:

      <web-app>

      <servlet-name>MyServletWithaSlowPage</servlet-name>
      <jsp-file>/MySlowPage.jsp</jsp-file>
      <init-param>
      <param-name>wl-dispatch-policy</param-name>
      <param-value>DedicatedPool</param-value>
      </init-param>

      </web-app>

      Is there a way to do this in JBoss/Tomcat?

      Thanks,
      Todd