Re: how to specify ActionMapper

2007-02-07 Thread Dave Newton
--- Ravi Mangalagiri wrote: > The actual problem is I fixed struts.properties to > use ActionMapper as show below > > struts.mapper.class=org.apache.struts2.dispatcher.mapper.DefaultActionMapper > > but it still uses .. ServletActionRedirectResult That doesn't make any sense; one is a mapper

Re: how to specify ActionMapper

2007-02-07 Thread Ravi Mangalagiri
The actual problem is I fixed struts.properties to use ActionMapper as show below struts.mapper.class=org.apache.struts2.dispatcher.mapper.DefaultActionMapper but it still uses .. ServletActionRedirectResult On 2/7/07, cilquirm <[EMAIL PROTECTED]> wrote: My apologies. I read the message

Re: how to specify ActionMapper

2007-02-07 Thread Dave Newton
--- cilquirm <[EMAIL PROTECTED]> wrote: > Looking at the error message, and the source, it's > just a warning. Processing continues as normal after > that, so it should be setting the values correctly. > > Dave Newton-4 wrote: > > This issue is in JIRA at > > https://issues.apache.org/struts/brows

Re: how to specify ActionMapper

2007-02-07 Thread cilquirm
My apologies. I read the message wrong. Is the problem that the the value is not being set on the action being redirected to? Looking at the error message, and the source, it's just a warning. Processing continues as normal after that, so it should be setting the values correctly. I've not use

Re: how to specify ActionMapper

2007-02-07 Thread Ravi Mangalagiri
Exactly, I followed the example Dave mentioned.. runQueryReport /queryReport auditLogReport /pages/includes/query.jsp according to the documentation if I have a setter/getter for 'queryReportBeanName' on my QueryReportAction, and if I use

Re: how to specify ActionMapper

2007-02-07 Thread Dave Newton
--- cilquirm <[EMAIL PROTECTED]> wrote: > By specifying the "queryReportBeanName" inside the > tag, you're actually setting the value on > the redirect-action object [...] > if you want to set a static param on your own action > then take it out from under the tag and put > it in inside the ta

Re: how to specify ActionMapper

2007-02-07 Thread cilquirm
The error seems self-explanatory. By specifying the "queryReportBeanName" inside the tag, you're actually setting the value on the redirect-action object ( known also by it's java name org.apache.struts2.dispatcher.ServletActionRedirectResult ). if you want to set a static param on your own a