通过 IPC for .net (4.0) 将 Xml 传输到 Windows 上的 Mono
我有一个 .net 4.0 应用程序计算数据,我想使用 www.unity3d.com 进行可视化,该网站具有 c# mono 脚本。为此,我想在两个应用程序之间发送 xml 字符串 - 其中一个运行 .net,另一个运行在 mono 下。
我是进程间通信的新手,但我认为这是可行的方法 - 有谁知道显示 .net 4.0 到 mono ipc 的示例吗?
任何建议表示赞赏。
大卫
I have a .net 4.0 app computing data i'd like to visualise with www.unity3d.com which has c# mono scripting. To do this i'd like to send xml strings between the two apps - one of which is running .net and the other of which is running under mono.
I'm new to Interprocess communication but i think it's the way to go - does anyone know of a sample showing .net 4.0 to mono ipc?
any advice appreciated.
David
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要将其视为“IPC”。在两者之间使用 Web 服务。在 .NET 端使用 WCF。我不知道Mono是否支持WCF,但如果不支持,WCF会生成标准的Web服务,因此Mono在使用WCF方面应该没有问题。
Don't think of it as "IPC". Use Web Services between the two. Use WCF on the .NET side. I don't know if Mono has support for WCF, but if not, WCF produces standard web services, so Mono should have no trouble consuming the WCF side.