Entity Modeller == EOModeler?

2008-06-18 Thread Ren, Kevin
Hi, My question is coming from "SQL generation" in Entity Modeler. When I am playing the code with Apple/example/SophisticatedDatabaseExample. Copied from README: The SophisticatedDatabaseExample demonstrates the use of inheritance, flattening, and multiple models. The Person class is abstract

Re: Design Question: Hiding inherited attributes?

2008-06-18 Thread Don Lindsay
Ooops HTML should be XML. Also don't fetch deep if you do not want all the relationships or limit the number of records you are writing to XML, in your array (fetch specification). Don On Jun 18, 2008, at 10:06 PM, Don Lindsay wrote: Hello; I use ReportMill with a complicated model, you n

Re: Design Question: Hiding inherited attributes?

2008-06-18 Thread Don Lindsay
Can you explain what you want to do a bit further? Maybe an example of the EO structure? Don On Jun 18, 2008, at 3:14 PM, James Cicenia wrote: Hello - I would like to somehow make an object that subclasses an EO but only the subclass's attributes are visible. Is this possible? Thanks Ja

Re: Design Question: Hiding inherited attributes?

2008-06-18 Thread Don Lindsay
Hello James; What are you trying to do? You do not have to use XML for ReportMill, unless you are designing a report, and that is just for convenience you can design a report without having the XML. To generate a report you just pass your EOObjects as an array (just the ones you want to

Re: Design Question: Hiding inherited attributes?

2008-06-18 Thread Don Lindsay
Hello; I use ReportMill with a complicated model, you need to create a report format that only shows the attributes you want to display. You are using ReportMill wrong. I have sent you the code previously to generate HTML. It is also documented in the ReportMill documentation on how to

Re: More efficient web service choice

2008-06-18 Thread Lachlan Deck
On 19/06/2008, at 1:52 AM, Guido Neitzer wrote: On 18.06.2008, at 00:03, David den Boer wrote: We use SOAP webservices on many of our applications, some of which receive several hundred thousand transactions daily without any issues. I find the ease of using SOAP over other options so much

Re: change not registering in Editing Context

2008-06-18 Thread Q
On 19/06/2008, at 9:25 AM, Chuck Hill wrote: On Jun 18, 2008, at 3:49 PM, Lachlan Deck wrote: On 18/06/2008, at 11:29 PM, David Avendasora wrote: Now that we have nightly builds, it's a perfect opportunity to be able to test any fix Apple may have for the bug. But how do we know when st

Re: Moving to 5.4 - Fetch Spec with invalid key error

2008-06-18 Thread Mike Schrag
} else if ("NSCalendarDate".equals(className)) { className = "NSTimestamp"; On Jun 18, 2008, at 7:36 PM, Gavin Eadie wrote: Topic swerve: I've always wondered about that -- NSCalendarDate appears in ERPrototypes also ... Gav On Jun 18, 2008, at 11:48

Re: Moving to 5.4 - Fetch Spec with invalid key error

2008-06-18 Thread Gavin Eadie
Topic swerve: I've always wondered about that -- NSCalendarDate appears in ERPrototypes also ... Gav On Jun 18, 2008, at 11:48 AM, David Avendasora wrote: Is NSCalendarDate a valid Datatype? Isn't that the Objective-C class? ___ Do not post admin

Re: change not registering in Editing Context

2008-06-18 Thread Chuck Hill
On Jun 18, 2008, at 3:49 PM, Lachlan Deck wrote: On 18/06/2008, at 11:29 PM, David Avendasora wrote: Now that we have nightly builds, it's a perfect opportunity to be able to test any fix Apple may have for the bug. But how do we know when stuff is fixed? Run your test case against the

Re: change not registering in Editing Context

2008-06-18 Thread Lachlan Deck
On 18/06/2008, at 11:29 PM, David Avendasora wrote: Now that we have nightly builds, it's a perfect opportunity to be able to test any fix Apple may have for the bug. But how do we know when stuff is fixed? with regards, -- Lachlan Deck ___ Do no

Re: Design Question: Hiding inherited attributes?

2008-06-18 Thread Scott Winn
Yes - That is what I am trying to do and with zero luck. I have been in a slew of ignoreMembers and still it keeps going around and around and finding relationships. I limited the depth to 1. Didn't help a bit. Anybody use ReportMill with a complicated schema/model? I remember running int

Re: Design Question: Hiding inherited attributes?

2008-06-18 Thread James Cicenia
If I type in my key by hand, i.e, @title@ and run this report against the array of projects it works fine. However, no matter how I try to create my XML file it always gives me keys like: @Projects.title@ and that is wrong. I will ask ReportMill again. On Jun 18, 2008, at 4:26 PM, James Cice

Re: Design Question: Hiding inherited attributes?

2008-06-18 Thread James Cicenia
I am stupid. Just typing the key in worked just fine in the report designer. There must be an easy way to get my keys into it via xml. Time to see if I can reverse engineer there desired xml. -j- On Jun 18, 2008, at 4:18 PM, Ken Anderson wrote: It's been a long time since I've used ReportMi

Re: Design Question: Hiding inherited attributes?

2008-06-18 Thread Ken Anderson
It's been a long time since I've used ReportMill, but I thought you could access any key like this: @relationship.relationship.key@ Can't you still do that without having it pull in all your attributes? Ken On Jun 18, 2008, at 5:10 PM, Alan Zebchuk wrote: Are you trying to generate the XML

Re: Design Question: Hiding inherited attributes?

2008-06-18 Thread James Cicenia
Yes - That is what I am trying to do and with zero luck. I have been in a slew of ignoreMembers and still it keeps going around and around and finding relationships. I limited the depth to 1. Didn't help a bit. Anybody use ReportMill with a complicated schema/model? James Cicenia On Jun

Re: Design Question: Hiding inherited attributes?

2008-06-18 Thread Alan Zebchuk
Are you trying to generate the XML to use with the ReportMill Designer? This is done using the RMWebObjects.writeObject method, which is availabe from the report mill website. If the problem is that it's outputting too many methods and variables, you can modify the RMWOXMLWriter class to ig

Re: Design Question: Hiding inherited attributes?

2008-06-18 Thread James Cicenia
It probably is what I am missing. ReportMill creates an XML file for the ReportDesigner to show keys, etc. It is supposed to create this by interrogating my EOs. However, my EOs, are evidently way to complex and its xml writer finds itself in an infinite loop. I have Company -->> Portfolios -

Re: Design Question: Hiding inherited attributes?

2008-06-18 Thread Ken Anderson
James, I think everyone is scratching their heads in regards to your problem with ReportMill. Why is XML involved at all? ReportMill should be able to interrogate your objects as necessary. What am I missing here? Ken On Jun 18, 2008, at 3:40 PM, James Cicenia wrote: The problem is

Re: Design Question: Hiding inherited attributes?

2008-06-18 Thread David Avendasora
inherit You keep using that word, I do not think it means what you think it means. :-) I've never used ReportMill, but there must be some way that you can tell it which of the many attributes of an Entity that you want it to use. Isn't there? Dave On Jun 18, 2008, at 3:40 PM, James Ci

Re: Design Question: Hiding inherited attributes?

2008-06-18 Thread James Cicenia
EOEntity IS my friend. You can only subtract. You can't add to ReportMill. And you pretty much have to use their generator. I am thinking the best approach is to list everything from EOEntity. BBEdit that to a java method, and then start deleting the ignore lines I need while strongly testi

[OT] and now for something completely different

2008-06-18 Thread David Holt
I thought this was interesting so I created a word cloud for http://www.apple.com/webobjects. http://wordle.net/gallery/WebObjects ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list

Re: Design Question: Hiding inherited attributes?

2008-06-18 Thread Alan Ward
EOEntity is your friend Alan On Jun 18, 2008, at 1:43 PM, James Cicenia wrote: OK - Is there a way I can get a list of every method and attribute? Thanks James On Jun 18, 2008, at 2:31 PM, Robert Walker wrote: Maybe I'm misinterpreting your question, but couldn't you just make another E

Re: Design Question: Hiding inherited attributes?

2008-06-18 Thread James Cicenia
OK - Is there a way I can get a list of every method and attribute? Thanks James On Jun 18, 2008, at 2:31 PM, Robert Walker wrote: Maybe I'm misinterpreting your question, but couldn't you just make another Entity on the same table that only included the columns you're interested in? On

Re: Design Question: Hiding inherited attributes?

2008-06-18 Thread James Cicenia
The problem is I am trying to user ReportMill. And they don't publish an XML spec. Instead they generate the XML automagically. And, with all the Velogen goodness, all my methods, reflexive relationships here and there, well, I can't get it to give me the XML. So I figured if I make anot

Re: Design Question: Hiding inherited attributes?

2008-06-18 Thread Robert Walker
Maybe I'm misinterpreting your question, but couldn't you just make another Entity on the same table that only included the columns you're interested in? On Jun 18, 2008, at 3:14 PM, James Cicenia wrote: Hello - I would like to somehow make an object that subclasses an EO but only the s

Re: Design Question: Hiding inherited attributes?

2008-06-18 Thread Chuck Hill
On Jun 18, 2008, at 12:14 PM, James Cicenia wrote: Hello - I would like to somehow make an object that subclasses an EO but only the subclass's attributes are visible. Is this possible? Uh, in what way would that be inheritance? -- Practical WebObjects - for developers who want to inc

Design Question: Hiding inherited attributes?

2008-06-18 Thread James Cicenia
Hello - I would like to somehow make an object that subclasses an EO but only the subclass's attributes are visible. Is this possible? Thanks James Cicenia ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list

Re: More efficient web service choice

2008-06-18 Thread Paul Lynch
On 18 Jun 2008, at 16:52, Guido Neitzer wrote: On 18.06.2008, at 00:03, David den Boer wrote: We use SOAP webservices on many of our applications, some of which receive several hundred thousand transactions daily without any issues. I find the ease of using SOAP over other options so much

jocstrap

2008-06-18 Thread Don Lindsay
Hello; Has anyone utilized jocstrap? It is supposed to be an objective-c to java bridge. Don ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-dev@lists.apple.com) Help/Unsubscribe/Update

Re: Now on Facebook...

2008-06-18 Thread Guido Neitzer
On 18.06.2008, at 11:01, Ash Mishra wrote: It was bound to happen, and I was surprised it hadn't happened yet. But there's now a WebObjects group you can join on Facebook. Just for fun and meeting new people, not technical discussion as on this list! Join here: http://www.facebook.com/g

Now on Facebook...

2008-06-18 Thread Ash Mishra
It was bound to happen, and I was surprised it hadn't happened yet. But there's now a WebObjects group you can join on Facebook. Just for fun and meeting new people, not technical discussion as on this list! Join here: http://www.facebook.com/group.php?gid=35453936208 Cheers Ash

RE: change not registering in Editing Context

2008-06-18 Thread Müller, Michael
Hi David, > Did you submit a bug report when you found it? Nope, I didn't, because I've been way too busy at that time and forgot about the issue later on. :) Ok, I'll file another bug report to support Jonathans report. Cheers,--micha > -Original Message- > From: David Avendasora

Re: More efficient web service choice

2008-06-18 Thread Guido Neitzer
On 18.06.2008, at 00:03, David den Boer wrote: We use SOAP webservices on many of our applications, some of which receive several hundred thousand transactions daily without any issues. I find the ease of using SOAP over other options so much better, especially when using WO (which is also

Re: Moving to 5.4 - Fetch Spec with invalid key error

2008-06-18 Thread Mike Schrag
I don't understand that, then ... That said, the stable build just up'd to the new version yesterday, so maybe try installing with the latest. On Jun 18, 2008, at 10:01 AM, Calven Eggert wrote: ? We've just done a complete new install. Is there something we can check to make sure we have

Re: Moving to 5.4 - Fetch Spec with invalid key error

2008-06-18 Thread Mike Schrag
I've seen a recent post in regards to a problem with nulls in a fetch spec in WO 5.4 and Entity Modeler and the solution there was to use the nightly build of WOLips. I'm using build 3.3.5245 and I'm still getting the following error multiple times: Something is going on with your install,

Re: Moving to 5.4 - Fetch Spec with invalid key error

2008-06-18 Thread David Avendasora
This isn't really enough information to make any kind of guess as to what the problem could be Can you paste in the .plist contents for both the FetchSpecificatio, any Entities that are referred to in the FS and the exact error and when and where you are getting it? Dave On Jun 18, 2008,

Re: change not registering in Editing Context

2008-06-18 Thread David Avendasora
Did you submit a bug report when you found it? The fact that you've been able to reproduce it, and more than one developer has found it and documented it will make it much easier for Apple to track down and fix. Now that we have nightly builds, it's a perfect opportunity to be able to tes

Re: Migrating a WO app from Oracle to Frontbase

2008-06-18 Thread Simon McLean
Checkout javaeoutil. should be in the dev tools somewhere. Simon On 18 Jun 2008, at 13:53, Ralph Scheuer wrote: Hello everybody, sorry for cross-posting this but the topic somehow fits into both lists. I would like to migrate a WebObjects 5.2 application from an Oracle 9 db on Solaris

Moving to 5.4 - Fetch Spec with invalid key error

2008-06-18 Thread Calven Eggert
Hi all, I'm moving to Leopard and WO 5.4. All my 6 WO apps worked like a piece of cake except one with the following issue. I've seen a recent post in regards to a problem with nulls in a fetch spec in WO 5.4 and Entity Modeler and the solution there was to use the nightly build of WOLip

Migrating a WO app from Oracle to Frontbase

2008-06-18 Thread Ralph Scheuer
Hello everybody, sorry for cross-posting this but the topic somehow fits into both lists. I would like to migrate a WebObjects 5.2 application from an Oracle 9 db on Solaris to Frontbase for Windows. Has anybody done this before? What is the best / easiest / fastest way to migrate the data?

RE: change not registering in Editing Context

2008-06-18 Thread Müller, Michael
Hi Jonathan, > I believe the best workaround for this issue is overriding > dispatchRequest and calling > EOObserverCenter.notifyObserversObjectWillChange(null) after > the call to super. But I haven't tested very much with the > workaround yet. That's exactly what we did about half a year ag