我已经制作了2个Akka.NET解决方案,希望在一个简单的hello world示例中测试Remoting,但是,在进行通信尝试时,我不断获得Disassociated异常。我有理由相信这是因为共享类Greet应该是两个系统都应该理解的消息。不幸的是,他们没有。我怎样才能解决这个问题?
这是“服务器”应用程序的代码:
namespace Shared
{
public class Greet
{
public string Who { get; set; }
public Greet(string who)
{
Who = who;
}
}
}
namespace AkkaTest
{
using Shared;
class GreeterActor : ReceiveActor
{
public GreeterActor()
{
Receive<Greet>(x => Console.WriteLine("Hello {0}", x.Who));
}
}
class Program
{
static void Main(string[] args)
{
var config = ConfigurationFactory.ParseString(@"
akka {
actor.provider = ""Akka.Remote.RemoteActorRefProvider, Akka.Remote""
remote {
helios.tcp {
port = 9099
hostname = 127.0.0.1
}
}
}
");
using (ActorSystem system = ActorSystem.Create("MyServer", config))
{
system.ActorOf<GreeterActor>("greeter");
Console.ReadLine();
system.Shutdown();
}
}
}
}
以下是客户端的代码:
namespace Shared
{
public class Greet
{
public string Who { get; set; }
public Greet(string who)
{
Who = who;
}
}
}
namespace AkkaTest
{
using Shared;
class Program
{
static void Main(string[] args)
{
var config = ConfigurationFactory.ParseString(@"
akka {
actor.provider = ""Akka.Remote.RemoteActorRefProvider, Akka.Remote""
remote {
helios.tcp {
port = 9090
hostname = 127.0.0.1
}
}
}
");
using (var system = ActorSystem.Create("MyClient", config))
{
//get a reference to the remote actor
var greeter = system
.ActorSelection("akka.tcp://MyServer@127.0.0.1:9099/user/greeter");
//send a message to the remote actor
greeter.Tell(new Greet("Roger"));
Console.ReadLine();
}
}
}
}
编辑:将客户端和服务器放在同一个解决方案中但不同的项目中,并且共享项目中的GreetingActor和Greet可以解决问题。但是,我希望有完全独立的解决方案。
答案 0 :(得分:2)
如果您在双方都使用Greet
消息,则需要提供一些方法在它们之间共享此消息架构。通常这是作为在其他项目或解决方案之间共享的单独项目完成的。
虽然默认的Akka.NET序列化程序使用完全限定的类型名称和程序集来序列化/反序列化消息,但它也是版本容忍的 - 您可以修改消息架构并逐个节点逐步更新它的程序集。
其他选项是使用自定义序列化程序。这样您就可以自己确定如何在两端序列化/反序列化消息。您可以阅读有关此主题的更多信息here。