Question

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

Was it helpful?

Solution

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top