Bonjour,

J'ai un formulaire qui utilise struts.. et au moment de le poster, j'obtiens l'erreur
javax.servlet.ServletException: javax.servlet.ServletException: BeanUtils.populate
Alors, j'ai vu bcp de forums ou on parle de pb sur des html:select

ma jsp
<!-- pour éviter les problèmes de cache -->
<meta http-equiv="PRAGMA" content="NO-CACHE"/>
<meta http-equiv="EXPIRES" content="-1"/>

<%@taglib uri="struts-html" prefix="html" %>
<%@taglib uri="struts-bean" prefix="bean" %>
<%@taglib uri="struts-nested" prefix="nested"%>
<%@taglib uri="struts-logic" prefix="logic" %>


<htmlhtml/>
<html:javascript formName="identification"/>

<script type="text/javascript">
function sauvegarder(value)
{
frm=document.forms['gererProduitsForm'];
frm.elements['typeAction'].value =value;
frm.submit();
}
function update(value)
{
frm=document.forms['gererProduitsForm'];
frm.elements['typeAction'].value =value;
frm.submit();
}
function supprimer(value,param)
{
frm=document.forms['gererProduitsForm'];
frm.elements['typeAction'].value =value;
frm.elements['idCategoriesProduits'].value =param;
frm.submit();
}
function initTableau(value)
{
frm=document.forms['gererProduitsForm'];
frm.elements['typeAction'].value =value;
frm.submit();
}
</script>

<div class="errors">
<html:errors/>
</div>
<html:form action="choixProduit.do?action=saveOrUpdateOrDelete" method="post">
<input type="hidden" name="typeAction"/>
<input type="hidden" name="idFamilleProduit"/>
<input type="hidden" name="idCategoriesProduits"/>
<h2 id="title">
Gestion des catégories de produits
</h2>
<br>

<div id="work">
<div id="admin_cat">

<table class="selectFam">
<tr>
<th>Choix de la famille de produits</th>
</tr>
<tr>
<td>
<html:select property="listFamillesProduits" onchange="initTableau('initTableau')">
<html:optionsCollection name="gererProduitsForm" property="listFamillesProduits" value="idFamillesProduits" label="libelle" />
</html:select>
</td>
</tr>
</table>
<table class="selectFam">
<tr>
<th>Choix de la catégorie de produits</th>
</tr>
<tr>
<td>

</td>
</tr>
</table>
<table class="selectFam">
<tr>
<th>Choix du produit</th>
</tr>
<tr>
<td>

</td>
</tr>
</table>


</div>
<div id="admin_famille">
</div>
</div>
</html:form>
Comment faire pour trouver l'origine de ce problème ??

Merci !