S2 Action Setter Not Called

2011-02-02 Thread Rubens Gomes
Hello, I am running Struts 2 (version 2.2.1.1) and the struts2-convention-plugin to annotate all Actions. My action parameter setters are not being called by the ParametersInterceptor. The form does submit the email parameter to my action. And the logs show that parameter on the ParametersIn

Re:

2011-02-02 Thread Chris Pratt
I suppose it wouldn't be possible to have the action sort it out using separate methods? You could use: (*Chris*) On Tue, Feb 1, 2011 at 12:45 AM, Agoston Bejo wrote: > > > Thanks Chris, > > > the problem is that there are other s:submit buttons on the form the action > attributes of which

RE:

2011-02-02 Thread Martin Gainty
you could make your form namespace aware by assigning the namespace attribute in the form tag Martin Gainty __ Jogi és Bizalmassági kinyilatkoztatás/Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Ez az üzenet bizalmas. H

Re:

2011-02-02 Thread Vitor De Mario
I suppose you could submit via javascript, setting the entire url on the form. document.forms[0].action = 'entireURLgoeshere'; document.forms[0].submit(); That's not really a solution, just an ugly work-around. On Tue, Feb 1, 2011 at 6:45 AM, Agoston Bejo wrote: > > > Thanks Chris, > > > the p