How Do I Use the Jetty Client to Connect to the IIS Web Server of the two-way authentication
Our Jetty client is used to request the IIS web server. The ssl settings of the IIS web server is configured with require.
However, the client does not receive the Handshake Protocol: Certificate Request message during the handshake process,
Therefore, the client does not send the identity certificate to the IIS web server. As a result, the server authentication fails, and the server error code is 403.7.
When we run the curl command to request the IIS web server and specify the identity certificate,
Like this :
curl --cert server.cer --pass: keypass --key server_key.pem -H "Content-Type: application/json" -X GET "https://1.1.1.1:443/XXX"
the client still does not receive the Handshake Protocol: Certificate Request, but the IIS web server receives the identity certificate from the client. When we capture and analyze the data packets, we do not see the packets that the client sends the certificate.
We try to use Python to send a request with the certificate. The result is the same as that of the curl command line. The server does not request the certificate or the client sends the certificate, but the server obtains the certificate information of the client.