Luego de mucho trabajar hemos hallado la respuesta de esta traba que agunos lectores de esta web tienen. Si quieres compartir algún dato no dejes de compartir tu comentario.
Ejemplo 1: servidor de cliente de ejemplo java rmi
packagecom.mkyong.rmiinterface;importjava.rmi.Remote;importjava.rmi.RemoteException;publicinterfaceRMIInterfaceextendsRemotepublicStringhelloTo(String name)throwsRemoteException;
Ejemplo 2: servidor de cliente de ejemplo java rmi
packagecom.mkyong.rmiserver;importjava.rmi.Naming;importjava.rmi.RemoteException;importjava.rmi.server.UnicastRemoteObject;importcom.mkyong.rmiinterface.RMIInterface;publicclassServerOperationextendsUnicastRemoteObjectimplementsRMIInterfaceprivatestaticfinallong serialVersionUID =1L;protectedServerOperation()throwsRemoteExceptionsuper();@OverridepublicStringhelloTo(String name)throwsRemoteExceptionSystem.err.println(name +" is trying to contact!");return"Server says hello to "+ name;publicstaticvoidmain(String[] args)tryNaming.rebind("//localhost/MyServer",newServerOperation());System.err.println("Server ready");catch(Exception e)System.err.println("Server exception: "+ e.toString());
e.printStackTrace();
Comentarios y valoraciones
Recuerda que puedes recomendar esta sección si te fue útil.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)