Re: Inner Classes EOF

2008-05-21 Thread David Avendasora
On May 14, 2008, at 10:40 AM, Florijan Stamenkovic wrote: Dave, Chuck, I was out of town (and computerless, it hurt) for a few days, good to see you guys are still having fun :) OK, everything I write here is based on the assumption that your inner class will NOT be an EO. Did I get

Re: Inner Classes EOF

2008-05-21 Thread Florijan Stamenkovic
I only have a couple clients so, if I could make it work on the server it would be much faster. I'm talking about literally hundreds of EOs that need to be brought down to the client to run the calculation, and my application runs across the internet for the most important client (me).

Re: Inner Classes EOF

2008-05-21 Thread Anjo Krank
Note: objectForGlobalID only works if the object has already been fetched into the EC. for other cases use faultForGlobalID. Am 21.05.2008 um 17:03 schrieb Florijan Stamenkovic: summedRelationship.add(editingContext().objectForGlobalID(id));

Re: Inner Classes EOF

2008-05-21 Thread Florijan Stamenkovic
Oh yeah, right. And since faultForGlobalID will work either way, best to use that one always, no? F On May 21, 2008, at 13:48, Anjo Krank wrote: Note: objectForGlobalID only works if the object has already been fetched into the EC. for other cases use faultForGlobalID. Am 21.05.2008 um

Re: Inner Classes EOF

2008-05-14 Thread Florijan Stamenkovic
Dave, Chuck, I was out of town (and computerless, it hurt) for a few days, good to see you guys are still having fun :) OK, everything I write here is based on the assumption that your inner class will NOT be an EO. Did I get that right? If I misunderstood, it does not apply... If you

Inner Classes EOF

2008-05-12 Thread David Avendasora
Hi all, Is it possible to use Inner Classes inside EOs? Since they are Inner, are they automatically in the same EditingContext as the EO they are inside of? I would think so, but I just want to make sure. Thanks, Dave ___ Do not post admin

Re: Inner Classes EOF

2008-05-12 Thread Chuck Hill
On May 12, 2008, at 1:34 AM, David Avendasora wrote: Hi all, Is it possible to use Inner Classes inside EOs? Since they are Inner, are they automatically in the same EditingContext as the EO they are inside of? I would think so, but I just want to make sure. It would probably have

Re: Inner Classes EOF

2008-05-12 Thread David Avendasora
Yeah, it's giving me a queasy feeling too. Mix it in with Java Client and it gets even more nauseating. The basics of what I'm trying to do is I have Parts that each have at least one BillOfMaterial Each BillOfMaterial has 0 or more Components. These Components are each a certain quantity

Re: Inner Classes EOF

2008-05-12 Thread Chuck Hill
On May 12, 2008, at 10:03 AM, David Avendasora wrote: Yeah, it's giving me a queasy feeling too. Mix it in with Java Client and it gets even more nauseating. The basics of what I'm trying to do is I have Parts that each have at least one BillOfMaterial Each BillOfMaterial has 0 or more

Re: Inner Classes EOF

2008-05-12 Thread Chuck Hill
On May 12, 2008, at 1:17 PM, David Avendasora wrote: On May 12, 2008, at 3:33 PM, Chuck Hill wrote: Well, that does not sound so back. JavaClient may throw a spanner into it. Biggest issue is that you can't do the work on the server, then send the EOs containing the Inner Class down