Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I implement a web service in WCF such that it does not require the SOAPAction header to be present in the request, and would thus dispatch the call using the message body root element name? By default, BasicHttpBinding requires the SOAPAction.

I need this to provide compatibility with a client that does not use SOAPActions. This is my SOAP message:

<?xml version='1.0' encoding='UTF-8'?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
<env:Body>
<messageDeliveryReport xmlns="http://bogus/ns"><status>D</status><systemName>cc</systemName></messageDeliveryReport>
</env:Body></env:Envelope>

and I want it to call 'messageDeliveryReport' operation. Thanks!

share|improve this question

2 Answers

up vote 2 down vote accepted

It's not an issue of BasicHttpBinding, it's an issue of adhering to the SOAP 1.1 standard which says:

An HTTP client MUST use this header field when issuing a SOAP HTTP Request.

So what you're dealing with is a client that doesn't conform to a standard that's existed since 2000. You might be able to work around this problem by implementing one of the extensibility points of WCF which are explained in greater detail in the MSDN article Extending WCF with Custom Behaviors, probably either IDispatchMessageInspector or IDispatchOperationSelector, but the request may not even make it that far since the message really isn't a valid SOAP request to begin with.

share|improve this answer
This is because the client was implemented for *.asmx ASP.Net web service and it never used SOAPAction header. But now I think it makes more sense to try to convince client app developers to update the client and make it obey the standard. – nightwatch Nov 2 '11 at 15:52
2  
problem is that WCF still needs the SOAPAction header for SOAP 1.2 calls, which is non-compliant with the standard. – gbjbaanb Sep 28 '12 at 10:07

You can follow this sample to build custom behavior for dispatching SOAP messages to operation based on root element of message body.

share|improve this answer
...the client side of these stacks might send messages with an empty or arbitrary HTTP SoapAction header... I think an empty header is ok, the problem is the header isn't there at all. – Joel C Nov 2 '11 at 18:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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