Tagged Questions
The agent tag has no wiki summary.
17
votes
6answers
1k views
Any good distributed agent/service models for .NET?
I'm looking for tools that implement the distributed agent/service model ... I guess we could also call this grid or cloud computing, but I'm not sure the term is exactly analagous. A distributed ...
16
votes
3answers
3k views
Design patterns for Agent / Actor based concurrent design
Recently i have been getting into alternative languages that support an actor/agent/shared nothing architecture - ie. scala, clojure etc (clojure also supports shared state).
So far most of the ...
6
votes
2answers
135 views
What is the best architecture for this simulator?
I have to make a simulator in Java, which will simulate car riding on highway. There should be 3 lanes on highway, in every lane there are cars with constant speed. On this highway, there is one ...
6
votes
5answers
2k views
NetLogo vs. Repast Simphony?
I would like to simulate some scenarios using the multiagent
paradigm, and it seems NetLogo and Repast are the most popular tools for that.
I'd like to know if anyone has had any experience with ...
6
votes
4answers
549 views
Automated Exception Handling
I was wondering if something exists (in Java world) able to take an snapshot of the JVM current state with the following features:
Do it while an exception is being thrown.
Capture local variables, ...
5
votes
1answer
115 views
Using agents to synchronize jobs
I am toying with a simulation where I have couple of robots and a controller, controller decided what to do and assign jobs to robots, following is technically an abuse basically I do not care about ...
5
votes
1answer
197 views
Passing messages between remote MailboxProcessors?
I'm using MailboxProcessor classes in order to keep separate agents that do their own thing. Normally agents can communicate with one another in the same process, but I want agents to talk to one ...
4
votes
3answers
463 views
Run C# code inside a SQL Agent Job
I have a piece of code that needs to run every day at a specified time. The code right now is sitting as a part of my web application. There are 2 stored procedures to get/save data that the code ...
4
votes
1answer
170 views
Predicate vs Functions in First order logic
I have been so confused lately regarding difference between predicate and function in first order logic.
My understanding so far is,
Predicate is to show a comparison or showing a relation between ...
4
votes
3answers
226 views
Use of agents to complete side-effects in STM transactions
I'm aware that it is generally bad practice to put functions with side-effects within STM transactions, as they can potentially be retried and called multiple times.
It occurs to me however that you ...
4
votes
2answers
538 views
Agent/MailboxProcessor in C# using new async/await
This question combines two topics I don't fully understand
Reading through a paper about async in F#, I came across the topic of Agents/MailboxProcessors, which can be used to implement reactive ...
4
votes
1answer
158 views
Restart agent thread-pool after calling shutdown-agents
If I call (shutdown-agents) from the REPL, and then later on try to use an agent later on, I get an exception saying the agent pool isn't available (of course!). The question is, how can the agent ...
4
votes
1answer
1k views
Dynamic bytecode instrumentation - issue
I have a problem I am not able to solve. Let's assume we have the following two classes and an inheritance relationship:
public class A {
}
public class B extends A {
public void foo() {}
}
I ...
3
votes
5answers
72 views
Predator-prey simulation
I'm trying to implement a model of predator-prey.
It is agent-based model. Every few milliseconds is a new move. On the field there are two types of creatures: predator and prey. The behavior of each ...
3
votes
3answers
271 views
change user-agent for good
I have been able to change the user-agent by using
- (BOOL)webView:(UIWebView *)webView2 shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType {
...
3
votes
2answers
216 views
Computing folder size
I'm trying to compute folder size in parallel.
Maybe it's naive approach.
What I do, is that I give computation of every branch node (directory) to an agent.
All leaf nodes have their file sizes added ...
3
votes
1answer
246 views
About box with Application is agent (UIElement) set to YES?
Im trying to create a application that should only be visible in the status bar, and not have a window until you press the NSStatusItem menu options. So i have one that should open "about"
...
3
votes
1answer
230 views
In Erlang, is it possible to send a running process to a different node?
I have been researching Mobile Agents, and was wondering if it is possible to send a running process to another node in erlang. I know it is possible to send a process on another node a message. I ...
3
votes
1answer
309 views
Flume agent - can I specify compression like gzip or bz2?
Is it possible to specify a compression option on a Flume agent so that the data is transferred to the collector in a compressed format? I know there are compression options on the collector level, ...
3
votes
2answers
284 views
discrete event simulators for C++
I am currently looking for a discrete event simulator written for C++. I did not find much on the web written specifically in OO-style; there are some, but outdated. Some others, such as Opnet, Omnet ...
3
votes
2answers
72 views
Manage out-of-JVM agent pool and communication
I need to managed a pool of agents from my application. All are written in Java but the agents need to run in their own JVM. I wrote a proof of concept that starts the subprocesses and uses the ...
3
votes
1answer
267 views
Implementing SNMP agent on embedded system
I am currently developing an embedded uP based appliance which can be remotely controlled via ethernet from a PC using its own SNMP manager software.
I have implemented all the private commands, i.e. ...
3
votes
2answers
144 views
Following a Dynamic Score
I have little to no formal discrete math training, and have run into a wee bit of an issue. I am trying to write an agent which reads in a human player's (arbitrary) score and scores a point every so ...
3
votes
1answer
166 views
Optimal Pathfinding
Background
There is a square map with some obstacles on it. Obstacles are represented by polygons. I implemented following path finding algorithm:
1) Choose precision (it'll be denoted by k)
2) Divide ...
3
votes
0answers
671 views
Using SMO.Agent to retrieve SQL job execution status - security issue
I've got a C# program that fires off SQL Server Agent jobs using the SQL Server Management Objects (SMO) interfaces. It looks something like:
Server ssis_server = new Server(
new ...
3
votes
1answer
1k views
Simple self-contained SNMP Agent example? (java/c# ideal)
After not having a whole bunch of luck finding any SNMP libraries for .NET that can act as SNMP agents (that can be used in an OSS project - meaning proprietary libs are out), I am now looking at ...
3
votes
1answer
92 views
agent-based simulation of software engineering problems?
Has there been any agent-based simulation models built for investigating software engineering processes or problems? (e.g. collaboration in agile vs. traditional warefall, QA defect trends, open ...
3
votes
2answers
2k views
Starting/stopping a launchd agent for all users with GUI sessions
I need to be able to start/stop a per-session GUI agent from a root level daemon.
Similar issues are discussed here, here and here.
What I want to be able to do is basically
for num in `ps ax | ...
3
votes
2answers
182 views
How do I create two mutual producer/consumers with internal state in Haskell?
I've got an agent that takes in states and returns actions, while keeping an internal representation of the utility of state/action pairs. I've also got an environment that takes in actions and ...
2
votes
3answers
42 views
Finding out my user agent and putting it on my website
Like you can go on http://whatsmyuseragent.com/ website and see what user agent you are coming from. I need the similar feature on my website. I tried to view source and didn't find nothing. I am ...
2
votes
2answers
134 views
Clojure, Agent, lack side-effects
I'm using agents to manipulate a structure, but I don't have all my side effects.
All the messages are sent(I've printed and counted them), but there are times when I don't have all my side-effects. ...
2
votes
1answer
242 views
CA Siteminder, Agent.Init() fails indecisively
While using CA Siteminder's JAVA SDK API we noticed a starnge issue that sometimes the init fails randomly. Also re-initializtions happens later with no change in the system. It's little alarming and ...
2
votes
2answers
405 views
Implementing Actor Model in C# 5 / Async CTP
In an Actor Model, the actors have some sort of message loop where messages are matched using e.g. pattern matching (depending on language ofc)
e.g. pseudo F#
let message_loop() =
let! ...
2
votes
1answer
149 views
TFS: Configure test agents for mulitiple physical web environments
Background:
We are running all physical
hardware.
All developers are using
VS 2010 Ultimate and we will be using
iTrace files.
We would like to run
our coded UI tests from test manager.
We have ...
2
votes
4answers
729 views
Android Generic User Agent (UA)
I am building an Android app to display content feed from a server. The server is a mobile website (like http://m.google.com which tracks the traffic from various mobile clients. To differentiate an ...
2
votes
4answers
1k views
SQL Server Agent - get my own job_id
I'm running a SQL Server 2008 64 bit Developer Edition with Service Pack 1 installed.
I have a SQL Server Agent Job. Within this job I want to get the job_id of my own job.
On MSDN ...
2
votes
3answers
133 views
Artificial Intelligence - Intelligence Agent that cleans and paints
I remember when I was in college we went over some problem where there was a smart agent that was on a grid of squares and it had to clean the squares. It was awarded points for cleaning. It also was ...
2
votes
1answer
131 views
Any proxy as alternative to URL Shortener to reveal form POST page results?
I wish to share a link to a page however the contents for that page are only available from submitting a form.
Here's an example:
I want to see the list of retailers in California that sell gold ...
2
votes
2answers
373 views
Is it possible to have SNMP Agent without MIB’s support?
hii, i am working on SNMP from last few days,i have develope a small application(SNMP Agent) which
* Run on 161 port.
* Have a tree structured OID support.
* Respond to all Get,GetNext,Set Pdu ...
2
votes
3answers
3k views
TFS Build Agent not responding
I came across an issue I can't resolve, here are the details:
I am using TFS2008 in my APPTier and in my Build Agent. Initially I installed everything in the Apptier server (including the build ...
2
votes
3answers
938 views
Common email client user agent strings
Does anyone have a list of the common user agent strings that email clients use when opening HTML emails? I'm looking to do some pixel web bug detection using PHP on an email campaign.
1
vote
2answers
37 views
request['HTTP_USER_AGENT'] structure in modern browsers
I ran into a safari problem considering cookie policy in iframes... Also I found a working solution for that, yet to make it work I need to determine in what browser user is viewing.
Original ...
1
vote
0answers
39 views
Information System in Java Using Agent [closed]
I got task in my college to create smart information system using java as it language and using Agent.
The problem is that I really don't know what Agent is. I tried too google it and I ended up ...
1
vote
1answer
81 views
How to initialize SNMP in C
Can anyone tell me how to initialize a SNMP agent in c using SNMP library?
The call to "init_agent()" is not working.
I read somewhere that "init_agent()" fuction should be used before "init_snmp()".
...
1
vote
1answer
63 views
Which framework to use for Mobile Agents?
After learning that JADE does not support Mobile Agent concept but supports only traditional Agent Framework, I was wondering which Framework or technology still uses Mobile Agent Concepts and I can ...
1
vote
2answers
56 views
how to see the log of the DEBUGMSGTL in net-snmp
I am trying to write a snmp subagent that using agentX, which is supported by net-snmp.
At first, I used the example codes from net-snmp FAQ:
...
1
vote
2answers
278 views
Rational agents
In the book "Artificial Intelligence: A Modern Approach", Norvig and Russell define a rational agent as follows:
Rational agent: for each possible percept sequence, a rational agent should select an ...
1
vote
2answers
101 views
What is the recommended F# pattern for this situation?
I have a situation which resembles the following:
let mutable stopped = false
let runAsync() = async {
while not stopped do
let! item = fetchItemToProcessAsync
match item with
...
1
vote
0answers
40 views
JVMTI get name of called Class/File
I tried to read through the whole jvmti documentation and I didn't find a solution for my problem.
I want to get the name of the class/file that is used in the command line to call the program:
java ...
1
vote
2answers
266 views
Use UIWebView Private API?
I want to make a Browser like Safari with UIWebView,
which can show the loading progress of the web page.
And I saw an app "Downloads Lite - Downloader & Download Manager" selling in app store
...