Hi Padma, did you mean you want to send message from node1 to node2?
You can always use ActorSelection <http://doc.akka.io/docs/akka/2.3.7/general/addressing.html#Looking_up_Actors_by_Concrete_Path> to lookup actors on any node if you know the full path (including the hostname) to the actor. Otherwise you can use Distributed Pub Sub <http://doc.akka.io/docs/akka/2.3.7/contrib/distributed-pub-sub.html> to send messages to actors in a cluster without knowing where these actors are actually running on. On Tue, Dec 16, 2014 at 9:58 AM, padma priya chitturi < [email protected]> wrote: > > > Hi, > > I have 2 node cluster setup and I am running two actors on the 2 nodes. > Now i have a stanadlone program on node1 which should actually send the > message to actor running on node1. > How to do this ? > > Regards, > Padma Ch > > -- > >>>>>>>>>> Read the docs: http://akka.io/docs/ > >>>>>>>>>> Check the FAQ: > http://doc.akka.io/docs/akka/current/additional/faq.html > >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user > --- > You received this message because you are subscribed to the Google Groups > "Akka User List" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/akka-user. > For more options, visit https://groups.google.com/d/optout. > -- Martynas Mickevičius Typesafe <http://typesafe.com/> – Reactive <http://www.reactivemanifesto.org/> Apps on the JVM -- >>>>>>>>>> Read the docs: http://akka.io/docs/ >>>>>>>>>> Check the FAQ: >>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user --- You received this message because you are subscribed to the Google Groups "Akka User List" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/akka-user. For more options, visit https://groups.google.com/d/optout.
