Re: ssl connection and webstart - Mailing list pgsql-jdbc

From Donald Fraser
Subject Re: ssl connection and webstart
Date
Msg-id 001701c8326e$69d53170$2064a8c0@LISTINGS12
Whole thread Raw
In response to ssl connection and webstart  ("Michael Andreasen" <michael@dunlops.com>)
List 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 by date:

Previous
From: "Albe Laurenz"
Date:
Subject: Re: ssl connection and webstart
Next
From: "Donald Fraser"
Date:
Subject: Re: ssl connection and webstart