ikvm

How do I choose the subset of IKVM dlls that are relevant to my project?

So I created an assembly referenced library of SVNKit (Java) using IKVM. In my project, I referenced all of the IKVM DLLS to use the SVNKit, however, I'm pretty sure not all of them are used. And there are alot of DLLs included. Is there a way other than trial and error to find the subset of IKVM DLLs that are relevant? Thanks! ...

DLL with the same reference name in visual studio

Hi, I am using Visual Studio for a project and Drools.NET and Proxem Antelope both use a DLL IKVM.Runtime but they're both different versions. Thus I do not know what I'm supposed to do to accommodate both of these. Any help will be appreciated. Thanks! Error: Exception has been thrown by the target of an invocation. The proble...

Setting CLASSPATH during runtime

How do I set a CLASSPATH variable during runtime while using IKVM? I've been trying to do it by using: java.lang.System.setProperty("java.class.path", "whatever"); The class I'm calling requires a configuration file in the classpath to work - and I keep getting errors that seem to indicate that it hasn't gotten its settings. Is the w...

Using IKVM to convert a JAR (Flying Saucer - xhtmlrenderer)

I wanted to use the Flying Saucer Java API in .NET so I tried to use IKVM to convert the Flying Saucer library: ikvmc core-renderer.jar For some reason, IKVMC gave me an exe core-renderer.exe so I renamed it to core-renderer.dll, added to my assemblies and hacked away using java.io; using java.lang; using com.lowagie.text; using org....

How do I add a reference to an assembly?

I am trying to run some PDF to text C# code. I have references to 2 DLLs and I get this error when I try to run the program: the type 'java.io.File' is defined in an assembly that is not referenced. You must add a reference to assembly 'IKVM.GNU.Classpath, Version=0.20.0.0, Culture=neutral, PublicKeyToken=13235d27fcbfff58'. How do I ...

Crazy idea: Connect .NET and SAP with SAP JCo using IKVM.NET

Because the SAP Connector for .NET is no longer maintained by SAP, I am now looking for an alternative to connect the Microsoft world with the SAP world. I know there are third party products like "ERPConnect", but I want to do this with tools from SAP (by the way I cannnot use the Enterprise Services, because the target SAP system is SA...

Gate Named Entity with ANNIE using IKVM in .net

hi, I am looking for some guidance on using Gate and ANNIE in a .net enviornment. Has anyone converted GATE to a .NET DLL using IKVMC, and had much success running named entity recognition in .NET/C# using the converted DLL? Thanks in advance. ...

Auto-capitalizing all method names for port from Java to .NET

I am using IKVM to compile a large Java library project to a .NET DLL. In so doing, however, the method names are staying according to the Java convention of method names NOT being capitalized - but I want the .NET dll to be used in .NET projects and so would like the method names to be capitalized. The only exception would be methods w...

PDFBox - Building the latest version for .NET using IKVM

Hi, I would like to build the latest version of PDFBox (http://pdfbox.apache.org/userguide/dot_net.html) for use within my .NET project. I have no experience with Java whatsoever but I am using the steps defined here: http://www.ikvm.net/userguide/tutorial.html I am using the following versions: - IKVM (0.42.0.6) - PDFBox (1.2.1) JAR...

Where does IKVM get it's CLASSPATH from?

I have a .Net assembly that was converted from a jar file. This Library looks for files in it's classpath. I keep getting missing resource exceptions when running the application. I have tried: - Putting the resource file in my bin folder - Putting the resource file in my source folder, including it in the VS project and setting copy lo...

Is IKVM on Monotouch a supported/tested deployment of the VM?

It seems that running the IKVM on monotouch is one possible method for deploying Java applications on the iPhone. Is this combination one that has been tested and is being successfully used in the field? ...

Using ApacheFOP v1.0 in .NET application

Has anyone successfully complied the Apache FOP v1.0 library to a .NET DLL? I am using the IKVM syntax found at http://onjava.com/pub/a/onjava/2004/08/18/ikvm.html; however, the compiled DLL seems to be incomplete. For example, I cannot instantiate FopFactory object as: using org.apache.fop.apps; namespace Utils { public class P...

IKVM.NET and Lucene

Hi, I am using Lucene.Net but there are some interesting Java components for Lucene (especially analyzers) that haven't been ported to Lucene.NET yet so maybe IKVM is a better choice. Some research has shown that IKVM seems to work pretty well, but I haven't seen anything regarding Lucene. Does anybody have experience running Lucene wi...

How to choose between IKVM static and dynamic modes?

Hi, I'm deploying some Java libraries in my .NET application. Should I convert the Java libraries into DLLs with ikvmc, or should I use the dynamic features to do the conversion at runtime? I expect that using ikvmc would cut down on initial load of the application. Does anyone have any experience to verify this? On the other hand, my ...