Re: JavaEOGenerator - EOPrototypes and EOGenericRecord?

2007-12-22 Thread Art Isbell

On Dec 22, 2007, at 6:42 PM, Jeff Schmitz wrote:

A few other problems with the "base" generated code (the classes  
with the _ before their names):


	The templates should be considered as examples of the sorts of things  
that can be done; they should not be considered ready to use without  
modification.


Aloha,
Art

___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]


Re: JavaEOGenerator - EOPrototypes and EOGenericRecord?

2007-12-22 Thread Jeff Schmitz
A few other problems with the "base" generated code (the classes with  
the _ before their names):


1. The code references some classes that the compiler can't find.  I'm  
using WO 5.3 btw.  e.g.

com.webobjects.eoaccess.EORelationship.DeleteRuleNullify:

2.The below generated code references an operation that doesn't exist,  
namely addToEntriesRelationship.


  public void initializeEntries(com.netBrackets.core.EOEntries  
value) {

this.addToEntriesRelationship(value);
}

3. "&&"s come out as &&, e.g.

   if ((this.editingContext() != null) && (object !=  
null) && (!this.isReadOnly()) && (! 
object.isReadOnly()) && (! 
this.editingContext().equals(object.editingContext( {


4. Two functions with the same name and signature are generated.   
Operations are shown below:


public void addToEntries(com.netBrackets.core.EOEntries object) {
this.includeObjectIntoPropertyWithKey(object, "entries");
}

public void addToEntries(com.netBrackets.core.EOEntries object) {
if (logger.isDebugEnabled()) {
if ((this.editingContext() != null) && (object != null)  
&& (!this.isReadOnly()) && (!object.isReadOnly())  
&& (!this.editingContext().equals(object.editingContext( {

try {
throw new Exception("WrongEdidtingContext");
} catch(Exception exception) {
logger.warn("addToEntries exception " , exception);
}
}
}
this.includeObjectIntoPropertyWithKey(object, "entries");
}

On Dec 22, 2007, at 10:12 PM, Jeff Schmitz wrote:

I have tried JavaEOGenerator and came across a couple of  
idiosyncrasies (or maybe user error?):


1. I was able to create the eogen file in my project.  But then when  
I right click->EOgenerate... it, it looks for my eomodel file in the  
JavaEOGenerator project, not my project.  I copied my eomodel file  
to the EOGenerate project, and it worked.


2. I have a couple of queries with spaces in their names.  The  
generated code creates function names with spaces in them, so they  
don't compile.


e.g.
public static NSArray objectsForGet Last Year  
Entries(com.webobjects.eocontrol.EOEditingContext context,  
java.lang.String poolNameBinding, java.lang.Integer poolTypeBinding) {


Do I need to take out the spaces, or is this a bug in  
JavaEOGenerator?  They always worked ok before with the spaces.   
Also, is there a way to make it look for my eomodel file in my own  
project (where the eogen file resides)?


Thanks,
Jeff

On Dec 22, 2007, at 9:53 AM, Guido Neitzer wrote:


On 22.12.2007, at 08:47, Drew Thoeni wrote:

Using the same instructions as Jeff, with the default install of  
Leopard (WO 5.4) and the latest version of Eclipse (3.3.1.1.),  
WOLips (3.3.4750, updated last night) and  EOGenerator (1.7).


EOGenerator doesn't work on Leopard out of the box. If you really  
need it for the time being until you made the switch to Velocity or  
JavaEOGenerator, you can follow the instructions here:


http://tinyurl.com/22woqf

My advise on that is: if you have to run EOGenerator today or  
tomorrow, apply the stuff above - and only if you really have to!  
If you need it next week - give Velocity or JavaEOGenerator a try.


cug

--
http://www.event-s.net

___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/jeffandmonica%40mac.com

This email sent to [EMAIL PROTECTED]


___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/jeffandmonica%40mac.com

This email sent to [EMAIL PROTECTED]


 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]

Re: JavaEOGenerator - EOPrototypes and EOGenericRecord?

2007-12-22 Thread Jeff Schmitz
I have tried JavaEOGenerator and came across a couple of  
idiosyncrasies (or maybe user error?):


1. I was able to create the eogen file in my project.  But then when I  
right click->EOgenerate... it, it looks for my eomodel file in the  
JavaEOGenerator project, not my project.  I copied my eomodel file to  
the EOGenerate project, and it worked.


2. I have a couple of queries with spaces in their names.  The  
generated code creates function names with spaces in them, so they  
don't compile.


e.g.
public static NSArray objectsForGet Last Year  
Entries(com.webobjects.eocontrol.EOEditingContext context,  
java.lang.String poolNameBinding, java.lang.Integer poolTypeBinding) {


Do I need to take out the spaces, or is this a bug in  
JavaEOGenerator?  They always worked ok before with the spaces.  Also,  
is there a way to make it look for my eomodel file in my own project  
(where the eogen file resides)?


Thanks,
Jeff

On Dec 22, 2007, at 9:53 AM, Guido Neitzer wrote:


On 22.12.2007, at 08:47, Drew Thoeni wrote:

Using the same instructions as Jeff, with the default install of  
Leopard (WO 5.4) and the latest version of Eclipse (3.3.1.1.),  
WOLips (3.3.4750, updated last night) and  EOGenerator (1.7).


EOGenerator doesn't work on Leopard out of the box. If you really  
need it for the time being until you made the switch to Velocity or  
JavaEOGenerator, you can follow the instructions here:


http://tinyurl.com/22woqf

My advise on that is: if you have to run EOGenerator today or  
tomorrow, apply the stuff above - and only if you really have to! If  
you need it next week - give Velocity or JavaEOGenerator a try.


cug

--
http://www.event-s.net

___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/jeffandmonica%40mac.com

This email sent to [EMAIL PROTECTED]


 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]

Re: JavaEOGenerator - EOPrototypes and EOGenericRecord?

2007-12-22 Thread Chuck Hill

Warning added to originally referenced page.

Chuck

On Dec 22, 2007, at 7:52 AM, Pascal Robert wrote:

http://wiki.objectstyle.org/confluence/display/WO/EOF-Using+EOF- 
EOGenerator


"EOGenerator don't work on Mac OS X 10.5.  You either have to use  
JavaEOGenerator or Velocity EOGenerator."


I'm finally making the conversion to Eclipse (due to Leopard  
upgrade) and am having this same problem.


Using the same instructions as Jeff, with the default install of  
Leopard (WO 5.4) and the latest version of Eclipse (3.3.1.1.),  
WOLips (3.3.4750, updated last night) and  EOGenerator (1.7).


When I set preferences for WOLips build to "Auto EOGenerate on  
build" I get an error in the problems tab of Eclipse. This reports  
"EOGenerator failed (run manually for details). When run manually  
I get "EOGenerator failed with code #133". No Console messages at  
all.


I'm not familiar with Velocity so am not sure if I need to do  
something with that to get EOGeneration to work.


Additionally, templates folder and templates are set in both the  
"build preferences" and in the .eogen file. Not sure if one  
overrides the other or perhaps this is confusing to the  
EOGenerator. Seems likely not, but guidance on which is correct  
would be good.


Thoughts on the 133 error?

Regards

Drew


On Dec 22, 2007, at 12:03 AM, Chuck Hill wrote:


Tiger?  Leopard?  WO 5.3?  5.4?  Have you checked the Console log?

Chuck


On Dec 21, 2007, at 8:57 PM, Jeff Schmitz wrote:

Am trying to generate java using method described by below link,  
but when I try to bring up the EOGenerate dialog I get error  
133,  Any ideas?


http://wiki.objectstyle.org/confluence/display/WOL/Generating+EO 
+Java+Classes


thanks,
jeff
___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/chill% 
40global-village.net


This email sent to [EMAIL PROTECTED]



--

Practical WebObjects - for developers who want to increase their  
overall knowledge of WebObjects or who are trying to solve  
specific problems.

http://www.global-village.net/products/practical_webobjects





___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/drewt7% 
40comcast.net


This email sent to [EMAIL PROTECTED]


___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/probert%40os.ca

This email sent to [EMAIL PROTECTED]


 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/chill% 
40global-village.net


This email sent to [EMAIL PROTECTED]


--

Practical WebObjects - for developers who want to increase their  
overall knowledge of WebObjects or who are trying to solve specific  
problems.

http://www.global-village.net/products/practical_webobjects





___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]


Re: JavaEOGenerator - EOPrototypes and EOGenericRecord?

2007-12-22 Thread Guido Neitzer

On 22.12.2007, at 08:47, Drew Thoeni wrote:

Using the same instructions as Jeff, with the default install of  
Leopard (WO 5.4) and the latest version of Eclipse (3.3.1.1.),  
WOLips (3.3.4750, updated last night) and  EOGenerator (1.7).


EOGenerator doesn't work on Leopard out of the box. If you really need  
it for the time being until you made the switch to Velocity or  
JavaEOGenerator, you can follow the instructions here:


http://tinyurl.com/22woqf

My advise on that is: if you have to run EOGenerator today or  
tomorrow, apply the stuff above - and only if you really have to! If  
you need it next week - give Velocity or JavaEOGenerator a try.


cug

--
http://www.event-s.net

___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]


Re: JavaEOGenerator - EOPrototypes and EOGenericRecord?

2007-12-22 Thread Pascal Robert
http://wiki.objectstyle.org/confluence/display/WO/EOF-Using+EOF- 
EOGenerator


"EOGenerator don't work on Mac OS X 10.5.  You either have to use  
JavaEOGenerator or Velocity EOGenerator."


I'm finally making the conversion to Eclipse (due to Leopard  
upgrade) and am having this same problem.


Using the same instructions as Jeff, with the default install of  
Leopard (WO 5.4) and the latest version of Eclipse (3.3.1.1.),  
WOLips (3.3.4750, updated last night) and  EOGenerator (1.7).


When I set preferences for WOLips build to "Auto EOGenerate on  
build" I get an error in the problems tab of Eclipse. This reports  
"EOGenerator failed (run manually for details). When run manually I  
get "EOGenerator failed with code #133". No Console messages at all.


I'm not familiar with Velocity so am not sure if I need to do  
something with that to get EOGeneration to work.


Additionally, templates folder and templates are set in both the  
"build preferences" and in the .eogen file. Not sure if one  
overrides the other or perhaps this is confusing to the  
EOGenerator. Seems likely not, but guidance on which is correct  
would be good.


Thoughts on the 133 error?

Regards

Drew


On Dec 22, 2007, at 12:03 AM, Chuck Hill wrote:


Tiger?  Leopard?  WO 5.3?  5.4?  Have you checked the Console log?

Chuck


On Dec 21, 2007, at 8:57 PM, Jeff Schmitz wrote:

Am trying to generate java using method described by below link,  
but when I try to bring up the EOGenerate dialog I get error  
133,  Any ideas?


http://wiki.objectstyle.org/confluence/display/WOL/Generating+EO 
+Java+Classes


thanks,
jeff
___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/chill% 
40global-village.net


This email sent to [EMAIL PROTECTED]



--

Practical WebObjects - for developers who want to increase their  
overall knowledge of WebObjects or who are trying to solve  
specific problems.

http://www.global-village.net/products/practical_webobjects





___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/drewt7% 
40comcast.net


This email sent to [EMAIL PROTECTED]


___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/probert%40os.ca

This email sent to [EMAIL PROTECTED]


 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]

Re: JavaEOGenerator - EOPrototypes and EOGenericRecord?

2007-12-22 Thread Drew Thoeni

Mike,

I just posted a similar problem and I thought I had read the  
EOGenerator did now work. I suspect not, based on your post. What is  
the general process so I can search the archives?


Regards

Drew

On Dec 22, 2007, at 9:12 AM, Mike Schrag wrote:

If you're trying to use the eogenerator from rubicode, it no longer  
works on Leopard ... There is a lot of information on the list  
archives about how to do this now.


ms

On Dec 22, 2007, at 9:05 AM, Jeff Schmitz wrote:


Using WO 5.3 on Leopard Client.

The error shows in the EOGenerator dialog.

Nothing comes out in the Console log.  The EOGenerate dialog comes  
up and just has the message "EOGenerator finished with the  
following results: Failed with error code 133".  That's it, no  
other information.


Jeff


On Dec 21, 2007, at 11:03 PM, Chuck Hill wrote:


Tiger?  Leopard?  WO 5.3?  5.4?  Have you checked the Console log?

Chuck


On Dec 21, 2007, at 8:57 PM, Jeff Schmitz wrote:

Am trying to generate java using method described by below link,  
but when I try to bring up the EOGenerate dialog I get error  
133,  Any ideas?


http://wiki.objectstyle.org/confluence/display/WOL/Generating+EO+Java+Classes

thanks,
jeff
___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/chill%40global-village.net

This email sent to [EMAIL PROTECTED]



--

Practical WebObjects - for developers who want to increase their  
overall knowledge of WebObjects or who are trying to solve  
specific problems.

http://www.global-village.net/products/practical_webobjects







___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/mschrag%40mdimension.com

This email sent to [EMAIL PROTECTED]



___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/drewt7%40comcast.net

This email sent to [EMAIL PROTECTED]


___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]


Re: JavaEOGenerator - EOPrototypes and EOGenericRecord?

2007-12-22 Thread Drew Thoeni
I'm finally making the conversion to Eclipse (due to Leopard upgrade)  
and am having this same problem.


Using the same instructions as Jeff, with the default install of  
Leopard (WO 5.4) and the latest version of Eclipse (3.3.1.1.), WOLips  
(3.3.4750, updated last night) and  EOGenerator (1.7).


When I set preferences for WOLips build to "Auto EOGenerate on build"  
I get an error in the problems tab of Eclipse. This reports  
"EOGenerator failed (run manually for details). When run manually I  
get "EOGenerator failed with code #133". No Console messages at all.


I'm not familiar with Velocity so am not sure if I need to do  
something with that to get EOGeneration to work.


Additionally, templates folder and templates are set in both the  
"build preferences" and in the .eogen file. Not sure if one overrides  
the other or perhaps this is confusing to the EOGenerator. Seems  
likely not, but guidance on which is correct would be good.


Thoughts on the 133 error?

Regards

Drew


On Dec 22, 2007, at 12:03 AM, Chuck Hill wrote:


Tiger?  Leopard?  WO 5.3?  5.4?  Have you checked the Console log?

Chuck


On Dec 21, 2007, at 8:57 PM, Jeff Schmitz wrote:

Am trying to generate java using method described by below link,  
but when I try to bring up the EOGenerate dialog I get error 133,   
Any ideas?


http://wiki.objectstyle.org/confluence/display/WOL/Generating+EO+Java+Classes

thanks,
jeff
___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/chill%40global-village.net

This email sent to [EMAIL PROTECTED]



--

Practical WebObjects - for developers who want to increase their  
overall knowledge of WebObjects or who are trying to solve specific  
problems.

http://www.global-village.net/products/practical_webobjects





___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/drewt7%40comcast.net

This email sent to [EMAIL PROTECTED]


___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]


Re: JavaEOGenerator - EOPrototypes and EOGenericRecord?

2007-12-22 Thread Mike Schrag
If you're trying to use the eogenerator from rubicode, it no longer  
works on Leopard ... There is a lot of information on the list  
archives about how to do this now.


ms

On Dec 22, 2007, at 9:05 AM, Jeff Schmitz wrote:


Using WO 5.3 on Leopard Client.

The error shows in the EOGenerator dialog.

Nothing comes out in the Console log.  The EOGenerate dialog comes  
up and just has the message "EOGenerator finished with the following  
results: Failed with error code 133".  That's it, no other  
information.


Jeff


On Dec 21, 2007, at 11:03 PM, Chuck Hill wrote:


Tiger?  Leopard?  WO 5.3?  5.4?  Have you checked the Console log?

Chuck


On Dec 21, 2007, at 8:57 PM, Jeff Schmitz wrote:

Am trying to generate java using method described by below link,  
but when I try to bring up the EOGenerate dialog I get error 133,   
Any ideas?


http://wiki.objectstyle.org/confluence/display/WOL/Generating+EO+Java+Classes

thanks,
jeff
___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/chill%40global-village.net

This email sent to [EMAIL PROTECTED]



--

Practical WebObjects - for developers who want to increase their  
overall knowledge of WebObjects or who are trying to solve specific  
problems.

http://www.global-village.net/products/practical_webobjects







___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/mschrag%40mdimension.com

This email sent to [EMAIL PROTECTED]



___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]


Re: JavaEOGenerator - EOPrototypes and EOGenericRecord?

2007-12-22 Thread Jeff Schmitz

Using WO 5.3 on Leopard Client.

The error shows in the EOGenerator dialog.

Nothing comes out in the Console log.  The EOGenerate dialog comes up  
and just has the message "EOGenerator finished with the following  
results: Failed with error code 133".  That's it, no other information.


Jeff


On Dec 21, 2007, at 11:03 PM, Chuck Hill wrote:


Tiger?  Leopard?  WO 5.3?  5.4?  Have you checked the Console log?

Chuck


On Dec 21, 2007, at 8:57 PM, Jeff Schmitz wrote:

Am trying to generate java using method described by below link,  
but when I try to bring up the EOGenerate dialog I get error 133,   
Any ideas?


http://wiki.objectstyle.org/confluence/display/WOL/Generating+EO+Java+Classes

thanks,
jeff
___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/chill%40global-village.net

This email sent to [EMAIL PROTECTED]



--

Practical WebObjects - for developers who want to increase their  
overall knowledge of WebObjects or who are trying to solve specific  
problems.

http://www.global-village.net/products/practical_webobjects







___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]


Re: JavaEOGenerator - EOPrototypes and EOGenericRecord?

2007-12-22 Thread Daniele Corti
2007/12/22, Jeff Schmitz <[EMAIL PROTECTED]>:
>
> Am trying to generate java using method described by below link, but
> when I try to bring up the EOGenerate dialog I get error 133,  Any
> ideas?


You mean you try to EOgenerate and in the  dialog you have "Error 133"? Does
it give some other Info?

http://wiki.objectstyle.org/confluence/display/WOL/Generating+EO+Java+Classes
>
> thanks,
> jeff
> ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/webobjects-dev/ildenae%40gmail.com
>
> This email sent to [EMAIL PROTECTED]
>



-- 
Daniele Corti
AIM: S0CR4TE5
Messenger: [EMAIL PROTECTED]

--
Computers are like air conditioners -- they stop working properly if you
open
WINDOWS

-- 
What about the four lusers of the apocalypse? I nominate:
"advertising", "can't log in", "power switch" and "what backup?"
--Alistair Young
 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]

Re: JavaEOGenerator - EOPrototypes and EOGenericRecord?

2007-12-21 Thread Chuck Hill

Tiger?  Leopard?  WO 5.3?  5.4?  Have you checked the Console log?

Chuck


On Dec 21, 2007, at 8:57 PM, Jeff Schmitz wrote:

Am trying to generate java using method described by below link,  
but when I try to bring up the EOGenerate dialog I get error 133,   
Any ideas?


http://wiki.objectstyle.org/confluence/display/WOL/Generating+EO 
+Java+Classes


thanks,
jeff
___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/chill% 
40global-village.net


This email sent to [EMAIL PROTECTED]



--

Practical WebObjects - for developers who want to increase their  
overall knowledge of WebObjects or who are trying to solve specific  
problems.

http://www.global-village.net/products/practical_webobjects





___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]


Re: JavaEOGenerator - EOPrototypes and EOGenericRecord?

2007-12-21 Thread Jeff Schmitz
Am trying to generate java using method described by below link, but  
when I try to bring up the EOGenerate dialog I get error 133,  Any  
ideas?


http://wiki.objectstyle.org/confluence/display/WOL/Generating+EO+Java+Classes

thanks,
jeff
___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]