My organization asked our team to use this new tool AppDynamics for better performance testing results and reports.
For that I have to attach javaagent with running jvm, on their community this step
java -Xbootclasspath/a:<path_to_jdk>/lib/tools.jar -jar
/<agent_home>/javaagent.jar <jvm_process_id>
is given to attach the javaagent with running jvm.
However when I run the same I get following result on cmd (Using windows-8 64 bit)
>Attaching to VM [6616]
java.lang.reflect.InvocationTargetException Caused by: java.io.IOException: no such process Exception in thread "main" java.lang.RuntimeException: java.lang.reflect.InvocationTargetException Caused by: java.lang.reflect.InvocationTargetException Caused by: java.io.IOException: no such process
This is the link of their documentation.