WCF Soap Actions in HTTP header or SOAP header?

前端 未结 4 1078
自闭症患者
自闭症患者 2021-01-04 04:34

I\'m a little confused about how SOAPAction is implemented in WCF (and other web service frameworks for that matter).

In a test client, I have a Client Message Inspe

4条回答
  •  情歌与酒
    2021-01-04 05:23

    This is a problem with WCF not following the standards.

    SOAP 1.1 uses the SOAPAction header to decide what method to call, but this was a bit messy as the method name was embedded elsewhere in the message. SOAP 1.2 resolved this and added the action to content-type header, and deprecated the SOAPAction header (though its now an optional for those clients that still want to send it).

    See an o'reilly blog page for some details.

提交回复
热议问题