Mac 应用程序与 Windows 应用程序对话的最佳方式

发布于 2024-11-02 18:51:29 字数 290 浏览 1 评论 0原文

我需要在 Mac OS X 上编写一个应用程序,将远程命令发送到 Windows 应用程序以执行某些任务。这些计算机将位于同一子网中,并且 Mac 和 Windows 计算机都有固定的 IP。

发送过来的数据实际上只是一些字符串或布尔参数,以便 Windows 应用程序可以执行特定任务。

有人将编写 Windows 应用程序,而我将编写 Mac 应用程序。

我可以在开发人员的文档中找到有关 Mac 到 Mac 通信的信息,但没有找到我需要的信息。

实现这一目标的最佳方法是什么?什么协议最适合这个?

I need to write an app on Mac OS X that would send remote command to Windows applications to perform some tasks. The computers will be sitting on the same subnet and the Mac and Windows computers all have a fixed IP.

The data sent over really are just some string or boolean parameters so that the Windows app can perform specific tasks.

Someone will be writing the Windows app and I will be writing the Mac app.

I can find in the developer's doc about Mac to Mac communication, but nothing about what I need.

What's the best way to achieve this? What protocol is best suited for this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

翻了热茶 2024-11-09 18:51:29

查看适用于 Mac 和 Windows 的 Bonjour SDK:http://developer.apple.com/opensource/

Take a look at the Bonjour SDk for Mac and Windows: http://developer.apple.com/opensource/

扎心 2024-11-09 18:51:29

这里(至少)有两个独立的问题:

  • #1 是如何发现另一个应用程序。 Bonjour 是一种可能性,就像本地广播一样,显式配置对等点的主机名
  • #2 是您找到另一台机器后与另一台机器进行通信的方式。对于这一部分,我建议:
    • a) 使用 TCP 而不是 UDP(在大多数情况下),因此您不必担心重传和重传问题。测序
    • b) 不要在 TCP 之上发明自己的客户端-服务器协议,而应使用现有的协议。我听说有一种叫做“HTTP”的东西开始流行起来......

There are (at least) two separate problems here:

  • #1 is how you discover the other app. Bonjour is one possibility, as is a local broadcast, as is explicitly configuring the hostname of the peer
  • #2 is how you talk to the other machine once you find it. For that part, I would suggest:
    • a) use TCP instead of UDP (in most cases), so you don't have to worry about retransmissions & sequencing
    • b) rather than inventing your own client-server protocol on top of TCP, use an existing one. I hear there's something called "HTTP" that's starting to catch on...
樱桃奶球 2024-11-09 18:51:29

您可以使用 UDP 将消息广播到网络吗?您的应用程序(无论它们是在 Mac 还是 Windows 上运行)都可以侦听消息并根据需要进行处理。

Could you just use UDP to broadcast a message out to the network? Your apps (regardless of whether they are running on Mac or Windows) can listen for the message and process them as needed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文