Is OC4J container certified with JRockit, IBM JVMs ?

Hi All,
Is OC4J container certified with Jrockit and IBM JVMs ?
we have been using the default sun hotspot jvm that comes with oc4j but now we are trying to use Jrockit but not sure wheather OC4J is certified to run with JRockit
Thanks
Raghavendra

Raghavendra,
Please review this document
Please use Metalink to check for certification matrixes, all the OS and other certify material can be found on Metalink.
Deepak

Similar Messages

  • OC4J 10.1.3 - JRockit supported configuration?

    (this is a double post also in the Jrockit-forum. I was not really sure where to place it)
    Hey there,
    I could not find a list of supported configurations for OC4J in combination with JRockit. Is that somewhere availble?
    More in particular: When using JRockit with Oracle AS/OC4J v10.1.3.3 -> is this officially supported ?
    grtx,
    \thomas

    Thomas,
    Please, check the document :
    - Upgrading to JRockit JDK 6 on Oracle Application Server 10g Release 3 (10.1.3) (Doc ID 818556.1)
    If you still need it.
    Regards,
    Steff

  • Extremely slow performance with ojdbc6.jar on IBM JVMs (Java 6)

    We are consistently seeing slow performance (easily demonstrable by the simplest of test cases) while using ojdbc6.jar on IBM JDKs. Pefrormance is normal when we simply opt for ojdbc14.jar under the same JDK, same java program.
    Works well
    =======
    JRockit, ojdbc6.jar
    JRockit, ojdbc14.jar
    IBM JDK, ojdbc14.jar
    A lot slower
    =======
    IBM JDK, ojdbc6.jar
    All we had to do was to write a simple JDBC access program and measure time taken around
    Connection conn = DriverManager.getConnection(jdbcURL, dbProps);
    The first 3 combinations mentioned above return comparable numbers. The 4th combination takes 3-4 times as much.
    We initially saw this during performance test of our software on WebSphere (also supported on Weblogic). Later was able to eliminate WebSphere and Weblogic as the problem areas and narrow it down to the JVM. Reproduce-able on development machines.
    We have been using Oracle/WLS since BEA used to market 'Tengah' servers. This is the worst we have seen as far as the qaulity of support staff goes. We first level support seems clueless. We filed this case and the support comes back tells us that IBM JDKs are not supported for WLS! Oh, we have been running WLS/AIX/IBM JVM combination only for 5+ years.

    A quick solution to test this would be to do the following:
    mv /dev/random /dev/random.bk
    ln /dev/urandom /dev/random
    Note: The quick solution will disappear after a reboot. You could add it to rc.local to automatically make this change, but I wouldn't recommend it.
    The following is from [http://www.usn-it.de/index.php/2009/02/20/oracle-11g-jdbc-driver-hangs-blocked-by-devrandom-entropy-pool-empty/]:
    "Oracle 11g JDBC driver hangs blocked by /dev/random – entropy pool empty
    On a headless (=without console) network server, the 11g JDBC driver used for (java) application connect may cause trouble. In my case, it refused to connect to the DB without any error, trace or log entry. It simply hung. After several hours, it connected one time, and freezed again. Remote debugging done by the development clarified that it locks after calling SeedGenerator() and SecureRandom().
    Reason: The JDBC 11g needs about 40 bytes of secure random numbers, gathered from /dev/random, to encrypt its connect string.
    But public-available “man 4 random” says:
    When read, the /dev/random device will only return random bytes within the estimated number of bits of noise in the entropy pool. /dev/random should be suitable for uses that need very high quality randomness such as one-time pad or key generation. When the entropy pool is empty, reads from /dev/random will block until additional environmental noise is gathered.
    So far so good, now the question arises: Why does this mystic “entropy pool” runs out of gas?
    The answer is as simple as unsatisfying: because too less entropy “noise” was generated by the system. You can check the “filling level” (maybe zero?) of your pool and the overall size of the pool (usually 4096) by issuing
    cat /proc/sys/kernel/random/entropy_avail
    cat /proc/sys/kernel/random/poolsize
    Hint: /dev/random will deliver one new random number as soon as the pool has reached more than 64 entropy units.
    So why does my box not generate more entropy noise?
    Because only few drivers will fill the entropy pool, first of all keyboard and mouse. Sounds very useful on a server in a datacenter, isn’t it? Some block device and network drivers seem to do so as well, and I have read from guys on the net changing their network card and driver to enjoy this “feature”! But let’s stop ranting, /dev/random is simply made for high security randomness, and if it can’t make sure that randomness is as good as possible in this deterministic world, it stops. Intelligent people have created /dev/urandom for that, like “man 4 random” clearly states:
    A read from the /dev/urandom device will not block waiting for more entropy. As a result, if there is not sufficient entropy in the entropy pool, the returned values are theoretically vulnerable to a cryptographic attack on the algorithms used by the driver. Knowledge of how to do this is not available in the current non-classified literature, but it is theoretically possible that such an attack may exist. If this is a concern in your application, use /dev/random instead.
    Now let’s get back on our JDBC problem. Oracle JDBC 11g seems to use /dev/random by default, which causes usually no trouble on clients running with console access by a user, because his/her unpredictable :) actions will keep the entropy pool well-fed. But to make it usable on a headless server with a latently empty entropy pool, you should do several things, in descending security order (without warranty):
    1. Involve an audio entroy daemon like AED to gather noise from your datacenter with an open microphone, maybe combine it with a webcam noise collector like VED. Other sources are talking about “Cryptographic Randomness from Air Turbulence in Disk devices“. :)
    2. Use the Entropy Gathering Daemon to collect weaker entropy from randomness of userspace programs.
    3. Talk your JDBC into using /dev/urandom instead:
    -Djava.security.egd=file:///dev/urandom"

  • IBM JVM - what is happening with it?

    I have not heard much talked about the IBM JVM (I think it was up to version 1.3 on windows and linux, perhaps higher on IBM platforms).
    The few things I have heard about it said it was good. In fact I am interested in any non-sun JVMs (that are up to J2SE1.4 if possible) for comparison. I have tried JRockit for server side apps, and in some cases the performance increase was substantial. In any case, having another JVM to play with would be useful (competition is a good thing).
    Any ideas what happened to all the JVM implementations (not interested in anything pre 1.3 J2SE, or anything that is half done).

    I have not heard much talked about the IBM JVM (I
    think it was up to version 1.3 on windows and linux,
    perhaps higher on IBM platforms).
    The few things I have heard about it said it was good.
    In fact I am interested in any non-sun JVMs (that are
    up to J2SE1.4 if possible) for comparison. I have
    tried JRockit for server side apps, and in some cases
    the performance increase was substantial. In any case,
    having another JVM to play with would be useful
    (competition is a good thing).
    Any ideas what happened to all the JVM implementations
    (not interested in anything pre 1.3 J2SE, or anything
    that is half done).Hi Michael,
    IBM/JRE 1.3.1 is still used in IBM products like Notes/Domino 6
    and the Websphere products.
    Marc

  • Problem with IBM JVM or the Thread

    Hi All,
    I have a class which implements Runnable. The purpose of the program is to read a file and count the number of lines present in that.
    I am using the IBM JVM. The logic runs like this..
    For each 2048 bytes read , it spawns a new thread with this object and each such new thread counts the no. of newline chars present. Once the thread is finished with its 2048 bytes it upddates an instance variable , count, to that value , updates the boolean done flag to "true" and stops. Once the whole file is read(thereby creating filesize/2048 threads ) , it keeps waiting for the threads to finish and then adds all the counts.
    Now the problem is that for some reason these threads seem to hang. There are no static vars present.
    Pls help.
    Tx

    Help yourself first.
    If this is "Windows", try typing Ctrl-Break in your window (Type Ctrl-\ if you're on Windows). This will produce a thread dump with all of your threads.
    See which ones are running, and what they're doing.
    Did you remember to either make your threads daemons (setDaemon(true)), or explicitly exit the run() method of the threads?

  • Lots of exceptions thrown with JRockit JVM

    Hi,
    We are switching to test our codes based on JRockitRealTime 3.0.0, 1.6, linux 64 from Sun HotSpot.
    Our Coherence version is 3.3.1
    We notice a quite a few things are significant slower when compared to the results based on HotSpot.
    Turning on the Xverbose:exceptions=debug, we see lots of exceptions thrown, the following is just 1 example of many (with different kinds of stack trace too) related to Coherence API calls. And we believe they are the main cause to the slowdown. Has this kind of problem observed and reported to Coherence before? We did not see the exceptions from running HotSpot JVM, and looks like there is no need/way to turn on the exception traces from HotSpot HVM so we assume there were no exceptions thrown when we ran our applications based on HotSpot JVM.
    Regards,
    Jasper
    DEBUGexcepti00180 java/lang/NoSuchMethodException: java.lang.String.clone()^M
    at jrockit/vm/Reflect.fillInStackTrace0(Ljava/lang/Throwable;)V(Native Method)^M
    at java/lang/Throwable.fillInStackTrace()Ljava/lang/Throwable;(Native Method)^M
    at java/lang/Throwable.<init>(Throwable.java:196)^M
    at java/lang/Exception.<init>(Exception.java:41)^M
    at java/lang/NoSuchMethodException.<init>(NoSuchMethodException.java:32)^M
    at java/lang/Class.getMethod(Class.java:1605)^M
    at com/tangosol/run/xml/PropertyAdapter.<init>(PropertyAdapter.java:152)^M
    at com/tangosol/run/xml/SimpleAdapter.<init>(SimpleAdapter.java:59)^M
    at com/tangosol/run/xml/SimpleAdapter$StringAdapter.<init>(SimpleAdapter.java:1415)^M
    at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)^M
    at jrockit/vm/Reflect.invokeMethod(Ljava/lang/Object;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(Native Method)^M
    at sun/reflect/NativeConstructorAccessorImpl.newInstance0(Ljava/lang/reflect/Constructor;[Ljava/lang/Object;)Ljava/lang/Object;(Native Method)^M
    at sun/reflect/NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)^M
    at sun/reflect/DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)^M
    at java/lang/reflect/Constructor.newInstance(Constructor.java:513)^M
    at com/tangosol/run/xml/XmlBean$BeanInfo.makeAdapter(XmlBean.java:1141)^M
    at com/tangosol/run/xml/XmlBean$BeanInfo.<init>(XmlBean.java:966)^M
    at com/tangosol/run/xml/XmlBean.initBeanInfo(XmlBean.java:874)^M
    at com/tangosol/run/xml/XmlBean.findBeanInfo(XmlBean.java:814)^M
    at com/tangosol/run/xml/XmlBean.getBeanInfo(XmlBean.java:362)^M
    at com/tangosol/util/ExternalizableHelper.writeXmlBean(ExternalizableHelper.java:2009)^M
    at com/tangosol/util/ExternalizableHelper.internalWriteObject(ExternalizableHelper.java:2505)^M
    at com/tangosol/util/ExternalizableHelper.toBinary(ExternalizableHelper.java:169)^M
    at com/tangosol/coherence/component/util/daemon/queueProcessor/service/DistributedCache$ConverterKeyToBinary.convert(DistributedCache.CDB:30)^M
    at com/tangosol/util/ConverterCollections$ConverterMap.put(ConverterCollections.java:1317)^M
    at com/tangosol/coherence/component/util/daemon/queueProcessor/service/DistributedCache$ViewMap.put(DistributedCache.CDB:1)^M
    at com/tangosol/coherence/component/util/SafeNamedCache.put(SafeNamedCache.CDB:1)^M
    at com/oracle/ngc/prototype/platform/CacheHelper.createObject(CacheHelper.java:808)^M
    at com/oracle/ngc/prototype/object/Account.BulkCreate(Account.java:186)^M at com/oracle/ngc/prototype/loader/PopulateSubscriptionCache$LoadDaemon.run(PopulateSubscriptionCache.java:379)^M
    at com/tangosol/util/Daemon$DaemonWorker.run(Daemon.java:519)^M
    at java/lang/Thread.run(Thread.java:619)^M
    at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)^M
    --- End of stack trace^M                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Hi Jasper,
    First, I'd like to underscore that what you see are exceptions that are expected and handled gracefully by the standard Java serialization or Coherence classes.
    The reason you don't see those exceptions with Sun's JVM is that it does not have an option (at least to my knowledge) to show them. This is a very nice debugging feature of JRockit that allows you to see what is going on (and always has been!) under the hood.
    The example you gave is a part of the XmlBean introspection logic checking for a public "clone" method. This code runs once per a class initialization as a part of the static initializer and, as a result, does not impact an application performance. However, if you see exceptions that are occurring constantly, it definitely should be of concern.
    Regards,
    Gene

  • Is 10.2.0.3 is certified with oracle apps 11.5.10.2

    Hi,
    Is 10.2.0.3 is certified with 11.5.10.2....
    One more thing...
    During upgrade of 11.5.10.2 Database to 10g R2...
    Do we require 10g Release 2 Companion CD, if it is why it is required...with out this..cant we upgrade....
    Please give advice
    following are the components from Oracle Companion CD...
    ======================================================
    we are not going to implement these
    JPublisher
    Oracle Database Examples (formerly Oracle Demos)
    Oracle JVM
    Oracle interMedia
    Oracle Text Supplied Knowledge Bases
    Oracle Ultra Search
    Oracle HTTP Server
    Oracle HTML DB
    Oracle Workflow server and middle-tier components
    ==================================
    Is the above things compulsory required to upgrade to 10g..

    Yes 10.2.0.3 is certified for 11.5.10.2
    Follow the latest 10gR2/11i Interoperability Notes (362203.1)
    Oracle Applications Release 11i with Oracle 10g Release 2 (10.2.0)
    http://metalink.oracle.com/metalink/plsql/showdoc?db=NOT&id=362203.1
    You need to install the companion CD. 8i/9i delivered Intermedia and the JVM by default, and in 10g those products are contained on the companion CD. Your upgrade will fail if those components are not installed in the 10gR2 Oracle Home. You do not need to install the Oracle HTTP Server or HTML DB.

  • IBM JVM and WebLogic

    I consider using IBM JVM 1.2.2 with WebLogic 5.1. Has anyone tried this
    before?
    Are there any suggestions about performance and realibility of such
    configuration?
    Thanks in advance
    Wojtek

    I am pretty sure that it is not certified. The platform support page for
    WebLogic Server is located at:
    http://www.weblogic.com/platforms/index.html
    This page has the latest and greatest information on the platforms that
    WebLogic is certified and supported on.
    Thanks,
    Michael
    Michael Girdley
    BEA Systems Inc
    "Wojciech Ozimek" <[email protected]> wrote in message
    news:[email protected]..
    I consider using IBM JVM 1.2.2 with WebLogic 5.1. Has anyone tried this
    before?
    Are there any suggestions about performance and realibility of such
    configuration?
    Thanks in advance
    Wojtek

  • AD4J with JRockit

    A customer wants to use AD4J for their production applications running on the following environment
    Weblogic 9.2
    Red Hat Enterprise Linux 4.0 (64 bit)
    JRockit 1.5_04 (64 bit)
    AD4J 10.2.0.4 Version 4
    From the readme.txt I understand that this version of JVM is not supported with AD4J (I tried connecting to an agent running on this app server. It connected to all the JVMs but displayed the message "JVM not supported" in the JVM's section of the console).
    Is there a work around to use AD4J with this application? Are there plans to support 64bit Jrockit on linux for AD4J? Also, how does JRMC compare against AD4J in terms of features? Can we run JRMC all the time in production environment without any high overhead?
    Appreciate your help
    Sairam

    The AD4J team is certifying their product with JRockit on one platform at a time, with the most common deployment platforms for WLS/JRockit first. I would expect 64-bit Linux soon since it is also rather common (but still trailing 32-bit).
    Henrik

  • IBM JVM & weblogic?

    WLS 5.1 is certified only on IBM 1.1.8 JVM. I would like to be using the IBM 1.30
    JVM. Or rather, any JAVA 2 JVM that supports native threads. IBM 1.1.8 JVM won't
    work for us because our application wont compile under jdk1.1.8
    The issue is i'd rather not be using green threads for my production environment.
    Any thoughts?
    IBM JDK 1.3 performance seems to be stellar.
    Any plans to support this jvm on WLS 5.0? 6.0? 6.1? Our shop wants to support
    linux production enviroments, but we are hesitant to move forward with the green
    threads on the sun 1.2.2 jvm.

    I am pretty sure that it is not certified. The platform support page for
    WebLogic Server is located at:
    http://www.weblogic.com/platforms/index.html
    This page has the latest and greatest information on the platforms that
    WebLogic is certified and supported on.
    Thanks,
    Michael
    Michael Girdley
    BEA Systems Inc
    "Wojciech Ozimek" <[email protected]> wrote in message
    news:[email protected]..
    I consider using IBM JVM 1.2.2 with WebLogic 5.1. Has anyone tried this
    before?
    Are there any suggestions about performance and realibility of such
    configuration?
    Thanks in advance
    Wojtek

  • Debugging application/OC4J container

    I have some application running in separate 9iASR2 9.0.2.0.0 OC4J containers that appear to randomly freeze (this happened 7 times in May, 2003). Only restarting the OC4J container fixes the problem. As far as I can tell, there are no obvious problems (db connectivity, OS problems, ...) that could be causing this freezing.
    My question is, how do you go about trouble shooting debugging an application running in a OC4J container. What kind of tools should I be using? Jprobe?
    Any help is appreciated.
    Daniel

    Hi Daniel --
    Tools which act as profilers such as JDeveloper,JProbe, etc. can help assist with the codepath and possible source of a freeze.
    Sounds like you've checked the right items -- I have seen instances where an application was leaking database connections in a side and infrequently executed codepath, which contributed to the system freezing.
    Another option for freezes is to get the running JVM to do a thread-dump to see if there are any locks on objects that are leading to deadlocks -- this can be done on Unix by issuing a "kill -3 <pid>" on the running JVM process.
    cheers
    -steve-

  • Help with jrockit crashes (dump files) at MemSystem.getMoreTLAMemory

    Hello,
    We've recently started experiencing a lot of instability in one of our new deployments, generating core dumps as listed below.
    The server in question is running jboss 3.2.2 with jrockit 1.4.2_03, on Red Hat Enterprise Linux WS release 3 (Taroon Update 3), with SQL Server 2000.
    The dump file is listed below (I've actually listed 2). Any help or suggestions for research would be greatly appreciated. This is in our production environment, so I'm anxious for input. Thank you!
    JRockit context dump produced after 0 days, 15:04:58 on Tue May 17 08:22:34 2005
    If you see this dump, please send it, along with as much
    information as you can on your system setup and the program
    you were running, to [email protected]. Please include the
    file jrockit.29470.dump from the current directory in the bug
    report. Thank you.
    A core file will be dumped into /usr/local/jboss-3.2.2/bin.
    Please attach that file to your bug report.
    Error Message: Null pointer exception in native code
    Signal info : si_signo=11, si_code=2
    Version : ari-24879-20031212-1523-linux-ia32
    Threads / GC : Native Threads, GC strategy: gencon
    : mmHeap->data = 0x9ef30000, mmHeap->top = 0xb6f30000
    : nurseryStartAddress = 0xa1bdb1d0, nurseryEndAddress = 0xa60a92b0
    : mmStartCompaction = 0xa0d30000, mmEndCompaction = 0xa8530000
    Number CPUs : 4
    Tot Phys Mem : 4187815936
    OS version : Red Hat Enterprise Linux WS release 3 (Taroon Update 4)
    Linux version 2.4.21-20.ELsmp ([email protected]) (gcc version 3.2.3 20030502 (Red Hat Linux 3.2.3-42))
    #1 SMP Wed Aug 18 20:46:40 EDT 2004
    State : JVM is running
    Command Line : -Djava.class.path=. -Dconfig_name=ciscotiger -Xms:384m -Xmx:384m -Xgc:gencon -Xns:52m -Djava.awt.headless
    =true -Xmanagement -Djrockit.managementserver.port=17390 -Djava.class.path=/usr/local/jboss/bin/run.jar:/usr/local/jboss
    /hhlib/log4jInitializer.jar:/usr/local/jboss/hhlib/log4j.jar:/usr/local/jrockit1.4.2/lib/tools.jar -Dsun.java.command=or
    g.jboss.Main -c ciscotiger
    Environment : JAVA_HOME=(null), java.home=/usr/local/jrockit-j2sdk1.4.2_03/jre, java.class.path=/usr/local/jboss/bin/ru
    n.jar:/usr/local/jboss/hhlib/log4jInitializer.jar:/usr/local/jboss/hhlib/log4j.jar:/usr/local/jrockit1.4.2/lib/tools.jar
    , java.library.path=/usr/local/jrockit-j2sdk1.4.2_03/jre/lib/i386/jrockit:/usr/local/jrockit-j2sdk1.4.2_03/jre/lib/i386:
    /usr/local/jrockit-j2sdk1.4.2_03/jre/../lib/i386
    C Heap : Good; no memory allocations have failed
    Registers:
    EAX = b7413c39 EBX = 9479e0d4
    ECX = 9479e1e0 EDX = 00000000
    ESI = 09087488 EDI = 090fbda8
    ESP = 9479e08c EIP = b7413c39
    EBP = 9479e0a8 EFL = 00010286
    CS = 0023 DS = 002b ES = 002b
    SS = 002b FS = 003b GS = 0033
    Stack:
    9479e08c :b72eb7b5 00000000 9479e0b0 00000000 9479e0d4 9479e29c
    9479e0a4 :9479e1e0 09087488 b72ebca3 00000000 3ff00000 9479e0d4
    9479e0bc :b72ef852 09087488 9479e1c4 9479e114 b72eb571 09087488
    9479e0d4 :00000000 00000000 b75a0000 09087488 9479e1c4 090fbda8
    9479e0ec :b72ebe38 00000000 3ff00000 09087488 b72ebe27 9479e29c
    9479e104 :09087488 9479e244 b72efed2 b73ec650 b73ec6e5 00000000
    9479e11c :b72efb23 b73ec650 9479e1c4 9d9a8462 b72efb1a 9479e1e0
    9479e134 :9479e244 9479e29c b72ed88d 9479e1e0 09087488 9479e1e0
    9479e14c :9d9a8460 9479e1e0 9479e1c4 090fbda8 09087488 9479e1e0
    9479e164 :9d9a8462 090fbda8 b72f0034 9d9a8463 9d9a8463 00000011
    9479e17c :b738a732 9479e1e0 9479e1c4 090fbda8 b72eb265 9479e1e0
    9479e194 :09087488 090fbda8 b72eb25a 9d9a8460 9479e1e0 00000000
    9479e1ac :00000000 090fbda8 9479e358 00000001 9479e3bc b73515e7
    9479e1c4 :9479e3f4 b738cc2c 00000000 09281018 9479e254 00000000
    9479e1dc :b7469938 9d9a8460 00000000 00000003 00000000 00000000
    9479e1f4 :000000d9 00000046 00000000 0000001c 00000000 b7415520
    9479e20c :00000004 00000004 00000001 00000000 00000002 00004000
    9479e224 :00000000 00000000 00000000 00000000 00000000 00000000
    9479e23c :00000000 00000000 00000001 ffffffff 00000004 00000000
    9479e254 :00000000 00000040 00000004 00000000 00000000 00000000
    9479e26c :00000000 00000000 ffffffff 00000000 00000000 00000000
    9479e284 :ffffffff 00000004 00000000 00000000 00000000 00000000
    9479e29c :00000002 ffffffff 00000004 00000000 00000000 00000006
    9479e2b4 :00000004 00000000 00000000 0000001c 00000001 00000000
    9479e2cc :ffffffff 00000000 00000000 00000000 ffffffff 00000004
    9479e2e4 :00000000 00000000 00000000 00000000 00000000 00000000
    9479e2fc :00000000 00000000 00000000 00000000 00000000 00000000
    9479e314 :00000000 00000000 00000000 b738e276 090fbda8 00000002
    9479e32c :b738e27f 09087488 090fbda8 a6085018 b738e223 9479e3bc
    9479e344 :00000000 b746a29c b7334029 9479e3f4 9479e454 0000000d
    9479e35c :0000000e 0000006f 00000000 00000000 09281018 9479e3bc
    9479e374 :9479e454 9dea082d b738e0ad 00000001 09281018 b746a29c
    9479e38c :b733c5fd 9479e3bc 9479e454 9479e3c8 b733c665 9479e454
    9479e3a4 :00000000 b746a29c 00000401 9479e45c 9479e454 00000001
    9479e3bc :b738e1ca b745ffc4 9479e454 09281018 b738be42 b746a398
    9479e3d4 :9479e454 9479e454 b738cc2c 00000000 09281018 b746a29c
    9479e3ec :b7342012 b746a138 9479e3d8 b738cc2c 00000000 09281018
    9479e404 :9479e454 a6080c50 b746a150 9479e454 00000000 00000005
    9479e41c :985aafa2 a6080c50 a6080b00 9479e448 b7342089 9479e454
    9479e434 :9479e4d4 00000005 b73420a5 00000080 00000000 00000401
    9479e44c :b738bd91 09281018 9479e4d4 b738cc2c 00000000 09281018
    9479e464 :09281018 b746a29c b745ffc4 080669c0 934c2810 a6084450
    9479e47c :b732d95b 00000000 00000000 9479e4dc 09281018 9479e4d4
    9479e494 :09281018 934c5391 b733b282 b746a29c 9479e4d4 a6081f68
    9479e4ac :b733b2b1 00000000 00000080 00000000 a6081f68 080669c0
    9479e4c4 :094bb8b0 00000006 00000000 00000000 00000000 b738cc2c
    9479e4dc :00000000 09281018 a6081f38 a6081eb8 b746a29c 09281018
    9479e4f4 :934c23a7 a6081388 b732efe8 080669c0 a6081eb8 00000000
    9479e50c :b738dca9 091bcda4 094bb8b0 09281090 09281018 091bcda4
    9479e524 :00000049 b738dca9 00000001 094bb8b0 09281090 b738dc8c
    9479e53c :b73843dc 094bb8b0 0000066c 00000001 a4ed2c10 091bcda4
    9479e554 :9479e570 a6085a30 09281018 9ff9c960 a607d4a0 00000001
    9479e56c :9e170526 09281090 08113820 091bcda4 a607ca70 09281018
    9479e584 :9e170578 0800da58 a6085a30 094bb8b0 a6085e58 9e1709d7
    9479e59c :00000410 000001fe 96aaac21 00000001 00000011 00000010
    9479e5b4 :a6085a30 a6085228 000000fd 0000010e 00000005 a6085990
    9479e5cc :95bae7be a607ca70 a607c030 0000000c a6082ff8 00000000
    9479e5e4 :9fe87740 00000001 b17a2308 a6090ec0 00000000 95bae4cf
    9479e5fc :a607c030 b17a2308 00000000 a6090ec0 9fe86228 00000000
    9479e614 :95badeda a607c030 b17a2308 a6090ec0 b17a2308 a0918198
    9479e62c :b17a2308 9f4f0a58 a607b800 a6090ec0 00000000 a607b818
    9479e644 :a60909e0 95bad4bb a607b800 b17a2308 a6090ec0 9fe86228
    9479e65c :b17a2308 9f4f0a58 a6090ec0 00000000 a607b800 a6090998
    9479e674 :00000000 00000006 9fe86228 9fe86228 95bad030 9fe82050
    9479e68c :b21c97d0 b21c9970 94b4c7e4 94b4c7e4 95ba441e 9fe82050
    9479e6a4 :a4dda960 9f0de780 00000001 a41b3420 9fe82050 b17a1440
    9479e6bc :a07658a0 a0a7b6e8 9ff6d9c0 b21c97d0 b21c97d0 9ff6d9c0
    9479e6d4 :00000000 a5bed0f8 b21c98d0 b21c98d0 a04fb540 9f0edba0
    9479e6ec :a8de2b48 00005c2f b2221e20 b2221dd0 00000002 b2221d60
    9479e704 :b2221d10 00000000 b2221dd0 00000002 b21c9930 00000001
    9479e71c :b21c9950 00000001 b21c9950 00000000 00000001 b21c9950
    9479e734 :00000001 b21c9970 00000001 b21c9970 00000001 00000000
    9479e74c :934c39d7 a5fe3b58 a18016d0 a60612d0 9f0de780 a6061320
    9479e764 :a095f6b0 a095f6b0 a095f6b0 a095f6b0 a095f6b0 a095f6b0
    9479e77c :a095f6b0 a095f6f8 a18016e8 9f0de798 a091b358 a091b358
    9479e794 :a17e99d8 a17e99d8 b17a2308 a17e99d8 a17e99d8 a17e99d8
    9479e7ac :a17e99d8 a095f6f8 a0765878 b1a0cf98 a6061da8 a5c8df68
    9479e7c4 :a095f6f8 b221c648 b221c660 a1801ac0 b221c678 9f3363b0
    9479e7dc :b221c690 9f3363e0 b221c6a8 a4dda6a8 b221c6c0 b221c6d8
    9479e7f4 :b221c6f0 b221c708 a4dda960 b221c720 9f3363e0 00000012
    9479e80c :b221c750 b221c768 00000000 a095f6b0 b1a0d178 b221c780
    9479e824 :9f3366b8 b221c798 b221c7b0 00000001 b221c810 b221c7c8
    9479e83c :b221c7e0 b221c7f8 00000001 b221c768 b221c828 b221c840
    9479e854 :b221c858 00000000 a17efcd0 9f336748 9f336760 b221c870
    9479e86c :b221c888 b221c8a0 b221c8b8 a8f0f990 a6020c10 00000000
    9479e884 :00000008 b221c918 b21c98e8 b21c9900 b21c9918 b221c930
    Code:
    b7413b39 :00000000 83000000 3cd904ec 246cd924 24548b08 24448b10
    b7413b51 :db2adb0c 8bc1de28 db142444 242cd938 c304c483 00000000
    b7413b69 :00000000 00000000 00000000 00000000 00000000 83000000
    b7413b81 :3cd904ec 246cd924 24548b08 24448b10 db28db0c 8be9de2a
    b7413b99 :db142444 242cd938 c304c483 00000000 00000000 00000000
    b7413bb1 :00000000 00000000 00000000 83000000 3cd904ec 246cd924
    b7413bc9 :24548b08 24448b10 db2adb0c 8bc9de28 db142444 242cd938
    b7413be1 :c304c483 00000000 00000000 00000000 00000000 00000000
    b7413bf9 :00000000 83000000 3cd904ec 246cd924 24548b08 24448b10
    b7413c11 :db28db0c 8bf9de2a db142444 242cd938 c304c483 00000000
    b7413c29 :00000000 00000000 24448b00 c328db04 0824548b 1024448b
    b7413c41 :002244dd 00b838db c3000000 d904ec83 6cd9243c 448b0824
    b7413c59 :548b0c24 28db1024 f1d92adb 1424448b 2cd938db 04c48324
    b7413c71 :000000c3 40b7413b 80b7413b c0b7413b 00b7413b 32b7413c
    b7413c89 :4db7413c 39b7413c 00b7413c 00000000 00000000 83000000
    b7413ca1 :7ab73ec9 00b73ec9 00000000 77000000 6bb73ec9 00b73ec9
    b7413cb9 :00000000 69000000 63b73ec9 5fb73ec9 4cb73ec9 49b73ec9
    b7413cd1 :3ab73ec9 37b73ec9 2db73ec9 2bb73ec9 25b73ec9 23b73ec9
    b7413ce9 :1eb73ec9 1bb73ec9 11b73ec9 0eb73ec9 05b73ec9 02b73ec9
    b7413d01 :f3b73ec9 f0b73ec8 e6b73ec8 e4b73ec8 deb73ec8 dab73ec8
    b7413d19 :c7b73ec8 c5b73ec8 c0b73ec8 00b73ec8 00000000 bd000000
    b7413d31 :b4b73ec8 00b73ec8 00000000 b2000000 abb73ec8 a8b73ec8
    Loaded modules:
    (* denotes the module causing the exception)
    0x08048000-0x0804cd66 /usr/local/jrockit-j2sdk1.4.2_03/bin/java
    0xb75cd000-0xb75d9931 /lib/tls/libpthread.so.0
    0xb75ab000-0xb75cbe5f /lib/tls/libm.so.6
    0xb75a8000-0xb75a9e23 /lib/libdl.so.2
    0xb7470000-0xb75a1eaf /lib/tls/libc.so.6
    0xb75e9000-0xb75fdc8b /lib/ld-linux.so.2
    0xb725b000-0xb740f4ef /usr/local/jrockit-j2sdk1.4.2_03/jre/lib/i386/jrockit/libjvm.so
    0xb6f33000-0xb6f3d2df /lib/libnss_files.so.2
    0x9e20d000-0x9e21cfa5 /usr/local/jrockit-j2sdk1.4.2_03/jre/lib/i386/libverify.so
    0x9d739000-0x9d7589cf /usr/local/jrockit-j2sdk1.4.2_03/jre/lib/i386/libjava.so
    0x9d719000-0x9d72a0eb /lib/libnsl.so.1
    0x9c1e4000-0x9c1e7133 /lib/libnss_dns.so.2
    0x9c1d2000-0x9c1e079f /lib/libresolv.so.2
    0x9a47b000-0x9a47e5c1 /usr/local/jrockit-j2sdk1.4.2_03/jre/lib/i386/libioser12.so
    Java Thread ID = 0x00002c80, Name = Thread-50
    Thread Stack Trace:
    at jrockit/vm/MemSystem.getMoreTLAMemory(Native Method)@0x9e1704f0
    at jrockit/vm/MemSystem.getMoreTLAMemoryWrapper(Native Method)@0x9e170578
    at jrockit/vm/MemSystem.allocArray2(Native Method)@0x9e1709d7
    at java/lang/StringBuffer.append(Optimized Method)@0x96aaac21
    at com/hartehanks/ntouch/ui/web/taglib/ntwtag/FormDateFieldTag.createNumberPullDown(FormDateFieldTag.java:420)@0x95b
    ae7be
    at com/hartehanks/ntouch/ui/web/taglib/ntwtag/FormDateFieldTag.createNumberPullDown(FormDateFieldTag.java:382)@0x95b
    ae4cf
    at com/hartehanks/ntouch/ui/web/taglib/ntwtag/FormDateFieldTag.createDatePullDownAtPosition(FormDateFieldTag.java:32
    9)@0x95badeda
    at com/hartehanks/ntouch/ui/web/taglib/ntwtag/FormDateFieldTag.doEndTag(FormDateFieldTag.java:184)@0x95bad4bb
    at webforms/outboundPanel_jsp._jspx_meth_ntwtag_datefield_0(outboundPanel_jsp.java:895)@0x95bad030
    at webforms/outboundPanel_jsp._jspService(outboundPanel_jsp.java:606)@0x95ba441e
    at org/apache/jasper/runtime/HttpJspBase.service(HttpJspBase.java:137)@0x981a2c94
    at javax/servlet/http/HttpServlet.service(HttpServlet.java:853)@0x97fc787e
    at org/apache/catalina/core/ApplicationDispatcher.invoke(ApplicationDispatcher.java:684)@0x981a881c
    at org/apache/catalina/core/ApplicationDispatcher.doInclude(ApplicationDispatcher.java:575)@0x981a76b2
    at org/apache/catalina/core/ApplicationDispatcher.include(ApplicationDispatcher.java:498)@0x981a734c
    at org/apache/jasper/runtime/JspRuntimeLibrary.include(JspRuntimeLibrary.java:822)@0x981a6228
    at webforms/webEntry_jsp._jspService(webEntry_jsp.java:394)@0x9766960a
    at org/apache/jasper/runtime/HttpJspBase.service(HttpJspBase.java:137)@0x981a2c94
    at javax/servlet/http/HttpServlet.service(HttpServlet.java:853)@0x97fc787e
    at org/apache/catalina/core/ApplicationDispatcher.invoke(ApplicationDispatcher.java:684)@0x981a881c
    at org/apache/catalina/core/ApplicationDispatcher.doInclude(ApplicationDispatcher.java:575)@0x981a76b2
    at org/apache/catalina/core/ApplicationDispatcher.include(ApplicationDispatcher.java:498)@0x981a734c
    at org/apache/jasper/runtime/JspRuntimeLibrary.include(JspRuntimeLibrary.java:822)@0x981a6228
    at entry/displayEntry_jsp._jspService(displayEntry_jsp.java:251)@0x97665ed2
    at org/apache/jasper/runtime/HttpJspBase.service(HttpJspBase.java:137)@0x981a2c94
    at javax/servlet/http/HttpServlet.service(HttpServlet.java:853)@0x97fc787e
    at org/apache/catalina/core/ApplicationDispatcher.invoke(ApplicationDispatcher.java:684)@0x981a881c
    at org/apache/catalina/core/ApplicationDispatcher.doForward(ApplicationDispatcher.java:432)@0x981aa46d
    at org/apache/catalina/core/ApplicationDispatcher.forward(ApplicationDispatcher.java:356)@0x981aa07c
    at com/hartehanks/ntouch/ui/web/util/misc/UrlHelper.forward(UrlHelper.java:44)@0x9302db2f
    at com/hartehanks/ntouch/ui/web/outbound/servlet/OutboundBrowserServlet.openNextQueueItem(OutboundBrowserServlet.jav
    a:546)@0x93ca4a5d
    at com/hartehanks/ntouch/ui/web/outbound/servlet/OutboundBrowserServlet.doAction(OutboundBrowserServlet.java:121)@0x
    93027d4c
    at com/hartehanks/ntouch/ui/web/servlet/WebServlet.doPost(WebServlet.java:56)@0x93027343
    at com/hartehanks/ntouch/ui/web/servlet/WebServlet.doGet(WebServlet.java:36)@0x930272a3
    at javax/servlet/http/HttpServlet.service(HttpServlet.java:740)@0x9598975e
    at javax/servlet/http/HttpServlet.service(HttpServlet.java:853)@0x97fc787e
    at org/apache/catalina/core/ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)@0x981a2752
    at org/apache/catalina/core/ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)@0x981a2474
    at org/apache/catalina/core/StandardWrapperValve.invoke(StandardWrapperValve.java:256)@0x981a1094
    at org/apache/catalina/core/StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)@0x9a
    9efd3d
    at org/apache/catalina/core/StandardPipeline.invoke(StandardPipeline.java:480)@0x9a9efb94
    at org/apache/catalina/core/ContainerBase.invoke(ContainerBase.java:995)@0x9a9efb35
    at org/apache/catalina/core/StandardContextValve.invoke(StandardContextValve.java:191)@0x981a0a8f
    at org/apache/catalina/core/StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)@0x9a
    9efd3d
    at org/jboss/web/tomcat/security/JBossSecurityMgrRealm.invoke(JBossSecurityMgrRealm.java:220)@0x981a06c1
    at org/apache/catalina/core/StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)@0x9a
    9efd6d
    at org/apache/catalina/authenticator/AuthenticatorBase.invoke(AuthenticatorBase.java:553)@0x982884f7
    at org/apache/catalina/core/StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)@0x9a
    9efd6d
    at org/apache/catalina/valves/CertificatesValve.invoke(CertificatesValve.java:246)@0x9828757c
    at org/apache/catalina/core/StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)@0x9a
    9efd6d
    at org/jboss/web/tomcat/tc4/statistics/ContainerStatsValve.invoke(ContainerStatsValve.java:76)@0x982873a6
    at org/apache/catalina/core/StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)@0x9a
    9efd6d
    at org/apache/catalina/core/StandardPipeline.invoke(StandardPipeline.java:480)@0x9a9efb94
    at org/apache/catalina/core/ContainerBase.invoke(ContainerBase.java:995)@0x9a9efb35
    at org/apache/catalina/core/StandardContext.invoke(StandardContext.java:2416)@0x982872b3
    at org/apache/catalina/core/StandardHostValve.invoke(StandardHostValve.java:180)@0x98282496
    at org/apache/catalina/core/StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)@0x9a
    9efd3d
    at org/apache/catalina/valves/ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)@0x98282182
    at org/apache/catalina/core/StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)@0x9a
    9efd6d
    at org/apache/catalina/valves/ErrorReportValve.invoke(ErrorReportValve.java:172)@0x98281f22
    at org/apache/catalina/core/StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)@0x9a
    9efd6d
    at org/jboss/web/tomcat/security/SecurityAssociationValve.invoke(SecurityAssociationValve.java:65)@0x982817ab
    at org/apache/catalina/core/StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)@0x9a
    9efd6d
    at org/apache/catalina/valves/AccessLogValve.invoke(AccessLogValve.java:577)@0x98280d4b
    at org/apache/catalina/core/StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)@0x9a
    9efd6d
    at org/apache/catalina/core/StandardPipeline.invoke(StandardPipeline.java:480)@0x9a9efb94
    at org/apache/catalina/core/ContainerBase.invoke(ContainerBase.java:995)@0x9a9efb35
    at org/apache/catalina/core/StandardEngineValve.invoke(StandardEngineValve.java:174)@0x98280182
    at org/apache/catalina/core/StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)@0x9a
    9efd3d
    at org/apache/catalina/core/StandardPipeline.invoke(StandardPipeline.java:480)@0x9a9efb94
    at org/apache/catalina/core/ContainerBase.invoke(ContainerBase.java:995)@0x9a9efb35
    at org/apache/coyote/tomcat4/CoyoteAdapter.service(CoyoteAdapter.java:223)@0x9a9eb97b
    at org/apache/jk/server/JkCoyoteHandler.invoke(JkCoyoteHandler.java:263)@0x9a9eb62d
    at org/apache/jk/common/HandlerRequest.invoke(HandlerRequest.java:360)@0x9a9e99ce
    at org/apache/jk/common/ChannelSocket.invoke(ChannelSocket.java:604)@0x9a9e96ba
    at org/apache/jk/common/ChannelSocket.processConnection(ChannelSocket.java:562)@0x9a9e8bb0
    at org/apache/jk/common/SocketConnection.runIt(ChannelSocket.java:679)@0x9a9e8aa1
    at org/apache/tomcat/util/threads/ThreadPool$ControlRunnable.run(ThreadPool.java:619)@0x9afc5818
    at java/lang/Thread.run(Unknown Source)@0x9d86ac81
    at java/lang/Thread.startThreadFromVM(Unknown Source)@0x9e176fe3
    --- End of stack trace
    If you see this dump, please send it, along with as much
    information as you can on your system setup and the program
    you were running, to [email protected]. Please include the
    file jrockit.29470.dump from the current directory in the bug
    report. Thank you.
    A core file will be dumped into /usr/local/jboss-3.2.2/bin.
    Please attach that file to your bug report.
    ===== END DUMP ===============================================================
    ===== BEGIN DUMP =============================================================
    JRockit context dump produced after 0 days, 02:50:57 on Mon May 16 14:20:48 2005
    If you see this dump, please send it, along with as much
    information as you can on your system setup and the program
    you were running, to [email protected]. Please include the
    file jrockit.12873.dump from the current directory in the bug
    report. Thank you.
    A core file will be dumped into /usr/local/jboss-3.2.2/bin.
    Please attach that file to your bug report.
    Error Message: Null pointer exception in native code
    Signal info : si_signo=11, si_code=2
    Version : ari-24879-20031212-1523-linux-ia32
    Threads / GC : Native Threads, GC strategy: gencon
    : mmHeap->data = 0x9ef30000, mmHeap->top = 0xb6f30000
    : nurseryStartAddress = 0xa1625540, nurseryEndAddress = 0xb5a6ca48
    : mmStartCompaction = 0xb5730000, mmEndCompaction = 0xb6f30000
    Number CPUs : 4
    Tot Phys Mem : 4187815936
    OS version : Red Hat Enterprise Linux WS release 3 (Taroon Update 4)
    Linux version 2.4.21-20.ELsmp ([email protected]) (gcc version 3.2.3 20030502 (Red Hat Linux 3.2.3-42))
    #1 SMP Wed Aug 18 20:46:40 EDT 2004
    State : JVM is running
    Command Line : -Djava.class.path=. -Dconfig_name=ciscotiger -Xms:384m -Xmx:384m -Xgc:gencon -Xns:52m -Djava.awt.headless
    =true -Xmanagement -Djrockit.managementserver.port=17390 -Djava.class.path=/usr/local/jboss/bin/run.jar:/usr/local/jboss
    /hhlib/log4jInitializer.jar:/usr/local/jboss/hhlib/log4j.jar:/usr/local/jrockit1.4.2/lib/tools.jar -Dsun.java.command=or
    g.jboss.Main -c ciscotiger
    Environment : JAVA_HOME=(null), java.home=/usr/local/jrockit-j2sdk1.4.2_03/jre, java.class.path=/usr/local/jboss/bin/ru
    n.jar:/usr/local/jboss/hhlib/log4jInitializer.jar:/usr/local/jboss/hhlib/log4j.jar:/usr/local/jrockit1.4.2/lib/tools.jar
    , java.library.path=/usr/local/jrockit-j2sdk1.4.2_03/jre/lib/i386/jrockit:/usr/local/jrockit-j2sdk1.4.2_03/jre/lib/i386:
    /usr/local/jrockit-j2sdk1.4.2_03/jre/../lib/i386
    C Heap : Good; no memory allocations have failed
    Registers:
    EAX = b7413c39 EBX = 9b8e6b18
    ECX = 9b8e6c24 EDX = 00000000
    ESI = 9a12b1e0 EDI = 92ad4028
    ESP = 9b8e6ad0 EIP = b7413c39
    EBP = 9b8e6aec EFL = 00010286
    CS = 0023 DS = 002b ES = 002b
    SS = 002b FS = 003b GS = 0033
    Stack:
    9b8e6ad0 :b72eb7b5 00000000 9b8e6af4 00000000 9b8e6b18 9b8e6ce0
    9b8e6ae8 :9b8e6c24 9a12b1e0 b72ebca3 00000000 3fe80000 9b8e6b18
    9b8e6b00 :b72ef852 9a12b1e0 9b8e6c08 ad672238 b72eb571 9a12b1e0
    9b8e6b18 :00000000 00000000 b72e0000 9a12b1e0 9b8e6c08 92ad4028
    9b8e6b30 :b72ebe38 00000000 3fe80000 9a12b1e0 b72ebe27 9b8e6ce0
    9b8e6b48 :9a12b1e0 9b8e6c88 b72efed2 b73ec650 b73ec6e5 00000000
    9b8e6b60 :b72efb23 b73ec650 9b8e6c08 9154d3e4 b72efb1a 9b8e6c24
    9b8e6b78 :9b8e6c88 9b8e6ce0 b72ed88d 9b8e6c24 9a12b1e0 9b8e6c24
    9b8e6b90 :9154d3e2 9b8e6c24 9b8e6c08 92ad4028 9a12b1e0 9b8e6c24
    9b8e6ba8 :9154d3e4 92ad4028 b72f0034 9154d3e8 9154d3e8 00000011
    9b8e6bc0 :00000041 9b8e6c24 9b8e6c08 92ad4028 b72eb265 9b8e6c24
    9b8e6bd8 :9a12b1e0 92ad4028 b72eb25a 9154d3e2 9b8e6c24 00000000
    9b8e6bf0 :00000000 92ad4028 9b8e6d9c 00000001 9b8e6e00 b73515e7
    9b8e6c08 :9b8e6e38 b738cc2c 00000000 08d859e0 8bafd804 00000000
    9b8e6c20 :b7469938 9154d3e2 00000000 00000006 00000000 00000000
    9b8e6c38 :000000d9 00000005 00000000 9daa20fc 00000000 b7415520
    9b8e6c50 :00000004 00000004 00000004 00000000 00000002 00004000
    9b8e6c68 :00000000 00000000 00000000 00000000 00000000 00000000
    9b8e6c80 :00000000 00000000 00000001 ffffffff 00000004 00000000
    9b8e6c98 :00000000 00000040 00000004 00000000 00000000 00000000
    9b8e6cb0 :00000000 00000000 ffffffff 00000000 00000000 00000000
    9b8e6cc8 :ffffffff 00000004 00000000 00000000 00000000 00000000
    9b8e6ce0 :00000002 ffffffff 00000004 00000000 00000000 ffffffff
    9b8e6cf8 :00000004 00000000 00000000 9daa20fc 00000004 00000000
    9b8e6d10 :ffffffff 00000000 00000000 00000000 ffffffff 00000004
    9b8e6d28 :00000000 00000000 00000000 00000000 00000000 00000000
    9b8e6d40 :00000000 00000000 00000000 00000000 00000000 00000000
    9b8e6d58 :00000000 00000000 00000000 b738e276 92ad4028 00000002
    9b8e6d70 :b738e27f 9a12b1e0 92ad4028 9b8e6ddc b738e223 9b8e6e00
    9b8e6d88 :00000000 b746a29c b7334029 9b8e6e38 9b8e6e98 00000054
    9b8e6da0 :00000055 00000068 00000000 00000000 08d859e0 9b8e6e00
    9b8e6db8 :9b8e6e98 00000000 b738e0ad 00000001 08d859e0 b746a29c
    9b8e6dd0 :b733c5fd 9b8e6e00 9b8e6e98 9b8e6e0c b733c665 9b8e6e98
    9b8e6de8 :00000000 b746a29c 000003fb 9b8e6ea0 9b8e6e98 00000000
    9b8e6e00 :b738e1ca b745ffc4 9b8e6e98 08d859e0 b738be42 b746a398
    9b8e6e18 :9b8e6e98 9b8e6e98 b738cc2c 00000000 08d859e0 b746a29c
    9b8e6e30 :b7342012 b746a138 9b8e6e1c b738cc2c 00000000 08d859e0
    9b8e6e48 :9b8e6e98 b5a4dd98 b746a150 9b8e6e98 00000000 00000000
    9b8e6e60 :00000000 00000068 b75a5180 9b8e6e8c b7342089 9b8e6e98
    9b8e6e78 :9b8e6f18 0000000c b73420a5 00000080 00000000 000003fb
    9b8e6e90 :b738bd91 08d859e0 9b8e6f18 b738cc2c 00000000 08d859e0
    9b8e6ea8 :08d859e0 b746a29c b745ffc4 08066980 00000000 00000001
    9b8e6ec0 :b732d95b 00000000 00000000 9b8e6f20 08d859e0 9b8e6f18
    9b8e6ed8 :08d859e0 00000017 b733b282 b746a29c 9b8e6f18 b59eb368
    9b8e6ef0 :b733b2b1 00000000 00000080 00000000 00000000 08066980
    9b8e6f08 :08e8fa70 00000002 00000000 00000000 00000000 b738cc2c
    9b8e6f20 :00000000 08d859e0 00000000 8c63ca39 b746a29c 08d859e0
    9b8e6f38 :b5a0c3f8 b738dca9 b732efe8 08066980 b59eb368 b738dc8c
    9b8e6f50 :b738dca9 092707ec 08e8fa70 08d85a58 08d859e0 092707ec
    9b8e6f68 :b5a0c390 b59ee900 00000001 b59ee900 8c6326b0 092707ec
    9b8e6f80 :b73843dc 08e8fa70 b738dc8c 08d859e0 00000001 092707ec
    9b8e6f98 :9b8e6fb4 9f26bda8 08d85a58 9fce40e0 00000017 00000000
    9b8e6fb0 :9e170526 08d85a58 08113820 092707ec b5a0c6b0 b5a0c350
    9b8e6fc8 :9e170578 0800da58 9f26bda8 08e8fa70 b5a0c6f0 9e1709d7
    9b8e6fe0 :00000028 0000000c 8b6910f5 b5a0c688 9f266168 9f26bda8
    9b8e6ff8 :0000000c b5a0c5a8 08d859e0 00000000 00000067 9fcca590
    9b8e7010 :00000000 00000001 00000040 0000000b b5a0c520 b5a0c618
    9b8e7028 :08d859e0 9fb4c200 8b696ce3 9f26bd30 08d859e0 b5a0c338
    9b8e7040 :8bfb9328 442ed487 b5a0c520 b5a0c520 b5a0c468 b5a0c520
    9b8e7058 :b5a0c520 b5a0c438 b5a0c338 b5a316d8 b59e6950 00000000
    9b8e7070 :b5a0c438 b5a0c438 b59e8410 8b68887e b59e6950 b5a0c438
    9b8e7088 :b59e6b38 a40a40a8 08d859e0 08d859e0 b5a0c438 0000000c
    9b8e70a0 :b5a0c438 b5a0c2e0 b59ee7d8 a01e0090 00000000 00000002
    9b8e70b8 :00000000 00000062 b5a316d8 00000004 b59ee818 b59ee7f8
    9b8e70d0 :00000003 00000000 00000004 00000000 b59e7100 00000003
    9b8e70e8 :00000004 a01df4d0 ffffffff 00000000 00000000 9fca21a8
    9b8e7100 :00000000 00000001 9fccaf68 00000000 00000003 00000000
    9b8e7118 :b59e6ba0 b59e71d8 00000000 00000003 a01df3e0 b59e6b38
    9b8e7130 :00000000 ffffffff b59e6950 b59e6d80 b59e6950 08d859e0
    9b8e7148 :b59e6ba0 8b68f679 b59e6b38 b59e6998 0000000a a139bbd0
    9b8e7160 :9f0fa140 b59e6a98 b59e6ba0 a139bbd0 ffffffff b59e6968
    9b8e7178 :b5a316d8 b59e6a98 b59e6b38 b59e6950 b59e6b50 00000000
    9b8e7190 :8c5d858d b59e6b38 00000000 8bfb7688 00000000 ffffffff
    9b8e71a8 :b5a316d8 b59e6b50 b59e6b38 b59e6950 b59e6950 b5a316d8
    9b8e71c0 :93d88c69 b59e6b38 93d88c20 b59e6b38 96b068a7 b59e6b38
    9b8e71d8 :b5a30890 b59e6458 8aa52387 9f0fa158 b7377ddb 696e2da2
    9b8e71f0 :9f0fa140 00000002 a139bbd0 0000000c 0000002a 08d859e0
    9b8e7208 :b5a30798 00000000 a139bbd0 08d85a58 9f0fa140 9f0fa140
    9b8e7220 :b5a30848 b5a30810 00000000 afca7e68 b5a300d0 9f0fa048
    9b8e7238 :9f0fa158 00000001 b7377e51 08d85a58 9f0fa048 9f0fa158
    9b8e7250 :96b071b9 9f0fa158 9f0fa048 00000000 96b07177 9f0fa158
    9b8e7268 :9f0fa048 08d859e0 9b8e728c 96b0712b 9f0fa158 9f0fa048
    9b8e7280 :9e171dd8 9f0fa158 9f0fa048 96b07110 b7377c0d 9b8e741b
    9b8e7298 :00000008 00000002 9b8e732c 08d85a58 968cbe98 99a55670
    9b8e72b0 :b7377d20 08d85a58 99a55670 99a50080 b7351329 99a55670
    9b8e72c8 :9b8e72e0 08d85a58 00000001 00000001 00000004 00000012
    Code:
    b7413b39 :00000000 83000000 3cd904ec 246cd924 24548b08 24448b10
    b7413b51 :db2adb0c 8bc1de28 db142444 242cd938 c304c483 00000000
    b7413b69 :00000000 00000000 00000000 00000000 00000000 83000000
    b7413b81 :3cd904ec 246cd924 24548b08 24448b10 db28db0c 8be9de2a
    b7413b99 :db142444 242cd938 c304c483 00000000 00000000 00000000
    b7413bb1 :00000000 00000000 00000000 83000000 3cd904ec 246cd924
    b7413bc9 :24548b08 24448b10 db2adb0c 8bc9de28 db142444 242cd938
    b7413be1 :c304c483 00000000 00000000 00000000 00000000 00000000
    b7413bf9 :00000000 83000000 3cd904ec 246cd924 24548b08 24448b10
    b7413c11 :db28db0c 8bf9de2a db142444 242cd938 c304c483 00000000
    b7413c29 :00000000 00000000 24448b00 c328db04 0824548b 1024448b
    b7413c41 :002244dd 00b838db c3000000 d904ec83 6cd9243c 448b0824
    b7413c59 :548b0c24 28db1024 f1d92adb 1424448b 2cd938db 04c48324
    b7413c71 :000000c3 40b7413b 80b7413b c0b7413b 00b7413b 32b7413c
    b7413c89 :4db7413c 39b7413c 00b7413c 00000000 00000000 83000000
    b7413ca1 :7ab73ec9 00b73ec9 00000000 77000000 6bb73ec9 00b73ec9
    b7413cb9 :00000000 69000000 63b73ec9 5fb73ec9 4cb73ec9 49b73ec9
    b7413cd1 :3ab73ec9 37b73ec9 2db73ec9 2bb73ec9 25b73ec9 23b73ec9
    b7413ce9 :1eb73ec9 1bb73ec9 11b73ec9 0eb73ec9 05b73ec9 02b73ec9
    b7413d01 :f3b73ec9 f0b73ec8 e6b73ec8 e4b73ec8 deb73ec8 dab73ec8
    b7413d19 :c7b73ec8 c5b73ec8 c0b73ec8 00b73ec8 00000000 bd000000
    b7413d31 :b4b73ec8 00b73ec8 00000000 b2000000 abb73ec8 a8b73ec8
    Loaded modules:
    (* denotes the module causing the exception)
    0x08048000-0x0804cd66 /usr/local/jrockit-j2sdk1.4.2_03/bin/java
    0xb75cd000-0xb75d9931 /lib/tls/libpthread.so.0
    0xb75ab000-0xb75cbe5f /lib/tls/libm.so.6
    0xb75a8000-0xb75a9e23 /lib/libdl.so.2
    0xb7470000-0xb75a1eaf /lib/tls/libc.so.6
    0xb75e9000-0xb75fdc8b /lib/ld-linux.so.2
    0xb725b000-0xb740f4ef /usr/local/jrockit-j2sdk1.4.2_03/jre/lib/i386/jrockit/libjvm.so
    0xb6f33000-0xb6f3d2df /lib/libnss_files.so.2
    0x9e20d000-0x9e21cfa5 /usr/local/jrockit-j2sdk1.4.2_03/jre/lib/i386/libverify.so
    0x9d73a000-0x9d7599cf /usr/local/jrockit-j2sdk1.4.2_03/jre/lib/i386/libjava.so
    0x9d71a000-0x9d72b0eb /lib/libnsl.so.1
    0x9ca5f000-0x9ca62133 /lib/libnss_dns.so.2
    0x9ca4d000-0x9ca5b79f /lib/libresolv.so.2
    0x98b9b000-0x98b9e5c1 /usr/local/jrockit-j2sdk1.4.2_03/jre/lib/i386/libioser12.so
    0x8ee3a000-0x8f104b5c /usr/local/jrockit-j2sdk1.4.2_03/jre/lib/i386/libawt.so
    0x8ede6000-0x8ee38017 /usr/local/jrockit-j2sdk1.4.2_03/jre/lib/i386/libmlib_image.so
    0x8edd3000-0x8edd95f3 /usr/X11R6/lib/libXp.so.6
    0x8ed82000-0x8edce8ab /usr/X11R6/lib/libXt.so.6
    0x8ed74000-0x8ed805e3 /usr/X11R6/lib/libXext.so.6
    0x8ed6f000-0x8ed72e87 /usr/X11R6/lib/libXtst.so.6
    0x8ec90000-0x8ed6b1c3 /usr/X11R6/lib/libX11.so.6
    0x8ec88000-0x8ec8eefb /usr/X11R6/lib/libSM.so.6
    0x8ec71000-0x8ec84223 /usr/X11R6/lib/libICE.so.6
    0x8dc9c000-0x8dd5529c /usr/local/jrockit-j2sdk1.4.2_03/jre/lib/i386/libfontmanager.so
    Java Thread ID = 0x00000f80, Name = Thread-11
    Thread Stack Trace:
    at jrockit/vm/MemSystem.getMoreTLAMemory(Native Method)@0x9e1704f0
    at jrocki

    We will try these in test...
    Initially we were experiencing JVM hangs (where the JBoss process simply stopped responding) on one of our production servers with 142_05, but no core dumps were ever produced. So we moved the application to a different server that has been running some other deployments without problems (different versions of our codebase and use cases however) to rule out hardware/external configuration issues.
    On this server, we did get core dumps.
    So, we're not sure if they are dying for unrelated reasons (seems unlikely) or if the _05 just did not generate core dumps properly???
    take care!
    Shell

  • Shut Down Of OC4J Container ist blocked

    Hi,
    i'vi got a problem with the new 10g iAS and if anybody's encountered the same or does know a solution, please let me know.
    The problem is:
    I'm not able to stop the OC4J container in the iAS cleanly.
    The reason is:
    There are two timers (java.util.Timer) running. These timers are cleanup timers, which run always throughout the application at intervalls (scheduleAtFixedRate). If i dont start the timers, the container will stop right away, without any error. If the timers are running the container is waiting for them to cancel and shutting down hardly after a timeout.
    I didn't have this problem with 9i and i dont have it in the embedded OC4J of the JDeveloper.
    Is there any workaround? How could i latch into the shutdown process, to cancel the timers myself?
    Best regards,
    Mirko

    The OC4J script is not the cause of this -- if the message is shown "shutting down OC4J' then the call has been made to OC4J and its in the process of shutting down.
    If you execute "set verbose=on" before executing oc4j.cmd, then you'll see the command that oc4j uses when -shutdown is performed is exactly that command you suggest:
    oc4j -shutdown -port 23791 -password welcome1Executing: D:\java\jdk150_11\bin\java -jar "d:\java\oc4j-10133-prod\j2ee\home\admin.jar" ormi://localhost:23791 oc4jadmin welcome1 -shutdown
    But as you are suggesting there are manual ways to shutdown OC4J that are equally valid to use; it's a matter of choice.
    What you could try is using the -force extra switch with the -shutdown command to force it to shutdown:
    java -jar admin.jar ormi://localhost:23791 oc4jadmin welcome1 -shutdown force
    If that fails, ctrl+c the process. It doesn't do any damage to it.
    A thread-dump (ctrl+break) on the hung process can help to identify any deadlock issues.
    oc4j.cmd is limited certainly, but it provides a simpler entry point IMHO for new users. And we still fully support/endorse the direct startup path using the runnable JAR file.
    -steve-

  • Upgrade oc4j container from 10.1.2 to 10.1.3

    Hi to all,
    We use oc4j container 10.1.2 for old applications, but now we have developed ajax applications using oracle maps, but if i'm riight 10.1.2 doesn't support oracle maps.
    I've tried to install oracle application server oc4j container 10.1.3 in the same machine(i must use the same machine with red hat 3.4.4 opertive system) but i see a lot of conflicts with 10.1.2 and i cannot install that properly.
    Is there any possobility to upgrade oracle application server oc4j container without having a metalink account?Is there a patch or something similar?
    Thank you,
    Francesco Rizzello
    Edited by: francesco.rizzello on 10-nov-2009 20.31
    Edited by: francesco.rizzello on 10-nov-2009 20.33
    Edited by: francesco.rizzello on 10-nov-2009 21.06

    There shouldn't be any problems, I have in the same server one 10.1.2 App Server and a 10.1.3 and no conflicts, only when I installed I had the first App Server up, so the second recognize the ports used and it use a diferent one for his components.
    Can you tell about your conflicts?
    Greetings

  • How to start managed server on Weblogic 9.1 Admin console with jRockit

    I configured a new 9.1 domain with jRockit as the JVM. Under Server Start, I used -server -Xgcprio:pausetime -Xpausetarget=400ms -Xms:256m -Xmx:384m -Xns:81m -Xgcpause in the Argument field. When I tried to start the server, I am getting the following error:
    <May 24, 2006 11:16:55 AM> <Info> <NodeManager> <Starting WebLogic server with command line: C:\bea\jrockit90_150_04\bin\java -Dweblogic.Name=jdevext -Dbea.home=C:\bea -Djava.security.policy=c:\bea\weblogic91\server\lib\weblogic.policy -Dweblogic.management.server=http://144.111.155.145:7001 -Djava.library.path=C:\bea\WEBLOG~1\server\bin;.;C:\WINDOWS\system32;C:\WINDOWS;C:\bea\WEBLOG~1\server\native\win\32;C:\bea\WEBLOG~1\server\bin;C:\bea\JROCKI~1\jre\bin;C:\bea\JROCKI~1\bin;C:\bea\WEBLOG~1\server\native\win\32\oci920_8;C:\oracle\ora92\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\Program Files\ThinkPad\Utilities;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Support Tools\;C:\Program Files\Intel\Wireless\Bin\;C:\Program Files\ThinkPad\ConnectUtilities;C:\Program Files\QuickTime\QTSystem\ -Djava.class.path=C:\bea\weblogic91\server\lib\weblogic.jar;C:\bea\jrockit90_150_04\lib\tools.jar;c:\bea\weblogic91\server\lib\wamapps\commons-logging.jar;c:\bea\weblogic91\server\lib\wamapps\log4j.jar;c:\bea\weblogic91\server\lib\wamapps\xalan.jar;c:\bea\weblogic91\server\lib\wamapps\xercesImpl.jar;c:\bea\weblogic91\server\lib\wamapps\xml-apis.jar -Dweblogic.system.BootIdentityFile=C:\bea\user_projects\domains\jdev\servers\jdevext\data\nodemanager\boot.properties -Dweblogic.nodemanager.ServiceEnabled=true -Dweblogic.security.SSL.ignoreHostnameVerification=false -Dweblogic.ReverseDNSAllowed=false java -server -Xgcprio:pausetime -Xpausetarget=400ms -Xms:256m -Xmx:384m -Xns:81m -Xgcpause -verbose weblogic.Server >
    <May 24, 2006 11:16:55 AM> <Info> <NodeManager> <Working directory is "C:\bea\user_projects\domains\jdev">
    <May 24, 2006 11:16:55 AM> <Info> <NodeManager> <Server output log file is "C:\bea\user_projects\domains\jdev\servers\jdevext\logs\jdevext.out">
    Usage: java [-options] class [args...]
    (to execute a class)
    or java [-options] -jar jarfile [args...]
    (to execute a jar file)
    where options include:
    -jrockit     to select the "jrockit" VM
    -client     to select the "client" VM
    -server     to select the "server" VM [synonym for the "jrockit" VM]
    The default VM is jrockit.
    -cp <class search path of directories and zip/jar files>
    -classpath <class search path of directories and zip/jar files>
    A ; separated list of directories, JAR archives,
    and ZIP archives to search for class files.
    -D<name>=<value>
    set a system property
    -verbose[:class|gc|jni]
    enable verbose output
    -version print product version and exit
    -version:<value>
    require the specified version to run
    -showversion print product version and continue
    -jre-restrict-search | -jre-no-restrict-search
    include/exclude user private JREs in the version search
    -? -help print this help message
    -X print help on non-standard options
    -ea[:<packagename>...|:<classname>]
    -enableassertions[:<packagename>...|:<classname>]
    enable assertions
    -da[:<packagename>...|:<classname>]
    -disableassertions[:<packagename>...|:<classname>]
    disable assertions
    -esa | -enablesystemassertions
    enable system assertions
    -dsa | -disablesystemassertions
    disable system assertions
    -agentlib:<libname>[=<options>]
    load native agent library <libname>, e.g. -agentlib:hprof
    see also, -agentlib:jdwp=help and -agentlib:hprof=help
    -agentpath:<pathname>[=<options>]
    load native agent library by full pathname
    -javaagent:<jarpath>[=<options>]
    load Java programming language agent, see java.lang.instrument
    <May 24, 2006 11:16:57 AM> <Info> <NodeManager> <Server failed during startup so will not be restarted>

    It looks like your command line is broken. You have:
    java <lots of -Dprop=value> java <JRockit flags> weblogic.Server
    That second "java" shouldn't be there.
    -- Henrik

Maybe you are looking for

  • 80GB Classic not seen by Windows 8 or iTunes(11).

    Its only started happening in the last day or so, but I cannot get my iPod to be seen by either Windows or iTunes. Although when I connect via USB the iPod display tells me that it's connected but never actually appears in Windows on iTunes. I have b

  • Marker and line styles as a choice in drop down menu

    Is it possible to create a drop down choice menu(Choice xyz = new Choice(); ) in java AWT which has line styles or marker styles (no text)( basically these things are required to edit the graph) as choice options?

  • When I plug in an USB stick, my MacBook Air disables all USB devices

    When I plug in an USB device, my MacBook Air disables all USB devices and the keyboard. It looks like it would freeze, but all applications still work. It just does not respond to neither keyboard nor mouse. The only solution is to force-restart it.

  • Copy my contact address from Blackberry to E72

     Please guys I need help I have got a new E72 and I would like to copy my contact address from my Blackberry .. how can i do this ..  from Blackberry to E72 ? Please help me its urgent

  • RMAN retention policy really long

    Hi, we are planning to have an RMAN backup policy really long, around 7 years, with all the backup piece stored on a shared drive. I would like to ask if there are problems or concern to have a recovery windows of around 2500 days, and if I have to c