Reputation: 1
I have recorded the Oracle Fusion script in JMeter and completed all the correlations. However, when posting the login, I am getting a ‘checksum format error’ in the HTTP sampler response.
Let me provide some background about the web application. It essentially uses two logins. I am able to perform the first login successfully, but the second login is failing. The application uses some kind of SSO login. To perform the second login, even on a web browser, we need to install a CA certificate, without which the second login page will not load on the browser.
Here’s what I have tried so far: I installed OpenSSL to analyze the certificates in detail. The site uses a certificate chain with three levels, all having TrustCertificateEntry. I combined them into a single JKS file using Keytool and added the TrustStoreEntry in the JMeter properties file.
Despite this, I am still getting the same ‘checksum format error.’ Does anyone know how to solve this issue or what might be causing it? Thanks!
Upvotes: 0
Views: 29
Reputation: 2922
You need to add the client-side certificate to Keystore, not to Truststore.
Once done you need to make JMeter aware of the Keystore by setting javax.net.ssl.keyStore
property and point it to the Keystore. The password can be provided via javax.net.ssl.keyStorePassword
property.
More information: How to Set Your JMeter Load Test to Use Client Side Certificates
Upvotes: 0