Struts1 RequestProcessor

2014-07-01 Thread Christopher Gokey
We've got some pretty old code that I'm trying to port over to Struts2 and if someone could point me in the right direction in how I can rewrite this code that we subclassed in Struts1's RequestProcessor to handle the same type of thing in Struts2, I'd really appreciate it. Basically: 1) In Stru

Re: Struts1 RequestProcessor

2014-07-01 Thread Christopher Gokey
4, at 5:12 PM, Paul Benedict wrote: > It sounds like what you want is to create a new result type. > > > Cheers, > Paul > > > On Tue, Jul 1, 2014 at 4:08 PM, Christopher Gokey wrote: > >> We've got some pretty old code that I'm trying to port over t

Re: Struts1 RequestProcessor

2014-07-01 Thread Christopher Gokey
sponse response = ServletActionContext.getResponse(); RequestDispatcher dispatcher = request.getRequestDispatcher("/HelloWorld2.jsp"); dispatcher.forward(request, response); } } On Tue, Jul 1, 2014 at 5:35 PM, Christopher Gokey wrote: > Thanks Paul, > > So b

Struts1->Struts2 JSP tags

2014-07-02 Thread Christopher Gokey
So I'm making progress in porting Struts1->Struts2, I've got a couple uses of Struts tags that I'd like to convert over as well: logic:iterate logic:equal logic:notEmpty seem to be the most heavily used. Is there equivalents for these in Struts2? Thanks, Chris

Re: Struts1->Struts2 JSP tags

2014-07-03 Thread Christopher Gokey
s, > Paul > > > On Wed, Jul 2, 2014 at 3:42 PM, Christopher Gokey > wrote: > > > So I'm making progress in porting Struts1->Struts2, I've got a couple > uses > > of Struts tags that I'd like to convert over as well: > > logic:iterate > >