Re: ssl connection and webstart

From: "Donald Fraser" <postgres(at)kiwi-fraser(dot)net>
To: "[JDBC]" <pgsql-jdbc(at)postgresql(dot)org>
Subject: Re: ssl connection and webstart
Date: 2007-11-29 09:58:23
Message-ID: 001701c8326e$69d53170$2064a8c0@LISTINGS12
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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

In response to

Browse pgsql-jdbc by date

  From Date Subject
Next Message Donald Fraser 2007-11-29 10:00:11 Re: ssl connection and webstart
Previous Message Albe Laurenz 2007-11-29 09:42:37 Re: ssl connection and webstart