ADF Handling Unexpected Errors

Hi All,
I have a question related to ADF exception handling.
Imagine a button on a ADF jspx page which has a binding to a Application Module method. If the AM method throws a Null Pointer Exception, the normal behavior we notice is that
error message is shown in a pop up to the user.
Our application requirements is that we need to redirect the user to a global error page with a message to contact help desk for any unexpected error.
My question is how to we redirect user to a error page if any unexpected errors occurs in Model project/AM instead of exposing the error to the client in a popup.

Hi Timo,
The link you gave was helpful.
I did the following:
1) We Created a Class that extends DCErrorHandlerImpl to handle the model exceptions. In the reportException, we check if the errors can be handled by app, if not we re throw the exception.
        throw (NullPointerException)e.getCause(); // Inside the report Exception Method..
2) The exception gets propagated to the Controller layer. We have  written a class that extends oracle.adf.view.rich.context.ExceptionHandler. Inside the exception handler class, we check if exception occurred in RENDER_RESPONSE phase, if yes, we do a java script redirect to error page. For any other phase, we rethrow the exception.
3) The exceptions that are re thrown from the ExceptionHandler class are propagated to the method exception handler defined in adfc-config.xml and finally user is redirected to a error page.
The above approach works fine for different scenarios.
But only in case of a bounded task flow running as a region, step 3 does not work fine.
After step2, we see the following in console and user see a java script popup. The exception does not get propagated to the method handler in the adfc-config.xml.
I did not really understand why the exception does not reach the method call activity in adfc.
<LifecycleImpl> <_handleException> ADF_FACES-60098:Faces lifecycle receives unhandled exceptions in phase INVOKE_APPLICATION 5

Similar Messages

  • Handling unexpected errors/situations in an ABAP program

    Hi,
    if i come across a situation where i need to handle a runtime error unexpectedly what should be my approach.
    for eg. if i build a dynamic select statement and if my logic goes wrong the program flow should proceed normally as if nothing has happened 'with out giving me a short dump' . what if im not sure about the type of error thats going to show up, is there any way?
    your help will be appreciated.
    Regards,
    ravi.

    Hi Ravi
    Not all exceptions can be overridden. FYI, Below are a list of exceptions that can be handled:
    Alphabetical Overview of Catchable Runtime Errors
    Below you find an alphabetical list of all catchable runtime errors. For each runtime error, the predefined exception class assigned is specified which is used to handle the respective runtime error as of Release 6.10. If an exception class is assigned to more than one catchable runtime error, it may contain as many message texts as required which you can find in the Class Builder on the Texts tab.
    Almost all of the runtime errors listed here are combined together in exception groups. These exception groups are also assigned those ABAP keywords at which the runtime errors contained can be caught.
    ADDF_INT_OVERFLOW
    Overflow at addition, type I ( ADD ... UNTIL / ADD ... FROM ... TO)
    Exception class: CX_SY_ARITHMETIC_OVERFLOW
    ASSIGN_CASTING_ILLEGAL_CAST
    The components of the source field type and the target type which are strings, tables, or references do not have exactly the same offset and type.
    Exception class: CX_SY_ASSIGN_CAST_ILLEGAL_CAST
    ASSIGN_CASTING_UNKNOWN_TYPE
    The type specified at runtime is unknown.
    Exception class: CX_SY_ASSIGN_CAST_UNKNOWN_TYPE
    ASSIGN_FIELD_NOT_IN_RANGE
    The field is not within the RANGE specified.
    Exception class: CX_SY_ASSIGN_OUT_OF_RANGE
    BCD_FIELD_OVERFLOW
    Overflow at conversion / arithmetic operation (type P, with specified length)
    Exception class: CX_SY_CONVERSION_OVERFLOW
    BCD_OVERFLOW
    Overflow at conversion / arithmetic operation (type P)
    Exception class: CX_SY_ARITHMETIC_OVERFLOW
    BCD_ZERODIVIDE
    Division by 0 (type P)
    Exception class: CX_SY_ZERODIVIDE
    COMPUTE_ACOS_DOMAIN
    Invalid call of the mathematical function ACOS
    Exception class: CX_SY_ARG_OUT_OF_DOMAIN
    COMPUTE_ASIN_DOMAIN
    Invalid call of the mathematical function ASIN
    Exception class: CX_SY_ARG_OUT_OF_DOMAIN
    COMPUTE_ATAN_DOMAIN
    Invalid call of the mathematical function ATAN
    Exception class: CX_SY_ARG_OUT_OF_DOMAIN
    COMPUTE_BCD_OVERFLOW
    Overflow at arithmetic operation (all operands of type P)
    Exception class: CX_SY_ARITHMETIC_OVERFLOW
    COMPUTE_COSH_DOMAIN
    Invalid call of the mathematical function COSH
    Exception class: CX_SY_ARG_OUT_OF_DOMAIN
    COMPUTE_COSH_OVERFLOW
    Overflow at mathematical function COSH
    Exception class: CX_SY_ARITHMETIC_OVERFLOW
    COMPUTE_COS_DOMAIN
    Invalid call of the mathematical function COS
    Exception class: CX_SY_ARG_OUT_OF_DOMAIN
    COMPUTE_COS_LOSS
    Inaccurate result of function COS
    Exception class: CX_SY_PRECISION_LOSS
    COMPUTE_EXP_DOMAIN
    Invalid call of the mathematical function EXP
    Exception class: CX_SY_ARG_OUT_OF_DOMAIN
    COMPUTE_EXP_RANGE
    Overflow or underflow at mathematical function EXP
    Exception class: CX_SY_ARITHMETIC_OVERFLOW
    COMPUTE_FLOAT_DIV_OVERFLOW
    Overflow at division (type F)
    Exception class: CX_SY_ARITHMETIC_OVERFLOW
    COMPUTE_FLOAT_MINUS_OVERFLOW
    Overflow at subtraction (type F)
    Exception class: CX_SY_ARITHMETIC_OVERFLOW
    COMPUTE_FLOAT_PLUS_OVERFLOW
    Overflow at addition (type F)
    Exception class: CX_SY_ARITHMETIC_OVERFLOW
    COMPUTE_FLOAT_TIMES_OVERFLOW
    Overflow at multiplication (type F)
    Exception class: CX_SY_ARITHMETIC_OVERFLOW
    COMPUTE_FLOAT_ZERODIVIDE
    Division by 0 (type F)
    Exception class: CX_SY_ZERODIVIDE
    COMPUTE_INT_ABS_OVERFLOW
    Integer overflow while calculating the absolute value
    Exception class: CX_SY_ARITHMETIC_OVERFLOW
    COMPUTE_INT_DIV_OVERFLOW
    Integer overflow at division
    Exception class: CX_SY_ARITHMETIC_OVERFLOW
    COMPUTE_INT_MINUS_OVERFLOW
    Integer overflow at subtraction
    Exception class: CX_SY_ARITHMETIC_OVERFLOW
    COMPUTE_INT_PLUS_OVERFLOW
    Integer overflow at addition
    Exception class: CX_SY_ARITHMETIC_OVERFLOW
    COMPUTE_INT_TIMES_OVERFLOW
    Integer overflow at multiplication
    Exception class: CX_SY_ARITHMETIC_OVERFLOW
    COMPUTE_INT_ZERODIVIDE
    Division by 0 (type I)
    Exception class: CX_SY_ZERODIVIDE
    COMPUTE_LOG10_ERROR
    Invalid call of the mathematical function LOG10
    Exception classes: CX_SY_ARITHMETIC_OVERFLOW, CX_SY_ARG_OUT_OF_DOMAIN
    COMPUTE_LOG_ERROR
    Invalid call of the mathematical function LOG
    Exception classes: CX_SY_ARITHMETIC_OVERFLOW, CX_SY_ARG_OUT_OF_DOMAIN
    COMPUTE_MATH_DOMAIN
    Invalid call of a mathematical function
    Exception class: CX_SY_ARG_OUT_OF_DOMAIN
    COMPUTE_MATH_ERROR
    Error performing a mathematical function
    Exception class: None since this runtime error can no longer be caught
    COMPUTE_MATH_LOSS
    Inaccurate result of a mathematical function
    Exception class: CX_SY_PRECISION_LOSS
    COMPUTE_MATH_OVERFLOW
    Overflow at a mathematical function
    Exception class: CX_SY_ARITHMETIC_OVERFLOW
    COMPUTE_MATH_UNDERFLOW
    Underflow at a mathematical function
    Exception class: None since exception no longer occurs
    COMPUTE_POW_DOMAIN
    Invalid argument when using powers
    Exception class: CX_SY_ARG_OUT_OF_DOMAIN
    COMPUTE_POW_RANGE
    Overflow or underflow when using powers
    Exception class: CX_SY_ARITHMETIC_OVERFLOW
    COMPUTE_SINH_DOMAIN
    Invalid call of the mathematical function SINH
    Exception class: CX_SY_ARG_OUT_OF_DOMAIN
    COMPUTE_SINH_OVERFLOW
    Overflow at mathematical function SINH
    Exception class: CX_SY_ARITHMETIC_OVERFLOW
    COMPUTE_SIN_DOMAIN
    Invalid call of the mathematical function SIN
    Exception class: CX_SY_ARG_OUT_OF_DOMAIN
    COMPUTE_SIN_LOSS
    Inaccurate result of the function SIN
    Exception class: CX_SY_PRECISION_LOSS
    COMPUTE_SQRT_DOMAIN
    Invalid call of the mathematical function SQRT
    Exception class: CX_SY_ARG_OUT_OF_DOMAIN
    COMPUTE_TANH_DOMAIN
    Invalid call of the mathematical function TANH
    Exception class: CX_SY_ARG_OUT_OF_DOMAIN
    COMPUTE_TAN_DOMAIN
    Invalid call of the mathematical function TAN
    Exception class: CX_SY_ARG_OUT_OF_DOMAIN
    COMPUTE_TAN_LOSS
    Inaccurate result of the function TAN
    Exception class: CX_SY_PRECISION_LOSS
    CONNE_IMPORT_WRONG_COMP_DECS
    Import error; a component of a structured type in the dataset has wrong decimal places
    Exception class: CX_SY_IMPORT_MISMATCH_ERROR
    CONNE_IMPORT_WRONG_COMP_LENG
    Import error; a component of a structured type in the dataset has the wrong length
    Exception class: CX_SY_IMPORT_MISMATCH_ERROR
    CONNE_IMPORT_WRONG_COMP_TYPE
    Import error; a component of a structured type in the dataset has the wrong type
    Exception class: CX_SY_IMPORT_MISMATCH_ERROR
    CONNE_IMPORT_WRONG_FIELD_DECS
    Import error; a field in the dataset has wrong decimal places
    Exception class: CX_SY_IMPORT_MISMATCH_ERROR
    CONNE_IMPORT_WRONG_FIELD_LENG
    Import error; a field in the dataset has the wrong length
    Exception class: CX_SY_IMPORT_MISMATCH_ERROR
    CONNE_IMPORT_WRONG_FIELD_TYPE
    Import error; a field in the dataset has the wrong type
    Exception class: CX_SY_IMPORT_MISMATCH_ERROR
    CONNE_IMPORT_WRONG_OBJECT_TYPE
    Import error; type conflict between simple and structured data types
    Exception class: CX_SY_IMPORT_MISMATCH_ERROR
    CONNE_IMPORT_WRONG_STRUCTURE
    Import error; type conflict between structured objects
    Exception class: CX_SY_IMPORT_MISMATCH_ERROR
    CONVT_CODEPAGE
    Character set conversion not possible for one or more characters
    Exception class: CX_SY_CONVERSION_CODEPAGE
    CONVT_CODEPAGE_INIT
    Conversion of texts between code pages not supported
    Exception class: CX_SY_CODEPAGE_CONVERTER_INIT
    CONVT_NO_NUMBER
    Value to be converted cannot be interpreted as a number
    Exception class: CX_SY_CONVERSION_NO_NUMBER
    CONVT_OVERFLOW
    Overflow at conversion (all types, not type P)
    Exception class: CX_SY_CONVERSION_OVERFLOW
    CREATE_DATA_ILLEGAL_DECIMALS
    Invalid value for the addition DECIMALS
    Exception class: CX_SY_CREATE_DATA_ERROR
    CREATE_DATA_ILLEGAL_INIT_SIZE
    Invalid value for the addition INITIAL SIZE
    Exception class: CX_SY_CREATE_DATA_ERROR
    CREATE_DATA_ILLEGAL_LENGTH
    Invalid value for the addition LENGTH
    Exception class: CX_SY_CREATE_DATA_ERROR
    CREATE_DATA_LEN_NOT_ALLOWED
    The addition LENGTH was used for a type other than C, N, X, or P
    Exception class: CX_SY_CREATE_DATA_ERROR
    CREATE_DATA_NOT_ALLOWED_TYPE
    The type specified dynamically in the addition TYPE is not typed completely.
    Exception class: CX_SY_CREATE_DATA_ERROR
    CREATE_DATA_UNKNOWN_TYPE
    The type specified in the addition TYPE is unknown.
    Exception class: CX_SY_CREATE_DATA_ERROR
    CREATE_OBJECT_CLASS_ABSTRACT
    You attempted to instantiate an abstract class.
    Exception class: CX_SY_CREATE_OBJECT_ERROR
    CREATE_OBJECT_CLASS_NOT_FOUND
    The class specified in the dynamic CREATE OBJECT was not found.
    Exception class: CX_SY_CREATE_OBJECT_ERROR
    CREATE_OBJECT_CREATE_PRIVATE
    You attempted to create an object of a class defined as 'CREATE PRIVATE'.
    Exception class: CX_SY_CREATE_OBJECT_ERROR
    CREATE_OBJECT_CREATE_PROTECTED
    You attempted to create an object of a class defined as 'CREATE PROTECTED'.
    Exception class: CX_SY_CREATE_OBJECT_ERROR
    DATA_LENGTH_NEGATIVE
    Invalid subfield access: Length negative
    Exception class: CX_SY_RANGE_OUT_OF_BOUNDS
    DATA_LENGTH_0
    Invalid subfield access: Length 0
    Exception class: CX_SY_RANGE_OUT_OF_BOUNDS
    DATA_LENGTH_TOO_LARGE
    Invalid subfield access: Length too large
    Exception class: CX_SY_RANGE_OUT_OF_BOUNDS
    DATA_OFFSET_NEGATIVE
    Invalid subfield access: Offset negative
    Exception class: CX_SY_RANGE_OUT_OF_BOUNDS
    DATA_OFFSET_LENGTH_TOO_LARGE
    Invalid subfield access: Offset + length too large
    Exception class: CX_SY_RANGE_OUT_OF_BOUNDS
    DATA_OFFSET_LENGTH_NOT_ALLOWED
    Invalid subfield access: Inadequate type
    Exception class: CX_SY_OFFSET_NOT_ALLOWED
    DATASET_CANT_CLOSE
    File could not be closed; there might be no more space in the file system.
    Exception class: CX_SY_FILE_CLOSE
    DATASET_CANT_OPEN
    File cannot be opened
    Exception class: CX_SY_FILE_OPEN
    DATASET_NO_PIPE
    OPEN DATASET with the addition FILTER is not supported on the current operating system.
    Exception class: CX_SY_PIPES_NOT_SUPPORTED
    DATASET_NO_POSITION
    Access to current read/write position of file not possible
    Exception class: CX_SY_FILE_POSITION
    DATASET_NOT_OPEN
    File not open
    Exception class: CX_SY_FILE_OPEN_MODE
    DATASET_OFFSET_TO_LARGE
    Offset specified exceeds the system limit
    Exception class: CX_SY_FILE_POSITION
    DATASET_PIPE_CLOSED
    Pipe for file closed
    Exception class: CX_SY_PIPE_REOPEN
    DATASET_READ_ERROR
    Error reading a file
    Exception class: CX_SY_FILE_IO
    DATASET_READ_ONLY
    File opened in read-only mode
    Exception class: CX_SY_FILE_OPEN_MODE
    DATASET_SEEK_ERROR
    Error positioning in a file
    Exception class: CX_SY_FILE_POSITION
    DATASET_TOO_MANY_FILES
    Maximum number of open files exceeded
    Exception class: CX_SY_TOO_MANY_FILES
    DATASET_WRITE_ERROR
    Error writing a file
    Exception class: CX_SY_FILE_IO
    DYN_CALL_METH_CLASSCONSTRUCTOR
    You attempted to call the class constructor.
    Exception class: CX_SY_DYN_CALL_ILLEGAL_METHOD
    DYN_CALL_METH_CLASS_ABSTRACT
    You attempted to call an abstract method.
    Exception class: CX_SY_DYN_CALL_ILLEGAL_CLASS
    DYN_CALL_METH_CLASS_NOT_FOUND
    You attempted to call a method of a class that does not exist.
    Exception class: CX_SY_DYN_CALL_ILLEGAL_CLASS
    DYN_CALL_METH_CONSTRUCTOR
    You attempted to call the instance constructor.
    Exception class: CX_SY_DYN_CALL_ILLEGAL_METHOD
    DYN_CALL_METH_EXCP_NOT_FOUND
    You attempted to catch an unknown exception.
    Exception class: CX_SY_DYN_CALL_EXCP_NOT_FOUND
    DYN_CALL_METH_NOT_FOUND
    You attempted to call an unknown method.
    Exception class: CX_SY_DYN_CALL_ILLEGAL_METHOD
    DYN_CALL_METH_NOT_IMPLEMENTED
    You attempted to call a method not yet implemented.
    Exception class: CX_SY_DYN_CALL_ILLEGAL_METHOD
    DYN_CALL_METH_NO_CLASS_METHOD
    You attempted to call an instance method through a class.
    Exception class: CX_SY_DYN_CALL_ILLEGAL_METHOD
    DYN_CALL_METH_PARAM_KIND
    You attempted to pass a parameter with a wrong parameter type.
    Exception class: CX_SY_DYN_CALL_ILLEGAL_TYPE
    DYN_CALL_METH_PARAM_LITL_MOVE
    You attempted to pass a constant actual parameter to a formal EXPORTING, CHANGING, or RETURNING parameter.
    Exception class: CX_SY_DYN_CALL_ILLEGAL_TYPE
    DYN_CALL_METH_PARAM_MISSING
    A required parameter was not filled.
    Exception class: CX_SY_DYN_CALL_PARAM_MISSING
    DYN_CALL_METH_PARAM_NOT_FOUND
    You attempted to pass an unknown parameter.
    Exception class: CX_SY_DYN_CALL_PARAM_NOT_FOUND
    DYN_CALL_METH_PARAM_TAB_TYPE
    You attempted to pass a parameter with a wrong table type.
    Exception class: CX_SY_DYN_CALL_ILLEGAL_TYPE
    DYN_CALL_METH_PARAM_TYPE
    You attempted to pass a parameter with a wrong type.
    Exception class: CX_SY_DYN_CALL_ILLEGAL_TYPE
    DYN_CALL_METH_PARREF_INITIAL
    An initial data reference was passed for a required parameter.
    Exception class: CX_SY_DYN_CALL_PARAM_MISSING
    DYN_CALL_METH_PRIVATE
    You attempted to call a private method outside.
    Exception class: CX_SY_DYN_CALL_ILLEGAL_METHOD
    DYN_CALL_METH_PROTECTED
    You attempted to call a protected method outside.
    Exception class: CX_SY_DYN_CALL_ILLEGAL_METHOD
    DYN_CALL_METH_REF_IS_INITIAL
    You attempted to call a method to an initial reference.
    Exception class: CX_SY_REF_IS_INITIAL
    EXPORT_BUFFER_NO_MEMORY
    The EXPORT data cluster is too large for the application buffer.
    Exception class: CX_SY_EXPORT_BUFFER_NO_MEMORY
    EXPORT_DATASET_CANNOT_OPEN
    The IMPORT/EXPORT statement was unable to open the file.
    Exception class: CX_SY_FILE_OPEN
    EXPORT_DATASET_WRITE_ERROR
    The Export statement could not write the file.
    Exception class: CX_SY_FILE_IO
    GENERATE_SUBPOOL_DIR_FULL
    The system is unable to generate another temporary subroutine pool.
    Exception class: CX_SY_GENERATE_SUBPOOL_FULL
    IMPORT_ALIGNMENT_MISMATCH
    Import error; identical sequence of components but with type conflict or with different integration into structured data types
    Exception class: CX_SY_IMPORT_MISMATCH_ERROR
    IMPORT_TYPE_MISMATCH
    Import error; only at IMPORT...FROM MEMORY | FROM SHARED BUFFER...
    Exception class: None since this runtime error can not longer be caught
    IMPORT_WRONG_END_POS
    Import error; dataset has a different length.
    Exception class: CX_SY_IMPORT_MISMATCH_ERROR
    MOVE_CAST_ERROR
    Type conflict assigning between object and/or interface references (only MOVE...?TO... or operator ?=)
    Exception class: CX_SY_MOVE_CAST_ERROR
    OPEN_DATASET_NO_AUTHORITY
    No authorization to access a file
    Exception class: CX_SY_FILE_AUTHORITY
    OPEN_PIPE_NO_AUTHORITY
    No authorization to access a file (OPEN DATASET...FILTER...)
    Exception class: CX_SY_FILE_AUTHORITY
    PERFORM_PROGRAM_NAME_TOO_LONG
    Invalid program name in the PERFORM statement
    Exception class: CX_SY_PROGRAM_NOT_FOUND
    REFI_WRONG_SECTION
    Wrong offset/length specification in the REPLACE statement
    Exception class: CX_SY_RANGE_OUT_OF_BOUNDS
    REPLACE_INFINITE_LOOP
    SECTION of length 0 in the REPLACE statement
    Exception class: CX_SY_REPLACE_INFINITE_LOOP
    RMC_COMMUNICATION_FAILURE
    Communication error during Remote Method Call
    Exception class: CX_SY_RMC_COMM_FAILURE
    RMC_INVALID_STATUS
    State error during Remote Method Call
    Exception class: CX_SY_RMC_INVALID_STATUS
    RMC_SYSTEM_FAILURE
    System error during Remote Method Call
    Exception class: CX_SY_RMC_SYSTEM_FAILURE
    STRING_LENGTH_NEGATIVE
    Invalid access with negative length to a string
    Exception class: CX_SY_RANGE_OUT_OF_BOUNDS
    STRING_LENGTH_TOO_LARGE
    Invalid access to a string (length too large)
    Exception class: CX_SY_RANGE_OUT_OF_BOUNDS
    STRING_OFFSET_NEGATIVE
    Invalid access with negative offset to a string
    Exception class: CX_SY_RANGE_OUT_OF_BOUNDS
    STRING_OFFSET_TOO_LARGE
    Invalid access to a string (offset too large)
    Exception class: CX_SY_RANGE_OUT_OF_BOUNDS
    STRING_OFFSET_LENGTH_TOO_LARGE
    Invalid access to a string (offset + length too large)
    Exception class: CX_SY_LOCALIZATION_ERROR
    TEXTENV_CODEPAGE_NOT_ALLOWED
    Character set not released in the system (SET LOCALE...)
    TEXTENV_INVALID
    Error setting the text environment (SET LOCALE...)
    Exception class: CX_SY_LOCALIZATION_ERROR

  • An unexpected error has been detected by HotSpot Virtual Machine:

    Hi
    When I upload the xml file with dubug window.
    When I have debug then this message will come..
    So give me a solution..
    Here at below I have pasted files. in which I want to by pass the ldap..
    So give me suggestion what to do with that files.
    What's wrong with that file ?
    Jiten
    18 Oct 2007 17:02:09 0 INFO [main] security.SecurityUtil - SecurityUtil.login: Called with [email protected]; password=[C@1797795; sourceIpAddress=192.168.5.14; weblogin=false; realm=null
    18 Oct 2007 17:02:09 16    INFO  [main] security.SecurityUtil - login: start login: username: [email protected]
    18 Oct 2007 17:02:09 125 INFO [main] BOOT - -- boot log messages -->
    [BOOT] INFO: Loading OJB's properties: file:/C:/LMS/gsnx/deploy/webapp/gsnx.ear/webapp.war/WEB-INF/classes/OJB.properties
    [BOOT] WARN: Can't read logging properties file using path 'OJB-logging.properties', message is:
    C:\LMS\gsnx\OJB-logging.properties (The system cannot find the file specified)
    Will try to load logging properties from OJB.properties file
    [BOOT] INFO: Logging: Found 'log4j.properties' file, use class org.apache.ojb.broker.util.logging.Log4jLoggerImpl
    [BOOT] INFO: Log4J is already configured, will not search for log4j properties file
    18 Oct 2007 17:02:12 3282 INFO [main] security.SecurityUtil - SecurityUtil.login: Calling authentication with [email protected]; password=[C@1797795; realm=null
    # An unexpected error has been detected by HotSpot Virtual Machine:
    #  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d85c14f, pid=4032, tid=3260
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_11-b03 mixed mode)
    # Problematic frame:
    # V  [jvm.dll+0x11c14f]
    # An error report file with more information is saved as hs_err_pid4032.log
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    Here :This is my login.config file..
    * Copyright (c) 2003-2005 E2open Inc. All rights reserved.
    * gnsx security configuration file
    * Note:
    * 1. At installation time, java.security file in your jre's lib/security/ directory should
    * be edited add the following line (ganx.home} is the home directory of gsnx install
    * login.config.url.1=file:{gsnx.home}/conf/login.config
    * 2. Edit this file to replace ldap-url with the correct url for your
    * LoginModule configuration.
    * @version $Id: login.config,v 1.8 2006/02/04 18:38:11 vgeorge Exp $
    gsnx.security.Login
    * LdapLoginModule Options:
    * ldap-url - LDAP connection URL, such as ldap://localhost:389
    * e.g. ldap-url="ldap://192.168.31.63:389"
    * dn-mask - The DN mask for user. The number 0 refers to the parameter
    * number for username. If this is specified then user search is ingored.
    * **This option is DEPRECATED**.
    * e.g. dn-mask="cn={0},ou=People,dc=gsnx,dc=com"
    * initialContextFactory - Class name of the initial context factory
    * e.g. initialContextFactory="com.sun.jndi.ldap.LdapCtxFactory"
    * connection-username - The DN used by the login module itself for authentication to
    * the directory server.
    * e.g. connection-username="uid=admin,ou=system"
    * connection-password - Password that is used by the login module to authenticate
    * itself to the directory server
    * e.g. connection-password="password"
    * connectionProtocol - The security protocol to use. This value is determined by the
    * service provider. An example would be SSL.
    * e.g. connectionProtocol="ldap"
    * authentication - The security level to use. Its value is one of the following
    * strings: "none", "simple", "strong".
    * e.g. authentication="simple"
    * user-search-base - the base DN for the user search
    * e.g. user-search-base="ou=users,ou=system"
    * user-search-pattern - filter specification how to search for the user object.
    * RFC 2254 filters are allowed. For example: (uid=user1). To parameterize the value
    * of the CN attribute type, specify (uid = {0}). The number 0 refers to the parameter
    * number for username. This query must return exactly one object.
    * e.g. user-search-pattern="uid={0}"
    * user-search-scope-subtree - Directory search scope for the user (ture | false)
    * ture - directory search scope is SUBTREE
    * false - directory search scope is ONE-LEVEL
    * e.g. user-search-scope-subtree="true"
    * user-password-changepw-gsnx-handler - hander to change password
    * If this handler is not specified, the change password feature will not be available
    * if "com.gsnx.core.server.security.LdapLoginModule", is used the the
    * option - user-password-attribute is required.
    * e.g. user-password-changepw-gsnx-handler="com.gsnx.core.server.security.LdapLoginModule"
    * user-password-attribute - attribute in LDAP that stores the user password
    * If this is not specified, the change password feature will not be work
    * when "com.gsnx.core.server.security.LdapLoginModule", is used as
    * user-password-changepw-gsnx-handler
    * e.g. user-password-attribute="userPassword"
    * role-search-base - The base DN for the group membership search
    * e.g. role-search-base="ou=groups,ou=system"
    * role-name-attribute - LDAP attribute type that identifies group name attribute in the object
    * returned from the group membership query. The group membership query is defined
    * by the role-search-pattern parameter. Typically the group name parameter is "cn".
    * e.g. role-name="cn"
    * role-search-pattern - The filter specification how to search for the role object.
    * RFC 2254 filters are allowed. For example: (uniqueMember = {0}). The number 0
    * refers refers to the DN of the authenticated user. Note that if role membership
    * for the user is defined in the member-of-like attribute (see user-role-name
    * parameter) you may not need to search for group membership with the query.
    * e.g. role-search-pattern="(uniqueMember={0})"
    * role-search-scope-subtree - Directory search scope for the role (ture | false).
    * ture - directory search scope is SUBTREE
    * false - directory search scope is ONE-LEVEL
    * e.g. role-search-scope-subtree="false"
    * user-role-attribute - LDAP attribute type for the user group membership. Different LDAP
    * schemas represent user group membership in different ways such as memberOf,
    * isMemberOf, member, etc. Values of these attributes are identifiers of groups that
    * a user is a member of. For example, if you have: memberOf: cn=admin,ou=groups,dc=gsnx,
    * specify "memberOf" as the value for the user-role-name attribute. Be aware of the
    * relationship between this parameter and group membership query. Typically
    * they will return the same data.
    * e.g. user-role-name="memberOf"
    * ldap://ldap-qa.dev.e2open.com:389
    * ldap://192.168.31.63:389
    com.gsnx.core.server.security.PassthruLoginModule required
    *com.gsnx.core.server.security.LdapLoginModule required
    initial-context-factory="com.sun.jndi.ldap.LdapCtxFactory"
    ldap-url="ldap://ldap-qa.dev.e2open.com:389"
    connection-username="cn=Manager,dc=gsnx,dc=com"
    connection-password="slapface"
    connection-protocol="ldap"
    authentication="simple"
    user-search-base="dc=gsnx,dc=com"
    user-search-pattern="cn={0}"
    user-search-scope-subtree="true"
    user-password-changepw-gsnx-handler="com.gsnx.core.server.security.PassthruLoginModule"
    user-password-attribute="userPassword"
    role-search-base=""
    role-name-attribute=""
    role-search-pattern=""
    role-search-scope-subtree=""
    user-role-attribute="";
    This is LoginConfig.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <!-- The XML based JAAS login configuration read by the
    org.jboss.security.auth.login.XMLLoginConfig mbean. Add
    an application-policy element for each security domain.
    The outline of the application-policy is:
    <application-policy name="security-domain-name">
    <authentication>
    <login-module code="login.module1.class.name" flag="control_flag">
    <module-option name = "option1-name">option1-value</module-option>
    <module-option name = "option2-name">option2-value</module-option>
    </login-module>
    <login-module code="login.module2.class.name" flag="control_flag">
    </login-module>
    </authentication>
    </application-policy>
    $Revision: 1.12.2.2 $
    --><!DOCTYPE policy PUBLIC "-//JBoss//DTD JBOSS Security Config 3.0//EN" "http://www.jboss.org/j2ee/dtd/security_config.dtd">
    <policy>
    <!-- Used by clients within the application server VM such as
    mbeans and servlets that access EJBs.
    -->
    <application-policy name="gsnx.security.Login">
    <authentication>
    <!-- <login-module code="com.gsnx.core.server.security.LdapLoginModule" flag="required">-->
    <login-module code="com.gsnx.core.server.security.PassthruLoginModule" flag="required">
    <module-option name="initial-context-factory">com.sun.jndi.ldap.LdapCtxFactory
    </module-option>
    <!--<module-option name="user-password-changepw-gsnx-handler">com.gsnx.core.server.security.LdapLoginModule-->
    <module-option name="user-password-changepw-gsnx-handler">com.gsnx.core.server.security.PassthruLoginModule
    </module-option>
    <!-- <module-option name="ldap-url">ldap://192.168.31.63:389</module-option> -->
    <!-- <module-option name="ldap-url">ldap://10.120.17.253:389</module-option> -->
    <module-option name="ldap-url">ldap://ldap-qa.dev.e2open.com:389</module-option>
    <module-option name="connection-username">cn=Manager,dc=gsnx,dc=com</module-option>
    <module-option name="connection-password">slapface</module-option>
    <module-option name="connection-protocol">ldap</module-option>
    <module-option name="authentication">simple</module-option>
    <module-option name="user-search-base">dc=gsnx,dc=com</module-option>
    <module-option name="user-search-pattern">cn={0}</module-option>
    <module-option name="user-search-scope-subtree">true</module-option>
    <module-option name="user-password-attribute"/>
    <module-option name="role-search-base"/>
    <module-option name="role-name-attribute"/>
    <module-option name="role-search-pattern"/>
    <module-option name="role-search-scope-subtree"/>
    <module-option name="user-role-attribute"/>
    </login-module>
    </authentication>
    </application-policy>
    <application-policy name="client-login">
    <authentication>
    <login-module code="org.jboss.security.ClientLoginModule" flag="required">
    </login-module>
    </authentication>
    </application-policy>
    <!-- Security domain for JBossMQ -->
    <application-policy name="jbossmq">
    <authentication>
    <login-module code="org.jboss.security.auth.spi.DatabaseServerLoginModule" flag="required">
    <module-option name="unauthenticatedIdentity">guest</module-option>
    <module-option name="dsJndiName">java:/DefaultDS</module-option>
    <module-option name="principalsQuery">SELECT PASSWD FROM JMS_USERS WHERE USERID=?</module-option>
    <module-option name="rolesQuery">SELECT ROLEID, 'Roles' FROM JMS_ROLES WHERE USERID=?</module-option>
    </login-module>
    </authentication>
    </application-policy>
    <!-- Security domain for JBossMQ when using file-state-service.xml
    <application-policy name = "jbossmq">
    <authentication>
    <login-module code = "org.jboss.mq.sm.file.DynamicLoginModule"
    flag = "required">
    <module-option name = "unauthenticatedIdentity">guest</module-option>
    <module-option name = "sm.objectname">jboss.mq:service=StateManager</module-option>
    </login-module>
    </authentication>
    </application-policy>
    -->
    <!-- Security domains for testing new jca framework -->
    <application-policy name="HsqlDbRealm">
    <authentication>
    <login-module code="org.jboss.resource.security.ConfiguredIdentityLoginModule" flag="required">
    <module-option name="principal">sa</module-option>
    <module-option name="userName">sa</module-option>
    <module-option name="password"/>
    <module-option name="managedConnectionFactoryName">jboss.jca:service=LocalTxCM,name=DefaultDS</module-option>
    </login-module>
    </authentication>
    </application-policy>
    <application-policy name="JmsXARealm">
    <authentication>
    <login-module code="org.jboss.resource.security.ConfiguredIdentityLoginModule" flag="required">
    <module-option name="principal">guest</module-option>
    <module-option name="userName">guest</module-option>
    <module-option name="password">guest</module-option>
    <module-option name="managedConnectionFactoryName">jboss.jca:service=TxCM,name=JmsXA</module-option>
    </login-module>
    </authentication>
    </application-policy>
    <!-- A template configuration for the jmx-console web application. This
    defaults to the UsersRolesLoginModule the same as other and should be
    changed to a stronger authentication mechanism as required.
    -->
    <application-policy name="jmx-console">
    <authentication>
    <login-module code="org.jboss.security.auth.spi.UsersRolesLoginModule" flag="required">
    <module-option name="usersProperties">props/jmx-console-users.properties</module-option>
    <module-option name="rolesProperties">props/jmx-console-roles.properties</module-option>
    </login-module>
    </authentication>
    </application-policy>
    <!-- A template configuration for the web-console web application. This
    defaults to the UsersRolesLoginModule the same as other and should be
    changed to a stronger authentication mechanism as required.
    -->
    <application-policy name="web-console">
    <authentication>
    <login-module code="org.jboss.security.auth.spi.UsersRolesLoginModule" flag="required">
    <module-option name="usersProperties">web-console-users.properties</module-option>
    <module-option name="rolesProperties">web-console-roles.properties</module-option>
    </login-module>
    </authentication>
    </application-policy>
    <!-- A template configuration for the JBossWS web application (and transport layer!).
    This defaults to the UsersRolesLoginModule the same as other and should be
    changed to a stronger authentication mechanism as required.
    -->
    <application-policy name="JBossWS">
    <authentication>
    <login-module code="org.jboss.security.auth.spi.UsersRolesLoginModule" flag="required">
    <module-option name="unauthenticatedIdentity">anonymous</module-option>
    </login-module>
    </authentication>
    </application-policy>
    <!-- The default login configuration used by any security domain that
    does not have a application-policy entry with a matching name
    -->
    <application-policy name="other">
    <!-- A simple server login module, which can be used when the number
    of users is relatively small. It uses two properties files:
    users.properties, which holds users (key) and their password (value).
    roles.properties, which holds users (key) and a comma-separated list of
    their roles (value).
    The unauthenticatedIdentity property defines the name of the principal
    that will be used when a null username and password are presented as is
    the case for an unuathenticated web client or MDB. If you want to
    allow such users to be authenticated add the property, e.g.,
    unauthenticatedIdentity="nobody"
    -->
    <authentication>
    <login-module code="org.jboss.security.auth.spi.UsersRolesLoginModule" flag="required"/>
    </authentication>
    </application-policy>
    </policy>
    This is : java.security
    # This is the "master security properties file".
    # In this file, various security properties are set for use by
    # java.security classes. This is where users can statically register
    # Cryptography Package Providers ("providers" for short). The term
    # "provider" refers to a package or set of packages that supply a
    # concrete implementation of a subset of the cryptography aspects of
    # the Java Security API. A provider may, for example, implement one or
    # more digital signature algorithms or message digest algorithms.
    # Each provider must implement a subclass of the Provider class.
    # To register a provider in this master security properties file,
    # specify the Provider subclass name and priority in the format
    # security.provider.<n>=<className>
    # This declares a provider, and specifies its preference
    # order n. The preference order is the order in which providers are
    # searched for requested algorithms (when no specific provider is
    # requested). The order is 1-based; 1 is the most preferred, followed
    # by 2, and so on.
    # <className> must specify the subclass of the Provider class whose
    # constructor sets the values of various properties that are required
    # for the Java Security API to look up the algorithms or other
    # facilities implemented by the provider.
    # There must be at least one provider specification in java.security.
    # There is a default provider that comes standard with the JDK. It
    # is called the "SUN" provider, and its Provider subclass
    # named Sun appears in the sun.security.provider package. Thus, the
    # "SUN" provider is registered via the following:
    # security.provider.1=sun.security.provider.Sun
    # (The number 1 is used for the default provider.)
    # Note: Statically registered Provider subclasses are instantiated
    # when the system is initialized. Providers can be dynamically
    # registered instead by calls to either the addProvider or
    # insertProviderAt method in the Security class.
    # List of providers and their preference orders (see above):
    security.provider.1=sun.security.provider.Sun
    security.provider.2=sun.security.rsa.SunRsaSign
    security.provider.3=com.sun.net.ssl.internal.ssl.Provider
    security.provider.4=com.sun.crypto.provider.SunJCE
    security.provider.5=sun.security.jgss.SunProvider
    security.provider.6=com.sun.security.sasl.Provider
    # Select the source of seed data for SecureRandom. By default an
    # attempt is made to use the entropy gathering device specified by
    # the securerandom.source property. If an exception occurs when
    # accessing the URL then the traditional system/thread activity
    # algorithm is used.
    # On Solaris and Linux systems, if file:/dev/urandom is specified and it
    # exists, a special SecureRandom implementation is activated by default.
    # This "NativePRNG" reads random bytes directly from /dev/urandom.
    # On Windows systems, the URLs file:/dev/random and file:/dev/urandom
    # enables use of the Microsoft CryptoAPI seed functionality.
    securerandom.source=file:/dev/urandom
    # The entropy gathering device is described as a URL and can also
    # be specified with the system property "java.security.egd". For example,
    # -Djava.security.egd=file:/dev/urandom
    # Specifying this system property will override the securerandom.source
    # setting.
    # Class to instantiate as the javax.security.auth.login.Configuration
    # provider.
    login.configuration.provider=com.sun.security.auth.login.ConfigFile
    # Default login configuration file
    login.config.url.1=C:\LMS\gsnx\core\src\conf\login.config
    # Class to instantiate as the system Policy. This is the name of the class
    # that will be used as the Policy object.
    policy.provider=sun.security.provider.PolicyFile
    # The default is to have a single system-wide policy file,
    # and a policy file in the user's home directory.
    policy.url.1=file:${java.home}/lib/security/java.policy
    policy.url.2=file:${user.home}/.java.policy
    # whether or not we expand properties in the policy file
    # if this is set to false, properties (${...}) will not be expanded in policy
    # files.
    policy.expandProperties=true
    # whether or not we allow an extra policy to be passed on the command line
    # with -Djava.security.policy=somefile. Comment out this line to disable
    # this feature.
    policy.allowSystemProperty=true
    # whether or not we look into the IdentityScope for trusted Identities
    # when encountering a 1.1 signed JAR file. If the identity is found
    # and is trusted, we grant it AllPermission.
    policy.ignoreIdentityScope=false
    # Default keystore type.
    keystore.type=jks
    # Class to instantiate as the system scope:
    system.scope=sun.security.provider.IdentityDatabase
    # List of comma-separated packages that start with or equal this string
    # will cause a security exception to be thrown when
    # passed to checkPackageAccess unless the
    # corresponding RuntimePermission ("accessClassInPackage."+package) has
    # been granted.
    package.access=sun.
    # List of comma-separated packages that start with or equal this string
    # will cause a security exception to be thrown when
    # passed to checkPackageDefinition unless the
    # corresponding RuntimePermission ("defineClassInPackage."+package) has
    # been granted.
    # by default, no packages are restricted for definition, and none of
    # the class loaders supplied with the JDK call checkPackageDefinition.
    #package.definition=
    # Determines whether this properties file can be appended to
    # or overridden on the command line via -Djava.security.properties
    security.overridePropertiesFile=true
    # Determines the default key and trust manager factory algorithms for
    # the javax.net.ssl package.
    ssl.KeyManagerFactory.algorithm=SunX509
    ssl.TrustManagerFactory.algorithm=PKIX
    # Determines the default SSLSocketFactory and SSLServerSocketFactory
    # provider implementations for the javax.net.ssl package. If, due to
    # export and/or import regulations, the providers are not allowed to be
    # replaced, changing these values will produce non-functional
    # SocketFactory or ServerSocketFactory implementations.
    #ssl.SocketFactory.provider=
    #ssl.ServerSocketFactory.provider=
    # The Java-level namelookup cache policy for successful lookups:
    # any negative value: caching forever
    # any positive value: the number of seconds to cache an address for
    # zero: do not cache
    # default value is forever (FOREVER). For security reasons, this
    # caching is made forever when a security manager is set.
    # NOTE: setting this to anything other than the default value can have
    # serious security implications. Do not set it unless
    # you are sure you are not exposed to DNS spoofing attack.
    #networkaddress.cache.ttl=-1
    # The Java-level namelookup cache policy for failed lookups:
    # any negative value: cache forever
    # any positive value: the number of seconds to cache negative lookup results
    # zero: do not cache
    # In some Microsoft Windows networking environments that employ
    # the WINS name service in addition to DNS, name service lookups
    # that fail may take a noticeably long time to return (approx. 5 seconds).
    # For this reason the default caching policy is to maintain these
    # results for 10 seconds.
    networkaddress.cache.negative.ttl=10
    # Properties to configure OCSP for certificate revocation checking
    # Enable OCSP
    # By default, OCSP is not used for certificate revocation checking.
    # This property enables the use of OCSP when set to the value "true".
    # NOTE: SocketPermission is required to connect to an OCSP responder.
    # Example,
    # ocsp.enable=true
    # Location of the OCSP responder
    # By default, the location of the OCSP responder is determined implicitly
    # from the certificate being validated. This property explicitly specifies
    # the location of the OCSP responder. The property is used when the
    # Authority Information Access extension (defined in RFC 3280) is absent
    # from the certificate or when it requires overriding.
    # Example,
    # ocsp.responderURL=http://ocsp.example.net:80
    # Subject name of the OCSP responder's certificate
    # By default, the certificate of the OCSP responder is that of the issuer
    # of the certificate being validated. This property identifies the certificate
    # of the OCSP responder when the default does not apply. Its value is a string
    # distinguished name (defined in RFC 2253) which identifies a certificate in
    # the set of certificates supplied during cert path validation. In cases where
    # the subject name alone is not sufficient to uniquely identify the certificate
    # then both the "ocsp.responderCertIssuerName" and
    # "ocsp.responderCertSerialNumber" properties must be used instead. When this
    # property is set then those two properties are ignored.
    # Example,
    # ocsp.responderCertSubjectName="CN=OCSP Responder, O=XYZ Corp"
    # Issuer name of the OCSP responder's certificate
    # By default, the certificate of the OCSP responder is that of the issuer
    # of the certificate being validated. This property identifies the certificate
    # of the OCSP responder when the default does not apply. Its value is a string
    # distinguished name (defined in RFC 2253) which identifies a certificate in
    # the set of certificates supplied during cert path validation. When this
    # property is set then the "ocsp.responderCertSerialNumber" property must also
    # be set. When the "ocsp.responderCertSubjectName" property is set then this
    # property is ignored.
    # Example,
    # ocsp.responderCertIssuerName="CN=Enterprise CA, O=XYZ Corp"
    # Serial number of the OCSP responder's certificate
    # By default, the certificate of the OCSP responder is that of the issuer
    # of the certificate being validated. This property identifies the certificate
    # of the OCSP responder when the default does not apply. Its value is a string
    # of hexadecimal digits (colon or space separators may be present) which
    # identifies a certificate in the set of certificates supplied during cert path
    # validation. When this property is set then the "ocsp.responderCertIssuerName"
    # property must also be set. When the "ocsp.responderCertSubjectName" property
    # is set then this property is ignored.
    # Example,
    # ocsp.responderCertSerialNumber=2A:FF:00

    user564785 wrote:
    I am trying to installl Oracle 11gR2 on VM machine with Redhat Linux 6-64bit. That is a Oracle database problem. Even though the Oracle product uses java it still represents a problem with that product (Oracle) rather than java. So you need to start with an Oracle database forum.

  • I upgraded to Yosemite, and now Safari will not even load.  It immediately goes to the "quit unexpectedly" error window, with the following information (which means nothing to me, of course).

    I upgraded to Yosemite, and now Safari will not even load.  It immediately goes to the "quit unexpectedly" error window, with the following information (which means nothing to me, of course).  I've seen others posting issues like this, but have yet to see a solution.  Apparently I cannot just reinstall Safari, so do I need to figure out how to uninstall the upgrade and try again?  Is this worth it, or should I just uninstall and go back to my prior OS until Apple can provide a clean upgrade?  Anyone know the answers?
    Process:          
    Safari [1043]
    Path:             
    /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:       
    com.apple.Safari
    Version:          
    8.0.2 (10600.2.5)
    Build Info:       
    WebBrowser-7600002005000000~1
    Code Type:        
    X86-64 (Native)
    Parent Process:   
    ??? [1]
    Responsible:      
    Safari [1043]
    User ID:          
    501
    Date/Time:        
    2014-12-23 08:48:50.202 -0600
    OS Version:       
    Mac OS X 10.10.1 (14B25)
    Report Version:   
    11
    Anonymous UUID:   
    954A8602-894E-472A-EF44-D75463DE1553
    Sleep/Wake UUID:  
    AC81F1AC-F62C-42AB-9E37-1B4505626409
    Time Awake Since Boot: 5300 seconds
    Time Since Wake:  
    650 seconds
    Crashed Thread:   
    13
    Exception Type:   
    EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:  
    KERN_INVALID_ADDRESS at 0x0000000000000020
    External Modification Warnings:
    Thread creation by external task.
    VM Regions Near 0x20:
    -->
    __TEXT            
    0000000101baa000-0000000101bab000 [
    4K] r-x/rwx SM=COW  /Applications/Safari.app/Contents/MacOS/Safari
    Application Specific Information:
    Process Model:
    Multiple Web Processes
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation
    0x00007fff93d227d6 __CFStringCreateImmutableFunnel3 + 886
    1   com.apple.CoreFoundation
    0x00007fff93d2244d CFStringCreateWithCString + 93
    2   com.apple.Foundation    
    0x00007fff970db7c7 -[NSString initWithUTF8String:] + 186
    3   com.apple.coreui        
    0x00007fff909a621f -[CUIStructuredThemeStore renditionWithKey:] + 1746
    4   com.apple.coreui        
    0x00007fff90993a6e -[CUIThemeFacet _renditionForSpecificKey:] + 157
    5   com.apple.coreui        
    0x00007fff90993ada -[CUIThemeFacet _rendition] + 80
    6   com.apple.coreui        
    0x00007fff90995624 -[CUIThemeFacet makeLayer] + 22
    7   com.apple.coreui        
    0x00007fff9093746d CUICoreThemeRenderer::MakeOrUpdateWindowFrameLayerNew(CUIDescriptor const*, CALayer**) + 4845
    8   com.apple.coreui        
    0x00007fff90937ce8 CUICoreThemeRenderer::CreateOrUpdateLayer(CUIDescriptor const*, CALayer**) + 188
    9   com.apple.coreui        
    0x00007fff90901501 CUIRenderer::CreateOrUpdateLayer(__CFDictionary const*, CALayer**) + 175
    10  com.apple.AppKit        
    0x00007fff931c8dd3 -[NSCompositeAppearance _callCoreUIWithBlock:] + 183
    11  com.apple.AppKit        
    0x00007fff931c6d5f -[NSAppearance _createOrUpdateLayer:options:] + 108
    12  com.apple.AppKit        
    0x00007fff92ec89cc -[NSVisualEffectView _cuiMakeOrUpdateBackgroundLayer:] + 151
    13  com.apple.AppKit        
    0x00007fff92ec8a91 -[NSVisualEffectView _updateBackgroundLayer] + 76
    14  com.apple.AppKit        
    0x00007fff92ec828e -[NSVisualEffectView _updateBackdropLayerForBlendingInsideWindow] + 275
    15  com.apple.AppKit        
    0x00007fff92ec92eb -[NSVisualEffectView _updateBackdropLayer] + 106
    16  com.apple.AppKit        
    0x00007fff92eca4e0 -[NSVisualEffectView updateLayer] + 220
    17  com.apple.AppKit        
    0x00007fff929da353 -[_NSViewBackingLayer display] + 399
    18  com.apple.QuartzCore    
    0x00007fff9455e641 CA::Layer::display_if_needed(CA::Transaction*) + 603
    19  com.apple.QuartzCore    
    0x00007fff9455dd7d CA::Layer::layout_and_display_if_needed(CA::Transaction*) + 35
    20  com.apple.QuartzCore    
    0x00007fff9455d50e CA::Context::commit_transaction(CA::Transaction*) + 242
    21  com.apple.QuartzCore    
    0x00007fff9455d164 CA::Transaction::commit() + 390
    22  com.apple.AppKit        
    0x00007fff92f99c41 -[NSThemeFrame _floatTitlebarAndToolbarFromInit:] + 104
    23  com.apple.AppKit        
    0x00007fff928f474e -[NSThemeFrame initWithFrame:styleMask:owner:] + 243
    24  com.apple.AppKit        
    0x00007fff928f2c96 -[NSWindow _commonInitFrame:styleMask:backing:defer:] + 614
    25  com.apple.AppKit        
    0x00007fff928f23fc -[NSWindow _initContent:styleMask:backing:defer:contentView:] + 1477
    26  com.apple.AppKit        
    0x00007fff92b2940e -[NSPanel _initContent:styleMask:backing:defer:contentView:] + 51
    27  com.apple.AppKit        
    0x00007fff928f1e2a -[NSWindow initWithContentRect:styleMask:backing:defer:] + 45
    28  com.apple.AppKit        
    0x00007fff92b293c1 -[NSPanel initWithContentRect:styleMask:backing:defer:] + 78
    29  com.apple.AppKit        
    0x00007fff928ef745 -[NSWindowTemplate nibInstantiate] + 567
    30  com.apple.AppKit        
    0x00007fff928c473b -[NSIBObjectData instantiateObject:] + 309
    31  com.apple.AppKit        
    0x00007fff92da6d01 -[NSIBObjectData nibInstantiateWithOwner:options:topLevelObjects:] + 452
    32  com.apple.AppKit        
    0x00007fff928b8f05 loadNib + 384
    33  com.apple.AppKit        
    0x00007fff92e26f80 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:options:withZone:ownerBundle:] + 313
    34  com.apple.AppKit        
    0x00007fff92e2767d +[NSBundle(NSNibLoadingInternal) _loadNibFile:externalNameTable:options:withZone:] + 150
    35  com.apple.AppKit        
    0x00007fff92bc93af _NXLoadNib + 196
    36  com.apple.AppKit        
    0x00007fff92bc8d8f -[NSAlert init] + 95
    37  com.apple.AppKit        
    0x00007fff92c089f3 +[NSAlert alertWithMessageText:defaultButton:alternateButton:otherButton:informativeTextW ithFormat:] + 131
    38  com.apple.AppKit        
    0x00007fff928da64d __55-[NSPersistentUIRestorer promptToIgnorePersistentState]_block_invoke + 1021
    39  com.apple.AppKit        
    0x00007fff928da20e -[NSApplication _suppressFinishLaunchingFromEventHandlersWhilePerformingBlock:] + 28
    40  com.apple.AppKit        
    0x00007fff928da1ad -[NSPersistentUIRestorer promptToIgnorePersistentState] + 247
    41  com.apple.AppKit        
    0x00007fff928d9e9a -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 255
    42  com.apple.AppKit        
    0x00007fff928d9c69 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 561
    43  com.apple.AppKit        
    0x00007fff928d96b5 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 244
    44  com.apple.Foundation    
    0x00007fff970cd458 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 290
    45  com.apple.Foundation    
    0x00007fff970cd2c9 _NSAppleEventManagerGenericHandler + 102
    46  com.apple.AE            
    0x00007fff93cb699c aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 531
    47  com.apple.AE            
    0x00007fff93cb6719 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 31
    48  com.apple.AE            
    0x00007fff93cb6623 aeProcessAppleEvent + 295
    49  com.apple.HIToolbox     
    0x00007fff9ab3737e AEProcessAppleEvent + 56
    50  com.apple.AppKit        
    0x00007fff928d5d76 _DPSNextEvent + 2665
    51  com.apple.AppKit        
    0x00007fff928d4e80 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    52  com.apple.Safari.framework  
    0x0000000101c2aad0 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 246
    53  com.apple.AppKit        
    0x00007fff928c8e23 -[NSApplication run] + 594
    54  com.apple.AppKit        
    0x00007fff928b42d4 NSApplicationMain + 1832
    55  libdyld.dylib           
    0x00007fff916615c9 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib  
    0x00007fff918b622e kevent64 + 10
    1   libdispatch.dylib       
    0x00007fff8ec7ca6a _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib  
    0x00007fff918b5946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff98d484a1 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib  
    0x00007fff918b5946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff98d484a1 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib  
    0x00007fff918b5946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff98d484a1 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib  
    0x00007fff918b5946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff98d484a1 start_wqthread + 13
    Thread 6:: WebCore: IconDatabase
    0   libsystem_kernel.dylib  
    0x00007fff918b65d6 pread + 10
    1   libsqlite3.dylib        
    0x00007fff97799855 readDbPage + 117
    2   libsqlite3.dylib        
    0x00007fff97797f92 sqlite3PagerAcquire + 1314
    3   libsqlite3.dylib        
    0x00007fff9788a831 checkTreePage + 257
    4   libsqlite3.dylib        
    0x00007fff9788ac84 checkTreePage + 1364
    5   libsqlite3.dylib        
    0x00007fff9788ac84 checkTreePage + 1364
    6   libsqlite3.dylib        
    0x00007fff977d34ac sqlite3VdbeExec + 67324
    7   libsqlite3.dylib        
    0x00007fff977c13df sqlite3_step + 735
    8   com.apple.WebCore       
    0x00000001037d5bc9 WebCore::SQLiteStatement::step() + 73
    9   com.apple.WebCore       
    0x0000000103e26a2c WebCore::IconDatabase::checkIntegrity() + 108
    10  com.apple.WebCore       
    0x00000001037d5314 WebCore::IconDatabase::performOpenInitialization() + 116
    11  com.apple.WebCore       
    0x00000001037d49b5 WebCore::IconDatabase::iconDatabaseSyncThread() + 325
    12  com.apple.JavaScriptCore
    0x0000000102996a9f ***::wtfThreadEntryPoint(void*) + 15
    13  libsystem_pthread.dylib 
    0x00007fff98d4a2fc _pthread_body + 131
    14  libsystem_pthread.dylib 
    0x00007fff98d4a279 _pthread_start + 176
    15  libsystem_pthread.dylib 
    0x00007fff98d484b1 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib  
    0x00007fff918b5946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff98d484a1 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib  
    0x00007fff918b5946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff98d484a1 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib  
    0x00007fff918b5946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff98d484a1 start_wqthread + 13
    Thread 10:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib  
    0x00007fff918b052e mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x00007fff918af69f mach_msg + 55
    2   com.apple.QuartzCore    
    0x00007fff94571d63 CA::Render::Server::server_thread(void*) + 198
    3   com.apple.QuartzCore    
    0x00007fff94571c96 thread_fun + 25
    4   libsystem_pthread.dylib 
    0x00007fff98d4a2fc _pthread_body + 131
    5   libsystem_pthread.dylib 
    0x00007fff98d4a279 _pthread_start + 176
    6   libsystem_pthread.dylib 
    0x00007fff98d484b1 thread_start + 13
    Thread 11:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib  
    0x00007fff918b052e mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x00007fff918af69f mach_msg + 55
    2   com.apple.CoreFoundation
    0x00007fff93d90b14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation
    0x00007fff93d8ffdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation
    0x00007fff93d8f838 CFRunLoopRunSpecific + 296
    5   com.apple.CFNetwork     
    0x00007fff966c9d20 +[NSURLConnection(Loader) _resourceLoadLoop:] + 434
    6   com.apple.Foundation    
    0x00007fff97113b7a __NSThread__main__ + 1345
    7   libsystem_pthread.dylib 
    0x00007fff98d4a2fc _pthread_body + 131
    8   libsystem_pthread.dylib 
    0x00007fff98d4a279 _pthread_start + 176
    9   libsystem_pthread.dylib 
    0x00007fff98d484b1 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib  
    0x00007fff918b5946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff98d484a1 start_wqthread + 13
    Thread 13 Crashed:
    0   libsystem_pthread.dylib 
    0x00007fff98d48695 _pthread_mutex_lock + 87
    1   libsystem_c.dylib       
    0x00007fff97044b78 vfprintf_l + 28
    2   libsystem_c.dylib       
    0x00007fff9703d620 fprintf + 186
    3   ???                     
    0x00000001089195dc 0 + 4438726108
    Thread 13 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff7ddec1d8  rcx: 0x00007fff7ddec1f0  rdx: 0x00000000000000a0
      rdi: 0x00007fff7ddec1f0  rsi: 0x00007fff98d48b14  rbp: 0x0000000108915e30  rsp: 0x0000000108915db0
       r8: 0x000000010891d000   r9: 0x0000000000000054  r10: 0x0000000000000000  r11: 0x0000000000000206
      r12: 0x00007fff7ddeb6b8  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000000000000
      rip: 0x00007fff98d48695  rfl: 0x0000000000010246  cr2: 0x0000000000000020
    Logical CPU:
    1
    Error Code: 
    0x00000004
    Trap Number:
    14
    Binary Images:
    0x101baa000 -   
    0x101baafff  com.apple.Safari (8.0.2 - 10600.2.5) <2225AE13-780E-3234-9A05-9DD6D94EE96C> /Applications/Safari.app/Contents/MacOS/Safari
    0x101bb4000 -   
    0x1024edff7  com.apple.Safari.framework (10600 - 10600.2.5) <70257BE2-5D89-3EAA-8863-269880160EEE> /System/Library/StagedFrameworks/Safari/Safari.framework/Versions/A/Safari
    0x10298c000 -   
    0x102e9fff3  com.apple.JavaScriptCore (10600 - 10600.2.1) <ABEF8FB3-6DC5-3FCF-9B4A-1DF6411063B0> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/Versions/A/Jav aScriptCore
    0x103006000 -   
    0x1032bafff  com.apple.WebKit (10600 - 10600.2.5) <11CA89A1-A002-3FEB-8046-B31E92003AED> /System/Library/StagedFrameworks/Safari/WebKit.framework/Versions/A/WebKit
    0x103596000 -   
    0x103596fff  com.apple.WebKit2 (10600 - 10600.2.5) <ED09F7D3-1F46-3925-8E11-D6AC3492658E> /System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/WebKit2
    0x10359c000 -   
    0x1036d8ffb  com.apple.WebKitLegacy (10600 - 10600.2.5) <0A88D3D6-F5BA-30F4-9D09-87DF653759FC> /System/Library/StagedFrameworks/Safari/WebKitLegacy.framework/Versions/A/WebKi tLegacy
    0x1037d0000 -   
    0x104775ff7  com.apple.WebCore (10600 - 10600.2.1) <628CB849-0E8D-3071-98A3-55E7D24087DF> /System/Library/StagedFrameworks/Safari/WebCore.framework/Versions/A/WebCore
    0x109a68000 -   
    0x109a68fef +cl_kernels (???) <5D2FFD5C-1935-4FC3-A68B-45B3A79820AB> cl_kernels
    0x10a6c9000 -   
    0x10a6c9ff5 +cl_kernels (???) <D54CBFFF-56F9-497E-842E-1597661FDBDC> cl_kernels
    0x10a6cb000 -   
    0x10a7b1fef  unorm8_bgra.dylib (2.4.5) <90797750-141F-3114-ACD0-A71363968678> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    0x7fff64f4b000 -
    0x7fff64f81837  dyld (353.2.1) <4696A982-1500-34EC-9777-1EF7A03E2659> /usr/lib/dyld
    0x7fff8c553000 -
    0x7fff8c555fff  com.apple.EFILogin (2.0 - 2) <F0269EE2-3686-3A8A-8B83-F86974E35E90> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x7fff8c556000 -
    0x7fff8cdadff3  com.apple.CoreGraphics (1.600.0 - 772) <6364CBE3-3635-3A53-B448-9D19EF9FEA96> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff8cdae000 -
    0x7fff8d028fff  com.apple.CoreData (110 - 526) <AEEDAF00-D38F-3A15-B3C9-73732940CC55> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff8d029000 -
    0x7fff8d02eff7  libunwind.dylib (35.3) <BE7E51A0-B6EA-3A54-9CCA-9D88F683A6D6> /usr/lib/system/libunwind.dylib
    0x7fff8d0db000 -
    0x7fff8d127fff  com.apple.corelocation (1486.17 - 1615.21) <DB68CEB9-0D51-3CB9-86A4-B0400CE6C515> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff8d272000 -
    0x7fff8d272fff  libOpenScriptingUtil.dylib (162) <EFD79173-A9DA-3AE6-BE15-3948938204A6> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff8d310000 -
    0x7fff8d338fff  libsystem_info.dylib (459) <B85A85D5-8530-3A93-B0C3-4DEC41F79478> /usr/lib/system/libsystem_info.dylib
    0x7fff8d367000 -
    0x7fff8d40dfff  com.apple.PDFKit (3.0 - 3.0) <C55D8F39-561D-32C7-A701-46F76D6CC151> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x7fff8d420000 -
    0x7fff8d6c8ff7  com.apple.RawCamera.bundle (6.02 - 768) <3156D0F8-335C-3380-A849-D47ED4163D3A> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff8d6cc000 -
    0x7fff8d6cfff7  com.apple.AppleSystemInfo (3.0 - 3.0) <E54DA0B2-3515-3B1C-A4BD-54A0B02B5612> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x7fff8d6d0000 -
    0x7fff8d6ebfff  com.apple.PackageKit.PackageUIKit (3.0 - 434) <BE4B6C6F-4A32-3DB1-B81B-EF9ADD70E6EA> /System/Library/PrivateFrameworks/PackageKit.framework/Frameworks/PackageUIKit. framework/Versions/A/PackageUIKit
    0x7fff8d6f9000 -
    0x7fff8d6fbfff  com.apple.loginsupport (1.0 - 1) <35A2A071-606C-39A5-8C11-E4CAF98D934C> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
    0x7fff8dfec000 -
    0x7fff8dff0fff  libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib
    0x7fff8dff1000 -
    0x7fff8e069ff7  com.apple.SystemConfiguration (1.14 - 1.14) <C269BCFD-ACAB-3331-BC7C-0430F0E84817> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff8e06a000 -
    0x7fff8e06fff7  com.apple.MediaAccessibility (1.0 - 61) <00A3E0B6-79AC-387E-B282-AADFBD5722F6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
    0x7fff8e0c8000 -
    0x7fff8e13cfff  com.apple.ShareKit (1.0 - 323) <9FC7280E-DB42-37F0-AE57-29E28C9B4E16> /System/Library/PrivateFrameworks/ShareKit.framework/Versions/A/ShareKit
    0x7fff8e13d000 -
    0x7fff8e189ff7  libcups.2.dylib (408) <9CECCDE3-51D7-3028-830C-F58BD36E3317> /usr/lib/libcups.2.dylib
    0x7fff8e18a000 -
    0x7fff8e19ffff  com.apple.ToneKit (1.0 - 1) <CA375645-8DE1-3DE8-A2E0-0537849DF59B> /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit
    0x7fff8e1a0000 -
    0x7fff8e292fff  libxml2.2.dylib (26) <B834E7C8-EC3E-3382-BC5A-DA38DC4D720C> /usr/lib/libxml2.2.dylib
    0x7fff8e2a6000 -
    0x7fff8e2e0ffb  com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x7fff8e2e1000 -
    0x7fff8e382ff7  com.apple.Bluetooth (4.3.1 - 4.3.1f2) <EDC78AEE-28E7-324C-9947-41A0814A8154> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff8e383000 -
    0x7fff8e511fff  libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff8e512000 -
    0x7fff8e56aff7  com.apple.accounts.AccountsDaemon (113 - 113) <E0074FA1-1872-3F20-8445-3E2FEA290CFB> /System/Library/PrivateFrameworks/AccountsDaemon.framework/Versions/A/AccountsD aemon
    0x7fff8e597000 -
    0x7fff8e60bff3  com.apple.securityfoundation (6.0 - 55126) <E7FB7A4E-CB0B-37BA-ADD5-373B2A20A783> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff8e6b8000 -
    0x7fff8e6e9fff  libtidy.A.dylib (15.15) <37FC944D-271A-386A-9ADD-FA33AD48F96D> /usr/lib/libtidy.A.dylib
    0x7fff8e6ea000 -
    0x7fff8e701ff7  libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLinearAlgebra.dylib
    0x7fff8e702000 -
    0x7fff8e709fff  com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff8e736000 -
    0x7fff8eb66fff  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff8eb67000 -
    0x7fff8ebd3fff  com.apple.framework.CoreWLAN (5.0 - 500.35.2) <ACBAAB0A-BCC7-37CF-AAFB-2DA1733F2682> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff8ebd4000 -
    0x7fff8ebdcfff  libMatch.1.dylib (24) <C917279D-33C2-38A8-9BDD-18F3B24E6FBD> /usr/lib/libMatch.1.dylib
    0x7fff8ec52000 -
    0x7fff8ec55fff  com.apple.IOSurface (97 - 97) <D4B4D2B2-7B16-3174-9EA6-55E0A10B452D> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff8ec56000 -
    0x7fff8ec59fff  com.apple.xpc.ServiceManagement (1.0 - 1) <7E9E6BB7-AEE7-3F59-BAC0-59EAF105D0C8> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x7fff8ec5a000 -
    0x7fff8ec77ffb  libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
    0x7fff8ec78000 -
    0x7fff8eca2ff7  libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
    0x7fff8eca3000 -
    0x7fff8edd3fff  com.apple.UIFoundation (1.0 - 1) <8E030D93-441C-3997-9CD2-55C8DFAC8B84> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundatio n
    0x7fff8edd4000 -
    0x7fff8ee45ff7  com.apple.framework.IOKit (2.0.2 - 1050.1.21) <ED3B0B22-AACC-303B-BFC8-20ECD1AF6BA2> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff8ef41000 -
    0x7fff8efc2ff3  com.apple.CoreUtils (1.0 - 101.1) <45E5E51B-947E-3F2D-BD9C-480E72555C23> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x7fff8efc3000 -
    0x7fff8f02aff7  com.apple.framework.CoreWiFi (3.0 - 300.4) <19269C1D-EB29-384A-83F3-7DDDEB7D9DAD> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff8f02b000 -
    0x7fff8f05bfff  libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
    0x7fff8f05c000 -
    0x7fff8f05cfff  com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff8f075000 -
    0x7fff8f0bffff  com.apple.DiskManagement (7.0 - 847) <A57A181E-7C50-38F6-BE0A-4F437BB8C45F> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
    0x7fff8f11b000 -
    0x7fff8f486fff  com.apple.VideoToolbox (1.0 - 1562.19) <C08228FE-FA1E-394C-98CB-2AFD8E566C3F> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff8f487000 -
    0x7fff8f4c7fff  com.apple.CloudDocs (1.0 - 280.1.2) <49E75BC1-6556-36B4-804A-E49BC41241CF> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
    0x7fff8f4c8000 -
    0x7fff8f559ff7  libCoreStorage.dylib (471) <5CA37ED3-320C-3469-B4D2-6F045AFE03A1> /usr/lib/libCoreStorage.dylib
    0x7fff8f55a000 -
    0x7fff8f841ffb  com.apple.CoreServices.CarbonCore (1108.1 - 1108.1) <55A16172-ACC0-38B7-8409-3CB92AF33973> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff8f883000 -
    0x7fff8f88cff3  com.apple.CommonAuth (4.0 - 2.0) <F4C266BE-2E0E-36B4-9DE7-C6B4BF410FD7> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff8f88d000 -
    0x7fff8faf5ffb  com.apple.security (7.0 - 57031.1.35) <96141D1F-614E-32C4-8AC2-F47481F23F43> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff8faf6000 -
    0x7fff8fb10ff3  com.apple.Ubiquity (1.3 - 313) <DF56A657-CC6E-3BE2-86A0-71F07127724C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x7fff8fb11000 -
    0x7fff8fbf4fff  libcrypto.0.9.8.dylib (52) <7208EEE2-C090-383E-AADD-7E1BD1321BEC> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff8fbf5000 -
    0x7fff8fc0efff  com.apple.openscripting (1.4 - 162) <80DFF366-B950-3F79-903F-99DA0FFDB570> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff8fc13000 -
    0x7fff8fc18ff7  com.apple.ServerInformation (2.0 - 1) <020F4A0E-F1A2-38AE-8F2B-22200CF1FC82> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
    0x7fff8fc19000 -
    0x7fff8fc1ffff  com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <BB2D573F-0A01-379F-A2BA-3C454EDCB111> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff8fc20000 -
    0x7fff8fca2fff  com.apple.PerformanceAnalysis (1.0 - 1) <2FC0F303-B672-3E64-A978-AB78EAD98395> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x7fff8fca3000 -
    0x7fff8fcb7ff7  com.apple.MultitouchSupport.framework (260.30 - 260.30) <28728A7D-E048-3B14-9932-839A87D381FE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff8fcb8000 -
    0x7fff8fcb9fff  libquit.dylib (182) <62510786-F686-3AC4-B315-D05A4B7A896F> /usr/lib/libquit.dylib
    0x7fff8fcba000 -
    0x7fff8fcc8ff7  com.apple.ToneLibrary (1.0 - 1) <3E6D130D-77B0-31E1-98E3-A6052AB09824> /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary
    0x7fff8fcc9000 -
    0x7fff8fcceff7  libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
    0x7fff8fccf000 -
    0x7fff8fd15ff7  libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib
    0x7fff8fd16000 -
    0x7fff8fd1dff7  com.apple.phonenumbers (1.1.1 - 105) <AE39B6FE-05AB-3181-BB2A-4D50A8B392F2> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
    0x7fff8fd1e000 -
    0x7fff8fd1efff  com.apple.Cocoa (6.8 - 21) <EAC0EA1E-3C62-3B28-A941-5D8B1E085FF8> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff8fd1f000 -
    0x7fff8fd21fff  com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/Cor eDuetDebugLogging
    0x7fff8fdfd000 -
    0x7fff8fdfffff  com.apple.OAuth (25 - 25) <EE765AF0-2BB6-3689-9EAA-689BF1F02A0D> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
    0x7fff8fe00000 -
    0x7fff8fe96ffb  com.apple.CoreMedia (1.0 - 1562.19) <F79E0E9D-4ED1-3ED1-827A-C3C5377DB1D7> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff8fe97000 -
    0x7fff8fee8ff7  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <AF72B06E-C6C1-3FAE-8B47-AF461CAE0E22> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff8fee9000 -
    0x7fff8ff2bfff  com.apple.sociald.Social (87 - 87) <A32F7CCA-6D52-3F4E-8779-548E07A84738> /System/Library/Frameworks/Social.framework/Versions/A/Social
    0x7fff8ff2c000 -
    0x7fff8ff2dff7  com.apple.print.framework.Print (10.0 - 265) <3BC4FE7F-78A0-3E57-8F4C-520E7EFD36FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff8ff2e000 -
    0x7fff90099ff7  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5C6DBEB4-F2EA-3262-B9FC-AFB89404C1DA> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff9009a000 -
    0x7fff900b1fff  com.apple.login (3.0 - 3.0) <95726FE9-E732-3A3C-A7A1-2566678967D3> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
    0x7fff900b2000 -
    0x7fff900c3ff7  libsystem_coretls.dylib (35.1.2) <EBBF7EF6-80D8-3F8F-825C-B412BD6D22C0> /usr/lib/system/libsystem_coretls.dylib
    0x7fff900c4000 -
    0x7fff900c4fff  com.apple.quartzframework (1.5 - 1.5) <4944127A-F319-3689-AAEC-58591D3CAC07> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff900c5000 -
    0x7fff900c5fff  com.apple.Accelerate (1.10 - Accelerate 1.10) <227E2491-1DDB-336F-BF83-773CECEC66F1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff900c6000 -
    0x7fff90157fff  com.apple.cloudkit.CloudKit (259.2.3 - 259.2.3) <6F955140-D522-32B3-B34B-BD94C5D94E7A> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
    0x7fff90158000 -
    0x7fff90172ff7  libextension.dylib (55.1) <ECBDCC15-FA19-3578-961C-B45FCC994BAF> /usr/lib/libextension.dylib
    0x7fff90173000 -
    0x7fff90442ff3  com.apple.CoreImage (10.0.33) <6E3DDA29-718B-3BDB-BFAF-F8C201BF93A4> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x7fff90443000 -
    0x7fff9045fff7  libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
    0x7fff90460000 -
    0x7fff90464fff  libsystem_stats.dylib (163.1.4) <1DB04436-5974-3F16-86CC-5FF5F390339C> /usr/lib/system/libsystem_stats.dylib
    0x7fff90465000 -
    0x7fff9064a267  libobjc.A.dylib (646) <3B60CD90-74A2-3A5D-9686-B0772159792A> /usr/lib/libobjc.A.dylib
    0x7fff9064b000 -
    0x7fff90678fff  com.apple.Accounts (113 - 113) <3145FCC2-D297-3DD1-B74B-9E7DBB0EE33C> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
    0x7fff90679000 -
    0x7fff90687fff  com.apple.AddressBook.ContactsFoundation (9.0 - 1499) <1F879F4E-369A-38F7-A768-8B9009617479> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
    0x7fff90688000 -
    0x7fff906d6fff  libcurl.4.dylib (83.1.2) <337A1FF8-E8B1-3173-9F29-C0D4C851D8E1> /usr/lib/libcurl.4.dylib
    0x7fff9070b000 -
    0x7fff907aadf7  com.apple.AppleJPEG (1.0 - 1) <9BB3D7DF-630A-3E1C-A124-12D6C4D0DE70> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x7fff907e4000 -
    0x7fff907f3fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <D1E527E4-C561-352F-9457-E8C50232793C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff907f4000 -
    0x7fff90812ff7  com.apple.addressbook.vCard (9.0 - 1499) <B1BC7C0A-A783-3574-8248-BC689F43A0A0> /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard
    0x7fff90813000 -
    0x7fff9081cfff  libGFXShared.dylib (11.0.7) <EC449E3A-D9D2-3494-8B6C-DEB7B11EEDAB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff9081d000 -
    0x7fff90821fff  libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
    0x7fff90855000 -
    0x7fff908a6ff7  com.apple.AppleVAFramework (5.0.31 - 5.0.31) <762E9358-A69A-3D63-8282-3B77FBE0147E> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff908c6000 -
    0x7fff908e0ff7  com.apple.AppleVPAFramework (1.0.30 - 1.0.30) <D47A2125-C72D-3298-B27D-D89EA0D55584> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
    0x7fff908f8000 -
    0x7fff90a1ffff  com.apple.coreui (2.1 - 305) <BB430677-D1F7-38DD-8F05-70E54352B8B5> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff90a45000 -
    0x7fff90a4dffb  com.apple.CoreServices.FSEvents (1210 - 1210) <782A9C69-7A45-31A7-8960-D08A36CBD0A7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvent s.framework/Versions/A/FSEvents
    0x7fff90a4e000 -
    0x7fff90a54fff  libsystem_trace.dylib (72.1.3) <A9E6B7D8-C327-3742-AC54-86C94218B1DF> /usr/lib/system/libsystem_trace.dylib
    0x7fff90a55000 -
    0x7fff90a70ff7  libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib
    0x7fff91513000 -
    0x7fff91554fff  libGLU.dylib (11.0.7) <8037342E-1ECD-385F-B4C3-545CE97B76AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff91555000 -
    0x7fff9157dfff  libxpc.dylib (559.1.22) <9437C02E-A07B-38C8-91CB-299FAA63083D> /usr/lib/system/libxpc.dylib
    0x7fff9157e000 -
    0x7fff9158ffff  libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
    0x7fff91599000 -
    0x7fff915f7fff  com.apple.StoreFoundation (1.0 - 1) <50F9E283-FCE4-306C-AF5D-D0AEA434C04E> /System/Library/PrivateFrameworks/StoreFoundation.framework/Versions/A/StoreFou ndation
    0x7fff91603000 -
    0x7fff91603ff7  libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
    0x7fff9163a000 -
    0x7fff91654ff7  com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff91655000 -
    0x7fff9165dfe7  libcldcpuengine.dylib (2.4.5) <DF810F9A-1755-3283-82C3-D8192BCD8016> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0x7fff9165e000 -
    0x7fff91661ff7  libdyld.dylib (353.2.1) <19FAF435-C165-3374-9DEF-D7BBA7D61DB6> /usr/lib/system/libdyld.dylib
    0x7fff91742000 -
    0x7fff9174dfff  libcommonCrypto.dylib (60061) <D381EBC6-69D8-31D3-8084-5A80A32CB748> /usr/lib/system/libcommonCrypto.dylib
    0x7fff9174e000 -
    0x7fff91757ff7  libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib
    0x7fff91758000 -
    0x7fff917a5ff3  com.apple.print.framework.PrintCore (10.0 - 451) <3CA58254-D14F-3913-9DFB-CAC499570CC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff917a6000 -
    0x7fff917c0ff7  liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
    0x7fff917c1000 -
    0x7fff917e1fff  com.apple.IconServices (47.1 - 47.1) <E83DFE3B-6541-3736-96BB-26DC5D0100F1> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
    0x7fff917e2000 -
    0x7fff91866ff7  com.apple.ViewBridge (99.1 - 99.1) <B36779D4-BEAF-36DD-83AF-E67F639BFF36> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
    0x7fff91867000 -
    0x7fff91872fdb  com.apple.AppleFSCompression (68.1.1 - 1.0) <F30E8CA3-50B3-3B44-90A0-803C5C308BFE> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x7fff91873000 -
    0x7fff9189efff  com.apple.DictionaryServices (1.2 - 229) <6789EC43-CADA-394D-8FE8-FC3A2DD136B9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff9189f000 -
    0x7fff918bcfff  libsystem_kernel.dylib (2782.1.97) <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B> /usr/lib/system/libsystem_kernel.dylib
    0x7fff918bd000 -
    0x7fff91933fe7  libcorecrypto.dylib (233.1.2) <E1789801-3985-3949-B736-6B3378873301> /usr/lib/system/libcorecrypto.dylib
    0x7fff91934000 -
    0x7fff9194aff7  libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/lib/system/libsystem_asl.dylib
    0x7fff9194b000 -
    0x7fff9194efff  com.apple.help (1.3.3 - 46) <CA4541F4-CEF5-355C-8F1F-EA65DC1B400F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff91c04000 -
    0x7fff91c07ff7  com.apple.Mangrove (1.0 - 1) <2AF1CAE9-8BF9-33C4-9C1B-123DBAF1522B> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
    0x7fff91c08000 -
    0x7fff91c36fff  com.apple.CoreServicesInternal (221.1 - 221.1) <51BAE6D2-84F3-392A-BFEC-A3B47B80A3D2> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x7fff91c37000 -
    0x7fff91c8affb  libAVFAudio.dylib (118.3) <CC124063-34DF-39E3-921A-2BA3EA8D6F38> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
    0x7fff91dff000 -
    0x7fff91f5dff3  com.apple.avfoundation (2.0 - 889.10) <4D1735C4-D055-31E9-8051-FED29F41F4F6> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x7fff91fb4000 -
    0x7fff91ff4ff7  libGLImage.dylib (11.0.7) <7CBCEB4B-D22F-3116-8B28-D1C22D28C69D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff91ff5000 -
    0x7fff92011ff7  com.apple.pluginkit.framework (1.0 - 1) <566FECEA-620F-3E70-8B87-C69A4486811F> /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit
    0x7fff92012000 -
    0x7fff92465fc7  com.apple.vImage (8.0 - 8.0) <33BE7B31-72DB-3364-B37E-C322A32748C5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff92466000 -
    0x7fff92499ff7  com.apple.MediaKit (16 - 757) <345EDAFE-3E39-3B0F-8D84-54657EC4396D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x7fff924a7000 -
    0x7fff924b1fff  com.apple.IntlPreferences (2.0 - 150.1) <F2DE1784-F780-3E3F-A626-D9CBD38F20EE> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPref erences
    0x7fff924b2000 -
    0x7fff924b9ff7  libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
    0x7fff924e5000 -
    0x7fff924f0ff7  com.apple.CommerceCore (1.0 - 376.0.5) <57E5C067-52F6-3854-86C0-D878EDA24B55> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x7fff9252e000 -
    0x7fff9259dfff  com.apple.SearchKit (1.4.0 - 1.4.0) <BFD6D876-36BA-3A3B-9F15-3E2F7DE6E89D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff92602000 -
    0x7fff9263bfff  com.apple.AirPlaySupport (2.0 - 215.10) <E4159036-4C38-3F28-8AF3-4F074DAF01AC> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySu pport
    0x7fff9263c000 -
    0x7fff928a6ff7  com.apple.imageKit (2.6 - 838) <DDFE019E-DF3E-37DA-AEC0-9182454B7312> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x7fff928a7000 -
    0x7fff928a9ff7  com.apple.SecCodeWrapper (4.0 - 238) <F450AB10-B0A4-3B55-A1B9-563E55C99333> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
    0x7fff928aa000 -
    0x7fff928b0ff7  libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff928b1000 -
    0x7fff933f2fff  com.apple.AppKit (6.9 - 1343.16) <C98DB43F-4245-3E6E-A4EE-37DAEE33E174> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff933f3000 -
    0x7fff933f5ff7  com.apple.securityhi (9.0 - 55006) <B1E09986-7AF0-3BD1-BAA1-B5514DFB7CD1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff933f6000 -
    0x7fff93428ff3  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A07-F8E4-3837-BCA9-225F460EDA81> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0x7fff93429000 -
    0x7fff9342afff  libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff9342b000 -
    0x7fff93436ff7  com.apple.AppSandbox (4.0 - 238) <BC5EE1CA-764A-303D-9989-4041C1291026> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x7fff93437000 -
    0x7fff93437ff7  libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
    0x7fff93464000 -
    0x7fff93466ff7  libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
    0x7fff934e5000 -
    0x7fff9351dffb  libsystem_network.dylib (411) <C0B2313D-47BE-38A9-BEE6-2634A4F5E14B> /usr/lib/system/libsystem_network.dylib
    0x7fff93b86000 -
    0x7fff93ca8ff7  com.apple.LaunchServices (644.12 - 644.12) <D7710B20-0561-33BB-A3C8-463691D36E02> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff93ca9000 -
    0x7fff93d08ff3  com.apple.AE (681 - 681) <7F544183-A515-31A8-B45F-89A167F56216> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff93d10000 -
    0x7fff93d1bff7  com.apple.DirectoryService.Framework (10.10 - 187) <813211CD-725D-31B9-ABEF-7B28DE2CB224> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x7fff93d1c000 -
    0x7fff93d1dffb  libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
    0x7fff93d1e000 -
    0x7fff940b4fff  com.apple.CoreFoundation (6.9 - 1151.16) <F2B088AF-A5C6-3FAE-9EB4-7931AF6359E4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff94313000 -
    0x7fff9433ffff  com.apple.framework.SystemAdministration (1.0 - 1.0) <F2A164C7-4813-3F27-ABF7-810A5F4FA51D> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
    0x7fff94340000 -
    0x7fff94389ff3  com.apple.HIServices (1.22 - 519) <59D78E07-C3F1-3272-88F1-876B836D5517> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff9438a000 -
    0x7fff94392ff7  com.apple.AppleSRP (5.0 - 1) <01EC5144-D09A-3D6A-AE35-F6D48585F154> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x7fff94393000 -
    0x7fff94421ff7  com.apple.CorePDF (4.0 - 4) <9CD7EC6D-3593-3D60-B04F-75F612CCB99A> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff94422000 -
    0x7fff944e5ff7  libvMisc.dylib (512) <A4E39464-52EA-34CB-9FFE-53E79B3C65F5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fff944f1000 -
    0x7fff94510fff  com.apple.CoreDuet (1.0 - 1) <36AA9FD5-2685-314D-B364-3FA4688D86BD> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
    0x7fff94511000 -
    0x7fff94536ff7  libJPEG.dylib (1231) <35F13BD9-AA92-3510-B5BB-420DA15AE7F2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff94537000 -
    0x7fff94549fff  libsasl2.2.dylib (193) <E523DD05-544B-3430-8AA9-672408A5AF8B> /usr/lib/libsasl2.2.dylib
    0x7fff9454a000 -
    0x7fff946faff7  com.apple.QuartzCore (1.10 - 361.11) <7382E4A9-10B0-3877-B9D7-FA84DC71BA55> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff946fb000 -
    0x7fff9471efff  com.apple.Sharing (328.3 - 328.3) <FDEE49AD-8804-3760-9C14-8D1D10BBEA37> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff9471f000 -
    0x7fff9

    Genieo Adware is installed.  Removing it will help.
    If you have another browser:
         Use  free  AdwareMedic by clicking “Download ” from here
         http://www.adwaremedic.com/index.php
         Install , open,  and run it by clicking “Scan for Adware” button   to remove adware.
         Once done, quit AdwareMedic by clicking AdwareMedic in the menu bar and selecting
        “Quit AdwareMedic”.
                   or
    If you don’t have another browser:
         Use another Mac or an iPad.
         Open the article,either print it or  email the  contents to yourself.
         Remove adware  manually  by following the “HowTo” from Apple. 
        “Remove Genieo, also known as InstallMac”
        http://support.apple.com/en-us/HT203987
          Safari > Preferences > Extensions
        Turn those off and relaunch Safari to test.
        Turn those on one by one and test.

  • Error in Remote Web Access - "An unexpected error occurred. Please try again. If the problem continues, contact the person who manages your server."

    I have set up the RWA and I can log in to the web console with my server account. However when I click on any of the shared folders I get this error:
    An unexpected error occurred.  Please try again.  If the problem continues, contact the person who manages your server.
    Does anyone know how to troubleshoot this?
    Regards,
    Maciek

    I had this very same issue with one of our customer's servers that was running Windows Server Essentials. I ended up calling Microsoft about the issue. I hope this helps someone. This originally appeared on my blog: http://techspeeder.com/2014/01/14/remote-web-access-error-an-unexpected-error-occurred/
    Troubleshooting Steps:
    1.  We were getting unexpected errors while accessing shared folders remotely
    2.  The tech found IIS handlers were missing
    3.  She went to IIS > server level ( parent level) and added managed handler mapping  :
    Name: svc-Integrated-4.0
    Request path: *.svc
    Executable: System.ServiceModel.Activation.ServiceHttpHandlerFactory, System.ServiceModel.Activation, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    4. Added script mapping:
    Name: svc-ISAPI-4.0_64bit
    Request path: *.svc
    Executable: windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll
    Name: svc-ISAPI-4.0_32bit
    Request path: *.svc
    Executable: windir%\Microsoft.NET\Framework32\v4.0.30319\aspnet_isapi.dll
    5. Ran IISreset.
    6. We were able to access resources in Remote access, then.

  • Scheduled report failures - Unexpected error getting the HTTP response

    Getting this error when scheduled report executes:
    Unexpected error getting the HTTP response stream while generating report: http://cdmdb1c.nam.nsroot.net:4889/em/console/reports/render

    Hi..
    Thanks for the comment.
    Below is how my web.xml entry looks like.
    The requirement is to send a 404 error response and that will be handled by a servlet which inturn writes the output to the response object.
         <servlet>
              <servlet-name>ErrorPageServlet</servlet-name>
              <servlet-class>com.test.ErrorPageServlet</servlet-class>
         </servlet>
         <servlet-mapping>
              <servlet-name>ErrorPageServlet</servlet-name>
              <url-pattern>/error</url-pattern>
         </servlet-mapping>
         <error-page>
              <error-code>404</error-code>
              <location>/error</location>
         </error-page>>>
    the first option to turn off the "show friendly html error pages" works fine.
    It would be better if I can get a different solution

  • Java Plug-In - An unexpected error has been detected by HotSpot Virtual Mac

    Please help as I have received the following hs_err log error:
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x2f747761, pid=1120, tid=1680
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_12-b03 mixed mode)
    # Problematic frame:
    # C 0x2f747761
    --------------- T H R E A D ---------------
    Current thread (0x1016aeb0): JavaThread "main" [_thread_in_native, id=1680]
    siginfo: ExceptionCode=0xc0000005, reading address 0x2f747761
    Registers:
    EAX=0x0b32e960, EBX=0x0664ecc0, ECX=0x00000000, EDX=0x6d33cc08
    ESP=0x0ff8e314, EBP=0x0ff8e348, ESI=0x0b0555e0, EDI=0x0b0555e4
    EIP=0x2f747761, EFLAGS=0x00010246
    Top of Stack: (sp=0x0ff8e314)
    0x0ff8e314: 6d31845e 0b0555e0 0b0555e4 7c809c65
    0x0ff8e324: 0664ecc0 0664ecc0 80004005 000003d8
    0x0ff8e334: 0ff8df38 0ff8e458 6d318bfe 6d31a790
    0x0ff8e344: 00000000 0ff8e364 6d3320e3 0b0555e4
    0x0ff8e354: 0664ecc0 0ff8e3dc 00000001 1018addc
    0x0ff8e364: 0ff8e38c 6d33659f 00000433 00000000
    0x0ff8e374: 0664ecc0 0ff8e388 00000000 1018addc
    0x0ff8e384: 0b0555e4 00000001 0ff8e3d4 6d338fd9
    Instructions: (pc=0x2f747761)
    0x2f747751:
    [error occurred during error reporting, step 100, id 0xc0000005]
    Stack: [0x0fe90000,0x0ff90000), sp=0x0ff8e314, free space=1016k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C 0x2f747761
    C [jpiexp32.dll+0x20e3]
    C [jpiexp32.dll+0x659f]
    C [jpiexp32.dll+0x8fd9]
    C [USER32.dll+0x8734]
    C [USER32.dll+0x8816]
    C [USER32.dll+0x89cd]
    C [USER32.dll+0x96c7]
    C [jpiexp32.dll+0xa2f1]
    j sun.plugin.services.WPlatformService.waitEvent(II)V+0
    j sun.plugin.viewer.frame.IExplorerEmbeddedFrame.destroy()V+74
    v ~StubRoutines::call_stub
    V [jvm.dll+0x74424]
    V [jvm.dll+0xae595]
    V [jvm.dll+0x74331]
    V [jvm.dll+0x77c11]
    V [jvm.dll+0x790fc]
    C [jpiexp32.dll+0x4060]
    C [jpiexp32.dll+0x5095]
    C [jpiexp32.dll+0x24ed]
    C [jpiexp32.dll+0x259b]
    C [jpiexp32.dll+0x74ba]
    C [mshtml.dll+0x2782a9]
    C [mshtml.dll+0x279895]
    C [mshtml.dll+0x79d01]
    C [mshtml.dll+0x9a6b5]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j sun.plugin.services.WPlatformService.waitEvent(II)V+0
    j sun.plugin.viewer.frame.IExplorerEmbeddedFrame.destroy()V+74
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x0b0e10a8 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=2696]
    0x10123570 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=3444]
    0x0b27a478 JavaThread "Cache Cleanup Thread" [_thread_blocked, id=3912]
    0x0b43df50 JavaThread "Main Console Writer" [_thread_blocked, id=832]
    0x0b435c90 JavaThread "AWT-Windows" daemon [_thread_in_native, id=1376]
    0x0b00bea8 JavaThread "AWT-Shutdown" [_thread_blocked, id=3236]
    0x0b2d6ed8 JavaThread "CompilerThread0" daemon [_thread_blocked, id=3988]
    0x101668e8 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2736]
    0x0b42a3f0 JavaThread "Finalizer" daemon [_thread_blocked, id=2428]
    0x0b337708 JavaThread "Reference Handler" daemon [_thread_blocked, id=3560]
    =>0x1016aeb0 JavaThread "main" [_thread_in_native, id=1680]
    Other Threads:
    0x067be668 VMThread [id=792]
    0x0b24ab80 WatcherThread [id=3080]
    VM state:not at safepoint (normal execution)

    It looks like there is a bug in your JDBC driver causing a crash in its native code. You should contact the vendor supplying the driver.

  • JVM CRASH with the error msg  An unexpected error has been detected by HotS

    Iam using Jboss 4.2.2 for my application
    the JVM is crashing with the following msg when i call a function in a DLL (JNI)
    the error msg :
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d963733, pid=3356, tid=3544
    # Java VM: Java HotSpot(TM) Server VM (1.5.0_07-b03 mixed mode)
    # Problematic frame:
    # V [jvm.dll+0x93733]
    # An error report file with more information is saved as hs_err_pid3356.log
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    Press any key to continue . . .
    and the log file generated:
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d963733, pid=3356, tid=3544
    # Java VM: Java HotSpot(TM) Server VM (1.5.0_07-b03 mixed mode)
    # Problematic frame:
    # V [jvm.dll+0x93733]
    --------------- T H R E A D ---------------
    Current thread (0x00991488): VMThread [id=3544]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000440
    Registers:
    EAX=0x00000440, EBX=0x48284758, ECX=0x2cbefa5c, EDX=0x6dbcd170
    ESP=0x2cbef9c4, EBP=0x000001c4, ESI=0x3800d3a4, EDI=0x2cbefa5c
    EIP=0x6d963733, EFLAGS=0x00010283
    Top of Stack: (sp=0x2cbef9c4)
    0x2cbef9c4: 2cbefa5c 3800d3a0 6d982aab 3800d3a4
    0x2cbef9d4: 2cbefa5c 2cbefa5c 0092a538 0092a538
    0x2cbef9e4: 009449d0 6db4ff25 2cbefa5c 0092a7d0
    0x2cbef9f4: 6d995c41 2cbefa5c 0092a538 0092a7d0
    0x2cbefa04: 00000000 0092a538 6d964252 00000000
    0x2cbefa14: 00000001 00000000 00000001 2cbefaa8
    0x2cbefa24: 2cbefa5c 0092a538 0092a580 2cbefbfc
    0x2cbefa34: 00990b70 0003f758 08bdef90 6dbcd110
    Instructions: (pc=0x6d963733)
    0x6d963723: 24 08 57 8b f9 8b 06 85 c0 74 3e 3b 47 1c 73 39
    0x6d963733: 8b 08 83 e1 03 80 f9 03 75 06 8b 00 24 fc eb 0a
    Stack: [0x2bcf0000,0x2cbf0000), sp=0x2cbef9c4, free space=15358k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [jvm.dll+0x93733]
    [error occurred during error reporting, step 120, id 0xc0000005]
    VM_Operation (0x65dbee54): generation collection for allocation, mode: safepoint, requested by thread 0x496f2dd0
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x35f27498 JavaThread "AWT-Windows" daemon [_thread_in_native, id=3508]
    0x3178fde8 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=748]
    0x496f2dd0 JavaThread "http-0.0.0.0-8080-3" daemon [_thread_blocked, id=3044]
    0x356c4008 JavaThread "IdleRemover" daemon [_thread_blocked, id=2832]
    0x496bdae0 JavaThread "http-0.0.0.0-8080-2" daemon [_thread_blocked, id=2452]
    0x31713dc0 JavaThread "http-0.0.0.0-8080-1" daemon [_thread_blocked, id=2740]
    0x49538008 JavaThread "Thread-6" [_thread_blocked, id=752]
    0x485d4008 JavaThread "ajp-0.0.0.0-8009-Acceptor-0" daemon [_thread_in_native, id=1548]
    0x498b6dd0 JavaThread "http-0.0.0.0-8080-Acceptor-0" daemon [_thread_blocked, id=3892]
    0x493eb008 JavaThread "JBossLifeThread" [_thread_blocked, id=3392]
    0x3827f260 JavaThread "UILServerILService Accept Thread" [_thread_in_native, id=1900]
    0x388c9758 JavaThread "TimeoutFactory-0" daemon [_thread_blocked, id=1996]
    0x35a187b0 JavaThread "JCA PoolFiller" [_thread_blocked, id=2460]
    0x4948c448 JavaThread "Timer-2" daemon [_thread_blocked, id=3816]
    0x48712e80 JavaThread "HSQLDB Timer @9db0ad" daemon [_thread_blocked, id=2456]
    0x35706d30 JavaThread "DefaultQuartzScheduler_QuartzSchedulerThread" [_thread_blocked, id=3088]
    0x385ed548 JavaThread "DefaultQuartzScheduler_Worker-9" [_thread_blocked, id=2876]
    0x38282e60 JavaThread "DefaultQuartzScheduler_Worker-8" [_thread_blocked, id=2916]
    0x38282708 JavaThread "DefaultQuartzScheduler_Worker-7" [_thread_blocked, id=2172]
    0x36061c68 JavaThread "DefaultQuartzScheduler_Worker-6" [_thread_blocked, id=2680]
    0x31865dd8 JavaThread "DefaultQuartzScheduler_Worker-5" [_thread_blocked, id=3868]
    0x483a8d48 JavaThread "DefaultQuartzScheduler_Worker-4" [_thread_blocked, id=3208]
    0x483a8a90 JavaThread "DefaultQuartzScheduler_Worker-3" [_thread_blocked, id=4000]
    0x355bcd90 JavaThread "DefaultQuartzScheduler_Worker-2" [_thread_blocked, id=1056]
    0x48998d38 JavaThread "DefaultQuartzScheduler_Worker-1" [_thread_blocked, id=1712]
    0x383e7d58 JavaThread "DefaultQuartzScheduler_Worker-0" [_thread_blocked, id=3752]
    0x485e6ed0 JavaThread "WorkManager(2)-1" daemon [_thread_blocked, id=3448]
    0x488a0008 JavaThread "Thread-7" daemon [_thread_blocked, id=3620]
    0x38410008 JavaThread "JBossMQ Cache Reference Softner" daemon [_thread_blocked, id=928]
    0x382d1bf0 JavaThread "ContainerBackgroundProcessor[StandardEngine[jboss.web]]" daemon [_thread_blocked, id=3116]
    0x37fb6de0 JavaThread "SubscriptionWatchDog" [_thread_blocked, id=3512]
    0x357e78c8 JavaThread "ServerSocketRefresh" daemon [_thread_blocked, id=1128]
    0x381fb310 JavaThread "AcceptorThread#0:3873" [_thread_in_native, id=3096]
    0x381e33b0 JavaThread "ServerSocketRefresh" daemon [_thread_blocked, id=1076]
    0x318e5d90 JavaThread "AcceptorThread#0:4446" [_thread_in_native, id=2340]
    0x35d15b80 JavaThread "PooledInvokerAcceptor#0-4445" [_thread_in_native, id=2332]
    0x35fa1c98 JavaThread "RMI TCP Accept-4444" daemon [_thread_in_native, id=164]
    0x35d15df0 JavaThread "Listener:2365" daemon [_thread_in_native, id=3408]
    0x35d13dc8 JavaThread "Thread-5" daemon [_thread_blocked, id=1928]
    0x35f35c60 JavaThread "Thread-4" daemon [_thread_blocked, id=4032]
    0x35d66db0 JavaThread "Listener:2361" daemon [_thread_in_native, id=2168]
    0x3828dd90 JavaThread "JBoss System Threads(1)-2" daemon [_thread_in_native, id=3052]
    0x35da8ab0 JavaThread "GC Daemon" daemon [_thread_blocked, id=2028]
    0x35d390c8 JavaThread "RMI Reaper" [_thread_blocked, id=488]
    0x35cedaa8 JavaThread "Timer-1" daemon [_thread_blocked, id=2900]
    0x35ced920 JavaThread "RMI TCP Accept-1098" daemon [_thread_in_native, id=3908]
    0x35dd35a0 JavaThread "JBoss System Threads(1)-1" daemon [_thread_in_native, id=872]
    0x35e42e48 JavaThread "ScannerThread" daemon [_thread_blocked, id=168]
    0x31895da8 JavaThread "Timer-0" daemon [_thread_blocked, id=3324]
    0x00037aa0 JavaThread "DestroyJavaVM" [_thread_blocked, id=1244]
    0x316f0c48 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=3904]
    0x0099f900 JavaThread "CompilerThread1" daemon [_thread_blocked, id=228]
    0x0099ea98 JavaThread "CompilerThread0" daemon [_thread_blocked, id=2696]
    0x0099dbf0 JavaThread "AdapterThread" daemon [_thread_blocked, id=3360]
    0x0099cf10 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=892]
    0x00993968 JavaThread "Finalizer" daemon [_thread_blocked, id=2776]
    0x00993620 JavaThread "Reference Handler" daemon [_thread_blocked, id=1348]
    Other Threads:
    =>0x00991488 VMThread [id=3544]
    0x316f1f58 WatcherThread [id=3288]
    VM state:at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
    [0x00037158/0x0000071c] Threads_lock - owner thread: 0x00991488
    [0x000372d8/0x000006e0] Heap_lock - owner thread: 0x496f2dd0
    Heap
    def new generation total 20736K, used 17960K [0x03a60000, 0x050e0000, 0x07340000)
    eden space 18432K, 97% used [0x03a60000, 0x04be8eb0, 0x04c60000)
    from space 2304K, 0% used [0x04ea0000, 0x04ea1350, 0x050e0000)
    to space 2304K, 0% used [0x04c60000, 0x04c605b0, 0x04ea0000)
    tenured generation total 183196K, used 125267K [0x07340000, 0x12627000, 0x23a60000)
    the space 183196K, 68% used [0x07340000, 0x0ed94d90, 0x0ed94e00, 0x12627000)
    compacting perm gen total 131072K, used 39965K [0x23a60000, 0x2ba60000, 0x2ba60000)
    the space 131072K, 30% used [0x23a60000, 0x261677a8, 0x26167800, 0x2ba60000)
    No shared spaces configured.
    Dynamic libraries:
    0x00400000 - 0x0040d000      F:\Java\jdk1.5.0_07\bin\java.exe
    0x7c900000 - 0x7c9b0000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f5000      C:\WINDOWS\system32\kernel32.dll
    0x77dd0000 - 0x77e6b000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f01000      C:\WINDOWS\system32\RPCRT4.dll
    0x77c10000 - 0x77c68000      C:\WINDOWS\system32\MSVCRT.dll
    0x6d8d0000 - 0x6dc85000      F:\Java\jdk1.5.0_07\jre\bin\server\jvm.dll
    0x7e410000 - 0x7e4a0000      C:\WINDOWS\system32\USER32.dll
    0x77f10000 - 0x77f57000      C:\WINDOWS\system32\GDI32.dll
    0x76b40000 - 0x76b6d000      C:\WINDOWS\system32\WINMM.dll
    0x76390000 - 0x763ad000      C:\WINDOWS\system32\IMM32.DLL
    0x6d2f0000 - 0x6d2f8000      F:\Java\jdk1.5.0_07\jre\bin\hpi.dll
    0x76bf0000 - 0x76bfb000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d700000 - 0x6d70c000      F:\Java\jdk1.5.0_07\jre\bin\verify.dll
    0x6d370000 - 0x6d38d000      F:\Java\jdk1.5.0_07\jre\bin\java.dll
    0x6d720000 - 0x6d72f000      F:\Java\jdk1.5.0_07\jre\bin\zip.dll
    0x6d530000 - 0x6d543000      F:\Java\jdk1.5.0_07\jre\bin\net.dll
    0x71ab0000 - 0x71ac7000      C:\WINDOWS\system32\WS2_32.dll
    0x71aa0000 - 0x71aa8000      C:\WINDOWS\system32\WS2HELP.dll
    0x71a50000 - 0x71a8f000      C:\WINDOWS\System32\mswsock.dll
    0x76f20000 - 0x76f47000      C:\WINDOWS\system32\DNSAPI.dll
    0x76fb0000 - 0x76fb8000      C:\WINDOWS\System32\winrnr.dll
    0x76f60000 - 0x76f8c000      C:\WINDOWS\system32\WLDAP32.dll
    0x76fc0000 - 0x76fc6000      C:\WINDOWS\system32\rasadhlp.dll
    0x6d520000 - 0x6d528000      F:\Java\jdk1.5.0_07\jre\bin\management.dll
    0x662b0000 - 0x66308000      C:\WINDOWS\system32\hnetcfg.dll
    0x71a90000 - 0x71a98000      C:\WINDOWS\System32\wshtcpip.dll
    0x39e60000 - 0x39e88000      C:\WINDOWS\system32\rsaenh.dll
    0x769c0000 - 0x76a73000      C:\WINDOWS\system32\USERENV.dll
    0x5b860000 - 0x5b8b4000      C:\WINDOWS\system32\netapi32.dll
    0x6d550000 - 0x6d559000      F:\Java\jdk1.5.0_07\jre\bin\nio.dll
    0x6d070000 - 0x6d1d7000      F:\Java\jdk1.5.0_07\jre\bin\awt.dll
    0x73000000 - 0x73026000      C:\WINDOWS\system32\WINSPOOL.DRV
    0x774e0000 - 0x7761d000      C:\WINDOWS\system32\ole32.dll
    0x462a0000 - 0x462d8000      C:\WINDOWS\system32\uxtheme.dll
    0x73760000 - 0x737a9000      C:\WINDOWS\system32\ddraw.dll
    0x73bc0000 - 0x73bc6000      C:\WINDOWS\system32\DCIMAN32.dll
    0x73940000 - 0x73a10000      C:\WINDOWS\system32\D3DIM700.DLL
    0x6d2b0000 - 0x6d2ef000      F:\Java\jdk1.5.0_07\jre\bin\fontmanager.dll
    0x74720000 - 0x7476b000      C:\WINDOWS\system32\MSCTF.dll
    0x755c0000 - 0x755ee000      C:\WINDOWS\system32\msctfime.ime
    0x6d430000 - 0x6d44f000      F:\Java\jdk1.5.0_07\jre\bin\jpeg.dll
    0x47290000 - 0x472a3000      F:\jboss-4.2.2.GA\bin\locateprintsdll.dll
    0x73dd0000 - 0x73ece000      C:\WINDOWS\system32\MFC42.DLL
    0x472b0000 - 0x472bd000      C:\WINDOWS\system32\MFC42LOC.DLL
    VM Arguments:
    jvm_args: -Dprogram.name=run.bat -Dreports.configDir=F:/jboss-4.2.2.GA/server/default/conf/ -XX:PermSize=128m -Xms128m -Xmx512m -Xss15m -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000 -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000 -Djava.endorsed.dirs=F:\jboss-4.2.2.GA\lib\endorsed
    java_command: org.jboss.Main -b 0.0.0.0
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=F:\Java\jdk1.5.0_07
    CLASSPATH=F:\Tomcat 5.5\webapps\IWS\WEB-INF\lib\servlet-api.jar;.
    PATH=D:\oracle\ora92\bin;C:\Program Files\PC Connectivity Solution\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\ATI Technologies\ATI.ACE\;C:\Program Files\Microsoft SQL Server\80\Tools\Binn\;C:\PROGRA~1\CA\SHARED~1\SCANEN~1;C:\PROGRA~1\CA\ETRUST~1;C:\Program Files\Rational\common;F:\Java\jdk1.5.0_07\bin;F:\Java\jre1.5.0_07\bin;F:\jboss-4.2.2.GA\DLLs;
    USERNAME=Arun
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 6 Stepping 5, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 2 family 15, cmov, cx8, fxsr, mmx, sse, sse2, ht
    Memory: 4k page, physical 1013660k(193696k free), swap 2444544k(642724k free)
    vm_info: Java HotSpot(TM) Server VM (1.5.0_07-b03) for windows-x86, built on May 3 2006 00:45:13 by "java_re" with MS VC++ 6.0
    pls help me ...
    thanks in advance

    Iam using Jboss 4.2.2 for my application
    the JVM is crashing with the following msg when i call a function in a DLL (JNI)
    the error msg :
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d963733, pid=3356, tid=3544
    # Java VM: Java HotSpot(TM) Server VM (1.5.0_07-b03 mixed mode)
    # Problematic frame:
    # V [jvm.dll+0x93733]
    # An error report file with more information is saved as hs_err_pid3356.log
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    Press any key to continue . . .
    and the log file generated:
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d963733, pid=3356, tid=3544
    # Java VM: Java HotSpot(TM) Server VM (1.5.0_07-b03 mixed mode)
    # Problematic frame:
    # V [jvm.dll+0x93733]
    --------------- T H R E A D ---------------
    Current thread (0x00991488): VMThread [id=3544]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000440
    Registers:
    EAX=0x00000440, EBX=0x48284758, ECX=0x2cbefa5c, EDX=0x6dbcd170
    ESP=0x2cbef9c4, EBP=0x000001c4, ESI=0x3800d3a4, EDI=0x2cbefa5c
    EIP=0x6d963733, EFLAGS=0x00010283
    Top of Stack: (sp=0x2cbef9c4)
    0x2cbef9c4: 2cbefa5c 3800d3a0 6d982aab 3800d3a4
    0x2cbef9d4: 2cbefa5c 2cbefa5c 0092a538 0092a538
    0x2cbef9e4: 009449d0 6db4ff25 2cbefa5c 0092a7d0
    0x2cbef9f4: 6d995c41 2cbefa5c 0092a538 0092a7d0
    0x2cbefa04: 00000000 0092a538 6d964252 00000000
    0x2cbefa14: 00000001 00000000 00000001 2cbefaa8
    0x2cbefa24: 2cbefa5c 0092a538 0092a580 2cbefbfc
    0x2cbefa34: 00990b70 0003f758 08bdef90 6dbcd110
    Instructions: (pc=0x6d963733)
    0x6d963723: 24 08 57 8b f9 8b 06 85 c0 74 3e 3b 47 1c 73 39
    0x6d963733: 8b 08 83 e1 03 80 f9 03 75 06 8b 00 24 fc eb 0a
    Stack: [0x2bcf0000,0x2cbf0000), sp=0x2cbef9c4, free space=15358k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [jvm.dll+0x93733]
    [error occurred during error reporting, step 120, id 0xc0000005]
    VM_Operation (0x65dbee54): generation collection for allocation, mode: safepoint, requested by thread 0x496f2dd0
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x35f27498 JavaThread "AWT-Windows" daemon [_thread_in_native, id=3508]
    0x3178fde8 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=748]
    0x496f2dd0 JavaThread "http-0.0.0.0-8080-3" daemon [_thread_blocked, id=3044]
    0x356c4008 JavaThread "IdleRemover" daemon [_thread_blocked, id=2832]
    0x496bdae0 JavaThread "http-0.0.0.0-8080-2" daemon [_thread_blocked, id=2452]
    0x31713dc0 JavaThread "http-0.0.0.0-8080-1" daemon [_thread_blocked, id=2740]
    0x49538008 JavaThread "Thread-6" [_thread_blocked, id=752]
    0x485d4008 JavaThread "ajp-0.0.0.0-8009-Acceptor-0" daemon [_thread_in_native, id=1548]
    0x498b6dd0 JavaThread "http-0.0.0.0-8080-Acceptor-0" daemon [_thread_blocked, id=3892]
    0x493eb008 JavaThread "JBossLifeThread" [_thread_blocked, id=3392]
    0x3827f260 JavaThread "UILServerILService Accept Thread" [_thread_in_native, id=1900]
    0x388c9758 JavaThread "TimeoutFactory-0" daemon [_thread_blocked, id=1996]
    0x35a187b0 JavaThread "JCA PoolFiller" [_thread_blocked, id=2460]
    0x4948c448 JavaThread "Timer-2" daemon [_thread_blocked, id=3816]
    0x48712e80 JavaThread "HSQLDB Timer @9db0ad" daemon [_thread_blocked, id=2456]
    0x35706d30 JavaThread "DefaultQuartzScheduler_QuartzSchedulerThread" [_thread_blocked, id=3088]
    0x385ed548 JavaThread "DefaultQuartzScheduler_Worker-9" [_thread_blocked, id=2876]
    0x38282e60 JavaThread "DefaultQuartzScheduler_Worker-8" [_thread_blocked, id=2916]
    0x38282708 JavaThread "DefaultQuartzScheduler_Worker-7" [_thread_blocked, id=2172]
    0x36061c68 JavaThread "DefaultQuartzScheduler_Worker-6" [_thread_blocked, id=2680]
    0x31865dd8 JavaThread "DefaultQuartzScheduler_Worker-5" [_thread_blocked, id=3868]
    0x483a8d48 JavaThread "DefaultQuartzScheduler_Worker-4" [_thread_blocked, id=3208]
    0x483a8a90 JavaThread "DefaultQuartzScheduler_Worker-3" [_thread_blocked, id=4000]
    0x355bcd90 JavaThread "DefaultQuartzScheduler_Worker-2" [_thread_blocked, id=1056]
    0x48998d38 JavaThread "DefaultQuartzScheduler_Worker-1" [_thread_blocked, id=1712]
    0x383e7d58 JavaThread "DefaultQuartzScheduler_Worker-0" [_thread_blocked, id=3752]
    0x485e6ed0 JavaThread "WorkManager(2)-1" daemon [_thread_blocked, id=3448]
    0x488a0008 JavaThread "Thread-7" daemon [_thread_blocked, id=3620]
    0x38410008 JavaThread "JBossMQ Cache Reference Softner" daemon [_thread_blocked, id=928]
    0x382d1bf0 JavaThread "ContainerBackgroundProcessor[StandardEngine[jboss.web]]" daemon [_thread_blocked, id=3116]
    0x37fb6de0 JavaThread "SubscriptionWatchDog" [_thread_blocked, id=3512]
    0x357e78c8 JavaThread "ServerSocketRefresh" daemon [_thread_blocked, id=1128]
    0x381fb310 JavaThread "AcceptorThread#0:3873" [_thread_in_native, id=3096]
    0x381e33b0 JavaThread "ServerSocketRefresh" daemon [_thread_blocked, id=1076]
    0x318e5d90 JavaThread "AcceptorThread#0:4446" [_thread_in_native, id=2340]
    0x35d15b80 JavaThread "PooledInvokerAcceptor#0-4445" [_thread_in_native, id=2332]
    0x35fa1c98 JavaThread "RMI TCP Accept-4444" daemon [_thread_in_native, id=164]
    0x35d15df0 JavaThread "Listener:2365" daemon [_thread_in_native, id=3408]
    0x35d13dc8 JavaThread "Thread-5" daemon [_thread_blocked, id=1928]
    0x35f35c60 JavaThread "Thread-4" daemon [_thread_blocked, id=4032]
    0x35d66db0 JavaThread "Listener:2361" daemon [_thread_in_native, id=2168]
    0x3828dd90 JavaThread "JBoss System Threads(1)-2" daemon [_thread_in_native, id=3052]
    0x35da8ab0 JavaThread "GC Daemon" daemon [_thread_blocked, id=2028]
    0x35d390c8 JavaThread "RMI Reaper" [_thread_blocked, id=488]
    0x35cedaa8 JavaThread "Timer-1" daemon [_thread_blocked, id=2900]
    0x35ced920 JavaThread "RMI TCP Accept-1098" daemon [_thread_in_native, id=3908]
    0x35dd35a0 JavaThread "JBoss System Threads(1)-1" daemon [_thread_in_native, id=872]
    0x35e42e48 JavaThread "ScannerThread" daemon [_thread_blocked, id=168]
    0x31895da8 JavaThread "Timer-0" daemon [_thread_blocked, id=3324]
    0x00037aa0 JavaThread "DestroyJavaVM" [_thread_blocked, id=1244]
    0x316f0c48 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=3904]
    0x0099f900 JavaThread "CompilerThread1" daemon [_thread_blocked, id=228]
    0x0099ea98 JavaThread "CompilerThread0" daemon [_thread_blocked, id=2696]
    0x0099dbf0 JavaThread "AdapterThread" daemon [_thread_blocked, id=3360]
    0x0099cf10 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=892]
    0x00993968 JavaThread "Finalizer" daemon [_thread_blocked, id=2776]
    0x00993620 JavaThread "Reference Handler" daemon [_thread_blocked, id=1348]
    Other Threads:
    =>0x00991488 VMThread [id=3544]
    0x316f1f58 WatcherThread [id=3288]
    VM state:at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
    [0x00037158/0x0000071c] Threads_lock - owner thread: 0x00991488
    [0x000372d8/0x000006e0] Heap_lock - owner thread: 0x496f2dd0
    Heap
    def new generation total 20736K, used 17960K [0x03a60000, 0x050e0000, 0x07340000)
    eden space 18432K, 97% used [0x03a60000, 0x04be8eb0, 0x04c60000)
    from space 2304K, 0% used [0x04ea0000, 0x04ea1350, 0x050e0000)
    to space 2304K, 0% used [0x04c60000, 0x04c605b0, 0x04ea0000)
    tenured generation total 183196K, used 125267K [0x07340000, 0x12627000, 0x23a60000)
    the space 183196K, 68% used [0x07340000, 0x0ed94d90, 0x0ed94e00, 0x12627000)
    compacting perm gen total 131072K, used 39965K [0x23a60000, 0x2ba60000, 0x2ba60000)
    the space 131072K, 30% used [0x23a60000, 0x261677a8, 0x26167800, 0x2ba60000)
    No shared spaces configured.
    Dynamic libraries:
    0x00400000 - 0x0040d000      F:\Java\jdk1.5.0_07\bin\java.exe
    0x7c900000 - 0x7c9b0000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f5000      C:\WINDOWS\system32\kernel32.dll
    0x77dd0000 - 0x77e6b000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f01000      C:\WINDOWS\system32\RPCRT4.dll
    0x77c10000 - 0x77c68000      C:\WINDOWS\system32\MSVCRT.dll
    0x6d8d0000 - 0x6dc85000      F:\Java\jdk1.5.0_07\jre\bin\server\jvm.dll
    0x7e410000 - 0x7e4a0000      C:\WINDOWS\system32\USER32.dll
    0x77f10000 - 0x77f57000      C:\WINDOWS\system32\GDI32.dll
    0x76b40000 - 0x76b6d000      C:\WINDOWS\system32\WINMM.dll
    0x76390000 - 0x763ad000      C:\WINDOWS\system32\IMM32.DLL
    0x6d2f0000 - 0x6d2f8000      F:\Java\jdk1.5.0_07\jre\bin\hpi.dll
    0x76bf0000 - 0x76bfb000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d700000 - 0x6d70c000      F:\Java\jdk1.5.0_07\jre\bin\verify.dll
    0x6d370000 - 0x6d38d000      F:\Java\jdk1.5.0_07\jre\bin\java.dll
    0x6d720000 - 0x6d72f000      F:\Java\jdk1.5.0_07\jre\bin\zip.dll
    0x6d530000 - 0x6d543000      F:\Java\jdk1.5.0_07\jre\bin\net.dll
    0x71ab0000 - 0x71ac7000      C:\WINDOWS\system32\WS2_32.dll
    0x71aa0000 - 0x71aa8000      C:\WINDOWS\system32\WS2HELP.dll
    0x71a50000 - 0x71a8f000      C:\WINDOWS\System32\mswsock.dll
    0x76f20000 - 0x76f47000      C:\WINDOWS\system32\DNSAPI.dll
    0x76fb0000 - 0x76fb8000      C:\WINDOWS\System32\winrnr.dll
    0x76f60000 - 0x76f8c000      C:\WINDOWS\system32\WLDAP32.dll
    0x76fc0000 - 0x76fc6000      C:\WINDOWS\system32\rasadhlp.dll
    0x6d520000 - 0x6d528000      F:\Java\jdk1.5.0_07\jre\bin\management.dll
    0x662b0000 - 0x66308000      C:\WINDOWS\system32\hnetcfg.dll
    0x71a90000 - 0x71a98000      C:\WINDOWS\System32\wshtcpip.dll
    0x39e60000 - 0x39e88000      C:\WINDOWS\system32\rsaenh.dll
    0x769c0000 - 0x76a73000      C:\WINDOWS\system32\USERENV.dll
    0x5b860000 - 0x5b8b4000      C:\WINDOWS\system32\netapi32.dll
    0x6d550000 - 0x6d559000      F:\Java\jdk1.5.0_07\jre\bin\nio.dll
    0x6d070000 - 0x6d1d7000      F:\Java\jdk1.5.0_07\jre\bin\awt.dll
    0x73000000 - 0x73026000      C:\WINDOWS\system32\WINSPOOL.DRV
    0x774e0000 - 0x7761d000      C:\WINDOWS\system32\ole32.dll
    0x462a0000 - 0x462d8000      C:\WINDOWS\system32\uxtheme.dll
    0x73760000 - 0x737a9000      C:\WINDOWS\system32\ddraw.dll
    0x73bc0000 - 0x73bc6000      C:\WINDOWS\system32\DCIMAN32.dll
    0x73940000 - 0x73a10000      C:\WINDOWS\system32\D3DIM700.DLL
    0x6d2b0000 - 0x6d2ef000      F:\Java\jdk1.5.0_07\jre\bin\fontmanager.dll
    0x74720000 - 0x7476b000      C:\WINDOWS\system32\MSCTF.dll
    0x755c0000 - 0x755ee000      C:\WINDOWS\system32\msctfime.ime
    0x6d430000 - 0x6d44f000      F:\Java\jdk1.5.0_07\jre\bin\jpeg.dll
    0x47290000 - 0x472a3000      F:\jboss-4.2.2.GA\bin\locateprintsdll.dll
    0x73dd0000 - 0x73ece000      C:\WINDOWS\system32\MFC42.DLL
    0x472b0000 - 0x472bd000      C:\WINDOWS\system32\MFC42LOC.DLL
    VM Arguments:
    jvm_args: -Dprogram.name=run.bat -Dreports.configDir=F:/jboss-4.2.2.GA/server/default/conf/ -XX:PermSize=128m -Xms128m -Xmx512m -Xss15m -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000 -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000 -Djava.endorsed.dirs=F:\jboss-4.2.2.GA\lib\endorsed
    java_command: org.jboss.Main -b 0.0.0.0
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=F:\Java\jdk1.5.0_07
    CLASSPATH=F:\Tomcat 5.5\webapps\IWS\WEB-INF\lib\servlet-api.jar;.
    PATH=D:\oracle\ora92\bin;C:\Program Files\PC Connectivity Solution\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\ATI Technologies\ATI.ACE\;C:\Program Files\Microsoft SQL Server\80\Tools\Binn\;C:\PROGRA~1\CA\SHARED~1\SCANEN~1;C:\PROGRA~1\CA\ETRUST~1;C:\Program Files\Rational\common;F:\Java\jdk1.5.0_07\bin;F:\Java\jre1.5.0_07\bin;F:\jboss-4.2.2.GA\DLLs;
    USERNAME=Arun
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 6 Stepping 5, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 2 family 15, cmov, cx8, fxsr, mmx, sse, sse2, ht
    Memory: 4k page, physical 1013660k(193696k free), swap 2444544k(642724k free)
    vm_info: Java HotSpot(TM) Server VM (1.5.0_07-b03) for windows-x86, built on May 3 2006 00:45:13 by "java_re" with MS VC++ 6.0
    pls help me ...
    thanks in advance

  • XSQL-017: Unexpected Error Occurred with fo:list-block

    I will create a list in a pdf-file. I'm using:
    <fo:list-block>
    <fo:list-item>
    <fo:list-item-label>
    <fo:block>&bull;</fo:block>
    </fo:list-item-label>
    <fo:list-item-body>
    <xsl:apply-templates select="PARAGRAPH"/>
    </fo:list-item-body>
    </fo:list-item>
    </fo:list-block>
    This makes following error:
    Oracle XSQL Servlet Page Processor 9.0.2.0.0 (Beta)
    XSQL-017: Unexpected Error Occurred
    java.lang.RuntimeException: java.lang.NullPointerException
    at oracle.xml.xsql.serializers.XSQLFOPSerializer.serialize(XSQLFOPSerializer.java:80)
    at oracle.xml.xsql.XSQLPageProcessor.process(XSQLPageProcessor.java:273)
    at oracle.xml.xsql.XSQLServlet.doGet(XSQLServlet.java:60)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.tomcat.core.ServletWrapper.doService(ServletWrapper.java:405)
    at org.apache.tomcat.core.Handler.service(Handler.java:287)
    at org.apache.tomcat.core.ServletWrapper.service(ServletWrapper.java:372)
    at org.apache.tomcat.core.ContextManager.internalService(ContextManager.java:797)
    at org.apache.tomcat.core.ContextManager.service(ContextManager.java:743)
    at org.apache.tomcat.service.connector.Ajp13ConnectionHandler.processConnection(Ajp13ConnectionHandler.java:160)
    at org.apache.tomcat.service.TcpWorkerThread.runIt(PoolTcpEndpoint.java:416)
    at org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java:501)
    at java.lang.Thread.run(Thread.java:484)
    If I create the list without the xsl:apply-templates, works it fine.
    If I only use the xsl:apply-templates without fo:list, works it fine.
    Is this a bug in the servlet?

    Forget about it. I found the error: I forgot to use the fo:block tag surrounding the xsl:apply-templates-tag.
    Sorry!

  • Music services failed to load an unexpected error occurred

    Hi!
    Till the last Day, the WiFi and/ore the USB-Sync with iTunes runs perfectly.
    But at this moment, it doens't work anymore and i got this message on my DM6 "Music services failed to load an unexpected error occurred"
    I don't know why, cause i didn't change anything on my DM6, iTunes ore Torch.
    This ist my Desktop.log
    13:05:54.907|INFO |12|Rim.Desktop.Media|39001|Got Request POST http://192.168.2.105:4481/mediasync/music/17afe97cfe9d52d6
    13:05:54.910|INFO |12|Rim.Desktop.Media|39001|gzip requested
    13:05:54.992|FATAL|12|Rim.Desktop.Shell|0|Fatal Application Error
    System.FormatException: The input yields a number greater than 4 bytes.
       bei Rim.Common.Utilities.JavaBinaryReader.ReadCompressedInt()
       bei Rim.Media.Sync.SyncProviders.Device.Destination.DeviceChanges.ReadChanges(Stream changeStream)
       bei Rim.Media.Sync.Listener.HttpMediaServer.OnUpdatesProvided(Object sender, UpdatesProvidedEventArgs e)
       bei Rim.Common.Utilities.Events.Eventer.Raise[THandlerArgs,TArgs](Object sender, EventHandler`1 handler, TArgs e)
       bei Rim.Media.Sync.Listener.MediaHttpListener.Request(IAsyncResult result)
       bei System.Net.LazyAsyncResult.Complete(IntPtr userToken)
       bei System.Net.LazyAsyncResult.ProtectedInvokeCallback(Object result, IntPtr userToken)
       bei System.Net.ListenerAsyncResult.WaitCallback(UInt32 errorCode, UInt32 numBytes, NativeOverlapped* nativeOverlapped)
       bei System.Threading._IOCompletionCallback.PerformIOCompletionCallback(UInt32 errorCode, UInt32 numBytes, NativeOverlapped* pOVERLAP)
    13:05:54.994|FATAL|12|Exception|0|Fatal Error
    System.FormatException: The input yields a number greater than 4 bytes.
       bei Rim.Common.Utilities.JavaBinaryReader.ReadCompressedInt()
       bei Rim.Media.Sync.SyncProviders.Device.Destination.DeviceChanges.ReadChanges(Stream changeStream)
       bei Rim.Media.Sync.Listener.HttpMediaServer.OnUpdatesProvided(Object sender, UpdatesProvidedEventArgs e)
       bei Rim.Common.Utilities.Events.Eventer.Raise[THandlerArgs,TArgs](Object sender, EventHandler`1 handler, TArgs e)
       bei Rim.Media.Sync.Listener.MediaHttpListener.Request(IAsyncResult result)
       bei System.Net.LazyAsyncResult.Complete(IntPtr userToken)
       bei System.Net.LazyAsyncResult.ProtectedInvokeCallback(Object result, IntPtr userToken)
       bei System.Net.ListenerAsyncResult.WaitCallback(UInt32 errorCode, UInt32 numBytes, NativeOverlapped* nativeOverlapped)
       bei System.Threading._IOCompletionCallback.PerformIOCompletionCallback(UInt32 errorCode, UInt32 numBytes, NativeOverlapped* pOVERLAP)
    13:05:58.439|INFO |12|Rim.Desktop.Media|39001|HttpMediaServer status update: ServerOn
    What can i do, to fix the problem?
    Tank you!
    Sorry for my bad english
    Greetings from Germany
    Kalorie99

    I found the answer, here in the forum from a user:
    Here is the solution that worked for me, based on antoniovtorres post (I resisted the urge to get PO'd and tried to figure out what he must have done):
    With desktop manager closed, using Blackberry user tools, navigate to 'Blackberry\system\' (make sure that hidden files are shown or you won't see the 'system' folder).
    Move or delete the folders 'Media Sync' and 'media' from the system directory.
    Re-open desktop manager.
    Click yes to any dialog that appears.
    You should now be able to sync music again.
    Note that your device may want to double up on your synced pictures and videos, so you may want to delete your pictures and videos off of the device before your next picture or video sync. Hope it works for y'all.
    Scott
    It works again!
    Yeah!
    BlackBerry rocks!

  • I´m trying to open an excel file in numbers not being successful. The error msg is unexpectedly error using plugin SFCompatibility can you help me?

    I´m trying to open an excel file in numbers not being successful. The error msg is unexpectedly error using plugin SFCompatibility can you help me? Already changed the extension of the excel document to xlsx an now gives an unknown import error.

    In Excel have you tried saving directly to xls (not xlsx) and opening the xls in Numbers?
    If you have a complicated workbook in Excel that uses lots of Excel's advanced features, Numbers may not be able to handle the import.  It does pretty well on basic things, though.
    If you're just trying to get data into Numbers, then often copy-paste from Excel is easier than trying to open xls files.
    SG

  • Ant Scripts: Issue while running , getting BPM-71504: Unexpected error pars

    Hi
    I am running ant scripts through command prompt on the server itself.
    And on evry run I am getting the same error I followed this url Steps to deploy an bpel project using ANT scripts.. to start up but couldnt find resolution to my issue
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <Faults>
    <Fault>
    <severity>error</severity>
    <loc/>
    <line/>
    <col/>
    <file/>
    <name/>
    <fix/>
    <msg>BPM-71504: Unexpected error parsing 'oramds:/soa/shared/workflow/TaskEvidenceService.xsd'. Cause: oracle.mds.exception.MDSException: MDS-00054: The file to be loaded oramds:/soa/shared/workflow/TaskEvidenceService.xsd does not exist.. Action: Verify that file is valid and accessible</msg>
    </Fault>
    <Fault>
    <severity>error</severity>
    <loc/>
    <line/>
    <col/>
    <file/>
    <name/>
    <fix/>
    <msg>BPM-71504: Unexpected error parsing 'oramds:/soa/shared/workflow/WorkflowCommon.xsd'. Cause: oracle.mds.exception.MDSException: MDS-00054: The file to be loaded oramds:/soa/shared/workflow/WorkflowCommon.xsd does not exist.. Action: Verify that file is valid and accessible</msg>
    </Fault>
    <Fault>
    <severity>error</severity>
    <loc/>
    <line/>
    <col/>
    <file/>
    <name/>
    <fix/>
    <msg>BPM-71504: Unexpected error parsing 'oramds:/soa/shared/workflow/WorkflowTask.xsd'. Cause: oracle.mds.exception.MDSException: MDS-00054: The file to be loaded oramds:/soa/shared/workflow/WorkflowTask.xsd does not exist.. Action: Verify that file is valid and accessible</msg>
    </Fault>
    </Faults>
    Looking forward for a response...
    Thanks in advance

    hi I have configured the adf-config.xml but still getting the same error.
    Please let me know what i am doing wrong
    <?xml version="1.0" encoding="windows-1252" ?>
    <adf-config xmlns="http://xmlns.oracle.com/adf/config"
    xmlns:config="http://xmlns.oracle.com/bc4j/configuration"
    xmlns:adf="http://xmlns.oracle.com/adf/config/properties"
    xmlns:sec="http://xmlns.oracle.com/adf/security/config">
    <adf-adfm-config xmlns="http://xmlns.oracle.com/adfm/config">
    <defaults useBindVarsForViewCriteriaLiterals="true"/>
    <startup>
    <amconfig-overrides>
    <config:Database jbo.locking.mode="optimistic"/>
    </amconfig-overrides>
    </startup>
    </adf-adfm-config>
    <adf:adf-properties-child xmlns="http://xmlns.oracle.com/adf/config/properties">
    <adf-property name="adfAppUID" value="AntApplication-7567"/>
    </adf:adf-properties-child>
    <sec:adf-security-child xmlns="http://xmlns.oracle.com/adf/security/config">
    <CredentialStoreContext credentialStoreClass="oracle.adf.share.security.providers.jps.CSFCredentialStore"
    credentialStoreLocation="../../src/META-INF/jps-config.xml"/>
    </sec:adf-security-child>
    <adf-mds-config xmlns="http://xmlns.oracle.com/adf/mds/config">
    <mds-config xmlns="http://xmlns.oracle.com/mds/config">
    <persistence-config>
    <metadata-namespaces>
    <namespace path="/soa/shared" metadata-store-usage="mstore-usage_3"/>
    </metadata-namespaces>
    <metadata-store-usages>
    <metadata-store-usage id="mstore-usage_3">
    <metadata-store class-name="oracle.mds.persistence.stores.file.FileMetadataStore">
    <property name="metadata-path"
    value="C:/Oracle/Middleware1/jdev/jdeveloper/integration"/>
    <property name="partition-name" value="seed"/>
    </metadata-store>
    </metadata-store-usage>
    </metadata-store-usages>
    </persistence-config>
    </mds-config>
    </adf-mds-config>
    </adf-config>
    Regards.....
    Edited by: bpm11gnewbie on Oct 7, 2012 10:16 PM

  • Tomcat 5.0.28 Crashing - Unexpected Error detected HotSpot Virtual Machine

    # An unexpected error has been detected by HotSpot Virtual Machine:
    # Internal Error (4A41564123414C4C530E4350500018), pid=2872, tid=2884
    # Java VM: Java HotSpot(TM) Server VM (1.5.0_05-b05 mixed mode)
    --------------- T H R E A D ---------------
    Current thread (0x6dd02218): JavaThread "CompilerThread1" daemon [_thread_in_vm, id=2884]
    Stack: [0x6e3e0000,0x6e4e0000)
    [error occurred during error reporting, step 110, id 0xc0000005]
    Current CompileTask:
    opto:1582 java.util.Arrays.mergeSort([Ljava/lang/Object;[Ljava/lang/Object;IIILjava/util/Comparator;)V (235 bytes)
    ---------------  P R O C E S S  ---------------
    Java Threads: ( => current thread )
      0x6ef2d048 JavaThread "Dispatcher-Thread-2347" daemon [_thread_blocked, id=4068]
    0x6fe3d650 JavaThread "http-443-Processor50" daemon [_thread_in_native, id=1996]
    0x6ffaf210 JavaThread "http-443-Processor49" daemon [_thread_in_native, id=2076]
    0x7012e5c0 JavaThread "http-443-Processor48" daemon [_thread_in_native, id=1732]
    0x6e80c0a0 JavaThread "http-443-Processor47" daemon [_thread_blocked, id=2056]
    0x6ede8008 JavaThread "http-443-Processor46" daemon [_thread_blocked, id=2060]
    0x6ee50008 JavaThread "http-443-Processor45" daemon [_thread_in_native, id=1744]
    0x6ec06dd0 JavaThread "http-443-Processor44" daemon [_thread_in_native, id=3816]
    0x727208a0 JavaThread "http-443-Processor43" daemon [_thread_in_native, id=2540]
    0x6ef5c808 JavaThread "http-443-Processor42" daemon [_thread_in_native, id=1740]
    0x6ef5c668 JavaThread "http-443-Processor41" daemon [_thread_in_native, id=756]
    0x78779540 JavaThread "http-443-Processor40" daemon [_thread_blocked, id=3848]
    0x6f72b4a0 JavaThread "http-443-Processor39" daemon [_thread_in_native, id=2084]
    0x6ddb0af0 JavaThread "http-443-Processor38" daemon [_thread_in_native, id=3828]
    0x729ead68 JavaThread "http-443-Processor37" daemon [_thread_in_native, id=1788]
    0x6fac9808 JavaThread "http-443-Processor36" daemon [_thread_in_native, id=1796]
    0x702f2e30 JavaThread "http-443-Processor35" daemon [_thread_in_native, id=3684]
    0x72635d00 JavaThread "http-443-Processor34" daemon [_thread_in_native, id=3144]
    0x78310cd8 JavaThread "http-443-Processor33" daemon [_thread_in_native, id=3980]
    0x733e4d10 JavaThread "http-443-Processor32" daemon [_thread_in_native, id=812]
    0x6fdbd310 JavaThread "http-443-Processor31" daemon [_thread_blocked, id=1948]
    0x6ec20b68 JavaThread "http-443-Processor30" daemon [_thread_blocked, id=2624]
    0x0082ae08 JavaThread "http-443-Processor29" daemon [_thread_blocked, id=3164]
    0x6fc4a008 JavaThread "http-443-Processor28" daemon [_thread_blocked, id=3820]
    0x6f0d5cf8 JavaThread "http-443-Processor27" daemon [_thread_blocked, id=1552]
    0x6ec18008 JavaThread "http-443-Processor26" daemon [_thread_blocked, id=3964]
    0x70129c30 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=668]
    0x6f22f920 JavaThread "AWT-Windows" daemon [_thread_in_native, id=4052]
    0x6f247990 JavaThread "TP-Monitor" daemon [_thread_blocked, id=3016]
    0x6f247810 JavaThread "TP-Processor4" daemon [_thread_in_native, id=1320]
    0x71fe0178 JavaThread "TP-Processor3" daemon [_thread_blocked, id=1828]
    0x6f4bf930 JavaThread "TP-Processor2" daemon [_thread_blocked, id=4020]
    0x6f847950 JavaThread "TP-Processor1" daemon [_thread_blocked, id=4080]
    0x6f089b08 JavaThread "http-443-Monitor" [_thread_blocked, id=2664]
    0x7207bd28 JavaThread "http-443-Processor25" daemon [_thread_in_native, id=1520]
    0x6ec73af8 JavaThread "http-443-Processor24" daemon [_thread_in_native, id=344]
    0x6f0f9e50 JavaThread "http-443-Processor23" daemon [_thread_in_native, id=1512]
    0x6ea82de0 JavaThread "http-443-Processor22" daemon [_thread_in_native, id=1156]
    0x6fdaa008 JavaThread "http-443-Processor21" daemon [_thread_in_native, id=888]
    0x6fc420a8 JavaThread "http-443-Processor20" daemon [_thread_in_native, id=276]
    0x6e88bd90 JavaThread "http-443-Processor19" daemon [_thread_in_native, id=3780]
    0x7049de48 JavaThread "http-443-Processor18" daemon [_thread_in_native, id=2728]
    0x6ec80408 JavaThread "http-443-Processor17" daemon [_thread_in_native, id=4036]
    0x6ee89d18 JavaThread "http-443-Processor16" daemon [_thread_in_native, id=3208]
    0x6fea2c08 JavaThread "http-443-Processor15" daemon [_thread_in_native, id=3448]
    0x6f2009c0 JavaThread "http-443-Processor14" daemon [_thread_in_native, id=3952]
    0x6e8f04a8 JavaThread "http-443-Processor13" daemon [_thread_in_native, id=2720]
    0x6f926d70 JavaThread "http-443-Processor12" daemon [_thread_in_native, id=1760]
    0x6f39be20 JavaThread "http-443-Processor11" daemon [_thread_in_native, id=1376]
    0x6fda2d98 JavaThread "http-443-Processor10" daemon [_thread_in_native, id=2644]
    0x70089da0 JavaThread "http-443-Processor9" daemon [_thread_in_native, id=2080]
    0x6f0490a0 JavaThread "http-443-Processor8" daemon [_thread_in_native, id=700]
    0x6f001008 JavaThread "http-443-Processor7" daemon [_thread_in_native, id=1016]
    0x70485408 JavaThread "http-443-Processor6" daemon [_thread_in_native, id=2656]
    0x704254a0 JavaThread "http-443-Processor5" daemon [_thread_in_native, id=1056]
    0x6ec60408 JavaThread "http-443-Processor4" daemon [_thread_in_native, id=1736]
    0x6efa9008 JavaThread "http-443-Processor3" daemon [_thread_in_native, id=3140]
    0x700c2e80 JavaThread "http-443-Processor2" daemon [_thread_in_native, id=1864]
    0x6e9a2dd0 JavaThread "http-443-Processor1" daemon [_thread_in_native, id=1764]
    0x6ead6e38 JavaThread "ContainerBackgroundProcessor[StandardEngine[Catalina]]" daemon [_thread_blocked, id=2660]
    0x6eb8add8 JavaThread "Dispatcher-Thread-7" daemon [_thread_blocked, id=1808]
    0x6ff269d0 JavaThread "Thread-5" daemon [_thread_blocked, id=3392]
    0x6fe8e3c0 JavaThread "RunnableThread:5" [_thread_blocked, id=836]
    0x6fe8e008 JavaThread "RunnableThread:4" [_thread_blocked, id=3276]
    0x6fe8ebb0 JavaThread "RunnableThread:3" [_thread_blocked, id=2604]
    0x6eb31bf0 JavaThread "RunnableThread:2" [_thread_blocked, id=2548]
    0x6fe05e00 JavaThread "RunnableThread:1" [_thread_blocked, id=3956]
    0x6f8f7ce0 JavaThread "Thread-3" [_thread_blocked, id=3656]
    0x6f2c8828 JavaThread "DaemonThread:diskcachedaemon" [_thread_blocked, id=1384]
    0x6e9a5780 JavaThread "DaemonThread:feeddaemon" [_thread_blocked, id=420]
    0x6dd81c50 JavaThread "Thread-0" [_thread_in_native, id=4064]
    0x6dd035b8 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=1380]
    =>0x6dd02218 JavaThread "CompilerThread1" daemon [_thread_in_vm, id=2884]
    0x6dd01450 JavaThread "CompilerThread0" daemon [_thread_blocked, id=1456]
    0x6dd00688 JavaThread "AdapterThread" daemon [_thread_blocked, id=2888]
    0x6dcfa6c8 JavaThread "Finalizer" daemon [_thread_blocked, id=2880]
    0x0084c9a0 JavaThread "Reference Handler" daemon [_thread_blocked, id=1448]
    0x005c5fb0 JavaThread "main" [_thread_in_native, id=2876]
    Other Threads:
    0x0084b790 VMThread [id=1452]
    0x6dd048c8 WatcherThread [id=2180]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    PSYoungGen total 36416K, used 5368K [0x61c30000, 0x64280000, 0x6d1f0000)
    eden space 34112K, 14% used [0x61c30000,0x62107d70,0x63d80000)
    from space 2304K, 17% used [0x64040000,0x640a62a0,0x64280000)
    to space 2560K, 0% used [0x63d80000,0x63d80000,0x64000000)
    PSOldGen total 233024K, used 158462K [0x06df0000, 0x15180000, 0x61c30000)
    object space 233024K, 68% used [0x06df0000,0x108afb08,0x15180000)
    PSPermGen total 34560K, used 34472K [0x02df0000, 0x04fb0000, 0x06df0000)
    object space 34560K, 99% used [0x02df0000,0x04f9a388,0x04fb0000)
    Dynamic libraries:
    0x00400000 - 0x00419000      C:\Program Files\Apache Software Foundation\Tomcat 5.0\bin\tomcat5.exe
    0x7c800000 - 0x7c8c0000      C:\WINDOWS\system32\ntdll.dll
    0x77e40000 - 0x77f42000      C:\WINDOWS\system32\kernel32.dll
    0x77380000 - 0x77411000      C:\WINDOWS\system32\USER32.dll
    0x77c00000 - 0x77c48000      C:\WINDOWS\system32\GDI32.dll
    0x77f50000 - 0x77feb000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77c50000 - 0x77cef000      C:\WINDOWS\system32\RPCRT4.dll
    0x76f50000 - 0x76f63000      C:\WINDOWS\system32\Secur32.dll
    0x77da0000 - 0x77df2000      C:\WINDOWS\system32\SHLWAPI.dll
    0x77ba0000 - 0x77bfa000      C:\WINDOWS\system32\msvcrt.dll
    0x7c8d0000 - 0x7d0ce000      C:\WINDOWS\system32\SHELL32.dll
    0x77420000 - 0x77523000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.3790.3959_x-ww_D8713E55\comctl32.dll
    0x6d840000 - 0x6dbd8000      C:\Program Files\Java\jdk1.5.0_05\jre\bin\server\jvm.dll
    0x76aa0000 - 0x76acd000      C:\WINDOWS\system32\WINMM.dll
    0x6d2f0000 - 0x6d2f8000      C:\Program Files\Java\jdk1.5.0_05\jre\bin\hpi.dll
    0x76b70000 - 0x76b7b000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d680000 - 0x6d68c000      C:\Program Files\Java\jdk1.5.0_05\jre\bin\verify.dll
    0x6d370000 - 0x6d38d000      C:\Program Files\Java\jdk1.5.0_05\jre\bin\java.dll
    0x6d6a0000 - 0x6d6af000      C:\Program Files\Java\jdk1.5.0_05\jre\bin\zip.dll
    0x00d70000 - 0x00da5000      C:\WINDOWS\system32\rsaenh.dll
    0x76920000 - 0x769e2000      C:\WINDOWS\system32\USERENV.dll
    0x71c40000 - 0x71c97000      C:\WINDOWS\system32\netapi32.dll
    0x00db0000 - 0x00dc3000      C:\Program Files\Java\jdk1.5.0_05\jre\bin\net.dll
    0x71c00000 - 0x71c17000      C:\WINDOWS\system32\WS2_32.dll
    0x71bf0000 - 0x71bf8000      C:\WINDOWS\system32\WS2HELP.dll
    0x71b20000 - 0x71b61000      C:\WINDOWS\System32\mswsock.dll
    0x76ed0000 - 0x76efa000      C:\WINDOWS\system32\DNSAPI.dll
    0x76f70000 - 0x76f77000      C:\WINDOWS\System32\winrnr.dll
    0x76f10000 - 0x76f3e000      C:\WINDOWS\system32\WLDAP32.dll
    0x76f80000 - 0x76f85000      C:\WINDOWS\system32\rasadhlp.dll
    0x6f3e0000 - 0x6f43a000      C:\WINDOWS\system32\hnetcfg.dll
    0x71ae0000 - 0x71ae8000      C:\WINDOWS\System32\wshtcpip.dll
    0x6f440000 - 0x6f46f000      C:\Program Files\ISView\ntsecurity.dll
    0x76df0000 - 0x76e24000      C:\WINDOWS\system32\ACTIVEDS.dll
    0x76dc0000 - 0x76de8000      C:\WINDOWS\system32\adsldpc.dll
    0x76b80000 - 0x76bae000      C:\WINDOWS\system32\credui.dll
    0x76a80000 - 0x76a98000      C:\WINDOWS\system32\ATL.DLL
    0x77670000 - 0x777a9000      C:\WINDOWS\system32\ole32.dll
    0x77d00000 - 0x77d8b000      C:\WINDOWS\system32\OLEAUT32.dll
    0x777b0000 - 0x77833000      C:\WINDOWS\system32\CLBCatQ.DLL
    0x77010000 - 0x770d6000      C:\WINDOWS\system32\COMRes.dll
    0x77b90000 - 0x77b98000      C:\WINDOWS\system32\VERSION.dll
    0x75da0000 - 0x75e5d000      C:\WINDOWS\system32\SXS.DLL
    0x766f0000 - 0x76704000      C:\WINDOWS\system32\NTDSAPI.DLL
    0x71a60000 - 0x71ab8000      C:\WINDOWS\system32\kerberos.dll
    0x766e0000 - 0x766ec000      C:\WINDOWS\system32\cryptdll.dll
    0x76190000 - 0x761a2000      C:\WINDOWS\system32\MSASN1.dll
    0x76c90000 - 0x76cb7000      C:\WINDOWS\system32\msv1_0.dll
    0x76cf0000 - 0x76d0a000      C:\WINDOWS\system32\iphlpapi.dll
    0x75be0000 - 0x75d47000      C:\Program Files\Java\jdk1.5.0_05\jre\bin\awt.dll
    0x70fb0000 - 0x70fd7000      C:\WINDOWS\system32\WINSPOOL.DRV
    0x76290000 - 0x762ad000      C:\WINDOWS\system32\IMM32.dll
    0x75f60000 - 0x75fab000      C:\WINDOWS\system32\ddraw.dll
    0x758a0000 - 0x758a6000      C:\WINDOWS\system32\DCIMAN32.dll
    0x75d60000 - 0x75d9d000      C:\Program Files\Java\jdk1.5.0_05\jre\bin\fontmanager.dll
    0x758b0000 - 0x758b9000      C:\Program Files\Java\jdk1.5.0_05\jre\bin\nio.dll
    0x760b0000 - 0x760de000      C:\WINDOWS\system32\adsldp.dll
    0x760e0000 - 0x760f4000      C:\WINDOWS\system32\adsmsext.dll
    0x76120000 - 0x76137000      C:\WINDOWS\system32\tsuserex.dll
    0x761b0000 - 0x76215000      C:\WINDOWS\system32\msvcp60.dll
    0x771f0000 - 0x77201000      C:\WINDOWS\system32\WINSTA.dll
    0x7e020000 - 0x7e02f000      C:\WINDOWS\system32\SAMLIB.dll
    0x76150000 - 0x7616a000      C:\Program Files\ISView\OmniTREEVJava.dll
    0x76170000 - 0x76189000      C:\Program Files\Transport\bin\VMLIB32.dll
    0x76220000 - 0x7622a000      C:\Program Files\Transport\bin\WMCOMM32.dll
    0x76230000 - 0x76239000      C:\WINDOWS\system32\WSOCK32.dll
    0x76240000 - 0x7624a000      C:\Program Files\Transport\bin\DSLIB32.dll
    0x76250000 - 0x76262000      C:\Program Files\Transport\bin\SSLIB32.dll
    0x77530000 - 0x775c7000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_5.82.3790.3959_x-ww_78FCF8D0\COMCTL32.dll
    0x76270000 - 0x76284000      C:\Program Files\Transport\bin\WMOBJ32.dll
    0x764b0000 - 0x764bf000      C:\Program Files\OmniTREEV\bin\WMERR32.dll
    0x764c0000 - 0x764c6000      C:\Program Files\Transport\bin\WMSECU32.dll
    0x764d0000 - 0x764d8000      C:\Program Files\Transport\bin\WMAL32.dll
    0x764e0000 - 0x764e6000      C:\Program Files\Transport\bin\DYNARR32.dll
    0x76580000 - 0x765af000      C:\Program Files\Java\jdk1.5.0_05\jre\bin\cmm.dll
    0x766b0000 - 0x766cf000      C:\Program Files\Java\jdk1.5.0_05\jre\bin\jpeg.dll
    0x70fa0000 - 0x70fa5000      C:\WINDOWS\system32\ICMP.DLL
    VM Arguments:
    jvm_args: -Dcatalina.home=C:\Program Files\Apache Software Foundation\Tomcat 5.0 -Djava.endorsed.dirs=C:\Program Files\Apache Software Foundation\Tomcat 5.0\common\endorsed -Djava.io.tmpdir=C:\Program Files\Apache Software Foundation\Tomcat 5.0 -Xrs vfprintf -Xms256m -Xmx1636m
    java_command: <unknown>
    Environment Variables:
    JAVA_HOME=C:\Program Files\Java\jdk1.5.0_05
    PATH=C:\Program Files\Transport\bin;C:\Program Files\Windows Resource Kits\Tools\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Dell\SysMgt\oma\bin;C:\Program Files\Dell\SysMgt\RAC4;C:\Program Files\OmniTREEV\bin;C:\Program Files\Java\jdk1.5.0_05\bin;C:\Program Files\ISView\
    USERNAME=repl
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 4 Stepping 3, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows Server 2003 family Build 3790 Service Pack 2
    CPU:total 4 family 15, cmov, cx8, fxsr, mmx, sse, sse2, ht
    Memory: 4k page, physical 2097151k(2097151k free), swap 4194303k(4194303k free)
    vm_info: Java HotSpot(TM) Server VM (1.5.0_05-b05) for windows-x86, built on Aug 26 2005 15:10:30 by "java_re" with MS VC++ 6.0

    I am new to this thread. We see essentially the same error while running JBoss 4.0.4 (which includes Tomcat 5.5.17) on JDK 1.5.0_14. My specific error is generated while compiling a particular class in the JRC library from Crystal. It is worth noting that this 3rd-party library is 100%-pure Java.
    I am unable to find a current bug for internal error 4A41564123414C4C530E4350500018 against 1.5.0_14. Would it make sense to enter one?
    Here are a few notes:
    - Due to published JBoss incompatibilities we cannot validate this issue against JDK 1.6
    - The error only happens on a 64-bit server-grade machine running a 32-bit JVM on Windows 2003
    - The error happens in the 32-bit Windows version of both 1.5.0_08-b03 & 1.5.0_14-b03
    - The error is not reproduceable in the 64-bit Windows version of 1.5.0_08-b03
    - The error completely goes away with the following VM argument:
      -XX:CompileCommand=exclude,com/crystaldecisions/reports/reportdefinition/AdornmentProperties,intThe crash logs are below. Any help would be most appreciated.
    *1.5.0_08-b03:*
    # An unexpected error has been detected by HotSpot Virtual Machine:
    #  Internal Error (4A41564123414C4C530E4350500018), pid=3632, tid=152
    # Java VM: Java HotSpot(TM) Server VM (1.5.0_08-b03 mixed mode)
    ---------------  T H R E A D  ---------------
    Current thread (0x61ea2f30):  JavaThread "CompilerThread1" daemon [_thread_in_vm, id=152]
    Stack: [0x62350000,0x62390000)
    [error occurred during error reporting, step 110, id 0xc0000005]
    Current CompileTask:
    opto:1959      com.crystaldecisions.reports.reportdefinition.AdornmentProperties.int(Lcom/crystaldecisions/reports/common/c/e;Lcom/crystaldecisions/reports/reportdefinition/eq;)Z (646 bytes)
    ---------------  P R O C E S S  ---------------
    Java Threads: ( => current thread )
      0x661e6c28 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=3052]
      0x6604ad20 JavaThread "AWT-Windows" daemon [_thread_in_native, id=4012]
      0x62735940 JavaThread "JRC Timeout Thread" daemon [_thread_blocked, id=3296]
      0x62d38008 JavaThread "ConvertReports" daemon [_thread_in_Java, id=3280]
      0x64fb0e80 JavaThread "http-0.0.0.0-7003-3" daemon [_thread_blocked, id=2724]
      0x64965310 JavaThread "http-0.0.0.0-7003-2" daemon [_thread_in_native, id=3924]
      0x61ef7b50 JavaThread "http-0.0.0.0-7003-1" daemon [_thread_in_native, id=3540]
      0x64fea008 JavaThread "http-0.0.0.0-7003" daemon [_thread_in_native, id=3240]
      0x66463718 JavaThread "JBossLifeThread" [_thread_blocked, id=3584]
      0x65153008 JavaThread "Thread-25" [_thread_in_native, id=2476]
      0x65759510 JavaThread "JspRuntimeContext[\wswebapp.war]" daemon [_thread_blocked, id=3880]
      0x684b8a20 JavaThread "Timer-21" [_thread_blocked, id=1332]
      0x68505c60 JavaThread "Timer-20" daemon [_thread_blocked, id=2480]
      0x63371690 JavaThread "Timer-19" daemon [_thread_blocked, id=3732]
      0x6272ddd0 JavaThread "Timer-18" daemon [_thread_blocked, id=2688]
      0x6272dc48 JavaThread "JspRuntimeContext[\myproductwebapp.war]" daemon [_thread_blocked, id=2808]
      0x65f32d40 JavaThread "IdleRemover" daemon [_thread_blocked, id=2516]
      0x6506ad58 JavaThread "ActiveMQ Scheduler" daemon [_thread_blocked, id=3840]
      0x63d9ad58 JavaThread "ActiveMQ Scheduler" daemon [_thread_blocked, id=3972]
      0x6588fe48 JavaThread "ActiveMQ Transport: tcp:///10.180.77.155:61616" [_thread_in_native, id=3116]
      0x64ebecb0 JavaThread "Connection Consumer for dest Subscription[subId=-2147483648connection=ConnectionToken:ID:5/58e4c34db7baa7875758adbbae2f8113 destination=QUEUE.PtEngineMessenger messageSelector=null Local Create] id=3" [_thread_blocked, id=3576]
      0x66419e60 JavaThread "Connection Consumer for dest Subscription[subId=-2147483648connection=ConnectionToken:ID:3/2ebbe7e4a031df8078925204f40f23ba destination=QUEUE.IntegrationQueue messageSelector=null Local Create] id=2" [_thread_blocked, id=3672]
      0x641ab540 JavaThread "Connection Consumer for dest Subscription[subId=-2147483648connection=ConnectionToken:ID:1/7a8adeb3165327fe7f9a2cae588a9ed4 destination=QUEUE.DocuSysSendMessageQueue messageSelector=null Local Create] id=1" [_thread_blocked, id=2560]
      0x653d8378 JavaThread "Timer-16" [_thread_blocked, id=3384]
      0x63be2278 JavaThread "Timer-15" [_thread_blocked, id=3316]
      0x653e9ae8 JavaThread "Timer-14" [_thread_blocked, id=3108]
      0x649a8260 JavaThread "Timer-13" [_thread_blocked, id=2464]
      0x635b1c58 JavaThread "Timer-12" [_thread_blocked, id=3148]
      0x63997c80 JavaThread "Timer-11" [_thread_blocked, id=3056]
      0x65542b70 JavaThread "Timer-10" [_thread_blocked, id=3740]
      0x64b8b018 JavaThread "Timer-9" [_thread_blocked, id=3524]
      0x641362d8 JavaThread "Timer-8" [_thread_blocked, id=3956]
      0x63b58260 JavaThread "Timer-7" [_thread_blocked, id=3400]
      0x64b5ed88 JavaThread "Timer-6" [_thread_blocked, id=2980]
      0x630d7008 JavaThread "Timer-5" [_thread_blocked, id=3600]
      0x63cb2008 JavaThread "Timer-4" [_thread_blocked, id=4052]
      0x6286fe60 JavaThread "Timer-3" daemon [_thread_blocked, id=2424]
      0x6304b3f8 JavaThread "JspRuntimeContext[\jmx-console.war]" daemon [_thread_blocked, id=3968]
      0x634abe00 JavaThread "JspRuntimeContext[\jmx-console.war]" daemon [_thread_blocked, id=3332]
      0x65e61e28 JavaThread "JspRuntimeContext[\jmx-console.war]" daemon [_thread_blocked, id=2388]
      0x65686008 JavaThread "JspRuntimeContext[\jmx-console.war]" daemon [_thread_blocked, id=4032]
      0x65d6ce70 JavaThread "JspRuntimeContext[\jmx-console.war]" daemon [_thread_blocked, id=3916]
      0x61f6c328 JavaThread "UILServerILService Accept Thread" [_thread_in_native, id=2768]
      0x65092e58 JavaThread "TimeoutFactory-1" daemon [_thread_blocked, id=3800]
      0x628c2db8 JavaThread "JCA PoolFiller" [_thread_blocked, id=2852]
      0x64e02de8 JavaThread "HSQLDB Timer @4f71a3" daemon [_thread_blocked, id=3780]
      0x65568e40 JavaThread "Timer-2" daemon [_thread_blocked, id=3040]
      0x63ef13f8 JavaThread "WorkManager(3)-1" daemon [_thread_blocked, id=2856]
      0x65676020 JavaThread "JspRuntimeContext[\web-console.war]" daemon [_thread_blocked, id=2548]
      0x636cfe50 JavaThread "Thread-3" daemon [_thread_blocked, id=3976]
      0x65e71670 JavaThread "JBossMQ Cache Reference Softner" daemon [_thread_blocked, id=4060]
      0x63ffb198 JavaThread "JspRuntimeContext[\jbossmq-httpil.war]" daemon [_thread_blocked, id=664]
      0x65a2f6c8 JavaThread "JspRuntimeContext[\tmp27590jbossws-exp.war]" daemon [_thread_blocked, id=3132]
      0x65dbce38 JavaThread "JspRuntimeContext[\invoker.war]" daemon [_thread_blocked, id=1776]
      0x658c6488 JavaThread "ContainerBackgroundProcessor[StandardEngine[jboss.web]]" daemon [_thread_blocked, id=3548]
      0x65be3e70 JavaThread "JspRuntimeContext[\intranetlink]" daemon [_thread_blocked, id=2396]
      0x63145938 JavaThread "JspRuntimeContext[\output]" daemon [_thread_blocked, id=3896]
      0x635444c8 JavaThread "JspRuntimeContext[\app2]" daemon [_thread_blocked, id=3784]
      0x6355a020 JavaThread "JspRuntimeContext[\app1]" daemon [_thread_blocked, id=3124]
      0x6342fad0 JavaThread "SubscriptionWatchDog" [_thread_blocked, id=3912]
      0x62e9ccf8 JavaThread "PooledInvokerAcceptor#0-65004" [_thread_in_native, id=868]
      0x64074490 JavaThread "RMI TCP Accept-65003" daemon [_thread_in_native, id=3480]
      0x6406fde8 JavaThread "TimeoutFactory-0" daemon [_thread_blocked, id=3692]
      0x64118960 JavaThread "JBoss System Threads(1)-2" daemon [_thread_in_native, id=3424]
      0x62da0af0 JavaThread "GC Daemon" daemon [_thread_blocked, id=2872]
      0x62da0968 JavaThread "RMI Reaper" [_thread_blocked, id=3684]
      0x638a4e20 JavaThread "Timer-1" daemon [_thread_blocked, id=2812]
      0x630b6a50 JavaThread "RMI TCP Accept-65007" daemon [_thread_in_native, id=2936]
      0x62feb408 JavaThread "JBoss System Threads(1)-1" daemon [_thread_in_native, id=2404]
      0x62e7aa70 JavaThread "ScannerThread" daemon [_thread_blocked, id=500]
      0x62d28150 JavaThread "Timer-0" daemon [_thread_blocked, id=3348]
      0x00037ce8 JavaThread "DestroyJavaVM" [_thread_blocked, id=2584]
      0x61ea4238 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=3080]
    =>0x61ea2f30 JavaThread "CompilerThread1" daemon [_thread_in_vm, id=152]
      0x61ea20c0 JavaThread "CompilerThread0" daemon [_thread_in_native, id=1876]
      0x00035500 JavaThread "AdapterThread" daemon [_thread_blocked, id=3136]
      0x61ea0908 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=3060]
      0x61e98aa0 JavaThread "Finalizer" daemon [_thread_blocked, id=3928]
      0x61e98640 JavaThread "Reference Handler" daemon [_thread_blocked, id=2376]
    Other Threads:
      0x01c4cb88 VMThread [id=2920]
      0x61ea55f0 WatcherThread [id=3456]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    PSYoungGen      total 292160K, used 65808K [0x4d010000, 0x61510000, 0x61510000)
      eden space 248640K, 23% used [0x4d010000,0x50874510,0x5c2e0000)
      from space 43520K, 18% used [0x5ea90000,0x5f26fd00,0x61510000)
      to   space 40640K, 0% used [0x5c2e0000,0x5c2e0000,0x5ea90000)
    PSOldGen        total 998400K, used 173300K [0x10110000, 0x4d010000, 0x4d010000)
      object space 998400K, 17% used [0x10110000,0x1aa4d170,0x4d010000)
    PSPermGen       total 109952K, used 109926K [0x04d10000, 0x0b870000, 0x10110000)
      object space 109952K, 99% used [0x04d10000,0x0b8699d8,0x0b870000)
    Dynamic libraries:
    0x00400000 - 0x0040d000      C:\mycompany\myproduct12template\jdk1.5.0_08\bin\java.exe
    0x7d600000 - 0x7d6f0000      C:\WINDOWS\system32\ntdll.dll
    0x7d4c0000 - 0x7d5f0000      C:\WINDOWS\syswow64\kernel32.dll
    0x77f50000 - 0x77fec000      C:\WINDOWS\syswow64\ADVAPI32.dll
    0x7da20000 - 0x7db00000      C:\WINDOWS\syswow64\RPCRT4.dll
    0x77ba0000 - 0x77bfa000      C:\WINDOWS\syswow64\MSVCRT.dll
    0x6d8d0000 - 0x6dc6f000      C:\mycompany\myproduct12template\jdk1.5.0_08\jre\bin\server\jvm.dll
    0x7d930000 - 0x7da00000      C:\WINDOWS\syswow64\USER32.dll
    0x7d800000 - 0x7d890000      C:\WINDOWS\syswow64\GDI32.dll
    0x76aa0000 - 0x76acd000      C:\WINDOWS\system32\WINMM.dll
    0x71bc0000 - 0x71bc8000      C:\WINDOWS\system32\rdpsnd.dll
    0x771f0000 - 0x77201000      C:\WINDOWS\system32\WINSTA.dll
    0x71c40000 - 0x71c98000      C:\WINDOWS\syswow64\NETAPI32.dll
    0x76b70000 - 0x76b7b000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d2f0000 - 0x6d2f8000      C:\mycompany\myproduct12template\jdk1.5.0_08\jre\bin\hpi.dll
    0x6d700000 - 0x6d70c000      C:\mycompany\myproduct12template\jdk1.5.0_08\jre\bin\verify.dll
    0x6d370000 - 0x6d38d000      C:\mycompany\myproduct12template\jdk1.5.0_08\jre\bin\java.dll
    0x6d720000 - 0x6d72f000      C:\mycompany\myproduct12template\jdk1.5.0_08\jre\bin\zip.dll
    0x6d530000 - 0x6d543000      C:\mycompany\myproduct12template\jdk1.5.0_08\jre\bin\net.dll
    0x71c00000 - 0x71c17000      C:\WINDOWS\system32\WS2_32.dll
    0x71bf0000 - 0x71bf8000      C:\WINDOWS\system32\WS2HELP.dll
    0x7db30000 - 0x7dbb0000      C:\WINDOWS\System32\mswsock.dll
    0x76ed0000 - 0x76ef9000      C:\WINDOWS\system32\DNSAPI.dll
    0x76f70000 - 0x76f77000      C:\WINDOWS\System32\winrnr.dll
    0x76f10000 - 0x76f3e000      C:\WINDOWS\syswow64\WLDAP32.dll
    0x76f80000 - 0x76f85000      C:\WINDOWS\system32\rasadhlp.dll
    0x6d520000 - 0x6d528000      C:\mycompany\myproduct12template\jdk1.5.0_08\jre\bin\management.dll
    0x64550000 - 0x645a9000      C:\WINDOWS\system32\hnetcfg.dll
    0x71ae0000 - 0x71ae8000      C:\WINDOWS\System32\wshtcpip.dll
    0x68000000 - 0x6802f000      C:\WINDOWS\system32\rsaenh.dll
    0x76920000 - 0x769e4000      C:\WINDOWS\system32\USERENV.dll
    0x6d550000 - 0x6d559000      C:\mycompany\myproduct12template\jdk1.5.0_08\jre\bin\nio.dll
    0x6d070000 - 0x6d1d9000      C:\mycompany\myproduct12template\jdk1.5.0_08\jre\bin\awt.dll
    0x73070000 - 0x73097000      C:\WINDOWS\system32\WINSPOOL.DRV
    0x7dee0000 - 0x7df40000      C:\WINDOWS\system32\IMM32.dll
    0x77670000 - 0x777a4000      C:\WINDOWS\syswow64\ole32.dll
    0x73860000 - 0x738ac000      C:\WINDOWS\system32\ddraw.dll
    0x73b30000 - 0x73b36000      C:\WINDOWS\system32\DCIMAN32.dll
    VM Arguments:
    jvm_args: -Dprogram.name=run.bat -Xms1300m -Xmx1300m -Xmn325m -XX:MaxPermSize=180m -XX:+PrintGCDetails -Xloggc:../server/myproduct12template/log/gclog.log -Xnoclassgc -verbose:gc -XX:+DisableExplicitGC -Djava.endorsed.dirs=C:\mycompany/myproduct12template\lib\endorsed
    java_command: org.jboss.Main -c myproduct12template
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=C:\mycompany/myproduct12template\jdk1.5.0_08
    CLASSPATH=""
    PATH=C:\mycompany/myproduct12template\jdk1.5.0_08\bin;C:\mycompany/myproduct12template\jdk1.5.0_08\jre\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;c:\bin;
    USERNAME=mindev
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=EM64T Family 6 Model 15 Stepping 7, GenuineIntel
    ---------------  S Y S T E M  ---------------
    OS: Windows Server 2003 family Build 3790 Service Pack 1
    CPU:total 8 (cores per cpu 4, threads per core 1) family 6 model 15 stepping 7, cmov, cx8, fxsr, mmx, sse, sse2
    Memory: 4k page, physical 4194303k(4194303k free), swap 4194303k(4194303k free)
    vm_info: Java HotSpot(TM) Server VM (1.5.0_08-b03) for windows-x86, built on Jul 26 2006 00:51:44 by "java_re" with MS VC++ 6.0*1.5.0_14-b03:*
    # An unexpected error has been detected by HotSpot Virtual Machine:
    #  Internal Error (4A41564123414C4C530E4350500018), pid=2460, tid=3236
    # Java VM: Java HotSpot(TM) Server VM (1.5.0_14-b03 mixed mode)
    ---------------  T H R E A D  ---------------
    Current thread (0x61c8ff40):  JavaThread "CompilerThread0" daemon [_thread_in_vm, id=3236]
    Stack: [0x620e0000,0x62120000)
    [error occurred during error reporting, step 110, id 0xc0000005]
    Current CompileTask:
    opto:2104      com.crystaldecisions.reports.reportdefinition.AdornmentProperties.int(Lcom/crystaldecisions/reports/common/c/e;Lcom/crystaldecisions/reports/reportdefinition/eq;)Z (646 bytes)
    ---------------  P R O C E S S  ---------------
    Java Threads: ( => current thread )
      0x663b94b0 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=2288]
      0x64db7c10 JavaThread "AWT-Windows" daemon [_thread_in_native, id=2752]
      0x65784538 JavaThread "JRC Timeout Thread" daemon [_thread_blocked, id=4404]
      0x65950008 JavaThread "ConvertReports" daemon [_thread_in_Java, id=2256]
      0x61d3f430 JavaThread "http-0.0.0.0-7003-3" daemon [_thread_in_native, id=4548]
      0x63763720 JavaThread "http-0.0.0.0-7003-2" daemon [_thread_in_native, id=1108]
      0x61c998b0 JavaThread "http-0.0.0.0-7003-1" daemon [_thread_blocked, id=892]
      0x6540a798 JavaThread "http-0.0.0.0-7003" daemon [_thread_in_native, id=1720]
      0x632b2d08 JavaThread "JBossLifeThread" [_thread_blocked, id=3692]
      0x632b2b80 JavaThread "Thread-16" [_thread_in_native, id=2240]
      0x634ad5c0 JavaThread "JspRuntimeContext[\wswebapp.war]" daemon [_thread_blocked, id=4372]
      0x63da2c50 JavaThread "Timer-12" [_thread_blocked, id=2432]
      0x684d8068 JavaThread "Timer-11" daemon [_thread_blocked, id=4364]
      0x63e1cd40 JavaThread "Timer-10" [_thread_blocked, id=1048]
      0x663e28c0 JavaThread "Timer-9" daemon [_thread_blocked, id=2496]
      0x635a5d60 JavaThread "Timer-8" daemon [_thread_blocked, id=2324]
      0x684ece20 JavaThread "Timer-7" daemon [_thread_blocked, id=4752]
      0x65e279f0 JavaThread "JspRuntimeContext[\myproductwebapp.war]" daemon [_thread_blocked, id=4212]
      0x64fa0e78 JavaThread "ActiveMQ Scheduler" daemon [_thread_blocked, id=3052]
      0x61d95d20 JavaThread "ActiveMQ Scheduler" daemon [_thread_blocked, id=4424]
      0x64c49ea0 JavaThread "ActiveMQ Transport: tcp:///10.180.77.155:61616" [_thread_in_native, id=1800]
      0x65e2fe08 JavaThread "IdleRemover" daemon [_thread_blocked, id=1100]
      0x635e9008 JavaThread "Connection Consumer for dest Subscription[subId=-2147483648connection=ConnectionToken:ID:5/c67906e95c05def388ec84e337728e87 destination=QUEUE.PtEngineMessenger messageSelector=null Local Create] id=3" [_thread_blocked, id=1044]
      0x62ae5e58 JavaThread "Connection Consumer for dest Subscription[subId=-2147483648connection=ConnectionToken:ID:3/c60a7228cb35772396092e2c74190e8d destination=QUEUE.IntegrationQueue messageSelector=null Local Create] id=2" [_thread_blocked, id=4908]
      0x6518b618 JavaThread "Connection Consumer for dest Subscription[subId=-2147483648connection=ConnectionToken:ID:1/7bb12be28c64d18043010580495e2e2c destination=QUEUE.DocuSysSendMessageQueue messageSelector=null Local Create] id=1" [_thread_blocked, id=4464]
      0x63fe0d20 JavaThread "Timer-5" [_thread_blocked, id=3424]
      0x63b54348 JavaThread "Timer-4" [_thread_blocked, id=2408]
      0x625ca4b8 JavaThread "Timer-3" daemon [_thread_blocked, id=3316]
      0x64bbee58 JavaThread "JspRuntimeContext[\jmx-console.war]" daemon [_thread_blocked, id=5004]
      0x63887e78 JavaThread "JspRuntimeContext[\jmx-console.war]" daemon [_thread_blocked, id=4780]
      0x6407f408 JavaThread "JspRuntimeContext[\jmx-console.war]" daemon [_thread_blocked, id=4244]
      0x62eade70 JavaThread "JspRuntimeContext[\jmx-console.war]" daemon [_thread_blocked, id=4604]
      0x623af068 JavaThread "JspRuntimeContext[\jmx-console.war]" daemon [_thread_blocked, id=2484]
      0x65f59d58 JavaThread "UILServerILService Accept Thread" [_thread_in_native, id=3312]
      0x636e9e10 JavaThread "TimeoutFactory-1" daemon [_thread_blocked, id=4000]
      0x64c33008 JavaThread "JCA PoolFiller" [_thread_blocked, id=3524]
      0x65f26e10 JavaThread "HSQLDB Timer @17c4779" daemon [_thread_blocked, id=5032]
      0x6533bdf0 JavaThread "Timer-2" daemon [_thread_blocked, id=1268]
      0x63ec0d90 JavaThread "WorkManager(3)-1" daemon [_thread_blocked, id=4848]
      0x65efedf0 JavaThread "JspRuntimeContext[\web-console.war]" daemon [_thread_blocked, id=4352]
      0x64ef1d58 JavaThread "Thread-3" daemon [_thread_blocked, id=4388]
      0x64ef9008 JavaThread "JBossMQ Cache Reference Softner" daemon [_thread_blocked, id=2296]
      0x64eb6828 JavaThread "JspRuntimeContext[\jbossmq-httpil.war]" daemon [_thread_blocked, id=3532]
      0x63e3de60 JavaThread "JspRuntimeContext[\tmp19250jbossws-exp.war]" daemon [_thread_blocked, id=3904]
      0x65049e68 JavaThread "JspRuntimeContext[\invoker.war]" daemon [_thread_blocked, id=3128]
      0x65049ce0 JavaThread "ContainerBackgroundProcessor[StandardEngine[jboss.web]]" daemon [_thread_blocked, id=3404]
      0x663070a0 JavaThread "JspRuntimeContext[\intranetlink]" daemon [_thread_blocked, id=828]
      0x62deb188 JavaThread "JspRuntimeContext[\output]" daemon [_thread_blocked, id=4360]
      0x64d1fdb0 JavaThread "JspRuntimeContext[\app1]" daemon [_thread_blocked, id=3744]
      0x62669008 JavaThread "JspRuntimeContext[\app2]" daemon [_thread_blocked, id=1608]
      0x6345ae58 JavaThread "SubscriptionWatchDog" [_thread_blocked, id=4648]
      0x62b66bc0 JavaThread "PooledInvokerAcceptor#0-65004" [_thread_in_native, id=2404]
      0x63a1ed18 JavaThread "RMI TCP Accept-65003" daemon [_thread_in_native, id=4024]
      0x62b670c0 JavaThread "TimeoutFactory-0" daemon [_thread_blocked, id=2664]
      0x62b80d08 JavaThread "JBoss System Threads(1)-2" daemon [_thread_in_native, id=4708]
      0x62b2ca40 JavaThread "GC Daemon" daemon [_thread_blocked, id=4144]
      0x62c6fbd8 JavaThread "RMI Reaper" [_thread_blocked, id=756]
      0x63905510 JavaThread "Timer-1" daemon [_thread_blocked, id=4356]
      0x62c6f650 JavaThread "RMI TCP Accept-65007" daemon [_thread_in_native, id=3792]
      0x62c701c8 JavaThread "JBoss System Threads(1)-1" daemon [_thread_in_native, id=4676]
      0x62b72008 JavaThread "ScannerThread" daemon [_thread_blocked, id=580]
      0x62b325c8 JavaThread "Timer-0" daemon [_thread_blocked, id=3292]
      0x000379e0 JavaThread "DestroyJavaVM" [_thread_blocked, id=4228]
      0x61c920c8 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=4080]
      0x61c90db8 JavaThread "CompilerThread1" daemon [_thread_in_native, id=3396]
    =>0x61c8ff40 JavaThread "CompilerThread0" daemon [_thread_in_vm, id=3236]
      0x00034958 JavaThread "AdapterThread" daemon [_thread_blocked, id=1848]
      0x61c8e720 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=4872]
      0x61c89fa8 JavaThread "Finalizer" daemon [_thread_blocked, id=3552]
      0x61c89c80 JavaThread "Reference Handler" daemon [_thread_blocked, id=4092]
    Other Threads:
      0x01c5aa60 VMThread [id=356]
      0x61c93b40 WatcherThread [id=3288]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    PSYoungGen      total 290432K, used 165183K [0x4d020000, 0x61520000, 0x61520000)
      eden space 251264K, 63% used [0x4d020000,0x56cc87a8,0x5c580000)
      from space 39168K, 12% used [0x5c580000,0x5ca274b8,0x5ebc0000)
      to   space 37120K, 0% used [0x5f0e0000,0x5f0e0000,0x61520000)
    PSOldGen        total 998400K, used 180611K [0x10120000, 0x4d020000, 0x4d020000)
      object space 998400K, 18% used [0x10120000,0x1b180eb8,0x4d020000)
    PSPermGen       total 124416K, used 124295K [0x04d20000, 0x0c6a0000, 0x10120000)
      object space 124416K, 99% used [0x04d20000,0x0c681df0,0x0c6a0000)
    Dynamic libraries:
    0x00400000 - 0x0040d000      C:\mycompany\myproducttemplate\jdk1.5.0_14\bin\java.exe
    0x7d600000 - 0x7d6f0000      C:\WINDOWS\system32\ntdll.dll
    0x7d4c0000 - 0x7d5f0000      C:\WINDOWS\syswow64\kernel32.dll
    0x77f50000 - 0x77fec000      C:\WINDOWS\syswow64\ADVAPI32.dll
    0x7da20000 - 0x7db00000      C:\WINDOWS\syswow64\RPCRT4.dll
    0x77ba0000 - 0x77bfa000      C:\WINDOWS\syswow64\MSVCRT.dll
    0x6d8e0000 - 0x6dc87000      C:\mycompany\myproducttemplate\jdk1.5.0_14\jre\bin\server\jvm.dll
    0x7d930000 - 0x7da00000      C:\WINDOWS\syswow64\USER32.dll
    0x7d800000 - 0x7d890000      C:\WINDOWS\syswow64\GDI32.dll
    0x76aa0000 - 0x76acd000      C:\WINDOWS\system32\WINMM.dll
    0x7dee0000 - 0x7df40000      C:\WINDOWS\system32\IMM32.DLL
    0x71bc0000 - 0x71bc8000      C:\WINDOWS\system32\rdpsnd.dll
    0x771f0000 - 0x77201000      C:\WINDOWS\system32\WINSTA.dll
    0x71c40000 - 0x71c98000      C:\WINDOWS\syswow64\NETAPI32.dll
    0x76b70000 - 0x76b7b000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d300000 - 0x6d308000      C:\mycompany\myproducttemplate\jdk1.5.0_14\jre\bin\hpi.dll
    0x6d710000 - 0x6d71c000      C:\mycompany\myproducttemplate\jdk1.5.0_14\jre\bin\verify.dll
    0x6d380000 - 0x6d39d000      C:\mycompany\myproducttemplate\jdk1.5.0_14\jre\bin\java.dll
    0x6d730000 - 0x6d73f000      C:\mycompany\myproducttemplate\jdk1.5.0_14\jre\bin\zip.dll
    0x6d540000 - 0x6d553000      C:\mycompany\myproducttemplate\jdk1.5.0_14\jre\bin\net.dll
    0x71c00000 - 0x71c17000      C:\WINDOWS\system32\WS2_32.dll
    0x71bf0000 - 0x71bf8000      C:\WINDOWS\system32\WS2HELP.dll
    0x7db30000 - 0x7dbb0000      C:\WINDOWS\System32\mswsock.dll
    0x76ed0000 - 0x76eff000      C:\WINDOWS\system32\DNSAPI.dll
    0x76f70000 - 0x76f77000      C:\WINDOWS\System32\winrnr.dll
    0x76f10000 - 0x76f3e000      C:\WINDOWS\syswow64\WLDAP32.dll
    0x76f80000 - 0x76f88000      C:\WINDOWS\system32\rasadhlp.dll
    0x6d530000 - 0x6d538000      C:\mycompany\myproducttemplate\jdk1.5.0_14\jre\bin\management.dll
    0x64120000 - 0x64179000      C:\WINDOWS\system32\hnetcfg.dll
    0x71ae0000 - 0x71ae8000      C:\WINDOWS\System32\wshtcpip.dll
    0x68000000 - 0x6802f000      C:\WINDOWS\system32\rsaenh.dll
    0x76920000 - 0x769e4000      C:\WINDOWS\system32\USERENV.dll
    0x6d560000 - 0x6d569000      C:\mycompany\myproducttemplate\jdk1.5.0_14\jre\bin\nio.dll
    0x6d070000 - 0x6d1dd000      C:\mycompany\myproducttemplate\jdk1.5.0_14\jre\bin\awt.dll
    0x73070000 - 0x73097000      C:\WINDOWS\system32\WINSPOOL.DRV
    0x77670000 - 0x777a4000      C:\WINDOWS\syswow64\ole32.dll
    0x73860000 - 0x738ac000      C:\WINDOWS\system32\ddraw.dll
    0x73b30000 - 0x73b36000      C:\WINDOWS\system32\DCIMAN32.dll
    0x6c4f0000 - 0x6c541000      C:\WINDOWS\SysWOW64\MSCTF.dll
    0x75e60000 - 0x75e87000      C:\WINDOWS\system32\apphelp.dll
    0x67210000 - 0x6723e000      C:\WINDOWS\system32\msctfime.ime
    VM Arguments:
    jvm_args: -Dprogram.name=run.bat -Xms1300m -Xmx1300m -Xmn325m -XX:MaxPermSize=180m -XX:+PrintGCDetails -Xloggc:../server/myproducttemplate/log/gclog.log -Xnoclassgc -verbose:gc -XX:+DisableExplicitGC -Djava.endorsed.dirs=C:\mycompany\myproducttemplate\lib\endorsed
    java_command: org.jboss.Main -c myproducttemplate
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=C:\mycompany\myproducttemplate\jdk1.5.0_14
    CLASSPATH=""
    PATH=C:\mycompany\myproducttemplate\jdk1.5.0_14\bin;C:\mycompany\myproducttemplate\jdk1.5.0_14\jre\bin;c:\bin;C:\Program Files (x86)\Common Files\Crystal Decisions\2.5\bin\NOTES\;C:\Program Files (x86)\Common Files\Crystal Decisions\2.5\bin\NOTES\DATA\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files (x86)\Microsoft SQL Server\80\Tools\BINN;c:\tools\bin;c:\j2sdk1.4.2_08\bin;C:\Program Files (x86)\OpenStA\Common;
    USERNAME=mindev
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=AMD64 Family 15 Model 33 Stepping 2, AuthenticAMD
    ---------------  S Y S T E M  ---------------
    OS: Windows Server 2003 family Build 3790 Service Pack 1
    CPU:total 4 (cores per cpu 2, threads per core 1) family 15 model 33 stepping 2, cmov, cx8, fxsr, mmx, sse, sse2, sse3, mmxext, 3dnowext, 3dnow
    Memory: 4k page, physical 4194303k(4194303k free), swap 4194303k(4194303k free)
    vm_info: Java HotSpot(TM) Server VM (1.5.0_14-b03) for windows-x86, built on Oct  5 2007 01:01:51 by "java_re" with MS VC++ 6.0

  • Unexpected Error in Compiler Thread

    We seem to be getting a SIGSEGV in the native code of a Compiler Thread (typically named CompilerThread1).
    My problem is most similar to.
    http://forum.java.sun.com/thread.jspa?forumID=37&threadID=606432
    Except we are not running a 64 bit JVM. We are running JVM 1.5.0_06-b05 on a Red Hat Enterprise Linux environment.
    We started seeing this problem after we set -Xms500m -Xmx2000m. Before we implemented these settings, we were seeing OutOfMemoryExceptions while the applicaiton server was running. On the production environment, this error comes up when we are under heavy load. We have had a difficult time reproducing this error in a non-production environment, but we will continue to try to reproduce it on a consistent basis.
    This PDF seems to suggest that I am seeing a bug with the compiler.
    http://java.sun.com/j2se/1.5/pdf/jdk50_ts_guide.pdf
    For the next step we will disable compilation for the method named by the current CompileTask. We will also try switching to a client hotspot VM. However, because I have had trouble consistently reproducing the bug, I would like to get feedback from everyone. Is this really a bug with the compiler? Could it be a problem with memory leak or somekind of resource leak? Could it be a problem with Lucene specifcally?
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # SIGSEGV (0xb) at pc=0xb6e97cd1, pid=27543, tid=599825328
    # Java VM: Java HotSpot(TM) Server VM (1.5.0_06-b05 mixed mode)
    # Problematic frame:
    # V [libjvm.so+0x3c9cd1]
    --------------- T H R E A D ---------------
    Current thread (0x080f3638): JavaThread "CompilerThread1" daemon [_thread_in_native, id=27550]
    siginfo:si_signo=11, si_errno=0, si_code=1, si_addr=0x00000000
    Registers:
    EAX=0x00000000, EBX=0xb70797f0, ECX=0x23c08610, EDX=0x21807fc4
    ESP=0x23c08584, EBP=0x23c085a8, ESI=0x0856c918, EDI=0x23c08610
    EIP=0xb6e97cd1, CR2=0x00000000, EFLAGS=0x00010216
    Top of Stack: (sp=0x23c08584)
    0x23c08584: 23c08bc0 23c08bd0 b6e97c16 b70797f0
    0x23c08594: 00000000 23c085c8 b70797f0 0856c918
    0x23c085a4: 0856c8d4 23c085d8 b6e97d75 0856d01c
    0x23c085b4: 21807fc4 0856d01c 23c08610 0856d080
    0x23c085c4: 21801884 0856c8d4 b70797f0 0856d01c
    0x23c085d4: 00000000 23c08638 b6e98258 0856d01c
    0x23c085e4: 0856c918 0856d01c 23c08610 00000023
    0x23c085f4: 218010ac 23c08638 b6f1cbf1 21801884
    Instructions: (pc=0xb6e97cd1)
    0xb6e97cc1: 10 eb de 31 c0 eb 8e 8b 42 04 83 ec 0c 8b 40 08
    0xb6e97cd1: 8b 08 50 ff 51 28 83 c4 10 e9 48 ff ff ff 90 55
    Stack: [0x23b89000,0x23c0a000), sp=0x23c08584, free space=509k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [libjvm.so+0x3c9cd1]
    V [libjvm.so+0x3c9d75]
    V [libjvm.so+0x3ca258]
    V [libjvm.so+0x4511fd]
    V [libjvm.so+0x450e90]
    V [libjvm.so+0x1a11c0]
    V [libjvm.so+0x19e432]
    V [libjvm.so+0x1474b3]
    V [libjvm.so+0x1a6929]
    V [libjvm.so+0x1a6281]
    V [libjvm.so+0x4c8366]
    V [libjvm.so+0x4c2ba3]
    V [libjvm.so+0x424338]
    C [libpthread.so.0+0x4dd8]
    Current CompileTask:
    opto:972 org.apache.lucene.index.IndexReader$1.doBody()Ljava/lang/Object; (99 bytes)
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x09b08440 JavaThread "PingSender" daemon [_thread_blocked, id=27683]
    0x097fa108 JavaThread "PingWaiter" daemon [_thread_blocked, id=27682]
    0x08cfaae8 JavaThread "TimeScheduler.Thread" daemon [_thread_blocked, id=27678]
    0x09b784d0 JavaThread "TimeScheduler.Thread" daemon [_thread_blocked, id=27677]
    0x09cdfaa0 JavaThread "MERGE2.FindSubgroups thread" daemon [_thread_blocked, id=27671]
    0x097fa2c8 JavaThread "Timer-3" daemon [_thread_blocked, id=27647]
    0x097f9c90 JavaThread "http-0.0.0.0-8080-2" daemon [_thread_in_native, id=27646]
    0x08116da0 JavaThread "http-0.0.0.0-8080-1" daemon [_thread_blocked, id=27644]
    0x09b8aee8 JavaThread "TP-Monitor" daemon [_thread_blocked, id=27643]
    0x09b8aa88 JavaThread "TP-Processor4" daemon [_thread_in_native, id=27642]
    0x09c35eb0 JavaThread "TP-Processor3" daemon [_thread_blocked, id=27641]
    0x09b2e8e0 JavaThread "TP-Processor2" daemon [_thread_blocked, id=27640]
    0x09b9a760 JavaThread "TP-Processor1" daemon [_thread_blocked, id=27639]
    0x09b2ec60 JavaThread "http-0.0.0.0-8080" daemon [_thread_in_native, id=27638]
    0x09c30610 JavaThread "JBossLifeThread" [_thread_blocked, id=27637]
    0x082a8990 JavaThread "UDP mcast receiver" daemon [_thread_in_native, id=27633]
    0x082a8180 JavaThread "UDP.UcastReceiverThread" daemon [_thread_in_native, id=27632]
    0x080ca0a0 JavaThread "TimeScheduler.Thread" daemon [_thread_blocked, id=27631]
    0x09d42dc0 JavaThread "Thread-48" daemon [_thread_blocked, id=27630]
    0x080c9ba8 JavaThread "DistributedIndexRetryTimer" daemon [_thread_blocked, id=27629]
    0x09fbbef8 JavaThread "DistributedIndexDispatchThread" [_thread_blocked, id=27628]
    0x09d42fa0 JavaThread "Timer-2" daemon [_thread_blocked, id=27627]
    0x09b8f160 JavaThread "LuceneSearchServiceIndexQueueThread" [_thread_in_vm, id=27626]
    0x09d43ae0 JavaThread "DefaultQuartzScheduler_QuartzSchedulerThread" [_thread_blocked, id=27624]
    0x08a8d468 JavaThread "DefaultQuartzScheduler_Worker-9" [_thread_blocked, id=27623]
    0x09914778 JavaThread "DefaultQuartzScheduler_Worker-8" [_thread_blocked, id=27622]
    0x089c8e20 JavaThread "DefaultQuartzScheduler_Worker-7" [_thread_blocked, id=27621]
    0x089c7f00 JavaThread "DefaultQuartzScheduler_Worker-6" [_thread_blocked, id=27620]
    0x08ae0310 JavaThread "DefaultQuartzScheduler_Worker-5" [_thread_blocked, id=27619]
    0x086747a8 JavaThread "DefaultQuartzScheduler_Worker-4" [_thread_blocked, id=27618]
    0x089869f8 JavaThread "DefaultQuartzScheduler_Worker-3" [_thread_blocked, id=27617]
    0x081fa918 JavaThread "DefaultQuartzScheduler_Worker-2" [_thread_blocked, id=27616]
    0x08c31048 JavaThread "DefaultQuartzScheduler_Worker-1" [_thread_blocked, id=27615]
    0x09b27f98 JavaThread "DefaultQuartzScheduler_Worker-0" [_thread_blocked, id=27614]
    0x097d7aa8 JavaThread "UDP mcast receiver" daemon [_thread_in_native, id=27609]
    0x08c98710 JavaThread "UDP.UcastReceiverThread" daemon [_thread_in_native, id=27608]
    0x08c98a10 JavaThread "TimeScheduler.Thread" daemon [_thread_blocked, id=27607]
    0x097d77e8 JavaThread "Thread-39" daemon [_thread_blocked, id=27606]
    0x097da8e8 JavaThread "UpHandler (GMS)" daemon [_thread_blocked, id=27605]
    0x09745420 JavaThread "DownHandler (GMS)" daemon [_thread_blocked, id=27604]
    0x08c947a0 JavaThread "UpHandler (FRAG)" daemon [_thread_blocked, id=27603]
    0x08c94218 JavaThread "DownHandler (FRAG)" daemon [_thread_blocked, id=27602]
    0x08d1c3d0 JavaThread "UpHandler (STABLE)" daemon [_thread_blocked, id=27601]
    0x089b36d0 JavaThread "DownHandler (STABLE)" daemon [_thread_blocked, id=27600]
    0x0820ff00 JavaThread "UpHandler (UNICAST)" daemon [_thread_blocked, id=27599]
    0x0820f978 JavaThread "DownHandler (UNICAST)" daemon [_thread_blocked, id=27598]
    0x0820f418 JavaThread "UpHandler (NAKACK)" daemon [_thread_blocked, id=27597]
    0x09d06898 JavaThread "DownHandler (NAKACK)" daemon [_thread_blocked, id=27596]
    0x082e63d0 JavaThread "UpHandler (VERIFY_SUSPECT)" daemon [_thread_blocked, id=27595]
    0x09bf7908 JavaThread "DownHandler (VERIFY_SUSPECT)" daemon [_thread_blocked, id=27594]
    0x08d258c0 JavaThread "UpHandler (FD)" daemon [_thread_blocked, id=27593]
    0x09c9cc78 JavaThread "DownHandler (FD)" daemon [_thread_blocked, id=27592]
    0x09c9c6f8 JavaThread "UpHandler (PING)" daemon [_thread_blocked, id=27591]
    0x08c9a400 JavaThread "DownHandler (PING)" daemon [_thread_blocked, id=27590]
    0x09bf8060 JavaThread "DownHandler (UDP)" daemon [_thread_blocked, id=27589]
    0x09c49bd8 JavaThread "JCA PoolFiller" [_thread_blocked, id=27588]
    0x09e22048 JavaThread "IdleRemover" [_thread_blocked, id=27587]
    0x082ae378 JavaThread "UpHandler (GMS)" daemon [_thread_blocked, id=27586]
    0x082addf0 JavaThread "DownHandler (GMS)" daemon [_thread_blocked, id=27585]
    0x085b67e8 JavaThread "UpHandler (FRAG)" daemon [_thread_blocked, id=27584]
    0x08237fc8 JavaThread "DownHandler (FRAG)" daemon [_thread_blocked, id=27583]
    0x09b6deb0 JavaThread "UpHandler (STABLE)" daemon [_thread_blocked, id=27582]
    0x09b9f7c8 JavaThread "DownHandler (STABLE)" daemon [_thread_blocked, id=27581]
    0x0986be10 JavaThread "UpHandler (UNICAST)" daemon [_thread_blocked, id=27580]
    0x09c17a40 JavaThread "DownHandler (UNICAST)" daemon [_thread_blocked, id=27579]
    0x089d5d68 JavaThread "UpHandler (NAKACK)" daemon [_thread_blocked, id=27578]
    0x08c71320 JavaThread "DownHandler (NAKACK)" daemon [_thread_blocked, id=27577]
    0x080dfb28 JavaThread "UpHandler (VERIFY_SUSPECT)" daemon [_thread_blocked, id=27576]
    0x0987a9e8 JavaThread "DownHandler (VERIFY_SUSPECT)" daemon [_thread_blocked, id=27575]
    0x09cf61c8 JavaThread "UpHandler (FD)" daemon [_thread_blocked, id=27574]
    0x08568f50 JavaThread "DownHandler (FD)" daemon [_thread_blocked, id=27573]
    0x08568ae8 JavaThread "UpHandler (PING)" daemon [_thread_blocked, id=27572]
    0x08c3c840 JavaThread "DownHandler (PING)" daemon [_thread_blocked, id=27571]
    0x09748998 JavaThread "DownHandler (UDP)" daemon [_thread_blocked, id=27570]
    0x09e965d8 JavaThread "WorkManager(3)-1" daemon [_thread_blocked, id=27569]
    0x08b33828 JavaThread "ContainerBackgroundProcessor[StandardEngine[jboss.web]]" daemon [_thread_blocked, id=27567]
    0x08ced500 JavaThread "PooledInvokerAcceptor#0-4445" [_thread_in_native, id=27566]
    0x08b3c6f8 JavaThread "RMI TCP Accept-4444" daemon [_thread_in_native, id=27565]
    0x08beec00 JavaThread "ClassLoadingPool(2)-1" daemon [_thread_in_native, id=27564]
    0x08cf2b28 JavaThread "JBoss System Threads(1)-1" daemon [_thread_in_native, id=27563]
    0x08b3ebb8 JavaThread "GC Daemon" daemon [_thread_blocked, id=27562]
    0x08c76f48 JavaThread "RMI Reaper" [_thread_blocked, id=27561]
    0x08c77570 JavaThread "Timer-1" daemon [_thread_blocked, id=27560]
    0x08c77968 JavaThread "RMI TCP Accept-1098" daemon [_thread_in_native, id=27559]
    0x08c42148 JavaThread "ScannerThread" daemon [_thread_blocked, id=27558]
    0x08c861a0 JavaThread "Dispatcher-Thread-2" daemon [_thread_blocked, id=27557]
    0x08bc47f8 JavaThread "Timer-0" daemon [_thread_blocked, id=27555]
    0x0805c940 JavaThread "DestroyJavaVM" [_thread_blocked, id=27543]
    0x080f4ac0 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=27551]
    =>0x080f3638 JavaThread "CompilerThread1" daemon [_thread_in_native, id=27550]
    0x080f25d8 JavaThread "CompilerThread0" daemon [_thread_blocked, id=27549]
    0x080f1330 JavaThread "AdapterThread" daemon [_thread_blocked, id=27548]
    0x080f0478 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=27547]
    0x080e5c68 JavaThread "Finalizer" daemon [_thread_blocked, id=27546]
    0x080e57d8 JavaThread "Reference Handler" daemon [_thread_blocked, id=27545]
    Other Threads:
    0x080e3348 VMThread [id=27544]
    0x080f5f60 WatcherThread [id=27552]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 51328K, used 7185K [0x24a80000, 0x28230000, 0x328b0000)
    eden space 45632K, 3% used [0x24a80000, 0x24bf4588, 0x27710000)
    from space 5696K, 100% used [0x27ca0000, 0x28230000, 0x28230000)
    to space 5696K, 0% used [0x27710000, 0x27710000, 0x27ca0000)
    tenured generation total 455168K, used 44152K [0x328b0000, 0x4e530000, 0xa1a80000)
    the space 455168K, 9% used [0x328b0000, 0x353ce2a0, 0x353ce400, 0x4e530000)
    compacting perm gen total 36608K, used 36539K [0xa1a80000, 0xa3e40000, 0xb1a80000)
    the space 36608K, 99% used [0xa1a80000, 0xa3e2ef78, 0xa3e2f000, 0xa3e40000)
    No shared spaces configured.
    Dynamic libraries:
    08048000-08057000 r-xp 00000000 08:03 48004 /opt/jdk1.5.0_06/bin/java
    08057000-08059000 rwxp 0000e000 08:03 48004 /opt/jdk1.5.0_06/bin/java
    08059000-0a0db000 rwxp 00000000 00:00 0
    19cf6000-19cf9000 ---p 00000000 00:00 0
    19cf9000-19d77000 rwxp 00003000 00:00 0
    19d77000-19d7a000 ---p 00000000 00:00 0
    19d7a000-19df8000 rwxp 00003000 00:00 0
    19df8000-19dfb000 ---p 00000000 00:00 0
    19dfb000-19e79000 rwxp 00003000 00:00 0
    19e79000-19e7c000 ---p 00081000 00:00 0
    19e7c000-19efa000 rwxp 00084000 00:00 0
    19efa000-19efd000 ---p 00000000 00:00 0
    19efd000-19f7b000 rwxp 00003000 00:00 0
    19f7b000-19f7e000 ---p 00000000 00:00 0
    19f7e000-19ffc000 rwxp 00003000 00:00 0
    19ffc000-19fff000 ---p 00081000 00:00 0
    19fff000-1a07d000 rwxp 00084000 00:00 0
    1a07d000-1a080000 ---p 00000000 00:00 0
    1a080000-1a0fe000 rwxp 00003000 00:00 0
    1a0fe000-1a101000 ---p 00081000 00:00 0
    1a101000-1a17f000 rwxp 00084000 00:00 0
    1a17f000-1a182000 ---p 00000000 00:00 0
    1a182000-1a200000 rwxp 00003000 00:00 0
    1a27d000-1a280000 ---p 00000000 00:00 0
    1a280000-1a2fe000 rwxp 00003000 00:00 0
    1a2fe000-1a301000 ---p 00081000 00:00 0
    1a301000-1a37f000 rwxp 00084000 00:00 0
    1a37f000-1a382000 ---p 00000000 00:00 0
    1a382000-1a400000 rwxp 00003000 00:00 0
    1a47b000-1a47e000 ---p 00000000 00:00 0
    1a47e000-1a4fc000 rwxp 00003000 00:00 0
    1a4fc000-1a4ff000 ---p 00081000 00:00 0
    1a4ff000-1a57d000 rwxp 00084000 00:00 0
    1a57d000-1a580000 ---p 00000000 00:00 0
    1a580000-1a5fe000 rwxp 00003000 00:00 0
    1a5fe000-1a601000 ---p 00082000 00:00 0
    1a601000-1a67f000 rwxp 00085000 00:00 0
    1a67f000-1a682000 ---p 00103000 00:00 0
    1a682000-1a721000 rwxp 00106000 00:00 0
    1a721000-1a800000 ---p 00000000 00:00 0
    1a87f000-1a882000 ---p 00000000 00:00 0
    1a882000-1a9f9000 rwxp 00003000 00:00 0
    1a9f9000-1aa00000 ---p 0011c000 00:00 0
    1aa2c000-1aa2f000 ---p 00000000 00:00 0
    1aa2f000-1aaad000 rwxp 00003000 00:00 0
    1aaad000-1aab0000 ---p 00081000 00:00 0
    1aab0000-1ab2e000 rwxp 00084000 00:00 0
    1ab2e000-1ab31000 ---p 00000000 00:00 0
    1ab31000-1abaf000 rwxp 00003000 00:00 0
    1abaf000-1abb2000 ---p 00081000 00:00 0
    1abb2000-1ac30000 rwxp 00084000 00:00 0
    1ac30000-1ac33000 ---p 00102000 00:00 0
    1ac33000-1acb1000 rwxp 00105000 00:00 0
    1acba000-1acbd000 ---p 00000000 00:00 0
    1acbd000-1ad3b000 rwxp 00003000 00:00 0
    1ad7f000-1ad82000 ---p 00000000 00:00 0
    1ad82000-1af00000 rwxp 00003000 00:00 0
    1af7d000-1af80000 ---p 00042000 00:00 0
    1af80000-1affe000 rwxp 00045000 00:00 0
    1affe000-1b001000 ---p 00081000 00:00 0
    1b001000-1b07f000 rwxp 00084000 00:00 0
    1b07f000-1b082000 ---p 00102000 00:00 0
    1b082000-1b200000 rwxp 00105000 00:00 0
    1b27f000-1b282000 ---p 00000000 00:00 0
    1b282000-1b400000 rwxp 00003000 00:00 0
    1b452000-1b455000 ---p 00000000 00:00 0
    1b455000-1b4d3000 rwxp 00003000 00:00 0
    1b4d3000-1b4d6000 ---p 00081000 00:00 0
    1b4d6000-1b554000 rwxp 00084000 00:00 0
    1b554000-1b557000 ---p 00081000 00:00 0
    1b557000-1b5d5000 rwxp 00084000 00:00 0
    1b5d5000-1b5d8000 ---p 00000000 00:00 0
    1b5d8000-1b656000 rwxp 00003000 00:00 0
    1b656000-1b659000 ---p 00081000 00:00 0
    1b659000-1b6d7000 rwxp 00084000 00:00 0
    1b6d7000-1b6da000 ---p 00000000 00:00 0
    1b6da000-1b758000 rwxp 00003000 00:00 0
    1b758000-1b75b000 ---p 00081000 00:00 0
    1b75b000-1b7d9000 rwxp 00084000 00:00 0
    1b7d9000-1b7dc000 ---p 00000000 00:00 0
    1b7dc000-1b85a000 rwxp 00003000 00:00 0
    1b85a000-1b85d000 ---p 00081000 00:00 0
    1b85d000-1b8db000 rwxp 00084000 00:00 0
    1b8db000-1b8de000 ---p 00102000 00:00 0
    1b8de000-1b95c000 rwxp 00105000 00:00 0
    1b95c000-1b95f000 ---p 00081000 00:00 0
    1b95f000-1b9dd000 rwxp 00084000 00:00 0
    1b9dd000-1b9e0000 ---p 00102000 00:00 0
    1b9e0000-1ba5e000 rwxp 00105000 00:00 0
    1ba5e000-1ba61000 ---p 00000000 00:00 0
    1ba61000-1badf000 rwxp 00003000 00:00 0
    1badf000-1bae2000 ---p 00081000 00:00 0
    1bae2000-1bb60000 rwxp 00084000 00:00 0
    1bb60000-1bb63000 ---p 00102000 00:00 0
    1bb63000-1bbe1000 rwxp 00105000 00:00 0
    1bbe1000-1bbe4000 ---p 00183000 00:00 0
    1bbe4000-1bc62000 rwxp 00186000 00:00 0
    1bc62000-1bc65000 ---p 00204000 00:00 0
    1bc65000-1bce3000 rwxp 00207000 00:00 0
    1bce3000-1bce6000 ---p 00081000 00:00 0
    1bce6000-1bd64000 rwxp 00084000 00:00 0
    1bd64000-1bd67000 ---p 00102000 00:00 0
    1bd67000-1bde5000 rwxp 00105000 00:00 0
    1bde5000-1bde8000 ---p 00183000 00:00 0
    1bde8000-1be66000 rwxp 00186000 00:00 0
    1be66000-1be69000 ---p 00204000 00:00 0
    1be69000-1bee7000 rwxp 00207000 00:00 0
    1bee7000-1beea000 ---p 00081000 00:00 0
    1beea000-1bf68000 rwxp 00084000 00:00 0
    1bf68000-1bf6b000 ---p 00102000 00:00 0
    1bf6b000-1bfe9000 rwxp 00105000 00:00 0
    1bfe9000-1bfec000 ---p 00183000 00:00 0
    1bfec000-1c06a000 rwxp 00186000 00:00 0
    1c06a000-1c06d000 ---p 00000000 00:00 0
    1c06d000-1c0eb000 rwxp 00003000 00:00 0
    1c0eb000-1c0ee000 ---p 00081000 00:00 0
    1c0ee000-1c16c000 rwxp 00084000 00:00 0
    1c16c000-1c16f000 ---p 00102000 00:00 0
    1c16f000-1c1ed000 rwxp 00105000 00:00 0
    1c1ed000-1c1f0000 ---p 00183000 00:00 0
    1c1f0000-1c26e000 rwxp 00186000 00:00 0
    1c27f000-1c282000 ---p 00000000 00:00 0
    1c282000-1c400000 rwxp 00003000 00:00 0
    1c460000-1c463000 ---p 00042000 00:00 0
    1c463000-1c4e1000 rwxp 00045000 00:00 0
    1c4e1000-1c4e4000 ---p 00081000 00:00 0
    1c4e4000-1c562000 rwxp 00084000 00:00 0
    1c562000-1c565000 ---p 00102000 00:00 0
    1c565000-1c5e3000 rwxp 00105000 00:00 0
    1c5e3000-1c5e6000 ---p 00183000 00:00 0
    1c5e6000-1c664000 rwxp 00186000 00:00 0
    1c665000-1c668000 ---p 00000000 00:00 0
    1c668000-1c6e6000 rwxp 00003000 00:00 0
    1c6e6000-1c6e9000 ---p 00081000 00:00 0
    1c6e9000-1c767000 rwxp 00084000 00:00 0
    1c77f000-1c782000 ---p 00000000 00:00 0
    1c782000-1c900000 rwxp 00003000 00:00 0
    1c97f000-1c982000 ---p 00000000 00:00 0
    1c982000-1cafd000 rwxp 00003000 00:00 0
    1cafd000-1cb00000 ---p 00029000 00:00 0
    1cb00000-1cbff000 rwxp 00000000 00:00 0
    1cbff000-1cc00000 ---p 00000000 00:00 0
    1cc7f000-1cc82000 ---p 00000000 00:00 0
    1cc82000-1cdf7000 rwxp 00003000 00:00 0
    1cdf7000-1ce00000 ---p 000f7000 00:00 0
    1ce2e000-1ce31000 ---p 00000000 00:00 0
    1ce31000-1ceaf000 rwxp 00003000 00:00 0
    1ceaf000-1cece000 r-xs 00000000 08:02 1966130 /var/lms/lms-server/tmp/deploy/tmp3503lms-vw.ear-contents/APP-INF/lib/wsdl4j-1.5.1.jar
    1cef7000-1cefd000 r-xs 00000000 08:02 1966129 /var/lms/lms-server/tmp/deploy/tmp3503lms-vw.ear-contents/APP-INF/lib/vw-wsdl.jar
    1cefd000-1d2a4000 r-xs 00000000 08:02 1966128 /var/lms/lms-server/tmp/deploy/tmp3503lms-vw.ear-contents/APP-INF/lib/star-xml.jar
    [contents of ear deployment snipped]
    1e2b0000-1e300000 r-xs 00000000 08:02 1966086 /var/lms/lms-server/tmp/deploy/tmp3503lms-vw.ear-contents/APP-INF/lib/cglib-nodep-2.1.jar
    1e300000-1e4f4000 rwxp 00136000 00:00 0
    1e4f4000-1e500000 ---p 00000000 00:00 0
    1e500000-1ea00000 rwxp 00024000 00:00 0
    1ea47000-1ea4f000 r-xs 00000000 08:02 1966085 /var/lms/lms-server/tmp/deploy/tmp3503lms-vw.ear-contents/APP-INF/lib/bzip2.jar
    1ea4f000-1ebd6000 r-xs 00000000 08:02 1966084 /var/lms/lms-server/tmp/deploy/tmp3503lms-vw.ear-contents/APP-INF/lib/axis.jar
    1ebd6000-1ff00000 r-xs 00000000 08:02 1835046 /var/lms/lms-server/tmp/deploy/tmp3503lms-vw.ear
    1ff00000-1ffff000 rwxp 00021000 00:00 0
    1ffff000-20000000 ---p 0004a000 00:00 0
    2007f000-20082000 ---p 00000000 00:00 0
    20082000-202fc000 rwxp 00003000 00:00 0
    202fc000-20300000 ---p 00000000 00:00 0
    20300000-207fe000 rwxp 00000000 00:00 0
    207fe000-20800000 ---p 00000000 00:00 0
    2087f000-20882000 ---p 00000000 00:00 0
    20882000-20af4000 rwxp 00003000 00:00 0
    20af4000-20b00000 ---p 00000000 00:00 0
    20b00000-20bfc000 rwxp 00000000 00:00 0
    20bfc000-20c00000 ---p 00000000 00:00 0
    20c00000-20ef8000 rwxp 00004000 00:00 0
    20ef8000-20f00000 ---p 00000000 00:00 0
    20f00000-211ff000 rwxp 00000000 00:00 0
    211ff000-21200000 ---p 00051000 00:00 0
    21207000-2120a000 ---p 00000000 00:00 0
    2120a000-21288000 rwxp 00003000 00:00 0
    21288000-212f2000 r-xs 00000000 08:02 1966083 /var/lms/lms-server/tmp/deploy/tmp3503lms-vw.ear-contents/APP-INF/lib/antlr-2.7.5H3.jar
    212f2000-21300000 r-xs 00000000 08:02 1966082 /var/lms/lms-server/tmp/deploy/tmp3503lms-vw.ear-contents/APP-INF/lib/activation.jar
    21300000-213fb000 rwxp 00080000 00:00 0
    213fb000-21400000 ---p 000ba000 00:00 0
    21477000-214c8000 r-xs 00000000 08:02 1835030 /var/lms/lms-server/tmp/deploy/tmp3487jcommon.jar
    214c8000-214ec000 r-xs 00000000 08:02 1835029 /var/lms/lms-server/tmp/deploy/tmp3486console-mgr-classes.jar
    21517000-2151a000 ---p 00000000 00:00 0
    2151a000-21598000 rwxp 00003000 00:00 0
    21598000-215a0000 r-xs 00000000 08:02 1966124 /var/lms/lms-server/tmp/deploy/tmp3503lms-vw.ear-contents/APP-INF/lib/relaxngDatatype.jar
    215a0000-21615000 r-xs 00000000 08:02 1966131 /var/lms/lms-server/tmp/deploy/tmp3503lms-vw.ear-contents/APP-INF/lib/xsdlib.jar
    21657000-2173a000 r-xs 00000000 08:02 1835031 /var/lms/lms-server/tmp/deploy/tmp3488jfreechart.jar
    217af000-217b2000 r-xs 00000000 08:02 1835044 /var/lms/lms-server/tmp/deploy/tmp3501mail-ra.rar
    217b2000-217b6000 r-xs 00000000 08:02 1900546 /var/lms/lms-server/tmp/deploy/tmp3500jboss-xa-jdbc.rar-contents/jboss-xa-jdbc.jar
    21800000-218fb000 rwxp 00049000 00:00 0
    218fb000-21900000 ---p 00000000 00:00 0
    21928000-2192a000 r-xs 00000000 08:02 1835040 /var/lms/lms-server/tmp/deploy/tmp3497jboss-ha-local-jdbc.rar
    2197f000-21982000 ---p 00000000 00:00 0
    21982000-21afa000 rwxp 00003000 00:00 0
    21afa000-21b00000 ---p 000e9000 00:00 0
    21b40000-21b43000 ---p 00000000 00:00 0
    21b43000-21bc1000 rwxp 00003000 00:00 0
    21bc1000-21c20000 r-xs 00000000 08:02 1835018 /var/lms/lms-server/tmp/deploy/tmp3475jasper-compiler.jar
    21c20000-21c23000 ---p 0007c000 00:00 0
    21c23000-21ca1000 rwxp 0007f000 00:00 0
    21ca1000-21ca4000 ---p 00000000 00:00 0
    21ca4000-21d22000 rwxp 00003000 00:00 0
    21d47000-21e29000 r-xs 00000000 08:02 1835017 /var/lms/lms-server/tmp/deploy/tmp3474jasper-compiler-jdt.jar
    21e29000-21e2c000 ---p 000a8000 00:00 0
    21e2c000-21eaa000 rwxp 000ab000 00:00 0
    21eaa000-21ead000 ---p 00129000 00:00 0
    21ead000-21f2b000 rwxp 0012c000 00:00 0
    21f88000-21f8f000 r-xs 00000000 08:02 2146306 /var/lms/lms-server/tmp/deploy/tmp3503lms-vw.ear-contents/lms.war/WEB-INF/lib/taglibs-response.jar
    21f8f000-21fb8000 r-xs 00000000 08:02 1835028 /var/lms/lms-server/tmp/deploy/tmp3485tomcat55-service.jar
    21fb8000-21ff5000 r-xs 00000000 08:02 1835027 /var/lms/lms-server/tmp/deploy/tmp3484tomcat-util.jar
    21ff5000-22002000 r-xs 00000000 08:02 1835026 /var/lms/lms-server/tmp/deploy/tmp3483tomcat-http.jar
    22002000-2209f000 r-xs 00000000 08:02 1835014 /var/lms/lms-server/tmp/deploy/tmp3471catalina.jar
    2209f000-220a2000 ---p 00000000 00:00 0
    220a2000-22120000 rwxp 00003000 00:00 0
    22120000-22123000 ---p 0021a000 00:00 0
    22123000-221a1000 rwxp 0021d000 00:00 0
    221a1000-221a4000 ---p 0029b000 00:00 0
    221a4000-22222000 rwxp 0029e000 00:00 0
    22222000-22225000 ---p 0031c000 00:00 0
    22225000-222a3000 rwxp 0031f000 00:00 0
    222a8000-222ad000 r-xs 00000000 08:02 1835025 /var/lms/lms-server/tmp/deploy/tmp3482tomcat-coyote.jar
    222ad000-222cc000 r-xs 00000000 08:02 1835024 /var/lms/lms-server/tmp/deploy/tmp3481tomcat-ajp.jar
    222cc000-222d2000 r-xs 00000000 08:02 1835023 /var/lms/lms-server/tmp/deploy/tmp3480servlets-webdav.jar
    222d2000-222d5000 ---p 00000000 00:00 0
    222d5000-22353000 rwxp 00003000 00:00 0
    22353000-22356000 ---p 0008d000 00:00 0
    22356000-223d4000 rwxp 00090000 00:00 0
    223d4000-223d7000 ---p 00000000 00:00 0
    223d7000-22455000 rwxp 00003000 00:00 0
    22459000-2245b000 r-xs 00000000 08:02 1835022 /var/lms/lms-server/tmp/deploy/tmp3479servlets-invoker.jar
    2245b000-22460000 r-xs 00000000 08:02 1835021 /var/lms/lms-server/tmp/deploy/tmp3478servlets-default.jar
    22460000-2246c000 r-xs 00000000 08:02 1835020 /var/lms/lms-server/tmp/deploy/tmp3477naming-resources.jar
    2246c000-2247f000 r-xs 00000000 08:02 1835019 /var/lms/lms-server/tmp/deploy/tmp3476jasper-runtime.jar
    2247f000-2248e000 r-xp 00000000 08:05 480101 /lib/libresolv-2.3.2.so
    2248e000-2248f000 rwxp 0000f000 08:05 480101 /lib/libresolv-2.3.2.so
    2248f000-22491000 rwxp 00000000 00:00 0
    22491000-22495000 r-xp 00000000 08:05 480086 /lib/libnss_dns-2.3.2.so
    22495000-22496000 rwxp 00003000 08:05 480086 /lib/libnss_dns-2.3.2.so
    22499000-2249c000 r-xs 00000000 08:02 1916930 /var/lms/lms-server/tmp/deploy/tmp3501mail-ra.rar-contents/mail-ra.jar
    2249c000-224a0000 r-xs 00000000 08:02 1835043 /var/lms/lms-server/tmp/deploy/tmp3500jboss-xa-jdbc.rar
    [again contents of ear file snipped]
    22bba000-22bc8000 r-xs 00000000 08:02 5668866 /var/lms/lms-server/lib/activation.jar
    22bc8000-22bca000 r-xs 00000000 08:02 5668867 /var/lms/lms-server/lib/autonumber-plugin.jar
    22bca000-22bd0000 r-xp 00000000 08:03 576018 /opt/jdk1.5.0_06/jre/lib/i386/libmanagement.so
    22bd0000-22bd1000 rwxp 00005000 08:03 576018 /opt/jdk1.5.0_06/jre/lib/i386/libmanagement.so
    22bd1000-22fec000 rwxp 00001000 00:00 0
    22fec000-23000000 r-xp 00000000 08:03 576016 /opt/jdk1.5.0_06/jre/lib/i386/libnet.so
    23000000-23001000 rwxp 00013000 08:03 576016 /opt/jdk1.5.0_06/jre/lib/i386/libnet.so
    23001000-23002000 r-xs 00000000 08:03 64248 /opt/jboss-4.0.2/lib/namespace.jar
    23002000-2303b000 r-xs 00000000 08:03 64246 /opt/jboss-4.0.2/lib/jboss-system.jar
    2303b000-230ae000 r-xs 00000000 08:03 64244 /opt/jboss-4.0.2/lib/jboss-common.jar
    230ae000-230cc000 r-xs 00000000 08:03 64247 /opt/jboss-4.0.2/lib/log4j-boot.jar
    230cc000-230f7000 r-xs 00000000 08:03 64235 /opt/jboss-4.0.2/lib/concurrent.jar
    230f7000-230ff000 r-xs 00000000 08:03 64242 /opt/jboss-4.0.2/lib/gnu-regexp.jar
    230ff000-2313a000 r-xs 00000000 08:03 64243 /opt/jboss-4.0.2/lib/jaxen.jar
    2313a000-231a0000 r-xs 00000000 08:03 64236 /opt/jboss-4.0.2/lib/dom4j.jar
    231a0000-23231000 r-xs 00000000 08:03 64245 /opt/jboss-4.0.2/lib/jboss-jmx.jar
    23231000-238e6000 r-xs 00000000 08:03 528238 /opt/jdk1.5.0_06/lib/tools.jar
    238e6000-238e9000 ---p 00000000 00:00 0
    238e9000-23967000 rwxp 00003000 00:00 0
    23967000-23970000 r-xs 00000000 08:03 304113 /opt/jboss-4.0.2/bin/run.jar
    23970000-23a34000 r-xs 00000000 08:03 16236 /opt/jdk1.5.0_06/jre/lib/ext/localedata.jar
    23a34000-23a36000 r-xs 00000000 08:03 16170 /opt/jdk1.5.0_06/jre/lib/ext/dnsns.jar
    23a36000-23a61000 r-xs 00000000 08:03 16169 /opt/jdk1.5.0_06/jre/lib/ext/sunpkcs11.jar
    23a61000-23a87000 r-xs 00000000 08:03 16168 /opt/jdk1.5.0_06/jre/lib/ext/sunjce_provider.jar
    23a87000-23a88000 ---p 00000000 00:00 0
    23a88000-23b08000 rwxp 00001000 00:00 0
    23b08000-23b0b000 ---p 00081000 00:00 0
    23b0b000-23b89000 rwxp 00084000 00:00 0
    23b89000-23b8c000 ---p 00000000 00:00 0
    23b8c000-23c0a000 rwxp 00003000 00:00 0
    23c0a000-23c0d000 ---p 00000000 00:00 0
    23c0d000-23c8b000 rwxp 00003000 00:00 0
    23c8b000-23c8e000 ---p 00000000 00:00 0
    23c8e000-23d0c000 rwxp 00003000 00:00 0
    23d0c000-23d0f000 ---p 00081000 00:00 0
    23d0f000-23d8d000 rwxp 00084000 00:00 0
    23d8d000-23d8e000 r-xp 00594000 08:05 416216 /usr/lib/locale/locale-archive
    23d8e000-23e9a000 r-xp 00261000 08:05 416216 /usr/lib/locale/locale-archive
    23e9a000-2409a000 r-xp 00000000 08:05 416216 /usr/lib/locale/locale-archive
    2409a000-2409d000 ---p 00000000 00:00 0
    2409d000-2411b000 rwxp 00003000 00:00 0
    2411b000-2411e000 ---p 00081000 00:00 0
    2411e000-2419c000 rwxp 00084000 00:00 0
    2419c000-2419d000 ---p 00000000 00:00 0
    2419d000-2422f000 rwxp 00001000 00:00 0
    2422f000-2429e000 rwxp 00012000 00:00 0
    2429e000-2437d000 rwxp 00000000 00:00 0
    2437d000-24617000 rwxp 000df000 00:00 0
    24617000-24633000 rwxp 00000000 00:00 0
    24633000-24686000 rwxp 0001c000 00:00 0
    24686000-24765000 rwxp 00000000 00:00 0
    24765000-249ff000 rwxp 0014e000 00:00 0
    249ff000-24a11000 rwxp 00000000 00:00 0
    24a11000-24a7f000 rwxp 003fa000 00:00 0
    24a7f000-28230000 rwxp 00000000 00:00 0
    28230000-328b0000 rwxp 03c19000 00:00 0
    328b0000-4e530000 rwxp 00000000 00:00 0
    4e530000-a1a80000 rwxp 29f19000 00:00 0
    a1a80000-a3e40000 rwxp 00000000 00:00 0
    a3e40000-b1a80000 rwxp 7f829000 00:00 0
    b1a81000-b1a83000 r-xs 00000000 08:02 1835041 /var/lms/lms-server/tmp/deploy/tmp3498jboss-ha-xa-jdbc.rar
    b1a83000-b1a85000 r-xs 00000000 08:02 1851394 /var/lms/lms-server/tmp/deploy/tmp3497jboss-ha-local-jdbc.rar-contents/jboss-ha-local-jdbc.jar
    b1a85000-b1aa1000 rwxp 00001000 00:00 0
    b1aa1000-b1b05000 rwxp 0001c000 00:00 0
    b1b05000-b21e5000 rwxp 00000000 00:00 0
    b21e5000-b3b05000 rwxp 006e0000 00:00 0
    b3b05000-b4340000 r-xs 00000000 08:03 576211 /opt/jdk1.5.0_06/jre/lib/charsets.jar
    b4340000-b4354000 r-xs 00000000 08:03 576175 /opt/jdk1.5.0_06/jre/lib/jce.jar
    b4354000-b43d9000 r-xs 00000000 08:03 576208 /opt/jdk1.5.0_06/jre/lib/jsse.jar
    b43d9000-b4442000 rwxp 00000000 00:00 0
    b4442000-b6a2a000 r-xs 00000000 08:03 576234 /opt/jdk1.5.0_06/jre/lib/rt.jar
    b6a2a000-b6a3d000 r-xp 00000000 08:03 576013 /opt/jdk1.5.0_06/jre/lib/i386/libzip.so
    b6a3d000-b6a3f000 rwxp 00012000 08:03 576013 /opt/jdk1.5.0_06/jre/lib/i386/libzip.so
    b6a3f000-b6a60000 r-xp 00000000 08:03 576011 /opt/jdk1.5.0_06/jre/lib/i386/libjava.so
    b6a60000-b6a62000 rwxp 00020000 08:03 576011 /opt/jdk1.5.0_06/jre/lib/i386/libjava.so
    b6a62000-b6a6d000 r-xp 00000000 08:03 576010 /opt/jdk1.5.0_06/jre/lib/i386/libverify.so
    b6a6d000-b6a6e000 rwxp 0000b000 08:03 576010 /opt/jdk1.5.0_06/jre/lib/i386/libverify.so
    b6a6e000-b6a76000 rwxs 00000000 08:05 416097 /tmp/hsperfdata_jboss/27543
    b6a76000-b6a81000 r-xp 00000000 08:05 480089 /lib/libnss_files-2.3.2.so
    b6a81000-b6a82000 rwxp 0000a000 08:05 480089 /lib/libnss_files-2.3.2.so
    b6a82000-b6a94000 r-xp 00000000 08:05 480073 /lib/libnsl-2.3.2.so
    b6a94000-b6a95000 rwxp 00011000 08:05 480073 /lib/libnsl-2.3.2.so
    b6a95000-b6a97000 rwxp 00000000 00:00 0
    b6a9e000-b6aa4000 r-xp 00000000 08:03 496003 /opt/jdk1.5.0_06/jre/lib/i386/native_threads/libhpi.so
    b6aa4000-b6aa5000 rwxp 00006000 08:03 496003 /opt/jdk1.5.0_06/jre/lib/i386/native_threads/libhpi.so
    b6aa5000-b6ac6000 r-xp 00000000 08:05 192667 /lib/tls/libm-2.3.2.so
    b6ac6000-b6ac7000 rwxp 00021000 08:05 192667 /lib/tls/libm-2.3.2.so
    b6acc000-b6acd000 rwxp 00001000 00:00 0
    b6acd000-b6ace000 r-xp 00000000 00:00 0
    b6ace000-b701b000 r-xp 00000000 08:03 576004 /opt/jdk1.5.0_06/jre/lib/i386/server/libjvm.so
    b701b000-b707d000 rwxp 0054d000 08:03 576004 /opt/jdk1.5.0_06/jre/lib/i386/server/libjvm.so
    b707d000-b7495000 rwxp 00000000 00:00 0
    b7495000-b75c8000 r-xp 00000000 08:05 192101 /

    I've got similar problem .... I changed version of JSDK from 1.4.x to 1.5.x some days ago on our linux server and today it stuck ... Any sugestions - are there any possibility to fix this problem or this is java bug ?
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # SIGSEGV (0xb) at pc=0x4057dcd1, pid=3479, tid=114696
    # Java VM: Java HotSpot(TM) Server VM (1.5.0_06-b05 mixed mode)
    # Problematic frame:
    # V [libjvm.so+0x3c9cd1]
    --------------- T H R E A D ---------------
    Current thread (0x080fd8c0): JavaThread "CompilerThread1" daemon [_thread_in_native, id=3487]
    siginfo:si_signo=11, si_errno=0, si_code=1, si_addr=0x00000000
    Registers:
    EAX=0x00000000, EBX=0x4075f7f0, ECX=0xbebfe67c, EDX=0x6017e5e4
    ESP=0xbebfe5f0, EBP=0xbebfe614, ESI=0x60180198, EDI=0xbebfe67c
    EIP=0x4057dcd1, CR2=0x00000000, EFLAGS=0x00010286
    Top of Stack: (sp=0xbebfe5f0)
    0xbebfe5f0: bebfec2c bebfec3c 4057dc16 601b8d00
    0xbebfe600: 601b8d20 bebfe634 4075f7f0 60180198
    0xbebfe610: 60180164 bebfe644 4057dd75 6018054c
    0xbebfe620: 6017e5e4 6018054c bebfe67c 601805b0
    0xbebfe630: 601b8bd4 60180164 4075f7f0 6018054c
    0xbebfe640: 00000000 bebfe6a4 4057e258 6018054c
    0xbebfe650: 60180198 6018054c bebfe67c ffffffff
    0xbebfe660: 60180f10 bebfe6a4 40602bf1 601b8bd4
    Instructions: (pc=0x4057dcd1)
    0x4057dcc1: 10 eb de 31 c0 eb 8e 8b 42 04 83 ec 0c 8b 40 08
    0x4057dcd1: 8b 08 50 ff 51 28 83 c4 10 e9 48 ff ff ff 90 55
    Stack: [0xbea01000,0xbec00000), sp=0xbebfe5f0, free space=2037k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [libjvm.so+0x3c9cd1]
    V [libjvm.so+0x3c9d75]
    V [libjvm.so+0x3ca258]
    V [libjvm.so+0x4511fd]
    V [libjvm.so+0x450e90]
    V [libjvm.so+0x1a11c0]
    V [libjvm.so+0x19e432]
    V [libjvm.so+0x1474b3]
    V [libjvm.so+0x1a6929]
    V [libjvm.so+0x1a6281]
    V [libjvm.so+0x4c8366]
    V [libjvm.so+0x4c2ba3]
    V [libjvm.so+0x424338]
    C [libpthread.so.0+0x6ae0]
    Current CompileTask:
    opto:1142 net.n3.nanoxml.StdXMLParser.processElement(Ljava/lang/String;Ljava/util/Properties;)V (1182 bytes)
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x080df458 JavaThread "TP-Processor28" daemon [_thread_blocked, id=9354]
    0x080de7b8 JavaThread "TP-Processor27" daemon [_thread_blocked, id=9353]
    0x0a598818 JavaThread "TP-Processor26" daemon [_thread_blocked, id=9352]
    0x0a597af8 JavaThread "TP-Processor25" daemon [_thread_blocked, id=9351]
    0x08284f60 JavaThread "TP-Processor24" daemon [_thread_blocked, id=9350]
    0x082846f8 JavaThread "TP-Processor23" daemon [_thread_blocked, id=9349]
    0x0a5eb388 JavaThread "TP-Processor22" daemon [_thread_blocked, id=9348]
    0x0827e888 JavaThread "TP-Processor21" daemon [_thread_blocked, id=9347]
    0x5c713288 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=7377]
    0x0a059ce8 JavaThread "TP-Processor20" daemon [_thread_in_native, id=6675]
    0x0a8958d8 JavaThread "TP-Processor19" daemon [_thread_in_native, id=6674]
    0x0acee858 JavaThread "TP-Processor18" daemon [_thread_blocked, id=6673]
    0x0a08c9d8 JavaThread "TP-Processor17" daemon [_thread_blocked, id=6672]
    0x0835d890 JavaThread "TP-Processor16" daemon [_thread_in_native, id=5683]
    0x083572a0 JavaThread "TP-Processor15" daemon [_thread_blocked, id=5682]
    0x08292bd8 JavaThread "TP-Processor14" daemon [_thread_blocked, id=5681]
    0x08359160 JavaThread "TP-Processor13" daemon [_thread_in_native, id=5680]
    0x0a58bf50 JavaThread "TP-Processor12" daemon [_thread_blocked, id=4061]
    0x0ab59198 JavaThread "TP-Processor11" daemon [_thread_blocked, id=4060]
    0x0a538e50 JavaThread "TP-Processor10" daemon [_thread_in_native, id=4059]
    0x0ab57350 JavaThread "TP-Processor9" daemon [_thread_in_native, id=4058]
    0x084c1a00 JavaThread "TP-Processor8" daemon [_thread_blocked, id=4022]
    0x0a4c9168 JavaThread "TP-Processor7" daemon [_thread_blocked, id=4021]
    0x0a48eb30 JavaThread "TP-Processor6" daemon [_thread_in_native, id=4020]
    0x08346368 JavaThread "TP-Processor5" daemon [_thread_in_native, id=4019]
    0x5a027130 JavaThread "TP-Monitor" daemon [_thread_blocked, id=3512]
    0x5a02ab28 JavaThread "TP-Processor4" daemon [_thread_in_native, id=3511]
    0x5a02a730 JavaThread "TP-Processor3" daemon [_thread_blocked, id=3510]
    0x5b747718 JavaThread "TP-Processor2" daemon [_thread_in_native, id=3509]
    0x5b747320 JavaThread "TP-Processor1" daemon [_thread_in_native, id=3508]
    0x5bf4ee00 JavaThread "http8080-Monitor" [_thread_blocked, id=3507]
    0x5bf27548 JavaThread "http8080-Processor4" daemon [_thread_in_native, id=3506]
    0x5b09a6d8 JavaThread "http8080-Processor3" daemon [_thread_blocked, id=3505]
    0x5bf49b98 JavaThread "http8080-Processor2" daemon [_thread_blocked, id=3504]
    0x5bf49770 JavaThread "http8080-Processor1" daemon [_thread_blocked, id=3503]
    0x5b093dd0 JavaThread "HostConfig[localhost]" daemon [_thread_blocked, id=3502]
    0x5a02b160 JavaThread "StandardManager[appl_1]" daemon [_thread_blocked, id=3501]
    0x5b7e3250 JavaThread "StandardManager[appl_2]" daemon [_thread_blocked, id=3500]
    0x5b7e2e08 JavaThread "StandardManager[appl_3]" daemon [_thread_blocked, id=3499]
    0x5c793c68 JavaThread "StandardManager[]" daemon [_thread_blocked, id=3498]
    0x5bb00018 JavaThread "StandardManager[appl_4]" daemon [_thread_blocked, id=3497]
    0x5b2e4b38 JavaThread "StandardManager[appl_5]" daemon [_thread_blocked, id=3496]
    0x5b092ee0 JavaThread "StandardManager[appl_6]" daemon [_thread_blocked, id=3495]
    0x5b061d98 JavaThread "WebappLoader[appl_7]" daemon [_thread_blocked, id=3494]
    0x081a0448 JavaThread "RMI TCP Accept-64433" daemon [_thread_in_native, id=3492]
    0x0819ac48 JavaThread "RMI TCP Accept-0" daemon [_thread_in_native, id=3491]
    0x08198e30 JavaThread "Timer-0" daemon [_thread_blocked, id=3490]
    0x080fed50 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=3488]
    =>0x080fd8c0 JavaThread "CompilerThread1" daemon [_thread_in_native, id=3487]
    0x080fc890 JavaThread "CompilerThread0" daemon [_thread_blocked, id=3486]
    0x080fb830 JavaThread "AdapterThread" daemon [_thread_blocked, id=3485]
    0x080fa8e8 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=3484]
    0x080f1208 JavaThread "Finalizer" daemon [_thread_blocked, id=3483]
    0x080efc18 JavaThread "Reference Handler" daemon [_thread_blocked, id=3482]
    0x0805c638 JavaThread "main" [_thread_in_native, id=3479]
    Other Threads:
    0x080eb808 VMThread [id=3481]
    0x5a03f408 WatcherThread [id=3493]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 13184K, used 8246K [0x45cc0000, 0x46b00000, 0x47930000)
    eden space 11776K, 64% used [0x45cc0000, 0x46420e70, 0x46840000)
    from space 1408K, 49% used [0x469a0000, 0x46a4ca78, 0x46b00000)
    to space 1408K, 0% used [0x46840000, 0x46840000, 0x469a0000)
    tenured generation total 116544K, used 79799K [0x47930000, 0x4eb00000, 0x55cc0000)
    the space 116544K, 68% used [0x47930000, 0x4c71dcb0, 0x4c71de00, 0x4eb00000)
    compacting perm gen total 27904K, used 27830K [0x55cc0000, 0x57800000, 0x59cc0000)
    the space 27904K, 99% used [0x55cc0000, 0x577edb10, 0x577edc00, 0x57800000)
    No shared spaces configured.
    Dynamic libraries:
    08048000-08057000 r-xp 00000000 08:11 4505819 /u01/jdk1.5.0_06/bin/java
    08057000-08059000 rw-p 0000e000 08:11 4505819 /u01/jdk1.5.0_06/bin/java
    08059000-0b55d000 rwxp 00000000 00:00 0
    40000000-40015000 r-xp 00000000 08:02 411701 /lib/ld-2.3.2.so
    40015000-40016000 rw-p 00014000 08:02 411701 /lib/ld-2.3.2.so
    40016000-40017000 rw-p 00000000 00:00 0
    40017000-40018000 r--p 00000000 00:00 0
    40018000-40019000 rwxp 00001000 00:00 0
    40019000-4001f000 r-xp 00000000 08:11 1851615 /u01/jdk1.5.0_06/jre/lib/i386/native_threads/libhpi.so
    4001f000-40020000 rw-p 00006000 08:11 1851615 /u01/jdk1.5.0_06/jre/lib/i386/native_threads/libhpi.so
    40020000-40022000 r--s 00000000 08:11 3834081 /u01/jdk1.5.0_06/jre/lib/ext/dnsns.jar
    40022000-40031000 r-xp 00000000 08:02 411724 /lib/libpthread-0.10.so
    40031000-40034000 rw-p 0000f000 08:02 411724 /lib/libpthread-0.10.so
    40034000-40074000 rw-p 00000000 00:00 0
    40074000-40077000 r-xp 00000000 08:02 411710 /lib/libdl-2.3.2.so
    40077000-40078000 rw-p 00002000 08:02 411710 /lib/libdl-2.3.2.so
    40078000-401ad000 r-xp 00000000 08:02 411707 /lib/libc-2.3.2.so
    401ad000-401b0000 rw-p 00134000 08:02 411707 /lib/libc-2.3.2.so
    401b0000-401b4000 rw-p 00000000 00:00 0
    401b4000-40701000 r-xp 00000000 08:11 2130143 /u01/jdk1.5.0_06/jre/lib/i386/server/libjvm.so
    40701000-40763000 rw-p 0054d000 08:11 2130143 /u01/jdk1.5.0_06/jre/lib/i386/server/libjvm.so
    40763000-40b7a000 rw-p 00000000 00:00 0
    40b7a000-40b9b000 r-xp 00000000 08:02 411711 /lib/libm-2.3.2.so
    40b9b000-40b9c000 rw-p 00020000 08:02 411711 /lib/libm-2.3.2.so
    40b9c000-40ba4000 rw-s 00000000 08:02 312834 /tmp/hsperfdata_tomcat/3479
    40ba4000-40ba7000 r--s 00000000 08:11 655406 /u01/Tomcat/Tomcat-4.1.30/bin/commons-daemon.jar
    40ba7000-40bb9000 r-xp 00000000 08:02 411713 /lib/libnsl-2.3.2.so
    40bb9000-40bba000 rw-p 00011000 08:02 411713 /lib/libnsl-2.3.2.so
    40bba000-40bbc000 rw-p 00000000 00:00 0
    40bbc000-40bc7000 r-xp 00000000 08:02 411717 /lib/libnss_files-2.3.2.so
    40bc7000-40bc8000 rw-p 0000a000 08:02 411717 /lib/libnss_files-2.3.2.so
    40bc8000-40bd3000 r-xp 00000000 08:11 3588322 /u01/jdk1.5.0_06/jre/lib/i386/libverify.so
    40bd3000-40bd4000 rw-p 0000b000 08:11 3588322 /u01/jdk1.5.0_06/jre/lib/i386/libverify.so
    40bd4000-40bf5000 r-xp 00000000 08:11 3588323 /u01/jdk1.5.0_06/jre/lib/i386/libjava.so
    40bf5000-40bf7000 rw-p 00020000 08:11 3588323 /u01/jdk1.5.0_06/jre/lib/i386/libjava.so
    40bf7000-40c0a000 r-xp 00000000 08:11 3588325 /u01/jdk1.5.0_06/jre/lib/i386/libzip.so
    40c0a000-40c0c000 rw-p 00012000 08:11 3588325 /u01/jdk1.5.0_06/jre/lib/i386/libzip.so
    40c0c000-40cef000 r--s 00000000 08:11 3080216 /u01/Tomcat/Tomcat-4.1.30/common/endorsed/xercesImpl.jar
    40cef000-40d0e000 r--s 00000000 08:11 3080217 /u01/Tomcat/Tomcat-4.1.30/common/endorsed/xmlParserAPIs.jar
    40d0e000-432f6000 r--s 00000000 08:11 9044228 /u01/jdk1.5.0_06/jre/lib/rt.jar
    432f6000-4335f000 rw-p 00000000 00:00 0
    4335f000-433e4000 r--s 00000000 08:11 9044224 /u01/jdk1.5.0_06/jre/lib/jsse.jar
    433e4000-433f8000 r--s 00000000 08:11 9044191 /u01/jdk1.5.0_06/jre/lib/jce.jar
    433f8000-43c33000 r--s 00000000 08:11 9044226 /u01/jdk1.5.0_06/jre/lib/charsets.jar
    43c33000-45cb3000 rwxp 00028000 00:00 0
    45cb3000-45cb9000 r-xp 00000000 08:11 3588330 /u01/jdk1.5.0_06/jre/lib/i386/libmanagement.so
    45cb9000-45cba000 rw-p 00005000 08:11 3588330 /u01/jdk1.5.0_06/jre/lib/i386/libmanagement.so
    45cba000-45cc0000 r--s 00000000 08:11 655404 /u01/Tomcat/Tomcat-4.1.30/bin/bootstrap.jar
    45cc0000-59df4000 rwxp 02ee5000 00:00 0
    59df4000-59ff4000 r--p 00000000 08:02 119861 /usr/lib/locale/locale-archive
    59ff4000-59ffa000 r--s 00000000 08:11 5013533 /u01/Tomcat/Tomcat-4.1.30/common/lib/commons-logging-api.jar
    59ffa000-59ffc000 r--s 00000000 08:11 5013537 /u01/Tomcat/Tomcat-4.1.30/common/lib/jdbc2_0-stdext.jar
    59ffc000-59fff000 r--s 00000000 08:11 5013539 /u01/Tomcat/Tomcat-4.1.30/common/lib/jta.jar
    59fff000-5a000000 r--p 00000000 00:00 0
    5a000000-5a100000 rw-p 00068000 00:00 0
    5a100000-5a114000 r-xp 00000000 08:11 3588328 /u01/jdk1.5.0_06/jre/lib/i386/libnet.so
    5a114000-5a115000 rw-p 00013000 08:11 3588328 /u01/jdk1.5.0_06/jre/lib/i386/libnet.so
    5a115000-5a13b000 r--s 00000000 08:11 3834079 /u01/jdk1.5.0_06/jre/lib/ext/sunjce_provider.jar
    5a13b000-5a166000 r--s 00000000 08:11 3834080 /u01/jdk1.5.0_06/jre/lib/ext/sunpkcs11.jar
    5a166000-5a22a000 r--s 00000000 08:11 3834082 /u01/jdk1.5.0_06/jre/lib/ext/localedata.jar
    5a22a000-5a8df000 r--s 00000000 08:11 7340262 /u01/jdk1.5.0_06/lib/tools.jar
    5a8df000-5a8fc000 r--s 00000000 08:11 6242355 /u01/Tomcat/Tomcat-4.1.30/server/lib/commons-beanutils.jar
    5a8fc000-5a902000 r--s 00000000 08:11 6242357 /u01/Tomcat/Tomcat-4.1.30/server/lib/commons-fileupload-1.0.jar
    5a902000-5a904000 r--s 00000000 08:11 6242365 /u01/Tomcat/Tomcat-4.1.30/server/lib/servlets-common.jar
    5a904000-5a906000 r--s 00000000 08:11 6242367 /u01/Tomcat/Tomcat-4.1.30/server/lib/servlets-invoker.jar
    5a907000-5a915000 r--s 00000000 08:11 5013506 /u01/Tomcat/Tomcat-4.1.30/common/lib/activation.jar
    5a915000-5a9fe000 r--s 00000000 08:11 5013530 /u01/Tomcat/Tomcat-4.1.30/common/lib/ant.jar
    5a9fe000-5aa27000 r--s 00000000 08:11 5013531 /u01/Tomcat/Tomcat-4.1.30/common/lib/commons-collections.jar
    5aa27000-5aa42000 r--s 00000000 08:11 6242356 /u01/Tomcat/Tomcat-4.1.30/server/lib/commons-digester.jar
    5aa42000-5aa47000 r--s 00000000 08:11 6242366 /u01/Tomcat/Tomcat-4.1.30/server/lib/servlets-default.jar
    5aa48000-5aa61000 r--s 00000000 08:11 5013532 /u01/Tomcat/Tomcat-4.1.30/common/lib/commons-dbcp-1.1.jar
    5aa61000-5aa6b000 r--s 00000000 08:11 5013534 /u01/Tomcat/Tomcat-4.1.30/common/lib/commons-pool-1.1.jar
    5aa6b000-5aa98000 r--s 00000000 08:11 5013535 /u01/Tomcat/Tomcat-4.1.30/common/lib/jasper-compiler.jar
    5aa98000-5aaaa000 r--s 00000000 08:11 5013536 /u01/Tomcat/Tomcat-4.1.30/common/lib/jasper-runtime.jar
    5aaaa000-5aac3000 r--s 00000000 08:11 5013538 /u01/Tomcat/Tomcat-4.1.30/common/lib/jndi.jar
    5aac3000-5ab13000 r--s 00000000 08:11 5013507 /u01/Tomcat/Tomcat-4.1.30/common/lib/mail.jar
    5ab13000-5ab1a000 r--s 00000000 08:11 5013541 /u01/Tomcat/Tomcat-4.1.30/common/lib/naming-common.jar
    5ab1a000-5ab1f000 r--s 00000000 08:11 5013542 /u01/Tomcat/Tomcat-4.1.30/common/lib/naming-factory.jar
    5ab1f000-5ab29000 r--s 00000000 08:11 5013543 /u01/Tomcat/Tomcat-4.1.30/common/lib/naming-resources.jar
    5ab29000-5ab31000 r--s 00000000 08:11 6242358 /u01/Tomcat/Tomcat-4.1.30/server/lib/commons-logging.jar
    5ab31000-5ab4b000 r--s 00000000 08:11 6242360 /u01/Tomcat/Tomcat-4.1.30/server/lib/jaas.jar
    5ab4b000-5ab5f000 r--s 00000000 08:11 5013544 /u01/Tomcat/Tomcat-4.1.30/common/lib/servlet.jar
    5ab5f000-5ab63000 r--s 00000000 08:11 6242353 /u01/Tomcat/Tomcat-4.1.30/server/lib/catalina-ant.jar
    5ab63000-5ab7e000 r--s 00000000 08:11 6242359 /u01/Tomcat/Tomcat-4.1.30/server/lib/commons-modeler.jar
    5ab7e000-5ab85000 r--s 00000000 08:11 6242361 /u01/Tomcat/Tomcat-4.1.30/server/lib/jakarta-regexp-1.3.jar
    5ab85000-5abd9000 r--s 00000000 08:11 6242362 /u01/Tomcat/Tomcat-4.1.30/server/lib/mx4j-jmx.jar
    5abd9000-5abde000 r--s 00000000 08:11 6242368 /u01/Tomcat/Tomcat-4.1.30/server/lib/servlets-manager.jar
    5abde000-5abe4000 r--s 00000000 08:11 6242370 /u01/Tomcat/Tomcat-4.1.30/server/lib/servlets-webdav.jar
    5abe4000-5abf5000 r--s 00000000 08:11 6242371 /u01/Tomcat/Tomcat-4.1.30/server/lib/tomcat-coyote.jar
    5abf5000-5abfb000 r--s 00000000 08:11 6242376 /u01/Tomcat/Tomcat-4.1.30/server/lib/tomcat-warp.jar
    5abfb000-5abfc000 r-xp 00000000 08:11 3588343 /u01/jdk1.5.0_06/jre/lib/i386/librmi.so
    5abfc000-5abfd000 rw-p 00000000 08:11 3588343 /u01/jdk1.5.0_06/jre/lib/i386/librmi.so
    5ac00000-5ad00000 rw-p 000ed000 00:00 0
    5ad00000-5adb8000 r--s 00000000 08:11 6242354 /u01/Tomcat/Tomcat-4.1.30/server/lib/catalina.jar
    5adb8000-5adc5000 r--s 00000000 08:11 6242372 /u01/Tomcat/Tomcat-4.1.30/server/lib/tomcat-http11.jar
    5adc5000-5add5000 r--s 00000000 08:11 6242373 /u01/Tomcat/Tomcat-4.1.30/server/lib/tomcat-jk.jar
    5add5000-5adee000 r--s 00000000 08:11 6242374 /u01/Tomcat/Tomcat-4.1.30/server/lib/tomcat-jk2.jar
    5adee000-5adf4000 r--s 00000000 08:11 7160139 /u01/htdocs/appl_7/WEB-INF/lib/commons-fileupload.jar
    5adf4000-5adfc000 r--s 00000000 08:11 7160141 /u01/htdocs/appl_7/WEB-INF/lib/commons-logging.jar
    5adfc000-5adff000 r-xp 00000000 08:02 411716 /lib/libnss_dns-2.3.2.so
    5adff000-5ae00000 rw-p 00003000 08:02 411716 /lib/libnss_dns-2.3.2.so
    5ae00000-5aefa000 rw-p 00048000 00:00 0
    5aefa000-5af00000 ---p 00050000 00:00 0
    5af00000-5af2e000 r--s 00000000 08:11 6242375 /u01/Tomcat/Tomcat-4.1.30/server/lib/tomcat-util.jar
    5af2e000-5afa8000 r--s 00000000 08:11 7405624 /u01/Tomcat/Tomcat-4.1.30/server/webapps/admin/WEB-INF/lib/struts.jar
    5afa8000-5afae000 r-xp 00000000 08:11 4243673 /u01/jdk1.5.0_06/jre/lib/i386/headless/libmawt.so
    5afae000-5afaf000 rw-p 00005000 08:11 4243673 /u01/jdk1.5.0_06/jre/lib/i386/headless/libmawt.so
    5afb3000-5afc2000 r-xp 00000000 08:02 411726 /lib/libresolv-2.3.2.so
    5afc2000-5afc3000 rw-p 0000f000 08:02 411726 /lib/libresolv-2.3.2.so
    5afc3000-5afc5000 rw-p 00000000 00:00 0
    5aff4000-5b000000 r--s 00000000 08:11 7160142 /u01/htdocs/appl_7/WEB-INF/lib/commons-validator.jar
    5b000000-5b0fe000 rw-p 000d2000 00:00 0
    5b0fe000-5b100000 ---p 000e0000 00:00 0
    5b123000-5b140000 r--s 00000000 08:11 7160136 /u01/htdocs/appl_7/WEB-INF/lib/commons-beanutils.jar
    5b140000-5b1ba000 r--s 00000000 08:11 7405624 /u01/Tomcat/Tomcat-4.1.30/server/webapps/admin/WEB-INF/lib/struts.jar
    5b1c5000-5b1ee000 r--s 00000000 08:11 7160137 /u01/htdocs/appl_7/WEB-INF/lib/commons-collections.jar
    5b1ee000-5b1fe000 r--s 00000000 08:11 7160140 /u01/htdocs/appl_7/WEB-INF/lib/commons-lang.jar
    5b200000-5b2f9000 rw-p 000b4000 00:00 0
    5b2f9000-5b300000 ---p 000bd000 00:00 0
    5b300000-5b372000 r-xp 00000000 08:11 3588341 /u01/jdk1.5.0_06/jre/lib/i386/libcmm.so
    5b372000-5b375000 rw-p 00071000 08:11 3588341 /u01/jdk1.5.0_06/jre/lib/i386/libcmm.so
    5b375000-5b3a4000 r-xp 00000000 08:11 3588340 /u01/jdk1.5.0_06/jre/lib/i386/libjpeg.so
    5b3a4000-5b3a5000 rw-p 0002e000 08:11 3588340 /u01/jdk1.5.0_06/jre/lib/i386/libjpeg.so
    5b3e1000-5b3fc000 r--s 00000000 08:11 7160138 /u01/htdocs/appl_7/WEB-INF/lib/commons-digester.jar
    5b400000-5b4fe000 rw-p 000bf000 00:00 0
    5b4fe000-5b500000 ---p 000c8000 00:00 0
    5b500000-5b575000 r-xp 00000000 08:11 3588336 /u01/jdk1.5.0_06/jre/lib/i386/libawt.so
    5b575000-5b57b000 rw-p 00074000 08:11 3588336 /u01/jdk1.5.0_06/jre/lib/i386/libawt.so
    5b57b000-5b59f000 rw-p 00000000 00:00 0
    5b59f000-5b665000 r-xp 00000000 08:11 3588335 /u01/jdk1.5.0_06/jre/lib/i386/libmlib_image.so
    5b665000-5b666000 rw-p 000c5000 08:11 3588335 /u01/jdk1.5.0_06/jre/lib/i386/libmlib_image.so
    5b698000-5b6a6000 r--s 00000000 08:11 7160143 /u01/htdocs/appl_7/WEB-INF/lib/cos.jar
    5b6a6000-5b6b6000 r--s 00000000 08:11 7160145 /u01/htdocs/appl_7/WEB-INF/lib/jakarta-oro.jar
    5b6b6000-5b6bc000 r--s 00000000 08:11 7160148 /u01/htdocs/appl_7/WEB-INF/lib/jstl.jar
    5b6bc000-5b6c7000 r--s 00000000 08:11 7160149 /u01/htdocs/appl_7/WEB-INF/lib/nanoxml-2.2.3.jar
    5b6c7000-5b6f6000 r--s 00000000 08:11 7160151 /u01/htdocs/appl_7/WEB-INF/lib/ristretto-1.0_RC2.jar
    5b700000-5b7fc000 rw-p 000f8000 00:00 0
    5b7fc000-5b800000 ---p 00101000 00:00 0
    5b800000-5b8fd000 rw-p 00105000 00:00 0
    5b8fd000-5b900000 ---p 0010e000 00:00 0
    5b900000-5ba20000 r--s 00000000 08:11 7160135 /u01/htdocs/appl_7/WEB-INF/lib/classes12dms.jar
    5ba20000-5ba8e000 r--s 00000000 08:11 7160144 /u01/htdocs/appl_7/WEB-INF/lib/dms.jar
    5ba8e000-5bae5000 r--s 00000000 08:11 7160146 /u01/htdocs/appl_7/WEB-INF/lib/jcommon-0.9.6.jar
    5bb00000-5bbfb000 rw-p 000e0000 00:00 0
    5bbfb000-5bc00000 ---p 000f2000 00:00 0
    5bc00000-5befe000 rw-p 000f7000 00:00 0
    5befe000-5bf00000 ---p 00000000 00:00 0
    5bf00000-5bffc000 rw-p 00002000 00:00 0
    5bffc000-5c000000 ---p 0000b000 00:00 0
    5c000000-5c0ec000 r--s 00000000 08:11 7160147 /u01/htdocs/appl_7/WEB-INF/lib/jfreechart-0.9.21.jar
    5c0ec000-5c2ac000 r--s 00000000 08:11 7160150 /u01/htdocs/appl_7/WEB-INF/lib/nls_charset12.jar
    5c2ac000-5c32a000 r--s 00000000 08:11 7160152 /u01/htdocs/appl_7/WEB-INF/lib/standard.jar
    5c32a000-5c3a4000 r--s 00000000 08:11 7160153 /u01/htdocs/appl_7/WEB-INF/lib/struts.jar
    5c400000-5c600000 rw-p 0005c000 00:00 0
    5c600000-5c673000 r-xp 00000000 08:11 3588339 /u01/jdk1.5.0_06/jre/lib/i386/libfontmanager.so
    5c673000-5c67d000 rw-p 00073000 08:11 3588339 /u01/jdk1.5.0_06/jre/lib/i386/libfontmanager.so
    5c67d000-5c681000 rw-p 00000000 00:00 0
    5c700000-5c7fd000 rw-p 0003d000 00:00 0
    5c7fd000-5c800000 ---p 00046000 00:00 0
    5c800000-5ccfe000 rw-p 00049000 00:00 0
    5ccfe000-5cd00000 ---p 00000000 00:00 0
    5cd00000-5eefc000 rw-p 00002000 00:00 0
    5eefc000-5ef00000 ---p 00000000 00:00 0
    5ef00000-5eff6000 rw-p 00004000 00:00 0
    5eff6000-5f000000 ---p 00000000 00:00 0
    5f100000-5f3fa000 rw-p 00042000 00:00 0
    5f3fa000-5f400000 ---p 00000000 00:00 0
    5f400000-5f6f9000 rw-p 00006000 00:00 0
    5f6f9000-5f700000 ---p 00000000 00:00 0
    5f800000-5fc86000 rw-p 00063000 00:00 0
    5fc86000-5fd00000 ---p 00000000 00:00 0
    5fd00000-5fdf5000 rw-p 0007a000 00:00 0
    5fdf5000-5fe00000 ---p 00083000 00:00 0
    5fe00000-5fefd000 rw-p 0008e000 00:00 0
    5fefd000-5ff00000 ---p 0009c000 00:00 0
    5ff00000-5fffc000 rw-p 0009f000 00:00 0
    5fffc000-60000000 ---p 000a8000 00:00 0
    60000000-600f8000 rw-p 000ac000 00:00 0
    600f8000-60100000 ---p 000b5000 00:00 0
    60100000-601fb000 rw-p 000bd000 00:00 0
    601fb000-60200000 ---p 000d2000 00:00 0
    60200000-602fe000 rw-p 000d7000 00:00 0
    602fe000-60300000 ---p 000e0000 00:00 0
    60400000-60900000 rw-p 00039000 00:00 0
    60a00000-60bf9000 rw-p 00056000 00:00 0
    60bf9000-60c00000 ---p 00000000 00:00 0
    60c00000-60cfc000 rw-p 00007000 00:00 0
    60cfc000-60d00000 ---p 00010000 00:00 0
    60d00000-60dfa000 rw-p 00014000 00:00 0
    60dfa000-60e00000 ---p 0001f000 00:00 0
    60e00000-60efb000 rw-p 00025000 00:00 0
    60efb000-60f00000 ---p 0002e000 00:00 0
    60f00000-60f0b000 rw-p 00033000 00:00 0
    60f0b000-61000000 ---p 0003e000 00:00 0
    b8801000-b8804000 ---p 00003000 00:00 0
    b8804000-b8a00000 rwxp 00006000 00:00 0
    b8a01000-b8a04000 ---p 00003000 00:00 0
    b8a04000-b8c00000 rwxp 00006000 00:00 0
    b8c01000-b8c04000 ---p 00003000 00:00 0
    b8c04000-b8e00000 rwxp 00006000 00:00 0
    b8e01000-b8e04000 ---p 00003000 00:00 0
    b8e04000-b9000000 rwxp 00006000 00:00 0
    b9001000-b9004000 ---p 00003000 00:00 0
    b9004000-b9200000 rwxp 00006000 00:00 0
    b9201000-b9204000 ---p 00003000 00:00 0
    b9204000-b9400000 rwxp 00006000 00:00 0
    b9401000-b9404000 ---p 00003000 00:00 0
    b9404000-b9600000 rwxp 00006000 00:00 0
    b9601000-b9604000 ---p 00003000 00:00 0
    b9604000-b9800000 rwxp 00006000 00:00 0
    b9801000-b9804000 ---p 00003000 00:00 0
    b9804000-b9a00000 rwxp 00006000 00:00 0
    b9a01000-b9a04000 ---p 00003000 00:00 0
    b9a04000-b9c00000 rwxp 00006000 00:00 0
    b9c01000-b9c04000 ---p 00003000 00:00 0
    b9c04000-b9e00000 rwxp 00006000 00:00 0
    b9e01000-b9e04000 ---p 00003000 00:00 0
    b9e04000-ba000000 rwxp 00006000 00:00 0
    ba001000-ba004000 ---p 00003000 00:00 0
    ba004000-ba200000 rwxp 00006000 00:00 0
    ba201000-ba204000 ---p 00003000 00:00 0
    ba204000-ba400000 rwxp 00006000 00:00 0
    ba401000-ba404000 ---p 00003000 00:00 0
    ba404000-ba600000 rwxp 00006000 00:00 0
    ba601000-ba604000 ---p 00003000 00:00 0
    ba604000-ba800000 rwxp 00006000 00:00 0
    ba801000-ba804000 ---p 00003000 00:00 0
    ba804000-baa00000 rwxp 00006000 00:00 0
    baa01000-baa04000 ---p 00003000 00:00 0
    baa04000-bac00000 rwxp 00006000 00:00 0
    bac01000-bac04000 ---p 00003000 00:00 0
    bac04000-bae00000 rwxp 00006000 00:00 0
    bae01000-bae04000 ---p 00003000 00:00 0
    bae04000-bb000000 rwxp 00006000 00:00 0
    bb001000-bb004000 ---p 00003000 00:00 0
    bb004000-bb200000 rwxp 00006000 00:00 0
    bb201000-bb204000 ---p 00003000 00:00 0
    bb204000-bb400000 rwxp 00006000 00:00 0
    bb401000-bb404000 ---p 00003000 00:00 0
    bb404000-bb600000 rwxp 00006000 00:00 0
    bb601000-bb604000 ---p 00003000 00:00 0
    bb604000-bb800000 rwxp 00006000 00:00 0
    bb801000-bb804000 ---p 00003000 00:00 0
    bb804000-bba00000 rwxp 00006000 00:00 0
    bba01000-bba04000 ---p 00003000 00:00 0
    bba04000-bbc00000 rwxp 00006000 00:00 0
    bbc01000-bbc04000 ---p 00003000 00:00 0
    bbc04000-bbe00000 rwxp 00006000 00:00 0
    bbe01000-bbe04000 ---p 00003000 00:00 0
    bbe04000-bc000000 rwxp 00006000 00:00 0
    bc001000-bc004000 ---p 00003000 00:00 0
    bc004000-bc200000 rwxp 00006000 00:00 0
    bc201000-bc204000 ---p 00003000 00:00 0
    bc204000-bc400000 rwxp 00006000 00:00 0
    bc401000-bc404000 ---p 00003000 00:00 0
    bc404000-bc600000 rwxp 00006000 00:00 0
    bc601000-bc604000 ---p 00003000 00:00 0
    bc604000-bc800000 rwxp 00006000 00:00 0
    bc801000-bc804000 ---p 00003000 00:00 0
    bc804000-bca00000 rwxp 00006000 00:00 0
    bca01000-bca04000 ---p 00003000 00:00 0
    bca04000-bcc00000 rwxp 00006000 00:00 0
    bcc01000-bcc04000 ---p 00003000 00:00 0
    bcc04000-bce00000 rwxp 00006000 00:00 0
    bce01000-bce04000 ---p 00003000 00:00 0
    bce04000-bd000000 rwxp 00006000 00:00 0
    bd001000-bd004000 ---p 00003000 00:00 0
    bd004000-bd200000 rwxp 00006000 00:00 0
    bd201000-bd204000 ---p 00003000 00:00 0
    bd204000-bd400000 rwxp 00006000 00:00 0
    bd401000-bd404000 ---p 00003000 00:00 0
    bd404000-bd600000 rwxp 00006000 00:00 0
    bd601000-bd604000 ---p 00003000 00:00 0
    bd604000-bd800000 rwxp 00006000 00:00 0
    bd801000-bd804000 ---p 00003000 00:00 0
    bd804000-bda00000 rwxp 00006000 00:00 0
    bda01000-bda04000 ---p 00003000 00:00 0
    bda04000-bdc00000 rwxp 00006000 00:00 0
    bdc01000-bdc04000 ---p 00003000 00:00 0
    bdc04000-bde00000 rwxp 00006000 00:00 0
    bde01000-bde04000 ---p 00003000 00:00 0
    bde04000-be000000 rwxp 00006000 00:00 0
    be000000-be001000 ---p 00000000 00:00 0
    be001000-be200000 rwxp 00001000 00:00 0
    be201000-be204000 ---p 00003000 00:00 0
    be204000-be400000 rwxp 00006000 00:00 0
    be401000-be404000 ---p 00003000 00:00 0
    be404000-be600000 rwxp 00006000 00:00 0
    be601000-be604000 ---p 00003000 00:00 0
    be604000-be800000 rwxp 00006000 00:00 0
    be801000-be804000 ---p 00003000 00:00 0
    be804000-bea00000 rwxp 00006000 00:00 0
    bea00000-bea04000 ---p 00000000 00:00 0
    bea04000-bec00000 rwxp 00004000 00:00 0
    bec00000-bec04000 ---p 00000000 00:00 0
    bec04000-bee00000 rwxp 00004000 00:00 0
    bee00000-bee04000 ---p 00000000 00:00 0
    bee04000-bf000000 rwxp 00004000 00:00 0
    bf001000-bf004000 ---p 00003000 00:00 0
    bf004000-bf200000 rwxp 00006000 00:00 0
    bf201000-bf204000 ---p 00003000 00:00 0
    bf204000-bf400000 rwxp 00006000 00:00 0
    bf401000-bf404000 ---p 00003000 00:00 0
    bf404000-bf600000 rwxp 00006000 00:00 0
    bf600000-bf601000 ---p 00000000 00:00 0
    bf601000-bf800000 rwxp 00001000 00:00 0
    bfe01000-bfe04000 ---p 00000000 00:00 0
    bfe04000-c0000000 rwxp ffe05000 00:00 0
    VM Arguments:
    jvm_args: -Xms128m -Xmx256m -Djava.awt.headless=true -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.port=64433 -Dcom.sun.management.jmxremote.password.file=/xxxx/jmxremote.password -Djava.endorsed.dirs=/u01/Tomcat/Tomcat-4.1.30/common/endorsed -Dcatalina.base=/u01/Tomcat/Tomcat-4.1.30 -Dcatalina.home=/u01/Tomcat/Tomcat-4.1.30 -Djava.io.tmpdir=/u01/Tomcat/Tomcat-4.1.30/temp
    java_command: org.apache.catalina.startup.Bootstrap start
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=/u01/j2sdk
    PATH=/bin:/usr/bin:/usr/local/bin:/usr/bin/X11:/usr/X11R6/bin:/home/tomcat/bin:/u01/j2sdk/bin
    LD_LIBRARY_PATH=/u01/jdk1.5.0_06/jre/lib/i386/server:/u01/jdk1.5.0_06/jre/lib/i386:/u01/jdk1.5.0_06/jre/../lib/i386
    SHELL=/bin/bash
    LD_ASSUME_KERNEL=2.2.5
    Signal Handlers:
    SIGSEGV: [libjvm.so+0x4fd530], sa_mask[0]=0xfffbfeff, sa_flags=0x14000004
    SIGBUS: [libjvm.so+0x4fd530], sa_mask[0]=0xfffbfeff, sa_flags=0x14000004
    SIGFPE: [libjvm.so+0x422860], sa_mask[0]=0xfffbfeff, sa_flags=0x14000004
    SIGPIPE: [libjvm.so+0x422860], sa_mask[0]=0xfffbfeff, sa_flags=0x14000004
    SIGILL: [libjvm.so+0x422860], sa_mask[0]=0xfffbfeff, sa_flags=0x14000004
    SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGUSR2: [libjvm.so+0x424bb0], sa_mask[0]=0x80000000, sa_flags=0x14000004
    SIGHUP: [libjvm.so+0x4245e0], sa_mask[0]=0xfffbfeff, sa_flags=0x14000004
    SIGINT: SIG_IGN, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGQUIT: [libjvm.so+0x4245e0], sa_mask[0]=0xfffbfeff, sa_flags=0x14000004
    SIGTERM: [libjvm.so+0x4245e0], sa_mask[0]=0xfffbfeff, sa_flags=0x14000004
    --------------- S Y S T E M ---------------
    OS:Red Hat Linux release 9 (Shrike)
    uname:Linux 2.4.20-20.9smp #1 SMP Mon Aug 18 11:32:15 EDT 2003 i686
    libc:glibc 2.3.2 linuxthreads-0.10 (fixed stack)
    rlimit: STACK 2044k, CORE 0k, NPROC 7168, NOFILE 1024, AS infinity
    load average:0.00 0.00 0.00
    CPU:total 4 family 15, cmov, cx8, fxsr, mmx, sse, sse2, ht
    Memory: 4k page, physical 1030248k(103164k free), swap 1052244k(895320k free)
    vm_info: Java HotSpot(TM) Server VM (1.5.0_06-b05) for linux-x86, built on Nov 10 2005 10:56:33 by java_re with gcc 3.2.1-7a (J2SE release)

  • Error in Creating Database - An unexpected error has been detected by HotSp

    I just installed Oracle 11 g on Vista. I tried to create a database and received the following error.
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x773a59c3, pid=7624, tid=8164
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_11-b03 mixed mode)
    # Problematic frame:
    # C [ntdll.dll+0x659c3]
    --------------- T H R E A D ---------------
    Current thread (0x1002ea50): JavaThread "TaskScheduler timer" [_thread_in_native, id=8164]
    siginfo: ExceptionCode=0xc0000005, reading address 0x01979064
    Registers:
    EAX=0x6d901018, EBX=0x12298310, ECX=0x01970000, EDX=0x12298310
    ESP=0x12c7f908, EBP=0x12c7f93c, ESI=0x01979060, EDI=0x12298308
    EIP=0x773a59c3, EFLAGS=0x00010206
    Top of Stack: (sp=0x12c7f908)
    0x12c7f908: 00000000 01970000 12298310 12c7f8f8
    0x12c7f918: ffffffff 12c7fd2c 7c34240d 7c37a3a8
    0x12c7f928: ffffffff 7c34218f 000c1fed 1229acb0
    0x12c7f938: 12298308 12c7f950 773a5883 12298310
    0x12c7f948: 12244148 1037b048 12c7f964 7680c56f
    0x12c7f958: 01970000 00000000 12298308 12c7f9e0
    0x12c7f968: 000d31e2 01970000 00000000 12298310
    0x12c7f978: 00000000 000d1dfe 12298310 1002ea50
    Instructions: (pc=0x773a59c3)
    0x773a59b3: c1 ee 03 33 f0 33 35 44 42 40 77 89 7d fc 33 f1
    0x773a59c3: 8b 46 04 89 45 f4 c6 47 07 80 c6 47 06 00 8b 5e
    Stack: [0x12c40000,0x12c80000), sp=0x12c7f908, free space=254k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [ntdll.dll+0x659c3]
    C [ntdll.dll+0x65883]
    C [kernel32.dll+0x4c56f]
    C [OsUtils.dll+0x31e2]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j oracle.sysman.assistants.util.OsUtilsWindows.setPermissions(Ljava/lang/String;Z)I+0
    j oracle.sysman.assistants.util.OsUtilsWindows.setAdminPermissions(Ljava/lang/String;)I+3
    j oracle.sysman.assistants.dbca.backend.Host.setUpForOperation()Z+843
    j oracle.sysman.assistants.dbca.backend.Host.executeSteps(Loracle/sysman/assistants/util/step/StepProgressor;)Z+768
    j oracle.sysman.assistants.dbca.ui.UIHost.doProgressOnly()Z+136
    j oracle.sysman.assistants.dbca.ui.DBCAWizard$1.runTask(Loracle/ewt/thread/TaskEvent;)V+135
    j oracle.ewt.thread.TaskScheduler.runTask(Loracle/ewt/thread/Task;Loracle/ewt/thread/TaskEvent;)V+2
    j oracle.ewt.thread.TaskScheduler.processTask(Loracle/ewt/thread/Task;J)V+39
    j oracle.ewt.thread.TaskScheduler$TaskQueue.run()V+60
    j oracle.ewt.timer.Timer.doRun()V+37
    j oracle.ewt.timer.Timer.run()V+45
    j java.lang.Thread.run()V+11
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x1037caa0 JavaThread "Image Fetcher 3" daemon [_thread_blocked, id=7780]
    =>0x1002ea50 JavaThread "TaskScheduler timer" [_thread_in_native, id=8164]
    0x0ff3f948 JavaThread "Thread-12" daemon [_thread_blocked, id=6528]
    0x10362758 JavaThread "Thread-11" daemon [_thread_blocked, id=5504]
    0x0fea1d50 JavaThread "Thread-10" daemon [_thread_blocked, id=5572]
    0x0fea14b8 JavaThread "Thread-9" daemon [_thread_blocked, id=6252]
    0x103657a0 JavaThread "CursorIdler" [_thread_blocked, id=7652]
    0x1035e6d0 JavaThread "TaskScheduler timer" [_thread_blocked, id=6448]
    0x01861910 JavaThread "DestroyJavaVM" [_thread_blocked, id=6488]
    0x0ffedb48 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=6444]
    0x1035ee58 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=5088]
    0x102ccb18 JavaThread "AWT-Windows" daemon [_thread_in_native, id=6584]
    0x0fe00830 JavaThread "AWT-Shutdown" [_thread_blocked, id=7380]
    0x01931e08 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=7888]
    0x01932308 JavaThread "CompilerThread0" daemon [_thread_blocked, id=6204]
    0x01931480 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=6720]
    0x01921a00 JavaThread "Finalizer" daemon [_thread_blocked, id=2176]
    0x01921040 JavaThread "Reference Handler" daemon [_thread_blocked, id=6840]
    Other Threads:
    0x018dc2c0 VMThread [id=7008]
    0x018c8d60 WatcherThread [id=6960]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 1216K, used 745K [0x03bc0000, 0x03d10000, 0x04590000)
    eden space 1088K, 68% used [0x03bc0000, 0x03c7a540, 0x03cd0000)
    from space 128K, 0% used [0x03cf0000, 0x03cf0000, 0x03d10000)
    to space 128K, 0% used [0x03cd0000, 0x03cd0000, 0x03cf0000)
    tenured generation total 15128K, used 10616K [0x04590000, 0x05456000, 0x0bbc0000)
    the space 15128K, 70% used [0x04590000, 0x04fee088, 0x04fee200, 0x05456000)
    compacting perm gen total 22016K, used 21946K [0x0bbc0000, 0x0d140000, 0x0fbc0000)
    the space 22016K, 99% used [0x0bbc0000, 0x0d12e970, 0x0d12ea00, 0x0d140000)
    No shared spaces configured.
    Dynamic libraries:
    0x00400000 - 0x0040d000      C:\oracle\product\11.1.0\db_1\jdk\jre\BIN\java.exe
    0x77340000 - 0x77467000      C:\Windows\system32\ntdll.dll
    0x767c0000 - 0x7689b000      C:\Windows\system32\kernel32.dll
    0x774d0000 - 0x77596000      C:\Windows\system32\ADVAPI32.dll
    0x76ca0000 - 0x76d62000      C:\Windows\system32\RPCRT4.dll
    0x76a10000 - 0x76aba000      C:\Windows\system32\MSVCRT.dll
    0x6d740000 - 0x6d8dd000      C:\oracle\product\11.1.0\db_1\jdk\jre\bin\client\jvm.dll
    0x77180000 - 0x7721d000      C:\Windows\system32\USER32.dll
    0x772a0000 - 0x772eb000      C:\Windows\system32\GDI32.dll
    0x73600000 - 0x73632000      C:\Windows\system32\WINMM.dll
    0x76f00000 - 0x77044000      C:\Windows\system32\ole32.dll
    0x76ac0000 - 0x76b4d000      C:\Windows\system32\OLEAUT32.dll
    0x73ba0000 - 0x73bd9000      C:\Windows\system32\OLEACC.dll
    0x75bc0000 - 0x75bde000      C:\Windows\system32\IMM32.DLL
    0x76bd0000 - 0x76c98000      C:\Windows\system32\MSCTF.dll
    0x759a0000 - 0x759cc000      C:\Windows\system32\apphelp.dll
    0x768a0000 - 0x768a9000      C:\Windows\system32\LPK.DLL
    0x76b50000 - 0x76bcd000      C:\Windows\system32\USP10.dll
    0x769e0000 - 0x76a0d000      C:\Windows\system32\WS2_32.dll
    0x77470000 - 0x77476000      C:\Windows\system32\NSI.dll
    0x75a20000 - 0x75a41000      C:\Windows\system32\NTMARTA.DLL
    0x77480000 - 0x774ca000      C:\Windows\system32\WLDAP32.dll
    0x75b20000 - 0x75b27000      C:\Windows\system32\PSAPI.DLL
    0x75a00000 - 0x75a11000      C:\Windows\system32\SAMLIB.dll
    0x6d300000 - 0x6d308000      C:\oracle\product\11.1.0\db_1\jdk\jre\bin\hpi.dll
    0x6d710000 - 0x6d71c000      C:\oracle\product\11.1.0\db_1\jdk\jre\bin\verify.dll
    0x6d380000 - 0x6d39d000      C:\oracle\product\11.1.0\db_1\jdk\jre\bin\java.dll
    0x6d730000 - 0x6d73f000      C:\oracle\product\11.1.0\db_1\jdk\jre\bin\zip.dll
    0x000c0000 - 0x000c8000      C:\oracle\product\11.1.0\db_1\BIN\orawsec11.dll
    0x7c340000 - 0x7c396000      C:\Windows\system32\MSVCR71.dll
    0x000d0000 - 0x000df000      C:\oracle\product\11.1.0\db_1\BIN\OsUtils.dll
    0x74ea0000 - 0x74ea8000      C:\Windows\system32\VERSION.dll
    0x75670000 - 0x756e5000      C:\Windows\system32\NETAPI32.dll
    0x626d0000 - 0x626e5000      C:\oracle\product\11.1.0\db_1\BIN\oranjni11.dll
    0x62740000 - 0x627a0000      C:\oracle\product\11.1.0\db_1\BIN\oranl11.dll
    0x60960000 - 0x60d24000      C:\oracle\product\11.1.0\db_1\BIN\oran11.dll
    0x62670000 - 0x6268b000      C:\oracle\product\11.1.0\db_1\BIN\orancrypt11.dll
    0x60870000 - 0x6095a000      C:\oracle\product\11.1.0\db_1\BIN\oracore11.dll
    0x10c50000 - 0x10d1a000      C:\oracle\product\11.1.0\db_1\BIN\oranls11.dll
    0x63690000 - 0x636a8000      C:\oracle\product\11.1.0\db_1\BIN\oraunls11.dll
    0x60eb0000 - 0x60eb7000      C:\oracle\product\11.1.0\db_1\BIN\orauts.dll
    0x62920000 - 0x6296c000      C:\oracle\product\11.1.0\db_1\BIN\oranro11.dll
    0x62530000 - 0x62669000      C:\oracle\product\11.1.0\db_1\BIN\oraldapclnt11.dll
    0x10d20000 - 0x10e74000      C:\oracle\product\11.1.0\db_1\BIN\orannzsbb11.dll
    0x6f790000 - 0x6f797000      C:\Windows\system32\WSOCK32.dll
    0x75450000 - 0x75469000      C:\Windows\system32\iphlpapi.dll
    0x75410000 - 0x75445000      C:\Windows\system32\dhcpcsvc.DLL
    0x756f0000 - 0x7571c000      C:\Windows\system32\DNSAPI.dll
    0x75a50000 - 0x75a64000      C:\Windows\system32\Secur32.dll
    0x75940000 - 0x75947000      C:\Windows\system32\WINNSI.DLL
    0x753e0000 - 0x75401000      C:\Windows\system32\dhcpcsvc6.DLL
    0x10e80000 - 0x118da000      C:\oracle\product\11.1.0\db_1\BIN\orageneric11.dll
    0x63430000 - 0x6345b000      C:\oracle\product\11.1.0\db_1\BIN\orasnls11.dll
    0x60fa0000 - 0x61124000      C:\oracle\product\11.1.0\db_1\BIN\oracommon11.dll
    0x61c20000 - 0x61f60000      C:\oracle\product\11.1.0\db_1\BIN\oraclient11.dll
    0x636b0000 - 0x636b6000      C:\oracle\product\11.1.0\db_1\BIN\oravsn11.dll
    0x118e0000 - 0x11cad000      C:\oracle\product\11.1.0\db_1\BIN\orapls11.dll
    0x63420000 - 0x63429000      C:\oracle\product\11.1.0\db_1\BIN\oraslax11.dll
    0x63080000 - 0x63296000      C:\oracle\product\11.1.0\db_1\BIN\oraplp11.dll
    0x63520000 - 0x635c1000      C:\oracle\product\11.1.0\db_1\BIN\orasql11.dll
    0x11cb0000 - 0x11ee8000      C:\oracle\product\11.1.0\db_1\BIN\oraxml11.dll
    0x6b100000 - 0x6b111000      C:\Windows\system32\MSVCIRT.dll
    0x62980000 - 0x629af000      C:\oracle\product\11.1.0\db_1\BIN\orantcp11.dll
    0x11ef0000 - 0x11f98000      C:\oracle\product\11.1.0\db_1\BIN\orahasgen11.dll
    0x62ab0000 - 0x62b2c000      C:\oracle\product\11.1.0\db_1\BIN\oraocr11.dll
    0x10bb0000 - 0x10c0b000      C:\oracle\product\11.1.0\db_1\BIN\oraocrb11.dll
    0x60000000 - 0x6000c000      C:\oracle\product\11.1.0\db_1\BIN\orazt11.dll
    0x6f830000 - 0x6f90c000      C:\Windows\system32\dbghelp.dll
    0x75cb0000 - 0x767c0000      C:\Windows\system32\SHELL32.dll
    0x768c0000 - 0x76918000      C:\Windows\system32\SHLWAPI.dll
    0x11fa0000 - 0x11fe8000      C:\oracle\product\11.1.0\db_1\BIN\oranldap11.dll
    0x626b0000 - 0x626b9000      C:\oracle\product\11.1.0\db_1\BIN\oranhost11.dll
    0x001c0000 - 0x001c6000      C:\oracle\product\11.1.0\db_1\BIN\orancds11.dll
    0x629c0000 - 0x629cc000      C:\oracle\product\11.1.0\db_1\BIN\orantns11.dll
    0x11ff0000 - 0x12071000      C:\oracle\product\11.1.0\db_1\BIN\oraztkg11.dll
    0x74a80000 - 0x74c1e000      C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.6001.18000_none_5cdbaa5a083979cc\comctl32.dll
    0x12380000 - 0x124b4000      C:\oracle\product\11.1.0\db_1\BIN\oraldapjclnt11.dll
    0x749a0000 - 0x749af000      C:\Windows\system32\NLAapi.dll
    0x6f120000 - 0x6f12f000      C:\Windows\system32\napinsp.dll
    0x6f0b0000 - 0x6f0c2000      C:\Windows\system32\pnrpnsp.dll
    0x751b0000 - 0x751eb000      C:\Windows\System32\mswsock.dll
    0x6f0e0000 - 0x6f0e8000      C:\Windows\System32\winrnr.dll
    0x16080000 - 0x160a5000      C:\Program Files\Bonjour\mdnsNSP.dll
    0x75210000 - 0x75215000      C:\Windows\System32\wship6.dll
    0x74e40000 - 0x74e45000      C:\Windows\System32\wshtcpip.dll
    0x70290000 - 0x70296000      C:\Windows\system32\rasadhlp.dll
    0x10c20000 - 0x10c3b000      C:\oracle\product\11.1.0\db_1\oui\lib\win32\oraInstaller.dll
    0x12080000 - 0x120d6000      C:\oracle\product\11.1.0\db_1\oui\lib\win32\msvcr71.dll
    0x6d070000 - 0x6d1da000      C:\oracle\product\11.1.0\db_1\jdk\jre\bin\awt.dll
    0x73be0000 - 0x73c22000      C:\Windows\system32\WINSPOOL.DRV
    0x74960000 - 0x7499f000      C:\Windows\system32\uxtheme.dll
    0x6d2b0000 - 0x6d300000      C:\oracle\product\11.1.0\db_1\jdk\jre\bin\fontmanager.dll
    0x6d540000 - 0x6d553000      C:\oracle\product\11.1.0\db_1\jdk\jre\bin\net.dll
    0x6d560000 - 0x6d569000      C:\oracle\product\11.1.0\db_1\jdk\jre\bin\nio.dll
    0x120e0000 - 0x120e7000      C:\oracle\product\11.1.0\db_1\oui\lib\win32\orauts.dll
    0x12100000 - 0x12108000      C:\oracle\product\11.1.0\db_1\oui\lib\win32\orawsec11.dll
    0x635d0000 - 0x635ed000      C:\oracle\product\11.1.0\db_1\oui\lib\win32\orasrvm11.dll
    0x76950000 - 0x769d4000      C:\Windows\system32\CLBCatQ.DLL
    0x77220000 - 0x77293000      C:\Windows\system32\COMDLG32.DLL
    0x71ac0000 - 0x71b45000      C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_5.82.6001.18000_none_886786f450a74a05\COMCTL32.dll
    0x6dda0000 - 0x6dee6000      C:\Windows\system32\browseui.dll
    0x734e0000 - 0x7359b000      C:\Windows\system32\PROPSYS.dll
    0x74920000 - 0x74950000      C:\Windows\system32\DUser.dll
    0x745a0000 - 0x74600000      C:\Program Files\Common Files\microsoft shared\ink\tiptsf.dll
    0x76d70000 - 0x76efa000      C:\Windows\system32\SETUPAPI.dll
    0x75a70000 - 0x75a8e000      C:\Windows\system32\USERENV.dll
    0x13430000 - 0x13653000      C:\Windows\system32\NetworkExplorer.dll
    0x71f50000 - 0x72003000      C:\Windows\system32\WindowsCodecs.dll
    0x6d960000 - 0x6db7d000      C:\Program Files\Microsoft Office\Office12\GrooveShellExtensions.dll
    0x13780000 - 0x13871000      C:\Program Files\Microsoft Office\Office12\GrooveUtil.DLL
    0x75be0000 - 0x75cb0000      C:\Windows\system32\WININET.dll
    0x768b0000 - 0x768b3000      C:\Windows\system32\Normaliz.dll
    0x772f0000 - 0x77336000      C:\Windows\system32\iertutil.dll
    0x754f0000 - 0x755e1000      C:\Windows\system32\CRYPT32.dll
    0x75650000 - 0x75662000      C:\Windows\system32\MSASN1.dll
    0x74d20000 - 0x74dbb000      C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.3053_none_d08d7bba442a9b36\MSVCR80.dll
    0x13890000 - 0x13897000      C:\Program Files\Microsoft Office\Office12\GrooveNew.DLL
    0x138b0000 - 0x138cb000      C:\Windows\WinSxS\x86_microsoft.vc80.atl_1fc8b3b9a1e18e3b_8.0.50727.4053_none_d1c738ec43578ea1\ATL80.DLL
    0x74f30000 - 0x74f6b000      C:\Windows\system32\rsaenh.dll
    0x74e50000 - 0x74e55000      C:\Windows\system32\MSImg32.dll
    0x6a7e0000 - 0x6a82a000      C:\Windows\system32\ntshrui.dll
    0x6ccb0000 - 0x6ccbb000      C:\Windows\system32\cscapi.dll
    0x754b0000 - 0x754ea000      C:\Windows\system32\slc.dll
    0x6c780000 - 0x6c7bc000      C:\Windows\System32\msshsq.dll
    0x74660000 - 0x74676000      C:\Windows\system32\thumbcache.dll
    0x6cd40000 - 0x6cd93000      C:\Windows\System32\actxprxy.dll
    0x6e0a0000 - 0x6e1a7000      C:\Windows\system32\SHDOCVW.dll
    0x6b9a0000 - 0x6bf6e000      C:\Windows\system32\ieframe.dll
    VM Arguments:
    jvm_args: -Dice.pilots.html4.ignoreNonGenericFonts=true -DORACLE_HOME=C:\oracle\product\11.1.0\db_1 -DJDBC_PROTOCOL=thin -Xmx128m
    java_command: oracle.sysman.assistants.dbca.Dbca
    Launcher Type: SUN_STANDARD
    Environment Variables:
    CLASSPATH=C:\oracle\product\11.1.0\db_1\assistants\dbca\jlib\dbca.jar
    PATH=C:\oracle\product\11.1.0\db_1\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\PROGRA~1\COMMON~1\ULEADS~1\MPEG;C:\Program Files\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files\QuickTime\QTSystem\
    USERNAME=Mercado
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 104 Stepping 2, AuthenticAMD
    --------------- S Y S T E M ---------------
    OS: Windows Vista Build 6001 Service Pack 1
    CPU:total 2 (cores per cpu 2, threads per core 1) family 15 model 104 stepping 2, cmov, cx8, fxsr, mmx, sse, sse2, sse3, mmxext, 3dnowext, 3dnow
    Memory: 4k page, physical 2097151k(891916k free), swap 4194303k(3432164k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_11-b03) for windows-x86, built on Dec 15 2006 01:16:12 by "java_re" with MS VC++ 6.0

    You didn't ask a question in your post, but I assume you have one and it is "what do I do about this error?"
    Looks like you have a memory access problem in nuance-core.dll, specifically in
    nuance.core.util.NuanceConfig._jni_buildFromCommandLine(Native Method)
    You may need to examine thoroughly what this code does, specifically when it is running code within 'string-funcs.cpp'. Based on the filename the JVM associated with this error, I would guess it's something like a pointer or array index bug.

Maybe you are looking for

  • Urgent Help : Need For Buying MSI Motherboard

    Hello , Past week i Ordered "MSI 990FXA-GD65 Motherboard"  after that i heard , that Product was Discontinued . so can i buy it Now . Does it Have Warranty ? Please Help Me to Buy or decline it . thanks

  • Termination while creating vendor through XK01 IS-Retail

    Hi All, While creating vendor through XK01 ....update is getting terminated. When I checked the SM13 i got this error. Update was terminated System ID....   RDP Client.......   510 User.....   PRASH Transaction..   XK01 Update key...   4993DEF56A5740

  • Applicant Number Ranges are getting skipped

    Hi, In my client's production server while entering initial applicant data the internal number ranges are getting skipped. For Example someone has done Initial Data Entry for the Applicant, the Applicant number generated is 40. Then in the next entry

  • Is a clean install with target mode better than upgrade?

    Hi, is it better to do a clean install of Leopard and then transfer my files through an external fw drive or do just doing a plain upgrade? I ask because I know how much smoother and snappier a system is with a clean install but I do need to transfer

  • Satellite L850 - Win8.1 won't let me install the chipset drivers

    Hi, After i upgraded to windows 8.1 pro 64 bit from windows 8 64 bit (pre-installed), i figured that windows won't let me install the chipset drivers (downloaded from "toshiba site" for windows 8.1 pro 64 bit), but they remain with the windows driver