No org.springframework.ws.transport.http.HttpsUrlConnectionMessageSender in 2.1.4

PassoGiau picture PassoGiau · Aug 28, 2014 · Viewed 8.5k times · Source

I have an application using org.springframework.ws,/em> 2.1.4.RELEASE which is now requires to use SSL. I was hoping to inject the org.springframework.ws.transport.http.HttpsUrlConnectionMessageSender into the org.springframework.ws.client.core.WebServiceTemplate but that class in not in found.

I'm using Maven dependency

        <dependency>
            <groupId>org.springframework.ws</groupId>
            <artifactId>spring-ws-core</artifactId>
            <version>2.1.4.RELEASE</version>
        </dependency>

Do I have to downgrade to 1.5 if I want to use ? Is there another way using HTTPS with the WebServiceTemplate without downgrading? TIA

Answer

PassoGiau picture PassoGiau · Aug 28, 2014

I think, I figured it out - there is a WS support dependency:

        <dependency>
            <groupId>org.springframework.ws</groupId>
            <artifactId>spring-ws-support</artifactId>
            <version>2.1.4.RELEASE</version>
        </dependency>