Tagged Questions
IKVM.NET is a JVM written on the CLR, allowing you to execute Java code using the Microsoft CLR run-time.
15
votes
4answers
633 views
Weird Mono compilation error
I am using IKVM to get SVNKit on a Mono project I'm working with, I have a class that implements an interface from SVNKit, and I can't compile:
On windows and on .NET, everything compiles fine, just ...
11
votes
2answers
189 views
Is there a IKVM for Java? Can I run .NET assemblies on a JVM?
IKVM is an amazing beast that lets me execute Java jars in a .NET environment. That is, it's a JVM written on the .NET runtime (CLR).
Does the opposite exist? Has someone written a CLR on top of a ...
6
votes
3answers
609 views
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 ...
6
votes
3answers
827 views
IKVM and Licensing
I have been looking into IKVMing Apache's FOP project to use with our .NET app. It's a commercial product, and looking into licensing, IKVM runs into some sticky areas because of its use of GNU ...
5
votes
4answers
920 views
How to debug “Could not load file or assembly” runtime errors?
I have a project that uses a Java library converted using IKVM. I added the created DLL plus all possible IKVM DLLs as references to my project, but when I run it, I get the following runtime error :
...
5
votes
3answers
1k views
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 ...
4
votes
1answer
344 views
IKVM.NET and Lucene
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 ...
4
votes
2answers
2k views
Setting JVM parameters at runtime
Is it possible to change/modify/adding VM parameters after the JVM is already loaded (running)? If so, how can I do it?
4
votes
1answer
205 views
What is the format of the Remap XML file for IKVM?
In this article Jeroen explains an example of using an XML file to remap Java Bean getters and setters to .NET Properties.
What would the XML file look like if I wanted to, say, remap a Java method ...
4
votes
2answers
985 views
How to get IKVM to build in Visual Studio 2008?
I've downloaded the IKVM sources (http://www.ikvm.net/) from http://sourceforge.net/cvs/?group_id=69637
Now I'm trying to get it to build in Visual Studio 2008 and am stuck. Does anyone know of ...
3
votes
1answer
489 views
Doesn't IKVM.net support generics (type parameters)?
I statically recompiled a Java lib which used generics a lot, like Collection<?>, but the emitted .NET dll only uses Collection, not with type parameters. How come?
2
votes
1answer
118 views
Converting Java to .NET library using IKVMC
There is Java tool (it is called Mallet)
http://mallet.cs.umass.edu/download.php
which i want to use in my .NET project.
To convert this tool to .NET library at first I've tried to build it in single ...
2
votes
2answers
264 views
How to call a dll file from c#
I am trying to call a dll file from c#
The dll file is made from a java application using ikvm and for now all the code does is print hello world.
How do i call the dll file in my c# code and is it ...
2
votes
1answer
165 views
Java and .NET Streams Interoperability Through IKVM
In my current project I use IKVM to cross-compile several Java libraries that deal with various aspects of XML. These libraries are then integrated with several .NET libraries and my mainline code. ...
2
votes
2answers
241 views
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 ...
2
votes
2answers
1k views
PDFBox - Building the latest version for .NET using IKVM
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 ...
2
votes
2answers
2k views
IKVM and System.Core System.Runtime.CompilerServices.ExtensionAttribute
I'm using the latest release of IKVM to "compile" a Java .jar file into a .NET DLL. That all worked fine, and now I'm trying to reference the DLL in a .NET 3.5 C# project.
In my C# project, I've ...
2
votes
0answers
193 views
.NET equivalent or alternative to Java's GlyphVector?
I'm in the process of porting a Java program to .NET using IKVM. Unfortunately IKVM's Graphics2D implementation throws a NotImplementedException in drawGlyphVector, i.e. it needs to be "fleshed out" ...
1
vote
2answers
197 views
FOP and IKVM in .NET - Images Not Working
UPDATE2: I got it working completely now! Scroll way down to find out how...
UPDATE: I got it working! Well... partially. Scroll down for the answer...
I'm trying to get my FO file to show an ...
1
vote
1answer
159 views
ikvm on wp7, wp7 mango, or silverlight 4+?
Is it possible to run ikvm in "dynamic mode" on wp7? I know wp7 versions prior to 7.5 (mango) have limitations such as lack of reflection.emit that might throw a wrench in ikvm's implementation, ...
1
vote
0answers
106 views
C# dll references produce a classnotfound exception
I used IKVM to convert slf4j to dll's for use in a c# program. It's throwing me an exception. (NoClassDefFoundError was unhandled org.slf4j.LoggerFactory)
The code is as follows
acceptor = new ...
1
vote
1answer
81 views
Call method with special characters in name from C#
When using ikvmc to compile JAR to DLL, it generates methods and classes with funny names, like
TestClass.__<clinit>(object X);
or
TestClass$1.MethodName();
I wish to call and/or override ...
1
vote
2answers
205 views
How to run Jetty on IKVM?
I am new in jetty. I am trying to run Jetty with IKVM. However, it throws exception. I am not sure what should I do.
alex@AlexUbuntu:/usr/share/jetty$ ikvm -jar start.jar
5 [main] INFO ...
1
vote
1answer
124 views
IKVM complex custom type error in remapping to properties!
I used the above and wrote this:
<class name="umple.pts.domain.coreEntities.Stop">
<property name="StopName" sig="()Ljava.lang.String;">
<getter name="getName" ...
1
vote
1answer
115 views
String and complex data types in Map.xml for IKVM!
I am using IKVM to transform my java .jar file to a .NET .dll file.
I can create a property from the getter and setters of integer types ..
But am not able to do so for string data type in the java ...
1
vote
2answers
380 views
How can you emulate object serialization on java in C#
I need to call a servlet call for an automation of a java applet using c#. What the java applet is it calls a servlet using a URL Connection object.
URL servlet = new URL(servletProtocol, ...
1
vote
0answers
193 views
Gate Named Entity with ANNIE using IKVM in .net
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# ...
1
vote
1answer
233 views
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.
...
1
vote
2answers
979 views
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 ...
1
vote
2answers
406 views
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 ...
1
vote
2answers
2k views
How to use PDFBox 1.0 in .net / C# environment using IKVM
Id like to use PDFBox to generate PDF highlight files in my .net project. PDFBox states that it can be used in .net via IKVM
http://www.pdfbox.org/userguide/dot_net.html
BUT running ikvmc (latest ...
1
vote
1answer
2k views
JasperReports in .Net over IKVM
I'm willing to use JasperReports in .Net.
I used IKVM.net to build DLLs needed for this, and translated a sample app.
But I get a NotImplementedExeption in C# (the equivalent code in Java works ...
1
vote
2answers
427 views
What is IKVM.Runtime, and why is it killing intelisense?
I have a website sitting on a mapped network drive. The
<%@ Page Language="C#"... tag in the markup files are all underlined with blue. The error I get is "could not load file or assembly ...
1
vote
1answer
175 views
Castor and IKVM
I've converted an api written in Java into a .net dll using IKVM, and so far it's been good.
It basically uses xml behind the scenes to access some web services. The api is 3rd party, and I have no ...
1
vote
3answers
13k views
Fatal Error C1083 - Cannot open include file: “windows.h”: No such file or directory
Hey guys,
I'm trying to get IKVM to build (see this question) but now have encountered a problem not having to do with IKVM so I'm opening up a new question:
When running nant on the IKVM directory ...
0
votes
1answer
24 views
IKVM 7.0 - how to successfully create a DLL file from JAR
I have a problem creating a DLL file from a JAR file with IKVM (version: 7.0.4335.0).
The JAR itself can be run if I open it with the command:
ikvm -jar MyTest1.jar
I can see the ...
0
votes
0answers
30 views
produce non dependent ikvm dll from jar
I have the need to convert a jar to a dll which I achieved with ikvm. However anytime i add the dll to a c# project in visual studio it complains that i need to add a reference to ...
0
votes
2answers
62 views
Can a Java library compiled to a DLL be used in developing a WP7 application?
Is it possible to compile Java code into a DLL to be used in a Windows Phone 7 application?
I know it's possible to compile Java code into a jar and run IKVM.NET to convert that to a .NET DLL, but ...
0
votes
1answer
36 views
IKVM:Failed to initialize JAXP 1.3 DatatypeFactory class.in IKVM.OpenJDK.XML.Bind error
I use ikvm with mpxj project.
I have a very simple code like this....
var writer = new MSPDIWriter();
writer.write(project2, ofilename);
I get an exception .net, Failed to initialize JAXP 1.3 ...
0
votes
0answers
59 views
Xerces SchemaFactory with custom ResourceResolver
I'm trying to validate a XML document against a schema, currently named Layout-1.0.xsd. That schema includes references to another schema: XForms-Schema.xsd, which I've customized. That schema ...
0
votes
1answer
131 views
FOP/ikvm: error “Provider com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl not found”
I have produced a fop.dll from fop-1.0 with ikvm:
ikvmc -target:library -reference:IKVM.OpenJDK.Core.dll -recurse:{myPathToJars}\*.jar -version:1.0 -out:{myPathToJars}\fop.dll
If I use my fop.dll ...
0
votes
1answer
34 views
IKvm and wcf serialization error
I have java object that can access by using ikvm in .net.object is successfully fill and manipulate in WCF layer. But after retrieve object from WCF to Client, client side error populate.
"An error ...
0
votes
1answer
74 views
Java classes can't get the resources in JAR files that compiled with IKVM
I've converted a java library succesfully with ikvmc. Java library uses some resources inside its self jar file. I can reach all classes of this java library, but if I call a method that calls ...
0
votes
1answer
133 views
ikvm java spring issue: Cannot find the declaration of element 'beans'.
I am using ikvm .46 to convery java to dll.
I am trying to call a function written in java (converted to DLL ) that loads spring beans.I have converted all dependencies to dll.
But Event the ...
0
votes
1answer
76 views
IKVM load jars from .NET project
Is there any way to load a jar file from .NET project using IKVM?
Summary of what I am trying to achieve
1) I have a .NET project that uses a Java code (MYClass) compiled to a .NET DLL using IKVM.
2) ...
0
votes
2answers
124 views
Loading a class at runtime
I have some code which loads the class at runtime:
Class.forName("oracle.jdbc.driver.OracleDriver");
But there seems to be issues with this and IKVM - I was wondering if there were any alternative ...
0
votes
1answer
83 views
IKVM Help - Cannot find class when creating dll
This is a follow up to this post where i have discovered how to interact with dll files that were generated from .jars via IKVM How to call a dll file from c#
The application i have created in java ...
0
votes
1answer
238 views
How to convert from java.awt.image.BufferedImage/PDXObjectImage to System.Drawing.Image?
I am using IKVM in a C# application so that I can use PDFBox to extract information from PDFs. Using PDFBox, I am able to extract images into PDXObjectImage. I need to get this PDXObjectImage into a ...
0
votes
1answer
99 views
Using IKVM-compiled Java .dll in VBA/Excel?
I am looking to be able to execute code from a Java project inside an Excel VBA sheet. Elsewhere on SO, I have discovered IKVM, which is a .NET implementation of Java which allows converting a .jar ...
0
votes
2answers
135 views
Problem using Java standard library in C# with IKVM
I'm trying to use java.util.List in a C# file. I have IKVM 0.40. I try to use the java.util namespace like this
using IKVM.OpenJDK.Util;
and compile the file (test.cs) with Mono like this
mcs ...