On an IBM iSeries system, I have a Java program running - an application server with a web server component, all in-house developed. When running on the 32 bit or 64 bit J9 JVM (IBM Technology for Java) I have symptoms of a memory leak.
Note that…
I have the following questions on IBM J9 JDK/JRE.
Does any one know the location where I can download the latest J9 JDK? I googed it and couldn't find the location.
What is the relation between IBM J9 JDK and Apache Harmony project?
Thank you.
I'm trying to get a rather JDK-sensitive piece of Oracle software working with Websphere, and I need to find some particular versions of the IBM JDK to try. The problem is that IBM doesn't really make these readily available like Sun/Oracle does…
I'm having trouble understanding the way the IBM JVM's implementation of java.io.File deals with UTF-8 on AIX on the JFS2 filesystem. I suspect there's a system property that I'm overlooking, but I have not yet been able to find it.
Let's assume I…
The first difficulty in using JNA with J9 is that the J9 JVM does not include the java.awt package and the Native class imports a few classes from this package. This is easily overcome by downloading the JNA source, ripping out these imports and…
I have developed an application using J9 that runs in windows mobile. but now I want it to package in a single installer(.cab), that should copy the J9 files, my application and its dependencies to a folder in the mobile, and creates some…
Simple question:
Is the IBM J9 Java 6 bundled class com.sun.imageio.plugins.jpeg.JPEGImageReader exactly the same as the class with the same package/class name in a standard Sun/Oracle JRE?
(And if it is, is it using the same native/JNI…
I need to read the output of a process running on IBM j9 (emulator JVM to windows mobile). I tried this:
Process p = Runtime.getRuntime().exec("j9.exe");
BufferedReader br = new BufferedReader(new InputStreamReader(
…
I am trying to initialize a Mac instance using an empty key. But it is failing with "InvalidKeyException".
Following is the snippet of code working with Oracle Java, but giving exception with IBM J9. . Can someone please help me in resolving the…
I have build openj9 for Windows using these instructions: https://github.com/eclipse/openj9/blob/master/buildenv/Build_Instructions_V8.md#windows
When I try the following code (Visual Studio 2017):
J9PortLibraryVersion…
I'm using J9 VM to run my application on a Linux machine (BusyBox).
When developing and testing on my Windows environment, also with J9, I get full debug information on stack traces. That doesn't happen on the Linux machine.
I've checked both VMs…
I have a little java program that reads a db2 table via jdbc. This program is invoked via "tso bpxbatch myjavatool".
I wonder if there is the possibility to "pass" the username/password of my TSO user to the JDBC driver?
For example, if I connect to…
I have IBM's J9 VM (build 2.3, J2RE 1.5.0 IBM J9 2.3) installed. After getting an OOM, the size of the heap dump is 383MB. How much heap does the JVM have?
The reason why I ask is that a 400MB heap dump seems a bit much for the default 64MB heap…
What is the correct way to attach to IBM's J9VM using the Java Attach API?
I am trying the following (with having the JDK's tools.jar in my classpath):
private static final J9AttachProvider ATTACH_PROVIDER = new J9AttachProvider();
...snip...
…
I am trying to debug large byte object which is 2GB and seems to contain nulls only. I cannot find any GC roots when using Eclipse MAT. The JVM is running IBM J9 in websphere. Any ideas why Eclipse MAT is not showing any GC roots, hard or…