https://github.com/marcosrachid/basic-soap-webservice
Template for SOAP webservice with spring
https://github.com/marcosrachid/basic-soap-webservice
java java-8 maven soap soap-webservice spring spring-boot
Last synced: about 2 months ago
JSON representation
Template for SOAP webservice with spring
- Host: GitHub
- URL: https://github.com/marcosrachid/basic-soap-webservice
- Owner: marcosrachid
- Created: 2015-12-03T03:13:55.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-12-12T21:08:56.000Z (over 10 years ago)
- Last Synced: 2025-07-03T13:05:55.922Z (12 months ago)
- Topics: java, java-8, maven, soap, soap-webservice, spring, spring-boot
- Language: Java
- Size: 20.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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:
```bash
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
```bash
./startup.sh
```
## Requests
After starting the server, execute:
Echo:
```bash
curl --header "content-type: text/xml" -d @(?path/)EchoRequest.xml (your server)/basic/endpoints/BasicDetailsService.wsdl
```
Insert Basic:
```bash
curl --header "content-type: text/xml" -d @(?path/)NewRequest.xml (your server)/basic/endpoints/BasicDetailsService.wsdl
```