Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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

like image 467
PassoGiau Avatar asked Aug 28 '14 14:08

PassoGiau


1 Answers

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>
like image 133
PassoGiau Avatar answered Sep 20 '22 23:09

PassoGiau