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

JDBC Java Discussion :

Impossible de se connecter oracle en local


Sujet :

JDBC Java

  1. #1
    Candidat au Club
    Inscrit en
    Avril 2010
    Messages
    7
    Détails du profil
    Informations forums :
    Inscription : Avril 2010
    Messages : 7
    Points : 2
    Points
    2
    Par défaut Impossible de se connecter oracle en local
    Bonjour ,

    J'ai un serveur unix sur lequel j'ai installé oracle 11g et tomcat 6 notament.

    Sur ma base oracle j'arrive a requêter avec sqldeveloper en utilisant :

    jdbc:oracle:thin:@IP:1521:SID ainsi que le user et mot de passe.

    Avec netbeans sur mon PC j'arrive à me connecter avec le même code java que sur mon serveur :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
     
    public DBConnexion(){
          try {
          con=null;
          Class.forName("oracle.jdbc.driver.OracleDriver");
          con=DriverManager.getConnection(
                "jdbc:oracle:thin:@IP:1521:SID","user","pass");
          s=con.createStatement(); 
          } catch(Exception e){e.printStackTrace();}
        }
    Par contre quand je suis sur le serveur la même chaine de connexion ne fonctionne pas. Dans les logs tomcat j'ai
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
     
    java.lang.ArrayIndexOutOfBoundsException: 7
            at oracle.security.o3logon.C1.r(C1)
            at oracle.security.o3logon.C1.l(C1)
            at oracle.security.o3logon.C0.e(C0)
            at oracle.security.o3logon.O3LoginClientHelper.getEPasswd(O3LoginClientHelper)
            at oracle.jdbc.ttc7.O3log.<init>(O3log.java:287)
            at oracle.jdbc.ttc7.TTC7Protocol.logon(TTC7Protocol.java:231)
            at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java:200)
            at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.java:251)
            at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:224)
            at java.sql.DriverManager.getConnection(DriverManager.java:620)
            at java.sql.DriverManager.getConnection(DriverManager.java:200)
            at connectionpool.DBConnexion.<init>(DBConnexion.java:22)
    . Je précise que c'est un code qui fonctionne et qui n'est pas modifié sur un autre serveur.

    Je laisse une autre trace que j'ai pu trouver sur le serveur si ça peut aider :
    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
     
    14 avr. 2010 16:03:07 org.apache.catalina.core.StandardWrapperValve invoke
    GRAVE: "Servlet.service()" pour la servlet jsp a généré une exception
    java.lang.NullPointerException
            at connectionpool.DBConnexion.recupereRequete(DBConnexion.java:35)
            at Delta.PertesTransWeb.isNew(PertesTransWeb.java:43)
            at org.apache.jsp.PertesTrans_jsp._jspService(PertesTrans_jsp.java:69)
            at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
            at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:377)
            at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:313)
            at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:260)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
            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:233)
            at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
            at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
            at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
            at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
            at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298)
            at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:852)
            at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:588)
            at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489)
            at java.lang.Thread.run(Thread.java:636)
    Le code associé :
    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
     
    package connectionpool;
     
    import java.sql.*;
    /**
     *
     * @author toto
     */
    public class DBConnexion {
     
        public Connection con;
        public Statement s;
     
        public DBConnexion(){
          try {
          con=null;
          Class.forName("oracle.jdbc.driver.OracleDriver");
          con=DriverManager.getConnection(
                  "jdbc:oracle:thin:@IP:1521:SID","user","pass");
          s=con.createStatement(); 
          } catch(Exception e){e.printStackTrace();}
        }
     
        public void executeRequete(String requete){
            try {
            s.execute(requete);
            } catch(SQLException e){e.printStackTrace();}
        }
     
        public ResultSet recupereRequete(String requete) throws SQLException{
            return s.executeQuery(requete);
        }
     
        public void closeConnexion(){  
          try {
            s.close();
          con.close();
          } catch(SQLException e){e.printStackTrace();}
        }
    }

  2. #2
    Membre du Club
    Profil pro
    Inscrit en
    Décembre 2009
    Messages
    46
    Détails du profil
    Informations personnelles :
    Âge : 38
    Localisation : France, Paris (Île de France)

    Informations forums :
    Inscription : Décembre 2009
    Messages : 46
    Points : 45
    Points
    45
    Par défaut
    Bonjour,

    Et si tu mets 'localhost' ou '127.0.0.1' à la place de IP?

  3. #3
    Candidat au Club
    Inscrit en
    Avril 2010
    Messages
    7
    Détails du profil
    Informations forums :
    Inscription : Avril 2010
    Messages : 7
    Points : 2
    Points
    2
    Par défaut
    Pas mieux

  4. #4
    Membre du Club
    Profil pro
    Inscrit en
    Décembre 2009
    Messages
    46
    Détails du profil
    Informations personnelles :
    Âge : 38
    Localisation : France, Paris (Île de France)

    Informations forums :
    Inscription : Décembre 2009
    Messages : 46
    Points : 45
    Points
    45
    Par défaut
    Arrives tu à t'y connecter via sqldeveloper en local?

  5. #5
    Expert éminent sénior
    Avatar de tchize_
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Avril 2007
    Messages
    25 482
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 45
    Localisation : Belgique

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Avril 2007
    Messages : 25 482
    Points : 48 804
    Points
    48 804
    Par défaut
    c'est bien le même driver sur le serveur et ta station de développement?

  6. #6
    Candidat au Club
    Inscrit en
    Avril 2010
    Messages
    7
    Détails du profil
    Informations forums :
    Inscription : Avril 2010
    Messages : 7
    Points : 2
    Points
    2
    Par défaut
    J'ai regardé sqldeveloper fonctionne en local.

    Par contre j'ai fait un autre test sur un serveur de recette que j'ai et qui fonctionne j'ai juste change l'IP pour le faire pointer sur le nouveau et les mêmes erreurs.

    Pour le driver justement je sais pas trop comment voir quel driver on utilise. Est ce du coté java ou du coté Oracle ?

    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
     
    java.lang.NullPointerException
    	at connectionpool.DBConnexion.recupereRequete(DBConnexion.java:35)
    	at Delta.PertesTransWeb.isNew(PertesTransWeb.java:47)
    	at org.apache.jsp.PertesTrans_jsp._jspService(PertesTrans_jsp.java:56)
    	at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:137)
    	at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    	at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:204)
    	at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
    	at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
    	at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
    	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
    	at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:260)
    	at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
    	at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    	at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    	at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
    	at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
    	at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    	at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    	at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415)
    	at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
    	at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
    	at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
    	at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
    	at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
    	at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
    	at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    	at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    	at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
    	at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
    	at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    	at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    	at org.apache.catalina.connector.warp.WarpRequestHandler.handle(Unknown Source)
    	at org.apache.catalina.connector.warp.WarpConnection.run(Unknown Source)
    	at java.lang.Thread.run(Thread.java:536)
     
     
     
    java.lang.ArrayIndexOutOfBoundsException: 7
            at oracle.security.o3logon.C1.r(C1)
            at oracle.security.o3logon.C1.l(C1)
            at oracle.security.o3logon.C0.e(C0)
            at oracle.security.o3logon.O3LoginClientHelper.getEPasswd(O3LoginClientHelper)
            at oracle.jdbc.ttc7.O3log.<init>(O3log.java:287)
            at oracle.jdbc.ttc7.TTC7Protocol.logon(TTC7Protocol.java:231)
            at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java:200)
            at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.java:251)
            at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:224)
            at java.sql.DriverManager.getConnection(DriverManager.java:512)
            at java.sql.DriverManager.getConnection(DriverManager.java:171)
            at connectionpool.DBConnexion.<init>(DBConnexion.java:22)
            at Delta.PertesTransWeb.isNew(PertesTransWeb.java:46)
            at org.apache.jsp.PertesTrans_jsp._jspService(PertesTrans_jsp.java:56)
            at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:137)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:204)
            at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
            at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
            at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
            at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:260)
            at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
            at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
            at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
            at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
            at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
            at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
            at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
            at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415)
            at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
            at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
            at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
            at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
            at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
            at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
            at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
            at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
            at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
            at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
            at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
            at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
            at org.apache.catalina.connector.warp.WarpRequestHandler.handle(Unknown Source)
            at org.apache.catalina.connector.warp.WarpConnection.run(Unknown Source)
            at java.lang.Thread.run(Thread.java:536)

  7. #7
    Expert éminent sénior
    Avatar de tchize_
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Avril 2007
    Messages
    25 482
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 45
    Localisation : Belgique

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Avril 2007
    Messages : 25 482
    Points : 48 804
    Points
    48 804
    Par défaut
    du coté java, vérifie que le jar qui te sert de driver est bien le même, on dirait qu'une vieille version du driver oracle a des soucis à se connecter à ce serveur....

  8. #8
    Candidat au Club
    Inscrit en
    Avril 2010
    Messages
    7
    Détails du profil
    Informations forums :
    Inscription : Avril 2010
    Messages : 7
    Points : 2
    Points
    2
    Par défaut
    En fait les drivers sur le serveur ce sont des tonnes de fichiers compilés. J'ai décompilé celui qui est mentionné dans le code mais c'est bien chaud !!
    Avec sqldeveloper le driver c'est ojdbc14.jar.

    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
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
     
    // Decompiled by DJ v3.4.4.74 Copyright 2003 Atanas Neshkov  Date: 15/04/2010 12:04:38
    // Home Page : http://members.fortunecity.com/neshkov/dj.html  - Check often for new version!
    // Decompiler options: packimports(3) 
    // Source File Name:   OracleDriver.java
     
    package oracle.jdbc.driver;
     
    import java.sql.*;
    import java.util.Hashtable;
    import java.util.Properties;
    import oracle.jdbc.dbaccess.DBAccess;
    import oracle.jdbc.dbaccess.DBError;
     
    // Referenced classes of package oracle.jdbc.driver:
    //            OracleConnection
     
    public class OracleDriver
        implements Driver
    {
     
        public OracleDriver()
        {
        }
     
        public boolean acceptsURL(String s)
        {
            int i = oracleAcceptsURL(s);
            return i != 2 && i != 1;
        }
     
        public Connection connect(String s, Properties properties)
            throws SQLException
        {
            if(s.regionMatches(0, "jdbc:default:connection", 0, 23))
            {
                String s1 = "jdbc:oracle:kprb";
                int j = s.length();
                if(j > 23)
                    s = s1.concat(s.substring(23, s.length()));
                else
                    s = s1.concat(":");
                s1 = null;
            }
            int i = oracleAcceptsURL(s);
            if(i == 1)
                return null;
            if(i == 2)
            {
                DBError.check_error(67, "OracleDriver.connect");
                return null;
            }
            Hashtable hashtable = parse_url(s);
            String s2 = properties.getProperty("user");
            String s3 = properties.getProperty("password");
            String s4 = properties.getProperty("database");
            if(s4 == null)
                s4 = properties.getProperty("server");
            if(s2 == null)
                s2 = (String)hashtable.get("user");
            if(s3 == null)
                s3 = (String)hashtable.get("password");
            if(s4 == null)
                s4 = (String)hashtable.get("database");
            String s5 = (String)hashtable.get("protocol");
            properties.put("protocol", s5);
            if(s5 == null)
                DBError.check_error(40, "OracleDriver.parse_url");
            String s6 = (String)protocols.get(s5);
            if(s6 == null)
                DBError.check_error(40, "OracleDriver.parse_url");
            String s7 = properties.getProperty("dll");
            if(s7 == null)
                properties.put("dll", "ocijdbc8");
            String s8 = properties.getProperty("prefetch");
            if(s8 == null)
                s8 = properties.getProperty("rowPrefetch");
            if(s8 == null)
                s8 = properties.getProperty("defaultRowPrefetch");
            if(s8 != null && Integer.parseInt(s8) <= 0)
                s8 = null;
            String s9 = properties.getProperty("batch");
            if(s9 == null)
                s9 = properties.getProperty("executeBatch");
            if(s9 == null)
                s9 = properties.getProperty("defaultExecuteBatch");
            if(s9 != null && Integer.parseInt(s9) <= 0)
                s9 = null;
            String s10 = properties.getProperty("remarks");
            if(s10 == null)
                s10 = properties.getProperty("remarksReporting");
            String s11 = properties.getProperty("synonyms");
            if(s11 == null)
                s11 = properties.getProperty("includeSynonyms");
            DBAccess dbaccess = null;
            try
            {
                dbaccess = (DBAccess)Class.forName(s6).newInstance();
            }
            catch(Exception _ex)
            {
                return null;
            }
            Connection connection = getConnectionInstance(dbaccess, s, s2, s3, s4, properties);
            if(s8 != null)
                ((OracleConnection)connection).setDefaultRowPrefetch(Integer.parseInt(s8));
            if(s9 != null)
                ((OracleConnection)connection).setDefaultExecuteBatch(Integer.parseInt(s9));
            if(s10 != null)
                ((OracleConnection)connection).setRemarksReporting(s10.equalsIgnoreCase("true"));
            if(s11 != null)
                ((OracleConnection)connection).setIncludeSynonyms(s11.equalsIgnoreCase("true"));
            hashtable = null;
            return connection;
        }
     
        public Connection defaultConnection()
            throws SQLException
        {
            if(m_defaultConn == null || m_defaultConn.isClosed())
                m_defaultConn = DriverManager.getConnection("jdbc:oracle:kprb:");
            return m_defaultConn;
        }
     
        Connection getConnectionInstance(DBAccess dbaccess, String s, String s1, String s2, String s3, Properties properties)
            throws SQLException
        {
            return new OracleConnection(dbaccess, s, s1, s2, s3, properties);
        }
     
        public int getMajorVersion()
        {
            return 1;
        }
     
        public int getMinorVersion()
        {
            return 0;
        }
     
        public DriverPropertyInfo[] getPropertyInfo(String s, Properties properties)
            throws SQLException
        {
            return new DriverPropertyInfo[0];
        }
     
        public boolean jdbcCompliant()
        {
            return true;
        }
     
        private int oracleAcceptsURL(String s)
        {
            int i = s.indexOf(':');
            if(i == -1)
                return 1;
            int j = s.indexOf(':', i + 1);
            if(j == -1)
                return 1;
            if(!s.regionMatches(true, i + 1, "oracle", 0, j - (i + 1)))
                return 1;
            int k = s.indexOf(':', j + 1);
            if(k == -1)
                return 2;
            String s1 = s.substring(j + 1, k);
            return !s1.equals("oci8") && !s1.equals("thin") && !s1.equals("kprb") && !s1.equals("dnldthin") ? 2 : 3;
        }
     
        Hashtable parse_url(String s)
            throws SQLException
        {
            Hashtable hashtable = new Hashtable(5);
            int i = s.indexOf(':', s.indexOf(':') + 1) + 1;
            int j = s.length();
            if(i == j)
                return hashtable;
            int k = s.indexOf(':', i);
            if(k == -1)
                return hashtable;
            hashtable.put("protocol", s.substring(i, k));
            int l = k + 1;
            int i1 = s.indexOf('/', l);
            int j1 = s.indexOf('@', l);
            if(j1 == -1)
                j1 = j;
            if(i1 == -1)
                i1 = j1;
            if(l < i1)
                hashtable.put("user", s.substring(l, i1));
            if(i1 < j1)
                hashtable.put("password", s.substring(i1 + 1, j1));
            if(j1 < j)
                hashtable.put("database", s.substring(j1 + 1));
            return hashtable;
        }
     
        public static final char slash_character = 47;
        public static final char at_sign_character = 64;
        static final String oracle_string = "oracle";
        static final String user_string = "user";
        static final String password_string = "password";
        static final String database_string = "database";
        static final String server_string = "server";
        static final String access_string = "access";
        public static final String protocol_string = "protocol";
        public static final String dll_string = "dll";
        public static final String logon_as_internal_str = "internal_logon";
        static final String prefetch_string = "prefetch";
        static final String row_prefetch_string = "rowPrefetch";
        static final String default_row_prefetch_string = "defaultRowPrefetch";
        static final String batch_string = "batch";
        static final String execute_batch_string = "executeBatch";
        static final String default_execute_batch_string = "defaultExecuteBatch";
        static final String remarks_string = "remarks";
        static final String report_remarks_string = "remarksReporting";
        private static final String synonyms_string = "synonyms";
        private static final String include_synonyms_string = "includeSynonyms";
        static Properties protocols;
        protected static Connection m_defaultConn = null;
        private static OracleDriver m_defaultDrvr;
        private static final int ACCEPTS_URL_GEN_ERROR = 1;
        private static final int ACCEPTS_URL_ORACLE_ERROR = 2;
        private static final int ACCEPTS_URL_SUCCESS = 3;
     
        static 
        {
            m_defaultDrvr = null;
            protocols = new Properties();
            protocols.put("thin", "oracle.jdbc.ttc7.TTC7Protocol");
            protocols.put("dnldthin", "oracle.jdbc.dnldttc7.TTC7Protocol");
            protocols.put("oci8", "oracle.jdbc.oci8.OCIDBAccess");
            protocols.put("kprb", "oracle.jdbc.kprb.KprbDBAccess");
            protocols.put("3Tthin", "oracle.jdbc.corba.client.Access");
            protocols.put("dnld3Tthin", "oracle.jdbc.dnldcorba.client.Access");
            try
            {
                if(m_defaultDrvr == null)
                {
                    m_defaultDrvr = new OracleDriver();
                    DriverManager.registerDriver(m_defaultDrvr);
                }
            }
            catch(RuntimeException _ex) { }
            catch(SQLException _ex) { }
        }
    }

  9. #9
    Expert éminent sénior
    Avatar de tchize_
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Avril 2007
    Messages
    25 482
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 45
    Localisation : Belgique

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Avril 2007
    Messages : 25 482
    Points : 48 804
    Points
    48 804
    Par défaut
    oui mais non, t'as bien du amenere ce driver d'une manière ou d'un autre, la question est donc, ce ojdbc14.jar sur le serveur qui foire, c'est bien le même que celui sur la machine qui marche?

  10. #10
    Candidat au Club
    Inscrit en
    Avril 2010
    Messages
    7
    Détails du profil
    Informations forums :
    Inscription : Avril 2010
    Messages : 7
    Points : 2
    Points
    2
    Par défaut
    Le truc c'est que l'intranet il existe depuis 5-10 ans et le developpeur d'origine il est parti depuis un bail. J'ai pris le contenu du WEB-INF et j'ai transféré le truc c'est comment je trouve ce fameux driver !

  11. #11
    Expert éminent sénior
    Avatar de tchize_
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Avril 2007
    Messages
    25 482
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 45
    Localisation : Belgique

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Avril 2007
    Messages : 25 482
    Points : 48 804
    Points
    48 804
    Par défaut
    tu l'a déjà trouvé il me semble, tu l'a même explosé et décompilé d'après tes postes précédent. Faut juste t'assurer qu'entre le machine qui foire et la machine qui foire pas, le ficheir ojdbc14.jar est bien le même (car contrairment au apparence, avec oracle, 14 n'est pas le numéro de version du driver )

    autre option, virer ce driver et le remplacer par la dernière version sur le site de oracle

  12. #12
    Candidat au Club
    Inscrit en
    Avril 2010
    Messages
    7
    Détails du profil
    Informations forums :
    Inscription : Avril 2010
    Messages : 7
    Points : 2
    Points
    2
    Par défaut
    le ojdbc14.jar c'est sur ma station de développement que je l'ai. Sur le serveur il y a "juste" le jar éclaté comme tu dis avec les .class dans le WEB-INF/classes/oracle.
    Comment je fais pour changer le driver et mettre un jar a la place ?

  13. #13
    Expert éminent sénior
    Avatar de tchize_
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Avril 2007
    Messages
    25 482
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 45
    Localisation : Belgique

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Avril 2007
    Messages : 25 482
    Points : 48 804
    Points
    48 804
    Par défaut
    tu efface le répetoire oracle dans WEB-INF/classes et tu met ton ojdbc14.jar qui marche dans WEB-INF/lib

  14. #14
    Candidat au Club
    Inscrit en
    Avril 2010
    Messages
    7
    Détails du profil
    Informations forums :
    Inscription : Avril 2010
    Messages : 7
    Points : 2
    Points
    2
    Par défaut
    Merci tu es mon sauveur il suffisait de faire ce que tu viens de dire et ça fonctionne !!! Merci 1000 fois

  15. #15
    Membre du Club
    Inscrit en
    Avril 2006
    Messages
    283
    Détails du profil
    Informations forums :
    Inscription : Avril 2006
    Messages : 283
    Points : 62
    Points
    62
    Par défaut
    grrrrrr moi ça marche pas!!

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

Discussions similaires

  1. Réponses: 0
    Dernier message: 30/05/2011, 11h42
  2. Impossible de se connecter à Oracle 9i
    Par lpilloni dans le forum Oracle
    Réponses: 5
    Dernier message: 29/03/2007, 16h09
  3. Impossible de se connecter en local à mysql
    Par ITMFR dans le forum Administration
    Réponses: 1
    Dernier message: 22/09/2006, 23h59
  4. [Debutant]Impossible de se connecter au serveur local
    Par Kenji dans le forum PostgreSQL
    Réponses: 1
    Dernier message: 24/04/2005, 20h55
  5. [Connexion] impossible de se connecter autrement qu'en local
    Par sekiryou dans le forum Installation
    Réponses: 4
    Dernier message: 29/03/2004, 17h19

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