Guest User

Untitled

a guest
Feb 21st, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. final Registry reg = LocateRegistry.createRegistry(Registry.REGISTRY_PORT);
  2.  
  3. final Remote serviceToExport = new PhoneManagerImpl();
  4.  
  5. final Remote service = UnicastRemoteObject.exportObject(serviceToExport, 0);
  6.  
  7. reg.bind("PhoneManager", service);
Add Comment
Please, Sign In to add comment