0
votes
0answers
51 views

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

Connecting Jade with JSP using jadeGateway

I have been trying to connect jade to jsp using jadeGateway Properties pp = new Properties(); pp.setProperty(Profile.MAIN, "false"); pp.setProperty(Profile.MAIN_HOST, "localhost"); ...
0
votes
0answers
171 views

change color of checkbox text at run-time

A JFrame object F1 has a JPanel object P1. The program reads values (time) from a database table and for each value read, it adds a checkbox to P1. Thus each checkbox text will be a time value ( ...
0
votes
0answers
23 views

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

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 ...
1
vote
1answer
619 views

Sample Application for Multi Agent Systems using Jade?

Could you guide me in any example or sample application with documentation describing how to develop a simple multi agent software?
0
votes
1answer
112 views

Not able to receive ACLMessage in android via JADE

I'm currently using Topic based communication using JADE. I'm able to register a JADE agent using jade.core.messaging.TopicManagementFEService thereby connecting to the main-container in the same ...
0
votes
0answers
32 views

what are the methods names or how to use these in jade framework ? Action,Goal,Motivation?

i have developed a simple agent model in z-eves so i want 2 know how to implement this in jade.. i just want to know what are the method names of these or how jade implements them .. just 1 line ...
0
votes
0answers
60 views

Got exception while using Java JADE

I got exception while using JADE. I have 2 agents one is sender and other is receiver. When I start Sender agent it successfully sent message to receiver in Eclipse But when I start Receiver agent I ...
1
vote
1answer
93 views

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

JADE-LEAP Configurations in Eclipse Plug-in?

Can any one tell me how to configure JADE-LEAP in Eclipse? I Installed J2ME wireless toolkit. Should I add jade-leap jar in eclipse ?
2
votes
1answer
152 views

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

Error: SEVERE:Cannot create agent

I can't run agent BookBuyerAgent. Path to project is D:\studia\magisterka\sem10\jade\JADE-all-4.1.1(1)\JADE-all-4.1\jade\src\examples\bookTrading\src. At first I do javac BookBuyerAgent.java and ...
0
votes
1answer
460 views

scala for loop value is not a member of Int

I'm getting a value map is not a member of Int error and I'm not sure what that means so I can't figure it out. I have two pages, scala.html, and scala.jade. The issue occurs when a template.scala ...
0
votes
0answers
132 views

Running more agent on one computer

I have problem with running more agent on comuputer. At first I do (in Eclipse Run>Run Configuration) java jade.Boot a1:agent1 a2:agent2 to create main container. After that when I have mian ...
0
votes
1answer
157 views

Java jade connection to database

I'm trying to connect to databse using jade java and jdbc public class IntermediaryAgent extends Agent{ private Connection con; protected void setup() { ...
2
votes
1answer
222 views

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

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

Agent mobility between containers

I wrote a piece of code representing an agent traveling across containers. my agent has a Cyclic behavior that use a simple switch-case statements to travel across containers. it runs at the ...
0
votes
1answer
113 views

Launching JADE on windows 7

i do not know how to launch JADE on eclipse. Can anyone tell me how to do it and how to run a small program on it
0
votes
1answer
56 views

Create an agent calculator

I want to create an agent to calculate the sum of the whole set parameters import jade.core.Agent; public class Somme extends Agent { // String argstrings []; int Som=0; protected void ...
5
votes
2answers
3k views

SWT problem 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 an swt application with a foreground jade application in which I have a ...
3
votes
1answer
347 views

Unit testing Jade

What techniques and design strategies have people used to aid in unit testing Jade applications? In particular, how do people typically go about testing Behaviours - which are tightly coupled to the ...
4
votes
4answers
928 views

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 ...