Sybase Jconnect 6 Jdbc Drivers

  1. Sybase Jconnect 6 Jdbc Drivers Windows 7
  2. Sybase Jconnect 6 Jdbc Drivers Download
  3. Sybase Jdbc Url
  4. Sybase Jconnect 6 Jdbc Drivers Free
  • Jconnect 4 jar versions I am trying to move from Jconnect 2 to Jconnect 6. Contact and feedback Need support? WebSphere Application Server General. DB Where can I download a Sybase JDBC driver? Sybase jconnect jdbc The jconnect tag has no usage sybase jconnect jdbc. The classes in jConnect are all in com.
  • Using the Sybase jConnect driver. The jConnect driver is a pure-java, type-4 JDBC driver distributed by Sybase. The driver is bundled with the WebLogic Server distribution and may be freely used. This document describes how to use the jConnect driver in a connection pool running in WebLogic Server.

Both of these sets of drivers are platform independent, you can copy them to Windows and use them. If you have tried to download from Sybase and the SSIM v4.6 appliance and still cannot get the drivers you can contact support and support can supply you with a zipped file that contains the Sybase jdbc driver files.

Active3 years, 11 months ago

I'm trying to establish an SSL connection to a Sybase ASE 15.7 using JDBC driver with no luck.I tried the following options:

  1. Using JTDS 1.25 driver (jtds-1.2.5.jar)

    With the following connection string: jdbc:jtds:sybase://host:port;databaseName=dbname;ssl=request

    I got Network error IOException: Connection refused

  2. Using Jconnect 4 (jconn4.jar)

    with the following connection string:

    jdbc:sybase:Tds:host:port/dbname?ENABLE_SSL=true

    Install windows xp sp3 free download. Windows Installer enables software users to efficiently install and configure products and applications.

    I got java.sql.SQLException: JZ00L: Login failed. Examine the SQLWarnings chained to this exception for the reason(s)..java.sql.SQLException: I/O Error: DB server closed connection.

    I checked the Sybase log see the following error:

    kernel SSL or Crypto Error Message: 'The SSL handshake failed. Root error: error:140760FC:SSL routines:SSL23_GET_CLIENT_HELLO:unknown protocol'.

    it looks like the Sybase server expects SSL connection but the java client still not using SSL (although connection string property marks ssl=true).

tried searching Sybase documentation with not much luck, neither for this error nor for SSL with JConnect.

Sybase

Any answer will be much appreciated - i'm flexible with the type of driver and the configuration.

Sybase Jconnect 6 Jdbc Drivers Windows 7

Thanks

zuckermanorizuckermanori
9531 gold badge12 silver badges26 bronze badges
Jconn4

Sybase Jconnect 6 Jdbc Drivers Download

1 Answer

After much investigation, I found a solution. 2 actually.

  1. Using trust all certificate JDBC connection string parameter:if you don't mind to trust all certificates (do this only if you entirely trust the network you're working in, especially not anything going on the public internet), you may add a connection string indicating the SSLSocketFactory creating the connection to trust all certificates. The connection string will look as follows: jdbc:sybase:Tds:host:port/dbname?ENABLE_SSL=true&SSL_TRUST_ALL_CERTS=true
  2. Using the sybase certificate:the certificate needs to be imported to the java application trust store.in case you're not working with a designated trust store, it may be imported to the Java default trust store found under $JAVA_HOMEjreXlibsecuritycacerts. The certificate may be imported using keytool as explained here.
zuckermanori

Sybase Jdbc Url

zuckermanori
9531 gold badge12 silver badges26 bronze badges

Sybase Jconnect 6 Jdbc Drivers Free

Not the answer you're looking for? Browse other questions tagged javassljdbcsybasejconnect or ask your own question.