public static void startRemoteLookupSystem() {
final ActorSystem system = ActorSystem.create("LookupSystem",
ConfigFactory.load("remotelookup"));
final String path = "akka.tcp://CalculatorSystem@127.0.0.1:2552/user/calculator";
final ActorRef actor = system.actorOf(
Props.create(LookupActor.class, path), "lookupActor");
System.out.println("Started LookupSystem");
final Random r = new Random();
system.scheduler().schedule(Duration.create(1, SECONDS),