Search code examples
c#wcf.net-remoting

is it posible invoke another client method remotely?


i would like to make an .net or even cross-platform(php, .net) app A and B that communicate each other. if A insert or update some data in database, then B is refresh its view to display new data. is there any solution about this?

i read this article about WCF before, as far as i know now client only call method that operate for them self. also that article mention that it can notify another client to do something but not specify how-to make 1 client inform another to call some method.

is there any tutorial or help regarding this problem? Thank you..


Solution

  • https://www.codeproject.com/Articles/596287/Broadcasting-Events-with-a-Duplex-WCF-Service

    this link help me to do it. Thank You