salut,

je tente de me connecter à une base de données oracle 9i avec Strutsa.
je configure le fichier struts-config.xml le voila
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
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts-config PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 1.3//EN"
"http://jakarta.apache.org/struts/dtds/struts-config_1_3.dtd">
<struts-config>
<data-sources>
<data-source key="arabsoft">
<set-property property="driverClass" value="oracle.jdbc.driver.OracleDriver"></set-property>
<set-property property="url" value="jdbc:oracle:thin:@Localhost:1521:arabsoft"></set-property>
<set-property property="user" value="gmao"></set-property>
<set-property property="password" value="gmao"></set-property>
<set-property property="minCount" value="2"></set-property>
<set-property property="maxCount" value="5"></set-property>
</data-source>
</data-sources>
 
<form-beans>
<form-bean
		name="frmPersonne"
		type="istia.st.struts.personne.FormulaireBean"/>
</form-beans>
 
<action-mappings>
	<action
		path="/main"
		name="frmPersonne"
		scope="session"
		validate="true"
		input="/erreurs.do"
		parameter="/vues/main.html"
		type="istia.st.struts.personne.FormulaireAction">
	 <forward name="reponse" path="/vues/reponse.personne.jsp"/>
	</action>
 
	<action
		path="/erreurs"
		parameter="/vues/erreurs.personne.jsp"
		type="org.apache.struts.actions.ForwardAction"
	/>
	<action
		path="/reponse"
		parameter="/vues/reponse.personne.jsp"
		type="org.apache.struts.actions.ForwardAction"
	/>
	<action
		path="/formulaire"
		parameter="/vues/formulaire.personne.jsp"
		type="org.apache.struts.actions.ForwardAction"
	/>
</action-mappings>
<message-resources parameter="ressources.personneressources"/>
</struts-config>
mais une bouton rouge s'affiche devant la balise <struts-config>
avec l'erreur suivante:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
The content of element type "struts-config" must match "(display-name?,description?,form-beans?,global-exceptions?,global-forwards?,action-mappings?,controller?,message-resources*,plug-in*)".
merci d'avance