Hari
Hari

Reputation: 267

SSL Certificate Not getting passed

I have configured the SSL configuration for my jboss.

-Djavax.net.ssl.keyStore=/opt/appserver/jboss5.1/test.jks   
-Djavax.net.ssl.keyStorePassword=********* 
-Djavax.net.ssl.trustStore=/opt/appserver/jboss5.1/test.jks 
-Djavax.net.ssl.trustStorePassword=*******

I am using the spring integration to connect to restservice, the ssl certificate is getting passed for some request and it is not getting passed for some other request, Any idea why the certificate will not be passed for one request?

Upvotes: 0

Views: 183

Answers (1)

hooknc
hooknc

Reputation: 5001

It is the servers responsibility to request the client to send a certificate during mutual authentication.

When you have time, verify that the server has the ssl 'clientAuth' attribute set 'true' for all the urls that you want mutual authentication (client authentication).

Upvotes: 1

Related Questions