views:

204

answers:

2

Hi guys,

Exists a way to call .net assemblies more specific .dll files in java?

I i'm developing a a framework for .net now i need to migrate it to java, i can do this? I using c# in .net.

A: 

Check is this response is helpful.. Calling .net assembly from java jvm crashes..

Came across this interesting site (may not be directly helpful to you)...

dotnetfromjava.dev.java.net

rajesh pillai
+1  A: 

Easiest way should be to COM-enable the .Net assembly. This way you can invoke any method the way you would communicate with normal WIN32 DLL's.

Some samples can be found here: http://www.devx.com/interop/Article/19845

Jan Jongboom