Hi Troy, First of all, take a look at this section that describes how addressing works: http://doc.akka.io/docs/akka/2.3.3/general/addressing.html
> apnsService works fine, but if i did wrote the same code, using path > "user/stream-service" then of course it wouldn't work because context is > looking only inside of its actor system. > That is because the path you provide does not contain the full host information, which might look like something "akka.tcp://othersystem@otherhost:2600/user/stream-service". Without protocol+host information the path is treated as a local one. (Also, don't forget to properly configure your system for remoting: http://doc.akka.io/docs/akka/2.3.3/scala/remoting.html#Preparing_your_ActorSystem_for_Remoting ) -Endre > > Please help! > > Thanks! > > -- > >>>>>>>>>> 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. > -- Akka Team Typesafe - The software stack for applications that scale Blog: letitcrash.com Twitter: @akkateam -- >>>>>>>>>> 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.
