Win 2008 64bit Domino 64bit
Domino running from C:\Program Files\IBM\Lotus\Domino
Data on D:\Lotus\Domino
notes.ini points to ...
; XPages Profiler
JavaOptionsFile=C:\Program Files\IBM\Lotus\Domino\XspProfilerOptionsFile.txt
XspProfilerOptionsFile.txt have been tested with ...
-javaagent:C:/Program Files/IBM/Lotus/Domino/xsp/XPagesProfilerAgent.jar
and
-javaagent:"C:/Program Files/IBM/Lotus/Domino/xsp/XPagesProfilerAgent.jar"
XPagesProfilerAgent.jar is in C:\Program Files\IBM\Lotus\Domino\xsp
Java permissions have been set.
Was chatting with Paul Withers and he suggested temporarily setting all Java permissions to allow everything. And even with that I am still getting the errors ...
10/05/2012 01:14:46 PM HTTP JVM: JVMJ9TI001E Agent library instrument could not be opened (The specified module could not be found. )
10/05/2012 01:14:46 PM HTTP JVM: JVMJ9VM015W Initialization error for library j9jvmti24(-3): JVMJ9VM009E J9VMDllMain failed
10/05/2012 01:14:46 PM JVM: The Java Virtual Machine creation returned an invalid JVM machine pointer.
10/05/2012 01:14:46 PM JVM: Java Virtual Machine failed to start
10/05/2012 01:14:46 PM HTTP Server: Error Loading Java Virtual Machine
10/05/2012 01:14:46 PM HTTP Server: JVM: Missing entrypoint in JVM runtime library.
What I've realized is that the XPagesProfilerAgent.jar is being found and run. One of the first lines of the code in that agent is ...
import java.lang.instrument.Instrumentation;
Which leads me to the conclusion that the agent cannot import correctly from the jvm. That's why the error is "Agent library instrument could not be opened". But, how do I fix this????