Bonjour,
voici mon pb. Je n'arrive pas à afficher ma jsp a cause de l'erreur suivante:
Cannot retrieve definition for form bean "ClientBean" on action: "client/editerClient.do"
Ma JSP:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
 
<html:form action="client/editerClient.do" method="POST">  
[...]
</html:form>
Mon Struts-Config:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 
<action path="/client/editerClient"
	name="ClientBean"
	type="org.P1.controller.client.ClientDispatchAction"
	scope="session"	
	parameter="editer" 
	validate="false">
	<exception key="error.SaisieException"
        	path="/WEB-INF/client/client.jsp"
		scope="session"
	    	type="org.P1.exceptions.SaisieException"/>	
	<exception key="error.InvalidException"
        	 path="/WEB-INF/client/client.jsp"
   		 scope="session"
		 type="org.P1.exceptions.InvalidException" />
	<forward name="informations" path="/WEB-INF/client/client.jsp"/>
</action>