How does Java handle certificates in Spring Ws?

I need to use a web service using Spring Ws. I am using a WEB service template. Do I need to know that only by specifying certificates in the java store and trust store does sending and receiving certificates happen automatically? Will there also be a check for server certificates automatically in Spring Ws if the keystore and trusted device are configured correctly or do I need to write some code? If I did not send or receive certificates in Spring WS?

0
java spring-mvc web-services keystore truststore
Jun 03 '16 at 7:48
source share
1 answer

Once you have selected the security interceptor that you want to use. Assuming you have all the certificates, you can follow the links below to configure one or two ssl methods for each of the security interceptors. These links are not the latest, but you should start.

XwsSecurityInterceptor

Server Security Configuration

Configure Client Security

Wss4jSecurityInteceptor

Configuring client and server security

0
Jun 05 '16 at 16:20
source share



All Articles