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)

275 questions
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,155
  • 15
  • 71
  • 123
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
  • 626
  • 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
  • 626
  • 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,155
  • 15
  • 71
  • 123
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
  • 626
  • 1
  • 8
  • 18
2
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
  • 205
  • 2
  • 3
  • 10
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
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…
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.…
U. User
  • 533
  • 4
  • 22
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
2
votes
0 answers

JADE (Java Agent Development Framework): cannot find agent on Intellij

I'm new to JADE. I'm trying to run an Agent on intellij, i already added the jade.jar file to the modules and checked the export option on the module and created a run configuration with the following characteristics: Main Class: jade.Boot Program…
2
votes
1 answer

JADE - Parallel behaviours amongst 2 agents does not work

I was trying to implement parallelism amongst 2 agents, by following the procedure provided here. The output I got (as shown below) is completely different to what is to be expected. The program prints the name of the agent and the current system…
mahesh Rao
  • 313
  • 2
  • 13
2
votes
2 answers

How to set AID for JADE Agent?

I'm just starting with JADE agent based modeling. My hello world example looks like this - public class HelloWorldAgent extends Agent { protected void setup() { System.out.println("Hello World! My AID is "+this.getAID()); } } And I call this…
2
votes
2 answers

Send bytes with Jade ACLMessage in Java

I'm trying to send a byte array with the Jade ACL message. Basically I want to do what this guy does: Decryption Error bad padding But I don't want to convert the cipher into a string but send the bytes directly. There's a function named…
Rick
  • 111
  • 12
2
votes
0 answers

Java JADE: Network connection

I'm a beginner on JADE and I need some help with a problem. I have an application which is a Seller and a Buyer buy books. Actually, the seller will add some books and the buyer could search for one to buy it and this is made by using JADE…
cavaler12345
  • 197
  • 2
  • 13
1 2
3
18 19