attempt to create saveOrUpdate event with null entity attempt to create saveOrUpdate event with null entity spring spring

attempt to create saveOrUpdate event with null entity


null entity could mean that saveOrUpdate() is actually receiving null as an argument, ie:

session.saveOrUpdate(null);

If you're using serialization to pass to object to a remote location (you mentioned RPC), perhaps you should check if serialization is working correctly. Something tells me that failing to serialize might end up with a null reference being passed.