Hi, I currently have one project that uses Akka 2.2.3 and actors to do stuff in their own actor system (call it server). I now want to make another application (call it client) that communicates with this application _but_ it uses serialization all over the place (this is a hard requirement). The way I usually would do this is by creating an actor system on my client as well and let it retrieve an actorRef for the actor I am trying to reach on server. For this to be possible, I use actorSelection, something that I can only do within an actor system (or am I wrong here?). This however forces me to create an actor system on the client, but actor systems cannot be serialized so I have an issue.
I was wondering if there is any way for me to obtain an actorRef of my 'client' without setting up an actor system in it? -- >>>>>>>>>> Read the docs: http://akka.io/docs/ >>>>>>>>>> Check the FAQ: http://akka.io/faq/ >>>>>>>>>> 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/groups/opt_out.
