I've got a similar issue. For some odd reason, if I use a detached object and pass it back to the server to delete the object, it works fine. If I just pass the id of the object and have the server do a lookup then remove on the object, I get the same errors you are describing.
---------------------------------- Works --------------------- Detached Client Company company = proxy.findMyCompany(); proxy.delete(company) Server persistenceManager.remove(company); --------------------------------------------- Doesn't work -------------------------------------- Detached Client proxy.deleteCompany(companyId); Server Company company = persistenceManager.find(compan); persistenceManager.remove(company); View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3924032#3924032 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3924032 ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642 _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
