Questions tagged [agents-jade]

JADE - Java Agent Development framework

JADE is a software framework fully implemented in Java, that simplifies the implementation of multi-agent systems through a middle-ware that complies with the FIPA specifications.

JADE provides:

  • An environment where JADE agents are executed;
  • Class Libraries to create agents using heritage and redefinition of behaviors;
  • A graphical toolkit to monitor and manage the platform of agents.

Official website: http://jade.tilab.com/

Online documentation: http://jade.tilab.com/documentation/tutorials-guides/

Latest Version: 4.5 (released: 08/06/2017)

279 questions
3
votes
1 answer

Connecting JADE with WAMP

Hi Java Agent DEvelopment Framework developers! I want to use WAMP with JADE, can I do that, simple because I am well averse with WAMP. Or does JADE recommend only Java related technologies to be interfaced? Thanks for the answer.
Purushottam
  • 624
  • 1
  • 8
  • 18
3
votes
1 answer

Merge or update persistence objects

I've got a hibernate interfaced mysql database with a load of different types of objects, some of which are periodically retrieved and altered by other pieces of code, which are operating in JADE agents. Because of the way the objects are retrieved…
nowaycomputer
  • 225
  • 2
  • 3
  • 10
3
votes
3 answers

Java: PDF converter works in Mac but in Windows, produce empty PDF file

I need a little help here with my PDF converter program. So, I'm doing this mobile agent PDF converter using JADE framework. But, the problem that I am facing is more related to the way I convert a text file into PDF, send it across network as…
hsoetikno
  • 123
  • 1
  • 1
  • 3
3
votes
1 answer

JADE agents - Exception message: Dispatcher error - Caused by: DispatcherException in remote site. No skeleton for object-id

I'm attempting setup 2 agents(DFSearchAgent) and another agent that registers a service by type (DFRegisterAgent). However, I cannot launch "peripheral container" or an extra container that hosts a 2nd agent. Assumptions: Both containers are on the…
cyber101
  • 2,822
  • 14
  • 50
  • 93
3
votes
1 answer

A multi-agent system that uses Producer-Consumer pattern?

I am trying to implement a Producer-Consumer pattern that uses multi-agents as workers instead of multi-threads. As I understand, a typical multi-threaded implementation uses a BlockingQueue where one Producer thread puts information on the Queue…
user8751092
3
votes
1 answer

jade error agent a1 died without being properly terminated. error state 2

i am new to jade , i want to setup a auctioneer agent that give time and count of items and then ... but i get this error jade error agent a1 died without being properly terminated. error state 2 my codes: int…
3
votes
2 answers

Send parameters in ACLMessage

I send a message from one agent to another msg.setContent("price: 30, count: 1"); After that I need to manually parse it. Is there more convenient way to transfer parameters without converting to string? For example, send some container..
Артур Гудиев
  • 1,004
  • 2
  • 10
  • 26
3
votes
1 answer

Jade Cannot create agent MyAgent

I am new to JADE environment and I am trying to run the agent via terminal and Eclipse on MAC OS. But it throws me below exception from both Logs $ java jade.Boot -container -agents MyAgent:examples.hello.HelloWorldAgent Aug 18, 2016 10:24:15 PM…
Graduate
  • 119
  • 3
  • 8
3
votes
1 answer

Send objects between agents

I have two jade agents and i want to send an object from one agent to the other, i used setContentObject() and getContentObject() methods, it worked fine the second agent receives the object, but i can't seem to find a way to get the object's…
Mina
  • 193
  • 1
  • 5
  • 16
3
votes
2 answers

Specifying the agent name when starting a JadeGateway Agent

I am trying to do a jade Gateway prog. All is working fine. Except that now i need to have a way of specifying the local name of the Gateway Agent. Can anyone please help me on this.
3
votes
0 answers

Agent servlet communication

I just started to use Jade and I would like to know if it is possible to send a message from an agent to a servlet using JadeGateway, I have already managed to send a message from a servlet to an agent, but I want that agent to send back a reply and…
Mina
  • 193
  • 1
  • 5
  • 16
3
votes
1 answer

JADE (Java) - Changing Agent Container

Is there a way to reassign agents to a different container or will I have to create a new container and then create all new instances of the agents within the new container? I have done a lot of searching and can't seem to find anything on container…
Chad S
  • 45
  • 1
  • 5
3
votes
2 answers

Jade Two Agents communication

I want to design two agents Agent1 send two message values in different times to Agent2. Agent2 then implement an action depending on the received values. Using Jade, I tried to write the following : -Agent1 with two addBehaviour(new…
Nada Ghanem
  • 451
  • 6
  • 16
3
votes
2 answers

JADE in Eclipse ICP exception

I want to start writing JADE in Eclipse. To do so I added the following script provided by Java Agent Development Framework - Eclipse and Maven integration. I made an agent: public class Test extends Agent { private static final long…
Milan
  • 929
  • 2
  • 13
  • 25
3
votes
1 answer

Unit testing Jade

What techniques and design strategies have people used to aid in unit testing Jade applications? In particular, how do people typically go about testing Behaviours - which are tightly coupled to the Agent instance and the Jade environment? I'm aware…
Martin
  • 7,089
  • 3
  • 28
  • 43
1
2
3
18 19