Click here to Skip to main content
15,886,693 members
Articles / Programming Languages / C# 4.0

Wcf Client Server Push using MSMQ

Rate me:
Please Sign up or sign in to vote.
4.88/5 (6 votes)
8 Feb 2011CPOL3 min read 58.7K   2.2K   35  
Client Server internal push technology using MSMQ and WCF
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ServiceModel;
using WcfServerPushIServices;
using System.Configuration;

namespace WcfServerPushClient
{
	public class RegisterClientServiceClient : ClientBase<RegisterClientIService>, RegisterClientIService
	{
		public RegisterClientServiceClient(string endpointConfigurationName) :
			base(endpointConfigurationName)
		{
		}

		public void RegisterClient(ClientInfo clientInfo)
		{
			base.Channel.RegisterClient(clientInfo);
		}
	}
}

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
Canada Canada
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions