Click here to Skip to main content
15,885,546 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.5K   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 System.Net;
using System.ServiceModel.Channels;
using System.Xml;
using System.IO;
using System.ServiceModel.Description;
using System.Reflection;

namespace ServiceTest
{
    class Program
    {
        
        static void Main(string[] args)
        {
          try
          {
            ServiceHost host = new ServiceHost(typeof(ServiceInstance));
            host.Open();
            Console.WriteLine("Ready....."); Console.ReadLine();
            host.Close();
          }
          catch (System.Configuration.ConfigurationErrorsException ex)
          {
              Console.WriteLine("Host cannot start for a configuration problem, probably you have to copy Discovery.dll in bin/($OutputDir)/");
              throw;
          }

        }

 
    }
}

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