Bjr,

j'utilise le plugin Validator pour valider mes forms.

Apparemment, ca marche mais je n'arrive pas à afficher les messages d'erreurs de validation dans ma JSP.

<html:errors/>
<html:form action="/ajout">
Numero Adherent: <html:text property="id"/>
<br>
Nom: <html:text property="name"/>
<br>
<html:submit/>
</html:form>

est-ce que c le tag html:errors qu'il faut employer???

Voici ce que j'ecrit dans validation.xml
<form name="AjoutBibliothecaireForm">
<field
property="id"
depends="required,integer">
<arg0 key="biblio.id"/>
</field>
<field
property="name"
depends="required">
<arg0 key="biblio.name"/>
</field>
</form>
</formset>

et voici l'action-mapping
<action input="/pages/ajout.jsp" name="AjoutBibliothecaireForm"

path="/ajout" scope="request" type="dynaAjoutAction">

<forward name="success" path="/pages/success.jsp" redirect="false"/>

<forward name="failure" path="/pages/failure.jsp"/>

</action>

Merci bcp de votre aide