I am facing a issue in jmeter. While replaying the script i am able to get http is not a trusted server in response with 403 forbidden error as a status code. The request is failing at login.
            Asked
            
        
        
            Active
            
        
            Viewed 41 times
        
    1 Answers
0
            
            
        Most probably you need to supply a client certificate along with the request
In JMeter it can be done in 2 ways:
- GUI mode: via SSL Manager 
- Non-GUI mode: via system properties - javax.net.ssl.keyStore=/path/to/file/with/certificate(s).p12 javax.net.ssl.keyStore=password for the keyStore file
The certificate can be converted/imported into the keystore using keytool or openssl or application like Keystore Explorer
More information: How to Set Your JMeter Load Test to Use Client Side Certificates
 
    
    
        Dmitri T
        
- 159,985
- 5
- 83
- 133
 
    