-1

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..

2 Answers2

1

There are two (easy) options:

  1. You can use the Azure IoT Hub to invoke methods. I have successfully done it. More about Azure IoT Hub

  2. If your goal is to generate a near real-time dashboard (report) you can use PowerPI with REST-API and a Push-/Streamingdataset. If you don't want to codding: Look at this post

Sean Stayns
  • 4,082
  • 5
  • 25
  • 35
0

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

this link help me to do it. Thank You