Re:

2011-02-01 Thread Agoston Bejo
s*) On Mon, Jan 31, 2011 at 10:59 PM, Agoston Bejo wrote: > > > Hi! > > I would like to specify the "action" attribute of an such that > it > points to an action in a namespace other than which the jsp is in: > > struts.xml: > > ...

user@struts.apache.org

2011-01-31 Thread Agoston Bejo
Hi! I would like to specify the "action" attribute of an such that it points to an action in a namespace other than which the jsp is in: struts.xml: ... ... /p/p2/x.jsp: ... <%-- WORKS, but not an s:submit --%> <%-- NEITHER OF THESE WORKS: --%> Any ideas? Thanks, Agoston

Struts2 question: ModelDriven +

2011-01-28 Thread Agoston Bejo
Hey there, here's my problem: a) the action: public class SomeAction ... implements ModelDriven { ... public SomeModel getModel() {...} ... } b) the model: public class SomeModel implements Serializable { ... public List> getMessageTypes() { ... } public String getRaggedyAndy() { ... } ... }

Re-call the former Action

2005-08-18 Thread Agoston Bejo
Re-call the former action Hi! My problem is the following: the workflow should be something like this: Page1 -> action1.execute(mapping1, form1, ...) { if(action2 is not performed) go to Page2 } Page2 -> action2.execute(mapping2, form2, ...) { do something indicate in the se