Re: ssl connection and webstart

Поиск
Список
Период
Сортировка
От Donald Fraser
Тема Re: ssl connection and webstart
Дата
Msg-id 001b01c8326e$a53ba500$2064a8c0@LISTINGS12
обсуждение исходный текст
Ответ на ssl connection and webstart  ("Michael Andreasen" <michael@dunlops.com>)
Список pgsql-jdbc
>How can I add the cert via webstart so a "user" can do this?

Are you using any standard certificates from the default certificate key
store?

If the answer is no, then one idea is to create your own certificate key
store in your software and add your certificate with java code.
You do this as part of creating your SSLSocketFactory, see attached example.
And then when your application starts up, the first thing you do before
making any connections to postgresql database is:
java.security.Security.setProperty("ssl.SocketFactory.provider",
"MyOrganisation.MyClientApp.ssl.MySSLSocketFactory");

Hope that helps.
Regards
Donald Fraser

Вложения

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

Предыдущее
От: "Donald Fraser"
Дата:
Сообщение: Re: ssl connection and webstart
Следующее
От: tivvpgsqljdbc@gtech-ua.com
Дата:
Сообщение: Re: PreparedStatement vs. Statement problem