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

Tomcat et TomEE Java Discussion :

Cannot create JDBC driver of class '' for connect URL 'null'


Sujet :

Tomcat et TomEE Java

  1. #1
    Membre éclairé Avatar de Elwe31
    Profil pro
    Inscrit en
    Octobre 2004
    Messages
    487
    Détails du profil
    Informations personnelles :
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations forums :
    Inscription : Octobre 2004
    Messages : 487
    Par défaut Cannot create JDBC driver of class '' for connect URL 'null'
    Bonjour,

    Alors voila l'erreur :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    Exception sur l'accès à la BDD org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create JDBC driver of class '' for connect URL 'null'
    Mon fichier server.xml:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
     
    <Resource
    		name="jdbc/test"
    		auth="Container"
    		type="javax.sql.DataSource"/>
    		<ResourceParams name="jdbc/test" 
    		                driverClassName="oracle.jdbc.OracleDriver"
    				url="jdbc:oracle:thin:@APHRODITE:1526:ANNX"
    				username="*****" password="****"/>
    le fichier web.xml :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
     
    <web-app> 
    	<display-name>test</display-name> 
    	<resource-ref>
    		<description>reference a la ressource BDD pour le pool</description>
    		<res-ref-name>jdbc/test</res-ref-name>
    		<res-type>javax.sql.DataSource</res-type>
    		<res-auth>Container</res-auth>
    	</resource-ref> 
    </web-app>
    et ma page 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
     
    <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
        pageEncoding="ISO-8859-1"%>
     
    <%@ page import="javax.sql.*" %>
    <%@ page import="java.sql.*" %>
    <%@ page import="javax.naming.*" %>
     
    <%!
    DataSource ds;
    %>
    <html>
        <head>
        <title><%= application.getServerInfo() %></title>
    </head>
     
    <body>
    <%
    try {
    	//récupération de la source de donnée
    	Context initContext = new InitialContext();
        Context envContext  = (Context)initContext.lookup("java:/comp/env");
        ds = (DataSource)envContext.lookup("jdbc/test");
    	} catch (Exception e) {
    		throw new UnavailableException(e.getMessage());
    	}
     
     
    Connection con=null;
    Statement s=null;
    ResultSet rs=null;
     
    try {
    	//récupération de la Connection depuis le DataSource
    	con = ds.getConnection();
    	s = con.createStatement();
    	rs = s.executeQuery("SELECT * FROM table1");
    	while (rs.next()) {
    		out.println(rs.getString(1) + "      ");
    		out.println(rs.getString(2) + "<br/>");
    	}
    } catch (SQLException e) {
    	response.sendError(500, "Exception sur l'accès à la BDD " + e);
      }
     
    %>
    </body>
    </html>
    j'ai cherché un peu partout sur le net, sans rien qui puisse m'aider
    je suis sous tomcat 6.0.13

    Quelqu'un peu m'aider ????
    merci d'avance.

  2. #2
    Membre Expert
    Homme Profil pro
    Directeur technique
    Inscrit en
    Janvier 2007
    Messages
    1 348
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 48
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Directeur technique

    Informations forums :
    Inscription : Janvier 2007
    Messages : 1 348
    Par défaut
    Ca serait bien d'avoir la stack plutôt que uniquement le type d'exception ..

  3. #3
    Membre éclairé Avatar de Elwe31
    Profil pro
    Inscrit en
    Octobre 2004
    Messages
    487
    Détails du profil
    Informations personnelles :
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations forums :
    Inscription : Octobre 2004
    Messages : 487
    Par défaut
    Voila :
    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
     
     
    org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create JDBC driver of class '' for connect URL 'null'
    	at org.apache.tomcat.dbcp.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:1150)
    	at org.apache.tomcat.dbcp.dbcp.BasicDataSource.getConnection(BasicDataSource.java:880)
    	at utils.DataBase.init(DataBase.java:18)
    	at org.apache.jsp.testDB_jsp._jspService(testDB_jsp.java:73)
    	at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
    	at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    	at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:393)
    	at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
    	at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
    	at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
    	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    	at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230)
    	at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
    	at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
    	at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104)
    	at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
    	at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:261)
    	at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
    	at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:581)
    	at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
    	at java.lang.Thread.run(Unknown Source)

  4. #4
    Membre Expert
    Homme Profil pro
    Directeur technique
    Inscrit en
    Janvier 2007
    Messages
    1 348
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 48
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Directeur technique

    Informations forums :
    Inscription : Janvier 2007
    Messages : 1 348
    Par défaut
    Euh ... dans le code que tu as donné je ne vois nulle part "utils.DataBase.init(DataBase.java:18)" ...

  5. #5
    Membre éclairé Avatar de Elwe31
    Profil pro
    Inscrit en
    Octobre 2004
    Messages
    487
    Détails du profil
    Informations personnelles :
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations forums :
    Inscription : Octobre 2004
    Messages : 487
    Par défaut
    oupsssss !
    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
     
    org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create JDBC driver of class '' for connect URL 'null'
    	at org.apache.tomcat.dbcp.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:1150)
    	at org.apache.tomcat.dbcp.dbcp.BasicDataSource.getConnection(BasicDataSource.java:880)
    	at org.apache.jsp.index_jsp._jspService(index_jsp.java:91)
    	at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
    	at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    	at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:393)
    	at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
    	at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
    	at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
    	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    	at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230)
    	at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
    	at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
    	at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104)
    	at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
    	at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:261)
    	at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
    	at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:581)
    	at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
    	at java.lang.Thread.run(Unknown Source)

  6. #6
    Membre éclairé Avatar de Elwe31
    Profil pro
    Inscrit en
    Octobre 2004
    Messages
    487
    Détails du profil
    Informations personnelles :
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations forums :
    Inscription : Octobre 2004
    Messages : 487
    Par défaut
    Voila,

    J'ai essayé ça :
    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
     
    <%@ page import="javax.naming.*" %>
    <%@ page import="javax.naming.directory.*" %>
    <%@ page import="java.util.*" %>
    <%@ page import="java.beans.*" %>
    <%@ page import="java.lang.reflect.*" %>
     
    <%! public String getJndiContent(Context ctx, String name) {
      StringBuffer buffer = new StringBuffer();
      buffer.append("<table>");
      buffer.append("<tr><th colspan=\"2\" align=\"left\">");
      buffer.append(name);
      buffer.append("</th></tr>");
      try {
        NamingEnumeration e = ctx.listBindings(name);
     
        while (e.hasMoreElements()) {
          Binding currentElement = (Binding)e.next();
          Object currentObject = currentElement.getObject();
          buffer.append("<tr><td>&nbsp;</td><td>");
          if (currentObject instanceof Context) {
            String subName;
            if (name.endsWith(":")) {
              subName = name+currentElement.getName();
            } else {
              subName = name+"/"+currentElement.getName();
            }
            buffer.append(getJndiContent(ctx, subName));
          } else {
            buffer.append(getJndiElementContent(currentElement, currentObject));
          }
          buffer.append("</td></tr>");
        }
     
      } catch (Exception e) {
        buffer.append("<tr><td>");
        buffer.append(e);
        buffer.append("</td></tr>");
      }
      buffer.append("</table>");
      return buffer.toString();
    }%>
     
    <%! public String getJndiElementContent(Binding element, Object object) {
      StringBuffer buffer = new StringBuffer();
      buffer.append("<table border=\"1\">");
      buffer.append("<tr><th colspan=\"2\" align=\"left\">");
      buffer.append(element.getName());
      buffer.append("</th></tr>");
     
      try {
        BeanInfo beanInfo = Introspector.getBeanInfo(object.getClass());
        PropertyDescriptor[] propertyDescriptor = beanInfo.getPropertyDescriptors();
        for (int i=0;i<propertyDescriptor.length;i++) {
          Method getter = propertyDescriptor[i].getReadMethod();
          buffer.append("<tr><td><B>");
          buffer.append(propertyDescriptor[i].getName());
          buffer.append("</td><td>");
          buffer.append(getter.invoke(object, null));
          buffer.append("</td></tr>");
        }
      } catch (Exception e) {
      }
      buffer.append("</table>");
     
      return buffer.toString();
    }%>
     
    <strong>System properties : </strong><br>
    java.naming.factory.initial :
    <%=System.getProperty("java.naming.factory.initial")%><br>
    java.naming.provider.url :
    <%=System.getProperty("java.naming.provider.url")%><br>
     
    <p><strong>JNDI Context : </strong></p>
    <%
    try {
      InitialContext ctx = new InitialContext();
    %>
    <%=getJndiContent(ctx, "java:/comp/env/")%>
    <%
    } catch (Exception e) {
    %>
    Error getting initial context : <%=e%>
    <%
    }
    %>
    et j'obtiens :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
     
    System properties : 
    java.naming.factory.initial : org.apache.naming.java.javaURLContextFactory
    java.naming.provider.url : null
     
    JNDI Context : 
     
    java:/comp/env/ 
      java:/comp/env//jdbc 
      test 
    accessToUnderlyingConnectionAllowed      false 
    class                                                   class org.apache.tomcat.dbcp.dbcp.BasicDataSource 
    connection
    merci encore

  7. #7
    Membre éclairé Avatar de Elwe31
    Profil pro
    Inscrit en
    Octobre 2004
    Messages
    487
    Détails du profil
    Informations personnelles :
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations forums :
    Inscription : Octobre 2004
    Messages : 487
    Par défaut
    je galere.... personne ???

  8. #8
    Membre éclairé Avatar de Elwe31
    Profil pro
    Inscrit en
    Octobre 2004
    Messages
    487
    Détails du profil
    Informations personnelles :
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations forums :
    Inscription : Octobre 2004
    Messages : 487
    Par défaut
    Grrrrrrrrrrrr
    ça veut toujours pas.... je viens de passer la matinée a Changer l'ordre des paramatres de la ressource, mettre la ressource dans <GlobalNamingResources>, essayer avec d'autres drivers(MySQL et odbc) que j'ai copier dans la lib de tomcat. cherché des infos sur le net...
    J'ai plus d'idée là.... AU SECOURS !!!

  9. #9
    Membre Expert
    Homme Profil pro
    Directeur technique
    Inscrit en
    Janvier 2007
    Messages
    1 348
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 48
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Directeur technique

    Informations forums :
    Inscription : Janvier 2007
    Messages : 1 348
    Par défaut
    avec le titre de ton post donne http://forum.java.sun.com/thread.jspa?threadID=567630

    As-tu essayé ça ? (tout dans le tag Resource et pas de ResourceParams)

    Edit : changé l'url mauvais copier coller

  10. #10
    Membre éclairé Avatar de Elwe31
    Profil pro
    Inscrit en
    Octobre 2004
    Messages
    487
    Détails du profil
    Informations personnelles :
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations forums :
    Inscription : Octobre 2004
    Messages : 487
    Par défaut
    aussi,
    mon server.xml a cette tete la mainteant:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    <Resource name="jdbc/test" auth="Container" description="DB Connection" type="javax.sql.DataSource" factory="org.apache.commons.dbcp.BasicDataSourceFactory" driverClassName="oracle.jdbc.driver.OracleDriver" password="***" maxIdle="2" maxWait="5000" username="****" url="jdbc:oracle:thin:@APHRODITE:1526:ANNX" maxActive="4" />
    tout sur la meme ligne... je vide a chaque redemarre le dossier work....

  11. #11
    Membre Expert
    Homme Profil pro
    Directeur technique
    Inscrit en
    Janvier 2007
    Messages
    1 348
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 48
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Directeur technique

    Informations forums :
    Inscription : Janvier 2007
    Messages : 1 348
    Par défaut
    Quelques questions :
    1) Ton jar est bien dans common/lib ?
    2) As tu essayé avec "org.apache.tomcat.dbcp.dbcp.BasicDataSourceFactory" comme factory ?
    3) As-tu modifié le context.xml dans le META-INF ?

  12. #12
    Membre éclairé Avatar de Elwe31
    Profil pro
    Inscrit en
    Octobre 2004
    Messages
    487
    Détails du profil
    Informations personnelles :
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations forums :
    Inscription : Octobre 2004
    Messages : 487
    Par défaut
    1/ Le jar pour Oracle ??? oui
    2/ org.apache.tomcat.dbcp.dbcp.BasicDataSourceFactory donne le meme resultat !
    3/ qu'est ce que je dois mettre dans le context.xml ????


    dernier strack :
    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
     
    org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create JDBC driver of class '' for connect URL 'null'
    	at org.apache.tomcat.dbcp.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:1150)
    	at org.apache.tomcat.dbcp.dbcp.BasicDataSource.getConnection(BasicDataSource.java:880)
    	at org.apache.jsp.index_jsp._jspService(index_jsp.java:91)
    	at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
    	at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    	at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:393)
    	at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
    	at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
    	at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
    	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    	at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230)
    	at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
    	at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
    	at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104)
    	at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
    	at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:261)
    	at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
    	at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:581)
    	at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
    	at java.lang.Thread.run(Unknown Source)
    Caused by: java.lang.NullPointerException
    	at sun.jdbc.odbc.JdbcOdbcDriver.getProtocol(Unknown Source)
    	at sun.jdbc.odbc.JdbcOdbcDriver.knownURL(Unknown Source)
    	at sun.jdbc.odbc.JdbcOdbcDriver.acceptsURL(Unknown Source)
    	at java.sql.DriverManager.getDriver(Unknown Source)
    	at org.apache.tomcat.dbcp.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:1143)
    	... 20 more

  13. #13
    Membre Expert
    Homme Profil pro
    Directeur technique
    Inscrit en
    Janvier 2007
    Messages
    1 348
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 48
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Directeur technique

    Informations forums :
    Inscription : Janvier 2007
    Messages : 1 348
    Par défaut
    Ben pour context.xml cf deuxième résultat de ... Avant de poser ta question tu aurais pu regarder ...
    http://www.theserverside.com/discuss...hread_id=25459

  14. #14
    Membre éclairé Avatar de Elwe31
    Profil pro
    Inscrit en
    Octobre 2004
    Messages
    487
    Détails du profil
    Informations personnelles :
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations forums :
    Inscription : Octobre 2004
    Messages : 487
    Par défaut
    Merci merci merci, j'avais pas vu ça !

    voila le fichier contexte.xml pour tout ceux qui font des recherches sur le probleme...
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
     
    docBase="\test"
       path="C:\Documents and Settings\Gitelr\workspace\test" 
       useNaming="true"
          <ResourceLink global="jdbc/test" name="jdbc/test" type="javax.sql.DataSource"/>
    Merci encore a chtig

  15. #15
    Membre Expert
    Homme Profil pro
    Directeur technique
    Inscrit en
    Janvier 2007
    Messages
    1 348
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 48
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Directeur technique

    Informations forums :
    Inscription : Janvier 2007
    Messages : 1 348
    Par défaut
    De rien (au passage, j'avais jamais fait ça, je me suis juste basé sur ce que je trouvais sur mon ami )

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

Discussions similaires

  1. Cannot create JDBC driver of class '' for connect URL 'null'
    Par edenyorke dans le forum Tomcat et TomEE
    Réponses: 4
    Dernier message: 27/06/2011, 19h29
  2. Réponses: 1
    Dernier message: 17/07/2010, 18h58
  3. Réponses: 1
    Dernier message: 13/07/2010, 12h34
  4. Cannot create JDBC driver of class '' for connect URL 'null'
    Par ensisoft dans le forum Tomcat et TomEE
    Réponses: 1
    Dernier message: 09/10/2007, 19h05
  5. Réponses: 7
    Dernier message: 10/09/2006, 11h58

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