What Is WCF?

WCF stands for Windows Communication Foundations.
WCF combines the functionality from ASP.NET Web Services, .NET Remoting, Message Queuing and Enterprise Services.
WCF1.gif
WCF provides the following features:

Understanding WCF

These days we are creating the software/application that should be capable of communication with other applications as well. Communication with other application simply means either sharing/exchanging the data or sharing the logic.
Now, this communication may be one of the following two kinds:
  1. Over an intranet (the same Network/Platform, in other words, .NET application to .NET application)
  2. Over the internet (cross-platform maybe ASP.NET to J2EE application)
Suppose we are writing a .NET Software with n-tier architecture in which a Windows Forms client needs to communicate with the server in the same network. In such case we may go for .NET Remoting for communication between client and server.
Suppose, once our software mentioned above is ready, we need to expose some business logic to another J2EE application. This J2EE application is supposed to use our .NET application's logic over the WWW. In such a case we will need to write a new ASP.NET Web Service to expose the logic.
The following picture shows the limitation of .NET Remoting:
WCF2.gif
WCF helps us to overcome this kind of scenario since a WCF Service can be used as a .NET Remoting Component and ASP.NET Web Services as well.
WCF3.gif

WCF in Real-Time Scenario

Suppose a 7 Star hotel has contacted you for software that will help the organization to managing the hotel's room booking for a "Room Booking System". Apart from its own features software should be capable of the following:
Of course we are supposed to implement the application using Microsoft .NET Technology.
Now, since we know that in order to communicate with another .NET application within the same network .NET Remoting is the best option. But based on our requirements our application should be capable of interaction with another J2EE application over the WWW. So we can't use .NET Remoting. ASP.NET web services may work fine but the correct option, for now, would be a WCF Service.
WCF4.gif

Differences between WCF and ASP.NET Web ServicesAtomic Transactions

Windows Communication Foundation (WCF) ASP.NET Web Service
WCF supports multiple bindings HTTP, WSHTTP, TCP, MSMQ. ASP.NET Web Services supports only HTTP binding.
WCF supports Atomic Transactions*. ASP.NET Web Services does not support Atomic Transactions*.
By default, WCF uses SOAP for sending and receiving the messages. But WCF can support any kind of message format, not just SOAP. ASP.NET Web Services can send and receive messages via the SOAP only.
The System.Runtime.Serialization.DataContract and System.Runtime.Serialization.DataMember attributes of the WCF's System.Runtime.Serialization assembly can be added for .NET types to indicate that instances of the type are to be serialized into XML, and which specific fields or properties of the type are to be serialized. ASP.NET Web Services uses XmlSerializer to translate the XML data (Message Send or received) into .NET objects.
The following example describes what is meant by "Atomic Transactions".
Consider that Bank A and Bank B want to interact with someone's account at the same time. Both banks want to withdraw from the account and the account has $10.00 in it. If Bank A takes $7.00 and at the same time Bank B tries to get $5.00 then what will happen? When they start the transaction each bank believes there is $10.00 available in the account. When one of them finishes the other one will find there is not enough money to finish the transaction.
This scenario is common for computer systems and you can see it many times in memory management, IO operations and database interactions.
Atomic transactions are a way to avoid this problem. They simply lock on a transaction and do not allow any other transaction to interact with the resource. If anything fails during the Atomic transaction then everything will return to the state before the transaction started.

WCF Communication Model

WCF follows a Client-Server Architecture. Communication between Client and Server are established using Endpoints exposed by the WCF Service. Endpoints are nothing but the locations defined by a service through which a message can be sent and received. The service may have multiple end points.
WCF5.gif

Know some terms/ Keywords

WCF Binding Comparisons

As we explained in Point 4, WCF supports multiple bindings, for example HTTP, TCP and so on. The following table describes the various bindings supported by WCF. Bindings are configurable and can be achieved by changing the web.config file

Binding Class Name Transport Message Encoding Message Version Security Mode RM Tx Flow*
BasicHttpBinding HTTP Text SOAP 1.1 None X X
WSHttpBinding HTTP Text SOAP 1.2
WS-A 1.0
Message Disabled WS-AT
WSDualHttpBinding HTTP Text SOAP 1.2
WS-A 1.0
Message Enabled WS-AT
WSFederationHttpBinding HTTP Text SOAP 1.2
WS-A 1.0
Message Enabled WS-AT
NetTcpBinding TCP Binary SOAP 1.2 Transport Disabled Ole Tx
NetPeerTcpBinding P2P Binary SOAP 1.2 Transport X X
NetNamedPipesBinding Named Pipes Binary SOAP 1.2 Transport X Ole Tx
NetMsmqBinding MSMQ Binary SOAP 1.2 Message X X
MsmqIntegrationBinding MSMQ X** X Transport X X
CustomBinding You decide You decide You decide You decide You decide You decide
Where,
  1. X = Not Supported
  2. X = Not Supported
  3. WS-A = WS-Addressing
  4. WS-AT = WS-AtomicTransaction
  5. OleTx = OleTransactions
  6. * Transaction flow is always disabled by default, but when you enable it, these are the default tx protocols
  7. * This binding doesn't use a WCF message encoding; instead it lets you choose a pre-WCF serialization format

How to Create a Sample WCF application with VS2008?

Create/ Manage database
Before proceeding toward the WCF Service Creation, we need to create a database say, "WCF" with one table having the following schema:
WCF6.gif
Where, ReservationId is an auto-generated Primary Key column.
Note: You may also restore the backup of the database given along with the sample application.
Create WCF Service
  1. Open Visual Studio
  2. Select "File" -> "New" -> "Project..."
  3. From the left panel, select Web node of your language VB.NET/C#.NET
  4. Now among the templates you will see "WCF Service Application"
  5. Select the same (WCF Service Application)
  6. Provide Suitable Name (Say Practice.WCF) and click on the "OK" button.

    WCF7.gif
  7. Modify the connection strings section of the web.config file of the WCF Service.
    1. <connectionStrings
    2. addname="con"connectionString="Data Source=PRODSK0542;Initial Catalog=WCF;User
    3. Id=sa;Password=Swayam1;" providerName="System.Data.SqlClient"/>
    4. </connectionStrings>
  8. By default, Visual Studio will create a Service and an Interface Service1.svc and IService1.cs
  9. Add a new class, "RoomReservationRequest.cs" (DataContract)
  10. Import the namespace System.Runtime.Serialization; if not imported
  11. Create a property with the same data type for each column present in the RoomReservationRequest table. Decorate the "RoomReservationRequest" class with the "[DataContract]" attribute and each property with "[DataMember]".
    1. namespace Practice.WCF
    2. {
    3. [DataContract]
    4. publicclassRoomReservationRequest
    5. {
    6. [DataMember]
    7. public int ReservationId
    8. {
    9. get; set;
    10. }
    11. [DataMember]
    12. public int NoOfRooms
    13. {
    14. get; set;
    15. }
    16. [DataMember]
    17. public string TypeOfRoom
    18. {
    19. get; set;
    20. }
    21. [DataMember]
    22. publicDateTime FromDate
    23. {
    24. get; set;
    25. }
    26. [DataMember]
    27. publicDateTime ToDate
    28. {
    29. get; set;
    30. }
    31. [DataMember]
    32. public string ContactPersonName
    33. {
    34. get; set;
    35. }
    36. [DataMember]
    37. public string ContactPersonMail
    38. {
    39. get; set;
    40. }
    41. [DataMember]
    42. public string ContactPersonMob
    43. {
    44. get; set;
    45. }
    46. [DataMember]
    47. public string Comments
    48. {
    49. get; set;
    50. }
    51. [DataMember]
    52. public string Status
    53. {
    54. get; set;
    55. }
    56. }
    57. }
  12. Add a new class "RoomReservationData" and write two methods, such as ReserveRoom and GeReservations.
    1. namespace Practice.WCF
    2. {
    3. internalclassRoomReservationData
    4. {
    5. private string connectionString =ConfigurationManager.ConnectionStrings["con"].ConnectionString;
    6. internal bool ReserveRoom(RoomReservationRequest roomReservationReq)
    7. {
    8. SqlConnection connection = GetConnection();
    9. string sqlCommand ="INSERT INTO RoomReservationRequest(NoOfRooms, TypeOfRoom, FromDate, ToDate, ContactPersonName, " +
    10. "ContactPersonMail, ContactPersonMob, Comments, Status) VALUES (" +
    11. "@NoOfRooms, @TypeOfRoom, @FromDate, @ToDate, @ContactPersonName, " +
    12. "@ContactPersonMail, @ContactPersonMob, @Comments, @Status)";
    13. SqlCommand command = connection.CreateCommand();
    14. command.CommandText = sqlCommand;
    15. command.Parameters.Add("@NoOfRooms", System.Data.SqlDbType.Int);
    16. command.Parameters.Add("@TypeOfRoom", System.Data.SqlDbType.NVarChar, 20);
    17. command.Parameters.Add("@FromDate", System.Data.SqlDbType.DateTime );
    18. command.Parameters.Add("@ToDate", System.Data.SqlDbType.DateTime);
    19. command.Parameters.Add("@ContactPersonName", System.Data.SqlDbType.NVarChar, 50);
    20. command.Parameters.Add("@ContactPersonMail", System.Data.SqlDbType.NVarChar, 50);
    21. command.Parameters.Add("@ContactPersonMob", System.Data.SqlDbType.NVarChar, 20);
    22. command.Parameters.Add("@Comments", System.Data.SqlDbType.NVarChar, 200);
    23. command.Parameters.Add("@Status", System.Data.SqlDbType.NVarChar, 200);
    24. command.Parameters["@NoOfRooms"].Value = roomReservationReq.NoOfRooms;
    25. command.Parameters["@TypeOfRoom"].Value = roomReservationReq.TypeOfRoom;
    26. command.Parameters["@FromDate"].Value = roomReservationReq.FromDate;
    27. command.Parameters["@ToDate"].Value = roomReservationReq.ToDate;
    28. command.Parameters["@ContactPersonName"].Value = roomReservationReq.ContactPersonName;
    29. command.Parameters["@ContactPersonMail"].Value = roomReservationReq.ContactPersonMail;
    30. command.Parameters["@ContactPersonMob"].Value = roomReservationReq.ContactPersonMob;
    31. command.Parameters["@Comments"].Value = roomReservationReq.Comments;
    32. command.Parameters["@Status"].Value = roomReservationReq.Status;
    33. int rowsEffected =0;
    34. try
    35. {
    36. rowsEffected = command.ExecuteNonQuery();
    37. }
    38. finally
    39. {
    40. if (connection !=null)
    41. {
    42. connection.Close();
    43. connection.Dispose();
    44. }
    45. }
    46. return rowsEffected > 0;
    47. }
    48. internalRoomReservationRequest[] GetReservations(DateTime fromDate, DateTime toDate)
    49. {
    50. List<RoomReservationRequest> reservedRooms = newList<RoomReservationRequest>();
    51. SqlConnection connection = GetConnection();
    52. SqlCommand command = connection.CreateCommand();
    53. command.CommandText ="SELECT ReservationId, NoOfRooms, TypeOfRoom, FromDate" +
    54. ",ToDate, ContactPersonName, ContactPersonMail, ContactPersonMob, Comments, Status "+
    55. "FROM RoomReservationRequest "+
    56. "WHERE FromDate > @FromDate AND ToDate<@ToDate";
    57. command.Parameters.Add("@FromDate", System.Data.SqlDbType.DateTime);
    58. command.Parameters.Add("@ToDate", System.Data.SqlDbType.DateTime);
    59. command.Parameters["@FromDate"].Value = fromDate;
    60. command.Parameters["@ToDate"].Value = toDate;
    61. SqlDataReader reader =null;
    62. try
    63. {
    64. reader = command.ExecuteReader(CommandBehavior.CloseConnection);
    65. while (reader.Read())
    66. {
    67. RoomReservationRequest roomReservationRequest = newRoomReservationRequest();
    68. roomReservationRequest.ReservationId =Convert.ToInt16(reader[0]);
    69. roomReservationRequest.NoOfRooms =Convert.ToInt16(reader[1]);
    70. roomReservationRequest.TypeOfRoom = reader[2].ToString();
    71. roomReservationRequest.FromDate =Convert.ToDateTime(reader[3]);
    72. roomReservationRequest.ToDate =Convert.ToDateTime(reader[4]);
    73. roomReservationRequest.ContactPersonName = reader[5].ToString();
    74. roomReservationRequest.ContactPersonMail = reader[6].ToString();
    75. roomReservationRequest.ContactPersonMob = reader[7].ToString();
    76. roomReservationRequest.Comments = reader[8].ToString();
    77. roomReservationRequest.Status = reader[9].ToString();
    78. reservedRooms.Add(roomReservationRequest);
    79. }
    80. }
    81. finally
    82. {
    83. if (reader !=null)
    84. {
    85. reader.Close();
    86. reader.Dispose();
    87. }
    88. if (connection != null)
    89. {
    90. connection.Close();
    91. connection.Dispose();
    92. }
    93. }
    94. return reservedRooms.ToArray();
    95. privateSqlConnection GetConnection()
    96. {
    97. SqlConnection connection = newSqlConnection(connectionString);
    98. try
    99. {
    100. connection.Open();
    101. }
    102. finally
    103. {
    104. }
    105. return connection;
    106. }
    107. }
    108. }
  13. Declare two methods for the interface IService1, such as ReserveRoom and GetReservations.
    1. namespace Practice.WCF
    2. {
    3. [ServiceContract]
    4. publicinterfaceIService1
    5. {
    6. [OperationContract]
    7. bool ReserveRoom(RoomReservationRequest reservationRequest);
    8. [OperationContract]
    9. RoomReservationRequest[] GetReservations(DateTime fromDate, DateTime toDate);
    10. }
    11. }
  14. Implement the Interface ISErvice1 in the Service1.svc.cs file. Create an instance of the class "RoomReservationData" that we implemented in Step 12 and use it in the implemented methods.
    1. namespace Practice.WCF
    2. {
    3. publicclassService1 :IService1
    4. {
    5. #region IService1 Members
    6. privateRoomReservationData roomReservationData = newRoomReservationData();
    7. public bool ReserveRoom(RoomReservationRequest reservationRequest)
    8. {
    9. return roomReservationData.ReserveRoom(reservationRequest);
    10. }
    11. public RoomReservationRequest[] GetReservations(DateTime fromDate, DateTime toDate)
    12. {
    13. return roomReservationData.GetReservations(fromDate, toDate);
    14. }
    15. #endregion
    16. }
    17. }
  15. Now we are done with the implementation of WCF Service. Set the Service1 as the Startup page. Run your WCF application. The following screen should be the result.

    WCF8.gif
  16. Publish the WCF Service.
    • To publish the service, right-click on "Practice.WCF.csproj" and select "Publish".

      WCF9.gif
    • Enter the location where you need to publish/host the service.

      WCF10.gif
    • Click on the "Publish" button to publish the site.
  17. You may check the published WCF Service by typing the URL into browser,

    for example, http://localhost/wcf/Service1.svc: a page the same as in Step 14 will appear.

How to Consume the WCF Service?

Generate the Class and Config File using svcutil.exe
You might have noticed the message displayed while browsing the service as in the following:
WCF11.gif
We now need to generate the classes that our Client application will use to consume the service.

We may generate the classes/configuration using the tool svcutil.exe. Use the following procedure to generate the Class/Config file.
Create Client to Consume Service
  1. Open Visual Studio
  2. Select "File" -> "New" -> "Project..."
  3. Select "Windows Forms application"
  4. Create a Form similar to the following:

    WCF13.gif
  5. Include the class generated by Step iii of Section 8.1
  6. Right-click on the project and select the option "Add Service Reference".

    WCF14.gif
  7. Enter the URL/ Address where the service is hosted and click the "Go" button to find the service. You may see the Services Methods/Logic exposed by WCF Service

    WCF15.gif
  8. Click "OK" to add the service.
  9. Double-click the "Room Reservation Enquiry" button to write the logic. Ensure that you have imported the
    1. private void btnEnquiry_Click(object sender, EventArgs e)
    2. {
    3. Service1Client client = newService1Client();
    4. RoomReservationRequest[] reservationEnquiry =null;
    5. reservationEnquiry = client.GetReservations(dateFromDate.Value, dateToDate.Value);
    6. if (reservationEnquiry.Length > 0)
    7. {
    8. gvReservationData.DataSource = reservationEnquiry;
    9. gvReservationData.Visible = true;
    10. }
    11. else
    12. {
    13. gvReservationData.Visible = false;
    14. lblMessage.Text = "Sorry data not available.";
    15. }
    16. }
  10. When we added the reference of the Service to the client project, one configuration file would also have been added to the application, in other words App.Config. Replace the <system.serviceModel> node of this file by the <system.serviceModel> node of the output.config file generated into "Step- 3" of "Section 7.1".
  11. Run the client application. Enter the "From Date" and "To Date" then click the "Enquiry" button to test the application.
How to Use the Source
Unzip the file WCF.zip, you may find the following files:
  1. DBBackup.zip
  2. Source.zip
Restore / Create Database
Unzip the file DBBackup.zip and restore the WCF.bak file to SQL Server Database or you may create the database as suggested in Step 8.1.
Now, unzip the file Source.zip, you may find:
  1. WCFService
  2. WCFClient
Publish/Host Client
Use WCF Client to consume the services
Note: You may need to modify the App.Config file if you have not published the WCF Service to the local machine.