Yeah, my url pattern is *.action as I do have some struts1 actions. <filter-mapping> <filter-name>struts2</filter-name> <url-pattern>*.action</url-pattern> <dispatcher>REQUEST</dispatcher> <dispatcher>FORWARD</dispatcher> </filter-mapping>
On 03/05/2018 12:27 AM, Lukasz Lenart wrote: > 2018-03-02 17:33 GMT+01:00 Prasanth <dbad...@pangburngroup.com>: >> https://issues.apache.org/jira/projects/WW/issues/WW-4904 >> >> Forwarded using request dispatcher. >> >> ServletContext sContext = context.getContext("/context2"); >> RequestDispatcher rd = sContext.getRequestDispatcher(resource); >> rd.forward(request, response); > Did you add FORWARD as below when configuring the Struts filter? > > <filter-mapping> > <filter-name>struts</filter-name> > <url-pattern>/*</url-pattern> > <dispatcher>REQUEST</dispatcher> > <dispatcher>FORWARD</dispatcher> > </filter-mapping> > > > Regards