What is the best way to interprocess communication between Java and .NET 3.5?

A third-party application reads Java code from an XML file and runs it when a specific event occurs. In Java, I want to tell a .NET 3.5 application running on the same computer that this event happened. All data transmitted each time is probably a few characters.

What is the best way to use Java to tell a .NET process that something has happened?

Java does not seem to support Named Pipes on Windows, .NET does not support memory support, and any solution using web services or RMI is too large.

+3
source share
1 answer

RMI, , . - , , /etc, , RMI.

ETA: , java, ? , .NET , / java. Java ?

+4

Source: https://habr.com/ru/post/1697145/


All Articles