I use JADE to create an agent system. I have created two program: a server and a client.
Server:
Runtime runtime = Runtime.instance(true);
Profile profile = new ProfileImpl();
jade.wrapper.AgentContainer agentcontainer =
runtime.createMainContainer(profile);
agentcontainer.createNewAgent(
"server", "MASServer.CenterAgent", new object[] { this }).start();
Server's behaviour:
ACLMessage AclAnswer = new ACLMessage(ACLMessage.INFORM);
AclAnswer.setContent("From server:helllo");
AID recei = new AID("client", AID.ISLOCALNAME);
AclAnswer.addReceiver(recei);
agent.send(AclAnswer);
Client:
Profile profile = new ProfileImpl(false);
profile.setParameter(ProfileImpl.MAIN_HOST, "myhostaddress");
Runtime runtime = Runtime.instance();
jade.wrapper.AgentContainer secondaryContainer =
runtime.createAgentContainer(profile);
secondaryContainer.createNewAgent(
"client", "MASClient.CenterAgent", new object[] { this }).start();
Client's behaviour:
ACLMessage AclAnswer = new ACLMessage(ACLMessage.INFORM);
AclAnswer.setContent("From client:helllo");
AID recei = new AID("server", AID.ISLOCALNAME);
AclAnswer.addReceiver(recei);
agent.send(AclAnswer);
When the server and the client programs run on the same computer, it works fine.
When the server runs on computer A and the client runs on computer B, the client can send an ACLMessage to the server, but the server can't send an ACLMessage to the client. How can I fix this problem?