I have an application using org.springframework.ws, / em> 2.1.4.RELEASE, which now needs to use SSL. I was hoping to introduce org.springframework.ws.transport.http.HttpsUrlConnectionMessageSender in org.springframework.ws.client.core.WebServiceTemplate, but this class was not found.
I am using Maven dependency
<dependency>
<groupId>org.springframework.ws</groupId>
<artifactId>spring-ws-core</artifactId>
<version>2.1.4.RELEASE</version>
</dependency>
Do I need to lower to 1.5 if I want to use? Is there any other way to use HTTPS with WebServiceTemplate without downgrading? TIA
source
share