I'm trying to insert two entities from different classes in the same request, each inside their own transaction.
Everything works just fine, except that the serialized Set that exist in the first insert doesn't persist. I've verified that if I remove the second insert, the Set does persist, so it's not a problem with my classes not being serializable. Also, a later request is able to write to the serialized Set. Any ideas? Here's my serialized map definition: @Persistent(serialized = "true") private Set<MySerializable> mySerializables; And here's how I'm doing the two inserts: // get persistence manager // open trans // create EntityOne obj, set the serialized property // insert EntityOne obj // commit trans // open trans // create and insert EntityTwo obj // commit trans // close persistence manager -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appeng...@googlegroups.com. To unsubscribe from this group, send email to google-appengine+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.