J'ai une action de type LookupDispatchAction ki marche bien avec un submit

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
<html:form action="/adminChoice">
<html:submit property="method">
<bean:message key="AdminChoice.AddAdmin"/>
</html:submit>
</html:form>
mais ki ne marche pas avec html:link comme j'ai vu sur la FAQ
http://java.developpez.com/faq/strut...dispatchaction

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
<html:link action="/adminChoice?method=AddAdmin" >
<bean:message key="AdminChoice.AddAdmin"/>
</html:link>
et génére l'erreur suivante :
Request[/adminChoice] does not contain handler parameter named method
Est ce que quelqu'un pourrait m'expliquer et me donner la solution svp, j suis bloqué.