Skip to content

Latest commit

 

History

History
46 lines (35 loc) · 832 Bytes

README.md

File metadata and controls

46 lines (35 loc) · 832 Bytes

basic-soap-webservice

Template for SOAP webservice with spring

Tecnologies

  • Java 8
  • Spring Boot
  • Maven 3
    • Release plugin
    • FindBugs plugin
  • JUnit

Builds

To generate local builds with maven:

 mvn clean install

To generate versioned builds for production and homologation enviroments:

  mvn release:clean
  mvn release:prepare

Deploys

After building project, get .war file and run on your current web server:

  • Tomcat
	./startup.sh

Requests

After starting the server, execute:

Echo:

 curl --header "content-type: text/xml" -d @(?path/)EchoRequest.xml (your server)/basic/endpoints/BasicDetailsService.wsdl

Insert Basic:

 curl --header "content-type: text/xml" -d @(?path/)NewRequest.xml (your server)/basic/endpoints/BasicDetailsService.wsdl