vote up 3 vote down star
1

Do you guys know how I can use the Curl command line to POST SOAP to test a web service?

I have a file (soap.xml) which has all the soap message attached to it I just don't seem to be able to properly post it.

Thanks!

flag

25% accept rate

4 Answers

vote up 2 vote down

Posting a string:

curl -d "String to post" "http://www.example.com/target"

Posting the contents of a file:

curl -d @soap.xml "http://www.example.com/target"
link|flag
vote up 1 vote down

@Luca

Please note that the data should be URL-encoded.

link|flag
vote up 1 vote down

He's not doing SOAP with PHP. He just wanted a command to send a HTTP POST with a SOAP-Request in it. So don't just propose things not needed here.

link|flag
vote up 0 vote down

If you are doing soap with php I recommend checking out nusoap

http://sourceforge.net/projects/nusoap/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.