java - Eclipse 中的 JADE ICP 异常

标签 java agents-jade

我想开始在 Eclipse 中编写 JADE。为此,我添加了 Java Agent Development Framework - Eclipse and Maven integration 提供的以下脚本.

我做了一个代理:

public class Test extends Agent {

    private static final long serialVersionUID = 1L;

    String nickname = "Peter";
    AID id = new AID(nickname, AID.ISLOCALNAME);


    protected void setup() {
        // Printout a welcome message
        System.out.println("Hello! Buyer-agent " +getAID().getName()+ " is ready.");
    }
}

当我使用以下参数运行我的 JadeBootThread.run() 时:

private final String ACTOR_NAMES_args = "buyer:test.Test";

private final String GUI_args = "-gui";

我收到以下错误:

Jan 29, 2015 5:33:33 PM jade.core.Runtime beginContainer
INFO: ----------------------------------
    This is JADE 4.3.3 - revision 6726 of 2014/12/09 09:33:02
    downloaded in Open Source, under LGPL restrictions,
    at http://jade.tilab.com/
----------------------------------------
Jan 29, 2015 5:33:33 PM jade.imtp.leap.CommandDispatcher addICP
WARNING: Error adding ICP jade.imtp.leap.JICP.JICPPeer@71e070c0[Cannot bind server socket to localhost port 1099].
Jan 29, 2015 5:33:33 PM jade.core.AgentContainerImpl joinPlatform
SEVERE: Communication failure while joining agent platform: No ICP active
jade.core.IMTPException: No ICP active
	at jade.imtp.leap.LEAPIMTPManager.initialize(LEAPIMTPManager.java:138)
	at jade.core.AgentContainerImpl.init(AgentContainerImpl.java:319)
	at jade.core.AgentContainerImpl.joinPlatform(AgentContainerImpl.java:492)
	at jade.core.Runtime.createMainContainer(Runtime.java:166)
	at jade.Boot.main(Boot.java:89)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
	at java.lang.reflect.Method.invoke(Unknown Source)
	at main.JadeBootThread.run(JadeBootThread.java:33)
	at main.Main.main(Main.java:7)
Jan 29, 2015 5:33:33 PM jade.core.Runtime$1 run
INFO: JADE is closing down now.

我试着弄乱 private final String GUI_args = "-gui";参数并添加了“-local-port 1111”但这给出了完全相同的错误(错误中的端口也保持为 1099)

最佳答案

在 eclipse 中将代码作为参数运行时添加以下内容

-gui -host 192.168.2.9 -port 12344 
agentttt:com.DAO.test_agents.PingAgent

然后将主类命名为

jade.Boot

然后只需运行添加了所有外部 jar 文件的代码,我想这不会产生任何 ICP 错误。

关于java - Eclipse 中的 JADE ICP 异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28211379/

相关文章:

java - 自动静音 Android N 及更高版本

java - 合并或更新持久化对象

java - 从本地代码访问 JADE 代理

jsp - 如何使用JadeGateway在jade平台和外部应用程序之间进行通信

java - JADE_mulli代理系统

java - EclipseLink 与 Spring - 无法持久化到 Db

java - JSoup 解析 Webview 的 HTML

java - 将多数组转换为单数组(java)

java - 动态改变imageView中的位图,android