Re: [EXTERNAL] Re: Java upgrade question

2024-04-05 Thread Morris, Mark via Webobjects-dev
Date: Friday, April 5, 2024 at 4:26 PM To: webobjects-dev@lists.apple.com , webobjects-...@wocommunity.org Subject: [EXTERNAL] Re: Java upgrade question Hi Mark, On 6 Apr 2024, at 6: 55 am, Morris, Mark via Webobjects-dev wrote: I’ve been trying to research (old messages, Google, etc. ), but

Java upgrade question

2024-04-05 Thread Morris, Mark via Webobjects-dev
Hi all, I’ve been trying to research (old messages, Google, etc.), but I don’t think I’ve found anything definitive. I know at least at one point there was an issue migrating past Java 8, due to the way WOnder patches/extends Apple’s frameworks. Has that been resolved or worked around? We wou

Re: [EXTERNAL] Latest working Eclipse/WOLips

2021-03-05 Thread Morris, Mark via Webobjects-dev
Hi Riccardo, I'm using Eclipse 2020-12, but I haven't heard anyone complaining about issues with the new 2021 release. For either one, you need to make sure to point to the most recent WOLips. You can find general instructions (referencing slightly older versions) at: https://wiki.wocommunity.

Re: [EXTERNAL] Licence for WebObjects

2020-12-08 Thread Morris, Mark via Webobjects-dev
As I recall, we're adhering to the last license Apple published and it stated unlimited deployment license on any Java platform and development on any Mac. -- Mark On 12/8/20, 5:01 PM, "frelin--- via Webobjects-dev" wrote: Security First: External email, use caution clicking links or op

Re: [EXTERNAL] Re: Trouble installing WOLips - SOLVED

2020-08-23 Thread Morris, Mark via Webobjects-dev
Ok, it was related to our network config. I was just able to connect and install WOLips, thanks all! -- Mark From: "Morris, Mark via Webobjects-dev" Reply-To: "Morris, Mark" Date: Sunday, August 23, 2020 at 7:56 PM To: Paul Hoadley Cc: "webobjects-dev@lists.apple.com

Re: [EXTERNAL] Re: Trouble installing WOLips

2020-08-23 Thread Morris, Mark via Webobjects-dev
Hi Paul, java -version gives: java version "1.8.0_261" Java(TM) SE Runtime Environment (build 1.8.0_261-b12) Java HotSpot(TM) 64-Bit Server VM (build 25.261-b12, mixed mode) I tried with that version, then as I mentioned I also installed the current Zulu OpenJDK version of Java 8, and pointe

Re: [EXTERNAL] Re: Trouble installing WOLips

2020-08-22 Thread Morris, Mark via Webobjects-dev
vvK_ACbV5Z1QJfiEcc4jFxpa-sxj3mnOdk$> ________________ From: Morris, Mark via Webobjects-dev Sent: Saturday, August 22, 2020 1:51:09 AM To: webobjects-dev@lists.apple.com Subject: Trouble installing WOLips Hi all! I’m installing WOLips on a new machine, and get the following error:

Trouble installing WOLips

2020-08-21 Thread Morris, Mark via Webobjects-dev
Hi all! I’m installing WOLips on a new machine, and get the following error: Unable to read repository at https://jenkins.wocommunity.org/job/WOLips410/lastStableBuild/artifact/temp/dist/content.xml. Unable to read repository at https://jenkins.wocommunity.org/job/WOLips410/lastStableBuild/art

Re: Multiple timezones

2020-02-25 Thread Morris, Mark via Webobjects-dev
Hi Michael, I’d recommend storing only UTC. We grab the client’s timezone from the browser using javascript and it gets sent back in the very next RR loop after they visit the site, so for the rest of the session we can display any time data in their local timezone if necessary. Hope this help

Re: There is not WOHTTPSConnection.... how then?

2019-10-23 Thread Morris, Mark via Webobjects-dev
When I need to connect to another server from my WO apps, I just use java’s HttpsURLConnection or HttpURLConnection. Regards, Mark On Oct 23, 2019, at 8:53 AM, Maik Musall via Webobjects-dev mailto:webobjects-dev@lists.apple.com>> wrote: Oh, I misunderstood. You’re not uploading to *your* app

Re: WOFielUpLoad - WebObjects Vs Project Wonder

2019-09-27 Thread Morris, Mark via Webobjects-dev
Not really addressing your direct issue, but you might want to also check out this as an option: https://jenkins.wocommunity.org/job/Wonder7/lastSuccessfulBuild/javadoc/er/ajax/AjaxFlexibleFileUpload.html Regards, Mark On Sep 27, 2019, at 2:17 PM, Theodore Petrosky via Webobjects-dev mailto:we

Re: LoadBalancer

2019-09-09 Thread Morris, Mark via Webobjects-dev
Hi André, If in reality the situation is as simple as your example, perhaps you could just create a separate single instance with a distinct name for your “defined instance", and use that for requests that require it. We do something like that for certain special situations. Regards, Mark > O

Re: Access to WOComponents of a page

2019-07-25 Thread Morris, Mark via Webobjects-dev
Of course, this is just an example, replace the class name with your superclass class name. ;-) On Jul 25, 2019, at 8:59 AM, Morris, Mark mailto:mark.mor...@experian.com>> wrote: Hi André, If you still want to go the subclass route, try adding this in your subclass (to get it to use the super

Re: Access to WOComponents of a page

2019-07-25 Thread Morris, Mark via Webobjects-dev
Hi André, If you still want to go the subclass route, try adding this in your subclass (to get it to use the superclass’s WO template): @Override public WOElement template() { return ERXComponentUtilities.inheritTemplateFrom(ContractCodeMapping.class.getSimpleName(), session().languages()); }