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

Java Agent Framework the best way to implement mandatory message delivering

Im using JADE agents in my architecture. They are expected to be used in complicated long dialog between each other. I need to implement a mandatory delivering for this messages. Something like send message the same or change some parameter if it…
Sedos
  • 386
  • 2
  • 14
0
votes
1 answer

Why multiple JADE GUI appear on refreshing JSP page

I want to run JADE middleware GUI from JSP, for that I created a "Dynamic Web Project" and made right click on WebContent folder and select New .. Other ..type JsP file and gave the name e.g. runJADE.jsp. Now add the following details inside…
0
votes
1 answer

JADE and JDBC MySQL connection giving classnotfound exception

protected void setup() { System.out.println("Hello Buyer Agent "+getAID().getName()+" is now ready...."); String url = "jdbc:mysql://localhost/"; String dbName = "testdb"; String driver = "com.mysql.jdbc.Driver"; String…
pabz
  • 534
  • 1
  • 5
  • 15
0
votes
1 answer

JADE Leap Android App unable to receive topic messages

The problem involves using two android handsets that send messages between them using topic messages. They can receive messages from each other fine if they both use send and have each other's AID. But when a send of a Topic Message function is…
Thomas Lann
  • 1,124
  • 5
  • 17
  • 35
0
votes
1 answer

Do Agent systems developed in Jade must be distributed?

I am hoping to build a system where Agents take a search query from a mobile application and search in a semantically stored information and give a result set. I am planning to built the middle ware of the system with jade Agent framework and…
Inco Mob
  • 594
  • 2
  • 7
  • 20
0
votes
2 answers

agent based programming using native programming language

so basically I am interested in building an agent-based simulation of a battleground. There are a lot of frameworks for agent-based models such as JADE, etc.. but due to certain constraint, I can only implement it using only native programming…
0
votes
0 answers

Agent Not Getting Run

I think i am missing something in my project. I need agents to perform specific task that i assign. I am using JADE. Inside the action() i wrote a for loop to display numbers 1 to 10. While running no error is showing and also the loop is not…
Maximin
  • 1,655
  • 1
  • 14
  • 32
0
votes
1 answer

JADE: Scheduling behaviours

I am teaching myself JADE and was wondering whether there is an easy way to schedule behaviours in such a way that one agent behaviour won't be executed until all other agents have previously finished their behaviour cycles? For example, assuming I…
JB2
  • 1,587
  • 2
  • 24
  • 40
0
votes
1 answer

Define a new ObjectSchema in jade

I'm working with jade and have some agents which communicate with each other. I can design new messagetypes like for example a bookinfo (String name, float prize, boolean availible). But I can only create messages with these basic variables like in…
Hans Dampf
  • 67
  • 1
  • 9
0
votes
2 answers

Unable to set background color of checkbox at runtime

There is a class AgentHome which extends JFrame. AgentHome has a JPanel rem_panel. Checkboxes are added dynamically into rem_panel…number of checkboxes depending on the number of entries in the database table from where the text to be displayed by…
user1748910
  • 105
  • 3
  • 5
  • 13
0
votes
1 answer

JADE agents using up heap space too quickly

The issue I am faced with is that when running a set of jade agents solving a simple problem the jvm runs out of heap space within 90s of operation depending on the amount of agents running. The goal of the agents is to balance load and generation…
0
votes
1 answer

lunching jade IPMS inter-plaform agent migration in ubuntu 10.04

I have a trouble with JADE IPMS inter-platform agent migration in Ubuntu 10.04. When I lunch jade with command >java -cp lib/jade.jar;lib/migration.jar jade.Boot -gui -platform-id Platform1 services…
lannv
  • 39
  • 1
  • 4
0
votes
2 answers

How to reformat tr elements with Ember 0.9.8.1?

I'm using Ember to retrieve JSON data from an API to insert into a table. However, my records are shown in a one single tr element, instead of each record shown in separate tr elements. Does anyone know how to set this? I've been looking all over…
Kris Khaira
  • 132
  • 11
0
votes
1 answer

jade.Boot class not found ubuntu10.10

I know this is an old question, but I have spend any hours on this and now in desperation turn to ask for help. The problem: I cant run > java jade.Boot -gui Terminal: xxxx:~/Documents/Active/Studies/MscEngProject/Work/Java$ java -cp…
user1445943
0
votes
1 answer

NoClassDefFoundError in Jade Agents?

I created two agents and it runs well. but when I add Ontology class and registered the ontology I can't create the agents... I got following errors.. Jun 1, 2012 8:56:55 AM jade.core.BaseService init INFO: Service…
Rosh
  • 730
  • 2
  • 12
  • 32
1 2 3
18
19