1 pièce(s) jointe(s)
	
	
		Type non reconnu dans JSP
	
	
		Bonjour, j'ai un problème avec un type client que j'ai crée en tant que bean.
Je veux utiliser celui-ci dans une page JSP. Sauf que voila l'erreur
	Code:
	
Client cannot be resolved to a type
 voici ma page JSP que j'essaye de faire : 
	Code:
	
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
   | <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Recapitulatif de la Commande</title>
</head>
<body>
<%@pageimport=" bean.Livre, bean.Livre " %>
<%@ include file = "header.jsp" %>
 
<div style="width: 300px">
	<% Client cli = (Client) session.getAttribute("C");%>
 
	<TABLE width="100%">
		<TR>
			<TD><b>Nom : </b></TD>
			<TD><%= cli.getNom() %></TD>
		</TR>
		<TR>
			<TD><b>Prénom : </b></TD>
 
			<TD><%= cli.getPrenom() %></TD>
		</TR>
		<TR>
			<TD><b>Code Postal : </b></TD>
			<TD><%= cli.getCp() %></TD>
		</TR>
		<TR>
 
			<TD><b>Email : </b></TD>
			<TD><a href="<%= cli.getEmail() %>"/><%= cli.getEmail() %></a></TD>
		</TR>
	</TABLE>
 
</div>
 
</body>
</html> | 
 L’arborescence de mon appli Web se trouve en PJ.
Il semble que j'ai un souci de répertoire d'après mes recherche, mais je n'arrive pas à cerner le problème. Est ce que qqun aurait une idée?