我有一个WCF服务,它是使用Visual Studio 2013 New Project 向导创建的。我可以使用 WCF测试客户端来调用此服务,该工作正常。但是,我想使用 curl 从命令行调用该服务。
我所做的是从WCF测试客户端复制请求内容,如下所示:
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Header>
<Action s:mustUnderstand="1" xmlns="http://schemas.microsoft.com/ws/2005/05/addressing/none">http://tempuri.org/IService1/TestStr</Action>
</s:Header>
<s:Body>
<TestStr xmlns="http://tempuri.org/" />
</s:Body>
</s:Envelope>
并将其粘贴在名为Test.txt
的文件中。然后,从命令行我做了:
curl --verbose --header "Content-Type:text/xml; charset=utf-8" -X POST -d @Test.txt http://localhost:64777/Service1.svc
我得到的是:
* Adding handle: conn: 0x50e5a0
* Adding handle: send: 0
* Adding handle: recv: 0
* Curl_addHandleToPipeline: length: 1
* - Conn 0 (0x50e5a0) send_pipe: 1, recv_pipe: 0
* About to connect() to localhost port 64777 (#0)
* Trying 127.0.0.1...
* Connected to localhost (127.0.0.1) port 64777 (#0)
> POST /Service1.svc HTTP/1.1
> User-Agent: curl/7.33.0
> Host: localhost:64777
> Accept: */*
> Content-Type:text/xml; charset=utf-8
> Content-Length: 343
>
* upload completely sent off: 343 out of 343 bytes
< HTTP/1.1 400 Bad Request
< Cache-Control: private
* Server Microsoft-IIS/8.0 is not blacklisted
< Server: Microsoft-IIS/8.0
< X-AspNet-Version: 4.0.30319
< X-SourceFiles: =?UTF-8?B?YzpcdXNlcnNcbWNocmlzdGVuc2VuXGRvY3VtZW50c1x2aXN1YWwgc3R1ZGlvIDIwMTNcUHJvamVjdHNcV2NmR2VuZXJpY3NcV2NmR2VuZXJpY3NcU2VydmljZTEuc3Zj?=
< X-Powered-By: ASP.NET
< Date: Tue, 06 May 2014 18:47:29 GMT
< Content-Length: 0
<
* Connection #0 to host localhost left intact
WCF测试客户端如何调用我的Web服务以及Curl如何调用我的Web服务之间有什么区别?我的网址有误吗?我错过了一些HTTP标头吗?谢谢!
更新
我也尝试了网址http://localhost:64777/Service1.svc/TestStr
。我还尝试了编码文件:
%3Cs%3AEnvelope%20xmlns%3As%3D%22http%3A%2F%2Fschemas.xmlsoap.org%2Fsoap%2Fenvelope%2F%22%3E%0A%20%20%3Cs%3AHeader%3E%0A%20%20%20%20%3CAction%20s%3AmustUnderstand%3D%221%22%20xmlns%3D%22http%3A%2F%2Fschemas.microsoft.com%2Fws%2F2005%2F05%2Faddressing%2Fnone%22%3Ehttp%3A%2F%2Ftempuri.org%2FIService1%2FTestStr%3C%2FAction%3E%0A%20%20%3C%2Fs%3AHeader%3E%0A%20%20%3Cs%3ABody%3E%0A%20%20%20%20%3CTestStr%20xmlns%3D%22http%3A%2F%2Ftempuri.org%2F%22%20%2F%3E%0A%20%20%3C%2Fs%3ABody%3E%0A%3C%2Fs%3AEnvelope%3E
两者都只会导致错误请求。
答案 0 :(得分:2)
您可以使用Fiddler捕获确切的HTTP请求。遗憾的是,WCF跟踪不捕获通过线路发送的确切字节。它报告已发送的实际XML的修改副本。 Fiddler不了解Web服务,所以它不会这样做。
答案 1 :(得分:0)
看起来您创建了一个SOAP Web服务,但我没有看到您的请求数据示例中包含任何SOAP头。在您的Web服务代码中 - 添加一行以捕获服务通过OperationContext对象接收的实际请求:OperationContext.Current.RequestContext.RequestMessage.ToString()
您应该能够从RequestMessage
属性中捕获数据,将其保存到文件中,然后使用CURL提交。
(您可能需要删除<Action>
元素,因为我认为这些元素是由WCF添加的,如果您尝试提交包含它们的请求,可能会导致问题。