Created
July 12, 2016 02:20
-
-
Save sergnechaev/2022feebc2988a51e195a624a387a641 to your computer and use it in GitHub Desktop.
Make a SOAP request via WGET
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wget --post-file=soaprequest.xml --header="Content-Type: application/soap+xml" --header="SOAPAction: \"soapaction\"" http://myhost:my_port_number/service/great.do -O response.xml | |
Where: | |
soaprequest.xml - contains the soap request (wrapped in SOAP envelop). | |
http://myhost:my_port_number/service/great.do - service endoint URL | |
response.xml - contains a response from the server |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hi, a question, how do you call with certificate.pem, to use wget same