vote up 2 vote down star
1

I've created a WCF service and when I browse to the endpoint I get the following fault:

<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>

I've fixed the problem but didn't enjoy the experience! Does anyone have any tips or tools for debugging problems like this?

flag

64% accept rate
Did you find a solution? I'm struggling with the same problem. – Tuoski May 5 at 7:52

2 Answers

vote up 5 vote down check

I've found SvcTraceViewer.exe to be the most valuable tool when it comes to diagnosing WCF errors.

link|flag
vote up 0 vote down

How did you resolve the problem? I'm having the same issue. Thanks.

link|flag
1  
David, welcome to StackOverflow. Please take the time to read the stackoverflow.com/faq. When you read it, you'll learn that this is not like other discussion forums or newsgroups you've used. This is a Q&A site. Ask a question - get an answer. If you don't find an Answer by searching, then please use the "Ask Question" button to ask a new question - don't tag on to the end of someone elses question. – John Saunders Aug 11 at 23:03

Your Answer

Get an OpenID
or

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