C
Chrisi321
Gast
Kann mir jamand erklären, wie man RMI Server und Clients in Eclipse startet?
import java.rmi.registry.LocateRegistry;
import java.rmi.registry.Registry;
...
Registry reg = LocateRegistry.createRegistry(Registry.REGISTRY_PORT); // Port 1099
was für eine flut von informationen :lol:Chrisi321 hat gesagt.:Das funktioniert bei mir nicht.
Chrisi321 hat gesagt.:Das funktioniert bei mir nicht.
import java.rmi.registry.LocateRegistry;
import java.rmi.registry.Registry;
public class client {
public static void main(String[] args) throws Exception
{
Registry registry = LocateRegistry.getRegistry("127.0.0.1");
String[] services = registry.list();
for(int i=0; i<services.length; i++)
System.out.println("Service gefunden: " + services[i]);
serverinfo stub = (serverinfo)registry.lookup("ServerInfo");
System.out.println("Server IP: " + stub.getServerIp());
System.out.println("Server Name: " + stub.getServerName());
}
}
Registry reg = LocateRegistry.createRegistry(Registry.REGISTRY_PORT); // Port 1099