Questions tagged [ibm-jdk]

The IBM JDK (IBM Java Development Kit) is IBM's implementation of the Java Platform Standard Edition. It is available on wide variety of platforms including: Windows, Linux (on x86, Power, and z Systems), AIX, and z/OS.

The IBM JDK (IBM Java Development Kit) is IBM's implementation of the Java Platform Standard Edition. It is available on wide variety of platforms including: Windows, Linux (on x86, Power, and z Systems), AIX, and z/OS.

83 questions
15
votes
3 answers

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 J9 JDK and Apache Harmony project? Thank you.
M99
  • 1,859
  • 10
  • 28
  • 50
13
votes
7 answers

Error accessing a Web Service with SSL

I have a program that is supposed to send a file to a web service, which requires an SSL connection. I run the program as follows: SET JAVA_HOME=C:\Program Files\Java\jre1.6.0_07 SET com.ibm.SSL.ConfigURL=ssl.client.props "%JAVA_HOME%\bin\java" -cp…
Elie
  • 13,693
  • 23
  • 74
  • 128
12
votes
3 answers

What are the difference between ibm jdk and oracle jdk?

I'm writing Java code that will run on an AIX server. I'd like to know the difference between IBM's JDK and Oracle's JDK, and if the JDKs have the same classes. Does the IBM JDK have all the classes present in the Oracle JDK? Are there any IBM…
Matteo Codogno
  • 1,569
  • 6
  • 21
  • 36
10
votes
4 answers

Upgrade RHEL from 7.3 to 7.4: ArrayIndexOutOfBoundsException in sun.font.CompositeStrike.getStrikeForSlot

We just upgraded a server from RHEL v7.3 to v7.4. This simple program works in RHEL v7.3 and fails in v7.4 public class TestJava { public static void main(String[] args) { Font font = new Font("SansSerif", Font.PLAIN, 12); …
titou10
  • 2,814
  • 1
  • 19
  • 42
7
votes
4 answers

Could not find TLS ALPN provider; no working netty-tcnative, Conscrypt, or Jetty NPN/ALPN available

What version of gRPC are you using? 1.13.1 I am using java 8 to build an executable jar. Below is the java version: $ /usr/lib/jvm/java-1.8.0-openjdk-amd64/jre/bin/java -version openjdk version "1.8.0_171" OpenJDK Runtime Environment (build…
Ankit Shubham
  • 2,989
  • 2
  • 36
  • 61
5
votes
1 answer

FileNet - Data to be copied exceeds space available error

some other team is calling our FileNet custom app for searching documents. I believe some of the users are facing intermittent failure because we are getting tickets(although none of the user has reported this issue) for the error below and I tried…
tiktok
  • 279
  • 2
  • 23
3
votes
1 answer

websphere 7 Debug Port: 0.0.0.0

I'm using Webshpere 7 and I can't connect my debugger to Webshphere. I've tried this on the command line... /opt/IBM/WebSphere/AppServer/java/bin/java -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=0.0.0.0:3389 Test Using 0.0.0.0 in…
jeff porter
  • 6,560
  • 13
  • 65
  • 123
3
votes
1 answer

Will lastest websphere liberty full platform run oracle java 8?

I am looking at the latest websphere liberty 8.5.5.7 full platform (https://developer.ibm.com/wasdev/downloads/liberty-profile-using-non-eclipse-environments/) and I wonder if it can run oracle java 8? I see on the download page that ibms java 8…
user1329339
  • 1,295
  • 1
  • 11
  • 26
3
votes
1 answer

DecimalFormat gives differfent result in Oracle Java 1.7 and IBM java 1.6

lets have a simple test code: public static void main(String ... arg) { double d = 4000.0; DecimalFormat df = new DecimalFormat("#,###.##"); System.out.println(df.format(d)); } In Oracle/SUN java output is (with space): 4 000 But in…
JIV
  • 813
  • 2
  • 12
  • 30
2
votes
2 answers

Gradle build using IBM JDK not using TLS 1.2

We are invoking gradle build from Jenkins and Java being used is IBM java 1.8. After the build is completed the packaged ear file is supposed to be published on Artifactory and thats where it fails because it is using TLSv1 whereas the artifactory…
user2101374
  • 61
  • 1
  • 8
2
votes
1 answer

Does WebSphere's JAXB MarshallerProxy use the reference implementation?

At https://stackoverflow.com/a/35443723/1031689 setting the system property com.ibm.xml.xlxp.jaxb.opti.level=0 in WebSphere. Using this setting will cause the JAXB reference implemenation to be used for unmarshalling and marshalling instead of …
JasonPlutext
  • 15,352
  • 4
  • 44
  • 84
2
votes
1 answer

Why NewGlobalRef will core dump on JNI on an IBM JDK?

I believe I have hit a bug on the IBM JDK on its JNI implementation. I'm working on Apache ActiveMQ Artemis and we recently had to make this following fix as we were having issues on the IBM JDK…
Clebert Suconic
  • 5,353
  • 2
  • 22
  • 35
2
votes
2 answers

Worklight Push notification (APNS) fails with javax.net.ssl.SSLHandshakeException

I have a Worklight 6.1 app on iOS with push notifications. It works fine, until something goes wrong on the Worklight server. All push notifications after that fail until the server is restarted. The Worklight server is Liberty 8.5.5.0 on Linux…
2
votes
1 answer

Java FX 2 on IBM jdk?

Does IBM's java 7 bundle Java FX 2? I have JDK Version 7 Release 1 for Linux (32 bit) and it doesn't seem to contain it. If it doesn't, can I still use it, and what do I need to do for that? Thanks
Mihai Tudor
  • 422
  • 4
  • 15
2
votes
1 answer

IBM Jdk Issue Kerberos: Cannot authenticate keytab with credsType=both in JAAS

I have a service to service model in which I have a keytab for Kerberos Authentication. In this model I have defined a login configuration as the follows:- import java.util.HashMap; import java.util.Map; import…
Arunav Sanyal
  • 1,708
  • 1
  • 16
  • 36
1
2 3 4 5 6