Mac 应用程序与 Windows 应用程序对话的最佳方式
我需要在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
查看适用于 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/
这里(至少)有两个独立的问题:
There are (at least) two separate problems here:
您可以使用 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.