Re: Sign in with apple?

2020-05-31 Thread Amedeo Mantica via Webobjects-dev
I did it using a Java library, not a wo project but this doesn’t matter. You just need an awt token validation library. I’ll post it tomorrow. Amedeo Sent from my iPhone > On 31 May 2020, at 17:31, Jesse Tayler via Webobjects-dev > wrote: > >  > > Indeed. > > And I can see why without too

Re: Sign in with apple?

2020-06-03 Thread Amedeo Mantica via Webobjects-dev
I use this library https://github.com/auth0/java-jwt the Apple public Keys for verification are here https://appleid.apple.com/auth/keys Amedeo > On 2 Jun 2020, at 14:41, Jesse Tayler via Webobjects-dev > wrote: > >

Re: Monitor scheduling

2020-07-12 Thread Amedeo Mantica via Webobjects-dev
https://docs.oracle.com/javase/8/docs/api/java/util/TimerTask.html Sent from my iPhone > On 13 Jul 2020, at 08:30, GILQUIN Pierre via Webobjects-dev > wrote: > >  > Hi, > > I have a extraction job that need to be ran only one time the week-end. The > process stopped when done > I am not al

Re: re/store context somehow? (OCsite)

2024-05-17 Thread Amedeo Mantica via Webobjects-dev
I no longer use WO but I recall this framework in wonder: ERPersistentSessionStorage Amedeo > On 17 May 2024, at 22:01, Martino Limido via Webobjects-dev > wrote: > > Hi there, > > it’s important to note that the `WOContext` object in WebObjects ends with > the lifecycle of the request and

Re: NScollections vs Java collections

2025-02-02 Thread Amedeo Mantica via Webobjects-dev
Iirc the NS collections were there due to simplifying porting of apps from objc to Java. I don’t think there is any big difference in performance Sent from my iPhoneOn 2 Feb 2025, at 12:18, Jérémy DE ROYER via Webobjects-dev wrote: Hi all, Even if I still use EOF (due to inheritance limitat

Re: JavaMonitor DAs

2025-01-25 Thread Amedeo Mantica via Webobjects-dev
I used these in the past for an auto deploy script. Quite handy. Sent from my iPhone > On 25 Jan 2025, at 03:47, OCsite via Webobjects-dev > wrote: > > Hi there, > > does actually anyone use those nice JavaMonitor Direct Actions, documented at > > https://wiki.wocommunity.org/xwiki/bin/view

Re: JavaMonitor DAs

2025-01-25 Thread Amedeo Mantica via Webobjects-dev
Take a look at source code Sent from my iPhone > On 25 Jan 2025, at 10:12, Amedeo Mantica wrote: > > I used these in the past for an auto deploy script. Quite handy. > Sent from my iPhone > >>> On 25 Jan 2025, at 03:47, OCsite via Webobjects-dev >>> wrote: >>> >> Hi there, >> >> does ac

Re: obtain a BLOB size without fetching the whole thing?

2025-06-24 Thread Amedeo Mantica via Webobjects-dev
I have no idea, I'm not into WO / EOF since long time > Il giorno 24 giu 2025, alle ore 23:33, o...@ocs.cz ha scritto: > > Great, thanks! Works like a charm :) > > If there is a trick to do this at a higher EOF level, would be nice, but if > there's none, this solves my problem all right. Thank

Re: obtain a BLOB size without fetching the whole thing?

2025-06-25 Thread Amedeo Mantica via Webobjects-dev
try something like this... (raw SQL) SELECT id, OCTET_LENGTH(blob_col) AS blob_size_bytes FROM my_table; > Il giorno 24 giu 2025, alle ore 21:27, ocs--- via Webobjects-dev > ha scritto: > > Hi there, > > the subject says it all. I've got a FS which reads in some columns set up > through setR