What is the best method of inter-process communication between Java and .NET 3.5? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T12:23:50Zhttp://stackoverflow.com/feeds/question/94882http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/94882/what-is-the-best-method-of-inter-process-communication-between-java-and-net-3-51What is the best method of inter-process communication between Java and .NET 3.5?Matthew2008-09-18T17:48:03Z2008-09-18T17:49:59Z
<p>A third-party application reads some Java code from an XML file, and runs it when a certain event happens. In Java, I want to tell a .NET 3.5 application, running on the same machine, that this event occurred. The total data transferred each time is probably a few characters.</p>
<p>What is the best way of using Java to tell the .NET process that something happened?</p>
<p>Java doesn't seem to support Named Pipes on Windows, .NET doesn't natively support memory-mapping, and any solution involving web services or RMI is overkill.</p>
http://stackoverflow.com/questions/94882/what-is-the-best-method-of-inter-process-communication-between-java-and-net-3-5/94895#948952Answer by Nescio for What is the best method of inter-process communication between Java and .NET 3.5?Nescio2008-09-18T17:49:26Z2008-09-18T17:49:26Z<p>Something as simple as a <a href="http://msdn.microsoft.com/en-us/library/system.io.filesystemwatcher.aspx" rel="nofollow">FileSystemWatcher</a>, may do the trick for you.</p>
http://stackoverflow.com/questions/94882/what-is-the-best-method-of-inter-process-communication-between-java-and-net-3-5/94902#949022Answer by John Gardner for What is the best method of inter-process communication between Java and .NET 3.5?John Gardner2008-09-18T17:49:59Z2008-09-18T17:49:59Z<p>If you don't want the full overhead of RMI, you could do direct socket communcation between the two by opening ports and talking to eachother. You'd have to have some way to have both processes agree on which ports to use, how to handshake/etc, but would be simpler than RMI.</p>
<p>ETA: it looks like you can <em>use</em> named pipes from java, you just can't <em>create</em> them? So if the .NET process would create it, you could read/write to it with java. Java just sees it as a file?</p>