Page 1 of 1

JMeter & ant: https not working

Posted: Wed Nov 22, 2006 3:18 pm
by ^rooker
[PROBLEM]
Although my test scenario (.jmx) ran perfectly from within JMeter GUI, it failed when accessing https:// sites.

[SOLUTION]
This problem occurs, because jmeter isn't provided with the keystore password.

Add this line to your <jmeter> block in the build.xml:

Code: Select all

<jvmarg value="-Djavax.net.ssl.keyStorePassword=password"/>
...where "password" must be replaced by your actual password, of course.