Click here to Skip to main content
15,887,746 members
Articles / Programming Languages / C#

WS-Discovery for WCF

Rate me:
Please Sign up or sign in to vote.
4.95/5 (31 votes)
27 Nov 2008CPOL12 min read 139.7K   3.3K   86  
This article describes the design, implementation, and usage of WS-Discovery for Windows Communication Foundation (WCF).
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ServiceModel;
using Masieri.ServiceModel.WSDiscovery;
using Masieri.ServiceModel.WSDiscovery.Transport;
using Masieri.ServiceModel.WSDiscovery.Messages;
using System.IO;
using System.Xml;
using System.ServiceModel.Channels;
using System.Threading;
using System.ServiceModel.Description;
using Masieri.ServiceModel.WSDiscovery.Diagnostics;
using Masieri.ServiceModel.WSDiscovery.Client;

namespace ClientTest
{
  [ServiceContract()]
  public interface IServiceSample
  {
    [OperationContract()]
    string GetString(string parToReturn);
  }
  [ServiceContract()]
  public interface IServiceSample2
  {
    [OperationContract()]
    int GetNumber(int parToReturn);
  }
  class Program
  {
    static void Main(string[] args)
    {
      try
      {

        //TestCatchAll();
        TestSample1();

      }
      catch (NoDiscoveredEndpointException)
      {
        Console.WriteLine("NoDiscoveredEndpointException");
        Console.ReadLine();
        return;
      }
      Console.ReadLine();

    }
    private static void TestCatchAll()
    {
      DiagnosticHelper helper = new DiagnosticHelper();
      //Wait 5 sec
      Thread.Sleep(5000);
      List<ClientMemento> list= helper.MementoList;
    }
    private static void TestSample1()
    {
      DiscoveryClient<IServiceSample> proxy = new DiscoveryClient<IServiceSample>("http://myscope.tempuri.org/");
      for (int i = 0; i < 10; i++)
      {
        //Add custom header in the request to test it
        using (DiscoveryOperationContextScope<IServiceSample> os = new DiscoveryOperationContextScope<IServiceSample>(proxy))
        {
          os.OutgoingHeaders.Add(MessageHeader.CreateHeader("SampleHeader", "", "http://www.masieri.com/ciao"));
          Console.WriteLine("Requested string " + proxy.Channel.GetString("qqq"));
        }
        Console.WriteLine("Waiting 30 seconds to retry");
        Thread.Sleep(30000);
      }
    }

  }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Italy Italy
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions