mvn clean package
mvn spring-boot:runOpen: http://localhost:8080/ws/bank.wsdl
- Method: POST
- URL: http://localhost:8080/ws
- Header: Content-Type: text/xml; charset=utf-8
- Body: raw (XML)
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ban="http://example.com/bank">
<soapenv:Header/>
<soapenv:Body>
<ban:GetAccountRequest>
<ban:accountId>A100</ban:accountId>
</ban:GetAccountRequest>
</soapenv:Body>
</soapenv:Envelope><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ban="http://example.com/bank">
<soapenv:Header/>
<soapenv:Body>
<ban:DepositRequest>
<ban:accountId>A100</ban:accountId>
<ban:amount>20.00</ban:amount>
</ban:DepositRequest>
</soapenv:Body>
</soapenv:Envelope><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ban="http://example.com/bank">
<soapenv:Header/>
<soapenv:Body>
<ban:DepositRequest>
<ban:accountId>A100</ban:accountId>
<ban:amount>-5</ban:amount>
</ban:DepositRequest>
</soapenv:Body>
</soapenv:Envelope>