Re: Accidentally opened workspace with Eclipse 3.4

2009-02-08 Thread Jeff Schmitz
Nevermind, I didn't configure my framework project as a local framework in my main application project. I did specify my framework project as a required project on the build path, which is why it worked when launched from Eclipse. Jeff On Feb 8, 2009, at 10:59 PM, Jeff Schmitz wrote

Re: Accidentally opened workspace with Eclipse 3.4

2009-02-08 Thread Jeff Schmitz
Continuing with this thread, I just tried to install on my server a new build from the workspace that I restored from backup, but now I get the following exception when I try to start it up on the server. java.lang.NoClassDefFoundError: com/webobjects/appserver/WOApplication Is there somethi

Re: [Wonder-disc] webobjects.mdimension.com

2009-02-08 Thread Mike Schrag
Sorry everyone ... it will be up tomorrow morning ... On Feb 8, 2009, at 10:40 PM, Lon Varscsak wrote: webobjects.mdimension.com appears to be down. Did it move somewhere else? -Lon -- Create and Deploy Rich Interne

Re: Custom attribute class conversion in entity modeler

2009-02-08 Thread Riccardo De Menna
Yes Mike, It apparently works if I manually replace the $ with a . in the eogenerated classes. Actually it even seems to work with the enum alternative way. After all accessing an enum is basically done the same way so no big surprise I guess. rdm On 08/feb/09, at 15:13, Mike Schrag wro

Re: Custom attribute class conversion in entity modeler

2009-02-08 Thread Mike Schrag
Actually with the $ I get now the EOGenerated template line flagged as error claiming that: Can you manually convert the eogenerated references to dots and see if that all works? If so, I'll make a change to the generator to do this automatically .. ms

Re: Custom attribute class conversion in entity modeler

2009-02-08 Thread Riccardo De Menna
Actually with the $ I get now the EOGenerated template line flagged as error claiming that: "The nested type com.tuorlo.hdm.eo.Client$Status cannot be referenced using it's binary name" The generated accessors look like this one: public com.tuorlo.hdm.eo.Client$Status status() { return

Re: Custom attribute class conversion in entity modeler

2009-02-08 Thread Anjo Krank
Inner classes end up with a '$' instead of a '.' as the class name: com.tuorlo.hdm.eo.Client$Status Cheers, Anjo Am 08.02.2009 um 12:50 schrieb Riccardo De Menna: BTW... I'm having a lot of issues with the custom classes setup. Now for instance I'm trying to use a static inner class and it fa

Re: Custom attribute class conversion in entity modeler

2009-02-08 Thread Riccardo De Menna
BTW... I'm having a lot of issues with the custom classes setup. Now for instance I'm trying to use a static inner class and it fails at runtime. Immagine the following: public static class Status { public final static Status ACTIVE = new Status(0); public final static Status