Re: Apache 2.4 binary anyone?

2015-10-27 Thread Chuck Hill
http://prod.lists.apple.com/archives/webobjects-dev/2015/Oct/msg00047.html From: mailto:webobjects-dev-bounces+chill=gevityinc@lists.apple.com>> on behalf of Calven Eggert mailto:cal...@mac.com>> Date: Tuesday, October 27, 2015 at 2:50 PM To: WebObjects-Dev mailto:webobjects-dev@lists.appl

Apache 2.4 binary anyone?

2015-10-27 Thread Calven Eggert
Does anyone have the Apache2.4 binary or alternative? I've tried to compile based on the instructions but no luck, all kinds of errors, from this link: http://lists.apple.com/archives/webobjects-dev/2014/Oct/msg00181.html

Re: Default Model Group - Error or Warning?

2015-10-27 Thread Chuck Hill
And that null response is what triggers this exception. This is in response to a notification asking for a class description for an entity named X. Could be a bad prototype? From: Calven Eggert mailto:cal...@mac.com>> Date: Tuesday, October 27, 2015 at 10:17 AM To: Chuck Hill mailto:ch...@gevit

Re: Default Model Group - Error or Warning?

2015-10-27 Thread Calven Eggert
thank you. that was a great idea since I now have all the Wonder source downloaded. Calven > On Oct 27, 2015, at 1:36 PM, Ricardo Parada wrote: > > Se a breakpoint in Wonder where that warning is logged to see if it gets you > anywhere to solving that mystery. :-) > > > > On Oct 27, 201

Re: Default Model Group - Error or Warning?

2015-10-27 Thread Ricardo Parada
Se a breakpoint in Wonder where that warning is logged to see if it gets you anywhere to solving that mystery. :-) > On Oct 27, 2015, at 1:17 PM, Calven Eggert wrote: > > strange. can't find any entity with that name. > > I did: > EOEntity theModel = > EOModelGroup.defaultGroup().

Re: Framework needs access to Application - How?

2015-10-27 Thread Chuck Hill
Yep, defaults in the framework, overrides in the Application, and production overrides on the command line. On 2015-10-27, 9:32 AM, "webobjects-dev-bounces+chill=gevityinc@lists.apple.com on behalf of Hugi Thordarson" wrote: >Put your config values into Properties? You can then use (for ex

Re: Default Model Group - Error or Warning?

2015-10-27 Thread Calven Eggert
strange. can't find any entity with that name. I did: EOEntity theModel = EOModelGroup.defaultGroup().entityNamed("NSMutableDictionary"); and the answer was nil. hmmm... Calven > On Oct 27, 2015, at 11:54 AM, Chuck Hill wrote: > > It looks like you have that as the Entity name for

Re: Framework needs access to Application - How?

2015-10-27 Thread Hugi Thordarson
Put your config values into Properties? You can then use (for example) the ERXProperties class to retrieve your values. - hugi > On 27. okt. 2015, at 16:20, Markus Ruggiero wrote: > > I am trying to split a large appliation and extract the EOModel and the > business classes into a separate f

Framework needs access to Application - How?

2015-10-27 Thread Markus Ruggiero
I am trying to split a large appliation and extract the EOModel and the business classes into a separate framework. Unfortunately there are some (just 2 or 3) config parameters that are maintained in the Application that some of the business classes need to know. But Application is not known in

Re: Driver and Implementation of NoSQL

2015-10-27 Thread Gino Pacitti
Hi Yes that sounds a interesting way to go… From what I understand about NoSQL it is not relational and there are a few types and deal with data access and retrieval in different ways: NoSQL Database Types • Document databases pair each key with a complex data structure known as a document. Do

Re: Driver and Implementation of NoSQL

2015-10-27 Thread Paul Yu
We should be able to formalize this with a framework then, right? Can you provide some mapping of how you did this? Paul > On Oct 27, 2015, at 12:12 PM, Ricardo Parada wrote: > > Hi Gino, > > Let me know if you hear of any. > > I can tell you about an attempt / workaround I did. I inserted m

Re: Driver and Implementation of NoSQL

2015-10-27 Thread Ricardo Parada
Hi Gino, Let me know if you hear of any. I can tell you about an attempt / workaround I did. I inserted my enterprise objects (EOs) into an editing context. Then I used some of the classes in the ERRest framework to serialize my object graph of enterprise objects into JSON. Then I used the Mo

Re: Default Model Group - Error or Warning?

2015-10-27 Thread Chuck Hill
It looks like you have that as the Entity name for one of your entities in the model? It is a modelling issue in any case. Chuck From: mailto:webobjects-dev-bounces+chill=gevityinc@lists.apple.com>> on behalf of Calven Eggert mailto:cal...@mac.com>> Date: Tuesday, October 27, 2015 at 8:3

Default Model Group - Error or Warning?

2015-10-27 Thread Calven Eggert
I've just recently noticed that I get this error upon starting my WO app. Everything seems to be working ok, just wondering if I need to address it: Oct 27 11:21:44 CRR[49599] ERROR er.extensions.eof.ERXEntityClassDescription - Entity NSMutableDictionary not found in the default model group!