Deadlock while closing subprocess streams ????

in my java application i need to run another process and read its streams. I've got a code which:
1.starts another process using Runtime.exec() method
2.starts new thread which listen on process input stream
3.starts new thread which listen on process error stream
4.starts new thread which waits for new elements in the queue and writes them to process input stream
5.in some particular situation I need to close that process. I just close streams therefore the process ends.
The code executed in separate threads for read input and error stream:
     private InputStream fStream;
     private void read() {
          byte[] bytes= new byte[BUFFER_SIZE];
          int read = 0;
          while (read >= 0) {
               try {
                    read= fStream.read(bytes);
                    if (read > 0) {
                         String text;
                         if (fEncoding != null) {
                              text = new String(bytes, 0, read, fEncoding);
                         } else {
                              text = new String(bytes, 0, read);
                         synchronized (this) {
                              if (isBuffered()) {
                                   fContents.append(text);
                              fireStreamAppended(text);
               } catch (IOException ioe) {
               } catch (NullPointerException e) {
                    return;
     }The code executed in separate thread for writes to process output stream:
      * The stream which is being written to (connected to system in).
     private OutputStream fStream;
      * The queue of output.
     private Vector fQueue;
      * The thread which writes to the stream.
     private Thread fThread;
      * A lock for ensuring that writes to the queue are contiguous
     private Object fLock;
     protected void write() {
          while (fThread != null) {
               while (!fQueue.isEmpty() && !fClosed) {
                    String text = (String)fQueue.firstElement();
                    fQueue.removeElementAt(0);
                    try {
                         fStream.write(text.getBytes());
                         fStream.flush();
                    } catch (IOException e) {
                         DebugPlugin.log(e);
               try {
                    synchronized(fLock) {
                         fLock.wait();
               } catch (InterruptedException e) {
          if (!fClosed) {
               try {
                   fStream.close();
               } catch (IOException e) {
                    DebugPlugin.log(e);
     }the problem appears when i asynchronously try close external process by closing its streams:
inputStream.close()
errorStrean.close()
outputStream.close()in this situation it is possible dedlock while closing inputStream when associated thread waits on read() method.
Also I tried to close output stream first:
outputStream.close()
inputStream.close()
errorStrean.close()but this time it is possible deadlock while closing output stream monitor when associated thread waits on flush() method and external process doesn't read stream.
I think it is a bug in java because there is no way to close process streams asynchronously. I use java 6 on windows platform

ejp wrote:
I just close streams therefore the process ends.No it doesn't. Where did you get that idea from? Closing the output stream might cause the process to end, but you still have to read its input and error streams till EOF in both cases (and then close them - when you have read the EOF in each case).
Instead of just closing the output stream, you might have to call Process.destroy(). It depends on the process.ok, thank you for the reply. i have modified my code. now i only close output stream. this causes my process to end and thread for reading output and error streams finishes after receiving EOF.
outputStream.close()but there is still possible deadlock while closing output stream. this because in some cases process i starts doesn't read its input and my thread for writing to output stream waits on flush() method.
of course it is good idea to use process.destroy() method to cause process to end but it doesn't work for me. the process i start is some kind of launcher which: sets environment, starts another process, redirects streams and finishes itself.. after that i don't have an access to process. i have only streams.
thanks for your for the replies. i'm afraid that there is no good solution for this kind of problem

Similar Messages

  • SAP MII 14.0 SP5 Patch 11 - Error has occurred while processing data stream Dynamic Query role is not assigned to the Data Server

    Hello All,
    We are using a two tier architecture.
    Our Corp server calls the refinery server.
    Our CORP MII server uses user id abc_user to connect to the refinery data server.
    The user id abc_user has the SAP_xMII_Dynamic_Query role.
    The data server also has the checkbox for allow dynamic query enabled.
    But we are still getting the following error
    Error has occurred while processing data stream
    Dynamic Query role is not assigned to the Data Server; Use query template
    Once we add the SAP_xMII_Dynamic_Query role to the data server everything works fine. Is this feature by design ?
    Thanks,
    Kiran

    Thanks Anushree !!
    I thought that just adding the role to the user and enabling the dynamic query checkbox on the data server should work.
    But we even needed to add the role to the data server.
    Thanks,
    Kiran

  • Error encountered while copying audio stream

    In Captivate 4, I attempt to capture screens. I hear the clicking as it captures, I click END when finished. Program attempts to save and then a dialog box displays with "error encountered while copying audio stream". I am not attempting to record any audio.
    I searched the web and found references to this error back two versions and two years - but no solution.
    Does anyone know of a solution? Thanks.

    Hi there,
    I have experienced this on Windows XP. In my case this was due to a dll (Dynamic Link Library) file not being corectly registered in the Windows XP Registry. If you are using XP then take a look at the following blog post.
    Adobe Captivate 4 Installation Issues on Microsoft Windows XP 
    If this doesn't solve the problem or you are using Windows Vista then please report this issue to the Adobe Captivate team using the web address I have included below.
    Adobe Captivate Feature Request/Bug Report Form 
    Best - Mark
    Visit the macrofireball blog

  • Run time error while closing the CRM Order using BAPI

    Hi Experts,
    Need your invaluable suggestions here.Apologies for the lengthy mail, intention is to give clear idea of the issue.
    I am facing an issue while closing the CRM orders. According to our business process, when an issue is solved we will keep the order in resolved status only. We will not directly close the order from the CRM tool, instead we have created a custom program for the same purpose.
    For the custom program we will give input as the order number and execute it, this will close the order.
    Here close the order means assigning it to Close status as well assign the reason code.
    We have created some reason codes for closed status.
    So when the program is run the Order moves from resolved status to closed status along with reason code.
    But of late we are facing some problems with this program, it is giving run time error for some CRM orders.
    Run time error message : The ABAP/4 Open SQL array insert results in duplicate database records.
    The exception, which is assigned to class 'CX_SY_OPEN_SQL_DB', was not caught in procedure "CRM_SERVICE_OS_UPD_OST_DU" "(FUNCTION)", nor was it propagated by a RAISING clause.
    Please find my code which have used in the custom program
    Closing the resolved SOs in the system
        CALL FUNCTION 'CRM_STATUS_CHANGE_EXTERN_OW'
            EXPORTING
              objnr                     = iv_guid
              user_status          = lc_status_closed
           EXCEPTIONS
             object_not_found          = 1
             status_inconsistent       = 2
             status_not_allowed       = 3
             OTHERS                        = 4.
        IF sy-subrc <> 0.
          WRITE :  'Error at maintaining status'.
        ENDIF.
    Set reason code
    build lt_subject
        ls_subject-ref_guid = iv_guid.
        ls_subject-katalogart = 'A2'.
        ls_subject-codegruppe = 'ZR000003'.
        ls_subject-code       = 'ZR33'.                      " Reason code
        ls_subject-mode       = 'A'.
        APPEND ls_subject TO lt_subject.
    build lt_ossset
        ls_osset-ref_guid        = iv_guid.
        ls_osset-subject_profile = 'ZREASON03'.
        ls_osset-profile_type    = 'G'.
        ls_osset-subject         = lt_subject.
        APPEND ls_osset TO lt_osset.
    build lt_service_os
        ls_service_os-ref_guid  = iv_guid.
        ls_service_os-ref_kind  = 'A'.
        ls_service_os-osset     = lt_osset.
        APPEND ls_service_os TO lt_service_os.
    build lt_input_fields
        REFRESH: lt_input_fields, lt_field_names.
        CLEAR  : ls_input_fields, ls_field_names.
        ls_field_names-fieldname    = 'CODE'.
        APPEND ls_field_names TO lt_field_names.
        ls_field_names-fieldname    = 'CODEGRUPPE'.
        APPEND ls_field_names TO lt_field_names.
        ls_field_names-fieldname    = 'KATALOGART'.
        APPEND ls_field_names TO lt_field_names.
        ls_field_names-fieldname    = 'SERVICE_PROFILE'.
        APPEND ls_field_names TO lt_field_names.
        ls_input_fields-ref_guid    = iv_guid.
        ls_input_fields-ref_kind    = 'A'.
        ls_input_fields-objectname  = 'SERVICE_OS'.
        ls_input_fields-field_names = lt_field_names.
        APPEND ls_input_fields TO lt_input_fields.
         CALL FUNCTION 'CRM_ORDER_MAINTAIN'
          EXPORTING
            it_service_os     = lt_service_os
          CHANGING
            ct_input_fields   = lt_input_fields
          EXCEPTIONS
            error_occurred    = 1
            document_locked   = 2
            no_change_allowed = 3
            no_authority      = 4
            OTHERS            = 5.
        IF sy-subrc <> 0.
          WRITE :  'Error at maintaining reason'.
        ENDIF.
        CALL FUNCTION 'CRM_ORDER_SAVE'
          EXPORTING
            it_objects_to_save   = lt_header_guid
            iv_update_task_local = lv_update_task_local
          IMPORTING
            et_saved_objects     = lt_saved_objects
          EXCEPTIONS
            document_not_saved   = 1
            OTHERS               = 2.
        IF sy-subrc <> 0.
          WRITE : 'Error at saving'.
        ELSE.
          WRITE : 'Successfully Closed'.
          COMMIT WORK AND WAIT.
        ENDIF.
    Run time error is coming at COMMIT WORK AND WAIT statement.
    Please let me know any corrections are required in the above program.
    When I analyzed the run time error I have found that it trying to insert the record in CRMD_SRV_OSSET for that CRM order, but already one record is present in the table for the same CRM order number.
    For most of the CRM orders there is no entry in this table so they are closing successfully but for a few orders for which there is an entry we are getting the above run time error.
    There is nothing wrong with the orders which have an entry already in the table CRMD_SRV_OSSET, I need to close these kind of orders with out run time error.
    Kindly provide your feedback.

    Hi Dinakar,
    You posted this in APO PPDS forum. This question should go to PP forum where someone could answer it.
    Please close this thread and open a new thread in PP forum so that you could get help quickly from the relevant experts.
    Regards - Pawan

  • Error While Closing the order???

    Hi Experts,
    I am facing error while closing maintenance order.
    can anyone provide me the solution.
    please find the attachment and do the needful.
    Thanks & Regards,
    Sunil Boya

    Hi Sunil,
    As I do not have much exposure to this area, I would suggest you to:
    1. See this thread  Can not Close Orders for which Period is closed? | SCN
    and go through the answer of Paul Meehan
    2. Search Google with String 'SAP message CO688' . you will find several useful SCN links on the subject.
    3. Wait for Experts answers to this thread.
    Jogeswara Rao K

  • Error while Closing the Production order.

    Hi ,
      We are doing operation Subcontracting Process. This process works on the basis of Production order, once the Production order generated automatically system generates a Purchase requisition which we are converting to Purchase order  and doing the sub contracting process.
    Now i have received all the material from the Subcontractor ( GRN and MIRO ) has been completed , for the Production order all the confimration and Delivery has also been completed , now i have done Technically completion for that order , now i am closing the Order ( Functions -Restrict processing - close ) , while closing it gives me an error saying that Purchase order still exists .
    Wat is this error ?? why is it coming so ??
    Regards
    Rajesh

    hi,
    You have to ensure that the order is not having any WIP, if you have any WIP for that order you have to complete the order and then only you could abale to clsoe the order.
    Check the WIP for the order thorugh KKAX.
    Regards,
    Rama Mohan

  • Error while closing the open purchase order for MRP run

    HI expets,
                     We are facing issue while closing the old purchase order(18.12.2007) for MRP run, if we are clicking delivery completed for the particular line item ,system is showing the error NET PRICE MUST BE GREATER THAN ZEROthough we have made GR and IR aganist the line item an value is also showing in the purchase order history tab, but in the condition tab there is no value showing for the particular line item .Kindly suggest the way forward.
    regards
    Karthick sundaram

    one thing for sure, you cannot proceed without maintaining proper conditions in the PO.
    Why they are not there or not anymore there is probably caused by customizing or vendor master data changes.

  • Display Do u want save changes or not? message while closing the window

    Hi All,
    I have one requirement.I developed one form that contains 4 windows.
    I entered in the 3rd window and i have made some changes but not saved.when i close 3rd window it is not giving any message like 'Do u want save changes?'after closing the 3rd window cursor will go to 2nd window.if i open 3rd window again it is propmting the message(Do u want save changes or not?).How can i get this message while closing the 3rd window?
    i have written the following code in app_custom body
    IF (wnd = 'WINDOW1') THEN
    app_window.close_first_window;
    ELSIF (wnd = 'WINDOW3') THEN      
    lv_wnd_status := get_window_property('WINDOW2',VISIBLE);
    IF lv_wnd_status = 'TRUE' THEN
         go_item('BLOCK2.ORDER_NUMBER');
         set_window_property ('WINDOW3', visible, property_false);
    ELSE
    app_window.close_first_window;
    END IF;
         ELSIF (wnd = 'WINDOW2')
    THEN
    lv_wnd_status := get_window_property('WINDOW3',VISIBLE);
    IF lv_wnd_status = 'TRUE' THEN
    set_window_property ('WINDOW2', visible, property_false);
    ELSE
    app_window.close_first_window;
    END IF;
         ELSE
    app_window.close_first_window;
    END IF;
    Can anyone give me some idea.
    Thanks in Advance
    Edited by: DhanaSurya on Apr 27, 2010 9:41 PM

    Iis this the only code which you used to hide/display window?
    Might be some navigation is happening in your form. Like if there is relationship between window2 and window3's block and when you access the window2 then you try to move to the next reocrd and then you are try to go to the WINDOW3's block.
    Or there is any CLEAR_BLOCK built-in bieng use in you form.
    -Ammad

  • HT201335 How can I play a music album while my pictures stream?

    If we download an album form iTunes how do I select it to play while our pictures stream?

    Who are you talking to?

  • Error while closing an Internal Order

    Hello,
    I received an error while closing an order saying .
    +"There is still a purchase order commitment for Order 'XYZ' ". Error no. K0447.
    The order has been completely settled. I don't see any error on PO side
    What could be causing this and how can I resolve this.
    Thanks
    Kavita.

    There are still some open PO's (quantity yet to be delivered) with account assignment to the IO. Set Delivery Complete for all items in PO and then try closing the IO.
    This has nothing to do with actuals but commitments, in this case PO commitments.
    Regards
    Sreenivas

  • ITunes stopped working on windows 8 while closing the application

    while closing itunes it stopped working unexpectedly, i faced this problem for more than couple of times. last time when i tried to debug it using microsoft visual studio I got a result like " Unhandled exception at 0x77D2A94F (ntdll.dll) in iTunes.exe: 0xC0000374: A heap has been corrupted (parameters: 0x77D3E1E8). " what may be the problem? and how can I fix it?

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    It shouldn't really take that long to do, assuming it goes smoothly.
    tt2

  • Mac OSX Lion: PSE9 crashes while closing... every time.

    Hi,
    Yesterday I've upgraded my PC to the latest OSX (10.7)
    What  I can say - PSE9 runs notably faster but... every time I am closing it -  it crashes.
    I have already sent the crash report (using PSE's build-in abnormal close autodetecion)
    As for now I did not observed any side effects of this malfunction...
    BR
    /Arek

    Hello again.
    PSE6 throws an expection while closing.
    The  fault log starts with (only smal excerpt)
    Process:         Adobe Photoshop Elements [733]
    Path:            /Applications/Adobe Photoshop Elements 9/Adobe Photoshop Elements.app/Contents/MacOS/Adobe Photoshop Elements
    Identifier:      com.adobe.PhotoshopElements
    Version:         9.0 [20100905.m.9093] (9)
    Code Type:       X86 (Native)
    Parent Process:  launchd [268]
    Date/Time:       2011-07-24 15:33:20.499 +0200
    OS Version:      Mac OS X 10.7 (11A511)
    Report Version:  9
    Sleep/Wake UUID: 979EC62A-0B15-4D4C-800F-FF570E39FCFA
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000002c4c5100
    VM Regions Near 0x2c4c5100:
        MALLOC_LARGE           000000002c100000-000000002c4af000 [ 3772K] rw-/rwx SM=PRV 
    -->
        MALLOC_TINY            000000002c500000-000000002c600000 [ 1024K] rw-/rwx SM=COW 
    Application Specific Information:
    objc_msgSend() selector name: retain
    objc[733]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib               0x9b63cd47 objc_msgSend + 23
    1   com.apple.CoreFoundation      0x95a32868 CFRetain + 136
    2   com.apple.CoreFoundation      0x95a7eb50 -[__NSArrayM insertObject:atIndex:] + 1024
    3   com.apple.CoreFoundation      0x95a7e740 -[__NSArrayM addObject:] + 64
    4   com.apple.AppKit              0x9216fcd8 -[NSApplication windows] + 254
    5   com.apple.AppKit              0x921c88e3 -[NSPersistentUIManager flushAllChangesOptionallyWaitingUntilDone:updatingSnapshots:] + 451
    6   com.apple.AppKit              0x921c86f6 -[NSPersistentUIManager flushPersistentStateAndClose:waitingUntilDone:] + 201
    7   com.apple.HIToolbox           0x98ad4f08 _HIPersistentUIFlushPersistentStateAndClose + 240
    8   com.apple.HIToolbox           0x98ac48d1 __EnsureBackingStoreCleanedAtExit_block_invoke_1 + 50
    9   libsystem_c.dylib             0x9ace288a __cxa_finalize + 57
    10  libsystem_c.dylib             0x9ace27f2 exit + 25
    11  com.adobe.PhotoshopElements   0x000039ca _start + 224 (cvtas_get_scale.c:229)
    12  com.adobe.PhotoshopElements   0x000038e9 start + 41 (cvtas_get_scale.c:196)
    BR
    /Arek

  • Deadlock while perform JDBC operations?

    Hello,
    We are running Weblogic 7.0SP2 with Oracle 9.2.x as the db.
    We use Oracle for TOPLink as our orm tool for all db access.
    We are encountering strange deadlocks while doing db reads and updates from a
    message-driven EJB (MDB) whose onMessage() method has a "Required" transaction
    attribute.
    I have attached a partial thread-dump below. It seems that multiple threads (3+)
    are waiting to lock the same monitor:
    - waiting to lock <39f68f0> (a oracle.jdbc.driver.OracleConnection)
    This is strange as each thread is running in its own transaction, and so it should
    be using a unique jdbc connection. btw, we use a Weblogic Connection Pool. The
    TOPLink orm tool obtains a connection from the pool by using the DataSource.getConnection()
    method.
    My confusion arises from the fact that some threads are locked while performing
    read operations and for some reason are waiting to lock the same monitor.
    Any help will be greatly appreciated.
    p.s. i also verified that there are more connections available from the pool,
    and idle ExecuteThreads while the deadlock occurs.
    Eventually, the transaction times out and gets rolled-back.
    Partial Thread Dump:
    ================
    "ExecuteThread: '12' for queue: 'default'" daemon prio=5 tid=0x13502c00 nid=0xde8
    waiting for monitor entry [0x145ff000..0x145ffdbc]
         at oracle.jdbc.driver.OracleConnection.prepareStatement(OracleConnection.java:818)
         - waiting to lock <39f68f0> (a oracle.jdbc.driver.OracleConnection)
         at weblogic.jdbc.jts.Connection.prepareStatement(Connection.java:191)
         at weblogic.jdbc.rmi.internal.ConnectionImpl.prepareStatement(ConnectionImpl.java:139)
         at weblogic.jdbc.rmi.SerialConnection.prepareStatement(SerialConnection.java:92)
         at oracle.toplink.internal.databaseaccess.DatabaseAccessor.prepareStatement(Unknown
    Source)
    <clipped>
    "ExecuteThread: '6' for queue: 'default'" daemon prio=5 tid=0x13549930 nid=0x874
    waiting for monitor entry [0x1447f000..0x1447fdbc]
         at oracle.jdbc.driver.OracleConnection.prepareStatement(OracleConnection.java:818)
         - waiting to lock <39f68f0> (a oracle.jdbc.driver.OracleConnection)
         at weblogic.jdbc.jts.Connection.prepareStatement(Connection.java:191)
         at weblogic.jdbc.rmi.internal.ConnectionImpl.prepareStatement(ConnectionImpl.java:139)
         at weblogic.jdbc.rmi.SerialConnection.prepareStatement(SerialConnection.java:92)
         at oracle.toplink.internal.databaseaccess.DatabaseAccessor.prepareStatement(Unknown
    Source)
    <clipped>
    "ExecuteThread: '5' for queue: 'default'" daemon prio=5 tid=0x1324e688 nid=0xa58
    waiting for monitor entry [0x1443f000..0x1443fdbc]
         at oracle.jdbc.driver.OracleConnection.prepareStatement(OracleConnection.java:818)
         - waiting to lock <39f68f0> (a oracle.jdbc.driver.OracleConnection)
         at weblogic.jdbc.jts.Connection.prepareStatement(Connection.java:191)
         at weblogic.jdbc.rmi.internal.ConnectionImpl.prepareStatement(ConnectionImpl.java:139)
         at weblogic.jdbc.rmi.SerialConnection.prepareStatement(SerialConnection.java:92)
         at oracle.toplink.internal.databaseaccess.DatabaseAccessor.prepareStatement(Unknown
    Source)
    <clipped>
    "ExecuteThread: '3' for queue: 'default'" daemon prio=5 tid=0x1353aa38 nid=0xda8
    waiting for monitor entry [0x143bf000..0x143bfdbc]
         at oracle.jdbc.driver.OracleConnection.prepareStatement(OracleConnection.java:818)
         at weblogic.jdbc.jts.Connection.prepareStatement(Connection.java:191)
         at weblogic.jdbc.rmi.internal.ConnectionImpl.prepareStatement(ConnectionImpl.java:139)
         at weblogic.jdbc.rmi.SerialConnection.prepareStatement(SerialConnection.java:92)
         at oracle.toplink.internal.databaseaccess.DatabaseAccessor.prepareStatement(Unknown
    Source)
         at oracle.toplink.queryframework.SQLCall.prepareStatement(Unknown Source)
         at oracle.toplink.internal.databaseaccess.DatabaseAccessor.executeCall(Unknown
    Source)
    <clipped>
    "ExecuteThread: '1' for queue: 'default'" daemon prio=5 tid=0x13520e10 nid=0xb3c
    waiting on monitor [0x1433f000..0x1433fdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <3147cb0> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <3147cb0> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '0' for queue: 'default'" daemon prio=5 tid=0x1350bc10 nid=0x98c
    waiting on monitor [0x142ff000..0x142ffdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <3147c30> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <3147c30> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)

    I've attached the full thread dump.
    Thanks.
    Full thread dump:
    "ListenThread.Default" prio=5 tid=0x13921e80 nid=0x1198 runnable [0x1533f000..0x1533fdbc]
         at java.net.PlainSocketImpl.socketAccept(Native Method)
         at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:463)
         - locked <4d19ed8> (a java.net.PlainSocketImpl)
         at java.net.ServerSocket.implAccept(ServerSocket.java:238)
         at java.net.ServerSocket.accept(ServerSocket.java:217)
         at weblogic.socket.WeblogicServerSocket.accept(WeblogicServerSocket.java:26)
         at weblogic.t3.srvr.ListenThread.run(ListenThread.java:263)
    "Thread-8" prio=5 tid=0x13865788 nid=0xfc4 waiting on monitor [0x152ff000..0x152ffdbc]
         at java.lang.Thread.sleep(Native Method)
         at weblogic.management.deploy.GenericAppPoller.run(GenericAppPoller.java:139)
    "Thread-7" prio=5 tid=0x136747e0 nid=0x1088 waiting on monitor [0x152bf000..0x152bfdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <48d0178> (a java.util.TaskQueue)
         at java.lang.Object.wait(Object.java:415)
         at java.util.TimerThread.mainLoop(Timer.java:401)
         - locked <48d0178> (a java.util.TaskQueue)
         at java.util.TimerThread.run(Timer.java:380)
    "ExecuteThread: '1' for queue: 'JMSStore<null>.ioThreadPool'" daemon prio=5 tid=0x135ddd60
    nid=0x1080 waiting on monitor [0x1527f000..0x1527fdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <3a1ecd8> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <3a1ecd8> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '0' for queue: 'JMSStore<null>.ioThreadPool'" daemon prio=5 tid=0x136e0c20
    nid=0xdc4 waiting on monitor [0x1523f000..0x1523fdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <3a1ec58> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <3a1ec58> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '0' for queue: 'JMS.TimerTreePool'" daemon prio=5 tid=0x135d5c20
    nid=0x1038 waiting on monitor [0x151ff000..0x151ffdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <3a0c830> (a weblogic.jms.backend.BETimerTree)
         at weblogic.jms.backend.BETimerTree.execute(BETimerTree.java:140)
         - locked <3a0c830> (a weblogic.jms.backend.BETimerTree)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
    "ExecuteThread: '3' for queue: 'JMS.TimerClientPool'" daemon prio=5 tid=0x13524de0
    nid=0xd14 waiting on monitor [0x151bf000..0x151bfdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <3995660> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <3995660> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '2' for queue: 'JMS.TimerClientPool'" daemon prio=5 tid=0x13524ca8
    nid=0x11b0 waiting on monitor [0x1517f000..0x1517fdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <39955e0> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <39955e0> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '1' for queue: 'JMS.TimerClientPool'" daemon prio=5 tid=0x13525230
    nid=0xd5c waiting on monitor [0x1513f000..0x1513fdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <3995560> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <3995560> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '0' for queue: 'JMS.TimerClientPool'" daemon prio=5 tid=0x13525a60
    nid=0xc00 waiting on monitor [0x150ff000..0x150ffdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <39954e0> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <39954e0> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "CoreHealthMonitor" daemon prio=5 tid=0x13558ed0 nid=0xbe0 waiting on monitor
    [0x150bf000..0x150bfdbc]
         at java.lang.Thread.sleep(Native Method)
         at weblogic.t3.srvr.CoreHealthMonitorThread.run(CoreHealthMonitorThread.java:114)
    "ExecuteThread: '14' for queue: 'JmsDispatcher'" daemon prio=5 tid=0x1351f3b8
    nid=0xe0c waiting on monitor [0x1507f000..0x1507fdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <3536ca8> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <3536ca8> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '13' for queue: 'JmsDispatcher'" daemon prio=5 tid=0x1351e7f0
    nid=0xb10 waiting on monitor [0x1503f000..0x1503fdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <3536c28> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <3536c28> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '12' for queue: 'JmsDispatcher'" daemon prio=5 tid=0x1351dc28
    nid=0xc08 waiting on monitor [0x14fff000..0x14fffdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <3536ba8> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <3536ba8> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '11' for queue: 'JmsDispatcher'" daemon prio=5 tid=0x1351d060
    nid=0x1110 waiting on monitor [0x14fbf000..0x14fbfdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <3536b28> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <3536b28> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '10' for queue: 'JmsDispatcher'" daemon prio=5 tid=0x1351c528
    nid=0x1168 waiting on monitor [0x14f7f000..0x14f7fdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <3536aa8> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <3536aa8> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '9' for queue: 'JmsDispatcher'" daemon prio=5 tid=0x1351ba90 nid=0x101c
    waiting on monitor [0x14f3f000..0x14f3fdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <3536a28> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <3536a28> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '8' for queue: 'JmsDispatcher'" daemon prio=5 tid=0x1351aff8 nid=0xca8
    waiting on monitor [0x14eff000..0x14effdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <35369a8> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <35369a8> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '7' for queue: 'JmsDispatcher'" daemon prio=5 tid=0x1347e1e8 nid=0xd6c
    waiting on monitor [0x14ebf000..0x14ebfdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <3536928> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <3536928> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '6' for queue: 'JmsDispatcher'" daemon prio=5 tid=0x1347d6c8 nid=0x107c
    waiting on monitor [0x14e7f000..0x14e7fdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <35368a8> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <35368a8> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '5' for queue: 'JmsDispatcher'" daemon prio=5 tid=0x1347cc30 nid=0x1120
    waiting on monitor [0x14e3f000..0x14e3fdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <3536828> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <3536828> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '4' for queue: 'JmsDispatcher'" daemon prio=5 tid=0x1346c680 nid=0xdb8
    waiting on monitor [0x14dff000..0x14dffdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <35367a8> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <35367a8> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '3' for queue: 'JmsDispatcher'" daemon prio=5 tid=0x13516ca8 nid=0x78
    waiting on monitor [0x14dbf000..0x14dbfdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <3536728> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <3536728> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '2' for queue: 'JmsDispatcher'" daemon prio=5 tid=0x13516ae8 nid=0xc58
    waiting on monitor [0x14d7f000..0x14d7fdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <35366a8> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <35366a8> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '1' for queue: 'JmsDispatcher'" daemon prio=5 tid=0x13475c88 nid=0xe04
    waiting on monitor [0x14d3f000..0x14d3fdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <3536628> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <3536628> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '0' for queue: 'JmsDispatcher'" daemon prio=5 tid=0x13475e38 nid=0xa3c
    waiting on monitor [0x14cff000..0x14cffdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <35365a8> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <35365a8> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '2' for queue: 'weblogic.transaction.AsyncQueue'" daemon prio=5
    tid=0x1355acc0 nid=0x12a8 waiting on monitor [0x14cbf000..0x14cbfdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <350df40> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <350df40> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '1' for queue: 'weblogic.transaction.AsyncQueue'" daemon prio=5
    tid=0x13468a68 nid=0x1150 waiting on monitor [0x14c7f000..0x14c7fdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <350dec0> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <350dec0> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '0' for queue: 'weblogic.transaction.AsyncQueue'" daemon prio=5
    tid=0x13468930 nid=0xd20 waiting on monitor [0x14c3f000..0x14c3fdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <350de40> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <350de40> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "Thread-5" prio=5 tid=0x135c4d90 nid=0x11cc waiting on monitor [0x14bff000..0x14bffdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <3508dc0> (a java.util.TaskQueue)
         at java.util.TimerThread.mainLoop(Timer.java:427)
         - locked <3508dc0> (a java.util.TaskQueue)
         at java.util.TimerThread.run(Timer.java:380)
    "ExecuteThread: '1' for queue: 'DRS'" daemon prio=5 tid=0x1345a408 nid=0x218 waiting
    on monitor [0x14bbf000..0x14bbfdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <350dd08> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <350dd08> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '0' for queue: 'DRS'" daemon prio=5 tid=0x13468c18 nid=0xc88 waiting
    on monitor [0x14b7f000..0x14b7fdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <350dc88> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <350dc88> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "Thread-4" prio=5 tid=0x1363da58 nid=0x968 waiting on monitor [0x14b3f000..0x14b3fdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <3504838> (a weblogic.xml.util.cache.entitycache.StatisticsMonitor)
         at weblogic.xml.util.cache.entitycache.StatisticsMonitor.run(EntityCache.java:1579)
         - locked <3504838> (a weblogic.xml.util.cache.entitycache.StatisticsMonitor)
    "VDE Transaction Processor Thread" prio=2 tid=0x135b29b0 nid=0xd90 waiting on
    monitor [0x14aff000..0x14affdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <3375f90> (a com.octetstring.vde.backend.standard.TransactionProcessor)
         at java.lang.Object.wait(Object.java:415)
         at com.octetstring.vde.backend.standard.TransactionProcessor.waitChange(TransactionProcessor.java:306)
         - locked <3375f90> (a com.octetstring.vde.backend.standard.TransactionProcessor)
         at com.octetstring.vde.backend.standard.TransactionProcessor.run(TransactionProcessor.java:192)
    "ExecuteThread: '9' for queue: '__weblogic_admin_rmi_queue'" daemon prio=5 tid=0x1358aa70
    nid=0x1194 waiting on monitor [0x14abf000..0x14abfdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <314b120> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <314b120> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '8' for queue: '__weblogic_admin_rmi_queue'" daemon prio=5 tid=0x134ece18
    nid=0x11c0 waiting on monitor [0x14a7f000..0x14a7fdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <314b0a0> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <314b0a0> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '7' for queue: '__weblogic_admin_rmi_queue'" daemon prio=5 tid=0x134ec700
    nid=0x8a8 waiting on monitor [0x14a3f000..0x14a3fdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <314b020> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <314b020> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '6' for queue: '__weblogic_admin_rmi_queue'" daemon prio=5 tid=0x1328ae18
    nid=0x1e0 waiting on monitor [0x149ff000..0x149ffdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <314afa0> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <314afa0> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '5' for queue: '__weblogic_admin_rmi_queue'" daemon prio=5 tid=0x1328a2f8
    nid=0x10dc waiting on monitor [0x149bf000..0x149bfdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <314af20> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <314af20> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '4' for queue: '__weblogic_admin_rmi_queue'" daemon prio=5 tid=0x13742ab0
    nid=0xd68 waiting on monitor [0x1497f000..0x1497fdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <314aea0> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <314aea0> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '3' for queue: '__weblogic_admin_rmi_queue'" daemon prio=5 tid=0x13296cc8
    nid=0x7dc waiting on monitor [0x1493f000..0x1493fdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <314ae20> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <314ae20> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '2' for queue: '__weblogic_admin_rmi_queue'" daemon prio=5 tid=0x135a98c0
    nid=0x1084 waiting on monitor [0x148ff000..0x148ffdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <314ada0> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <314ada0> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '1' for queue: '__weblogic_admin_rmi_queue'" daemon prio=5 tid=0x1328c548
    nid=0xc48 waiting on monitor [0x148bf000..0x148bfdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <314ad20> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <314ad20> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '0' for queue: '__weblogic_admin_rmi_queue'" daemon prio=5 tid=0x136bf818
    nid=0x12a0 waiting on monitor [0x1487f000..0x1487fdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <314aca0> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <314aca0> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '1' for queue: '__weblogic_admin_html_queue'" daemon prio=5 tid=0x134ee818
    nid=0x108c waiting on monitor [0x1483f000..0x1483fdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <31486a0> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <31486a0> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '0' for queue: '__weblogic_admin_html_queue'" daemon prio=5 tid=0x1328c410
    nid=0x1070 waiting on monitor [0x147ff000..0x147ffdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <3148620> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <3148620> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "TimeEventGenerator" daemon prio=5 tid=0x136bfaa0 nid=0xe7c waiting on monitor
    [0x147bf000..0x147bfdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <3145058> (a weblogic.time.common.internal.TimeTable)
         at weblogic.time.common.internal.TimeTable.snooze(TimeTable.java:272)
         - locked <3145058> (a weblogic.time.common.internal.TimeTable)
         at weblogic.time.common.internal.TimeEventGenerator.run(TimeEventGenerator.java:139)
         at java.lang.Thread.run(Thread.java:479)
    "ExecuteThread: '1' for queue: '_weblogic_dgc_queue'" daemon prio=5 tid=0x135f5498
    nid=0x1134 waiting on monitor [0x1477f000..0x1477fdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <31484e8> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <31484e8> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '0' for queue: '_weblogic_dgc_queue'" daemon prio=5 tid=0x135f2a90
    nid=0x1158 waiting on monitor [0x1473f000..0x1473fdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <3148468> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <3148468> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "HighPriority TimeEventGenerator" daemon prio=9 tid=0x136c2d10 nid=0xfcc waiting
    on monitor [0x146ff000..0x146ffdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <3147378> (a weblogic.time.common.internal.TimeTable)
         at weblogic.time.common.internal.TimeTable.snooze(TimeTable.java:272)
         - locked <3147378> (a weblogic.time.common.internal.TimeTable)
         at weblogic.time.common.internal.TimeEventGenerator.run(TimeEventGenerator.java:139)
         at java.lang.Thread.run(Thread.java:479)
    "SpinnerRandomSource" daemon prio=5 tid=0x13518d78 nid=0x1074 waiting on monitor
    [0x146bf000..0x146bfdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <3147a68> (a java.lang.Object)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.security.SpinnerRandomBitsSource.run(SpinnerRandomBitsSource.java:60)
         at java.lang.Thread.run(Thread.java:479)
    "ExecuteThread: '14' for queue: 'default'" daemon prio=5 tid=0x13245968 nid=0x1210
    waiting on monitor [0x1467f000..0x1467fdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <3148330> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <3148330> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '13' for queue: 'default'" daemon prio=5 tid=0x135037c8 nid=0x1128
    waiting on monitor [0x1463f000..0x1463fdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <31482b0> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <31482b0> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '12' for queue: 'default'" daemon prio=5 tid=0x13502c00 nid=0xde8
    waiting for monitor entry [0x145ff000..0x145ffdbc]
         at oracle.jdbc.driver.OracleConnection.prepareStatement(OracleConnection.java:818)
         - waiting to lock <39f68f0> (a oracle.jdbc.driver.OracleConnection)
         at weblogic.jdbc.jts.Connection.prepareStatement(Connection.java:191)
         at weblogic.jdbc.rmi.internal.ConnectionImpl.prepareStatement(ConnectionImpl.java:139)
         at weblogic.jdbc.rmi.SerialConnection.prepareStatement(SerialConnection.java:92)
         at oracle.toplink.internal.databaseaccess.DatabaseAccessor.prepareStatement(Unknown
    Source)
         at oracle.toplink.queryframework.SQLCall.prepareStatement(Unknown Source)
         at oracle.toplink.internal.databaseaccess.DatabaseAccessor.executeCall(Unknown
    Source)
         at oracle.toplink.threetier.ServerSession.executeCall(Unknown Source)
         at oracle.toplink.internal.queryframework.CallQueryMechanism.executeCall(Unknown
    Source)
         at oracle.toplink.internal.queryframework.CallQueryMechanism.executeCall(Unknown
    Source)
         at oracle.toplink.internal.queryframework.CallQueryMechanism.selectOneRow(Unknown
    Source)
         at oracle.toplink.internal.queryframework.ExpressionQueryMechanism.selectOneRowFromTable(Unknown
    Source)
         at oracle.toplink.internal.queryframework.ExpressionQueryMechanism.selectOneRow(Unknown
    Source)
         at oracle.toplink.queryframework.ReadObjectQuery.execute(Unknown Source)
         at oracle.toplink.queryframework.DatabaseQuery.execute(Unknown Source)
         at oracle.toplink.queryframework.ReadQuery.execute(Unknown Source)
         at oracle.toplink.publicinterface.Session.internalExecuteQuery(Unknown Source)
         at oracle.toplink.threetier.ServerSession.internalExecuteQuery(Unknown Source)
         at oracle.toplink.threetier.ClientSession.internalExecuteQuery(Unknown Source)
         at oracle.toplink.publicinterface.Session.executeQuery(Unknown Source)
         at oracle.toplink.publicinterface.UnitOfWork.internalExecuteQuery(Unknown Source)
         at oracle.toplink.publicinterface.Session.executeQuery(Unknown Source)
         at oracle.toplink.publicinterface.Session.executeQuery(Unknown Source)
         at cygent.service.da.impl.DataAccessImpl.read(DataAccessImpl.java:1674)
         at cygent.service.da.impl.DataAccessImpl.read(DataAccessImpl.java:1635)
         at cygent.service.frame.TaskActivationEventDispatcher.registerListenerTask(TaskActivationEventDispatcher.java:255)
         at cygent.domain.taskManager.state.TaskNewState.schedule(TaskNewState.java:303)
         at cygent.domain.taskManager.state.TaskNewState.activate(TaskNewState.java:243)
         at cygent.domain.taskManager.TaskInstance.activate(TaskInstance.java:331)
         at cygent.service.frame.TaskManagementMessageBeanHelper.activateTask(TaskManagementMessageBeanHelper.java:317)
         at cygent.service.frame.TaskManagementMessageBeanImpl.onMessage(TaskManagementMessageBeanImpl.java:299)
         at weblogic.ejb20.internal.MDListener.execute(MDListener.java:364)
         at weblogic.ejb20.internal.MDListener.transactionalOnMessage(MDListener.java:298)
         at weblogic.ejb20.internal.MDListener.onMessage(MDListener.java:273)
         at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:2310)
         at weblogic.jms.client.JMSSession.execute(JMSSession.java:2233)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
    "ExecuteThread: '11' for queue: 'default'" daemon prio=5 tid=0x1358d630 nid=0x114c
    waiting on monitor [0x145bf000..0x145bfdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <31481b0> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <31481b0> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '10' for queue: 'default'" daemon prio=5 tid=0x1358cab8 nid=0xd30
    waiting on monitor [0x1457f000..0x1457fdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <3148130> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <3148130> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '9' for queue: 'default'" daemon prio=5 tid=0x1324efa8 nid=0xcb4
    waiting on monitor [0x1453f000..0x1453fdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <31480b0> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <31480b0> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '8' for queue: 'default'" daemon prio=5 tid=0x1324ed20 nid=0x10ec
    waiting on monitor [0x144ff000..0x144ffdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <3148030> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <3148030> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '7' for queue: 'default'" daemon prio=5 tid=0x13549bb8 nid=0x11e4
    waiting on monitor [0x144bf000..0x144bfdbc]
         at java.lang.Object.wait(Native Method)
         - waiting on <3147fb0> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:415)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:146)
         - locked <3147fb0> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '6' for queue: 'default'" daemon prio=5 tid=0x13549930 nid=0x874
    waiting for monitor entry [0x1447f000..0x1447fdbc]
         at oracle.jdbc.driver.OracleConnection.prepareStatement(OracleConnection.java:818)
         - waiting to lock <39f68f0> (a oracle.jdbc

  • Error Encountered while copying Audio Stream on CAPTIVATE 3

    Using Captivate 3 on Windows 2000
    I don't have access to Captivate 4 or a newer version of
    windows while in the office.. I do have admin rights to my machine.
    I'm getting error.. Error encountered while copying audio
    Stream when creating a new project.. I get through my recording..
    and when i "end" the recording it thinks and thinks and then gives
    me this error.
    Please advise on what I can do to fix.

    I just attempted this fix..
    Close Captivate 4 if it is open.
    Download the file kept at
    https://share.acrobat.com/adc/document.do?docid=a14e1bd9-dc10-4456-9cd2-44489809b78e
    Go to your Captivate 4 install folder (ex: C:\Program
    Files\Adobe\Adobe Cativate 4)
    Rename nsaudio.dll as nsaudio.dll.bak or anything which
    doesn't have a dll extension
    Copy the file from step 2 to Captivate 4 install folder
    rename it as nsaudio.dll
    Start Captivate 4
    On Cap 3 to try.. and it didn't work either! Don't know if
    the NSAudio.dll is different for Cap 4 however!

  • [svn:bz-4.0.0_fixes] 23961: Bug#3200562: New Flex Session Id generated while disconnect with streaming amf channel

    Revision: 23961
    Revision: 23961
    Author:   [email protected]
    Date:     2012-06-15 04:42:44 -0700 (Fri, 15 Jun 2012)
    Log Message:
    Bug#3200562: New Flex Session Id generated while disconnect with streaming amf channel
    While invalidating session, make sure a new one does not get created.
    Modified Paths:
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/endpoints/BaseStreamingHTTPE ndpoint.java
    Property Changed:
        blazeds/branches/4.0.0_fixes/modules/

    You're trying to do this directly in ActionScript without using Flex, correct?
    The mxmlc compiler for Flex adds some registerClassAlias calls to map types between the client and the server. This will be missing if try to use the messaging code outside of a Flex app.
    Take a look at the mx.utils.RpcClassAliasInitializer class in rpc.swc. This has a static registerClassAliases method that will do the class registration for you. You should just need to call this before running your messaging code.
    -Alex

Maybe you are looking for

  • Keyboard shortcuts are not showing, but still exist!?

    I've tried to look for this issue, but I can't seem to find anyone else experiencing this... it's a strange one. Here is the situation: First, I'm speaking of iOS 5.0.1, and the keyboard shortcuts located under General->Keyboard->Shortcuts. Upon upgr

  • 7916 module no longer recognized after system update.

    Hello, I have a UC540 with 6 7945 set and 1 7965 set with a 7916 expansion module. we decided to update our system software from 7.1 to the new 8.6 firmware i found on the cisco website. we were having an issue with our call park, and i thought that

  • New Toshiba Laptop with Windows 8 mouse disappears

    I received a Toshiba Satellite Laptop for Christmas and it is running Windows 8. I started using it and it worked fine, but I started using Internet Explorer and the mouse froze, but I could still use my keyboard to get back to the start-page and mov

  • Trying to get Podcasts into a smart Playlist on my phone

    I just bought Beautiful Clock Radio from the app store, (a great app) and was hoping to get it to play podcasts. I emailded there support and they said "make a smart playlist for the podcast you want to listen to and sync that with your device". So i

  • LC designer form content disappears

    We created a form in lc 8. As a pdf it is fine. We need to adjust the content and form. How can we adjust it without the content going away? The form is there but data goes away? Thank you