I tried to use remote access between different versions of akka. I have an application running akka 2.2.1 on scala 2.10.2, and an application running akka 2.0.5 on scala 2.9.2. The second application uses a library that is not available for scala 2.10.2, so I canβt just update the application, none other. I get an error message saying that the message was not delivered.
To test it, I created the prefix 2.2.1 aka, sending String to actor 2.05 aka, which prints it to the console. To avoid the missing sender, application 2.2.1 sends a message to the actor, who forwards it to the actor in a different version.
Are there any known compatibility issues between the two versions?
I already took care of the conf files, changed net and stuff, so this should only be a matter of versions. Dummy applications work great if they have the same version of akka.
I can provide error logs if you need them.
pazqo source share