Начал изучать Akka.
Не работает отправка сообщений удаленным системам.
Пример:
ActorSystem s1 = ActorSystem.create("actorSystem1", ConfigFactory.parseString("akka.remote.netty.port=2552"));
ActorSystem s2 = ActorSystem.create("actorSystem2", ConfigFactory.parseString("akka.remote.netty.port=2553"));
ActorRef s1ref = s1.actorOf(new Props(GreetingActor.class), "greeting");
ActorRef s2ref = s2.actorFor("akka://actorSystem1@127.0.0.1:2552/user/greeting");
s1ref.tell(new Greeting("Hello, actorSystem1!"));
s2ref.tell(new Greeting("Hello, from actorSystem2!"));
ЧЯДНТ?