在发送 soap 消息 "manually" 时,我收到 WCF 的 AddressingNone 错误

In sending a soap message "manually" I get AddressingNone error with WCF

我试图在不使用 WCF 客户端基础结构的情况下通过 SOAP 消息(我已提取)发送到我的 WCF 服务。 在不使用我的生产消息(和代码)的情况下,我已经能够设置相同问题的虚拟版本(感谢 WF_WCF_Samples)。

所以合同看起来像这样:

[ServiceContract(Namespace="http://Microsoft.Samples.UsingUsing")]
public interface ICalculator
{
    [OperationContract]
    double Add(double n1, double n2);
    [OperationContract]
    double Subtract(double n1, double n2);
    [OperationContract]
    double Multiply(double n1, double n2);
    [OperationContract]
    double Divide(double n1, double n2);
}

查看实际 WCF 客户端发送的 SOAP 消息,我在 WCF 跟踪中得到了这个:

<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
    <s:Header>
        <To s:mustUnderstand="1" xmlns="http://schemas.microsoft.com/ws/2005/05/addressing/none">http://localhost:56852/service.svc</To>
        <Action s:mustUnderstand="1" xmlns="http://schemas.microsoft.com/ws/2005/05/addressing/none">http://Microsoft.Samples.UsingUsing/ICalculator/Divide</Action>
    </s:Header>
    <s:Body>
        <Divide xmlns="http://Microsoft.Samples.UsingUsing">
            <n1>0</n1>
            <n2>0</n2>
        </Divide>
    </s:Body>
</s:Envelope>

这是来自工作电话。 但是,如果我尝试这样做,我会在 WCF 跟踪中记录到以下异常:

Addressing Version 'AddressingNone (http://schemas.microsoft.com/ws/2005/05/addressing/none)' does not support adding WS-Addressing headers.

我试过像 SoapUI 甚至 Httpie 之类的东西来发送 XML 文件:

所以我收到 HTTP 错误 400 - 错误请求。

我目前正在使用 basicHttp(s)Binding WCF 绑定。

我试过弄乱绑定,但没有任何效果。有什么想法吗?

当我查看 WCF 跟踪(在服务端,而不是客户端)时,我很惊讶 WCF 实际上在 SOAP 消息中添加了以下 header:

<To s:mustUnderstand="1" xmlns="http://schemas.microsoft.com/ws/2005/05/addressing/none">http://localhost:56852/service.svc</To>
<Action s:mustUnderstand="1" xmlns="http://schemas.microsoft.com/ws/2005/05/addressing/none">http://Microsoft.Samples.UsingUsing/ICalculator/Divide</Action>

当我拿出来的时候,我的请求顺利通过了。

在设置 Wireshark 之类的东西时,我设法看到实际消息不包含此 header。在跟踪期间,WCF 在某处将其添加到 SOAP header 中。但是发送通过是无效的。 HTTP Soap Action header 就足够了。