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
12
votes
2 answers

What is in the future for JADE?

I'm starting my thesis on Agents and Smart Objects interaction and I'd like to know what's in the future for JADE, the Java Agent framework. I find the whole concept of agents, programmable behaviors, federations and their help in solving Artificial…
11
votes
1 answer

Stop a JADE system (Java agents)

I run JADE embedded in a Java program, i.e. not with java jade.Boot .... Now I wanted to stop the JADE system, but I have found no nice way to do that. I can exit the whole program using System.exit(), but that's not what I want to do. I tried…
daniel kullmann
  • 12,359
  • 6
  • 48
  • 63
9
votes
2 answers

how to get agents on all containers jade?

hi i m working on my theses under jade i use the ams to discover all the jade agents on the main container but when i tried to make some agent containers i failed to search all the containers to get all agents on them please help me fixing my code…
9
votes
3 answers

What is the difference between actors (Akka) and agents (JADE) in distributed systems?

Is there any substantial difference in the concepts of Akka actors and Jade agents ? From what I know both implement system distribution by creating independent entities (with chunks of system logic) which can communicate by sending messages…
atok
  • 5,513
  • 1
  • 29
  • 56
9
votes
1 answer

Is it reasonable to view highly autonomous actors as agents?

Coming from an academic background in mutli-agent systems (developed in Java using JADE) I have only been peripherally aware of the Actor concurrency paradigm. Now that I've started exploring Scala I couldn't help but be struck by the similarities…
DuncanACoulter
  • 2,027
  • 2
  • 24
  • 37
7
votes
5 answers

Launching Jade In Ubuntu10.04 Linux

When I run the below command in terminal of ubuntu linux and also I set the ClassPath properly but I wasn't successful. java jade.Boot -gui I got following errors in terminal window: 15 Jun, 2011 6:33:10 PM jade.core.Runtime beginContainer INFO:…
7
votes
2 answers

SWT issue with syncExec()

This is my first question on StackOverflow (sorry about my english). I'll try to explain the problem as well I can. I have a swt application with a foreground jade application in which I have a progress bar to inform the duration of the application.…
Michel
  • 661
  • 2
  • 7
  • 17
6
votes
6 answers

JADE cannot find agent

I'm new to JADE and am having a bit of trouble loading agents. I created a new IntelliJ project and added "jade.jar" and "commons-codec-1.3.jar" (I'm using JADE 4.1.1) in "Dependencies" and ticked the export boxes (I've also tried without them…
Dan
  • 223
  • 3
  • 6
5
votes
1 answer

How do intelligent agents accept an organizational structure and shape their whole paradigm?

I want to change the whole structure of a multi agent system an introduction to multi agent organizational paradigms- by Mr. Horling, I mean I want to measure a multi agent system's performance and under some circumstances I need to ask the multi…
5
votes
1 answer

How to register an agent from different platform to a different platform located remotely in JADE?

I have two pc's on which i am running agents.Both are connected by LAN(or wifi). I want these agents to communicate. One of the ways i found is by giving agent's full addresses.Below is the code snippet. AID a = new…
Anand
  • 1,315
  • 1
  • 12
  • 19
5
votes
2 answers

How to create containers and add agents into it in JADE?

I'm just a beginner at JADE. I would like to know how to create containers other than the main container and add multiple agents into it. A full code of creation would be appreciated. Thanks!
user3382935
  • 51
  • 1
  • 3
5
votes
4 answers

What are Groovy/Grails/Hibernate/JBoss/Jade in very simple terms?

I am new to Java. Its only been six months but I do understand Java. While reading about it sometimes, I come across these terms - Groovy, Grails, Hibernate, JBoss, Jade and many more. I know I can read all about them individually. But can somebody…
Lazer
  • 79,569
  • 109
  • 264
  • 349
4
votes
1 answer

Jade Agent Containers

Can anyone tell me how to find available agent containers through java code? I am using the JADE agent framework and I have figured out how to create new containers but not find existing containers (so that agents can be deployed in them).
beyerss
  • 1,172
  • 3
  • 19
  • 37
4
votes
2 answers

Jade Agent: How does the setup() method is called?

I am very new to Jade Agent concept. I have been searching around the internet about this question but there is very less material available on this topic. So I decided to ask a question here. In java when we run any class by entering java classname…
Dhrumil Patel
  • 764
  • 6
  • 17
3
votes
2 answers

Launch Jade agents using swing

i have coded a database update software which allows me to deploy a jade mobile agent in order to update the database. In order for it to run, i need to launch it using the AMS gui. I wanted to be able to launch it from gui. I have now done a…
1
2 3
18 19