I'm having a problem trying to get a client-side certificate loaded using Jmeter. I believe I followed this tutorial, but am getting an error when running my tests.
From what I can tell, it seems like my keystore file is set up correctly. If I run keytool -list -v -keystore <mykeystore> I get:
Keystore type: JKS
Keystore provider: SUN
Your keystore contains 1 entry
Alias name: client
Creation date: Jul 31, 2017
Entry type: PrivateKeyEntry
Certificate chain length: 1
Certificate[1]:
<certificate body>
When I run my tests, things seem to be running okay from the beginning
Total of 1 aliases loaded OK from keystore
However, in the results output I see the error message:
java.lang.IllegalArgumentException: No certificate found for alias:'client'
What could be causing Jmeter to fail reading the certificate?