views:

372

answers:

2

I have to create a WCF service that handles following tasks:

  1. Register the notification sent from multiple client through WCF service.
  2. The WCF service in turn sends ( Callback) the notification to the multiple client.

The WCF service also want to listen a datachange notification from another database server.

Can a WCF service is treated as a Listener that listen and send notifications for each request.

A: 

If I understood correctly, what you need is duplex services.

Konamiman
+2  A: 

There is a Callback Contract, msdn , blog post about it

Svetlozar Angelov