Click here to Skip to main content
15,885,782 members
Articles / Programming Languages / C#

WCF Duplex Reentrant Services

Rate me:
Please Sign up or sign in to vote.
4.64/5 (12 votes)
25 Mar 2009CPOL7 min read 84.4K   2.9K   43  
Shows a hands-on approach on how to implement Duplex Reentrant services in WCF.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ServiceModel;
using DuplexClient.DuplexService;

public class CallBackHandler : ITemperatureCallback
{
    static InstanceContext site = new InstanceContext(new CallBackHandler());
    static TemperatureClient proxy = new TemperatureClient(site);

    public bool TempUpdate(double temp)
    {
        Console.WriteLine("Temp dropped to {0}", temp);
        return true;
    }

    class Program
    {
        static void Main(string[] args)
        {
            proxy.RegisterForTempDrops();

            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
Architect
Lebanon Lebanon

Comments and Discussions