Straight from Jason Stanley on the Support Team.
How can I see what commands are being called
when using the AccuRev browser?
Note that the path names below are the most
common, please adjust as necessary.
For AccuRev on Windows.
From the command prompt window:
cd C:\Program Files\AccuRev\bin
java -Daccurev.debug.acapi -
cp "oro.jar;xercesImpl.jar;xml-apis.jar;fw.jar"
fw.MainApp
This will launch a CMD prompt that captures which
commands are being called.
For AccuRev on UNIX.
Create a sh script with the data below. It may need
to be edited to correct the paths. Once corrected,
run the sh script, this will launch a new shell that
captures which commands are being called.
#!/bin/sh
acbin=/home/accurev/bin
acjre=/home/accurev/jre/bin/java
cd $acbin
$acjre -Daccurev.debug.acapi -Daccurev.debug.env \
-classpath "oro.jar:xercesImpl.jar:xml-apis.jar:fw.jar"
fw.MainApp $acbin