2

我创建了一个 WCF 服务,当我浏览到端点时,出现以下错误:

<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
  <s:Body>
    <s:Fault>
      <faultcode 
            xmlns:a="http://schemas.microsoft.com/ws/2005/05/addressing/none">
            a:ActionNotSupported
      </faultcode> 
      <faultstring xml:lang="en-GB">
            The message with Action '' cannot be processed at the receiver,
            due to a ContractFilter mismatch at the EndpointDispatcher. 
            This may be because of either a contract mismatch (mismatched
            Actions between sender and receiver) or a binding/security
            mismatch between the sender and the receiver. Check that sender
            and receiver have the same contract and the same binding
            (including security requirements, e.g. Message, Transport, None).
      </faultstring> 
    </s:Fault>
  </s:Body>
</s:Envelope>

我已经解决了问题,但不喜欢这种体验!有没有人有任何调试此类问题的技巧或工具?

4

1 回答 1

9

在诊断 WCF 错误时,我发现SvcTraceViewer.exe是最有价值的工具。

于 2008-08-20T16:47:01.590 回答