Questions tagged [ssl-client-authentication]

94 questions
0
votes
0 answers

How can I get info from a backed server which requires client certificate authentication?

The backedn server URL is https://www.example.com/order/?id= I am writing the front end to pass order id to this server and display the information I got back. Server www.example.com requires client certificate authentication. If I use browser to…
FoMM
  • 53
  • 1
  • 5
0
votes
0 answers

"No suitable client certificate could be found - continuing without client authentication"

I am working on one java application which communicates to some external server using SOAP web services. I have used the stub classes generated using the wsdl of external system. On the External system they have enabled the client authentication and…
0
votes
1 answer

Apache - Client Certificates

Is the purpose of the client certification process just to prove that the CA you have in SSLCACertificateFile (in the conf file) has vouched for the client? If the CA is a well known CA then anyone who has their public cert signed by that CA can…
Traveller
  • 143
  • 4
0
votes
1 answer

Customizing Client Authentication in IBM WebSphere

We have an application running in WAS 8.5 server. The application has two external Service invocations, hitting 2 different third-party systems, in which one Service (Service2/Server2) requires Client Authentication. Please refer the diagram for…
Sanooj
  • 29
  • 1
  • 4
0
votes
1 answer

Having trouble implementing PoolingHttpClientConnectionManager

I am trying to implement http connection pooling in my java code and when I try to use it I get a Handshake exception. If I take out that one line that sets the connection manager it works. This makes no sense to me. I am using these jar…
0
votes
2 answers

Weblogic/Java not sending Client Certificate in Mutual SSL Integration with IIS

I'm having trouble understanding why Weblogic/Java are not sending the Client certificate requested by the server(IIS server) during SSL Handshake via the CertificateRequest message. I have already checked and tried all the other questions/answer in…
Alboz
  • 1,833
  • 20
  • 29
0
votes
1 answer

Why isn't my server requesting a client cert in Play 2.6.x?

I'm trying to enable client authentication by following the play-tls-example. Since this is just an experiment, I'm generating self-signed certs. I have the following SSL engine provider: package https import java.nio.file.{FileSystems,…
erip
  • 16,374
  • 11
  • 66
  • 121
0
votes
2 answers

K8S (1.9) how to access API server with client certifiicate

Qustion How can I access the API server API with the client certificate? Tried below but no success. export K8S_PKI_HOME=/etc/kubernetes/pki curl -k --key ${K8S_PKI_HOME}/ca.key --cert ${K8S_PKI_HOME}/ca.crt…
mon
  • 18,789
  • 22
  • 112
  • 205
0
votes
0 answers

Unable to update Server preferred Cipher Suite Order

I am trying to update the Server preferred Cipher Suite Order on Windows Server 2008, I have followed the blog Update Cipher Suites , but I am still seeing old preferred order in SSL Labs.
0
votes
1 answer

SSL client (Java) is not sending a certificate back to the server in two-way SSL handshake

We are trying to access a restful web service resource hosted on IIS server with https protocol. When we disable TWO WAY SSL Auth (server side validation of client certificate disabled) everything works fine. When the IIS imposes TWO WAY SSL…
0
votes
1 answer

store certificate which we got via SSL handshake

We have done client certificate authentication via SSLVerifyClient require method. Now authentication is being done as required. Now we want to store the client certificate which we is being presented by the client during SSL handshake. Is there a…
Pramod
  • 768
  • 1
  • 12
  • 27
0
votes
0 answers

Server Client Auth request Subject Distinguished Name but client filter with Issuer Distinguished Name

Currently I have a problem with enable the mutual SSL on server and client. On the server side, I config the tomcat with enable ClientAuth and config the client's certificate to the truststore. So during ssl handshake, I can see the server's…
0
votes
0 answers

TLS Client Authentication Error

I am trying to configure TLS client authentication (mutual auth) between an F5 BIG-IP and an Ubuntu server running Apache2. Unfortunately no matter what I try it keeps failing with the following message under /log/apache2/error.log: [client…
0
votes
1 answer

Spring Boot certificate authentication via Apache reverse proxy

I have successfully configured Apache (2.4.7) to require a client certificate and -- as a reverse proxy -- forward the information within the certificate to a Tomcat 8 server. When trying to accomplish the same with Spring Boot however, it fails…
0
votes
1 answer

SSL Client in Java

I want to create SSL client in java. I have 3 files provided by SSL Server namely: 1. Server's public key : CAfile.pem 2. Client's private key : client.pem 3. Client's public key : client.crt Using client's private and public keys, i have created 1…