c# - How does WCF create/read SOAP Messages -
I know that WCF is a framework used to create web services, and when a service is started WSDL is automatically generated.
I also know that the BasicHttpBinding web service allows to expect SOAP messages to be moved to its closing point.
How does WCF handle soap messages in sending / receiving? How does the framework make this soap message and how to map the message body for Service Operations (given in the WSDL)?
There is a collection of binding binding elements WCF comes with some compulsive-to-box, As basic HTPP binding is made from some selected binding elements.
BasicHttpBinding uses an encoding element (exclusively) (D) Objects for and from the SOAP message
Comments
Post a Comment