This looks like a similar bug to what Brian G messaged me a little while ago.
It occurs when an object has a reference to itself... the Memento generator goes into a pretty crazy infinite loop I'm working on it now. Mark On Thu, Nov 27, 2008 at 7:56 AM, Mark Mandel <[EMAIL PROTECTED]> wrote: > Recursive relationships should throw a meaningful error letting you > know to set a composition to being lazy loaded, rather than 500 out. > > If you need to check Transfer versions, you can check > TransferFactory.getVersion() > http://docs.transfer-orm.com/html/transferapi/transfer/TransferFactory.html#getVersion() > > Do you have 2 relationships set up for the same FK? > > It's hard to tell without seeing the relevant configuration. > > Mark > > On Thu, Nov 27, 2008 at 6:22 AM, Jared Rypka-Hauer > <[EMAIL PROTECTED]> wrote: >> If you want to do do this you need to make sure that all the relationships >> are lazy-loaded. Then it should work. >> If you have lazy turned on for the relationships, the get*() methods will >> get created but the data won't be loaded till you call the method. This >> prevents an infinite loop from occurring. >> Note that it's not something I've ever tried, but it's what I've read in the >> past. >> J >> On Nov 26, 2008, at 1:22 PM, David Mineer wrote: >> >> My table has a self join column, parentid. The user had linked this record >> to itself which I am sure caused some kind of infinite loop. >> >> companyid = 388 >> parentid = 388 >> >> >> >> > > > > -- > E: [EMAIL PROTECTED] > W: www.compoundtheory.com > -- E: [EMAIL PROTECTED] W: www.compoundtheory.com --~--~---------~--~----~------------~-------~--~----~ Before posting questions to the group please read: http://groups.google.com/group/transfer-dev/web/how-to-ask-support-questions-on-transfer You received this message because you are subscribed to the Google Groups "transfer-dev" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/transfer-dev?hl=en -~----------~----~----~----~------~----~------~--~---
