Re: PK uniqueness

2025-09-20 Thread mailinglists via Webobjects-dev
Standard PK generation is based on EOF keeping track of the last used value. This last used value will always be counted up, never down. This insures that no value will ever be re-used. The bookkeeping happens in two different ways, depending on the database system. Many database systems provide

Re: I am in PANIC MODE because of Sequoia network access restrictions

2025-02-10 Thread mailinglists via Webobjects-dev
:11, Paul Hoadley via Webobjects-dev > wrote: > > Hello, > > On 9 Feb 2025, at 23:33, mailinglists via Webobjects-dev > wrote: > >> Anyone run into this issue? > > Unfortunately, never seen anything like it. > >> Do I have to downgrade macOS? What

I am in PANIC MODE because of Sequoia network access restrictions

2025-02-09 Thread mailinglists via Webobjects-dev
Finally upgraded to Sequoia and now I have bad issues with WOLips and the new local network access security. When an app tries to access the local network a system prompt pops up and asks for permission. This is annoying at best but I can deal with it. However I cannot deal with the following s

Need D2W help with embedding a list page component

2024-12-28 Thread mailinglists via Webobjects-dev
This is a D2W question: I have functioning ListChild, EditChild, CreateChild pageConfigurations. They work nicely when activated through ERXNavigation. How can I reuse these in the context of EditParent or CreateParent where Parent has toMany children? I want to edit the list of children right

Problems with new WOLips5 component editor

2024-12-25 Thread mailinglists via Webobjects-dev
I updated Eclipse to the latest: Version: 2024-12 (4.34.0) Build id: 20241128-0757 I uninstalled WOLips community, restarted Eclipse, then re-installed the new WOLips5 from https://wocommunity.github.io/wolips/repository/. When I restarted Eclipse any existing WO Component Editor worked, but I

Re: WOAjaxCollapsibleComponentContent ???

2024-06-27 Thread mailinglists via Webobjects-dev
>>> >>> >> return code; >>> } >>> >>> Or if there is a lot of complex stuff going on and race conditions with JS >>> events maybe you need a hack to invoke Ajax on a delay >>> public String onclickJavascript(){ >>> S

Re: WOAjaxCollapsibleComponentContent ???

2024-06-26 Thread mailinglists via Webobjects-dev
ggleFunctionName() + ", 500); return > true;"; >return code; > } > > Notice that there is no update container specified on the AjaxHyperlink. > That’s because you don’t need to refresh anything, you only need to tell the > server the state of open/close. > >

WOAjaxCollapsibleComponentContent ???

2024-06-23 Thread mailinglists via Webobjects-dev
Anyone using this component? It has bindings that seem not to be used. Does this work at all? I cannot make sense of it. Alternatively has anyone made proper use of the html construct ? It works nicely but I cannot preserve “open” state when updating an enclosing container because I have not f

Re: Forbidden - You don't have permission to access this resource.

2023-12-03 Thread mailinglists via Webobjects-dev
Hi Kenji, you should be able to follow the instructions on https://learningthewonders.com Site looks a bit outdated but nothing has changed in the recent years so I did not bother to update its wordings (I am the author of the book “Learning The Wonders” which

Re: Access to other WebObjects instances

2023-02-24 Thread mailinglists via Webobjects-dev
or you could access port 1085 on your server. That is where wotaskd usually reports its configuration. ---markus--- > On 24 Feb 2023, at 04:34, André Rothe via Webobjects-dev > wrote: > > Hi, > > I have a WebObjects application, which needs information about other > WebObjects applications

Re: M:N-like table with a contents, updating the PK leads to problems

2022-10-11 Thread mailinglists via Webobjects-dev
Thou shall never ever change a primary key! Replace the compound PK with a “real” ID and be done. This is not such a big thing to do. I've done this several times. You need a bit of SQL to “fix” your database, but that is no rocket science. This m:n join table is not a mere technical requiremen