How can I use a jsp:include tag and overwrite parameters in the main request?

Here's my situation:
ActionBean1 with @UrlBinding("/tool/{param1}/{param2}/{$event}")

Call to /tool/param_a/param_b/event_a returns a forward resolution to
/WEB-INF/request/path.jsp.  path.jsp contains: <jsp:include
page="/tool/param_c/param_d/event_b" />

I would like the jsp:include to invoke ActionBean1's event_b method with
param_c and param_d.  What happens is ActionBean1's event_a method gets
called with param_a and param_b.  It appears the invocation mechanism is
honoring the user's request parameters above the parameters specified in the
jsp:include.

What am I doing wrong?

Thanks,
Peter
-- 
View this message in context: 
http://www.nabble.com/overwriting-jsp%3Ainclude-parameters-tp22855735p22855735.html
Sent from the stripes-users mailing list archive at Nabble.com.


------------------------------------------------------------------------------
_______________________________________________
Stripes-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-users

Reply via email to