Spring Download First Soap WebService Contract

I'm currently trying to develop a wsdl-based Soap web service that I received from an external provider. The goal is to implement this using Spring Boot. I need to provide a server implementation from the provided wsdl. However, I searched everything and tried several different combinations. I am fixated on how I can implement WebService using Spring Boot.

I tried to use the example in http://spring.io/guides/gs/producing-web-service/ , but it does not give me the correct result. Interfaces for implementing webservice are generated by nog.

Any hints or tips on how the first Soap contract service can be implemented using Spring Boot?

+4
source share
1 answer

The problem, I see you want to generate Java objects from WSDL.

The preferred way is to use the cxf-codegen-plugin . Then just use spring-boot as a descriptor in the example given in the question.

Hope this helps you.

0
source

All Articles