Hi, been having great luck with Akka so far but I can't figure this one out.
I have a JVM app with two actor systems, let's call them AS and BS. AS is created first. I also have a remote actor system called RS in another JVM. AS sending messages to RS is no problem and RS can reply using the sender() However, when BS sends a message to RS, the message is sent ok but, when RS receives it, the sender() returns an ActorRef pointing at AS so the reply never arrives at BS. So, if an AS actor's path is akka://[email protected]:64001/user/a and a BS actor's path is akka://[email protected]:64002/user/b when BS sends a message to RS, RS thinks the sender is akka://[email protected]:64001/user/b. It mixes the two paths together. I've checked that the actor in the BS system has the correct context, system and self before sending to RS. I can't see a way to get RS to respond to BS correctly... Curtis -- >>>>>>>>>> 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.
