Re: [akka-user] system.actorSelection not working when untrusted mode is turned on

2015-03-09 Thread James Brems
Hi Patrik! That means that I have to add the actors which are sending me messages with ActorSelection to the trusted actor path, right? But if I add them then those could also send me PoisonPills - right? Is there a way to explicitly allow ActorSelection and still block the PoisonPill?

[akka-user] system.actorSelection not working when untrusted mode is turned on

2015-03-06 Thread James Brems
but I don't want to use it. Seems as if there was already a similar ticket in the past (https://www.assembla.com/spaces/akka/tickets/3665-make-actorselection-working-when-using-untrusted-mode#/activity/). Looks as if the problem still exists or exists again. Regards James Brems -- Read

Re: [akka-user] Empty Snapshot files causes EOFException

2014-05-22 Thread James Brems
Hi Björn, today I found out that the root cause seems to be the length of the fully qualified class name of the snapshot class. If the length (pacakge+class name) exceeds 60 characters an EOFException is thrown instead of calling fromBinary. Here's my reference.conf: akka { actor {

Re: [akka-user] Empty Snapshot files causes EOFException

2014-05-20 Thread James Brems
Hi, I have a similar problem. I am using a custom serializer for serializing a snapshot. (extended from akka.serialization.Serializer): akka { actor { serializers { customSerializer = com.handler.util.CustomSerializer } serialization-bindings {