Re: El Capitan - setting java timezone

2015-10-26 Thread Adalbert Winkler
you could set up a (default) timezone at app startup if (System.getProperty("user.timezone") == null) { System.setProperty("user.timezone", "EST"); } Am 23.10.15 um 22:24 schrieb Calven Eggert: I’ve been working on a new install of El Capitan. I found a problem with running the app inside

Re: El Capitan - setting java timezone

2015-10-26 Thread Calven Eggert
Unfortunately, that didn’t work. I’ve tried adding it in two different ways based on google searches: -Duser.timezone=EST -Doracle.jdbc.timezoneAsRegion=false Is anyone else using Java 1.8 and has this working? > On Oct 23, 2015, at 4:25 PM, Gino Pacitti wrote: > > What

Re: El Capitan - setting java timezone

2015-10-26 Thread Chuck Hill
gevityinc.com>> Cc: WebObjects-Dev <webobjects-dev@lists.apple.com<mailto:webobjects-dev@lists.apple.com>>, Gino Pacitti <ginok...@mac.com<mailto:ginok...@mac.com>> Subject: Re: El Capitan - setting java timezone I changed my time zone and then changed it back and...it wo

Re: El Capitan - setting java timezone

2015-10-26 Thread Calven Eggert
pple.com>> on > behalf of Calven Eggert <cal...@mac.com <mailto:cal...@mac.com>> > Date: Monday, October 26, 2015 at 7:02 AM > To: WebObjects-Dev <webobjects-dev@lists.apple.com > <mailto:webobjects-dev@lists.apple.com>>, Gino Pacitti <ginok...@mac.com > &l

Re: El Capitan - setting java timezone

2015-10-26 Thread Calven Eggert
gt;> > Cc: WebObjects-Dev <webobjects-dev@lists.apple.com > <mailto:webobjects-dev@lists.apple.com>>, Gino Pacitti <ginok...@mac.com > <mailto:ginok...@mac.com>> > Subject: Re: El Capitan - setting java timezone > > I changed my time zone and then changed

Re: El Capitan - setting java timezone

2015-10-26 Thread Chuck Hill
;mailto:ginok...@mac.com>> Subject: Re: El Capitan - setting java timezone Unfortunately, that didn't work. I've tried adding it in two different ways based on google searches: -Duser.timezone=EST -Doracle.jdbc.timezoneAsRegion=false Is anyone else using Java 1.8 and has this working? O

El Capitan - setting java timezone

2015-10-23 Thread Calven Eggert
I’ve been working on a new install of El Capitan. I found a problem with running the app inside Eclipse until it was discovered that the java timezone was not set and therefore, not allowing a connection to the database. This was fixed by adding an argument to the Run Configuration