Dear Christophe, > I've made a lot of progress with my sample app. I need to be able to log > on without a password which works for the dnd, html and scimpi viewer. > However I had planned to use the wicket viewer. Can anyone suggest what I > would need to change to make it work?
Hmm. Without knowing any better, I would have thought Dan's suggestion of the 24th Feb would have worked here too! I'll leave Dan to handle queries about the wicket viewer ;) > Also I've been using the sql object store with hsqldb. It works well for > my app Glad to hear! > but I noticed something strange when using the dnd viewer eg > > Class A one->many Class B > Class B one->many Class C > > If I traverse to Class A from a repository, then traverse to Class B, > Class B shows an empty list for Class C. I'm guessing this has to do with > lazy loading? I've found that loading Class B before Class A solves this > problem for me. Thanks for raising this.. I thought I tried something like this a long time ago - or it may have had to do with changes in one instance propagating to other open views of the same object - but the problems I had occurred only when my classes did not extend (sub-class?) DomainObjectContainer (if memory serves). Can you confirm which, if any, of your Class A / B / C extend DomainObjectContainer? Otherwise, you may have to manually call resolve() on class B's property collection of class C.. If you haven't come right already, send me a note and I'll create an example app to try reproduce this behaviour. Regards, Kevin
