47

你们知道如何使用 Curl 命令行 POST SOAP 来测试 Web 服务吗?

我有一个文件(soap.xml),其中附有所有的肥皂消息,我似乎无法正确发布它。

谢谢!

4

5 回答 5

43

发布字符串:

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

发布文件内容:

curl -d @soap.xml "http://www.example.com/target"
于 2008-09-17T14:49:30.857 回答
34

对于 SOAP 1.2 Web 服务,我通常使用

curl --header "content-type: application/soap+xml" --data @filetopost.xml http://domain/path
于 2011-01-01T15:30:11.093 回答
27

错误的。这对我不起作用。

对我来说,这个工作:

curl 
-H 'SOAPACTION: "urn:samsung.com:service:MainTVAgent2:1#CheckPIN"'   
-X POST 
-H 'Content-type: text/xml'   
-d @/tmp/pinrequest.xml 
192.168.1.5:52235/MainTVServer2/control/MainTVAgent2
于 2012-02-20T18:03:34.290 回答
8
curl -H "Content-Type: text/xml; charset=utf-8" \
-H "SOAPAction:" \
-d @soap.txt -X POST http://someurl
于 2012-11-20T14:32:52.160 回答
4

如果你想要一个比终端更流畅的界面,http ://hurl.it/很棒。

于 2010-04-24T12:43:18.210 回答