IKVM.NET is a JVM written on the CLR, allowing you to execute Java code using the Microsoft CLR run-time or Mono.
-7
votes
0answers
33 views
Integration of RapidMiner in C# application [closed]
I want to create C# program that uses rapidminer , and some Java API classes, via IKVM. Like IKVM with Weka and this tutorial : http://weka.wikispaces.com/IKVM+with+Weka+tutorial
I need simple c# app ...
0
votes
1answer
34 views
IllegalArgumentException in IKVM-compiled DLL
Quick Summary:
My IKVM-compiled JAR-to-DLL libraries work with some methods and classes in a .NET project, but a particular one is throwing an exception that seems to indicate my IKVM.Runtime.JNI is ...
0
votes
1answer
72 views
libgdx on ios GdxRuntimeException couldn't load file
I decided to move my application from Android to iOS. Application use libgdx library. I generated ios subproject using libgdx and opened it using Xamarin Studio. All images are linked from ...
1
vote
1answer
28 views
Monodevelop + IKVM : Java build error (“Error: invalid path: *.class”)
I am using the monodevelop Java plugin to compile a simple (hello world) Java project. The project is created fine, but when I try to build it I get the following error:
"Error: invalid path: ...
0
votes
0answers
18 views
JBOSS 7 Connection using IKVM
I am trying to connect jboss-as-7.1.1.Final using following :
IKVM 7.2.4630.5
JBossClient.dll (Converted from .jar using IKVMC)
.Net FrameWork 4.0
But not able to connect it as it throws the ...
0
votes
2answers
38 views
Using [java.util] and [java.lang] in c# using ikvm
I am trying to access a java class via C# and I am not sure on how to pass the required parameters to instantiate it.
I need to pass an object of type [java.util.Properties] to the constructor and I ...
0
votes
0answers
32 views
Using IKVM library generated from jar to dll in ASP.net
Apparently, some of the lib work fine, and when i run in eclipse it works fine.
but when i add the lib in asp.net and use the functions
which opens a jdbc connection it does not work
had added
the ...
0
votes
1answer
130 views
Class not found exception when using Java class in c#
I convert a java's class to dll using IKVM, by making a jar file for the this class and then I used IKVM to make the conversion operation. this operation is done successfully without errors or ...
2
votes
1answer
89 views
Use a DLL generated by IKVM
I have generated a DLL froma JAR file using IKVM doing:
ikvmc -target:library mylib.jar
I would like to use the DLL in a Visual C++ project. What are the steps required to call dll functions from my ...
0
votes
1answer
90 views
TypeInitializationException was unhandled - OpenNLP using IKVM
I'm using opennlp tool in C# using IKVM. I wrote the following code:
string modelpath = @"D:\models\en-sent.bin";
java.io.FileInputStream modelInpStream = new java.io.FileInputStream(modelpath);
...
6
votes
1answer
185 views
How do I make a .dll created with IKVM com visible?
I have seen a few posts on this, but I haven't seen any solutions so far. I have a .jar file that I'm converting to a .NET DLL via IKVM. I'm trying to figure out how to make the methods in the DLL ...
0
votes
1answer
103 views
Error while converting jar to dll using IKVM
I had created a library project in android. This library project selects the real path of the image from gallery. I want to reference this application in asp.net. So, i converted it in dll using ikvm, ...
0
votes
1answer
125 views
How to convert *.jar that contains native call to a DLL(Mono C#)
We're using IKVM to convert our *.jar to dll that we using to migrate our code to C# with Mono..
We have a problem especially when working with jar contains a JNI call, expl JnativeHook, its make an ...
0
votes
1answer
78 views
converting .jar to .dll using ikvm.net warning?
I have made an android project library, In this project there is only one class. This class is used to get the path of the selected image from the gallery or saved image from camera.
Here is the ...
0
votes
1answer
87 views
Stanford NLP ported to ikvm, FileLoad Exception
I'm trying to use the Stanford NLP tools ported to IKVM, but it gives me unhandeled exception.
here's the code I'm using
`string StanfordModelsDirectory = "englishPCFG.ser.gz";
try
...
0
votes
1answer
133 views
Create a POSModel object in C# using OpenNLP library
I am using the IKVM tool for using OpenNLP library in .NET with C#. When I try to create an Object of
string pos = "\\en-pos-maxent.bin";
modelInpStream = new java.io.FileInputStream("D:\\models"+ ...
0
votes
1answer
132 views
Specifying a path to Models for StanfordCoreNLP
I am using StandordCoreNLP using IKVM.NET. Is there a way to specify a path to the parser's models
var pipeLine = new StanfordCoreNLP(props);
throws an exception:
java.lang.RuntimeException: ...
3
votes
6answers
203 views
Getting java.net.MalformedURLException in MonoDeveloper
Hey I am new to MonoDeveloper. I am trying to port libgdx code to iOS platform. My Libgdx code runs perfectly on desktop & Android phone.
But when i run it on iPhone simulator with ...
0
votes
1answer
316 views
Convert jar to C# dll using IKVM - NoClassDefFoundError
i am using IKVM to convert a java jar file to a c# dll.
This jar file has several dependencies, which i referenced all via -r:reference.dll .
Still im getting the following warning and i dont know ...
2
votes
1answer
114 views
IKVM.NET as the JRE for OpenOffice
I am writing a OpenOffice extension which is supposed to interact with a large .NET library. As suggested here, a plausible solution is to use IKVM.NET with the extension written in Java which ...
0
votes
2answers
105 views
Passing enumeration value to Java constructor from C#
I've a requirement to run JAR files from C# using IKVM. The JAR contains a class whose constructor takes an enumeration as one of its parameter. The problem I'm facing is that when I try to create an ...
1
vote
0answers
106 views
using JFrame from c#
I want to show a diagram in a jframe from a c# app. The below code is the same for both the java version i made for testing and the c# version which is my main goal. Java version works quite well and ...
2
votes
1answer
111 views
IKVM.Reflection for emitting IL at run time for Windows Store applications?
I saw a post on IKVM.Reflection by Marc Gravell, and here's what I found at IKVM User's Guide:
There are two main ways of using IKVM.NET:
Dynamically: In this mode, Java classes and jars ...
1
vote
0answers
269 views
Convert CSV to ARFF using IKVM and WEKA
CSVLoader loader = new CSVLoader();
loader.setSource(new File("));
Instances data = loader.getDataSet();
When i run above code in java , it's working fine.
But when i do the same thing in c# using ...
0
votes
0answers
32 views
Hibernate in IKVM
i tried to convert hibernate using IKVMc.
A lot of dependencies are required and many error are there.
did anyone succeed in this conversion?
4
votes
1answer
124 views
How to enable 'for…in' my NativeJavaObject within Rhino?
I am newbie in rhino.
Currently, I am using Rhino 1.7R framework thru .NET 4 and IKVM.NET.
I exposed several wrapped classes implementing NativeJavaObject using setWrapFractory() API.
public class ...
2
votes
1answer
103 views
Can C# do something like SPI in Java (Meta-inf/service)?
I am currently working on converting .JPEG file to .WSQ file, I have successfully done it in Java using a library from http://sourceforge.net/projects/jmrtd/.
Now I wanted to do the same thing in C#, ...
5
votes
2answers
124 views
Convert Scala-Files into a Dll
I have some scala code I've written using IntelliJ with the SBT-Plugin and want to provide me code as an DLL for C++.
I already tried to use 'ikvmc': I packed all my classes via 'package' in one ...
1
vote
1answer
158 views
How to IKVM Apache POI
I want to use Apache POI in my .NET application, I know there is a port NPOI but it's not complete and don't have PowerPoint related functionality.
I've tried to IKVM it by using the following ...
1
vote
3answers
279 views
Convert Apache POI .jar to .dll using IKVM.Net
I'm trying to convert Apache poi .jar to .dll . I used the script below to convert. However I'm getting lot of warnings and error Invalid option -resource:poi-3.8-20120326.dll after that. Here's the ...
0
votes
1answer
106 views
How to add reference to resource folder when generating dll file using IKVM
I have some resources e.g. xml files, images etc in org\languagetool\resource directory in my jars applications directory.
I wonder how to provide reference to these resources when building dll from ...
0
votes
1answer
94 views
How to link jar libraries while converting a jar file to dll using IKVM?
I have a Java application (JAR) that reads data from an Oracle database. I want to convert the JAR file to a .NET dll using IKVM. Can anyone suggest how to attach or link the ojdbc.jar to the jar file ...
1
vote
1answer
104 views
Is it possible to use Gephi compiled with IKVM in a website?
I'm currently trying to load and use the Gephi Toolkit from within a .Net 4 C# website.
I have a version of the toolkit jar file compiled against the IKVM virtual machine, which works as expected ...
2
votes
1answer
228 views
How do I access a .net resource for an IKVM-ported java library
I am using IKVM to port some java libraries into my c# project. The library api (StanfordNLP) requires that a file be loaded to train the statistical models used by the nlp functions. Loading the file ...
0
votes
1answer
109 views
Specify the .Net Framework with IKVM
I compiled a Java application to a C# dll with IKVM. I tried to use this dll in a C# project which uses .Net Framework 2.0 but failed since the converted dlls framework obviously is higher. I looked ...
0
votes
1answer
296 views
Using java.util.List in C# with IKVM
I'm trying to make a call to a java application using a C# client. The object that is sent is of type java.util.List. I've added the required IKVM assemblies to my C# project. I'm just unsure how I ...
1
vote
1answer
146 views
Closure Templates through IKVM?
Google Closure works GREAT without the Java Runtime Environment by using IKVM
In case that ever goes away, the simplified steps to convert it to an exe are:
Download and extract (but nothing to ...
1
vote
1answer
183 views
Tree visualizer using IKVM in visual studio 2010 C# environment
I am using IKVM 0.46.0.2 to wrap a java application into a dll in visual studio 2010 C# environment.
And weka version is 3.7
I make a weka.dll using -sharedloader option
ikvmc ...
1
vote
1answer
150 views
IKVM.NET object serialization with ObjectOutputStream differences
I have a java program (jar) that serialize a class to file with ObjectOutputStream.
I need to use this part of the program inside a .NET project and to do so i have converted the jar to a .NET dll ...
0
votes
1answer
259 views
xalan and custom function for xslt
I'm using Apache FOP with the IKVM from my c# code. I generate the pdf by using the xslt stylesheet to get the result as xsl fo. I have one problem, that is usingthe custom functions.
My stylesheet ...
8
votes
4answers
235 views
How to reference identifiers with dollar signs from C#?
I'm trying to use a DLL generated by ikvmc from a jar file compiled from Scala code (yeah my day is THAT great). The Scala compiler seems to generate identifiers containing dollar signs for operator ...
0
votes
1answer
159 views
How to Compile java7 code with IKVMC for .NET framework 3.5 support?
I am trying to produce a Microsoft SQL Server 2008 Express R2 Stored Procedure (C#) CLR from some code that is compiled that references a dll cross compiled using IKVMC. The original code is written ...
0
votes
1answer
207 views
Connecting to SQL Server in .NET/IKVM using JDBC
I wrote a Java package which connects to a SQL Server database using JDBC and integrated security. This package runs just as intended from my Java IDE. Now I'm trying to access some classes in this ...
0
votes
2answers
296 views
C# IKVM Toolkit not found Exception
I am using IKVM 0.46.0.2 to wrap a java application into a dll in visual studio 2010 C# environment.
Code is, just create a java swing form using JFrame and pop up the some picture.
...
1
vote
1answer
95 views
Suppress content scaling on retina devices
Hi I am working on small project in a framework called PlayN that uses mono for IOS development.
I am having problems understanding the content scale factor and how to disable its automagic ...
0
votes
2answers
199 views
Basic web application using Saxon API and IKVM throws exception
I created a basic .NET 4.0 application and referenced the Saxon assemblies. Here is the list of dll's I referenced in the project.
saxon9.dll
saxon9api.dll
IKVM.OpenJDK.ClassLibrary.dll
...
0
votes
1answer
250 views
Converting a Scala library to a DLL (.NET)
I'm trying to create a Dll out of a scala-class. I'm using IntelliJ together with SBT. I've already found a way to convert .jar files into a Dll, using the ikvm-converter. Now the problem: When I use ...
2
votes
0answers
132 views
How to register a crypto provider statically using IKVM?
In Java, one can register a security provider like BouncyCastle statically by editing the security policy files for the JRE or JDK or dynamically by adding the provider programmatically.
When the ...
0
votes
1answer
210 views
Getting com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl not found when inserting content under load
We are using the Marklogic XCC .Net library for inserting documents into Marklogic. However under load (45 concurrent users), we start getting the exception with the message Provider ...
0
votes
0answers
128 views
How to convert a Java X509Certificate object to a .net X509Certificate2 object using IKVM?
On my current project I need to sign a message with a certificate chain stored in a .jks keystore.
Tried to export this chain using keytool to .pfx files. But the X509Certificate2 object which I ...




