java - c# interop
-
I have discovered the existence of IKVM.NET for the interoperability between java and .NET. I have tried to convert java libraries in DLL and to call them from C#... all ok. Is it possible, with IKVM, to call java libraries runtime without converting them in DLL?
-
I have discovered the existence of IKVM.NET for the interoperability between java and .NET. I have tried to convert java libraries in DLL and to call them from C#... all ok. Is it possible, with IKVM, to call java libraries runtime without converting them in DLL?
No. Why do you think IKVM exists?
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007 -
I have discovered the existence of IKVM.NET for the interoperability between java and .NET. I have tried to convert java libraries in DLL and to call them from C#... all ok. Is it possible, with IKVM, to call java libraries runtime without converting them in DLL?
Askalo wrote:
Is it possible, with IKVM, to call java libraries runtime without converting them in DLL?
AFAIK you have to convert them to a DLL file to use it in .net. You can write a webservice in java to expose the methods and the .net application can communicate via the webservice to the application.