Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
86 views

Can a JVM retrieve a list of agents that have been loaded into it via the attach api?

Is it possible to get a list of agents loaded into the current JVM by the Java 1.6 attach api? If so how? Agents loaded at launch can be determined via RuntimeMXBean but I can't see a way to get a ...
4
votes
1answer
230 views

What are some interesting uses for Java Agents?

Starting with Java 5 there's an option to add Java Agents to the class loader. Have you written any Agents? have you used any Agents? What are interesting uses of Agents?
3
votes
2answers
1k views

How do I start my Java program with more than one java agent?

I'm aware of how to start a java progam with a java agent: java -javaagent:myAgent.jar MyJavaProgram But what if I want to add 2 or more java agents to instrument my program? I do not want to ...
2
votes
2answers
71 views

List of Method Calls During Execution of Java Unit Test

I have a situation where I need to know what methods are being called from a single JUnit test. For example, if I have the following pseudo-code: public class UnitTest { public main() { ...
2
votes
3answers
837 views

How to add vm option to jetty?

How it is available to specify vm option like -javaagent to start jetty or it is available only thru MAVEN_OPTS variable? I need it to enable load-time-weaving of aspects. This plugin seems like ...
2
votes
1answer
293 views

Use -javaagent without packaging agent into a jar

Is it possible to run java -javaagent:myagent.jar some.package.Main without having agent packaged to a jar? Something like java agent.MyAgent some.package.Main I have a source code for an agent and ...
2
votes
1answer
172 views

Using metamorphic code to reduce boilerplate

Has anyone seen metamorphic code -- that is, code that generates and runs instructions (including IL and Java Bytecode, as well as native code) -- used to reduce boilerplate code? Regardless of the ...
2
votes
4answers
885 views

Starting a Java agent after program start

Is it possible to insert a javaagent after virtual machine start from within the same VM? Lets say for example we have an agent in a jar myagent.jar with the appropriate meta data set-up and an ...
2
votes
4answers
955 views

Javaagent class unloading

I have a java agent which instruments bytecode. I am using the attach apis in java 6 to allow users to dynamically load the agent and instrument and deinstrument code using my java agent. I am using ...
2
votes
1answer
861 views

Debugger won't work with JMockit

Hopefully an easy question here for someone..... I'm using RAD 7.5.2, and am writing Junit tests. I was writing them just fine with JUnit 3, and then I wanted to mock up some function calls. So I ...
1
vote
0answers
13 views

Improper execution of Mobile Agent

I have written a simple code, intended for a mobile agent to move from one Computer to the other and back to the same computer. Here is the snapshot: System.out.println("I am in " + getName() + " and ...
1
vote
2answers
56 views

How to enhance openjpa entities to use in unit tests in TeamCity build

I am trying to run unit tests in my TeamCity build that require openJPA enhancement (I am using openjpa 2.0.1). My build configuration is based on my Intellij project. (i.e. I am not using Maven/Ant ...
1
vote
0answers
103 views

Javaws run with -javaagent on many JRE

I want to run an agent on webStart application in many JRE. So far I can run only an app, the agent is not working. I run a bat file that I found it on stackoverflow:: @echo off set ...
1
vote
0answers
34 views

Errors silently thrown during debug run?

I've got a pretty simple Spring application building in Maven and Eclipse. Everything is working fine, but when I debug the application, I hit a few exceptions that are never actually thrown: ...
1
vote
2answers
87 views

How do I catch the read and writes in a java program?

I am trying to create a tool that can capture all the read and writes made by a java program. Also, I would like to know what fields of what object is access/modified. I currently looked at:- 1) ...
1
vote
1answer
115 views

How to create a jvmti agent to see all the loaded classes, objects and their field details

I want to write a java agent to instrument some applications. I am interested in getting the details of the objects, (i.e. their fields) instantiated by the applications. I would also like to catch ...
1
vote
5answers
77 views

How do you diagnose which field/method caused a NullPointerException

Let's say you have Java code that looks like: getPerson().getParent().getSiblings().first().getName() And you get a NullPointerException on that line. How do you figure out which one was null? You ...
1
vote
2answers
499 views

Location of javaagent jar in bootclasspath

I have a javaagent jar that I put on the bootclasspath using Boot-Class-Path: myagent.jar inside the MANIFEST.MF file. I need to find out the directory on the filesystem in which the jar is ...
1
vote
2answers
464 views

Using javaagent with Junit is causing ClassNotFoundException in Class.forName

java -classpath requiredclasspath org.junit.runner.JUnitCore some.package.HelloWorldTest results in: JUnit version 4.8.1 . Time: 0.005 OK (1 test) But: java -javaagent:agent.jar -classpath ...
1
vote
0answers
104 views

An equivalent of -javaagent in C#? Or: ways to use a java framework in C#

This is probably something I should be able to figure out by myself, but I'm not having much luck so I figured I'd ask. The issue: I'm translating a system from java to C# and they use a java ...
0
votes
0answers
20 views

Aglets with netbeans

I'm trying to build mobile agents using aglets. i'm using aglets 2.0.2. I'm trying to integrate it with netbeans. I followed the steps in the user manual at ...
0
votes
2answers
53 views

error in executing jar from commandline

When I fire the following from command line: D:\workspace 2\project\lib>java -javaagent:myagent.jar -cp asm-all-3.3.jar;. AgentMain I get the following error java.lang.NullPointerException ...
0
votes
4answers
74 views

java agent class not found exception

I have a directory structure "D:\workspace 2\project\lib" where I have all the files "AgentMain.java"(which I copied from src and placed it here to make it easier), "asm-all.3.3.jar", "myagent.jar". ...
0
votes
1answer
47 views

Does JProfiler have an equivalent -javaagent alternative to the native agent

I was planning to use JProfiler to...err...profile my current project. However, my target architecture is not one that is currently supported. Does there exist -javaagent alternative to the native ...
0
votes
0answers
36 views

Accessing javaagent fields

To access a java agent class's fields in eclipse (for example instrumentation) I am using system properties as suggested by this answer ( How can I use java.lang.instrument in an Eclipse RCP ...
0
votes
1answer
120 views

Inspecting a java application which has been started with -javaagent using VisualVM

I am trying to inspect an java application using VisualVM. Normally there is no problem but I am trying to set up Eclipselink weaving and so I am starting the program using the -javaagent flag; ...
0
votes
1answer
195 views

Adding -javaagent to Tomcat 6 server, where do I put it and in what format?

I´m trying to install an application health monitoring application that can monitor J2EE web transactions and I need to put a javaagent into my Tomcat somehow but am not clear on exactly how to do ...
0
votes
1answer
114 views

How to test a ClassFileTransformer / javaagent?

I implemented a ClassFileTransformer for a javaagent using ASM. Because it has some bugs, I want to write a JUnit test case for it. How do I do this? Using pseudo-code I thought along the lines: // ...
0
votes
0answers
64 views

How to write a javagent for resin 4

I wrote a javaagent that instruments byte code. I added a transformer to the Instrumentation object in premain. Everything works ok when I'm running the application server using: resin.exe When ...
0
votes
0answers
495 views

Using Spring's spring-instrument java agent with JBehave in a Maven enviornment

I'm using the spring-instrumentation javaagent to enhance JPA classes with loadtime weaving. This works well in Junit with Maven, and JBehave executing from the command line with JUnit. Sadly, I ...
0
votes
1answer
939 views

how to resolve java result 1 errors

How to resolve 1 particular flavor of 'java result 1' in the context of using JVMTI agents?
0
votes
1answer
238 views

Does a java agent run in a separate thread?

I feel that this is something I should know, but does a java agent (specified with -javaagent) run in a separate thread? I've read that a Java agent is a pluggable library that runs embedded in a JVM ...
0
votes
0answers
460 views

Problem using -javaagent with Linux 64 bit tomcat

I m using -javagent agent.jar to instrument java classes in tomcat.While using -javaagent:,in manifest file of the jar we will mention the premain class which gets called first and from there we can ...
-1
votes
0answers
16 views

lightweight web service for javaagent

Could someone recommend (might some tutorial) web service for lightweight javaagent? Do you know the best practice how to organize architecture?