Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Push data to client without using CallBack in WCF

Tags:

c#

wcf

service

Is it possible to push data to client in WCF service without using callback?

Scenario:

There are 2 client consuming service. Client 1 send message and then Client 2 get message send by Client 1.

like image 594
Selalu_Ingin_Belajar Avatar asked Mar 06 '26 09:03

Selalu_Ingin_Belajar


1 Answers

There are several approaches to this problem

  1. Use Publish-Subscribe Framework

  2. Using Duplexing service in WCF

Also have a look at this article, Push Data to the Client using WCF CallBack Service http://www.dotnetcurry.com/ShowArticle.aspx?ID=721

like image 126
Furqan Safdar Avatar answered Mar 08 '26 21:03

Furqan Safdar