我正在使用空手道框架。由于服务器需要这样做,因此我尝试使用mutual auth
连接到它,如下所述:
https://github.com/intuit/karate#x509-certificate-authentication
* configure ssl = { trustStore : 'classpath:certstore.pfx', trustStorePassword: 'certpassword', trustStoreType: 'pkcs12' };
我收到此错误:
javax.net.ssl.SSLHandshakeException: Received fatal alert: bad_certificate
有人像我在邮递员中一样知道如何跳过SSL certificate verification
吗?
答案 0 :(得分:1)
答案 1 :(得分:0)
我应该使用keystore
而不是trustStore
。
* configure ssl = { keyStore : 'classpath:certstore.pfx', keyStorePassword: 'certpassword', keyStoreType: 'pkcs12' };