> IF there won't be anyone answering such a simple question, I take it ...

Or maybe people have other things to do?

Some comments on your test :-
1. You flagrantly access public fields, ignoring the fact that JDO
would never know about such access hence cannot load fields. Use
getters, or make annotate the calling class with @PersistenceAware (as
per the JDO spec)

2. You pass objects between PMs ignoring the fact that unless you have
set the persistence property "datanucleus.retainValues" (or
"javax.jdo.option.RetainValues") any non-PK fields will NOT have their
field values present (since the object is now in HOLLOW state).

A review of the JDO spec and in particular object lifecycle would make
sense.


Using v2 of the datanucleus-appengine plugin (the only version I have
any interest in), such an operation works fine.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.

Reply via email to