Обсуждение: Glassfish ignoring "ssl" property in connection pool of PostgreSQL

Поиск
Список
Период
Сортировка

Glassfish ignoring "ssl" property in connection pool of PostgreSQL

От
Nookala Satish Kumar
Дата:
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.

Re: Glassfish ignoring "ssl" property in connection pool of PostgreSQL

От
Kris Jurka
Дата:

On Sat, 27 Mar 2010, Nookala Satish Kumar wrote:

> 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?
>

This has been fixed in CVS.

Kris Jurka


Re: Glassfish ignoring "ssl" property in connection pool of PostgreSQL

От
Nookala Satish Kumar
Дата:
Thanks a lot Krish.

Regards,
Satish.

On Sat, May 1, 2010 at 10:47 AM, Kris Jurka <books@ejurka.com> wrote:


On Sat, 27 Mar 2010, Nookala Satish Kumar wrote:

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?


This has been fixed in CVS.

Kris Jurka




--
|| Satyam Vada, Dharmam Chara ||
|| Matru Devo Bhava, Pitru Devo Bhava ||
|| Acharya Devo Bhava, Atithi Devo Bhava ||

Get Firefox. The browser you can trust.
http://www.spreadfirefox.com/?q=affiliates&amp;id=43194&amp;t=1

Re: Glassfish ignoring "ssl" property in connection pool of PostgreSQL

От
Nookala Satish Kumar
Дата:
*Kris :-)

On Sat, May 1, 2010 at 12:08 PM, Nookala Satish Kumar <nosaku@gmail.com> wrote:
Thanks a lot Krish.

Regards,
Satish.


On Sat, May 1, 2010 at 10:47 AM, Kris Jurka <books@ejurka.com> wrote:


On Sat, 27 Mar 2010, Nookala Satish Kumar wrote:

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?


This has been fixed in CVS.

Kris Jurka




--
|| Satyam Vada, Dharmam Chara ||
|| Matru Devo Bhava, Pitru Devo Bhava ||
|| Acharya Devo Bhava, Atithi Devo Bhava ||

Get Firefox. The browser you can trust.
http://www.spreadfirefox.com/?q=affiliates&amp;id=43194&amp;t=1



--
|| Satyam Vada, Dharmam Chara ||
|| Matru Devo Bhava, Pitru Devo Bhava ||
|| Acharya Devo Bhava, Atithi Devo Bhava ||

Get Firefox. The browser you can trust.
http://www.spreadfirefox.com/?q=affiliates&amp;id=43194&amp;t=1