Re: JBuilder Question [SOLVED]

From: "Benjamin W(dot) Fisher" <kurasoe(at)fastmail(dot)fm>
To: pgsql-jdbc(at)postgresql(dot)org
Subject: Re: JBuilder Question [SOLVED]
Date: 2005-04-05 07:30:32
Message-ID: 1112686232.18387.231128838@webmail.messagingengine.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

Solved my prob. Postgresql docs for client config were a bit
misdirecting. I did the two commands that are "if you don't have access
to do the above" which screwed it. Also the truststore only accepts
absolute paths.

On Mon, 04 Apr 2005 17:48:02 -0700, "Benjamin W. Fisher"
<kurasoe(at)fastmail(dot)fm> said:
> Thanks.
>
> I think that is what I needed, for setting those things up in JBuilder.
> In the VM parameter field I put in -Djavax.net.ssl.trustStore=mystore
> -Djavax.net.ssl.trustStorePassword=mypassword
>
> I still am not understanding the line I think:
> java -Djavax.net.ssl.trustStore=mystore
> -Djavax.net.ssl.trustStorePassword=mypassword com.mycompany.MyApp
> that I'm getting looking at the docs at
> http://jdbc.postgresql.org/documentation/80/ssl-client.html
>
> Not sure what I'm supposed to do.
>
> Do you know what I need to do at this point to get SSL working? I can
> connect from the command line with psql just fine. Passing the same
> addy/port/user/pass/etc options. The JDBC driver is working. I'm
> passing the ssl=true property in my connection, but still getting
> connection attempt failed. Take ssl off and it's working.
>
> On Mon, 04 Apr 2005 17:15:51 -0700, "Andrew Lazarus"
> <drlaz(at)attglobal(dot)net> said:
> > From the JBuilder menu, Run/Configurations/Edit and add the -D flags to
> > the VM parameters. (Or was this not what you were asking?)
> >
> > Benjamin W. Fisher wrote:
> >
> > >[snip]
> > >But the java -Djavax.net.ssl.trustStore=mystore
> > >-Djavax.net.ssl.trustStorePassword=mypassword com.mycompany.MyApp I'm
> > >not sure how to get in there, since I use JBuilder. I know how to add
> > >in required libraries (*.jar) for it, but not sure about this kind of
> > >thing.
> > >
> > >Anyone know how to do this?
> > >
> > >---------------------------(end of broadcast)---------------------------
> > >TIP 6: Have you searched our list archives?
> > >
> > > http://archives.postgresql.org
> > >
> > >
> > >
> >

In response to

Browse pgsql-jdbc by date

  From Date Subject
Next Message Dave Cramer 2005-04-05 12:09:08 Re: Another java connect problem
Previous Message Benjamin W. Fisher 2005-04-05 01:26:40 Re: JBuilder Question