Question

I installed JDK 1.6 b45 and tried to get glassfish v2.2 running. when I try starting it I always get the following error thrown:

[#|2013-06-18T08:50:20.196+0200|WARNING|sun-appserver2.1|javax.enterprise.resource.corba.ee._CORBA_.rpc.encoding|_ThreadID=10;_ThreadName=main;;_RequestID=29fde611-2769-4cdb-a37c-ceeb07dd24f2;|"IOP00711413: (INTERNAL) Could not find the expected Value Handler implementation in the JDK: Wrong JDK Version?"

I cant figure out where the problem is. Can anyone help?

Was it helpful?

Solution 3

What fixed it for me was going to JDK 1.6b31. I have no idea why this works but we use it on many pcs now and it works just fine!

OTHER TIPS

Ok i found the solution on Oracle support here is what they say

"The warning can be ignored. If you wish to prevent it from being reported the Corba logging level can be raised to SEVERE, either by specifying the logging level in a Java logging properties file:

javax.enterprise.resource.corba.level=SEVERE or directly in the client itself:

Logger.getLogger("javax.enterprise.resource.corba").setLevel(Level.SEVERE); This issue will be corrected in GlassFish Server 2.1.1.21 when available."

The error began appearing in Java 6 >= u45. It is safe to ignore. You can run the following to stop it from appearing:

asadmin set server.log-service.module-log-levels.corba=SEVERE
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top