Re: How often do you bounce your apps?

2020-08-05 Thread Stefan Gärtner via Webobjects-dev
We never bounce, but every few weeks we have an update, which certainly starts a new instance. We heavily use EOF. I never had the feeling that there is any memory leak, at least in our scenario. > Am 06.08.2020 um 00:56 schrieb D Tim Cummings via Webobjects-dev > : > > Daily for us. Once eve

Re: Apache rules and SSL

2020-08-27 Thread Stefan Gärtner via Webobjects-dev
We completely replace the "Apps/WebObjects/FooBarApp.woa" part by "App" and redirect all HTTP calls to HTTPS. In the HTTP Apache config: Redirect permanent / https://www.example.com/ In the HTTPS Apache config: RewriteRule ^/$ /App [R] RewriteRule ^/index.html$ /App [R]

Re: WOSubmitButton - AjaxSubmitButton - CCSmartButton

2020-09-02 Thread Stefan Gärtner via Webobjects-dev
Hi Dominik, always nice to see someone new in the World of Wonders! I assume you have one action, which depending on business logic shall either open an AjaxModalDialog or switch the page. It is important to understand that there are normal WO actions (/wo/ inside the URL), which execute some lo

Re: The secret WOCommunity Slack channel?

2020-11-01 Thread Stefan Gärtner via Webobjects-dev
Please add me as well. Best regards, Stefan > Am 01.11.2020 um 19:06 schrieb Hugi Thordarson via Webobjects-dev > : > > The Slack channel is in no way or form meant to be a secret. It's something I > started for fun a during a WOWODC session and the more people that join the > better! > >

Re: most efficient way to fetch GIDs?

2025-07-14 Thread Stefan Gärtner via Webobjects-dev
Hello OC, I would suggest turning the Collection of EOGlobal into primary keys, like this: // turn global IDs into primary keys (assuming int here, adjust if needed) var pks = globalIds.stream().map(g -> (int) ((EOKeyGlobalID) g).keyValues()[0]).toList(); // create fetch spec with pre-petching