mirror of
https://gitlab.com/spaceti-app/integrations/common/server-sdk.git
synced 2026-07-12 22:20:45 +02:00
15 lines
399 B
Bash
Executable File
15 lines
399 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# @see https://stackoverflow.com/a/55352633/1917249
|
|
|
|
ACTION_YOU_WANT_TO_CALL="blz:getBank"
|
|
|
|
XMLFILENAME=test03.xml
|
|
|
|
URL_OF_THE_SOAP_WEB_SERVICE_ENDPOINT="http://www.thomas-bayer.com/axis2/services/BLZService"
|
|
|
|
curl -X POST $URL_OF_THE_SOAP_WEB_SERVICE_ENDPOINT \
|
|
-H 'Content-Type: text/xml' \
|
|
-H 'SOAPAction: $ACTION_YOU_WANT_TO_CALL' \
|
|
--data @$XMLFILENAME > test03-response.xml
|