In my Struts app, I have an action, called Foo.
<action name="Foo" class="some.path.here.foo">
<result name="SUCCESS" type="tiles">/foo.tiles</result>
</action>
Normally it calls execute(), but I want to call another method called change(). How can I do so?
My Idea was this:
<form name="Foo" action="Foo" >
<s:textfield name="Mail" placeholder="Mail" />
<select name="someselect">
<s:iterator value="someblabla">
<option value="<s:property value="somevalue"/>" label="<s:property value="Description"/>"><s:property value="Name"/></option>
</s:iterator>
</select>
<s:submit method="change" value="Go!"></s:submit>
</form>
But when I want to do this, I get
HTTP Status 404 - No result defined for action some.path.is.here.Foo and result input
Can you help me out here?