tags:

views:

21

answers:

2

Hello,

I want to use WCF for server to client communication. Start clinet which will send message to server , ones server recive message its display that message in from of MessageBox Confirmation For Asked Question. So reply will be Yes/No which sent back to client.

As per result of Yes/No clinet will process ahed ...

How can i achive above thing in C#.net?

I have read many atricles about callback but did not get much idea for implementation

Thanks

A: 

This tutorial walks through creating the client & service. The difference is, instead of implementing a calculator, you'll want to implement your code for whatever the service does.

One question, though, why do you want the service to display a yes/no and not the client?

taylonr
A: 

FWIW, I once wrote a series of blog posts that describe how to approach development of Duplex WCF services with Test-Driven Development.

Mark Seemann