Click here to Skip to main content
15,896,278 members
Articles / Programming Languages / C#

WCF: The Right Way. A Quick Reference Guide

Rate me:
Please Sign up or sign in to vote.
4.77/5 (17 votes)
3 Oct 2010CPOL6 min read 69.7K   1.9K   85  
A developer workflow of the manual way of creating and consuming WCF Services developed by Miguel Castro
namespace emx.tcp.mcwcf.TcpHostService
{

    using System;
    using System.ServiceModel;

    using emx.tcp.mcwcf.Service.Services;

    class Program
    {
        static void Main(string[] args)
        {
            ServiceHost serviceHost = new ServiceHost(typeof(PersonService), new Uri("net.tcp://localhost:8002"));
            serviceHost.Open();
            Console.WriteLine("Service running.  Please 'Enter' to exit...");
            Console.ReadLine();
        }
    }
}

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 Encore Software
Australia Australia
Contractor in Desktop and Web applications.
Gold Coast, Queensland.

Comments and Discussions