You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@struts.apache.org by Kris Schneider <kr...@dotech.com> on 2003/12/01 17:03:00 UTC

Re: Assigning a single struts action to a Weblogic 6.1 SP5 ExecuteQueue

Don't think so. Assignment to an execute queue is done through a servlet init
parameter like so:

<servlet>
  ...
  <init-param>
    <param-name>wl-dispatch-policy</param-name>
    <param-value>QueueName</param-value>
  </init-param>
</servlet>

Which means that you could assign the Struts ActionServlet to an execute queue,
but not a subset of its actions. If you really need some piece of code to run
within a different execute queue, you'll probably need to code up a separate
servlet. Of course, the usual cautions about coding to a specific container and
its feature set apply...

Quoting "Giangregorio, Paul" <PG...@ifdsgroup.co.uk>:

> 
> Is it possible to assign a struts action (one action within the
> struts-config.xml file) to a specific ExecuteQueue within Weblogic? My
> application is currently being serviced by the *default* queue - i.e. all of
> the struts actions are serviced by the default queue. I have particular
> action that I want serviced by a different queue.
> 
> Many thanks.

-- 
Kris Schneider <ma...@dotech.com>
D.O.Tech       <http://www.dotech.com/>

---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org