Need help setting up Jmeter to use multiple Certs.Need Jmeter HTTPS requests to use different client certificates that I have in a JKS keystore, currently 2 client certs/keys are in it.
Currently I have few HTTPS request in first thread group which should be made using CERT1 and Second thread group has few more HTTPS request which should be made using CERT2.
I am using KeyStore configuration to have have these different thread groups to use different CERTs by using alias or index.
Besides adding the Keystore Configuration to the thread group and setting different alias to select different Cert, Jmeter is not using different certs to make request. I see the same cert is being used.
I have set -Jhttps.use.cached.ssl.context=false -Jhttps.socket.protocols=TLSv1.2 -Djavax.net.ssl.keyStore=%KEYSTORE% -Djavax.net.ssl.keyStorePassword=%KEY_PASS%
and also I am using HTTPClient4 in my HTTPS requests.
Is there something that I am missing..any help would be appropriated..?