[svn] 3050: Removed compile warning with JDK1.5

Revision: 3050
Author: [email protected]
Date: 2008-08-29 16:48:58 -0700 (Fri, 29 Aug 2008)
Log Message:
Removed compile warning with JDK1.5
Modified Paths:
blazeds/trunk/modules/core/src/java/flex/messaging/io/BeanProxy.java

Did you try this:
http://forum.java.sun.com/thread.jsp?thread=434718&forum=60&message=1964421

Similar Messages

  • Ridiculous bug in oracle jdeveloper compiler ojc with jdk1.4

    With simple class:
    public class Test
    public Test()
    public String toString()
    return null;
    public static void main(String[] args) throws Exception
    Test test = new Test();
    System.out.println("ooo" + test);
    After compile it with ojc (ojc Test.java) and run it with jdk 1.4.1_01 (java Test), it throws
    java.lang.NullPointerException
    at java.lang.String.concat(String.java:1541)
    But it works ok if compile it with standard java compiler(javac).

    Hi,
    Thanks for reporting this. It's a bug. I've logged it as 2809860, and you can track this on metalink.oracle.com.
    Brian
    JDev Team

  • Compiler warning with Collections.sort() method

    Hi,
    I am sorting a Vector that contains CardTiles objects. CardTiles is a class that extends JButton and implements Comparable. The code works fine but i get the following warning after compilation.
    Note: DeckOfCards.java uses unchecked or unsafe operations.
    Note: Recompile with -Xlint:unchecked for details.
    After compiling with -Xlint, i get the following warning;
    DeckOfCards.java:173: warning: [unchecked] unchecked method invocation: <T>sort(java.util.List<T>) in java.util.Collections is applied to (java.util.Vector<CardTiles>)
    Collections.sort(handTwo);
    ^
    What could be the problem? Is Collections.sort() only intended for Collections of type List?
    Many thanks!

    Hi Jverd, my handTwo Vector was declared as follows;
    Vector<CardTiles> handTwo = new Vector<CardTiles>();
    The CardTiles Source code is as follows;
    import javax.swing.*;
    import java.util.*;
    public class CardTiles extends JButton implements Comparable{
         static String typeOfSort = "face";
         public static final long serialVersionUID = 24362462L;
         int i=1;
         public ImageIcon myIcon;
         public Card myCard;
         public CardTiles(ImageIcon i, Card c){
              super(i);
              myIcon = i;
              myCard = c;
         public int compareTo(Object o){
              CardTiles compare = (CardTiles)o;
              if(typeOfSort.equals("face")){
                   Integer ref1 = new Integer(this.myCard.getFaceValue());
                   Integer ref2 = new Integer(compare.myCard.getFaceValue());
                   return ref1.compareTo(ref2);
              }else{
                   if(this.myCard.getFaceValue() > 9 || compare.myCard.getFaceValue() >9){
                        if(this.myCard.getFaceValue() > 9 && compare.myCard.getFaceValue() >9){
                             String ref1 = this.myCard.getSuit().substring(0,(this.myCard.getSuit().length()-1));
                             String ref2 = compare.myCard.getSuit().substring(0,(compare.myCard.getSuit().length()-1));
                             return ref1.compareTo(ref2);
                        }else{
                             if(this.myCard.getFaceValue() > 9 || compare.myCard.getFaceValue() >9){
                                  String ref1 = this.myCard.getSuit().substring(0,(this.myCard.getSuit().length()-1));
                                  String ref2 = compare.myCard.getSuit() + Integer.toString(compare.myCard.getFaceValue());
                                  return ref1.compareTo(ref2);
                             }else{
                                  String ref1 = this.myCard.getSuit() + Integer.toString(this.myCard.getFaceValue());
                                  String ref2 = compare.myCard.getSuit().substring(0,(compare.myCard.getSuit().length()-1));
                                  return ref1.compareTo(ref2);
                   }else{
                        String ref1 = this.myCard.getSuit() + Integer.toString(this.myCard.getFaceValue());
                        String ref2 = compare.myCard.getSuit() + Integer.toString(compare.myCard.getFaceValue());
                        return ref1.compareTo(ref2);
         public String toString(){
              return ( myCard.toString() + " with fileName " + myIcon.toString());
    }What could be wrong?
    Many thanks!

  • I'm getting a compiler warning with generics in J2SDK1.5.0

    javac -source 1.5 -target 1.5 -Xlint:unchecked Test.java
    Test.java:72: warning: unchecked cast to type TYPE mValues = (TYPE[])new Object[aInitialSize];
    My code is below, and ideas why this warning appears, is it a bug in my code or is the compiler faulty?
    (crosspost warning, I posted the same question on www.javalobby.org, no need for flaming...)
    static class Array
         private TYPE [] mValues;
         public Array(int aInitialSize)
              mValues = (TYPE[])new Object[aInitialSize];
         public void set(int aIndex, TYPE aValue)
              mValues[aIndex] = aValue;
         public TYPE get(int aIndex)
              return mValues[aIndex];
    Sincerely,
    Patrik Olsson

    I asked Sun about this and they replayed:
    No, because it is not typesafe. Consider the code
    class A<T> {
    T[] f() { return (T[])new Object[10]; }
    This will cause a class cast exception in its caller, even if the caller has no
    cast:
    A<Integer> ai = new A<Integer>();
    Integer[] a = ai.f(); // BOOM!
    Don't use arrays. Use collections.

  • Compiling classes with JDK1.5 instead of 1.4

    When compiling this perfectly working piece of code under SJSC2EA2:
    private double eval(double t, int... p) {
    return ( p[0] * Math.pow(1-t, 3) +
    3 * p[1] * Math.pow(1-t, 2) * t +
    3 * p[2] * (1-t) * Math.pow(t, 2) +
    p[3] * Math.pow(t, 3));
    I get this error message (between the dashed lines) from the compiler:
    init:
    deps-jar:
    Compiling 2 source files to C:\Documents and Settings\mohsen madi\Desktop\sjstudio8\bezierAndPostscript\build\classes
    C:\Documents and Settings\Desktop\sjstudio8\bezierAndPostscript\src\BezPSNoComments.java:227: variable-arity methods are not supported in -source 1.4
    (try -source 1.5 to enable variable-arity methods)
    private double eval(double t, int... p) {
    C:\Documents and Settings\Desktop\sjstudio8\bezierAndPostscript\src\BezierPostScript.java:316: variable-arity methods are not supported in -source 1.4
    (try -source 1.5 to enable variable-arity methods)
    private double eval(double t, int... p) {
    2 errors
    BUILD FAILED (total time: 0 seconds)
    Of course, I right-clicked my project, selected proprties, and saw that:
    - in "Libraries", the Java Platform field is set to JDK1.5 (Default)
    - in "Build->Compiling", I added the "-source 1.5" in Additional Compiler Options, and
    - in "Run", I added "-source 1.5" at the VM Options field
    But non of that worked for me!
    Apparently, one would get the same message any time one uses a Java 5 feature like the "variable-length argument list" above or the "enhanced for loop".
    How can I make my project be compiled by JDK 1.5 to make benefit of the Java 5.0 features and not have it go to J2EE 1.4 apparently or wherever it goes?
    Thanks,
    Mohsen Madi

    YOu might want to post this on the Creator 2 EA 2 forum instead.
    Just sign on here like you did to download it and post it in the fourm: https://feedbackprograms.sun.com/login.html?ref=%2Fhome%2Ehtml%3F

  • Compiling with jdk1.3

    I have not been able to compile test programs with jdk1.3. Mostly I get "Bad Command or File name".
    E.G., "C:\J21work>javac Ellsworth.java
    Bad command or file name "
    among quite a number of attempts to set AUTOEXEC.BAT right
    are
    "PATH C:\jdk1.3\bin; %PATH%
    @SET CLASSPATH=;C:\jdk1.3\lib\tools.jar; %CLASSPATH%"
    and
    SET PATH=%PATH%;%JAVAHOME%\BIN
    PATH=C:\WINDOWS;C:\WINDOWS\COMMAND;C:\JDK\BIN;
    any advice?
    Gordon GOdbersen
    [email protected]

    Forget about autoexec.bat for a while..
    it is one way to do it..
    other way is:
    on DOS prompt type:
    1. edit abc.bat (abc is just a name, it can be anything except a DOS command)
    2.in this file - abc.bat write:
    set path=c:\jdk1.3\bin
    set classpath=c:\Name of the directory where your class files reside, if yourfile.class is in c:\temp, write c:\temp here...
    3. save this file
    4. type abc, don't type abc.bat on DOS prompt
    5. u will see the path & classpath set as per your abc file..
    you can edit this abc.bat anytime u want..
    One more thing, when u exit DOS prompt and again
    open it, u need to run ie type abc on DOS prompt again..
    Hope this hepls !!
    Mayur
    I have not been able to compile test programs with
    jdk1.3. Mostly I get "Bad Command or File name".
    E.G., "C:\J21work>javac Ellsworth.java
    Bad command or file name "
    among quite a number of attempts to set AUTOEXEC.BAT
    right
    are
    "PATH C:\jdk1.3\bin; %PATH%
    @SET CLASSPATH=;C:\jdk1.3\lib\tools.jar; %CLASSPATH%"
    and
    SET PATH=%PATH%;%JAVAHOME%\BIN
    PATH=C:\WINDOWS;C:\WINDOWS\COMMAND;C:\JDK\BIN;
    any advice?
    Gordon GOdbersen
    [email protected]

  • [svn:fx-trunk] 11488: Resubmitting binary distribution of xercesPatch. jar from the third party module in the SDK and compiled it with Sun JDK 1.4 .2_12.

    Revision: 11488
    Author:   [email protected]
    Date:     2009-11-05 17:10:10 -0800 (Thu, 05 Nov 2009)
    Log Message:
    Resubmitting binary distribution of xercesPatch.jar from the third party module in the SDK and compiled it with Sun JDK 1.4.2_12.
    QE notes: N/A
    Doc notes: N/A
    Bugs:
    SDK-16818 - Must open-source the code for xercesPatch.jar.
    Reviewer: Discussed with Gordon
    Tests run: Checkintests
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-16818
    Modified Paths:
        flex/sdk/trunk/lib/xercesPatch.jar
        flex/sdk/trunk/modules/thirdparty/xerces-patch/build.xml

    Did you try this:
    http://forum.java.sun.com/thread.jsp?thread=434718&forum=60&message=1964421

  • Compiled with jdk1.3.1_01 and run under VM 2.0

    I have compilied all my source code with jdk1.3.1_01 and ias6.0 sp3 uses jdk1.2.2 or 2.0VM....is this difference going to affect my application?

    Hi,
    It depends upon how your application is coded. If you use some of
    the functionalities which JDK 1.2 uses and incase JDK 1.3 doesn't likes
    that, you are likely to get errors. Infact, iAS encourages you to use
    the JVM which is bundled along with iAS SP3 and using JDK apart from
    that troubles. Please refer to my previous posting on iAS SP3 & JDK 1.3,
    I've tested them, which threw lots of errors. Hope this helps.
    Regards
    Raj
    Mansoor Quraishi wrote:
    I have compilied all my source code with jdk1.3.1_01 and ias6.0 sp3
    uses jdk1.2.2 or 2.0VM....is this difference going to affect my
    application?
    Try our New Web Based Forum at http://softwareforum.sun.com
    Includes Access to our Product Knowledge Base!

  • [svn:fx-trunk] 11707: Fix incremental compilation problem with styles.

    Revision: 11707
    Author:   [email protected]
    Date:     2009-11-12 10:52:49 -0800 (Thu, 12 Nov 2009)
    Log Message:
    Fix incremental compilation problem with styles.
    QE notes: None.
    Doc notes: None.
    Bugs: SDK-24173
    Reviewer: Paul
    Tests run: checkintests
    Is noteworthy for integration: No.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24173
    Modified Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/StylesContainer.java

    You have used elements like header, footer, footer1 and nav without using the correct DOCTYPE declaration. Replace the first line of your code with
    <!doctype html>
    Also have a look here for other problems http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fhome.surewest.net%2Fstorytales%2F test%2Fforposting.html
    After the above has been fixed, please come back here to fix the remaining problem(s)
    Gramps

  • AJAX code compilation error in jdk1.4.2_15 in JDeveloper 10.1.3.3.0

    I am using AJAX for search functionality in our appication which involves ADF JSF,jspx pages in JDeveloper 10.1.3.3.0. When I compile the following code it compiles fine without error in jdk1.5 but gives compilation error in jdk1.4.2_15.
    public List<String> autoCompleteFindUniqueNames(String searchString){
    UniqueEmployeeNamesImpl hits = this.getUniqueEmployeeNames1();
    hits.setNamedWhereClauseParam("searchPrefix",searchString.toUpperCase()+ "%");
    hits.setRangeSize(5);
    hits.executeQuery();
    ArrayList resultset = new ArrayList((int)hits.getEstimatedRowCount());
    for (Row row:hits.getAllRowsInRange()){
    resultset.add((String)row.getAttribute("LastName"));
    return resultset;
    Compilation error giving on the line " for (Row row:hits.getAllRowsInRange()){ "
    and it says " Error ; Expected "
    Can somebody helpme out what should I change on this line in order to compile this ?
    Thanks in advance,
    Ram

    Frank,
    Thanks for your response. I removed <String> after LIST and it compiles. But the problem
    is with the following iterator code which is giving error while compiling in jdk1.4.2_15. Trying to find out the equivalent iterator code of the following which is in jdk1.5
    Row row:hits.getAllRowsInRange()
    Thanks,
    Ram

  • JAXP: code works with JDK1.3.1/Xerces but not JDK1.4.1

    Switching from JDK 1.3.1 with the Xerces XML parser to JDK 1.4.1 with its
    bundled XML parser breaks my code. Here is the exception I am
    seeing:
    Exception in thread "main" com.post.bean.BeanException com.post.bean.Bea
    nException: Relative URI "bean.dtd"; can not be resolved without a base URI.
    at com.post.bean.BeanSerializer.deserialize(BeanSerializer.java:176)
    at com.post.BeanSerializer1.deserialize(BeanSerializer1.java:38)
    at com.post.BeanSerializer1.main(BeanSerializer1.java:17)
    Here is a code fragment that worked fine with JDK1.3.1 and xerces but
    not with JDK1.4.1:
    public static Object deserialize(InputStream input, EntityResolver
    resolver)
    throws BeanException
    Object bean = null;
    try
    DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
    factory.setValidating(true);
    factory.setNamespaceAware(false);
    DocumentBuilder builder = factory.newDocumentBuilder();
    if (resolver != null)
    builder.setEntityResolver(resolver);
    Document doc = builder.parse(input); // exception thrown here
    Element root = doc.getDocumentElement();
    The entity resolver I'm using searches for dtds in
    a certain directory. Again this works fine with JDK1.3.1
    and Xerces but not with JDK1.4.1.
    Any ideas on how to remedy this situation?
    Thanks

    this generally happens when two similar libs conflict with each other. Try any of theses quick fixes: (Remember, 90% of probs in java are Classpath, packages and directory structure issues)
    1. remove completely your previous version of JDK and Xerces.
    2. Remove your classpath variable from system path.
    3. Have "only the required" jar files during compilation. For this use the -D option.
    4. If everything fails, download ANT. Write a simple build.xml file. This is a good replacement to the -D option. But make sure, you are working in a clean JDK environment. Try to monitor your classpaths at run time, and get rid of all the unnecessary once.
    5. MAke sure that Xerces libs bundled with 1.4 are in your classpath at runtime.
    Finally All the best, and happy XMLing+Javing !!
    Rakesh

  • IBM AIX4.3.3 with JDK1.2.2(IBM)

    Hi!... I'm running WLS5.1 SP9 under IBM AIX4.3.3 with JDK1.2.2(IBM) and
    Connecting with DB2...
    Starting WLS successfully, in later WLS crashes and Core Dump.
    See below, WLS dump message....Why this problem is occurred?
    Is JDK problem? or WLS or AIX4.3.3..
    Fri Sep 21 11:12:58 2001
    SIGILL received at 1 in . Processing terminated.
    Current Thread Details
    "ExecuteThread-21" (TID:0x80032c38, sys_thread_t:0x309d7ba0, state:R,
    native ID:0x1b1c) prio=5: pending=java.lang.NullPointerException
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    (Compiled Code))
    at
    weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
    l.java(Compiled Code))
    at
    weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
    l.java(Compiled Code))
    at
    weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContext
    Manager.java(Compiled Code))
    at
    weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java(Compi
    led Code))
    at
    weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java(Compiled
    Code))
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
    ----- Native Stack -----
    unavailable - iar 1 not in text area
    J2RE 1.2.2 IBM build ca122-19991217
    Operating Environment
    Host : ecedi:10.3.101.11
    OS Level : AIX 4.3.3.0
    Processors -
    Architecture : POWER_PC (impl: unknown, ver: unknown)
    How Many : 6
    Enabled : 6
    User Limits (in bytes except for NOFILE and NPROC) -
    RLIMIT_FSIZE : infinity
    RLIMIT_DATA : 1342177280
    RLIMIT_STACK : infinity
    RLIMIT_CORE : 1073741312
    RLIMIT_NOFILE : 4000
    NPROC(max) : 1024
    Page Space (in blocks) -
    /dev/hd6: size=393216, free=152532
    /dev/paging00: size=393216, free=153025
    Application Environment
    Signal Handlers -
    SIGHUP : ignored
    SIGINT : ignored
    SIGQUIT : intrDispatchMD (libhpi.a)
    SIGILL : intrDispatchMD (libhpi.a)
    SIGTRAP : unknown handler (libjitc.a)
    SIGABRT : intrDispatchMD (libhpi.a)
    SIGEMT : intrDispatchMD (libhpi.a)
    SIGFPE : intrDispatchMD (libhpi.a)
    SIGBUS : intrDispatchMD (libhpi.a)
    SIGSEGV : intrDispatchMD (libhpi.a)
    SIGSYS : intrDispatchMD (libhpi.a)
    SIGPIPE : ignored
    SIGUSR1 : sigusr1Handler (libhpi.a)
    SIGUSR2 : unknown handler (libjitc.a)
    Environment Variables -
    _=/usr/java_dev2/jre/sh/../bin/java
    CICSREGION=ecedi
    LANG=ko_KR
    LOGIN=weblogic
    IMQCONFIGCL=/etc/IMNSearch/dbcshelp
    AIX_LOCKKEY=38
    ORA_NLS_CHARACTERSET_CONVERSION=NO_CHARACTER_SET_CONVERSION
    PATH=.:/usr/java_dev2/jre/sh:/usr/java_dev2/sh:/usr/bin:/etc:/usr/sbin:/usr/
    ucb:/weblogic/bin:/usr/bin/X11:/sbin:/usr/vac/bin:/usr/lpp/cics/bin:/oracle/
    bin:/shadow/bin:/usr/local/bin
    NLS_LANG=AMERICAN_AMERICA.KO16KSC5601
    DB2DIR=/usr/lpp/db2_06_01
    ORACLE_BASE=/oracle
    JAVACLASSPATH=:./lib/weblogic510sp9boot.jar:./classes/boot:./db2lib/db2java.
    zip:./db2lib/runtime.zip:./eval/cloudscape/lib/cloudscape.jar
    LC__FASTMSG=true
    CGI_DIRECTORY=/var/docsearch/cgi-bin
    IMQCONFIGSRV=/etc/IMNSearch
    CLASSPATH=.:/weblogic/classes/:/usr/jdk_base/lib/classes.zip:/usr/java_dev2/
    jre/lib/rt.jar:/usr/java_dev2/jre/lib/:/usr/java_dev2/lib/tools.jar:/weblogi
    c/lib/weblogicaux.jar:/weblogic/lib/weblogic510sp9.jar:/oracle/jdbc/lib/clas
    ses12.zip:/oracle/jdbc/lib/classes111.zip:/oracle/jdbc/lib/nls_charset11.zip
    :/oracle/lib/servlet.jar:/oracle/xdk/lib/xmlparserv2.jar:/oracle/xdk/lib/ora
    clexsql.jar:/oracle/xdk/lib/xmlplsql.jar:/oracle/xdk/lib/jdev-rt.zip.jar:/or
    acle/rdbms/jlib/xsu12.jar:/oracle/xdk/lib:/weblogic/db2lib/db2java.zip:/webl
    ogic/db2lib/runtime.zip:/weblogic/db2lib/sqlj.zip:/weblogic/xecure/xecureweb
    _ver4/lib/java/weblogic5/:/app/ecxml/ecxml.jar
    ENCINA_BIND_FILE=/var/cics_servers/server_bindings
    LOGNAME=weblogic
    MAIL=/usr/spool/mail/weblogic
    CICSPATH=/usr/lpp/cics
    ORACLE_SID=EDI
    LOCPATH=/usr/lib/nls/loc
    AIX_LOCKBITS=00
    EPC_DISABLED=TRUE
    DOCUMENT_SERVER_MACHINE_NAME=localhost
    USER=weblogic
    JRE_HOME=/usr/java_dev2/jre
    NLS_DATE_FORMAT=YYYY-MM-DD
    AUTHSTATE=compat
    LC_MESSAGES=ko_KR
    DCE_USE_WCHAR_NAMES=1
    DISPLAY=:0.0
    SHELL=/bin/ksh
    ODMDIR=/etc/objrepos
    JAVA_HOME=/usr/java_dev2
    JAVAHOME=/usr/java_dev2/jre/sh/..
    JDK_HOME=/usr/java_dev2
    DOCUMENT_SERVER_PORT=49213
    ORA_NLS33=/oracle/ocommon/nls/admin/data
    AIX_LOCKMASK=08
    XFILESEARCHPATH=/usr/java_dev2/jre/sh/../lib/locale/%L/%T/%N%S:
    HOME=/weblogic
    WEBLOGICCLASSPATH=:./lib/weblogic510sp9.jar:./lib/weblogicaux.jar:./license:
    ./classes:./slib/scjd11.jar:/oracle/jdbc/lib/classes12.zip:/oracle/jdbc/lib/
    classes111.zip:/weblogic/xecure/xecureweb_ver4/lib/java/weblogic5:/weblogic/
    xecure/xecureweb_ver4/demo/servlet/class
    DB2INSTANCE=db2inst1
    TERM=vt100
    LD_LIBRARY_PATH=/epilot/shadow:/epilot/shadow/lib:/usr/jdk_base/lib:/epilot
    MAILMSG=[YOU HAVE NEW MAIL]
    ORACLE_HOME=/oracle
    NEONTRACE=LOCKTHREAD
    PWD=/weblogic
    DOCUMENT_DIRECTORY=/usr/docsearch/html
    CICS_SFS_SERVER=/.:/cics/sfs/ecedi
    TZ=KORST-9
    WL_HOME=/weblogic
    AIXTHREAD_SCOPE=S
    INSTHOME=/home/db2inst1
    A__z=! LOGNAME
    LIBPATH=/usr/java_dev2/jre/sh/../bin:/usr/java_dev2/jre/sh/../bin/classic::/
    home/db2inst1/sqllib/lib:/weblogic/lib/aix:/weblogic/slib:/weblogic/slib:/us
    r/shadow/lib:/epilot/shadow/lib:/epilot/shadow:/epilot:/usr/local/lib:/usr/j
    ava_dev2/jre/bin/classic:/usr/java_dev2/jre/bin:/weblogic/xecure/xecureweb_v
    er4/lib/java/jni
    NLSPATH=/usr/lib/nls/msg/%L/%N:/usr/lib/nls/msg/%L/%N.cat:/usr/lib/nls/msg/%
    L/%N:/usr/lib/nls/msg/prime/%N
    Loaded Libraries (sizes in bytes)
    /usr/lib/libXtst.a
    filesize : 79981
    text start : d6787100
    text size : 563e
    data start : 32dbe480
    date size : 4b4
    /usr/lib/libodm.a
    filesize : 269244
    text start : d0043100
    text size : 12919
    data start : 32dbfe30
    date size : 55f4
    /usr/lib/libgair4.a
    filesize : 42672
    text start : d0145100
    text size : 284e
    data start : 32dc6d38
    date size : 880
    /usr/lib/libgaimisc.a
    filesize : 9270
    text start : d678d0f8
    text size : 7b4
    data start : 32dc8660
    date size : a4
    /usr/lib/libXext.a
    filesize : 492706
    text start : d6767100
    text size : 1f5d8
    data start : 32dc91f8
    date size : 373c
    /usr/lib/libICE.a
    filesize : 322947
    text start : d0a02100
    text size : 1624b
    data start : 32dcd088
    date size : 3bac
    /usr/lib/libSM.a
    filesize : 146658
    text start : d09f8100
    text size : 9ed3
    data start : 32dd1d68
    date size : 1324
    /usr/lib/libXt.a
    filesize : 1743571
    text start : d07b41c0
    text size : 64af3
    data start : 32dd44e8
    date size : c14c
    /usr/lib/libXm.a
    filesize : 11702307
    text start : d651b100
    text size : 24bc4c
    data start : 32de1f70
    date size : 40b00
    /usr/lib/libpthreads_compat.a
    filesize : 14611
    text start : d00ae0f8
    text size : 168d
    data start : 32e230f8
    date size : 0
    /usr/lib/libIM.a
    filesize : 68477
    text start : d013f100
    text size : 4f5f
    data start : 32e24df8
    date size : 84c
    /usr/lib/libX11.a
    filesize : 3799981
    text start : d05e5100
    text size : 100243
    data start : 32e26670
    date size : 25a58
    /usr/java_dev2/jre/bin/libawt.a
    filesize : 1921036
    text start : d63b1000
    text size : 169a94
    data start : 32e4d8b8
    date size : d67c
    /weblogic/lib/aix/libmuxer.so
    filesize : 19622
    text start : d62fa000
    text size : 3038
    data start : 32b2d400
    date size : 280
    /home/db2inst1/sqllib/lib/libdtcp.a
    filesize : 68305
    text start : d62ef000
    text size : ab71
    data start : 3198cde0
    date size : 218
    /home/db2inst1/sqllib/lib/libdb2e.a
    filesize : 37222294
    text start : d47d70b0
    text size : 1b17470
    data start : 317d90b0
    date size : 14c1d8
    /home/db2inst1/sqllib/lib/libdb2licm.a
    filesize : 1570603
    text start : d471e000
    text size : b81a8
    data start : 319260a8
    date size : 15600
    /home/db2inst1/sqllib/lib/libddcs.a
    filesize : 641048
    text start : d46a7000
    text size : 766c4
    data start : 317cd990
    date size : a798
    /home/db2inst1/sqllib/lib/libdb2lai.a
    filesize : 2486
    text start : d46a6000
    text size : 504
    data start : 317cc2dc
    date size : 2c
    /usr/lib/libpthreads.a
    filesize : 712882
    text start : d00b0000
    text size : 1ec94
    data start : 316a2000
    date size : 4008
    /home/db2inst1/sqllib/lib/libdb2.a
    filesize : 10465576
    text start : d3f1a0a8
    text size : 78be04
    data start : 316a70a8
    date size : 1226a8
    /usr/lpp/db2_06_01/lib/libdb2jdbc.so
    filesize : 157793
    text start : d3f00000
    text size : 19889
    data start : 317ca000
    date size : 1698
    /usr/java_dev2/jre/bin/libmath.a
    filesize : 65667
    text start : d3ef5000
    text size : aeb3
    data start : 30c60fa8
    date size : 3ac
    /usr/java_dev2/jre/bin/libnet.a
    filesize : 51723
    text start : d3bf4000
    text size : 7b57
    data start : 30c5f370
    date size : 338
    /usr/java_dev2/jre/bin/libjitc.a
    filesize : 2179758
    text start : d383c000
    text size : 1b4734
    data start : 302b1778
    date size : c8bc
    /usr/lib/libiconv.a
    filesize : 377832
    text start : d002e100
    text size : 13f3a
    data start : 30213da0
    date size : a574
    /usr/lib/libi18n.a
    filesize : 122601
    text start : d0026100
    text size : 78b4
    data start : 3021f4b0
    date size : 1124
    /usr/lib/nls/loc/ko_KR
    filesize : 1450075
    text start : d0322000
    text size : 161591
    data start : d0484130
    date size : 160b2c
    /usr/java_dev2/jre/sh/../bin/libzip.a
    filesize : 101623
    text start : d3829000
    text size : 126f3
    data start : 30070250
    date size : 1e90
    /usr/java_dev2/jre/sh/../bin/libjava.a
    filesize : 358899
    text start : d37f0000
    text size : 38d57
    data start : 30059180
    date size : 6078
    /usr/java_dev2/jre/sh/../bin/libhpi.a
    filesize : 81880
    text start : d37e5000
    text size : a17c
    data start : 30037b18
    date size : b2c
    /usr/java_dev2/jre/sh/../bin/libxhpi.a
    filesize : 11569
    text start : d37e3000
    text size : 14e9
    data start : 30036e40
    date size : 1b8
    /usr/java_dev2/jre/sh/../bin/classic/libjvm.a
    filesize : 1104523
    text start : d3729000
    text size : b9c85
    data start : 300113d0
    date size : 23d54
    /usr/lib/libdl.a
    filesize : 5248
    text start : d16cd0f8
    text size : 1e0
    data start : f03e30f8
    date size : 0
    /usr/lib/libbsd.a
    filesize : 62186
    text start : d012a4e0
    text size : 7deb
    data start : f011fb28
    date size : 1460
    /usr/lib/libpthreads.a
    filesize : 712882
    text start : d0004000
    text size : 2020a
    data start : f00c4000
    date size : 400c
    /usr/lib/libpthreads.a
    filesize : 712882
    text start : d0001000
    text size : 2290
    data start : f0082000
    date size : 41004
    /usr/lpp/xlC/lib/libC.a
    filesize : 3902821
    text start : d0af3d20
    text size : 67b6
    data start : f01bf720
    date size : cc8
    /usr/lpp/xlC/lib/libC.a
    filesize : 3902821
    text start : d0aeb540
    text size : 7a0e
    data start : f01bd740
    date size : a54
    /usr/lpp/xlC/lib/libC.a
    filesize : 3902821
    text start : d0a4e1c0
    text size : 9cad3
    data start : f01a93c0
    date size : 139d8
    /usr/lpp/xlC/lib/libC.a
    filesize : 3902821
    text start : d0a1e100
    text size : 2f891
    data start : f01a4d00
    date size : 421c
    /usr/lib/libcrypt.a
    filesize : 11167
    text start : d00250f8
    text size : 87a
    data start : f0081528
    date size : 13c
    /usr/lib/libc.a
    filesize : 6407694
    text start : d015f720
    text size : 1c2493
    data start : f0000820
    date size : 7f8f0
    "ListenThread" (TID:0x80032740, sys_thread_t:0x32069490, state:R, native
    ID:0x262a) prio=5
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:411)
    at java.net.ServerSocket.implAccept(ServerSocket.java:242)
    at java.net.ServerSocket.accept(ServerSocket.java:226)
    at weblogic.t3.srvr.ListenThread.run(ListenThread.java:286)
    ----- Native Stack -----
    sysAccept
    JVM_Accept
    Java_java_net_PlainSocketImpl_socketAccept
    mmisInvoke_O_VHelper
    entryCmp
    "NBExecuteThread-1" (TID:0x800327d8, sys_thread_t:0x312403a0, state:CW,
    native ID:0x2526) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "NBExecuteThread-0" (TID:0x80032848, sys_thread_t:0x3123be50, state:CW,
    native ID:0x2425) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "ExecuteThread-29" (TID:0x800328b8, sys_thread_t:0x311e8b10, state:MW,
    native ID:0x2324) prio=5
    ----- Native Stack -----
    allocObject
    pthread_mutex_lock
    cooperative_mutex_lock
    sysMonitorEnter
    lkMonitorEnter
    "ExecuteThread-28" (TID:0x80032928, sys_thread_t:0x3119f640, state:MW,
    native ID:0x2223) prio=5
    ----- Native Stack -----
    allocObject
    pthread_mutex_lock
    cooperative_mutex_lock
    sysMonitorEnter
    lkMonitorEnter
    "ExecuteThread-27" (TID:0x80032998, sys_thread_t:0x30c5ed70, state:R,
    native ID:0x2122) prio=5
    at weblogic.socket.PosixSocketMuxer.poll(Native Method)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:284)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
    ----- Native Stack -----
    unavailable - iar 124 not in text area
    "ExecuteThread-26" (TID:0x80032a08, sys_thread_t:0x30c5ea50, state:CW,
    native ID:0x2021) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 30038234 not in text area
    "ExecuteThread-25" (TID:0x80032a78, sys_thread_t:0x30c5e7b0, state:CW,
    native ID:0x1f20) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java(Compiled Code))
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java(Compiled
    Code))
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 30038234 not in text area
    "ExecuteThread-24" (TID:0x80032ae8, sys_thread_t:0x30c5b4e0, state:CW,
    native ID:0x1e1f) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java(Compiled Code))
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java(Compiled
    Code))
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 30036f1c not in text area
    "ExecuteThread-23" (TID:0x80032b58, sys_thread_t:0x309d81e0, state:CW,
    native ID:0x1d1e) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 30038234 not in text area
    "ExecuteThread-22" (TID:0x80032bc8, sys_thread_t:0x309d7ec0, state:CW,
    native ID:0x1c1d) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java(Compiled Code))
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java(Compiled
    Code))
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 30036f1c not in text area
    "ExecuteThread-21" (TID:0x80032c38, sys_thread_t:0x309d7ba0, state:R,
    native ID:0x1b1c) prio=5: pending=java.lang.NullPointerException
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    (Compiled Code))
    at
    weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
    l.java(Compiled Code))
    at
    weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
    l.java(Compiled Code))
    at
    weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContext
    Manager.java(Compiled Code))
    at
    weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java(Compi
    led Code))
    at
    weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java(Compiled
    Code))
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
    ----- Native Stack -----
    unavailable - iar 1 not in text area
    "ExecuteThread-20" (TID:0x80032ca8, sys_thread_t:0x309d5870, state:CW,
    native ID:0x1a1b) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java(Compiled Code))
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java(Compiled
    Code))
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 300b5da0 not in text area
    "ExecuteThread-19" (TID:0x80032d18, sys_thread_t:0x309d2580, state:CW,
    native ID:0x191a) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java(Compiled Code))
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java(Compiled
    Code))
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 30038234 not in text area
    "ExecuteThread-18" (TID:0x80032d88, sys_thread_t:0x309cf290, state:CW,
    native ID:0x1819) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java(Compiled Code))
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java(Compiled
    Code))
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 30036f1c not in text area
    "ExecuteThread-17" (TID:0x80032df8, sys_thread_t:0x309cbfa0, state:CW,
    native ID:0x1718) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 30038234 not in text area
    "ExecuteThread-16" (TID:0x80032e68, sys_thread_t:0x309c8cb0, state:CW,
    native ID:0x1617) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java(Compiled Code))
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java(Compiled
    Code))
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 30038234 not in text area
    "ExecuteThread-15" (TID:0x80032ed8, sys_thread_t:0x309c59c0, state:CW,
    native ID:0x1516) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java(Compiled Code))
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java(Compiled
    Code))
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "ExecuteThread-14" (TID:0x80032f48, sys_thread_t:0x309c26d0, state:CW,
    native ID:0x1415) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "ExecuteThread-13" (TID:0x80032fb8, sys_thread_t:0x309bf3e0, state:CW,
    native ID:0x1314) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "ExecuteThread-12" (TID:0x80033028, sys_thread_t:0x309bc170, state:CW,
    native ID:0x1213) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "ExecuteThread-11" (TID:0x80033098, sys_thread_t:0x309b8ea0, state:CW,
    native ID:0x1112) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "ExecuteThread-10" (TID:0x80033108, sys_thread_t:0x309b5c50, state:CW,
    native ID:0x1011) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "ExecuteThread-9" (TID:0x80033178, sys_thread_t:0x309b2a00, state:CW,
    native ID:0xf10) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "ExecuteThread-8" (TID:0x800331e8, sys_thread_t:0x309af7b0, state:CW,
    native ID:0xe0f) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "ExecuteThread-7" (TID:0x80033258, sys_thread_t:0x30996c90, state:CW,
    native ID:0xd0e) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar ffffffff not in text area
    "ExecuteThread-6" (TID:0x800332c8, sys_thread_t:0x30996950, state:CW,
    native ID:0xc0d) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "ExecuteThread-5" (TID:0x80033338, sys_thread_t:0x309966b0, state:CW,
    native ID:0xb0c) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "ExecuteThread-4" (TID:0x800333a8, sys_thread_t:0x30996430, state:CW,
    native ID:0xa0b) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar ffffffff not in text area
    "ExecuteThread-3" (TID:0x80033418, sys_thread_t:0x3098ff40, state:CW,
    native ID:0x90a) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "ExecuteThread-2" (TID:0x80033488, sys_thread_t:0x3098fcc0, state:CW,
    native ID:0x809) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "ExecuteThread-1" (TID:0x800334f8, sys_thread_t:0x3098fa40, state:CW,
    native ID:0x708) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "ExecuteThread-0" (TID:0x80033568, sys_thread_t:0x3098cca0, state:CW,
    native ID:0x607) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "TimeEventGenerator" (TID:0x800335d8, sys_thread_t:0x308a41e0, state:CW,
    native ID:0x506) prio=5
    at java.lang.Object.wait(Native Method)
    at weblogic.time.common.internal.TimeTable.snooze(TimeTable.java:279)
    at
    weblogic.time.common.internal.TimeEventGenerator.run(TimeEventGenerator.java
    :141)
    at java.lang.Thread.run(Thread.java:481)
    ----- Native Stack -----
    gettimeofday
    pthreadevent_wait
    condwait_local
    condwait
    pthread_cond_timedwait
    condvarTimedWait
    sysMonitorWait
    lkMonitorWait
    JVM_MonitorWait
    "SpinnerRandomSource" (TID:0x80033618, sys_thread_t:0x3087cdd0,
    state:CW, native ID:0x405) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at
    weblogic.security.SpinnerThread.stopSpinning(SpinnerRandomBitsSource.java:10
    4)
    at weblogic.security.SpinnerThread.run(SpinnerRandomBitsSource.java:121)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "Finalizer" (TID:0x80033728, sys_thread_t:0x300d1f30, state:CW, native
    ID:0x304) prio=8
    at java.lang.Object.wait(Native Method)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:114)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:129)
    at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:176)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "Reference Handler" (TID:0x80033768, sys_thread_t:0x300cc300, state:CW,
    native ID:0x203) prio=10
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:116)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "Signal dispatcher" (TID:0x800337a8, sys_thread_t:0x300c7670, state:CW,
    native ID:0x102) prio=5
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "main" (TID:0x800337e8, sys_thread_t:0x3000c390, state:CW, native
    ID:0x1) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.t3.srvr.T3Srvr.waitForDeath(T3Srvr.java:1862)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.Server.startServerDynamically(Server.java:139)
    at weblogic.Server.main(Server.java:92)
    at weblogic.Server.main(Server.java:58)
    ----- Native Stack -----
    unavailable - iar 4 not in text area
    Monitor pool info:
    Initial monitor count: 32
    Minimum number of free monitors before expansion: 5
    Pool will next be expanded by: 36
    Current total number of monitors: 72
    Current number of free monitors: 15
    Monitor Pool Dump (inflated object-monitors):
    sys_mon_t:0x3000a9b8 infl_mon_t: 0x3000a628:
    java.lang.ref.Reference$Lock@8003B760/8003B768: <unowned>
    Waiting to be notified:
    "Reference Handler" (0x300cc300)
    sys_mon_t:0x3000aa38 infl_mon_t:

    Hi!... I'm running WLS5.1 SP9 under IBM AIX4.3.3 with JDK1.2.2(IBM) and
    Connecting with DB2...
    Starting WLS successfully, in later WLS crashes and Core Dump.
    See below, WLS dump message....Why this problem is occurred?
    Is JDK problem? or WLS or AIX4.3.3..
    Fri Sep 21 11:12:58 2001
    SIGILL received at 1 in . Processing terminated.
    Current Thread Details
    "ExecuteThread-21" (TID:0x80032c38, sys_thread_t:0x309d7ba0, state:R,
    native ID:0x1b1c) prio=5: pending=java.lang.NullPointerException
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    (Compiled Code))
    at
    weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
    l.java(Compiled Code))
    at
    weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
    l.java(Compiled Code))
    at
    weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContext
    Manager.java(Compiled Code))
    at
    weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java(Compi
    led Code))
    at
    weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java(Compiled
    Code))
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
    ----- Native Stack -----
    unavailable - iar 1 not in text area
    J2RE 1.2.2 IBM build ca122-19991217
    Operating Environment
    Host : ecedi:10.3.101.11
    OS Level : AIX 4.3.3.0
    Processors -
    Architecture : POWER_PC (impl: unknown, ver: unknown)
    How Many : 6
    Enabled : 6
    User Limits (in bytes except for NOFILE and NPROC) -
    RLIMIT_FSIZE : infinity
    RLIMIT_DATA : 1342177280
    RLIMIT_STACK : infinity
    RLIMIT_CORE : 1073741312
    RLIMIT_NOFILE : 4000
    NPROC(max) : 1024
    Page Space (in blocks) -
    /dev/hd6: size=393216, free=152532
    /dev/paging00: size=393216, free=153025
    Application Environment
    Signal Handlers -
    SIGHUP : ignored
    SIGINT : ignored
    SIGQUIT : intrDispatchMD (libhpi.a)
    SIGILL : intrDispatchMD (libhpi.a)
    SIGTRAP : unknown handler (libjitc.a)
    SIGABRT : intrDispatchMD (libhpi.a)
    SIGEMT : intrDispatchMD (libhpi.a)
    SIGFPE : intrDispatchMD (libhpi.a)
    SIGBUS : intrDispatchMD (libhpi.a)
    SIGSEGV : intrDispatchMD (libhpi.a)
    SIGSYS : intrDispatchMD (libhpi.a)
    SIGPIPE : ignored
    SIGUSR1 : sigusr1Handler (libhpi.a)
    SIGUSR2 : unknown handler (libjitc.a)
    Environment Variables -
    _=/usr/java_dev2/jre/sh/../bin/java
    CICSREGION=ecedi
    LANG=ko_KR
    LOGIN=weblogic
    IMQCONFIGCL=/etc/IMNSearch/dbcshelp
    AIX_LOCKKEY=38
    ORA_NLS_CHARACTERSET_CONVERSION=NO_CHARACTER_SET_CONVERSION
    PATH=.:/usr/java_dev2/jre/sh:/usr/java_dev2/sh:/usr/bin:/etc:/usr/sbin:/usr/
    ucb:/weblogic/bin:/usr/bin/X11:/sbin:/usr/vac/bin:/usr/lpp/cics/bin:/oracle/
    bin:/shadow/bin:/usr/local/bin
    NLS_LANG=AMERICAN_AMERICA.KO16KSC5601
    DB2DIR=/usr/lpp/db2_06_01
    ORACLE_BASE=/oracle
    JAVACLASSPATH=:./lib/weblogic510sp9boot.jar:./classes/boot:./db2lib/db2java.
    zip:./db2lib/runtime.zip:./eval/cloudscape/lib/cloudscape.jar
    LC__FASTMSG=true
    CGI_DIRECTORY=/var/docsearch/cgi-bin
    IMQCONFIGSRV=/etc/IMNSearch
    CLASSPATH=.:/weblogic/classes/:/usr/jdk_base/lib/classes.zip:/usr/java_dev2/
    jre/lib/rt.jar:/usr/java_dev2/jre/lib/:/usr/java_dev2/lib/tools.jar:/weblogi
    c/lib/weblogicaux.jar:/weblogic/lib/weblogic510sp9.jar:/oracle/jdbc/lib/clas
    ses12.zip:/oracle/jdbc/lib/classes111.zip:/oracle/jdbc/lib/nls_charset11.zip
    :/oracle/lib/servlet.jar:/oracle/xdk/lib/xmlparserv2.jar:/oracle/xdk/lib/ora
    clexsql.jar:/oracle/xdk/lib/xmlplsql.jar:/oracle/xdk/lib/jdev-rt.zip.jar:/or
    acle/rdbms/jlib/xsu12.jar:/oracle/xdk/lib:/weblogic/db2lib/db2java.zip:/webl
    ogic/db2lib/runtime.zip:/weblogic/db2lib/sqlj.zip:/weblogic/xecure/xecureweb
    _ver4/lib/java/weblogic5/:/app/ecxml/ecxml.jar
    ENCINA_BIND_FILE=/var/cics_servers/server_bindings
    LOGNAME=weblogic
    MAIL=/usr/spool/mail/weblogic
    CICSPATH=/usr/lpp/cics
    ORACLE_SID=EDI
    LOCPATH=/usr/lib/nls/loc
    AIX_LOCKBITS=00
    EPC_DISABLED=TRUE
    DOCUMENT_SERVER_MACHINE_NAME=localhost
    USER=weblogic
    JRE_HOME=/usr/java_dev2/jre
    NLS_DATE_FORMAT=YYYY-MM-DD
    AUTHSTATE=compat
    LC_MESSAGES=ko_KR
    DCE_USE_WCHAR_NAMES=1
    DISPLAY=:0.0
    SHELL=/bin/ksh
    ODMDIR=/etc/objrepos
    JAVA_HOME=/usr/java_dev2
    JAVAHOME=/usr/java_dev2/jre/sh/..
    JDK_HOME=/usr/java_dev2
    DOCUMENT_SERVER_PORT=49213
    ORA_NLS33=/oracle/ocommon/nls/admin/data
    AIX_LOCKMASK=08
    XFILESEARCHPATH=/usr/java_dev2/jre/sh/../lib/locale/%L/%T/%N%S:
    HOME=/weblogic
    WEBLOGICCLASSPATH=:./lib/weblogic510sp9.jar:./lib/weblogicaux.jar:./license:
    ./classes:./slib/scjd11.jar:/oracle/jdbc/lib/classes12.zip:/oracle/jdbc/lib/
    classes111.zip:/weblogic/xecure/xecureweb_ver4/lib/java/weblogic5:/weblogic/
    xecure/xecureweb_ver4/demo/servlet/class
    DB2INSTANCE=db2inst1
    TERM=vt100
    LD_LIBRARY_PATH=/epilot/shadow:/epilot/shadow/lib:/usr/jdk_base/lib:/epilot
    MAILMSG=[YOU HAVE NEW MAIL]
    ORACLE_HOME=/oracle
    NEONTRACE=LOCKTHREAD
    PWD=/weblogic
    DOCUMENT_DIRECTORY=/usr/docsearch/html
    CICS_SFS_SERVER=/.:/cics/sfs/ecedi
    TZ=KORST-9
    WL_HOME=/weblogic
    AIXTHREAD_SCOPE=S
    INSTHOME=/home/db2inst1
    A__z=! LOGNAME
    LIBPATH=/usr/java_dev2/jre/sh/../bin:/usr/java_dev2/jre/sh/../bin/classic::/
    home/db2inst1/sqllib/lib:/weblogic/lib/aix:/weblogic/slib:/weblogic/slib:/us
    r/shadow/lib:/epilot/shadow/lib:/epilot/shadow:/epilot:/usr/local/lib:/usr/j
    ava_dev2/jre/bin/classic:/usr/java_dev2/jre/bin:/weblogic/xecure/xecureweb_v
    er4/lib/java/jni
    NLSPATH=/usr/lib/nls/msg/%L/%N:/usr/lib/nls/msg/%L/%N.cat:/usr/lib/nls/msg/%
    L/%N:/usr/lib/nls/msg/prime/%N
    Loaded Libraries (sizes in bytes)
    /usr/lib/libXtst.a
    filesize : 79981
    text start : d6787100
    text size : 563e
    data start : 32dbe480
    date size : 4b4
    /usr/lib/libodm.a
    filesize : 269244
    text start : d0043100
    text size : 12919
    data start : 32dbfe30
    date size : 55f4
    /usr/lib/libgair4.a
    filesize : 42672
    text start : d0145100
    text size : 284e
    data start : 32dc6d38
    date size : 880
    /usr/lib/libgaimisc.a
    filesize : 9270
    text start : d678d0f8
    text size : 7b4
    data start : 32dc8660
    date size : a4
    /usr/lib/libXext.a
    filesize : 492706
    text start : d6767100
    text size : 1f5d8
    data start : 32dc91f8
    date size : 373c
    /usr/lib/libICE.a
    filesize : 322947
    text start : d0a02100
    text size : 1624b
    data start : 32dcd088
    date size : 3bac
    /usr/lib/libSM.a
    filesize : 146658
    text start : d09f8100
    text size : 9ed3
    data start : 32dd1d68
    date size : 1324
    /usr/lib/libXt.a
    filesize : 1743571
    text start : d07b41c0
    text size : 64af3
    data start : 32dd44e8
    date size : c14c
    /usr/lib/libXm.a
    filesize : 11702307
    text start : d651b100
    text size : 24bc4c
    data start : 32de1f70
    date size : 40b00
    /usr/lib/libpthreads_compat.a
    filesize : 14611
    text start : d00ae0f8
    text size : 168d
    data start : 32e230f8
    date size : 0
    /usr/lib/libIM.a
    filesize : 68477
    text start : d013f100
    text size : 4f5f
    data start : 32e24df8
    date size : 84c
    /usr/lib/libX11.a
    filesize : 3799981
    text start : d05e5100
    text size : 100243
    data start : 32e26670
    date size : 25a58
    /usr/java_dev2/jre/bin/libawt.a
    filesize : 1921036
    text start : d63b1000
    text size : 169a94
    data start : 32e4d8b8
    date size : d67c
    /weblogic/lib/aix/libmuxer.so
    filesize : 19622
    text start : d62fa000
    text size : 3038
    data start : 32b2d400
    date size : 280
    /home/db2inst1/sqllib/lib/libdtcp.a
    filesize : 68305
    text start : d62ef000
    text size : ab71
    data start : 3198cde0
    date size : 218
    /home/db2inst1/sqllib/lib/libdb2e.a
    filesize : 37222294
    text start : d47d70b0
    text size : 1b17470
    data start : 317d90b0
    date size : 14c1d8
    /home/db2inst1/sqllib/lib/libdb2licm.a
    filesize : 1570603
    text start : d471e000
    text size : b81a8
    data start : 319260a8
    date size : 15600
    /home/db2inst1/sqllib/lib/libddcs.a
    filesize : 641048
    text start : d46a7000
    text size : 766c4
    data start : 317cd990
    date size : a798
    /home/db2inst1/sqllib/lib/libdb2lai.a
    filesize : 2486
    text start : d46a6000
    text size : 504
    data start : 317cc2dc
    date size : 2c
    /usr/lib/libpthreads.a
    filesize : 712882
    text start : d00b0000
    text size : 1ec94
    data start : 316a2000
    date size : 4008
    /home/db2inst1/sqllib/lib/libdb2.a
    filesize : 10465576
    text start : d3f1a0a8
    text size : 78be04
    data start : 316a70a8
    date size : 1226a8
    /usr/lpp/db2_06_01/lib/libdb2jdbc.so
    filesize : 157793
    text start : d3f00000
    text size : 19889
    data start : 317ca000
    date size : 1698
    /usr/java_dev2/jre/bin/libmath.a
    filesize : 65667
    text start : d3ef5000
    text size : aeb3
    data start : 30c60fa8
    date size : 3ac
    /usr/java_dev2/jre/bin/libnet.a
    filesize : 51723
    text start : d3bf4000
    text size : 7b57
    data start : 30c5f370
    date size : 338
    /usr/java_dev2/jre/bin/libjitc.a
    filesize : 2179758
    text start : d383c000
    text size : 1b4734
    data start : 302b1778
    date size : c8bc
    /usr/lib/libiconv.a
    filesize : 377832
    text start : d002e100
    text size : 13f3a
    data start : 30213da0
    date size : a574
    /usr/lib/libi18n.a
    filesize : 122601
    text start : d0026100
    text size : 78b4
    data start : 3021f4b0
    date size : 1124
    /usr/lib/nls/loc/ko_KR
    filesize : 1450075
    text start : d0322000
    text size : 161591
    data start : d0484130
    date size : 160b2c
    /usr/java_dev2/jre/sh/../bin/libzip.a
    filesize : 101623
    text start : d3829000
    text size : 126f3
    data start : 30070250
    date size : 1e90
    /usr/java_dev2/jre/sh/../bin/libjava.a
    filesize : 358899
    text start : d37f0000
    text size : 38d57
    data start : 30059180
    date size : 6078
    /usr/java_dev2/jre/sh/../bin/libhpi.a
    filesize : 81880
    text start : d37e5000
    text size : a17c
    data start : 30037b18
    date size : b2c
    /usr/java_dev2/jre/sh/../bin/libxhpi.a
    filesize : 11569
    text start : d37e3000
    text size : 14e9
    data start : 30036e40
    date size : 1b8
    /usr/java_dev2/jre/sh/../bin/classic/libjvm.a
    filesize : 1104523
    text start : d3729000
    text size : b9c85
    data start : 300113d0
    date size : 23d54
    /usr/lib/libdl.a
    filesize : 5248
    text start : d16cd0f8
    text size : 1e0
    data start : f03e30f8
    date size : 0
    /usr/lib/libbsd.a
    filesize : 62186
    text start : d012a4e0
    text size : 7deb
    data start : f011fb28
    date size : 1460
    /usr/lib/libpthreads.a
    filesize : 712882
    text start : d0004000
    text size : 2020a
    data start : f00c4000
    date size : 400c
    /usr/lib/libpthreads.a
    filesize : 712882
    text start : d0001000
    text size : 2290
    data start : f0082000
    date size : 41004
    /usr/lpp/xlC/lib/libC.a
    filesize : 3902821
    text start : d0af3d20
    text size : 67b6
    data start : f01bf720
    date size : cc8
    /usr/lpp/xlC/lib/libC.a
    filesize : 3902821
    text start : d0aeb540
    text size : 7a0e
    data start : f01bd740
    date size : a54
    /usr/lpp/xlC/lib/libC.a
    filesize : 3902821
    text start : d0a4e1c0
    text size : 9cad3
    data start : f01a93c0
    date size : 139d8
    /usr/lpp/xlC/lib/libC.a
    filesize : 3902821
    text start : d0a1e100
    text size : 2f891
    data start : f01a4d00
    date size : 421c
    /usr/lib/libcrypt.a
    filesize : 11167
    text start : d00250f8
    text size : 87a
    data start : f0081528
    date size : 13c
    /usr/lib/libc.a
    filesize : 6407694
    text start : d015f720
    text size : 1c2493
    data start : f0000820
    date size : 7f8f0
    "ListenThread" (TID:0x80032740, sys_thread_t:0x32069490, state:R, native
    ID:0x262a) prio=5
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:411)
    at java.net.ServerSocket.implAccept(ServerSocket.java:242)
    at java.net.ServerSocket.accept(ServerSocket.java:226)
    at weblogic.t3.srvr.ListenThread.run(ListenThread.java:286)
    ----- Native Stack -----
    sysAccept
    JVM_Accept
    Java_java_net_PlainSocketImpl_socketAccept
    mmisInvoke_O_VHelper
    entryCmp
    "NBExecuteThread-1" (TID:0x800327d8, sys_thread_t:0x312403a0, state:CW,
    native ID:0x2526) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "NBExecuteThread-0" (TID:0x80032848, sys_thread_t:0x3123be50, state:CW,
    native ID:0x2425) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "ExecuteThread-29" (TID:0x800328b8, sys_thread_t:0x311e8b10, state:MW,
    native ID:0x2324) prio=5
    ----- Native Stack -----
    allocObject
    pthread_mutex_lock
    cooperative_mutex_lock
    sysMonitorEnter
    lkMonitorEnter
    "ExecuteThread-28" (TID:0x80032928, sys_thread_t:0x3119f640, state:MW,
    native ID:0x2223) prio=5
    ----- Native Stack -----
    allocObject
    pthread_mutex_lock
    cooperative_mutex_lock
    sysMonitorEnter
    lkMonitorEnter
    "ExecuteThread-27" (TID:0x80032998, sys_thread_t:0x30c5ed70, state:R,
    native ID:0x2122) prio=5
    at weblogic.socket.PosixSocketMuxer.poll(Native Method)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:284)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
    ----- Native Stack -----
    unavailable - iar 124 not in text area
    "ExecuteThread-26" (TID:0x80032a08, sys_thread_t:0x30c5ea50, state:CW,
    native ID:0x2021) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 30038234 not in text area
    "ExecuteThread-25" (TID:0x80032a78, sys_thread_t:0x30c5e7b0, state:CW,
    native ID:0x1f20) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java(Compiled Code))
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java(Compiled
    Code))
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 30038234 not in text area
    "ExecuteThread-24" (TID:0x80032ae8, sys_thread_t:0x30c5b4e0, state:CW,
    native ID:0x1e1f) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java(Compiled Code))
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java(Compiled
    Code))
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 30036f1c not in text area
    "ExecuteThread-23" (TID:0x80032b58, sys_thread_t:0x309d81e0, state:CW,
    native ID:0x1d1e) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 30038234 not in text area
    "ExecuteThread-22" (TID:0x80032bc8, sys_thread_t:0x309d7ec0, state:CW,
    native ID:0x1c1d) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java(Compiled Code))
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java(Compiled
    Code))
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 30036f1c not in text area
    "ExecuteThread-21" (TID:0x80032c38, sys_thread_t:0x309d7ba0, state:R,
    native ID:0x1b1c) prio=5: pending=java.lang.NullPointerException
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    (Compiled Code))
    at
    weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
    l.java(Compiled Code))
    at
    weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
    l.java(Compiled Code))
    at
    weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContext
    Manager.java(Compiled Code))
    at
    weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java(Compi
    led Code))
    at
    weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java(Compiled
    Code))
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
    ----- Native Stack -----
    unavailable - iar 1 not in text area
    "ExecuteThread-20" (TID:0x80032ca8, sys_thread_t:0x309d5870, state:CW,
    native ID:0x1a1b) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java(Compiled Code))
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java(Compiled
    Code))
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 300b5da0 not in text area
    "ExecuteThread-19" (TID:0x80032d18, sys_thread_t:0x309d2580, state:CW,
    native ID:0x191a) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java(Compiled Code))
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java(Compiled
    Code))
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 30038234 not in text area
    "ExecuteThread-18" (TID:0x80032d88, sys_thread_t:0x309cf290, state:CW,
    native ID:0x1819) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java(Compiled Code))
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java(Compiled
    Code))
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 30036f1c not in text area
    "ExecuteThread-17" (TID:0x80032df8, sys_thread_t:0x309cbfa0, state:CW,
    native ID:0x1718) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 30038234 not in text area
    "ExecuteThread-16" (TID:0x80032e68, sys_thread_t:0x309c8cb0, state:CW,
    native ID:0x1617) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java(Compiled Code))
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java(Compiled
    Code))
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 30038234 not in text area
    "ExecuteThread-15" (TID:0x80032ed8, sys_thread_t:0x309c59c0, state:CW,
    native ID:0x1516) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java(Compiled Code))
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java(Compiled
    Code))
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "ExecuteThread-14" (TID:0x80032f48, sys_thread_t:0x309c26d0, state:CW,
    native ID:0x1415) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "ExecuteThread-13" (TID:0x80032fb8, sys_thread_t:0x309bf3e0, state:CW,
    native ID:0x1314) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "ExecuteThread-12" (TID:0x80033028, sys_thread_t:0x309bc170, state:CW,
    native ID:0x1213) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "ExecuteThread-11" (TID:0x80033098, sys_thread_t:0x309b8ea0, state:CW,
    native ID:0x1112) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "ExecuteThread-10" (TID:0x80033108, sys_thread_t:0x309b5c50, state:CW,
    native ID:0x1011) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "ExecuteThread-9" (TID:0x80033178, sys_thread_t:0x309b2a00, state:CW,
    native ID:0xf10) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "ExecuteThread-8" (TID:0x800331e8, sys_thread_t:0x309af7b0, state:CW,
    native ID:0xe0f) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "ExecuteThread-7" (TID:0x80033258, sys_thread_t:0x30996c90, state:CW,
    native ID:0xd0e) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar ffffffff not in text area
    "ExecuteThread-6" (TID:0x800332c8, sys_thread_t:0x30996950, state:CW,
    native ID:0xc0d) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "ExecuteThread-5" (TID:0x80033338, sys_thread_t:0x309966b0, state:CW,
    native ID:0xb0c) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "ExecuteThread-4" (TID:0x800333a8, sys_thread_t:0x30996430, state:CW,
    native ID:0xa0b) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar ffffffff not in text area
    "ExecuteThread-3" (TID:0x80033418, sys_thread_t:0x3098ff40, state:CW,
    native ID:0x90a) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "ExecuteThread-2" (TID:0x80033488, sys_thread_t:0x3098fcc0, state:CW,
    native ID:0x809) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "ExecuteThread-1" (TID:0x800334f8, sys_thread_t:0x3098fa40, state:CW,
    native ID:0x708) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "ExecuteThread-0" (TID:0x80033568, sys_thread_t:0x3098cca0, state:CW,
    native ID:0x607) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "TimeEventGenerator" (TID:0x800335d8, sys_thread_t:0x308a41e0, state:CW,
    native ID:0x506) prio=5
    at java.lang.Object.wait(Native Method)
    at weblogic.time.common.internal.TimeTable.snooze(TimeTable.java:279)
    at
    weblogic.time.common.internal.TimeEventGenerator.run(TimeEventGenerator.java
    :141)
    at java.lang.Thread.run(Thread.java:481)
    ----- Native Stack -----
    gettimeofday
    pthreadevent_wait
    condwait_local
    condwait
    pthread_cond_timedwait
    condvarTimedWait
    sysMonitorWait
    lkMonitorWait
    JVM_MonitorWait
    "SpinnerRandomSource" (TID:0x80033618, sys_thread_t:0x3087cdd0,
    state:CW, native ID:0x405) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at
    weblogic.security.SpinnerThread.stopSpinning(SpinnerRandomBitsSource.java:10
    4)
    at weblogic.security.SpinnerThread.run(SpinnerRandomBitsSource.java:121)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "Finalizer" (TID:0x80033728, sys_thread_t:0x300d1f30, state:CW, native
    ID:0x304) prio=8
    at java.lang.Object.wait(Native Method)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:114)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:129)
    at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:176)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "Reference Handler" (TID:0x80033768, sys_thread_t:0x300cc300, state:CW,
    native ID:0x203) prio=10
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:116)
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "Signal dispatcher" (TID:0x800337a8, sys_thread_t:0x300c7670, state:CW,
    native ID:0x102) prio=5
    ----- Native Stack -----
    unavailable - iar 0 not in text area
    "main" (TID:0x800337e8, sys_thread_t:0x3000c390, state:CW, native
    ID:0x1) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    at weblogic.t3.srvr.T3Srvr.waitForDeath(T3Srvr.java:1862)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.Server.startServerDynamically(Server.java:139)
    at weblogic.Server.main(Server.java:92)
    at weblogic.Server.main(Server.java:58)
    ----- Native Stack -----
    unavailable - iar 4 not in text area
    Monitor pool info:
    Initial monitor count: 32
    Minimum number of free monitors before expansion: 5
    Pool will next be expanded by: 36
    Current total number of monitors: 72
    Current number of free monitors: 15
    Monitor Pool Dump (inflated object-monitors):
    sys_mon_t:0x3000a9b8 infl_mon_t: 0x3000a628:
    java.lang.ref.Reference$Lock@8003B760/8003B768: <unowned>
    Waiting to be notified:
    "Reference Handler" (0x300cc300)
    sys_mon_t:0x3000aa38 infl_mon_t:

  • Concurrent report ending in warning with status 127 (post upgrade to R12.1.

    Hi,
    We ran a concurrent report with Print options set for a custom report.
    The report is ending in warning with the below error:
    ------------- 1) PRINT   -------------
    Printing output file.
    Request ID : 356879180      
    Number of copies : 1      
    Printer : ABSC_5WCC_HP9
    /bin/sh: jforasnd: not found.
    APP-FND-00500: AFPPRN received a return code of failure from routine FDUPRN. Program exited with status 127
    Cause: AFPPRN received a return code of failure from the OSD routine FDUPRN. Program exited with status 127.
    Action: Review your concurrent request log file for more detailed information.
    Please suggest how to overcome this error.
    Regards
    Siva G

    We ran a concurrent report with Print options set for a custom report.What is the type of this report?
    The report is ending in warning with the below error:Can you find any details in the OPP/CM log files?
    /bin/sh: jforasnd: not found.Is jforasnd used in your report? Were you able to compile the report from Reports Builder with no issues?
    APP-FND-00500: AFPPRN received a return code of failure from routine FDUPRN. Program exited with status 127
    Cause: AFPPRN received a return code of failure from the OSD routine FDUPRN. Program exited with status 127.
    Action: Review your concurrent request log file for more detailed information.This is a generic error, so if none of the above helps please enable trace/debug, submit the request again and post the contents of the log file here.
    Thanks,
    Hussein

  • Java webdynpro development with jdk1.5.7

    hi,
    I have installed the CE server and the Netweaver Developer Studio, to try some java developments.
    I was working with jdk1.5.7, but the server has only version 1.5.017.
    Is it possible to upgrade the java in the server, so it can work with the current jdk version?
    thx,
    Erik

    hi again,
    I could solve the problem:
    in the developer studio you can chose to compile for lower versions.
    To do so, go to windows>preferences>java-->compiler and chose compliance level 5 or 1.4(it was on 6), and now the development works fine.

  • Weblogic 5.1 SP8 with JDK1.3 installed as an NT Service Fails

    I've just completed the installation of sp8 of Weblogic Server. I used wlconfig to set the environment parameters as outlined in the sp8_readme.html file. I have Weblogic Server installed as a NT Service. When I start the service with Weblogic configured to use JDK1.2 it works just fine. However, when I switch Weblogic to use the JDK1.3, using wlconfig, I receive an Application error stating:"The instruction at "0x04e4d0d6" referenced memory at "0x00000000". The memory could not be written."If I start the WEblogic Server from the command line and configure the environment to use the JDK1.3, everything works fine. It's only when you are trying to run the Weblogic server as an NT Service.Any suggestions?

    I don't think this problem was specific at all to SP8 - I ran into
    this with an earlier version of the fixpack and just decided to run it
    from the startweblogic.cmd file, instead. I never did try to set the
    compiler to none as you did. BTW - it wasn't just as a service that
    this problem existed for me - it also happened if you used the program
    shortcut to start the server - i.e. any way you started it that used
    those registry settings would experience the problem.
    How has the stability been under 1.3 - have you seen any problems with
    that? I was running with 1.3 and the Sun Server Hotspot VM and the
    server kept crashing after just a few pages being displayed from my
    site. This problem could have also been the -noclassgc switch though
    since with that switch I was still seeing the problem under 1.2 - just
    not as fast.
    On Tue, 23 Jan 2001 09:49:05 -0800, "Christopher A. Mathrusse"
    <[email protected]> wrote:
    Seeing as no one has come up with a solution for me, I thought I would at
    least post the fix. If you use JDK1.3 with WLS and are running the server as
    an NT Service, you will need to set your JAVA_HOME value to the JDK1.3 using
    wlconfig, and then set your java.compiler=NONE using
    wlconfig -Djava.copiler=NONE. After completing these changes, WLS will run
    as a service with JDK1.3.
    "Christopher Mathrusse" <[email protected]> wrote in
    message news:[email protected]...
    I've just completed the installation of sp8 of Weblogic Server. I usedwlconfig to set the environment parameters as outlined in the
    sp8_readme.html file. I have Weblogic Server installed as a NT Service. When
    I start the service with Weblogic configured to use JDK1.2 it works just
    fine. However, when I switch Weblogic to use the JDK1.3, using wlconfig, I
    receive an Application error stating:"The instruction at "0x04e4d0d6"
    referenced memory at "0x00000000". The memory could not be written."If I
    start the WEblogic Server from the command line and configure the
    environment to use the JDK1.3, everything works fine. It's only when you are
    trying to run the Weblogic server as an NT Service.Any suggestions?

Maybe you are looking for

  • Why can't I copy contacts' email address from their name card in lync 2010

    so here is the issue I have, when I need to copy someone's email addresses or their phone numbers, normally I will find them on lync, move the cursor on them, and their name card will show up, then I move cursor to their email address or their phone

  • HP Scan 3 software not working with MacOS 10.9 Mavericks

    I just bought a new iMac to replace my old iMac and updated toe mew Mac to 10.9 Mavwericks.  Now my HP Scan 3 software does not work and there is no update for this software that I can find.  Can anyone help getting updated HP scanning software to us

  • LR won't load photos from Grid view

    Had this problem in 1.2 - uploaded 1.3 but no change. I just loaded over 2000 pictures into LR from a vacation, and now, when I click on a picture from the Grid in Library mode to try to open it, it hangs up, on the bottom of the screen the message "

  • Making an album with singles of various artists.

    I have Googled this query but so far I have not had any luck. I have a number of singles from various artists bought through amazon mp3 that I would like to merge into one Album of singles. I have changed all their Album names to Singles and ticked t

  • Openjdk6 in /usr/lib ?

    What is the logic behind that ? Why not use previous location: /opt/java ?