A spring-ws tutorial using Kotlin. Based on the this Spring-WS tutorial.
I created this project to get a better understanding of building SOAP web services using Spring WS.
- build.gradle: Main gradle build file.
- server: Builds the web services server as a spring boot application.
- src/main/resources
- countries.xsd: Defines the SOAP resquests, responses, and data.
- data.sql: SQL file for creating rows in the H2 database.
- src/main/resources
- wsdl: Converts the countries.xsd into Java objects.
To run the project from the home directory:
./gradlew build
./gradlew :server:bootrun