IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Struts 1 Java Discussion :

problèmes avec mon validator


Sujet :

Struts 1 Java

  1. #1
    Débutant
    Inscrit en
    Septembre 2007
    Messages
    372
    Détails du profil
    Informations forums :
    Inscription : Septembre 2007
    Messages : 372
    Points : 86
    Points
    86
    Par défaut problèmes avec mon validator
    Bonjour, je continue sur mon application struts,mais je crois que j'ai un problème avec mes fichiers de validation, il me retourne les erreurs suivantes :
    type Rapport d'exception

    message

    description Le serveur a rencontré une erreur interne () qui l'a empêché de satisfaire la requête.

    exception

    javax.servlet.ServletException: org.apache.struts.validator.DynaValidatorForm
    org.apache.struts.chain.ComposableRequestProcessor.process(ComposableRequestProcessor.java:286)
    org.apache.struts.action.ActionServlet.process(ActionServlet.java:1913)
    org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:462)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:802)


    cause mère

    java.lang.ClassCastException: org.apache.struts.validator.DynaValidatorForm
    istia.st.struts.personne.FormulaireAction.execute(FormulaireAction.java:15)
    org.apache.struts.chain.commands.servlet.ExecuteAction.execute(ExecuteAction.java:58)
    org.apache.struts.chain.commands.AbstractExecuteAction.execute(AbstractExecuteAction.java:67)
    org.apache.struts.chain.commands.ActionCommandBase.execute(ActionCommandBase.java:51)
    org.apache.commons.chain.impl.ChainBase.execute(ChainBase.java:190)
    org.apache.commons.chain.generic.LookupCommand.execute(LookupCommand.java:304)
    org.apache.commons.chain.impl.ChainBase.execute(ChainBase.java:190)
    org.apache.struts.chain.ComposableRequestProcessor.process(ComposableRequestProcessor.java:283)
    org.apache.struts.action.ActionServlet.process(ActionServlet.java:1913)
    org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:462)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    malgré que j'ai mis mes fichiers de validation dans web-inf(validation.xml, validator-rules.xml, validator_1_0.dtd ) vous avez une idée sur d'où provient l'erreur ?

  2. #2
    Expert éminent

    Femme Profil pro
    Inscrit en
    Juillet 2005
    Messages
    5 793
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : France

    Informations forums :
    Inscription : Juillet 2005
    Messages : 5 793
    Points : 7 778
    Points
    7 778
    Par défaut
    Apparemment, ton ActionForm n'hérite pas de DynaValidatorForm.
    Modératrice Java - Struts, Servlets/JSP, ...

  3. #3
    Débutant
    Inscrit en
    Septembre 2007
    Messages
    372
    Détails du profil
    Informations forums :
    Inscription : Septembre 2007
    Messages : 372
    Points : 86
    Points
    86
    Par défaut problèmes avec mon validator
    Voila en gros ce que j'ai fait parce que appremment j'ai pas trouvé de solution :
    FormulaireBean.java
    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
    package istia.st.struts.personne;
    import javax.servlet.http.*;
    import org.apache.struts.action.*;
    public class FormulaireBean extends ActionForm {
    private static final long serialVersionUID = 1L;
    // nom
    private String nom = null;
    public String getNom() {
    return nom;
    }
    public void setNom(String nom) {
    this.nom = nom;
    }
    // age
    private String age = null;
    public String getAge() {
    return age;
    }
    public void setAge(String age) {
    this.age = age;
    }
    public ActionErrors validate(ActionMapping mapping, HttpServletRequest request) {
    // gestion des erreurs
    ActionErrors erreurs = new ActionErrors();
    // le nom doit être non vide
    if (nom == null || nom.trim().equals("")) {
    erreurs.add("nomvide", new ActionMessage("personne.formulaire.nom.vide"));
    // l'âge doit être un entier positif
    }
    if (age == null || age.trim().equals("")) {
    	erreurs.add("agevide", new ActionMessage("personne.formulaire.age.vide"));
    }
    else {
    // l'âge doit être un entier positif
    if (!age.matches("^\\s*\\d+\\s*$")) {
    erreurs.add("ageincorrect", new ActionMessage("personne.formulaire.age.incorrect", age));
    // on rend la liste des erreurs
    }
    } 
    return erreurs;
    }}
    FormulaireAction :
    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
    package istia.st.struts.personne;
    import org.apache.struts.action.Action;
    import org.apache.struts.action.ActionMapping;
    import org.apache.struts.action.ActionForm;
    import org.apache.struts.action.ActionForward;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import java.io.IOException;
    import javax.servlet.ServletException;
    public class FormulaireAction extends Action {
    public ActionForward execute(ActionMapping mapping, ActionForm form,
    HttpServletRequest request, HttpServletResponse response)
    throws IOException,ServletException {
    // on a un formulaire valide, sinon on ne serait pas arrivé là
    FormulaireBean formulaire=(FormulaireBean)form;
    request.setAttribute("nom",formulaire.getNom());
    request.setAttribute("age",formulaire.getAge());
    return mapping.findForward("reponse");
    }//execute
    }
    PersonneDynaForm.java
    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
    package istia.st.struts.personne;
    import javax.servlet.http.*;
    import org.apache.struts.action.*;
    public class PersonneDynaForm extends DynaActionForm {
    // validation
    private static final long serialVersionUID = 1L;
    public ActionErrors validate(ActionMapping mapping, HttpServletRequest request) {
    // gestion des erreurs
    ActionErrors erreurs = new ActionErrors();
    // le nom doit être non vide
    String nom = (String)this.get("nom");
    if (nom == null || nom.trim().equals("")) {
    erreurs.add("nomvide", new ActionMessage("personne.formulaire.nom.vide"));
    }
    // l'âge doit être non vide
    String age = (String)this.get("age");
    if (age == null || age.trim().equals("")) {
    erreurs.add("agevide", new ActionMessage("personne.formulaire.age.vide"));
    }
    else {
    // l'âge doit être un entier positif
    if (!age.matches("^\\s*\\d+\\s*$")) {
    erreurs.add("ageincorrect", new ActionMessage("personne.formulaire.age.incorrect", age));
    // on rend la liste des erreurs
    }
    } //if
    // on rend la liste d'erreurs
    return erreurs;
    }
    }
    struts-config.html :
    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
    <?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="frmPersonne" type="org.apache.struts.validator.DynaValidatorForm">
    <form-property name="nom" type="java.lang.String" initial=""/>
    <form-property name="age" type="java.lang.String" initial=""/>
    </form-bean>
    </form-beans>
    <action-mappings>
    <action
    path="/main"
    name="frmPersonne"
    validate="true"
    input="/erreurs.do"
    scope="session"
    type="istia.st.struts.personne.FormulaireAction"
    >
    <forward name="reponse" path="/reponse.do"/>
    </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"
    null="false"
    />
    <plug-in className="org.apache.struts.validator.ValidatorPlugIn">
    <set-property
    property="pathnames"
    value="/WEB-INF/validator-rules.xml,/WEB-INF/validation.xml"
    />
    </plug-in>
    </struts-config>

  4. #4
    Expert éminent

    Femme Profil pro
    Inscrit en
    Juillet 2005
    Messages
    5 793
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : France

    Informations forums :
    Inscription : Juillet 2005
    Messages : 5 793
    Points : 7 778
    Points
    7 778
    Par défaut
    Il faut faire référence à la DynaActionForm PersonneDynaForm dans la balise form-bean :
    Code xml : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    <form-bean name="frmPersonne" type="istia.st.struts.personne.PersonneDynaForm">
       <form-property name="nom" type="java.lang.String" initial=""/>
       <form-property name="age" type="java.lang.String" initial=""/>
    </form-bean>
    et dans l'Action FormulaireAction :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    PersonneDynaForm formulaire=(PersonneDynaForm) form;
    request.setAttribute("nom",formulaire.get("nom"));
    request.setAttribute("age",formulaire.get("age"));
    Mais tout ceci est écrit dans le tutoriel.
    Modératrice Java - Struts, Servlets/JSP, ...

  5. #5
    Débutant
    Inscrit en
    Septembre 2007
    Messages
    372
    Détails du profil
    Informations forums :
    Inscription : Septembre 2007
    Messages : 372
    Points : 86
    Points
    86
    Par défaut problèmes avec mon validator
    voila, j'ai changé ca mais ca marche pas :
    struts-html.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
    45
    46
    47
    48
    49
    <?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="frmPersonne" type="istia.st.struts.personne.PersonneDynaForm">
    <form-property name="nom" type="java.lang.String" initial=""/>
    <form-property name="age" type="java.lang.String" initial=""/>
    </form-bean>
    </form-beans>
    <action-mappings>
    <action
    path="/main"
    name="frmPersonne"
    validate="true"
    input="/erreurs.do"
    scope="session"
    type="istia.st.struts.personne.FormulaireAction"
    >
    <forward name="reponse" path="/reponse.do"/>
    </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"
    null="false"
    />
    <plug-in className="org.apache.struts.validator.ValidatorPlugIn">
    <set-property
    property="pathnames"
    value="/WEB-INF/validator-rules.xml,/WEB-INF/validation.xml"
    />
    </plug-in>
    </struts-config>
    FormulaireBean.java :
    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
    package istia.st.struts.personne;
    import javax.servlet.http.*;
    import org.apache.struts.action.*;
    public class FormulaireBean extends ActionForm {
    private static final long serialVersionUID = 1L;
    // nom
    private String nom = null;
    public String getNom() {
    return nom;
    }
    public void setNom(String nom) {
    this.nom = nom;
    }
    // age
    private String age = null;
    public String getAge() {
    return age;
    }
    public void setAge(String age) {
    this.age = age;
    }
    public ActionErrors validate(ActionMapping mapping, HttpServletRequest request) {
    // gestion des erreurs
    ActionErrors erreurs = new ActionErrors();
    // le nom doit être non vide
    if (nom == null || nom.trim().equals("")) {
    erreurs.add("nomvide", new ActionMessage("personne.formulaire.nom.vide"));
    // l'âge doit être un entier positif
    }
    if (age == null || age.trim().equals("")) {
    	erreurs.add("agevide", new ActionMessage("personne.formulaire.age.vide"));
    }
    else {
    // l'âge doit être un entier positif
    if (!age.matches("^\\s*\\d+\\s*$")) {
    erreurs.add("ageincorrect", new ActionMessage("personne.formulaire.age.incorrect", age));
    // on rend la liste des erreurs
    }
    } 
    return erreurs;
    }}
    FormulaireAction :
    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
    package istia.st.struts.personne;
    import org.apache.struts.action.Action;
    import org.apache.struts.action.ActionMapping;
    import org.apache.struts.action.ActionForm;
    import org.apache.struts.action.ActionForward;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import java.io.IOException;
    import javax.servlet.ServletException;
    public class FormulaireAction extends Action {
    public ActionForward execute(ActionMapping mapping, ActionForm form,
    HttpServletRequest request, HttpServletResponse response)
    throws IOException,ServletException {
    // on a un formulaire valide, sinon on ne serait pas arrivé là
    PersonneDynaForm formulaire=(PersonneDynaForm) form;
    request.setAttribute("nom",formulaire.get("nom"));
    request.setAttribute("age",formulaire.get("age"));
    return mapping.findForward("reponse");
    }//execute
    }
    PersonneDynaForm :
    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
    package istia.st.struts.personne;
    import javax.servlet.http.*;
    import org.apache.struts.action.*;
    public class PersonneDynaForm extends DynaActionForm {
    // validation
    private static final long serialVersionUID = 1L;
    public ActionErrors validate(ActionMapping mapping, HttpServletRequest request) {
    // gestion des erreurs
    ActionErrors erreurs = new ActionErrors();
    // le nom doit être non vide
    String nom = (String)this.get("nom");
    if (nom == null || nom.trim().equals("")) {
    erreurs.add("nomvide", new ActionMessage("personne.formulaire.nom.vide"));
    }
    // l'âge doit être non vide
    String age = (String)this.get("age");
    if (age == null || age.trim().equals("")) {
    erreurs.add("agevide", new ActionMessage("personne.formulaire.age.vide"));
    }
    else {
    // l'âge doit être un entier positif
    if (!age.matches("^\\s*\\d+\\s*$")) {
    erreurs.add("ageincorrect", new ActionMessage("personne.formulaire.age.incorrect", age));
    // on rend la liste des erreurs
    }
    } //if
    // on rend la liste d'erreurs
    return erreurs;
    }
    }
    Erreurs :
    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
    javax.servlet.ServletException: org.apache.struts.validator.DynaValidatorForm
    	org.apache.struts.chain.ComposableRequestProcessor.process(ComposableRequestProcessor.java:286)
    	org.apache.struts.action.ActionServlet.process(ActionServlet.java:1913)
    	org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:462)
    	javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
    	javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
     
     
    cause mère 
     
    java.lang.ClassCastException: org.apache.struts.validator.DynaValidatorForm
    	istia.st.struts.personne.FormulaireAction.execute(FormulaireAction.java:15)
    	org.apache.struts.chain.commands.servlet.ExecuteAction.execute(ExecuteAction.java:58)
    	org.apache.struts.chain.commands.AbstractExecuteAction.execute(AbstractExecuteAction.java:67)
    	org.apache.struts.chain.commands.ActionCommandBase.execute(ActionCommandBase.java:51)
    	org.apache.commons.chain.impl.ChainBase.execute(ChainBase.java:190)
    	org.apache.commons.chain.generic.LookupCommand.execute(LookupCommand.java:304)
    	org.apache.commons.chain.impl.ChainBase.execute(ChainBase.java:190)
    	org.apache.struts.chain.ComposableRequestProcessor.process(ComposableRequestProcessor.java:283)
    	org.apache.struts.action.ActionServlet.process(ActionServlet.java:1913)
    	org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:462)
    	javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
    	javax.servlet.http.HttpServlet.service(HttpServlet.java:802)

  6. #6
    Expert éminent

    Femme Profil pro
    Inscrit en
    Juillet 2005
    Messages
    5 793
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : France

    Informations forums :
    Inscription : Juillet 2005
    Messages : 5 793
    Points : 7 778
    Points
    7 778
    Par défaut
    En fait, je me suis trompée tout à l'heure.

    Si tu passes par le Validator, essaie plutôt :
    Code xml : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    <form-bean name="frmPersonne" type="org.apache.struts.validator.DynaValidatorForm">
       <form-property name="nom" type="java.lang.String" initial=""/>
       <form-property name="age" type="java.lang.String" initial=""/>
    </form-bean>
    et dans l'Action :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    DynaActionForm formulaire=(DynaActionForm ) form;
    request.setAttribute("nom",formulaire.get("nom"));
    request.setAttribute("age",formulaire.get("age"));
    Modératrice Java - Struts, Servlets/JSP, ...

  7. #7
    Débutant
    Inscrit en
    Septembre 2007
    Messages
    372
    Détails du profil
    Informations forums :
    Inscription : Septembre 2007
    Messages : 372
    Points : 86
    Points
    86
    Par défaut problèmes avec mon validator
    Merci, ca marche mais uniquement lorsque les données ne sont pas valides, lorsque je saisie des valeur valides, il me renvoie vers une page d'erreurs :

    Erreurs :
    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
    javax.servlet.ServletException: istia.st.struts.personne.PersonneDynaForm
    	org.apache.struts.chain.ComposableRequestProcessor.process(ComposableRequestProcessor.java:286)
    	org.apache.struts.action.ActionServlet.process(ActionServlet.java:1913)
    	org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:462)
    	javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
    	javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
     
     
    cause mère 
     
    java.lang.ClassCastException: istia.st.struts.personne.PersonneDynaForm
    	istia.st.struts.personne.FormulaireAction.execute(FormulaireAction.java:15)
    	org.apache.struts.chain.commands.servlet.ExecuteAction.execute(ExecuteAction.java:58)
    	org.apache.struts.chain.commands.AbstractExecuteAction.execute(AbstractExecuteAction.java:67)
    	org.apache.struts.chain.commands.ActionCommandBase.execute(ActionCommandBase.java:51)
    	org.apache.commons.chain.impl.ChainBase.execute(ChainBase.java:190)
    	org.apache.commons.chain.generic.LookupCommand.execute(LookupCommand.java:304)
    	org.apache.commons.chain.impl.ChainBase.execute(ChainBase.java:190)
    	org.apache.struts.chain.ComposableRequestProcessor.process(ComposableRequestProcessor.java:283)
    	org.apache.struts.action.ActionServlet.process(ActionServlet.java:1913)
    	org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:462)
    	javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
    	javax.servlet.http.HttpServlet.service(HttpServlet.java:802)

  8. #8
    Expert éminent

    Femme Profil pro
    Inscrit en
    Juillet 2005
    Messages
    5 793
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : France

    Informations forums :
    Inscription : Juillet 2005
    Messages : 5 793
    Points : 7 778
    Points
    7 778
    Par défaut
    Tu n'as pas modifié FormulaireAction comme je te l'ai indiqué précédemment.

    Tu dois remplacer ceci :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    PersonneDynaForm formulaire=(PersonneDynaForm) form;
    par ceci :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    DynaActionForm formulaire=(DynaActionForm ) form;
    Modératrice Java - Struts, Servlets/JSP, ...

  9. #9
    Débutant
    Inscrit en
    Septembre 2007
    Messages
    372
    Détails du profil
    Informations forums :
    Inscription : Septembre 2007
    Messages : 372
    Points : 86
    Points
    86
    Par défaut problèmes avec mon validator


    Merci c_nvy

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Réponses: 3
    Dernier message: 21/06/2006, 19h48
  2. [Mail] Problème avec mon script d'envoi de mail
    Par leroivert dans le forum Langage
    Réponses: 18
    Dernier message: 02/12/2005, 00h26
  3. Problème avec mon service mysql et PhpMyAdmin
    Par Fixazo dans le forum Outils
    Réponses: 1
    Dernier message: 28/08/2005, 18h02
  4. problème avec mon lecteur CD
    Par leo13 dans le forum Périphériques
    Réponses: 3
    Dernier message: 16/08/2005, 11h21
  5. Problème avec mon firewall ...
    Par Wis dans le forum Tomcat et TomEE
    Réponses: 15
    Dernier message: 06/04/2004, 08h46

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo