0 Replies Latest reply on Sep 20, 2004 6:45 AM by aagmon

    synchronizing access to ejb's methods

      hi all ,
      i have a registerUser(User user) method on a remote ejb interface,
      the servlet acquire the bean's remote interface by a lookup in the servlet Init()

      does the calling method from the servlet need to be synchronized ? like:

      synchronize(this){
      bean.registerUser(user);

      }