Hi!

Thank you for the fast reply! Could you please clarify a couple more things for me??

> > (1)
> > I have an action that may be invoked from a number
> > of pages, and SUCCESS should cause the view to
> > return to the calling page.
> > Basically, Page A, B, C can call action MyAction,
> > and the successful execution should return to the
> > calling pages, A, B or C.
> > 
> > I obviously can't specify the view in
> > views.properties, since there is only one
> > destination view... so then, how can I achieve this?
> 
> If you pass "url" parameter, being the URL of calling
> page and direct your SUCCESS ro redirect.action you
> may be wondered. 
> 
> redirect.action is mapped by default. 


Do you mean having different query strings such as

.../MyAction.action?url=A.jsp
.../MyAction.action?url=B.jsp
.../MyAction.action?url=C.jsp

for each of the A, B, C pages? Is there another way so that I don't have to specify 
the url?


> > (2)
> > Also, I have been looking at a design pattern
> > "Intercepting Filter",
> > 
> >
> http://java.sun.com/blueprints/corej2eepatterns/Patterns/Inter
> ceptingFilter.html
> > 
> > and I plan to use this to do some basic background
> > checking, such as user-authentication and decorate
> > the requested jsp page.
> 
> what's wrong with servlet filter or container managed
> security?

That's pretty much it... implement javax.servlet.Filter and put it in the web.xml... 
what i mean was, since "Action" in WW is working really great, is there something 
similar for me to omit implementing the Filter, and use something WW-specific??

Thanks again,

James


-------------------------------------------------------
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01
_______________________________________________
Opensymphony-webwork mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/opensymphony-webwork

Reply via email to