[castor-dev] Re: [castor-user] Project Update, Need your vote!

2005-02-09 Thread Jon Wilmoth
I'd prefer to be automatically resubscribed. --- Keith Visco <[EMAIL PROTECTED]> wrote: > > Hi all, > > We're currently in the process of moving the project > over to > codehaus.org. Please be patient with us during the > move process. > > As part of this process we need to create new > mail

Re: [castor-dev] Castor 0.9.6-RC3 lazy loading net.sf.cglib.core.CodeGenerationException

2005-01-16 Thread Jon Wilmoth
lazy > loading for > collections, but only introduced support for lazy > loading for 1:1 relations. But it looks to me like > Castor is getting confused a bug about where to > apply > which method. > > Thanks > Werner > > On Sat, 15 Jan 2005 18:23:40 -0800 (PST)

[castor-dev] Castor 0.9.6-RC3 lazy loading net.sf.cglib.core.CodeGenerationException

2005-01-15 Thread Jon Wilmoth
It looks like the lazy loading has changed in 0.9.6 from 0.9.5.3. I'm getting an reflection based exception trying to load a class that has a property who in turn has a lazy loaded collection. The lazy loaded property on the Project class has the following mapping/java declaration: //marked tran

Re: [castor-dev] Castor 0.9.6-RC3 database loading issues

2005-01-12 Thread Jon Wilmoth
unt down the descriptor for jdo-conf and make the > same change I made to > the CategoryDescriptor.java as described in the > above bug. > > Thanks, > > --Keith > > Jon Wilmoth wrote: > > I know time went into fixing the loading of > mapping > > relative

[castor-dev] Castor 0.9.6-RC3 database loading issues

2005-01-12 Thread Jon Wilmoth
I know time went into fixing the loading of mapping relative paths within a database.xml file, but I wasn't able to get this working with the new release. Trying to work around the problem, I switched to a fully qualified file url for each "mapping" element in my database xml file. This fixes th

Re: [castor-dev] switch from CVS to Subversion

2005-01-06 Thread Jon Wilmoth
Having used Castor for over 2 years and monitored the mailing lists for almost as long I've never heard anyone state a problem with CVS. I realize it's probably not a big effort to change, but I'd prefer to see any effort of the Castor team geared toward actually improve the Castor product itself

Re: [castor-dev] Castor 0.9.6 - 2nd release candidate

2004-12-04 Thread Jon Wilmoth
I'm getting a FileNotFoundException using mapping href's that are relative to my tomcat home (i.e. ). Since the path prefixing the file name is prepended to the original path in the href attribute (example below) I believe this is the same problem captured in http://bugzilla.exolab.org/show_bug.c

Re: [castor-dev] MappingException: Field element, "java.sql.Time" not found!

2004-10-04 Thread Jon Wilmoth
Bruce, I take it you were able to reproduce the MappingException? Jon --- Bruce Snyder <[EMAIL PROTECTED]> wrote: > > Jon Wilmoth wrote: > > > With a field defined like the one below I get a > > mapping exception. What is the correct mapping > type >

Re: [castor-dev] JDO object creation performance flaw

2004-07-03 Thread Jon Wilmoth
I for one, think it's a very acceptable compromise. (lazy loading performance gains for a 1.3 runtime.Werner Guttmann <[EMAIL PROTECTED]> wrote: Stephen,Not so sure here, as some committers are very keen to keep things 100% compatible with JRE/JDK 1.2. Well, I think I am going to ask our users here

Re: [castor-dev] [JDO?] ClassMolder.create FieldMolder.PERSISTANCECAPABLE type field bug?

2004-06-06 Thread Jon Wilmoth
de. Iow, throw out > everything that is not required to run the tests and > > show the problem. > > Regards > Werner > > On Fri, 4 Jun 2004 09:24:35 -0700 (PDT), Jon Wilmoth > wrote: > > > > >I changed a local copy of > >ClassMolder.getIdentity(Transa

Re: [castor-dev] [JDO?] ClassMolder.create FieldMolder.PERSISTANCECAPABLE type field bug?

2004-06-04 Thread Jon Wilmoth
ct to create a new object MyComplexObject newComplex = new MyComplexObject(); newComplex.setMyObject(existing); Database.create(newComplex); I realize the project developers are busy, but this seems like a core issue and I'm hoping someone has some feedback to help debunk/resolve this "is

Re: [castor-dev] [JDO?] ClassMolder.create FieldMolder.PERSISTANCECAPABLE type field bug?

2004-06-01 Thread Jon Wilmoth
I've been working around the area effected by this issue, but thought I'd try to get some more info/spawn some more thought on this topic. There's a comment in the ClassMolder.getIdentity(TransactionContext, Object) method code that says: "In the case where key generator is used, the value of ide

Re: [castor-dev] [JDO?] ClassMolder.create FieldMolder.PERSISTANCECAPABLE type field bug?

2004-05-26 Thread Jon Wilmoth
Should I create a bugzilla bug to track the resolution of this issue? --- Jon Wilmoth <[EMAIL PROTECTED]> wrote: > > 1) Before creating a BookContract instance, how have > you loaded the other entities? Using Database, > load() > I assume. And when you are about to crea

Re: [castor-dev] [JDO] many-to-many as two one-to-manys?

2004-05-11 Thread Jon Wilmoth
ping documents correctly in the database file, but is this the way it should work? BROKEN: FIXED: --- Bruce Snyder <[EMAIL PROTECTED]> wrote: > > Jon Wilmoth wrote: > > > I have a Role object that can be combined with a > > Person object

[castor-dev] [JDO] many-to-many as two one-to-manys?

2004-05-09 Thread Jon Wilmoth
I have a Role object that can be combined with a Person object and a third object (i.e. Organization)to represent an individual being assigned to an particular Role. I'm planning on setting this up as 4 object mappings (3 seperate one-to-many relationships) per role assignment. Below is what I h

Re: [castor-dev] [JDO] lazy loaded collections

2004-05-06 Thread Jon Wilmoth
lazy > loaded collection before closing the transaction and > returning the object. > > > >Otherwise, you need to load the object from within > your JSP page/presentation tier. If it is jsp, you > could use the castor taglibrary to do this quite > easily: > > > >http://

[castor-dev] [JDO] lazy loaded collections

2004-05-06 Thread Jon Wilmoth
After turning on logging on my JDBC driver, I noticed that a seperate query statement was issued for each child object in a parent child relationship (i.e. ProductGroup --> Product). Query "SELECT AA_PRODUCT_GROUP.PROD_GROUP_ID,AA_PRODUCT.PRODUCT_ID,AA_PRODUCT_GROUP.CATEGORY FROM AA_PRODUCT_GR

Re: [castor-dev] [JDO] - Are explicit object relationships supported in Castor OQL?

2004-05-06 Thread Jon Wilmoth
Bruce Snyder <[EMAIL PROTECTED]> wrote: > > Jon Wilmoth wrote: > > > That makes complete sense! What doesn't is why, > after > > changing the parent's sql mapping to the FK column > in > > the child table, why I still get the same > > org.exolab

Re: [castor-dev] [JDO] - Are explicit object relationships supported in Castor OQL?

2004-05-05 Thread Jon Wilmoth
<<< No Message Collected >>>

Re: [castor-dev] [JDO] - Are explicit object relationships supported in Castor OQL?

2004-05-04 Thread Jon Wilmoth
<<< No Message Collected >>>

[castor-dev] [JDO] - Are explicit object relationships supported in Castor OQL?

2004-05-04 Thread Jon Wilmoth
<<< No Message Collected >>>

[castor-dev] 1:many relationships

2004-05-04 Thread Jon Wilmoth
<<< No Message Collected >>>

[castor-dev] QueryException: Could not find mapping for class

2003-11-02 Thread Jon Wilmoth
I managed to battle through the ClassMolder nullpointer exception I was facing few weeks back to get all the config files loaded without problem...so I thought. I'm now getting the following error trying to do a "select all" on a class that has a mapping present in the database file and the xml fil

Re: [castor-dev] ClassMolder NullPointerException

2003-10-22 Thread Jon Wilmoth
Awesome! Is this targeted for a particular release? Is there anyway for me to track this? --- Bruce Snyder <[EMAIL PROTECTED]> wrote: > This one time, at band camp, Jon Wilmoth said: > > JW>Thanks! I'll go through the mapping files with > that > JW>in min

Re: [castor-dev] Long Transaction & Dependant Objects..still

2002-06-10 Thread Jon Wilmoth
d populate object in 'short' transaction. --- Bruce Snyder <[EMAIL PROTECTED]> wrote: > This one time, at band camp, Jon Wilmoth said: > > JW>I searched the mail archives and found a couple > of > JW>people had posted problems with persisting JDO > JW>

[castor-dev] Long Transaction & Dependant Objects..still

2002-05-30 Thread Jon Wilmoth
I searched the mail archives and found a couple of people had posted problems with persisting JDO relationships. Since I didn't see any answers, and I'm having the same problem others have had I thought I'd post this again in hopes of an answer from exolab or a work around from someone who has fa