1
Hello could help me with this, I’m starting now in JADE, and I’m trying to start two agents, however gives the following exception:
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:320)
at jade.core.AgentContainerImpl.joinPlatform(AgentContainerImpl.java:494)
at jade.core.Runtime.createMainContainer(Runtime.java:159)
at jade.Boot.main(Boot.java:89)
The execution setting is as follows:
Main Class:
jade.Boot
Arguments:
-gui -agents vendedor: examples.bookTrading.BookSellerAgent; comprador: examples.bookTrading.BookBuyerAgent
The jade is spinning?
java -cp lib/jade.jar jade.Boot -gui -local-host 127.0.0.1
– Anthony Accioly
I do not know how to inform, as I said I am beginner and I do not know much about it... if you can inform me how to verify it I would very much appreciate.
– Nayron Morais
Run the command line above the jade folder (further information: http://jade.tilab.com/doc/tutorials/JADEAdmin/startJade.html). If it works try the same with your agent (note the
-local-host
that you didn’t put in your arguments)– Anthony Accioly