Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
3answers
203 views

Memory leaking without objects growing in number or size

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 ...
4
votes
2answers
1k views

Downloading IBM J9 JDK

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 ...
3
votes
2answers
262 views

Using JNA with IBM J9 JVM

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 ...
2
votes
1answer
134 views

IBM JVM Garbage Collector details

I'm looking for details on the optthruput garbage collector of the IBM JVM. I already found this article, but I would like to know more details. For instance, I'd like to know how does the collector ...
2
votes
2answers
54 views

create an installer for windows mobile

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 ...
1
vote
7answers
1k views

Where can I find a particular version of the IBM JDK/JRE for Windows?

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 ...
1
vote
1answer
108 views

How can I get debug information printed on a J9 VM (Linux)?

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 ...
1
vote
2answers
59 views

Ibm J9 internet Connection on windows mobile

I need to manage the GPRS connection on a JavaME application (start an internet connection automatically or ask user to select some connection) in a symbol handheld device with Windows Mobile 5. I'm ...
1
vote
2answers
735 views

SSL HandShakeException: No_Certificate. Using IBM's J9 JVM and Apache Tomcat

I am developing a mobile application that is to run on a Windows Mobile PDA. The application is written in Java and to run it we are using the J9 JVM from IBM. The application communicates with an ...
1
vote
2answers
1k views

What's the default heap size for IBM's J9VM?

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 ...
0
votes
0answers
44 views

Load a class dynamically from a jxe file in J9

How can I load a class dynamically from a jxe file in J9 ? URL url = new URL("file:resources/test.jar"); URLClassLoader classLoader = new URLClassLoader(new URL[] {url}); Class testClass = ...
0
votes
2answers
360 views

JDBC support on J2ME

Currently I am trying to run an existing java application on a Windows Mobile 6.1 device. The java application had been developed for server side and uses JDBC. My problem is that the Java application ...
0
votes
1answer
327 views

Xerces behaving differently on SUN JRE v1.5 and IBM J9 v1.5

I am trying to parse some HTML using NekoHTML. The problem is that when the below code snippet is executed on the SUN JDK 1.5.0_01 it works fine (this is when i am using eclipse with sun jre). But ...
0
votes
1answer
108 views

how can i use encryption algorithm from installed provider on J9 vm?

Hi I am trying to user RSA on J9. The algorithm is offered by the 'J9JCE' provider which is an installed extension(i listed all the existing providers and algorithms and found them) but the exception ...
0
votes
1answer
52 views

CDC finger-friendly

I've been working in a Java mobile project using j9 as a virtual machine. So far the project has been developed for an stylus interaction using AWT components. We want to create a new version of the ...
0
votes
1answer
1k views

How do I create an alphablending BufferedImage using J2ME (CDC/PP 1.1)

I have a BufferedImage created using new BufferedImage(wid,hgt,BufferedImage.TYPE_INT_ARGB); to which I assemble a wallpaper using multiple other images. It works fine in Jave SE, but when I tried ...