JRockit 1.4.2_03 Linux64 on AS3.0 -Xmx -Xms error!

Hi,
I download the JRockit 1.4.2_03 SDK for Linux(64 bit) from the "http://commerce.bea.com/showallversions.jsp?family=WLJR"
When I run Java with -Xms -Xmx options on AS EL3.0, whatever heap size, the error
messages are thrown out:
Negative or invalid size for maximum heap size - reset to default!
Negative or invalid size for initial heap size - reset to default!
When run on AS2.1, it works.
I don't know why. JRockit 1.4.2_03 doesn't support AS EL3.0?
Thx,
Xuekun

Hmm, that doc page must be a mistake. We are working on getting
NPTL-support on RHEL3.0 into the next service pack of JRockit 1.4.2. I'm
very sorry that the documentation suggests otherwise.
Thanks,
/Staffan
Xuekun Hu wrote:
Yes. By setting LD_ASSUME_KERNEL=2.4, it works. But in http://e-docs.bea.com/wljrockit/docs142/intro/newftrs.html,
it says JRockit 1.4.2_03 support NPTL at Red Hat Enterprise Linux 3.
And I just want to test the JVM performance using NPTL.
The command line is very simple. java -Xms1g -Xmx1g
Thx,
Xuekun
Staffan Larsen <[email protected]> wrote:
This is a confirmed problem on RHEL3.0 and does not exist on any of the
supported platforms. Note that RHEL3.0 is not on the list of supported
platforms: http://e-docs.bea.com/wljrockit/docs142/certif.html
Running without NPTL (by setting LD_ASSUME_KERNEL=2.4) should work
better, though.
Regards,
/Staffan
Xuekun Hu wrote:
Hi,
I download the JRockit 1.4.2_03 SDK for Linux(64 bit) from the "http://commerce.bea.com/showallversions.jsp?family=WLJR"
When I run Java with -Xms -Xmx options on AS EL3.0, whatever heap size,the error
messages are thrown out:
Negative or invalid size for maximum heap size - reset to default!
Negative or invalid size for initial heap size - reset to default!
When run on AS2.1, it works.
I don't know why. JRockit 1.4.2_03 doesn't support AS EL3.0?
Thx,
Xuekun

Similar Messages

  • Linux64 c Oracle10.2.0 OCIAttrGet error! help me!!!!

    I use oci to do ":select total_rate_units,file_seq,org_size,to_char(INSERT_TIME) as insert_time from stl_usr.t_file_info_17 where rownum<10;" , allways get more attr.
    example:
    OCIAttrGet(pard, OCI_DTYPE_PARAM, &col_name, &col_name_len, OCI_ATTR_NAME, R->err);
    get:
    col_name:TOTAL_RATE_UNITSFILE_SEQORG_SIZEINSERT_TIME,colnamelen:16
    table :
    create table T_FILE_INFO_17
    FILE_ID NUMBER(9) not null,
    STATE VARCHAR2(4),
    INSERT_TIME DATE,
    BILL_CYCLE_SEQ NUMBER(33),
    ORG_REC NUMBER(10),
    BAD_REC NUMBER(10),
    INS_REC NUMBER(10),
    INS_USE_REC NUMBER(10),
    GENERAL_LEVEL NUMBER(8),
    ROLLBACK_COUNTS NUMBER(8),
    INS_BAD_REC NUMBER(10),
    STATE_TIME DATE,
    ORG_SIZE NUMBER(12),
    FILE_NAME VARCHAR2(40) not null,
    PROC_START_TIME DATE,
    INSERT_SETTLE NUMBER(14),
    PARENT_FILE_ID NUMBER(10) not null,
    RAT_FIRST_STARTTIME NUMBER(14),
    RAT_LAST_ENDTIME NUMBER(14),
    REMARK VARCHAR2(100),
    FILE_SEQ NUMBER(10),
    NUMBER_LEN NUMBER(3),
    FILE_NAME_TIME DATE,
    BILL_CYCLE_SEQ_MARK NUMBER(33),
    RAT_FIRST_CALLING_NBR VARCHAR2(30),
    RAT_LAST_CALLING_NBR VARCHAR2(30),
    CITY_ID NUMBER(8),
    DEL_REC NUMBER(10),
    FILE_CLASS_ID NUMBER(8),
    CDR_SELECT_RULE_ID NUMBER(8),
    NOTE_NUM NUMBER(4),
    PROVINCE_ID NUMBER(4),
    OPERATION_TYPE_ID VARCHAR2(8),
    OPERATION_TYPE_GRADE NUMBER(8),
    FLOW_ID NUMBER(8),
    TOTAL_RATE_DURATION NUMBER(12),
    TOTAL_RATE_AMOUNT NUMBER(12),
    TOTAL_RATE_UNITS NUMBER(12),
    TOTAL_RATE_COUNTS NUMBER(12),
    TOTAL_STL_DURATION NUMBER(12),
    TOTAL_STL_AMOUNT NUMBER(12),
    TOTAL_STL_UNITS NUMBER(12),
    TOTAL_STL_COUNTS NUMBER(12),
    RATE_MACHINE_IP VARCHAR2(30),
    INSERT_IP VARCHAR2(30),
    FME_TOTAL_REC NUMBER(10),
    FMT_BAD_REC NUMBER(10),
    FMT_TOTAL_REC NUMBER(10),
    INS_NORATE NUMBER(10),
    INS_NOSTS NUMBER(10),
    COL_SITE_ID NUMBER(10)
    src :
    char *col_name=NULL;
    ub4 col_name_len;
    R->lastError = OCIAttrGet(pard, OCI_DTYPE_PARAM, &col_name, &col_name_len, OCI_ATTR_NAME, R->err);
    printf("printf Oarcle ---->%d:%s,colnamelen:%d\n",i,col_name,col_name_len);
    if(strlen(col_name)!=col_name_len){
    //substr( col_name, col_name, 1, col_name_len );
    printf("Oarcle ---->%d:%s,colnamelen:%d\n",i,col_name,col_name_len/*,*/);
    // substr( col_name, col_name, 1, col_name_len );
    if (R->lastError != OCI_SUCCESS)
    continue;
    #if defined(ORACLE_COLUMN_NAME_LOWERCASE) && ORACLE_COLUMN_NAME_LOWERCASE > 1
    R->columns[i-1].name = CALLOC(1, col_name_len);
    OCIMultiByteStrCaseConversion(R->env, R->columns[i-1].name, col_name, OCI_NLS_LOWERCASE);
    printf("%d:YES!!!!,%s\n",i,R->columns[i-1].name);

    I use oci to do ":select total_rate_units,file_seq,org_size,to_char(INSERT_TIME) as insert_time from stl_usr.t_file_info_17 where rownum<10;" , allways get more attr.
    example:
    OCIAttrGet(pard, OCI_DTYPE_PARAM, &col_name, &col_name_len, OCI_ATTR_NAME, R->err);
    get:
    col_name:TOTAL_RATE_UNITSFILE_SEQORG_SIZEINSERT_TIME,colnamelen:16
    table :
    create table T_FILE_INFO_17
    FILE_ID NUMBER(9) not null,
    STATE VARCHAR2(4),
    INSERT_TIME DATE,
    BILL_CYCLE_SEQ NUMBER(33),
    ORG_REC NUMBER(10),
    BAD_REC NUMBER(10),
    INS_REC NUMBER(10),
    INS_USE_REC NUMBER(10),
    GENERAL_LEVEL NUMBER(8),
    ROLLBACK_COUNTS NUMBER(8),
    INS_BAD_REC NUMBER(10),
    STATE_TIME DATE,
    ORG_SIZE NUMBER(12),
    FILE_NAME VARCHAR2(40) not null,
    PROC_START_TIME DATE,
    INSERT_SETTLE NUMBER(14),
    PARENT_FILE_ID NUMBER(10) not null,
    RAT_FIRST_STARTTIME NUMBER(14),
    RAT_LAST_ENDTIME NUMBER(14),
    REMARK VARCHAR2(100),
    FILE_SEQ NUMBER(10),
    NUMBER_LEN NUMBER(3),
    FILE_NAME_TIME DATE,
    BILL_CYCLE_SEQ_MARK NUMBER(33),
    RAT_FIRST_CALLING_NBR VARCHAR2(30),
    RAT_LAST_CALLING_NBR VARCHAR2(30),
    CITY_ID NUMBER(8),
    DEL_REC NUMBER(10),
    FILE_CLASS_ID NUMBER(8),
    CDR_SELECT_RULE_ID NUMBER(8),
    NOTE_NUM NUMBER(4),
    PROVINCE_ID NUMBER(4),
    OPERATION_TYPE_ID VARCHAR2(8),
    OPERATION_TYPE_GRADE NUMBER(8),
    FLOW_ID NUMBER(8),
    TOTAL_RATE_DURATION NUMBER(12),
    TOTAL_RATE_AMOUNT NUMBER(12),
    TOTAL_RATE_UNITS NUMBER(12),
    TOTAL_RATE_COUNTS NUMBER(12),
    TOTAL_STL_DURATION NUMBER(12),
    TOTAL_STL_AMOUNT NUMBER(12),
    TOTAL_STL_UNITS NUMBER(12),
    TOTAL_STL_COUNTS NUMBER(12),
    RATE_MACHINE_IP VARCHAR2(30),
    INSERT_IP VARCHAR2(30),
    FME_TOTAL_REC NUMBER(10),
    FMT_BAD_REC NUMBER(10),
    FMT_TOTAL_REC NUMBER(10),
    INS_NORATE NUMBER(10),
    INS_NOSTS NUMBER(10),
    COL_SITE_ID NUMBER(10)
    src :
    char *col_name=NULL;
    ub4 col_name_len;
    R->lastError = OCIAttrGet(pard, OCI_DTYPE_PARAM, &col_name, &col_name_len, OCI_ATTR_NAME, R->err);
    printf("printf Oarcle ---->%d:%s,colnamelen:%d\n",i,col_name,col_name_len);
    if(strlen(col_name)!=col_name_len){
    //substr( col_name, col_name, 1, col_name_len );
    printf("Oarcle ---->%d:%s,colnamelen:%d\n",i,col_name,col_name_len/*,*/);
    // substr( col_name, col_name, 1, col_name_len );
    if (R->lastError != OCI_SUCCESS)
    continue;
    #if defined(ORACLE_COLUMN_NAME_LOWERCASE) && ORACLE_COLUMN_NAME_LOWERCASE > 1
    R->columns[i-1].name = CALLOC(1, col_name_len);
    OCIMultiByteStrCaseConversion(R->env, R->columns[i-1].name, col_name, OCI_NLS_LOWERCASE);
    printf("%d:YES!!!!,%s\n",i,R->columns[i-1].name);

  • 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

  • Daylight Savings Time 2007 and Jrockit JVM 1.4.2_04

    If I have applications running on WLS 8.1 SP2 with Jrockit JVM 1.4.2_04 on AS3, would the NEW Energy act of 2007 which resets the DST in march insteadt of April affect my JVM? If yes is there a patch?

    This fix is included in JRockit release R27.1 1.4.2_12 publically available from the download site.
    Read more: http://java.sun.com/developer/technicalArticles/Intl/USDST/
    BEA JRockit ports and includes the JDK from the Sun Java distribution, so things fixed in a Sun JDK is fixed in the corresponding BEA JDK.
    Kind regards, Cecilia
    BEA JRockit
    Kind regards,
    Cecilia Borg
    BEA WebLogic JRockit

  • JRockit does not work an all

    I have installed JRockit 1.4.2_03
    When I use "javac" command
    it says : no 'jrockit' JVM in "d:\...\jrockit\jvm.dll"
    why?

    Is there a jvm.dll file in that directory? You can try setting
    JAVALAUNCHER_DEBUG=1 before running the javac command and posting the
    output here:
    d:\>set JAVALAUNCHER_DEBUG=1
    d:\>javac MyFile.java
    Regards,
    /Staffan
    stanley wrote:
    I have installed JRockit 1.4.2_03
    When I use "javac" command
    it says : no 'jrockit' JVM in "d:\...\jrockit\jvm.dll"
    why?

  • Program seems can not find JRockit automatically

    Now I am using JRockit 1.4.2_03 as JVM
    I can execute a jar file using "java -jar *.jar", but when I double click it,
    it says no JVM found
    but when I use HotSpot, I can double click to execute the jar file
    I guess HotSpot writes something to registey table to make the lancher to find
    it, but JRockit does not, is it?
    (JAVA_HOME is setted correctly)

    Correct. JRockit's installer does not register .jar files to be opened
    with JRockit. You can do so yourself with the File Types dialog in the
    Windows Explorer (Tools->Folder Options...->File Types).
    Regards,
    /Staffan
    Stanley wrote:
    Now I am using JRockit 1.4.2_03 as JVM
    I can execute a jar file using "java -jar *.jar", but when I double click it,
    it says no JVM found
    but when I use HotSpot, I can double click to execute the jar file
    I guess HotSpot writes something to registey table to make the lancher to find
    it, but JRockit does not, is it?
    (JAVA_HOME is setted correctly)

  • 1.4.2_03 SDK install problem (WinXP SP1)

    I just installed j2sdk 1.4.2_03 (freshly downloaded), and installed on my WinXP SP1 laptop.
    * The install croaked at the point at which it tried to install the standalone JRE (threw up an error dialog, and if you hit OK on that, it exits the install without installing the JRE).
    * At that point, if I do "c:\j2sdk1.4.2_03\bin\java -version" (to check the version of the JRE contained in the SDK), it says "build 1.4.2-b28" (!!!). (I don't have any other JREs installed anywhere, and verified that it was indeed picking up the JRE from c:\j2sdk1.4.2_03\jre.)
    Did the 1.4.2_03 SDK go out with a bad JRE bundled? The 1.4.2_02 SDK correctly identifies itself (java -version) as "build 1.4.2_02-b03", and I've uninstalled everything and rolled back to that version of both the JRE and SDK, and everything works fine now (installs flawlessly).

    I am seeing the same problem with the j2sdk1.4.2_03 SDK and JRE installers. The error showing up on XP is "Error 1722. There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor." The install then exits with the package in a partial state and must be uninstalled. I also see the same problem when installing the older j2sdk1.4.2_03 SDK. Sounds like there is return state that is not being handled correctly in the package installer. Any ideas on how to fix this problem?
    Thanks
    Mark

  • Oracle JRockit R28.2.2. OutOfMemoryError: classblock allocation

    Hi Folks,
    Well, we have a production Weblogic environment over Oracle JRockit Virtual Machine. The problem is that we are trying to avoid an " OutOfMemoryError" that is thrown everyday by a SOA Managed Server and causes a failure and stop of the managed server which then has to be restarted, causing applications downtime.
    Platform:
    Windows 64bits Server 2008 R2 Standard. 32GB RAM
    Products:
    Oracle JRockit R28.2.2
    Oracle Weblogic Server 10.3.2
    Oracle SOA and BPM Suite 11g R1 11.1.1.5 Features Pack
    Oracle Services Bus 11g 11.1.1.5
    The message error is the following:
    java.lang.OutOfMemoryError: classblock allocation, 110787528 loaded, 84224K footprint, in check_alloc (src/jvm/model/classload/classalloc.c:215).
    Attempting to allocate 7G bytes
    There is insufficient native memory for the Java
    Runtime Environment to continue.
    Possible reasons:
    The system is out of physical RAM or swap space
    In 32 bit mode, the process size limit was hit
    Possible solutions:
    Reduce memory load on the system
    Increase physical memory or swap space
    Check if swap backing store is full
    Use 64 bit Java on a 64 bit OS
    Decrease Java heap size (-Xmx/-Xms)
    Decrease number of Java threads
    Decrease Java thread stack sizes (-Xss)
    Disable compressed references (-XXcompressedRefs=false)
    The following are the conclusions I have made about this problem:
    - It is clear in the message error that this is not a Java Heap Size issue since those kind of errors usually look like: (Java Heap Space, getNewTLA, etc...) and the message clearly states: "There is insufficient native memory for the Java Runtime Environment to continue". Besides, the MissionControl recordings show that the heap is constantly being garbage collected and there are not memory leaks.
    - The process size is about 10GB (7GB Heap Size and 4GB Native memory) but the platform consists of a 64 bit Windows 2008 Server with 32GB, so this is neither a "process size limit issue".
    -According to this, it could be clear that the problem is that "The system is out of physical RAM or swap space" but this isn't true either, since the system has a 48GB max paging file (wich in fact is not being used) and most importantly, the system has a total of 16GB RAM being used by all processes, leaving 16GB memory free for use.
    I have come to think that either JRockit is failing and throwing the exception without a good reason, or the message displayed is wrong and it is not letting me find the right cause of the issue we are facing.
    Any kind of advice will be appreciated.

    Hello,
    I am running into a similar issue with Jrockit 28.2.3. Following is the stacktrace:
    2012-09-08 18:08:56,341 WARN [STDERR] (Load thread:) Exception in thread "Load thread" java.lang.OutOfMemoryError: classblock allocation, 2814576 loaded, 2816K footprint, in check_alloc (src/jvm/model/classload/classalloc.c:215).
    Attempting to allocate 4320M bytes
    There is insufficient native memory for the Java
    Runtime Environment to continue.
    Possible reasons:
    The system is out of physical RAM or swap space
    In 32 bit mode, the process size limit was hit
    Possible solutions:
    Reduce memory load on the system
    Increase physical memory or swap space
    Check if swap backing store is full
    Use 64 bit Java on a 64 bit OS
    Decrease Java heap size (-Xmx/-Xms)
    Decrease number of Java threads
    Decrease Java thread stack sizes (-Xss)
    Disable compressed references (-XXcompressedRefs=false)
    2012-09-08 18:08:56,341 WARN [STDERR] (Load thread:)
    2012-09-08 18:08:56,341 WARN [STDERR] (Load thread:) at java.lang.ClassLoader.defineClass1(Native Method)
    2012-09-08 18:08:56,341 WARN [STDERR] (Load thread:) at java.lang.ClassLoader.defineClassCond(ClassLoader.java:631)
    2012-09-08 18:08:56,341 WARN [STDERR] (Load thread:) at java.lang.ClassLoader.defineClass(ClassLoader.java:615)
    2012-09-08 18:08:56,341 WARN [STDERR] (Load thread:) at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:141)
    2012-09-08 18:08:56,341 WARN [STDERR] (Load thread:) at java.net.URLClassLoader.defineClass(URLClassLoader.java:283)
    2012-09-08 18:08:56,341 WARN [STDERR] (Load thread:) at java.net.URLClassLoader.access$000(URLClassLoader.java:58)
    2012-09-08 18:08:56,341 WARN [STDERR] (Load thread:) at java.net.URLClassLoader$1.run(URLClassLoader.java:197)
    2012-09-08 18:08:56,341 WARN [STDERR] (Load thread:) at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    2012-09-08 18:08:56,341 WARN [STDERR] (Load thread:) at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    2012-09-08 18:08:56,341 WARN [STDERR] (Load thread:) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
    2012-09-08 18:08:56,341 WARN [STDERR] (Load thread:) at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
    2012-09-08 18:08:56,341 WARN [STDERR] (Load thread:) at org.apache.log4j.spi.ThrowableInformation.getThrowableStrRep(ThrowableInformation.java:87)
    2012-09-08 18:08:56,341 WARN [STDERR] (Load thread:) at org.apache.log4j.spi.LoggingEvent.getThrowableStrRep(LoggingEvent.java:413)
    2012-09-08 18:08:56,341 WARN [STDERR] (Load thread:) at org.apache.log4j.WriterAppender.subAppend(WriterAppender.java:313)
    2012-09-08 18:08:56,341 WARN [STDERR] (Load thread:) at org.apache.log4j.RollingFileAppender.subAppend(RollingFileAppender.java:276)
    2012-09-08 18:08:56,341 WARN [STDERR] (Load thread:) at org.apache.log4j.WriterAppender.append(WriterAppender.java:162)
    2012-09-08 18:08:56,341 WARN [STDERR] (Load thread:) at org.apache.log4j.AppenderSkeleton.doAppend(AppenderSkeleton.java:251)
    2012-09-08 18:08:56,341 WARN [STDERR] (Load thread:) at org.apache.log4j.helpers.AppenderAttachableImpl.appendLoopOnAppenders(AppenderAttachableImpl.java:66)
    2012-09-08 18:08:56,341 WARN [STDERR] (Load thread:) at org.apache.log4j.Category.callAppenders(Category.java:206)
    2012-09-08 18:08:56,341 WARN [STDERR] (Load thread:) at org.apache.log4j.Category.forcedLog(Category.java:391)
    2012-09-08 18:08:56,341 WARN [STDERR] (Load thread:) at org.apache.log4j.Category.warn(Category.java:1060)
    2012-09-08 18:08:56,341 WARN [STDERR] (Load thread:) at com.teneo.esa.common.util.Logger.printStack(Logger.java:584)

  • New bee question - no memoryleak dector in jrockit 1.4.2_10 mem console?

    Hi,
    Our company runs jrockit java version "1.4.2_10"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_10-b03)
    BEA JRockit(R) (build R26.3.0-32_CR283061-63465-1.4.2_10-20060620-1811-win-ia32, )
    "memorylead detector" tab was not available in Management Console, started from [jrockit home]/bin/console commandline.
    Any idea?
    Thanks in advance.

    Here is complete capture of exception information:
    =========================================
    from running Weblogic 8.1 sp6 instance:
    [JRockit] New Management Server connection from 127.0.0.1
    [JRockit] Timeout while handshaking with Management Client.
    [JRockit] Management Server connection: Handshaking failed!
    [JRockit] Management Server connection closed.
    =========================================
    from memleak client GUI error details:
    java.io.EOFException
         at java.io.DataInputStream.readInt(DataInputStream.java:448)
         at com.jrockit.memleak.comm.CommunicationChannel$ReceiveThread.readResponse(CommunicationChannel.java:61)
         at com.jrockit.memleak.comm.CommunicationChannel$ReceiveThread.run(CommunicationChannel.java:55)
    ==========================================
    from the command promot that started memleak.exe
    java.net.SocketException: socket write error: Connection aborted by peer
    at jrockit.net.SocketNativeIO.writeBytesPinned(I[BII)V(Native Method)
            at jrockit.net.SocketNativeIO.socketWrite(Ljava.io.FileDescriptor;[BII)V
    (Unknown Source)
            at java.net.SocketOutputStream.socketWrite0(Ljava.io.FileDescriptor;[BII
    )V(SocketOutputStream.java:???)
            at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92)
            at java.net.SocketOutputStream.write(SocketOutputStream.java:115)
            at java.io.DataOutputStream.writeInt(I)V(Unknown Source)
            at com.jrockit.memleak.comm.CommunicationChannel$SendThread.sendRequest(
    CommunicationChannel.java:163)
            at com.jrockit.memleak.comm.CommunicationChannel$SendThread.run(Communic
    ationChannel.java:129)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Error on Install on JRockit on Solaris SPARC, OS 5.8

    ON attempting to install JRockit V5 Release 26.3.0 the JDK, 1.5.06 version for Solaris 64 bit SPARC I encounter the following error (in both console and silent mode)
    Extracting 0%....................................................................................................100%
    dl failure on line 748Error: failed /var/tmp/aaaIoaiCj/jre150_06/lib/sparcv9/jrockit/libjvm.so, because ld.so.1: java: fatal: relocation error: file /var/tmp/aaaIoaiCj/jre150_06/lib/sparcv9/jrockit/libjvm.so: symbol _walkcontext: referenced symbol not found
    ** Error during execution, error code = 1536.
    Anyone encountered this. Or ideas as to what I can do to resolve it?

    Looks like you are trying to install on Solaris 8 which isn't supported.
    See: http://e-docs.bea.com/jrockit/jrdocs/suppPlat/supp_50.html and http://forums.bea.com/bea/thread.jspa?forumID=2009&threadID=600007913&messageID=600017076#600017076
    Regards,
    /Staffan

  • EAS- [JRockit] ERROR: The JVM has crashed

    Hi Experts,
    EAS crashed with error-
    !!!Setting HBR appname to : HBR:HBRAPP
    [JRockit] ERROR: The JVM has crashed. Writing crash information to..........*.dump
    Error Message: Illegal memory access. [54]
    Signal info : si_signo=11, si_code=128 si_addr=(nil)
    Version : Oracle JRockit(R) R28.0.2-11-135406-1.6.0_20-20100624-2119-linux-x86_64
    Please suggest .
    Regards
    Kumar
    Edited by: Kumar 1 on Nov 17, 2012 10:32 PM

    Thanks John for the help.
    I see load on server is normal and activities are also seems regular (not unusual).
    I found Doc @ metalink; Please I would like your view as your advice which is inavaluable.
    Doc "JRockit JVM Crash - R28.0.1 with "Illegal memory access" error message (Doc ID 1295504.1)"
    If not then what need to monitor closely???
    Regards
    Kumar

  • JRockit 1.5.0_06-b05 incorrect running xalan (1.3 bytecode)

    Hi,
    JRockit seems to be broken running 1.3 bytecode from Xalan (either 2.6 or 2.7). Doing the same transformation in a loop will after some time start producing different (and incorrect) results.
    Recompiling xalan (2.7) with a higher version jdk seems to solve this problem. Also, switching to a Sun VM solves the problem.
    I noticed an old jrockit issue solved for 1.4.2: "CR229176
    A rare error when using apache-xalan xml/xslt transforms is fixed. Xalan uses the swap bytecode (seldom used by javac) which triggered bad behavior within BEA JRockit."
    Although it might be similar I suppose it should also be fixed in the jrockit 1.5 version
    I have derived a test case that demonstrates the problem.
    Is there any place where these details are best sent to?
    Version used:
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_06-b05)
    EA JRockit(R) (build R26.4.0-63-63688-1.5.0_06-20060626-2259-win-ia32, )
    Thanks

    Thanks for the reproducer. It appears that JRockit has a bug when optimizing the following method:
    org/apache/xpath/axes/LocPathIterator.execute(Lorg/apac
    he/xpath/XPathContext;)Lorg/apache/xpath/objects/XObject;
    Running with -Xnoopt will avoid the issue (at a performance loss).
    It is not reproducible with the upcoming JRockit R27.1, so it looks like it has been fixed. If you have a support contract and need a patch for R26.4, contact BEA Support referring to this forum thread and ask for a fix for CR295469.

  • Realtime20_jdk1.5.0_linux32/jrockit-realtime20_150_11/    Core Dump

    It seems like in our prodn environment, the JROCKIT core dumped . THis was the message. we also have a core file that jrockit dumped.
    ANy help would be greatly appreciated.
    Error Message: Illegal memory access. [54]
    Signal info : si_signo=11, si_code=2 si_addr=0x6
    Version : BEA JRockit(R) R27.3.1-1-85830-1.5.0_11-20070716-1248-linux-ia32
    GC Strategy : Mode: deterministic, with strategy: singleconcon
    GC Status : OC currently running, in phase: final marking. This is OC#1380.
    Heap : 0x8100000 - 0x88100000
    Compaction : 0x16e80000 - 0x17280000
    CompRefs : References are 32-bit.
    CPU : AMD Opteron/Athlon64 SSE SSE2 SSE3 EM64T
    Number CPUs : 4
    Tot Phys Mem : 8340373504 (7954 MB)
    OS version : Red Hat Enterprise Linux ES release 4 (Nahant Update 3)
    Linux version 2.6.9-78.0.8.ELsmp ([email protected]) (gcc
    version 3.4.6 20060404 (Red Hat 3.4.6-10)) #1 SMP Wed Nov 5 07:10:44 EST 2008 (i
    686)
    Thread System: NPTL
    State : JVM is running
    Command Line : -DSERVER=router -Xverbose:memory,memdbg,gcpause,gcreport -Xverbos
    etimestamp -Xgcprio:deterministic -Xpausetarget=10ms -Xms2048m -Xmx2048m -DROUTE
    R_CONFIG_FILE=/EMSRouter/config/router.properties -DrouterContext=/EMSRouter/con
    fig/routerContext.xml -DLOG4J_XML_FILE=/EMSRouter/config/log4j.xml -DgemfireProp
    ertyFile=/opt/fxall/EMSRouter/config/RouterGemfire.properties -Dcache-xml-file=/
    EMSRouter/config/RouterServer.xml -DIS_TCP=true -DIS_AUTHENTICATION_REQUIRED=tru
    e -DIS_JMX_ADMIN_REQUIRED=true -DIS_JMX_ADMIN_REQUIRED=true -DJMXRMIRegistryPort
    =1999 -DJMXRMIServerPort=1099 -DJMXHTMLPort=8070 -DLB=false -DHB_TIME_OUT_SEC=10
    -DUserLoginLDAP-Config-File=/opt/fxall/EMSRouter/config/ldap-configuration.prop
    erties -Dsun.java.launcher=SUN_STANDARD com.fxall.ems.router.RouterGateway 10.36
    .31.41 9820
    java.home : /opt/fxall/realtime20_jdk1.5.0_linux32/jrockit-realtime20_150_11/
    jre
    j.class.path : .:/opt/fxall/EMSRouter/config:/opt/fxall/qems-jars/EMSRouter/EMSR
    outer.jar:/opt/fxall/qems-jars/Infrastructure/Infrastructure.jar:/opt/fxall/qems
    -jars/Util/Util.jar:/opt/fxall/qems-jars/Cache/Cache.jar:/opt/fxall/qems-jars/lo
    g4j-1.2.14.jar:/opt/fxall/qems-jars/jasypt-1.4.jar:/opt/fxall/qems-jars/commons-
    codec-1.1.jar:/opt/fxall/qems-jars/icu4j-3.4.4.jar:/opt/fxall/qems-jars/commons-
    lang-2.1.jar:/opt/fxall/qems-jars/commons-collections-3.2.jar:/opt/fxall/qems-ja
    rs/commons-configuration-1.2.jar:/opt/fxall/qems-jars/commons-logging-1.0.jar:/o
    pt/fxall/qems-jars/gemfire-5.5.jar:/opt/fxall/qems-jars/antlr-1.0.jar:/opt/fxall
    /qems-jars/spring-2.5.6.jar:/opt/fxall/qems-jars/rmissl-1.0.jar:/opt/fxall/qems-
    jars/jmxtools-1.0.jar:/opt/fxall/qems-jars/jmxri-1.0.jar:/opt/fxall/qems-jars/jm
    xremote_optional-1.0.jar:/opt/fxall/qems-jars/jmxremote-1.0.jar:/opt/fxall/qems-
    jars/wiseman-core-1.0.jar:/opt/fxall/qems-jars/smjavaagentapi-5.5.jar:/opt/fxall
    /qems-jars/smjavasdk2-5.5.jar:/opt/fxall/qems-jars/ldapjdk-1.0.jar
    j.lib.path : /opt/fxall/realtime20_jdk1.5.0_linux32/jrockit-realtime20_150_11/
    jre/lib/i386/jrockit:/opt/fxall/realtime20_jdk1.5.0_linux32/jrockit-realtime20_1
    50_11/jre/lib/i386:/opt/fxall/realtime20_jdk1.5.0_linux32/jrockit-realtime20_150
    _11/jre/../lib/i386:/opt/fxall/smlib/:/opt/fxall/smlib/:
    JAVA_HOME : /opt/fxall/java/jre
    JAVAOPTIONS: <not set>
    LD_LIBRARY_PATH: /opt/fxall/realtime20_jdk1.5.0_linux32/jrockit-realtime20_150_1
    1/jre/lib/i386/jrockit:/opt/fxall/realtime20_jdk1.5.0_linux32/jrockit-realtime20
    _150_11/jre/lib/i386:/opt/fxall/realtime20_jdk1.5.0_linux32/jrockit-realtime20_1
    50_11/jre/../lib/i386:/opt/fxall/smlib/:/opt/fxall/smlib/:
    LD_ASSUME_KERNEL: <not set>
    C Heap : Good; no memory allocations have failed
    StackOverFlow: 0 StackOverFlowErrors have occured
    OutOfMemory : 0 OutOfMemoryErrors have occured
    Registers (from ThreadContext: 0xb78e9cd4 / OS context: 0xb78e9dd0):
    eax = b5e00018 ecx = b5e00010 edx = 00000002 ebx = 00d18ff4
    esp = b78ea0c0 ebp = b78ea17c esi = 00000002 edi = 0000004a
    es = 0000007b cs = 00000073 ss = 0000007b ds = 0000007b
    fs = 00000000 gs = 00000033
    eip = 00c550a1 eflags = 00000202
    Stack:
    (* marks the word pointed to by the stack pointer)
    b78ea0c0: 080c48f8* 00000001 b78ea0d8 b7e0bd7b 00000001 b78ea0f0
    b78ea0d8: b78ea128 b7e0be2a b78ea160 00000001 00000000 7fffffff
    b78ea0f0: 00000005 000deef8 b78ea158 b78ea180 b78ea180 b78ea15c
    b78ea108: b78ea128 7fffffff 00000005 00000006 b78ea158 b78ea180
    Code:
    (* marks the word pointed to by the instruction pointer)
    00c55070: f883f8e2 08458b10 e055420f 8904788b d739e055 d0894772
    00c55088: c1084d8b 508d03e8 91048dfe 8908708d 708bd875 74f68508
    00c550a0: 044e8b2c* 83087e8d e9c1f8e1 02e98303 850fd139 00000803
    00c550b8: 89084e8b d8758bf8 c4810e89 000000b0 5d5f5e5b e07d81c3
    Loaded modules:
    (* denotes the module causing the exception)
    08048000-08056fd3 /opt/fxall/realtime20_jdk1.5.0_linux32/jrockit-realtime20_150
    _11/jre/bin/java
    001ec000-001f995b /lib/tls/libpthread.so.0
    00d25000-00d45d0f /lib/tls/libm.so.6
    00d1f000-00d20967 /lib/libdl.so.2
    00bf3000-00d16a14 */lib/tls/libc.so.6
    00bda000-00beed53 /lib/ld-linux.so.2
    b7cc9000-b7f7c307 /opt/fxall/realtime20_jdk1.5.0_linux32/jrockit-realtime20_150
    _11/jre/lib/i386/jrockit/libjvm.so
    00d6c000-00d73a76 /lib/tls/librt.so.1
    b7c20000-b7c2a7db /opt/fxall/realtime20_jdk1.5.0_linux32/jrockit-realtime20_150
    _11/jre/lib/i386/libverify.so
    b7bfd000-b7c1d217 /opt/fxall/realtime20_jdk1.5.0_linux32/jrockit-realtime20_150
    _11/jre/lib/i386/libjava.so
    b7be0000-b7bf1743 /lib/libnsl.so.1
    b7a79000-b7a7ef13 /opt/fxall/realtime20_jdk1.5.0_linux32/jrockit-realtime20_150
    _11/jre/lib/i386/native_threads/libhpi.so
    b7698000-b76a64c4 /opt/fxall/realtime20_jdk1.5.0_linux32/jrockit-realtime20_150
    _11/jre/lib/i386/libzip.so
    b6e4d000-b6e5e103 /opt/fxall/realtime20_jdk1.5.0_linux32/jrockit-realtime20_150
    _11/jre/lib/i386/libnet.so
    b70d6000-b70dc1e7 /opt/fxall/realtime20_jdk1.5.0_linux32/jrockit-realtime20_150
    _11/jre/lib/i386/libnio.so
    b67a3000-b67a8246 /opt/fxall/realtime20_jdk1.5.0_linux32/jrockit-realtime20_150
    _11/jre/lib/i386/libmanagement.so
    b621e000-b621e73d /opt/fxall/realtime20_jdk1.5.0_linux32/jrockit-realtime20_150
    _11/jre/lib/i386/librmi.so
    b5913000-b594f1ef /opt/fxall/smlib/libsmjavaagentapi.so
    b58ca000-b58fdac7 /usr/lib/libstdc++-libc6.1-1.so.2
    "(GC Worker Thread 4)" id=? idx=0x24 tid=23625 lastJavaFrame=0xfffffffc
    Stack 0: start=0xb78a9000, end=0xb78eb000, guards=0xb78ae000 (ok), forbidden=0xb
    78ac000
    Thread Stack Trace:
    at intmalloc+97()@0xc550a1
    at __libc_calloc+214()@0xc56e26
    at mmCalloc+60()@0xb7e1904c
    at utilSortableVectorNewTLA+125()@0xb7ed47fd
    at refIterInit+85()@0xb7e8a285
    at trMarkRootsForThread+38()@0xb7e98726
    at mmMarkRootsForThread+44()@0xb7e185ec
    at mmDetGc4ThreadInspection+45()@0xb7ea560d
    at mmDetGcScanThreadRootsWorkers+17()@0xb7ea5521
    at mmGCWorkLoop+160()@0xb7d4f160
    at tsiCallStartFunction+30()@0xb7e05f2e
    at tsiThreadStub+140()@0xb7e070ac
    at ptiThreadStub+18()@0xb7e73c72
    at start_thread+129()@0x1f1371

    798290 wrote:
    No, we dont Use any JNI in this app.
    It seems the Core dump was caused by a GC scheduled by JROCKIT
    looking at the stack trace.A SIGSEGV represents a pointer error.
    The SIGSEGV indicates an error that occurs when the OS sees that the application is doing something that it should not.
    That however does not mean that bug originates only at that point. A pointer error can corrupt memory in such a way that the application can run for some time before it does something the OS does not care for. But it can also occur at the exact spot.
    Causes for such errors.
    - JNI, as already mentioned.
    - Some other application on the system corrupting the VM space. Such as monitoring tools or debugging tools. Unlikely but possible.
    - Hardware failures and/or OS problems. Again unlikely.
    - A bug in the VM.

  • Return a struct instead of query from cfc to as3

    Hi all,
    Recently I am updating an old project which make use of flash remoting (com.niarbtfel.remoting classes).
    I 've got my new coldefusion method in cfc which need to return a structure instead of a query result. It seems that is not supported
    as I get an error within the OnResult method in as3 code.
    The error is
    TypeError: Error #1010: A term is undefined and has no properties.
    it seems that the piece of code i am using is not accepting structures.
    function onSucceed(re:ResultEvent, args:Array)
         var resultStructur:Object = new Object();
         resultStructure = re.result.serverInfo.initialData;
    Any ideas, directions would be appreciated.
    cheers,
    Giorgos

    Ok I got this just now,
    I just need to ask for
    trace(re.result["STRUCTURE_ITEM"]);
    Cheers

  • Scale mode stopped working in AS3?

    I put in the time line some AS code:
    var yOffset=stage.stageHeight;
    stage.scaleMode = "noScale";
    yOffset=(yOffset-stage.stageHeight)/2;
    Swf window on website is bigger then document size. Value of
    yOffset is
    always 0. Similar construction used in AS2:
    var yOffset=Stage.height;
    Sage.scaleMode = "noScale";
    yOffset=(yOffset-Stage.height)/2;
    works fine and calculates how many pixels content of SWF must
    be shifted in
    no scale mode when player window differs from document
    window.
    Is it a bug? How to retreive information about original
    document size under
    AS3?

    john
    Which error message did you get? Most common are 8, 21, and 22. Error 8 usually means that one of the required ports was not open. 22 = insufficient bandwidth
    Check your set-up with these 2 tutorials:
    http://www.ralphjohnsuk.dsl.pipex.com/
    http://www.mvldesign.com/videoconferencetutorial.html
    Post back if these don't get you working.
    Dave

Maybe you are looking for

  • Create a program for Automatic calculation of Interest on arrears for Custo

    Hello Experts, Please Check the below requirement and guide me according ly.. Upto now our client is preparing the interest manually in excel and later they issue the invoice in Finance module (DR document) and attach the paper with the calculation.

  • [MBP 15"] Mini-DisplayPort to Eizo S2431

    Hi all ! I've a MBP Unibody 15" with an adaptator MDP to VGA and a Eizo S2431 in native resolution 1920x1200. When I connect my external screen (eizo) I can't have the native resolution, I can only have a 1680x1200 resolution... Is it due to VGA cabl

  • ERROR: can't register at XIP. RfcRc = 3, SYSTEM_FAILURE

    I am running XI3.0 sp12, oracle 9.2.0.6 on MS Cluster - 2003. I am trying to set up CCMS as per How to Monitor XI 3.0. I am trying to register the CMSCONF file in the Admin Console, but am getting the following error: INFO: Connected to XIP, CCMS ver

  • Could not able to login into Oracle

    Hi , I am using Oracle 9i as Database . I am not able to login into Database please help . when i tried with system and admin it displays : Invalid username/password ; logon denied when i tried with scott/tiger : It displays account is locked. Please

  • GTK2 not found during compile

    I'm attempting to recompile JPilot against the latest GTK2 pacman just installed, and I get this error during configure: checking for GTK+ - version >= 2.0.3... no *** Could not run GTK+ test program, checking why... *** The test program failed to co