如何从Web App(php)向C#Windows应用程序发送/接收数据

时间:2018-01-25 06:19:34

标签: c# php windows laravel xampp

我想将我的WebApp(运行在xampp中的php )中的数据发送到 C#Windows应用接收响应 这两个应用正在同一台机器上运行

请帮帮我。

1 个答案:

答案 0 :(得分:2)

有很多方法可以实现这个目标:

  • 如果两个应用程序都在同一台计算机上运行,​​您可以考虑使用进程间通信,例如named pipeshared memory

enter image description here

  • 如果两个应用程序都在不同的服务器上运行,请考虑使用message queues,其中一个用作发布者,另一个用作订阅者。这种队列的示例包括RabbitMQ,ZeroMQ,Redis等。

enter image description here