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

Get JADE agent address while receiving message

I'm developing and application using jade where you can communicate between computers. What i want to know is how to get address of an agent who sends a message while receiving a message and want to display in the sysout statement in "else" with the…
Vithushan
  • 503
  • 3
  • 9
  • 34
0
votes
1 answer

Error in casting during creation of the Ontology class

I have created a vocabulary as Network_Vocabulary interface I have created a class CustomerAgentStatus implements the AgentAction I have then created an ontology class defining the ontology as: I was getting an error as : …
0
votes
1 answer

any other ways similar to observer pattern

I was asked to implement the function which waits for some action to be done. Then lets it do whatever it is supposed to do. I was asked not to use observer class. I tried with infinite loop and it worked. So i wonder if there are any other ways i…
Vithushan
  • 503
  • 3
  • 9
  • 34
0
votes
1 answer

running multi-platform from an external java application

I am posting this after visiting all possibly related posts to my issue and could not find an exact solution. I employing Jade in my master degree research project. That is, I would like to create several platforms from an external java…
0
votes
1 answer

IP addresses of agents registered with the Main Container in JADE?

I have a website at the back end of which I have a JADE main container running. Multiple machines can register with this main container. So, I want to know if the JADE API supports getting the IP addresses of all the agents currently registered with…
readdear
  • 195
  • 1
  • 3
0
votes
2 answers

JADE_mulli agent system

I can't deploy the agent in JADE implemented in Java, any alternatives ? package package1; import jade.core.Agent; public class JadePFE extends Agent { @Override protected void setup() { System.out.println("Hello agent 007"); …
zehari
  • 3
  • 2
0
votes
2 answers

Plain Java vs JADE framework in terms of multi-agent development

If the task is to build a multi-agent system (for example, a benchmark book-auction system) and there are two options: Build it using plain Java, where each agent is a thread + make use of native Java features Using JADE Java framework. What are…
Pavel H
  • 3
  • 2
0
votes
1 answer

Jade: parenthetical ERROR

When I compiled my code: script (function() { var uv = document.createElement('script'); uv.type = 'text/javascript'; uv.async = true; uv.src = ('https:' == document.location.protocol ? 'https://' : 'http://') +…
nwytAnon
  • 1
  • 2
0
votes
0 answers

Reading numbers from text file in jade

I am working on a project where I access data locally (via Dropbox). I am having trouble finding a method to take the numbers from the data file. I can take the entire data file, which is relatively small, but I want to sort through and just collect…
0
votes
1 answer

Communication between local agent and remote agent deployed over cloud

We have deployed a ping agent which is deployed over Amazon EC2 instance in the cloud and we want to communicate to it by means of a local agent but i am getting an error message when i send an ACL message to the cloud agent by local agent as…
user1708240
  • 315
  • 2
  • 6
  • 16
0
votes
1 answer

Program in Jade Running on Netbeans not Transferring Message

I have created an agent which accepts a value and then passes a message on to the next agent. I am having problem with entering a value and so my message is also not being transfered. Here is my Agent class, below. Does anyone know what I can do…
0
votes
0 answers

Weird behavior running Jade Platform on Eclipse OS X Mavericks

I was developing a JADE multi-agent platform using Eclipse under Windows 7 and it works great. Now I'm trying to move the code to a macbook pro with OS X Mavericks installed and I'm experiencing a very weird problem. I've installed java 1.6.0_65 and…
mycroft
  • 1
  • 1
0
votes
1 answer

Extracting draw() method on a separate loop (PApplet as a JADE Agent)

I am creating a JADE-based agent system on Java, and I want to use Processing for visualizing these agents. Now the JADE framework runs on it's own, and a Processing PApplet is instantiated as one of the agents, which is a singleton. Every time one…
SiddharthaRT
  • 2,217
  • 4
  • 20
  • 28
0
votes
1 answer

How to set jvm heap size when starting a jade agent

I'm trying to increase jvm heap size because my JADE agent program throws java.lang.OutOfMemoryError: Java heap space error. I have set java heap size using Java Control Panel -> Java Runtime Environment Settings in Windows 7. But it doesn't help.…
pabz
  • 534
  • 1
  • 5
  • 15
0
votes
1 answer

Jade agent with Mongo Database issue

I'm trying to use Mongo Database from within my Agent (using Jade agent framework). Trying to write something to database from Agent somehow did not succeed with NoClassDefFoundError. The code is very simple as followings: public class SomeAgent…
Noe One
  • 3
  • 1