Hi All, I have an RMI Server that allows clients to retrieve,edit and remove records from a database. How do I make sure that not more than one client can edit an order at the same time? So far the method below does all my database manipulation, but I don't think this is safe. public class MyImplementation extends UnicastRemoteObject implements MyRemoteInterface ...