Glassfish ignoring "ssl" property in connection pool of PostgreSQL

Поиск
Список
Период
Сортировка
От Nookala Satish Kumar
Тема Glassfish ignoring "ssl" property in connection pool of PostgreSQL
Дата
Msg-id b613f02a1003271220r59be9d75i5f051e7ded7e1429@mail.gmail.com
обсуждение исходный текст
Ответы Re: Glassfish ignoring "ssl" property in connection pool of PostgreSQL
Список pgsql-jdbc
Hi,

Glassfish ignoring "ssl" (and sslfactory) property in connection pool of PostgreSQL. I tried to establish a SSL connection string to PostgreSQL, but it is not taking. I tried with the normal JDBC URL in a standalone program and it works. Any ideas?

Here are my connection pool properties in Glassfish:

User: test
DatabaseName: test
Password: test123
ssl: true
sslfactory: org.postgresql.ssl.NonValidatingFactory
ServerName: localhost
PortNumber: 5432

Here is my standalone program which is working fine:

String url = "jdbc:postgresql://localhost:5432/test";
Properties props = new Properties();
props.setProperty("user","test");
props.setProperty("password","test123");
props.setProperty("ssl","true");
props.setProperty("sslfactory","org.postgresql.ssl.NonValidatingFactory");
Connection conn = DriverManager.getConnection(url, props);

stmt = conn.createStatement();
ResultSet rs = stmt.executeQuery("select now()");
if (rs.next()) {
System.out.println(rs.getString(1));
}
rs.close();
stmt.close();
conn.close();

Regards,
Satish.

В списке pgsql-jdbc по дате отправления:

Предыдущее
От: Sriram P
Дата:
Сообщение: org.postgresql.util.PSQLException: ERROR: relation "dual" does not exist Position: 42
Следующее
От: Craig Ringer
Дата:
Сообщение: Re: org.postgresql.util.PSQLException: ERROR: relation "dual" does not exist Position: 42