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

How to access Jade Main Container via internet?

I am working on an Agent based application and i want to access agents running on a container in a machine. I am using jadeGateWay to connect to Main container. It is working in localhost but when i run the jadeGateWay on a server it doesn't connect…
Inco Mob
  • 594
  • 2
  • 7
  • 20
3
votes
1 answer

How to start JADE Gui within another Gui?

How to start JADE Gui within another Gui? Let's say I have a button on my Gui. After hitting that button the JADE Gui will started. Is this possible? If yes, how? Thanks in advance. Regards
user160446
  • 311
  • 2
  • 6
3
votes
3 answers

Jade: java.lang.OutOfMemoryError: Java Heap Space

I've been using jade (Java Agent Development Framework) for creating a network based messaging system. So far, I notice that jade was running without issues but one fine day, I get this message, A JVM Heap Space error! After investigating, I find…
curlyreggie
  • 1,530
  • 4
  • 21
  • 31
2
votes
1 answer

Getting a list of all JADE containers

I want to get a list of all containers in the current platform. This question is similar, but the answer is obsolete and the method is by querying to the AMS agent. Is there any simpler way out than to communicate via ACL messages which I think is…
Purushottam
  • 624
  • 1
  • 8
  • 18
2
votes
1 answer

Create a Mobile Agent using Jade for Android

I first heard of JADE around 4 months back. Recently, I stumbled upon a link that confirmed the release of JADE for Android. I have gone through the various JADE tutorials for creating agents. However, I don't know how to go about creating a mobile…
Parth Doshi
  • 4,200
  • 15
  • 79
  • 129
2
votes
1 answer

How to interface JADE with any other Front End?

I am working on a project which uses JADE over a network. Visit http://jade.tilab.com for more details. However, I want the JADE to interface with some normal GUI, say HTML. My aime is that I want a Computer which doesn't have JADE installed, to be…
Purushottam
  • 624
  • 1
  • 8
  • 18
2
votes
2 answers

Which framework to use for Mobile Agents?

After learning that JADE does not support Mobile Agent concept but supports only traditional Agent Framework, I was wondering which Framework or technology still uses Mobile Agent Concepts and I can build an application using it. IBM's Aglets could…
Purushottam
  • 624
  • 1
  • 8
  • 18
2
votes
1 answer

How to use JADE to create an agent to search webservices

I first heard of JADE many months back but never got the opportunity to try it. I did a simple google search to find out the way JADE is being used. I got this and since then I really wanted to know much more about JADE. At present, I have been…
Parth Doshi
  • 4,200
  • 15
  • 79
  • 129
2
votes
1 answer

JADE works below or over HTTP?

I was working on Java Agent Development Framework, which is the language of creating mobile agents. I was wondering that the code that I will write in JADE, will work over HTTP or below the HTTP? As I am opaque to the inside working and execution of…
Purushottam
  • 624
  • 1
  • 8
  • 18
2
votes
2 answers

Jade DispatcherException problem when using remote Containers

I have two virtual machines in a private cloud, and I want to execute Jade both of them. They can access each other without problems. I started in one of them the Main Container, and in the other a Container which would connect to the main. However,…
2
votes
0 answers

when i try to run Hello Agent for second time this Error happen

First time that i run it, it works but second time it shows jade.core.Runtime. if i close the eclipse and open it, it run okay but second time it happens again. import jade.core.Agent; public class Asadi extends Agent { @Override protected void…
Farshad
  • 35
  • 1
  • 6
2
votes
1 answer

How can I send an ACLMessage from a JADE Platform running on a windows to another JADE Platform running on a Raspberry pi (Raspbian)?

I am trying to have a Multi-Agent System on a distributed network (a Windows computer and a Raspberry pi with Raspbian OS installed on). I start my jade platform on windows using this command: java mylibrary jade.Boot -gui -platfrom-id Platform1…
amin rahman
  • 39
  • 10
2
votes
0 answers

JADE IPMS: Agent migration fails

I have been trying to perform inter-plaform agent migration using Jade 4.5 along with IPMS add-on. The arguments I pass to run the program are: -container -agents mob:pkg.MobileAgent -services…
2
votes
2 answers

Confirmation msg between Agents

I have a Sender that reads from a file and sends each line to a Receiver agent. Typically, I want my Receiver agent to send a confirmation for every line received line and the Sender Agent is blocked (or waits) until that confirmation is received.…
user8751092
2
votes
0 answers

JADE Raspberry to Raspberry Communication

In short I try to establisch a discussion between 2 agents which are in 2 differents raspberry Pi using ACLMessage. To connect raspberry pi together I set there Ip to static and now I have trouble to send a message from an agent to other. Firstly I…
Rushground
  • 21
  • 2
1 2
3
18 19