Here's my configuration files:
struts-config:
<plug-in className="org.apache.struts.validator.ValidatorPlugIn">
<set-property property="pathnames" value="/WEB-INF/validator-rules.xml, /WEB-INF/validation.xml"/>
</plug-in>
validation.xml
<formset> <form name="cadastrarHistoricoNegociacaoForm"> <field property="outras" depends="required"> <arg0 key="historicoNegociacao.campo.outras"/> </field> <field property="areaAtuacao" depends="required"> <arg0 key="historicoNegociacao.campo.atuacao"/> </field> </form> </formset>
I have the original validator-rules.xml and the appResources has all the default messages.
My form, extends ValidatorForm, and I have a validate method with this body:
ActionErrors errors = super.validate(mapping,request);
if(errors == null){
errors = new ActionErrors();
}
if(produtos.size() == 0){
errors.add("produto",new ActionMessage("historicoNegociacao.erro.produtos"));
}
Problem is, the call to the super class always return an empty (not null) ActionErrors. What could be wrong?
thanx
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]