Skip to content

Commit

Permalink
Adding the verification scripts.
Browse files Browse the repository at this point in the history
  • Loading branch information
algogrit committed Aug 1, 2019
1 parent 3cd94a0 commit f3db8da
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
9 changes: 9 additions & 0 deletions code-samples/02-Client-Server/soap-example/verify/request.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:gs="http://spring.io/guides/gs-producing-web-service">
<soapenv:Header/>
<soapenv:Body>
<gs:getCountryRequest>
<gs:name>Spain</gs:name>
</gs:getCountryRequest>
</soapenv:Body>
</soapenv:Envelope>
3 changes: 3 additions & 0 deletions code-samples/02-Client-Server/soap-example/verify/test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/usr/bin/env bash

curl --header "content-type: text/xml" -d @request.xml http://localhost:8080/ws

0 comments on commit f3db8da

Please sign in to comment.