Tagged Questions

JADE is a Java framework and set of tools for implementing Multi-Agent Systems that comply with the FIPA specifications.

learn more… | top users | synonyms

6
votes
1answer
399 views

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 ...
5
votes
1answer
290 views

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, ...
3
votes
1answer
123 views

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 ...
2
votes
1answer
179 views

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 ...
2
votes
1answer
77 views

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 ...
2
votes
1answer
709 views

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 ...
1
vote
0answers
12 views

java.lang.ClassCastException while trying to print container id in jade

I have a code for finding the list of containers from the ams in jade using queryPlatformAction method. I am getting a problem for typecasting the container id while putting the sop statement at the ...
1
vote
1answer
47 views

Connecting JADE with WAMP

Hi Java Agent DEvelopment Framework developers! I want to use WAMP with JADE, can I do that, simple because I am well averse with WAMP. Or does JADE recommend only Java related technologies to be ...
1
vote
1answer
36 views

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 ...
1
vote
0answers
92 views

Java Eclipse - How do I change the classpath?

I copied an Eclipse project from my PC (eclipse is on drive D) to the laptop (eclipse is on drive c) but when I try to deploy the agents I have in my project I keep getting the following error: The ...
1
vote
0answers
65 views

Help to use Meeting Scheduler demo in JADE

I have been studying JADE and going through some demo examples Can some explain and how to use Meeting Schedule demo example. Thank You
1
vote
2answers
490 views

JADE (Java) - Changing Agent Container

Is there a way to reassign agents to a different container or will I have to create a new container and then create all new instances of the agents within the new container? I have done a lot of ...
1
vote
3answers
304 views

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

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 ...
0
votes
1answer
32 views

Agent's behaviour in Multi-agent systems?

I have request agent and several resource agents in my project. I created a agent application and when I run this application every time I got one result. thats mean I call methods step by step ...
0
votes
0answers
101 views

Application was not properly initialized at startup, could not find Factory: javax.faces.application.ApplicationFactory

I'm working on a webapp which combines PrimeFaces 1.1 and RichFaces 3.3.3 in a JBoss 4.2.3 server, so this application uses JSF 1.2. Inside this app I have a webpage where I combine different ...
0
votes
1answer
39 views

Getting a list of all JADE containers

I want to get a list of all containers in the current platform. This question is similar, but the answer is obsolete and the method is by querying to the AMS agent. Is there any simpler way out than ...
0
votes
1answer
41 views

Strange Error in transporting a Mobile Agent

I have written a code for Mobility of an Agent. It works fine with a Wireless (via Router) Link But when I created an Ad-Hoc Wireless Connection with my friend's laptop it failed. This is the error ...
0
votes
0answers
33 views

How to retrieve Java file values in JADE file?

I'm a beginner in JADE, and I have a problem in running the file. I need to retrieve the values from Java file to a JADE file and then run the JADE file. Something like static block in Java? Does ...
0
votes
2answers
103 views

Jade jar in java + code

I am a beginner in JADE programming and I'm having problems running the JADE code in Java. Can someone help me in this?? I am using eclipse and I've added the jade jars, but when I try to run the ...
0
votes
1answer
37 views

JADE IPMS Inter-Platform Agent Migration

I'm using IPMS with Jade for inter-platform agent migration. I'm using Jade 3.6 with IPMS 1.2. I have enabled the services on both slave1 (the original platform) and on slave2 (the target platform). ...
0
votes
1answer
65 views

Can't send ACLMessage to remote agent

I use JADE to create an agent system. I have created two program: a server and a client. Server: Runtime runtime = Runtime.instance(true); Profile profile = new ProfileImpl(); ...
0
votes
1answer
188 views

Jboss 5.1 GA Automatic Shutdown

I have deployed my application on Jboss 5.1 GA. In my application I am using only one RestFul web service and JADE components. I am running 2 jboss servers on base linux machine. 1) Jboss 4.0.1 on ...
0
votes
1answer
179 views

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 ...
0
votes
3answers
460 views

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 ...
0
votes
0answers
109 views

Jade message queue

Hi I have 3 agent A,B,C A send message to B B get message from A and then send message to C I did this 2 behavior in B by using Sequential Behavior but when I try to print the message in C it is Null ...
0
votes
0answers
66 views

How to export jadex agent into jar file?

Any one got the idea how to export a jadex agent file become a jar file which can run in any pc? let us use the example in jadex, how we export those example agent in jadex become runable file? those ...
0
votes
0answers
160 views

Can I share a persistence entity manager factory across multiple JADE agents

I've got a container of JADE agents, one of which currently interfaces with a mysql database using hibernate/persistence and I now want to extend the database access to other agents - but creating a ...
0
votes
1answer
269 views

Enum becomes null after call

public Boolean performAction(AppleCollectorAgent agent, data.ActionType action) { if(agent != null && action != null) { actions.put(agent, action); } else { ...
0
votes
1answer
351 views

XMPP vs JMS as a message carrier

I'm considering using either XMPP or JMS as the transport for exchanging messages between software agents. (I'm working with the JADE agent system.) The main problem I need to solve is to be able to ...
0
votes
2answers
177 views

How to read text file in JADE

I am stuck in putting the Jave text file read code in JADE GUI. Please assist.I.e. Show using a simple code. I am new to Jade but experienced in Java coding.
0
votes
1answer
252 views

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 ...
-1
votes
1answer
188 views

What are interesting usages of JADE?

I'm looking for JADE projects which are noteworthy but I wasn't able to find such a list on the Internet. Could anybody provide some? Thanks!