No context-relative URI specified via the 'parameter' attribute
Bonjour,
je suis en train de développez une application web(struts) mais j'ai un problème de communication entre la page jsp (login) d'authentification et l'action voici mon fichier struts-config.xml:
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| <?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE struts-config PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 1.1//EN"
"http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd">
<struts-config>
<form-beans>
<form-bean name="LoginForm" type="org.impression.form.LoginForm"/>
</form-beans>
<action-mappings>
<action path="/LoginAction" name="LoginForm"
type="org.apache.struts.actions.ForwardAction">
<forward name="success" path="/accueil.jsp"></forward>
<forward name="failure" path="/erreurs.jsp"></forward>
</action>
</action-mappings>
</struts-config> |
quand j'insère le login et le mot de passe dans la page d'authentifacation l'erreur suivante s'affiche:
Citation:
No context-relative URI specified via the 'parameter' attribute
merci pour votre aide