Expert Dot Net

Trust me to find new way !

How to Create Basic HTTP Binding in WCF

BasicHttpBinding

BasicHttpBinding is suitable for communicating with ASP.NET Web Service (ASMX) based services that conform to the WS-Basic Profile that conforms with Web Services.

  1. This binding uses HTTP as the transport and text/XML as the default message encoding.
  2. Security is disabled by default.
  3. This binding does not support WS-* functionalities like WS- Addressing, WS-Security, WS-ReliableMessaging.

Let's get started. Use the following procedure.

  1. Create a WCF basicHttpBinding project.
  2. Start Visual Studio and select New Project from the Start page or from the File menu, select New and then Project.
  3. After selecting, a dialog will pop up showing all the templates provided by Visual Studio.
  4. From the Installed Templates select C# then inside that select WCF and inside that you will select WCF Service Application. 
blog comments powered by Disqus