user1472178
user1472178

Reputation: 11

Call Java Methods in Eclipse Plugin from C# program

I have written a C# program which has to call two methods in an eclipse plugin process.

I need an idea on how to realize the communication between the C# process and the java process.

Upvotes: 1

Views: 174

Answers (2)

user1103589
user1103589

Reputation:

Maybe try this: Ikvm its a JVM that's implemented in .net and it provide several tools to help the development.

Upvotes: 0

npinti
npinti

Reputation: 52195

You could use Sockets or else Inter Process Communication (IPC) Structures (more here). The best one depends on what you are doing and how you are doing it, which is not something you are exposing in your question.

Upvotes: 2

Related Questions