> How do you add the system property (-Djavax.net.debug...) to the JVM startup > options on the JVM ?
I'm familiar with the recommended solution on Unix/Linux, which is to create the file $CATALINA_HOME/bin/setenv.sh containing shell commands to set environment variables. We use the following snippet to turn on SSL tracing when needed: # Uncomment the next line to print SSL debug trace in catalina.out #CATALINA_OPTS=$CATALINA_OPTS" -Djavax.net.debug=ssl" export CATALINA_OPTS I would imagine you can so similar on Windows. > Personnaly I add -Djavax.net.ssl.trustore... in the catalina.bat file That works too, but maintaining customizations to the environment in setenv is more maintainable. M -- You are currently subscribed to [email protected] as: [email protected] To unsubscribe, change settings or access archives, see http://www.ja-sig.org/wiki/display/JSG/cas-user
