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

How to jar a Jason Application with Jade Infrastructure

I've developed a Multi Agent System application with the Jason agent platform which also uses the Jade agent framework for its infrastructure. The project works fine with Eclipse. However, I want to create a jar file of the project but since it's…
Ali
  • 21
  • 3
2
votes
0 answers

How can I verify that JADE and IPMS are correctly installed

My question is: as mentioned in the title, how I can verify that my JADE and inter-platform mobility service are correctly installed. PS: I use JADE-4.3.3 and ipms-2.0-R1-jade3.7 ( I don't know if they are compatible to each-other)
Nadya Nux
  • 519
  • 1
  • 5
  • 17
2
votes
1 answer

Errors with JADE platform

Good evening, I tried to use the JADE platform (official site -> http://jade.tilab.com/) I followed tutorials that I found on youtube Here's the code import jade.core.Profile; import jade.core.ProfileImpl; import jade.core.Runtime; import…
2
votes
1 answer

Cyclic behaviour not catching incoming message

Here is the context: I'm sending a message from one agent (let's say "senderAgent") to another ("targetAgent") : nothing complicated here, or so it seems. The message propagative type is INFORM. Here is the code for the relevant senderAgent part…
Cécile Fecherolle
  • 1,695
  • 3
  • 15
  • 32
2
votes
4 answers

java.lang.UnsatisfiedLinkError - Native method issue

I am experiencing a problem in Java (Eclipse) regarding the usage of dlls. Until now, I am experiencing the following problem: Uncaught Exception for agent SomeAgent java.lang.UnsatisfiedLinkError:…
Mudkip
  • 373
  • 6
  • 27
2
votes
0 answers

Use JADE lib for multiprocessing

I had a task to develop efficient program for multiply matrices of sizes 1000000x1000000. I was suggested to use JADE library. Can anyone just tell me how to proceed using JADE and multiprocessing of 1-10 machines to multiply the matrice.
2
votes
3 answers

Most suitable database package for use with JADE

I'm using JADE (Java Agent DEvelopment Framework) and need to set up a database back end. Does anyone have any recommendations for which database system would work well with the framework?
Viral Shah
  • 2,888
  • 2
  • 22
  • 25
2
votes
1 answer

building Agents in c#

Is there anything like JADEX or JADE in C# or C++? I am doing a project on agents and so far I can't find anything like JADEX for building BDI agents in C#. Anything in C# that I have found is for doing Agent simulations rather than building agents.
pie154
  • 603
  • 3
  • 10
  • 28
2
votes
3 answers

Convert from String[] to String and again to String[]

In my JADE program, one agent needs to send an ACL message to another agent. For the agent sending the message (agent1) it stores a String[] array of values that it has to send. However, in order to actually send the ACL message the content must…
Force444
  • 3,321
  • 9
  • 39
  • 77
2
votes
1 answer

Call JADE Agent from Java Servlets?

Can any one please tell me how would I call JADE Agent from Java Servlet ? Should I use JADEGatewayAgent ?
user1850112
  • 47
  • 1
  • 7
2
votes
1 answer

JADE-LEAP congurations in Eclipse?

I have 2 questions regarding JADE LEAP and WURFL repository as I am new in JADE. 1- Can any one tell me how do I configure JADE LEAP in Eclipse. I downloaded JADE-LEAP addOn but didn't know how I configure ? I add simple jade.jar in my Eclipse…
user1850112
  • 47
  • 1
  • 7
2
votes
1 answer

How to register OWL ontology into Jade agents?

I created agents using Jade and for ontology development I used OWL and Jena. I want to register ontology in ServiceDescription. How can I do this? Should I use an OWL class or a Jena model? I don't know how to set sd.setOwnership() and…
Rosh
  • 730
  • 2
  • 12
  • 32
2
votes
2 answers

The Java code is not working to create an agent (JADE)

I have this simple java code: public class AnAgent extends Agent { protected void setup() { System.out.println("Hello "+getAID().getName()+". I am ready. You?"); } } I read…
Snake Eyes
  • 16,287
  • 34
  • 113
  • 221
1
vote
3 answers

How to implement opencyc into my project?

I download opencyc from their site. I want to use it on my project. But I do not know how to implement it on to my project. I went through documents available in the opencyc site. can anybody let me know how to use opencyc? I am using jade…
Rosh
  • 730
  • 2
  • 12
  • 32
1
vote
1 answer

interact jade agents with jsp pages

I want to interact jade agents with jsp pages which are available on my localhost. Everywhere I found agent communication when they are in LAN. My problem is that I want to interact and call the jsp pages, instead of plain agent<->agent…