WCF 4.0 : Discoverable Service

Continuing my WCF 4.0 Tutorials series, in this small article, I have explained the WCF 4.0 Discovery feature. This feature is used when the location of the service gets changed e.g. changing in the hosting environment or changing the physical address of the server etc. With this feature, we can very well say that hosting is not controlled only by the service creator or publisher.

For implementing the WCF discovery feature, the client needs to specify a criteria using which the service address can be looked up for communication. This is a mechanism of probing in which the client defines the criteria and looks for the endpoint. Generally client specifies the Contract for probing. When the client knows about the address of the WCF service, then a call to the service can be made, since the contract information is now available with the client. Let’s see some code.

Step 1: Open VS2010 and create a blank solution, name it as ‘WCF40_Runtime_Discovering_WCF_Services’. In this service, add a WCF Service application, name it as ‘WCF_SampleService’. Rename IService1.cs to IService.cs and Service1.Svc to Service.svc.

Step 2: Add a ServiceContract, OperationContract and DataContract in the IService.cs as below:

WCF Service Contract

Step 3: Implement the IService service contract interface in the Service class as shown below:

WCF GetEmployees

Step 4: Write the following configuration in the web.config file. Add an endpoint with name udpDiscovery in the configuration. This endpoint is used to make the service discoverable. The UdpDiscoveyEndpoint class is used to make the service discoverable. This is a standard preconfigured endpoint for WCF Discoverable services.

WCF Discoverable Config

Step 5: Publish the service on IIS.

Step 6: In the same solution, add a new WPF windows application, name it as ‘WPF40_DynamicClient’. In this client application, add the WCF Service reference. Name the namespace as ‘MyRef’.

Step 7: Open the app.config in the client application, and add the following endpoint in it.

<endpoint name="udpDiscoveryEndpoint" kind="udpDiscoveryEndpoint"/>

Step 8: In the MainPage.xaml, add a button and a DataGrid with AutoGeneratedColumns property set to ‘false’. Also define DataGridColumns as shown below:

image


image

Step 9: In the client project, add a reference to ‘System.ServiceModel.Discovery’. This is required to access the Probing classes. Also use this class in the MainWindow.Xaml.cs as below:

using System.ServiceModel;
using System.ServiceModel.Discovery;

Step 10: In the button click event, now write the following code:
WCF Proxy call

The above code makes use of the following classes:

WCF classes
In the above code, we read the address in the for-each loop, create a proxy object and then make a call to WCF service.

Step 11: Run the application and click on the ‘Get Employees’ button, the DataGrid will show all employees. You will find that the time to display data in the DataGrid is more because since this is probing, it may take time to complete the process for request and response.

image

Note: In a production scenario you can think of making an Async call to the WCF service so that the UI is not blocked till the call completes.

Download the source code




About The Author

Mahesh Sabnis is a Microsoft MVP having over 18 years of experience in IT education and development. He is a Microsoft Certified Trainer (MCT) since 2005 and has conducted various Corporate Training programs for .NET Technologies (all versions). He also blogs regularly at DotNetCurry.com. Follow him on twitter @maheshdotnet

No comments: