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
0
votes
1 answer

Maximum memory usage in a 32 bit guest system

I'm running into a little problem lately: I'm developing a multi-agent simulation in Java using JADE for university. Soon, an early version is supposed to be presented to some people in the economy because they are interested in the research we are…
0
votes
1 answer

Jade Android standalone execution

I want to use Jade as standalone in Android environment. Of course I'm using JadeLeapAndroid 4.3.3 I found these posts which was very helpful, http://permalink.gmane.org/gmane.comp.java.jade.devel/12271…
Prunus Nira
  • 107
  • 1
  • 1
  • 11
0
votes
1 answer

how to message another agent at remote host using jade?

I am a novice to JADE . I want to message an agent on remote host from another agent,but other than starting an agent platform from cmd i cannot figure out anything. Hope to get this issue resolved. Thanks in advance.
0
votes
1 answer

why can't i get the agent from behaviour instance?

i am working with JADE in Eclipse. i tried to capture the action method for each executed behaviour using an aspect. it works so well, i even got the instance of the executed behaviour. however this instance doesn't allow me to get the Agent which…
steevn
  • 242
  • 2
  • 8
0
votes
1 answer

how capture the main method trace from jade using AspectJ?

i am using Jade in eclipse IDE, i want to capture the main method from jade, because the main method is the starting point for every application, i want to test if it is also right with the running of the JADE middleware (ie: i want to check if the…
steevn
  • 242
  • 2
  • 8
0
votes
2 answers

Multiple agents thread synchronization

I have a java code, that should be read by multiple agents, which were created by the JADE platform. Each agent has his own thread of execution. Therefore, all my agents run my java code concurrently, but not simultaneously. I've tried using the…
0
votes
0 answers

why can't I capture registration to a DF with aspectJ?

I am working in Eclipse, and I am trying to capture which agent (JADE agents) has been registered in the Directory Facilitator by using Aspect j. I tried this code, but it seems that it is showing some errors: pointcut myreg() : call(public *…
steevn
  • 242
  • 2
  • 8
0
votes
1 answer

Using Non JADE program for creating an agent on an already running jade platform and then migrating that agent to another platform

Here is my code where manager class(non jade program) creates an agent successfully in an already running JADE platform but doesn't migrate that created agent to another platform. Manager.java public class Manager { public static void…
salil vishnu Kapur
  • 660
  • 1
  • 6
  • 29
0
votes
2 answers

How to send an ACLmessage in public method in Agent class

I'm quite new to Jade and multi agent systems. I'm trying to build a system with several agents who will have to communicate by sending ACLMessages. I've read documentation about the structure of how to build an Agent Class. Here is my code:…
Nicola
  • 1
  • 1
0
votes
1 answer

Mobility in JADE middleware

I am working with JADE ( Java Agent Development framework), and I am trying to write a behavior which makes an agent moving from container to another. I tried this command: public void action() { ACLMessage msg = myAgent.receive(template); if…
steevn
  • 242
  • 2
  • 8
0
votes
2 answers

How to access a level 2 parent (grandparent) behaviour in JADE?

I am trying to access a grandparent behaviour and its Datastore in JADE. I have a level 3 nested behaviour in the Supervisor agent, as shown in the figure below. The hierachy is…
Just_Alex
  • 518
  • 1
  • 4
  • 16
0
votes
2 answers

How to read text file in JADE

I am stuck in putting the Jave text file read code in JADE GUI. Please assist.I.e. Show using a simple code. I am new to Jade but experienced in Java coding.
tmutoru
  • 1
  • 1
0
votes
1 answer

JADE export to Executable jar from Eclipse

I need to export my project to a executable jar file and I have been working in Eclipse. My main class is currently Jade.Boot, From there a run the arguments -agents starter:Agents.initialiser I am having difficulty running the Jar after creating…
0
votes
1 answer

JADE AchieveREInitiator not working properly. prepareRequests is not called

I am currently using JADE to build an agent-based platform to solve scheduling problems. The case is that, a defined behaviour extends AchieveREInitiator doesn't work properly in some specific state of the programme. This is the behaviour…
0
votes
1 answer

Are mobile agents an appropriate implementation mechanism for Distributed system?

Mobile agents are self Autonomous: i.e. Agent itself decides when and where to migrate next. Applying this definition to a distributed shared memory systems where client's requests are cpu-intensive tasks, can we prefer mobile agents that can select…