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
2
votes
2 answers

IBM vs Oracle/Sun JDK, java.util.Timzone getOffset () behaving differently

IBM vs Oracle/Sun JDK, java.util.Timzone behaving differently , IBM JDK 1.5 vs Sun/Oracle JDK 1.6 import java.util.*; class TimeTest { public static void main(String args[]){ long now = System.currentTimeMillis(); System.out.println("EST : " +…
M8R
  • 23
  • 3
2
votes
3 answers

Client requested protocol SSLv3 not enabled or not supported (IBM JDK 6.0SR10)

After updating from IBM JDK 6.0SR9 to 6.0SR10 I keep getting (on the server-side): java.io.IOException: javax.net.ssl.SSLHandshakeException: Client requested protocol SSLv3 not enabled or not supported at…
heeboir
  • 729
  • 1
  • 9
  • 26
1
vote
1 answer

JBang on OpenJ9

I'm trying to run the latest JBang v0.102.0 on Eclipse/IBM JDK, but I get this error. Any suggestions? C:\bin\jbang\bin>java -version openjdk version "17.0.5" 2022-10-18 IBM Semeru Runtime Open Edition 17.0.5.0 (build 17.0.5+8) Eclipse OpenJ9 VM…
dvisentin
  • 75
  • 6
1
vote
1 answer

JSP compilation error For IBM JDK 1.5 Servlet version 2.5

I'm using IBM JDK and Eclipse Hellos. When I'm devloping simple web project, I'm getting error in compilation of jsp page. If I change my JDK to normal Sun JDK, then every thing's working fine. But I have to use IBM jdk as production environment; I…
user862876
1
vote
0 answers

Load JCKES keystore using SunJCE provider on IBM JDK

I am trying to load JCKES keystore which is using SunJCE provider in my application which is running IBM JDK 8 (power linux). To enable my application to load keystore, I have done below steps: Extracted sun package from oracle jdk's rt.jar,…
priyam
  • 74
  • 7
1
vote
0 answers

Issue with SSL encryption between WebSphere App & Oracle database

we have our java application deployed in WebSphere Application server(8.5.5.12) with IBM SDK 8.0.5.17 with backend database as oracle (12.1.0.2.0). we are now trying to encrypt the data between WebSphere Application and the database. We have…
1
vote
0 answers

PKCS12 KeyStore problem while migrate from Oracle to IBM

I'm trying to migrate my spring service from java Oracle 1.8 to IBM 1.8 final KeyStore ks = KeyStore.getInstance("PKCS12"); ks.load(new FileInputStream(new File(keystore)), "".toCharArray()); final KeyManagerFactory kmf =…
E.Bash
  • 21
  • 3
1
vote
1 answer

cvc-elt.1: Cannot find the declaration of element 'server' - Only a problem on IBM Java 8

I'm testing our software with several versions of Java 8. It works fine with RedHat's and Zulu, but with IBM's Java 8, it's throwing the following exception: org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 1 in XML…
Jack BeNimble
  • 35,733
  • 41
  • 130
  • 213
1
vote
1 answer

Java SecurityException Cannot locate policy or framework files after updating to latest version

Here's how I launch java java -Djava.rmi.server.hostname=myhostname \ -Djava.security.policy=/myprogram/java.policy \ -Dcom.ibm.tools.attach.enable=no -jar \ /myprogram/myjar.jar and the contents of java.policy is grant codeBase…
activedecay
  • 10,129
  • 5
  • 47
  • 71
1
vote
2 answers

WSDL2JAVA does not generate setter methods

Has anyone come across this? Basically I switched from the SUN jre to IBM's and compilation fails due to wsdl2java not having compiled the necessary setter methods. Thanks in advance.
heeboir
  • 729
  • 1
  • 9
  • 26
1
vote
0 answers

java.io.StreamCorruptedException: invalid type code: F1

When I used ObjectInputStream with IBM JDK7,I got the exception: java.io.StreamCorruptedException: invalid type code: F1 at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1712) at…
beibm
  • 11
  • 2
1
vote
1 answer

SecretKeyFactory.generateSecret dies with InvalidKeySpecException on IBM Java

We are hashing a password using the PBKDF2 algorithm, using the SecretKeyFactory.generateSecret function, like this: final SecretKeyFactory secretKeyFactory = SecretKeyFactory.getInstance(algorithm); final PBEKeySpec keySpec = new…
Mormegil
  • 7,955
  • 4
  • 42
  • 77
1
vote
1 answer

How to Get IBM jdk7 for Windows(similar to sun/oracle)

Followed the link to get the IBM jdk7 : https://www.ibm.com/developerworks/java/jdk/eclipse/ but found that IBM provides jdk for windows integrated with the eclipse(Luna) present inside the package : IBM Development Package for Eclipse downloaded…
Ranjan
  • 475
  • 1
  • 5
  • 18
1
vote
3 answers

How to enable TLS version 1.2 in web logic for outgoing https transactions

I am working on one project which require TLS version 1.2 to be enabled on web logic server for outgoing https transactions. I tried using below properties in web logic startup script…
smallarv
  • 57
  • 1
  • 2
  • 12
1
vote
2 answers

WebSphere NoClassDefFoundError for Oracle Java class

I'm getting a NoClassDefFoundError for a class that exists in Oracle's rt.jar, but doesn't seem to exist in WebSphere's rt.jar. java.lang.NoClassDefFoundError: com/sun/org/apache/xpath/internal/NodeSet My understanding of WebSphere is that native…
Corey
  • 60
  • 9