Bonjour, ou éventuellement bonsoir,
Je m'adresse à vous car je rencontre actuellement un énorme problème pour exécuter mes applications sur le serveur.
Je m'explique, je travail actuellement sur une application dont l'une des fonctionnalités et d'assurer la connexion en utilisant une BdD Oracle 11g que j'ai moi-même créé et configuré.
actuellement quand je lance mon application, la page .jsp que j'ai définie comme page de démarrage s'affiche sans problème, mais dès que je clique sur le bouton "connexion" je reçois un message d'erreur de ce genre.
http://imageshack.us/photo/my-images/14/erreurmq.png/
Je rappelle que je travail avec Struts 1, Hibernate ainsi qu'avec l'IDE MyEclipse 6.5
voici aussi mon web.xml
http://imageshack.us/photo/my-images/194/webbs.png/
et voici une partie du code correspondant à ma page d'acceuile index.jsp
et finalement le struts-config.xml
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 <%@ page language="java" pageEncoding="ISO-8859-1"%> <%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%> <%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%> <%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic"%> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Rapport Des Taxes Altéa</title> <link href="/AlteaTaxes/styles/AlteaTaxes.css" rel="stylesheet" type="text/css" /> <link rel="icon" type="image/gif" href="/AlteaTaxes/images/favicon.gif" /> </head> <body> <div id="container"> <div id="container-header"> <div id="container-name">Automatisation des rapports<span></span></div> <div id="container-slogan">Version 1.0</div> </div> <div id="container-eyecatcher"> <img src="/AlteaTaxes/images/sky.jpg" /> </div> <div id="container-content"><div id="content"> <h1>Altea<span> Taxes</span> </h1> <h2>Veuillez vous authentifier<br/></h2> <logic:present name="message" scope="request"> <i style="color: green; margin-left: 40px;">Session cloturée</i> </logic:present > <logic:present name="erreur" scope="request"> <i style="color: red; margin-left: 40px;"> La combinaison login et mot de passe est incorrecte, veuillez réessayer</i> </logic:present > <form action="/login"> <table> <tr> <td><i>Nom de l'utilisateur : <br /></i></td><td></td><td><input type="text" property="user"/></td> <td><img src="/AlteaTaxes/images/login.jpg" width="100px" /></td> </tr> <tr> <td><i>Mot de passe :</i></td><td></td><td><input type="password" property="password"/></td> <td></td> </tr> </table> <input type="submit" value="S'authentifier"/> </form> </div>
En attendant des réponses de votre part je vous remercie d'avance
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 <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN" "http://struts.apache.org/dtds/struts-config_1_2.dtd"> <struts-config> <data-sources /> <form-beans type="org.apache.struts.action.ActionFormBean"> <form-bean name="loginForm" type="com.ram.struts.form.LoginForm" /> <form-bean name="rapportsForm" type="com.ram.struts.form.RapportsForm" /> </form-beans> <global-exceptions /> <global-forwards > <forward name="Rapports" path="/form/AlteaTaxes.jsp" /> <forward name="Resultats" path="/pages/Resultats.jsp" /> <forward name="Recap" path="/pages/Recap.jsp" /> <forward name="Fops" path="/pages/Fops.jsp" /> <forward name="Taxes" path="/pages/Taxes.jsp" /> <forward name="Recaptaxes" path="/pages/RecapTaxes.jsp" /> <forward name="Recapventes" path="/pages/RecapVentes.jsp" /> <forward name="Index" path="/form/index.jsp" /> <forward name="NoResult" path="/pages/NoResult.jsp" /> </global-forwards> <action-mappings > <action attribute="loginForm" input="/form/index.jsp" name="loginForm" path="/login" scope="session" type="com.ram.struts.action.LoginAction" /> <action attribute="rapportsForm" input="/form/rapports.jsp" name="rapportsForm" path="/rapports" scope="session" type="com.ram.struts.action.RapportsAction" /> <action attribute="rapportsForm" input="/form/AlteaTaxes.jsp" name="rapportsForm" path="/recap" scope="session" type="com.ram.struts.action.RecapAction" /> <action input="/pages/Resultats.jsp" path="/fops" scope="session" type="com.ram.struts.action.FopsAction" /> <action path="/Decon" scope="session" type="com.ram.struts.action.DeconAction" /> </action-mappings> <message-resources parameter="com.ram.struts.ApplicationResources" /> </struts-config>
Partager