vote up 5 vote down star

I'm not looking for the usual answer like Web-services. I'm looking for a light solution to be run in the same machine.

Edit: I'm looking for way in Java to call .NET methods

flag

5 Answers

vote up 3 vote down check

I believe Java can talk to COM and .NET can expose COM interfaces. So that may be a very light weight solution that doesn't require any 3rd party. There is also the option of using sockets to communicate between the programs which wouldn't require a heavy instance of IIS to be installed on the machine.

link|flag
Exactly. jacob.dll + jacob.jar – Vladimir Dyuzhev Nov 12 '08 at 13:39
vote up 0 vote down

I am author of jni4net, open source interprocess bridge between JVM and CLR. It's build on top of JNI and PInvoke. No C/C++ code needed. I hope it will help you.

link|flag
vote up 1 vote down

We tried IKVM in our production environment but it kept crashing. We use JNBridge which is a commercial product but is very stable and performs well in our ASP.NET environment.

link|flag
vote up 1 vote down

Hve you looked into the Java Native Interface?

What I have done in the past is to write a C library, which is callable from both Java and .NET (and also COM, NSIS scripting language, and other technologies).

The JNI would work well if you only want to expose a few methods, but it might get unwieldy if you wanted to, for example, expose the entire .NET framework, because of the number of header files and wrapper methods you would need to create.

link|flag
It is sooo easy to make evil mistakes on JNI, but it is definitively a workable solution. And as long as JNI defines some simple bridge, nothing too bad should happen – Mario Ortegón Nov 12 '08 at 11:58
Easy is an understatement!! With the NSIS bridge where the arguments are passed in on a stack structure (as I recall), we managed to get some lovely memory leaks! – RB Nov 12 '08 at 12:25
vote up 1 vote down

Have you looked at IKVM?

link|flag
I'm looking for Java to Call .Net methods – Eduardo Santa Nov 12 '08 at 11:40
You could run the Java code within IKVM though - that's the point. If you really want to be running a "normal" JVM, have a look at the Eclipse project and how they integrated WPF - that had both a JVM and a CLR running in the same process, I believe. It's likely to be pretty messy though. – Jon Skeet Nov 12 '08 at 11:42
Sorry you are right. IKVM should work. – Eduardo Santa Nov 12 '08 at 11:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.