This website uses cookies for visitor traffic analysis. By using the website, you agree with storing the cookies on your computer.More information

PostgreSql SSL Verbindung

Allgemeine Fragen zur Entwicklung von und mit JVx.

PostgreSql SSL Verbindung

Postby Development@SIB » Fri Jun 15, 2012 4:12 pm

Herstellen einer Verbindung zu einem Postgresql Server mit aktivierter SSL Kommunikation:

Code: Select all
DBAccess dba = DBAccess.getDBAccess("jdbc:postgresql://server/postgres?ssl=true&sslfactory=org.postgresql.ssl.NonValidatingFactory");
      
dba.setUsername("admin");
dba.setPassword("admin");
dba.open();


Durch die SSL Factory wird die Zertifikatsprüfung verhindert, und erlaubt "Man-in-the-middle" Attacken, siehe NonValidatingFactory.
User avatar
Development@SIB
 
Posts: 325
Joined: Mon Sep 28, 2009 1:54 pm

Return to Development (DE)