bonjour tt le monde,

Je demande votre aide sur un point :

voici le code de ma JSP :
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
 
<%@ page contentType="text/html; charset=iso-8859-1" language="java" import="java.sql.*" errorPage="" %>
<%@ page language="java"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic" prefix="logic" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Modification des Données du Client</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
body {
	background-image: url(/GestionClientMeditel/form/images/rouge.jpg);
}
.Style1 {
	color: #FFFFFF;
	font-weight: bold;
}
.Style2 {
	font-size: 24px;
	text-decoration: blink;
}
-->
</style></head>
 
<body>
<html:form action="clientEdit.do">
  <table width="162" height="88" border="1" align="right">
    <tr>
      <td width="152" height="82"><img src="/GestionClientMeditel/form/images/logo_meditel.jpg" width="152" height="77"></td>
    </tr>
  </table>
  <p>&nbsp; </p>
   <p>&nbsp;</p>
   <table width="379" border="0" align="center">
     <tr>
       <td width="369" class="Style1 Style2">Entrer les nouvelles donn&eacute;es du Client : </td>
     </tr>
   </table>
   <p>&nbsp;</p>
   <p>&nbsp;   </p>
   <table width="688" border="0">
    <tr>
      <td width="177" class="Style1"><strong>Site Name</strong>:</td>
      <td><html:text property="nom"/><html:errors property="nom"/><br/><td/>
      <td width="161">&nbsp;</td>
      <td width="165">&nbsp;</td>
    </tr>
    <tr>
      <td><span class="Style1">Site Street Address</span></td>
      <td><html:text property="adresse"/><html:errors property="adresse"/><br/><td/>
      <td>&nbsp;</td>
      <td>&nbsp;</td>
    </tr>
    <tr>
      <td class="Style1">Site Latitude </td>
      <td><html:text property="latitude"/><html:errors property="latitude"/><br/><td/>
      <td class="Style1">Site Longitude </td>
      <td><html:text property="longitude"/><html:errors property="longitude"/><br/><td/>
    </tr>
    <tr>
      <td class="Style1">Building Height </td>
      <td><html:text property="hauteursite"/><html:errors property="hauteursite"/><br/><td/>
      <td>&nbsp;</td>
      <td>&nbsp;</td>
    </tr>
    <tr>
      <td class="Style1">Contact Name </td>
      <td><html:text property="contactnom"/><html:errors property="contactnom"/><br/><td/>
      <td class="Style1">Contact Tel </td>
      <td><html:text property="contactnum"/><html:errors property="contactnum"/><br/><td/>
    </tr>
    <tr>
      <td class="Style1">Date</td>
      <td><html:text property="dateajout"/><html:errors property="dateajout"/><br/><td/>
      <td>&nbsp;</td>
      <td>&nbsp;</td>
    </tr>
    <tr>
 
      <td><html:select property="besoin">
 
        <html:option  value="Voix IP">Voix IP</html:option>
        <html:option  value="Internet">Internet</html:option>
        <html:option  value="Data">Data</html:option>
        <html:option  value="Voix TDM / Internet">Voix TDM / Internet</html:option>
        <html:option  value="Voix TDM / Data">Voix TDM / Data</html:option>
        <html:option  value="Voix IP / Internet">Voix IP / Internet</html:option>
        <html:option  value="Voix IP / Data">Voix IP / Data</html:option>
        <html:option  value="Internet / Data">Internet / Data</html:option>
        <html:option  value="Voix TDM / Internet / Data">Voix TDM / Internet / Data</html:option>
        <html:option  value="Voix IP / Internet / Data">Voix IP / Internet / Data</html:option>
        </html:select>
        <html:errors property="fonction"/><br/><td/>
 
      <td class="Style1">Capacite</td>
      <td><html:text property="capacite"/><html:errors property="capacite"/><br/><td/>
    </tr>
  <tr>
<td colspan="1">
<html:submit>Sauvegarder</html:submit>
</td>
</tr>
<html:hidden property="nom" />
</table>
<%-- set the parameter for the dispatch action --%>
		<html:hidden property="do" value="saveClient" />
</html:form>
</div>
	<div class="bottom"></div>
						</div>
      </div>
    </div><div id="end_body"></div>
</body>
</html>
qu'on j'entre un des caracteres mentionés : il me donne cette erreur :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
 
GRAVE: "Servlet.service()" pour la servlet jsp a lancé une exception
javax.servlet.jsp.JspException: Exception thrown by getter for property nom of bean org.apache.struts.taglib.html.BEAN
	at org.apache.struts.util.RequestUtils.lookup(RequestUtils.java:964)
	at org.apache.struts.taglib.html.BaseFieldTag.doStartTag(BaseFieldTag.java:176)
je crois que c'est en relation avec le codage utilisée par ma JSP, donc c'est quoi la ligne a modifier et par koi?

merci d'avance!