Questions tagged [jrockit]

JRockit is a High performance JVM built into Oracle Fusion Middleware.

JRockit, a proprietary Java Virtual Machine (JVM) originally developed by Appeal Virtual Machines and acquired by BEA Systems in 2002,[1] became part of Oracle Fusion Middleware in 2008.

The JRockit code base and the HotSpot virtual machine from Sun Microsystems (now Oracle) are currently being integrated, with the target of releasing a JVM with a combined code base around the release date of JDK 8.

101 questions
2
votes
1 answer

Hessian with JRockit Compatibility

Has anyone run into this exception when running hessian on a JRockit VM? Caused by: java.lang.ArrayIndexOutOfBoundsException: -418 at com.caucho.hessian.util.IdentityIntMap.put(IdentityIntMap.java:141) at…
Tom H.
  • 31
  • 3
2
votes
4 answers

Can you run glassfish with JRockit?

Has anyone tried running glassfish with JRockit? I see some references saying it's not possible but they are very outdated. Anyone tried this?
GBa
  • 17,509
  • 15
  • 49
  • 67
2
votes
1 answer

Java Mission Control empty plugin list

I have install Java Mission Control using the Zulu Mission Control. However, when I click on "Install New Software..." there are no software available. The list is empty. I am not sure about what to do.
poiuytrez
  • 21,330
  • 35
  • 113
  • 172
2
votes
0 answers

GC Compaction pause issue in jrockit

Below is my application JAVA_OPTS parameter in jrocket . > -DRMIEngine -Xms10G -Xmx10G -Xns:1g -Xgc:pausetime -XpauseTarget:201 -XXgcTrigger=20 > -Xgc:gencon -XXkeepAreaRatio:50 -XXcompactRatio:10 -Xverbose:memory -Xverbose:gcreport…
RDP16
  • 53
  • 8
2
votes
1 answer

-XX:+TraceClassLoading equivalent for JRockit

We are having classloading issues and we want to trace the JVM classloader. On Sun JVM we generally use the -XX:+TraceClassLoading flags to throw some light at the problem, but this time we are using JRockit. Do any of you know if there is a way to…
fglez
  • 8,422
  • 4
  • 47
  • 78
2
votes
3 answers

java.lang.Error: "Not enough storage is available to process this command" when generating images

I am running a web application on BEA Weblogic 9.2. Until recently, we were using JDK 1.5.0_04, with JAI 1.1.2_01 and Image IO 1.1. In some circumstances (we never figured out exactly why), when we were processing large images (but not that large…
jhericks
  • 5,833
  • 6
  • 40
  • 60
2
votes
0 answers

Java native methods issues with SUN JVM (jdk1.5.0_14) and multi-core CPU’s

We are hosting an application on SUN JVM that handles a lot of XML parsing using Jaxb. The application is parsing the XML fine using JRockit 5 but when using the SUN JVM the JVM spends a majority of it’s time on native methods such as…
2
votes
2 answers

Android Studio / IntelliJ IDEA create new project failed with error message 'invalid type code: 00'

I've just downloaded Android Studio and updated to 0.3.6 before trying to create a new project. I was able to see the creation screen, enter basic info for the new project, create icon etc, however when project creation process was finishing it…
Kai
  • 15,284
  • 6
  • 51
  • 82
2
votes
1 answer

java.io.UnsupportedEncodingException: Unsupported Encoding utf-8";action="

We have a bunch of CXF web services running in weblogic 10.3.0.0. In sporadic situations, it looks like the network layer is not able to read the XML stream and weblogic server is throwing the following error. Our service consumers are saying that…
Shakeel
  • 31
  • 1
  • 3
2
votes
2 answers

Running Tomcat with JRockit

I have installed jrockit in my Ubuntu 11.10 and I would to configure Tomcat7 to run with jrockit in order to getting rid of PermGen (OutOfMemorry). But I don't know how configure Tomcat to run wirh JRockit Please , any idea ?!!
Linconnue55
  • 187
  • 3
  • 7
  • 16
2
votes
2 answers

unable to set xmx beyond 4gb on system having 8gb RAM

I need to set ANT_OPTS=-Xms1024m -Xmx6144m -XX:PermSize=1024m -XX:MaxPermSize=1024m JAVA_OPTS=-Xms1024m -Xmx6144m -XX:PermSize=1024m -XX:MaxPermSize=1024m I have a system with 8gb(recently upgraded from 4 gb) But once i set the ant opts to above…
Arun
  • 311
  • 3
  • 7
  • 15
2
votes
1 answer

Is it ok to save JavaVM * and JNIEnv * as a global variable and use it elsewhere?

JavaVM *javaVM = NULL; JNIEnv *jniEnv = NULL; ( createJavaVM )( &javaVM, ( void * )&jniEnv, &javaVMInitArgs ) where javaVM * and jniEnv * are global variables
shawn
  • 4,063
  • 7
  • 37
  • 54
1
vote
0 answers

What does "native_blocked" status mean in a jrockit JVM

I have a server process that seems hung, but there is no Java-level deadlock when I do a thread dump. There's only an Open lock chain with one of the critical threads in it (explains why the entire process "died"). At the "open" end of the chain, is…
RAY
  • 6,810
  • 6
  • 40
  • 67
1
vote
1 answer

JRockit setting for heap dump on OutOfMemory Error

I understand that there is a setting in Sun JVM for dumping the heap when OM occurs (-XX:+HeapDumpOnOutOfMemoryErro). Is there any similar setting for JRockit VM or the same setting will work?
Santosh
  • 17,667
  • 4
  • 54
  • 79
1
vote
0 answers

Fiddler not capturing http request from java code running on jrockit

I have my application running on jrockit jvm and I have set the jvm parameters as -DproxySet=true -Dhttp.proxyHost= -Dhttp.proxyPort=8888. But I dont see the http traffic routed though fiddler when a java application is making http calls. Looks…
nkare
  • 397
  • 6
  • 17