soap client-server example with spring boot
Use the git to download repository.
git clone https://github.com/OkanUzun/soap-with-springboot.git
go to the downloaded repository named soap-with-springboot
go to folder named spring-boot-soap-server
package project
mvn clean package -Dmaven.test.skip=true (use ./mvnw instead of mvn if maven not installed)
run application
java -jar target/spring-boot-soap-server-0.0.1-SNAPSHOT.jar
go to folder named spring-boot-soap-client
package project
mvn clean package -Dmaven.test.skip=true (use ./mvnw instead of mvn if maven not installed)
run application
java -jar target/spring-boot-soap-client-0.0.1-SNAPSHOT.jar
server side application must be started first.