[EMAIL PROTECTED] wrote:
> 
> While testing JBoss we noticed that when building relationships
> among Entity Beans, these don't get actually related, instead we
> get "blobs" for references to the other object.
> I assume we must be doing something wrong,
> what could it be ?
> Thank you

Nope, all is correct. JAWS (the JBoss CMP manager) stores the handles to
the entities. This is what you are seeing as blobs. But don't encapsule
(references to) entities into lists. If you do, JAWS till not detect
that there are entities stored inside and will store the list as it is.
This means it stores the proxies instead of the handles. The proxies
won't function after a server restart, handles will.

So everything you are seeing is the way it is meant to be right now.
Just be careful about the implications.

Cheers,
Tobias

_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to