Synchronization on/within DriverManager

I have two threads trying to access different Oracle databases (doesn't matter what version). One database is locked due to the redo logs filling up. Nothing can access this database. (This is a known problem with Oracle. They don't seem to want to do anything about it.) Even if you try to access using SQLPlus, SQLPlus locks up. Not nice. :(
The second thread wants to access an entirely different database, which is working perfectly. The trouble is that the first thread has locked the DriverManager, so the second thread stops, while waiting for the first thread to release the DriverManager. The effect is that the whole app is hung. In fact even CTL-C at the command prompt won't kill the app. (can kill it through task-manager though)
How can I kill the first thread in my app after a certain time has elapsed, so that the second thread can continue on happily accessing the good db.
This is the stack-trace for the hung thread:
"Thread-8" daemon prio=5 tid=0x0093B4D0 nid=0x7a4 runnable [b8df000..b8dfd88]
at java.net.SocketInputStream.socketRead0(Native Method)
at java.net.SocketInputStream.read(SocketInputStream.java:129)
at oracle.net.ns.Packet.receive(Unknown Source)
at oracle.net.ns.DataPacket.receive(Unknown Source)
at oracle.net.ns.NetInputStream.getNextPacket(Unknown Source)
at oracle.net.ns.NetInputStream.read(Unknown Source)
at oracle.net.ns.NetInputStream.read(Unknown Source)
at oracle.net.ns.NetInputStream.read(Unknown Source)
at oracle.jdbc.ttc7.MAREngine.unmarshalUB1(MAREngine.java:931)
at oracle.jdbc.ttc7.MAREngine.unmarshalSB1(MAREngine.java:893)
at oracle.jdbc.ttc7.TTIpro.receive(TTIpro.java:133)
at oracle.jdbc.ttc7.v8TTIpro.receive(v8TTIpro.java:85)
at oracle.jdbc.ttc7.TTC7Protocol.connect(TTC7Protocol.java:1712)
at oracle.jdbc.ttc7.TTC7Protocol.logon(TTC7Protocol.java:215)
- locked <02A1AF58> (a oracle.jdbc.ttc7.TTC7Protocol)
at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java:360)
at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.java:521)
at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:325)
at java.sql.DriverManager.getConnection(DriverManager.java:512)
- locked <06F8A918> (a java.lang.Class)
at java.sql.DriverManager.getConnection(DriverManager.java:140)
- locked <06F8A918> (a java.lang.Class)
at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:171)
- locked <03A682E8> (a oracle.jdbc.pool.OracleDataSource)
This is the good thread:
"Thread-7" daemon prio=5 tid=0x0AD59BE8 nid=0x684 waiting for monitor entry [b89f000..b89fd88]
at java.sql.DriverManager.getConnection(DriverManager.java:138)
- waiting to lock <06F8A918> (a java.lang.Class)
at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:171)
- locked <03A68420> (a oracle.jdbc.pool.OracleDataSource)
Anyone have any ideas?
Cheers,
Steve

You have to avoid using selfish thread, selfish threads are the ones that holds the resources and stops other threads to execute.
Regards,
Istiaque.
http://www.ideas2work.com

Similar Messages

  • How to synchronize section within a sequence runnin over parallel model

    Have this sequence using the parallel model, I want to synchronize some section of it such that the steps been executed only in one of the executions; the Batch Synchronization steps didn't worked, apparently they work only if running the batch model. Tnx.

    Doug,
    I wonder myself too, why not to use something like batch model, unfortunatelly here they use a custom model which is used in a number of testers and has a NI Parallel Model shape, never used before for batch type testing. I tryed this:
    i) Use a Randevois before my Only One Thread Synchronized (OOTS to abbreviate) section.
    ii) Enclose OOTS steps in a separated sequence.
    iii)Call this OOTS sequence after the Randevois but conditioned to only executed by socket 0 (like you suggest using socket index).
    iv) The calling to the OOTS sequence its been done launching a separated thread, and storing this in an ActiveX reference
    v) Set a Wait for Thread step after the calling, in this way every thread will wait and know about the result of OOTS steps.
    Comments are welcome.
    Regards.

  • Synchronize problem with Dreamweaver CS4

    Hi all,
    I was wondering whether any of you can offer any advice or help with a problem I have with Dreamweaver CS4. 
    The problem is regarding the Synchronize feature within Dreamweaver, for example after I have made a change to a web page and want to upload this to the internet, the software detects what files have changed which is fine but against the file it has the word and symbol called "Resolve" and this is where I am stuck because I cannot click on the Resolve button to change it to "Put" because the icon is grey so therfore I am unable to upload any changes to any websites. 
    If anybody can help me then it would be very much appreciated. 
    Cheers 
    Daniel

    Hi Hans- G    
    Many Thanks for this. I will go and have a look. It is strange as I have never experienced this problem before.
    Cheers
    Daniel

  • What order are Nodes Syncronized in within the same NodeCollection?

    Basically is there a guarantee of synchronization order within a NodeCollection? I assume that there is and that it is based off the order in which the nodes were created. For instance in the SimpleChatModel the Node creation order is:
    HISTORY_NODE_EVERYONE
    HISTORY_NODE_PARTICIPANTS
    HISTORY_NODE_HOSTS
    TYPING_NODE_NAME
    When synchronizing will I receive all of the messages in HISTORY_NODE_EVERYONE before I receive *ANY* messages for HISTORY_NODE_PARTICIPANTS? Will HISTORY_NODE_PARTICIPANTS send all of its messages before HISTORY_NODE_HOSTS sends its messages? When I say "sent" I don't as much what the actual network traffic is (I don't care about the actual packet order of arrival, that is your job AFCS developers ), what I really care about is whether ItemRecieve for HISTORY_NODE_PARTICIPANTS can get executed while HISTORY_NODE_EVERYONE is still receiving messages?
    To take this a step higher in the hierarchy to the NodeCollection level does a NodeCollection need to be fully synchronized before another NodeCollection (that called subscribe after the first one) can get any ItemRecieve messages? If NodeCollection A subscribes before NodeCollection B is A guaranteed to get synchronized before B? Will A finish Synchronizing before B gets its first message?
    I am starting to run into an issue where I need to make sure certain NODEs are synchronized before I start recieving messages in other NODEs. I of course can check for the dependencies on reception and simply defer execution until the dependency is sync'd but this will create a lot more code failure points than I really wanted. I was hoping for a simplier way of doing this.
                             Ves

    Hi Ves,
      The AFCS dev guide mentions this in passing (3.1.5.1) but doesn't go into quite enough detail - we'll make a note to improve this for the next go-round.
      Essentially, all items for a given CollectionNode (from all of its nodes) are synched in the order that they were published, irrespective of which node they were published to. You can actually put a breakpoint down in MessageManager.receiveItems to watch this - all items for the entire collection are received in one big blob, then pushed onto an array, then sorted according to their timestamps and order, then sent as itemReceive up to the collectionNode.
      So yes, you could easily end up with an itemReceive for EVERYONE, followed by an itemReceive for HOSTS, then another one for EVERYONE. We make sure that they essentially come in the same order they did for people who were actually in the room at the time. For example in the chat pod, if I asked a question to the HOSTS node, which they answered on the public EVERYONE node, I'd want the items to be received in the right order, or the collective history wouldn't make sense.
    For separate CollectionNodes, their synchronization are kept separate (one at a time), since they're the result of individual subscribe() requests - the advice here is that if you have a series of items that have some dependency on order of arrival, you should make sure they're part of the same CollectionNode (which makes sense). If you need A to finish synching before B begins, put those items on different collectionNodes and call their subscribe() methods in that order. So, you can have it either way, depending on how you want to set it up.
    hope that helps
       nigel

  • Problem with persistence in Generic Sync application

    Hi:
    We are developing an application which runson SAP Mi 2.5, SP 18,
    Windows Mobile 5.0 and Generic Sync for PDAs.
    We need persistence in our application. We tried with persistence API but
    we found a problem and we send a message to SAP. Until we can solve
    this issue we must implement persistence in other way to satisfy our customer requierements
    Since now,we have implemented persistence with files but the performance of this solution does not meet our customer requirements (the search of data in the PDA is very slow).
    We are thinking in another solution, which consists on using
    Syncbos.Using this alternative, before making a generic sync, and
    executing the code shown below:
    SmartSyncRuntime.getInstance().getSyncBoDescriptorFacade
    ().getAllSyncBoDescriptors()
    the returned syncBOS are those which I have defined in XML. On the
    contrary, after making a generic sync, executing the same code, the
    returned syncbos ARE NOT those whic I have defined in XML. The only
    return that I get is the MIAUTH.
    Any other ideas?
    Thanks
    Kind Regards

    hi satur,
    there are some things to take care if you want to use the persistence layer of the
    SmartSync layer from your GenericSync app.
    first, you have to let the MI client think that your application is using the
    SmartSync functionality. this can be achieved by just including a dummy metadata
    meRepMeta.xml file in the war archive during the deployment process. once the
    MI client framework sees this during the installation, it will set a flag on the MSD
    that your app is a smartsync.
    second, if your app is considered a smartsync, MI will generate the delta request
    and upload messages for your data if ever you have your SyncBo defined in the
    metadata. Since you don't want such functionalities to be ON, i would suggest to
    mark all your SyncBo as local ones; i.e. using attributes suppressDownload=true
    and suppressUpload=true. this way, the MI framework will skip creating the requests
    and delta upload messages for your app during the synchronization process.
    third, your application has to have the syncEventListener implementation to get
    notification when the Sync button (or event) was initiated. if you don't want your
    app to be notified, you may just add synchronization button within your application
    that will call your data manager to prepare your containers (i.e. retrieving the newly
    inserted syncbo, modified syncbos and the list of deleted ones -> genericSync
    containers) and to call the synchronizeWithBackend method.
    fourth, you need to have the inboundProcessor that will parse your data and insert
    them a SyncBo into your local database.
    having tried this but i guess it might work...
    regards
    jo

  • Mail.app shows my .mac inbox is empty.  all other tools show it is not.

    a few days ago mail started acting strangely on my .mac account. it would indicate that i had a large number of unread messages in my .mac inbox, then when i looked at the inbox in mail, it would show up as empty.
    i started to think that there must be some kind of problem, so i quit mail and checked via webmail. webmail can see all the msgs in my inbox. i quit and try mail.app again. same result (mail shows 0 messages).
    i try forcing a "synchronize" from within mail (from the mailboxes menu). there is no change. i try a "rebuild" command from the mailbox menu. there is no change.
    i try firing up entourage and it sees the mail in my inbox. i quit entourage and try mail again. no change (mail shows 0 messages).
    i suspect that there is some kind of corruption or something either in the local state on my machine or perhaps a message which has some malformed headers or something which is sitting in my inbox and causing mail.app to be unable to properly download the mailbox contents.
    i tried using webmail to go in and either delete the messages or move them aside to a separate temporary mailbox. back in mail.app, it sees the new temporary mailbox and at first indicates that it has ~40 or so unread msgs (which is true plus about 10 more read msgs), but when i actually click on the mailbox to look at it, it appears empty. i reconfirmed that webmail and entourage can both see ~50 msgs in the temp mailbox, but mail.app shows zero.
    also, in addition, the same problem still holds for my inbox. so now when i send myself a test message, mail.app temporarily indicates that i have new mail, but then when i look in my inbox, nothing appears in mail.app. if i quit and go look at my inbox with webmail or entourage, i can see the new mail as expected.
    i looked in system.log, console.log, and mail.log and didn't see any log msgs that seemed to relate to whatever problem mail was having reading the headers/contents from the server.
    so i was trying to fix the problem by clearing out my inbox using webmail, but instead it appears that i have merely replicated the cause of the problem so that it now affects two folders instead of just one.
    does anyone know of a way to definitively clear out a mailbox altogether on the server? it would be reassuring to know that there was not some hidden corrupt msg sitting in my inbox messing things up.
    any other suggestions for how to get out of this state? thanks.
      Mac OS X (10.4.5)  

    oh forgot to mention a couple other clear signs that mail.app is "confused" here:
    if i right click on a mailbox in the mailboxes window and select "get info..." (a very useful command hidden in an odd place), it shows me that right now my inbox has 3 messages and my temp mailbox has 50 messages. but when i look at either of these mailboxes normally, they show up with zero messages.
    if i send myself a test message and then tell mail.app to check for mail, the new message indicator comes on and my inbox temporarily shows up as having 3 new messages. then when i click on it, it shows up as empty and the new message indicator goes away again. if i repeat this it will say 4 new messages, etc.
    so it's acting like there's some kind of corrupt partial message at the top of my inbox that mail.app can't read and keeps choking on. i've had this happen before on other imap servers a while back. for those servers, i had normal login access, so i could go and edit or delete the offending file. in this case (apple's .mac server), i don't know how to do the equivalent.

  • Can't activate iphone after restore.

    I'm facing problem with "SIM invalid / No service" issue and my carrier advised to restore the OS. I did it as per Apple instruction at http://support.apple.com/kb/ts4148 and later having problem to activate the phone. Btw, i'm still having the "No service" issue during the activation.
    i'm using iphone 4s 64gb black. here are the information from console in iphone config utility:
    Jan 16 11:36:23 unknown SpringBoard[94] <Notice>: IOMobileFrameBufferGetMirroringCapability returning -536870201 via kIOMFBConnectMethod_GetMirroringCapability
    Jan 16 11:36:23 unknown UIKitApplication:com.apple.mobilephone[0xc3d3][93] <Notice>: Terminating in response to SpringBoard's termination.
    Jan 16 11:36:23 unknown SpringBoard[94] <Error>: WiFi: Consulting "no-sdio-devices" property.
    Jan 16 11:36:23 unknown SpringBoard[94] <Error>: WiFi: "no-sdio-devices" property not found.
    Jan 16 11:36:23 unknown kernel[0] <Debug>: IOReturn IOMobileFramebufferUserClient::set_hotplug_notify(void*, void*) 0 0
    Jan 16 11:36:23 unknown kernel[0] <Debug>: IOReturn AppleRGBOUT::set_display_device_gated(uint32_t), 1
    Jan 16 11:36:23 unknown kernel[0] <Debug>: virtual void AppleRGBOUT::do_power_state_change(): fSoft: 0 fHard: 1 swapBusy: 1  fController: 0 -> 1
    Jan 16 11:36:23 unknown kernel[0] <Debug>: bool AppleRGBOUT::power_up_hardware()
    Jan 16 11:36:23 unknown kernel[0] <Debug>: set_crc_notification_state 0
    Jan 16 11:36:23 unknown kernel[0] <Debug>: IOReturn IOMobileFramebufferUserClient::set_hotplug_notify(void*, void*) 0 0
    Jan 16 11:36:23 unknown kernel[0] <Debug>: virtual void AppleRGBOUT::do_power_state_change(): fSoft: 1 fHard: 1 swapBusy: 0  fController: 1 -> 1
    Jan 16 11:36:23 unknown kernel[0] <Debug>: virtual void AppleRGBOUT::do_power_state_change(): fSoft: 0 fHard: 1 swapBusy: 0  fController: 1 -> 0
    Jan 16 11:36:23 unknown kernel[0] <Debug>: bool AppleRGBOUT::power_down_hardware()
    Jan 16 11:36:23 unknown kernel[0] <Debug>: bool AppleRGBOUT::power_down_hardware(), clock down RGBOUT
    Jan 16 11:36:23 unknown kernel[0] <Debug>: bool AppleRGBOUT::power_down_hardware(), RGB_CTRL (0x00000000) clk_down_ready is not set after 60 msecs
    Jan 16 11:36:23 unknown kernel[0] <Debug>: IOReturn AppleRGBOUT::set_display_device_gated(uint32_t), 1
    Jan 16 11:36:23 unknown kernel[0] <Debug>: virtual void AppleRGBOUT::do_power_state_change(): fSoft: 1 fHard: 1 swapBusy: 1  fController: 0 -> 1
    Jan 16 11:36:23 unknown kernel[0] <Debug>: bool AppleRGBOUT::power_up_hardware()
    Jan 16 11:36:23 unknown kernel[0] <Debug>: set_crc_notification_state 0
    Jan 16 11:36:23 unknown kernel[0] <Debug>: virtual void AppleRGBOUT::do_power_state_change(): fSoft: 0 fHard: 1 swapBusy: 0  fController: 1 -> 0
    Jan 16 11:36:23 unknown kernel[0] <Debug>: IOReturn IOMobileFramebufferUserClient::set_hotplug_notify(void*, void*) 0x3043fc31 0xf1e6000
    Jan 16 11:36:23 unknown kernel[0] <Debug>: IOReturn IOMobileFramebufferUserClient::set_hotplug_notify(void*, void*) 0x878b1c00 0x8db13074 0x3043fc31 0xf1e6000
    Jan 16 11:36:23 unknown kernel[0] <Debug>: bool AppleRGBOUT::power_down_hardware()
    Jan 16 11:36:23 unknown kernel[0] <Debug>: bool AppleRGBOUT::power_down_hardware(), clock down RGBOUT
    Jan 16 11:36:23 unknown kernel[0] <Debug>: bool AppleRGBOUT::power_down_hardware(), RGB_CTRL (0x00000000) clk_down_ready is not set after 60 msecs
    Jan 16 11:36:23 unknown SpringBoard[94] <Warning>: lockdown says the device is: [Unactivated], state is 1
    Jan 16 11:36:23 unknown SpringBoard[94] <Notice>: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    Jan 16 11:36:23 unknown SpringBoard[94] <Notice>: __IOHIDLoadBundles: Loaded 1 HID plugin
    Jan 16 11:36:23 unknown SpringBoard[94] <Notice>: CLTM: initial thermal level is 0
    Jan 16 11:36:23 unknown SpringBoard[94] <Notice>: MultitouchHID: detection mode: 255->0 (deferring until bootloaded)
    Jan 16 11:36:23 unknown locationd[28] <Error>: hidd died. Reestablishing connection.
    Jan 16 11:36:23 unknown UserEventAgent[12] <Error>: hidd died. Reestablishing connection.
    Jan 16 11:36:23 unknown com.apple.misd[95] <Notice>: allowing special port forwarding for test fixtures
    Jan 16 11:36:23 unknown com.apple.misd[95] <Notice>: CommCenter is not ready (got -2 for authentication); waiting 5 more second(s)
    Jan 16 11:36:24 unknown com.apple.misd[95] <Notice>: CommCenter is not ready (got -2 for authentication); waiting 4 more second(s)
    Jan 16 11:36:25 unknown com.apple.misd[95] <Notice>: CommCenter is not ready (got -2 for authentication); waiting 3 more second(s)
    Jan 16 11:36:26 unknown com.apple.misd[95] <Notice>: CommCenter is not ready (got -2 for authentication); waiting 2 more second(s)
    Jan 16 11:36:27 unknown com.apple.misd[95] <Notice>: CommCenter is not ready (got -2 for authentication); waiting 1 more second(s)
    Jan 16 11:36:29 unknown com.apple.misd[95] <Error>: gave up asking CommCenter for authentication context ID after 5 seconds (got -2)
    Jan 16 11:36:29 unknown com.apple.misd[95] <Notice>: CommCenter is not ready (got -2 for traffic); waiting 5 more second(s)
    Jan 16 11:36:30 unknown com.apple.misd[95] <Notice>: CommCenter is not ready (got -2 for traffic); waiting 4 more second(s)
    Jan 16 11:36:31 unknown com.apple.misd[95] <Notice>: CommCenter is not ready (got -2 for traffic); waiting 3 more second(s)
    Jan 16 11:36:32 unknown com.apple.misd[95] <Notice>: CommCenter is not ready (got -2 for traffic); waiting 2 more second(s)
    Jan 16 11:36:33 unknown com.apple.misd[95] <Notice>: CommCenter is not ready (got -2 for traffic); waiting 1 more second(s)
    Jan 16 11:36:34 unknown com.apple.misd[95] <Error>: gave up asking CommCenter for traffic context ID after 5 seconds (got -2)
    Jan 16 11:36:34 unknown SpringBoard[94] <Warning>: BTM: attaching to BTServer
    Jan 16 11:36:34 unknown wifid[29] <Error>: WiFi:[348377794.660633]: Client itunesstored is background application
    Jan 16 11:36:34 unknown apsd[59] <Error>: Could not lookup device certification
    Jan 16 11:36:34 unknown itdbprepserver[99] <Warning>: starting up.
    Jan 16 11:36:34 unknown itdbprepserver[99] <Warning>: acquired itdbprep file lock.
    Jan 16 11:36:35 unknown itdbprepserver[99] <Warning>: BEGIN processing command: com.apple.itdprep.command.runPostProcessing
    Jan 16 11:36:35 unknown wifid[29] <Error>: WiFi:[348377795.535789]: Disable WoW requested by "spd"
    Jan 16 11:36:35 unknown SpringBoard[94] <Warning>: Applications are expected to have a root view controller at the end of application launch
    Jan 16 11:36:35 unknown SpringBoard[94] <Warning>: BTM: posting notification BluetoothAvailabilityChangedNotification
    Jan 16 11:36:35 unknown SpringBoard[94] <Warning>: An application that SpringBoard is not tracking just finished launching with identifier com.apple.mobilephone and pid 93
    Jan 16 11:36:35 unknown SpringBoard[94] <Warning>: +[CATransaction synchronize] called within transaction
    Jan 16 11:36:35 unknown Setup[98] <Warning>: Setup Assistant Language: initializing with fake mode = Yes
    Jan 16 11:36:35 unknown Setup[98] <Warning>: /var/tmp/languagesPaneBackupLanguage.png
    Jan 16 11:36:35 unknown Setup[98] <Warning>: /var/tmp/languagesPaneBackupTable.png
    Jan 16 11:36:35 unknown itdbprepserver[99] <Warning>: DONE processing command: com.apple.itdprep.command.runPostProcessing
    Jan 16 11:36:35 unknown itdbprepserver[99] <Warning>: Releasing locks.
    Jan 16 11:36:35 unknown itdbprepserver[99] <Warning>: exitServerWithReason com.apple.itdbprep.notification.didEnd
    Jan 16 11:36:35 unknown itdbprepserver[99] <Warning>: exiting now.
    Jan 16 11:36:36 unknown com.apple.SpringBoard[94] <Notice>: CoreAnimation: timed out fence 1f4
    Jan 16 11:36:36 unknown SpringBoard[94] <Warning>: BTM: BTLocalDeviceGetPairedDevices returned 0 devices
    Jan 16 11:36:36 unknown SpringBoard[94] <Error>: WiFi: Consulting "no-sdio-devices" property.
    Jan 16 11:36:36 unknown SpringBoard[94] <Error>: WiFi: "no-sdio-devices" property not found.
    Jan 16 11:36:36 unknown SpringBoard[94] <Warning>: SMS Plugin initialized.
    Jan 16 11:36:36 unknown SpringBoard[94] <Warning>: Telephony plugin initialized
    Jan 16 11:36:36 unknown SpringBoard[94] <Warning>: SIMToolkit plugin for SpringBoard initialized.
    Jan 16 11:36:36 unknown SpringBoard[94] <Error>: WiFi: Consulting "no-sdio-devices" property.
    Jan 16 11:36:36 unknown SpringBoard[94] <Error>: WiFi: "no-sdio-devices" property not found.
    Jan 16 11:36:36 unknown SpringBoard[94] <Warning>: WiFi picker plugin initialized
    Jan 16 11:36:36 unknown Setup[98] <Warning>: Setup Assistant Location: countries from defaults = '(
                  US,
                  FR
    Jan 16 11:36:36 unknown Setup[98] <Warning>: Applications are expected to have a root view controller at the end of application launch
    Jan 16 11:36:36 unknown SpringBoard[94] <Notice>: SMSCTServer is available and ready to rock.
    Jan 16 11:36:36 unknown SpringBoard[94] <Error>: mms: ***** isMmsConfigured = 0
    Jan 16 11:36:37 unknown com.apple.SpringBoard[94] <Notice>: CoreAnimation: timed out fence 1f4
    Jan 16 11:36:37 unknown Setup[98] <Warning>: Setup Assistant Locale: initializing with countries = (
                  US,
                  FR
    Jan 16 11:36:38 unknown SpringBoard[94] <Warning>: [Warning] The RowID is out of bounds.  We were asked for rows after [0] which exceeds the current sequence number [-1]
    Jan 16 11:36:38 unknown Setup[98] <Warning>: Setup Assistant Language: built table with previous fake mode = Yes, candidate current language = en, filtered language entries = 4, mode Filtered
    Jan 16 11:36:38 unknown timed[101] <Notice>: (Note ) CoreTime: Want active time in 12.89hrs. Need active time in 96.23hrs.
    Jan 16 11:36:47 unknown Setup[98] <Warning>: Setup Assistant Locale: Selected country 'MY', constructed = 'en_MY', used country default = 'ms_MY'
    Jan 16 11:36:48 unknown timed[101] <Notice>: (Note ) CoreTime: Not setting system time to 01/16/2012 03:36:48 from NTP because time is unchanged
    Jan 16 11:36:48 unknown timed[101] <Notice>: (Note ) CoreTime: Not setting time zone to Asia/Kuala_Lumpur from Location
    Jan 16 11:36:49 unknown profiled[108] <Notice>: (Note ) profiled: Service starting...
    Jan 16 11:36:49 unknown Setup[98] <Warning>: loadAPTableCellImages: loading images
    Jan 16 11:36:52 unknown Setup[98] <Warning>: -[APOtherNetworkController keyboardWillShow:]
    Jan 16 11:36:52 unknown SpringBoard[94] <Notice>: MultitouchHID: detection mode: 0->3
    Jan 16 11:37:12 unknown kernel[0] <Debug>: AppleBCMWLANCore::setDISASSOCIATE() [wifid]:
    Jan 16 11:37:12 unknown kernel[0] <Debug>: AppleBCMWLANCore::setASSOCIATE() [wifid]:  lowerAuth = AUTHTYPE_SHARED, upperAuth = AUTHTYPE_NONE, key = CIPHER_WEP_40     .
    Jan 16 11:37:12 unknown Setup[98] <Warning>: -[APOtherNetworkController keyboardWillShow:]
    Jan 16 11:37:13 unknown kernel[0] <Debug>: AppleBCMWLANJoinManager::handleAuth():    status = 5, reason = 0, flags = 0x0, authtype = 0, addr = 00:22:6b:82:ed:1b
    Jan 16 11:37:13 unknown kernel[0] <Debug>: AppleBCMWLANJoinManager::handleAuth():    status = 5, reason = 0, flags = 0x0, authtype = 0, addr = 00:22:6b:82:ed:1b
    Jan 16 11:37:13 unknown kernel[0] <Debug>: AppleBCMWLANJoinManager::handleAuth():    status = 5, reason = 0, flags = 0x0, authtype = 0, addr = 00:22:6b:82:ed:1b
    Jan 16 11:37:13 unknown kernel[0] <Debug>: AppleBCMWLANJoinManager::handleAuth():    status = 5, reason = 0, flags = 0x0, authtype = 0, addr = 00:22:6b:82:ed:1b
    Jan 16 11:37:13 unknown kernel[0] <Debug>: AppleBCMWLANJoinManager::handleAuth():    status = 5, reason = 0, flags = 0x0, authtype = 0, addr = 00:22:6b:82:ed:1b
    Jan 16 11:37:13 unknown kernel[0] <Debug>: AppleBCMWLANJoinManager::handleSetSSID(): interface 0 status = 1, reason = 0, flags = 0x0, authtype = 0, addr = 00:00:00:00:00:00
    Jan 16 11:37:36 unknown Setup[98] <Warning>: -[APOtherNetworkController keyboardWillShow:]
    Jan 16 11:37:36 unknown kernel[0] <Debug>: AppleBCMWLANCore::setDISASSOCIATE() [wifid]:
    Jan 16 11:37:36 unknown kernel[0] <Debug>: AppleBCMWLANCore::setASSOCIATE() [wifid]:  lowerAuth = AUTHTYPE_SHARED, upperAuth = AUTHTYPE_NONE, key = CIPHER_WEP_40     .
    Jan 16 11:37:36 unknown kernel[0] <Debug>: AppleBCMWLANJoinManager::handleAuth():    status = 5, reason = 0, flags = 0x0, authtype = 0, addr = 00:22:6b:82:ed:1b
    Jan 16 11:37:36 unknown kernel[0] <Debug>: AppleBCMWLANJoinManager::handleAuth():    status = 5, reason = 0, flags = 0x0, authtype = 0, addr = 00:22:6b:82:ed:1b
    Jan 16 11:37:36 unknown kernel[0] <Debug>: AppleBCMWLANJoinManager::handleAuth():    status = 5, reason = 0, flags = 0x0, authtype = 0, addr = 00:22:6b:82:ed:1b
    Jan 16 11:37:36 unknown kernel[0] <Debug>: AppleBCMWLANJoinManager::handleAuth():    status = 5, reason = 0, flags = 0x0, authtype = 0, addr = 00:22:6b:82:ed:1b
    Jan 16 11:37:36 unknown kernel[0] <Debug>: AppleBCMWLANJoinManager::handleAuth():    status = 5, reason = 0, flags = 0x0, authtype = 0, addr = 00:22:6b:82:ed:1b
    Jan 16 11:37:36 unknown kernel[0] <Debug>: AppleBCMWLANJoinManager::handleSetSSID(): interface 0 status = 1, reason = 0, flags = 0x0, authtype = 0, addr = 00:02:00:00:00:00
    Jan 16 11:37:49 unknown profiled[108] <Notice>: (Note ) profiled: Idled.
    Jan 16 11:37:49 unknown profiled[108] <Notice>: (Note ) profiled: Service stopping.
    Jan 16 11:38:34 unknown SpringBoard[94] <Notice>: Posting 'com.apple.iokit.hid.displayStatus' notifyState=0
    Jan 16 11:38:34 unknown SpringBoard[94] <Notice>: MultitouchHID: detection mode: 3->255
    Jan 16 11:38:49 unknown SCHelper[109] <Notice>: active (but IDLE) sessions
    Jan 16 11:38:49 unknown SCHelper[109] <Notice>:   0x12cd00 {port = 0x1d03, caller = Setup(98):com.apple.settings.wi-fi, path = /Library/Preferences/SystemConfiguration/preferences.plist}
    Jan 16 11:38:49 unknown CommCenter[17] <Notice>: Telling CSI to go low power.
    Jan 16 11:38:50 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerStateWillChangeToGated(): cap 0x8000, stateNum 0, dev 0x8154e200 (this 0, provider 1)
    Jan 16 11:38:50 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerOffSystem() : Powering Off and sleeping
    Jan 16 11:38:50 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerOff(): fStateFlags(4822)
    Jan 16 11:38:50 unknown kernel[0] <Debug>: AppleBCMWLANCore::configureBGScanParams(): SSID based PNO is Enabled
    Jan 16 11:38:50 unknown kernel[0] <Debug>: AppleBCMWLANBusInterfaceHSIC::prepareForWoW(): Sending disconnect command..
    Jan 16 11:38:50 unknown kernel[0] <Debug>: AppleBCMWLANBusInterfaceHSIC::sendDisconnectCommand()
    Jan 16 11:38:50 unknown kernel[0] <Debug>: virtual void AppleRGBOUT::do_power_state_change(): fSoft: 0 fHard: 0 swapBusy: 0  fController: 0 -> 0
    Jan 16 11:38:50 unknown kernel[0] <Debug>: AppleEmbeddedUSBArbitrator::setPowerState: calling handleUSBCableTypeChange from setPowerState
    Jan 16 11:38:50 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::handleUSBCableDisconnect
    Jan 16 11:38:50 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerStateDidChangeToGated(): stateNum 0, pol 0x8154e200 (this 0, provider 1)
    Jan 16 11:38:50 unknown kernel[0] <Debug>:
    Jan 16 11:38:57 unknown CommCenter[17] <Notice>: Telling CSI to exit low power.
    Jan 16 11:38:57 unknown kernel[0] <Debug>: pmu wake events: usb
    Jan 16 11:38:57 unknown kernel[0] <Debug>: virtual void AppleRGBOUT::do_power_state_change(): fSoft: 0 fHard: 1 swapBusy: 0  fController: 0 -> 0
    Jan 16 11:38:57 unknown kernel[0] <Debug>: AppleEmbeddedUSBArbitrator::setPowerState: calling handleUSBCableTypeChange from setPowerState
    Jan 16 11:38:57 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::handleUSBCableDisconnect
    Jan 16 11:38:57 unknown kernel[0] <Debug>: AppleSynopsysUSBEHCI[0xc145bc00]::UIMInitialize - HSIC ports enabled
    Jan 16 11:38:57 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerStateWillChangeToGated(): cap 0x8000, stateNum 1, dev 0x8154e200 (this 0, provider 1)
    Jan 16 11:38:57 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerStateDidChangeToGated(): stateNum 1, pol 0x8154e200 (this 0, provider 1)
    Jan 16 11:38:57 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerStateDidChangeToGated(): No fBus, deferring reconnect bus...
    Jan 16 11:38:57 unknown kernel[0] <Debug>: AppleD1881PMUPowerSource: AppleUSBCableDetect 1
    Jan 16 11:38:57 unknown kernel[0] <Debug>: AppleD1881PMUPowerSource: AppleUSBCableType USBHost
    Jan 16 11:38:58 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::handleUSBReset
    Jan 16 11:38:58 unknown kernel[0] <Debug>: AppleBaseband::resetDetectInterrupt with 0
    Jan 16 11:38:58 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerOnSystem() : Powering On
    Jan 16 11:38:58 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerOn(): stateFlags(4823)
    Jan 16 11:38:58 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerOn(): Tearing down WoW mode
    Jan 16 11:39:00 unknown SpringBoard[94] <Notice>: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    Jan 16 11:39:00 unknown SpringBoard[94] <Notice>: MultitouchHID: detection mode: 255->3 (deferring until bootloaded)
    Jan 16 11:39:00 unknown SpringBoard[94] <Notice>: MultitouchHID: device bootloaded
    Jan 16 11:39:00 unknown SpringBoard[94] <Notice>: MultitouchHID: detection mode: 3->3
    Jan 16 11:39:00 unknown ptpd[113] <Notice>: PTP interface has been activated at high speed.
    Jan 16 11:39:01 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::handleUSBReset
    Jan 16 11:39:01 unknown kernel[0] <Debug>: launchd[113] Builtin profile: ptpd (sandbox)
    Jan 16 11:39:01 unknown kernel[0] <Debug>: set_crc_notification_state 0
    Jan 16 11:39:02 unknown lockdownd[22] <Error>: 2ff7f000 copy_phonenumber: CTSettingCopyMyPhoneNumber() returned NULL
    Jan 16 11:39:02 unknown lockdownd[22] <Error>: 2ff7f000 copy_iccid: invalid ICCID from CT/no ICCID available
    Jan 16 11:39:02 unknown lockdownd[22] <Error>: libMobileGestalt copyMobileEquipmentIdentifier: No MEID in CT mobile equipment info dictionary - <CFBasicHash 0x246b00 [0x3f3d3630]>{type = mutable dict, count = 1,
              entries =>
                        11 : <CFString 0x246ab0 [0x3f3d3630]>{contents = "kCTMobileEquipmentInfoIMEI"} = <CFString 0x246ae0 [0x3f3d3630]>{contents = "013039002992629"}
    Jan 16 11:39:02 unknown lockdownd[22] <Error>: 2ff7f000 copy_meid: MobileGestalt failed to provide an MEID but returned no error (?)
    Jan 16 11:39:04 unknown wifid[29] <Error>: WiFi:[348377944.048692]: Client itunesstored is background application
    Jan 16 11:39:04 unknown lockdownd[22] <Error>: 01632000 create_activation_info: Can't get postponement info - status: kCTPostponementStatusNotReady
    Jan 16 11:39:04 unknown apsd[59] <Error>: Could not lookup device certification
    Jan 16 11:39:04 unknown lockdownd[22] <Error>: 01632000 copy_phonenumber: CTSettingCopyMyPhoneNumber() returned NULL
    Jan 16 11:39:04 unknown lockdownd[22] <Error>: 01632000 copy_iccid: invalid ICCID from CT/no ICCID available
    Jan 16 11:39:04 unknown lockdownd[22] <Error>: libMobileGestalt copyMobileEquipmentIdentifier: No MEID in CT mobile equipment info dictionary - <CFBasicHash 0xf647060 [0x3f3d3630]>{type = mutable dict, count = 1,
              entries =>
                        11 : <CFString 0xf646d00 [0x3f3d3630]>{contents = "kCTMobileEquipmentInfoIMEI"} = <CFString 0xf646d30 [0x3f3d3630]>{contents = "013039002992629"}
    Jan 16 11:39:04 unknown lockdownd[22] <Error>: 01632000 copy_meid: MobileGestalt failed to provide an MEID but returned no error (?)
    Jan 16 11:39:04 unknown atc[119] <Warning>: Error: Connection invalid
    Jan 16 11:39:05 unknown lockdownd[22] <Error>: 001d8000 create_activation_info: Can't get postponement info - status: kCTPostponementStatusNotReady
    Jan 16 11:39:05 unknown lockdownd[22] <Error>: 001d8000 copy_phonenumber: CTSettingCopyMyPhoneNumber() returned NULL
    Jan 16 11:39:05 unknown lockdownd[22] <Error>: 001d8000 copy_iccid: invalid ICCID from CT/no ICCID available
    Jan 16 11:39:05 unknown lockdownd[22] <Error>: libMobileGestalt copyMobileEquipmentIdentifier: No MEID in CT mobile equipment info dictionary - <CFBasicHash 0xf646730 [0x3f3d3630]>{type = mutable dict, count = 1,
              entries =>
                        11 : <CFString 0xf6466e0 [0x3f3d3630]>{contents = "kCTMobileEquipmentInfoIMEI"} = <CFString 0xf646710 [0x3f3d3630]>{contents = "013039002992629"}
    Jan 16 11:39:05 unknown lockdownd[22] <Error>: 001d8000 copy_meid: MobileGestalt failed to provide an MEID but returned no error (?)
    Jan 16 11:39:06 unknown lockdownd[22] <Error>: 001d8000 create_activation_info: Can't get postponement info - status: kCTPostponementStatusNotReady
    Jan 16 11:39:07 unknown lockdownd[22] <Error>: 001d8000 copy_phonenumber: CTSettingCopyMyPhoneNumber() returned NULL
    Jan 16 11:39:07 unknown lockdownd[22] <Error>: 001d8000 copy_iccid: invalid ICCID from CT/no ICCID available
    Jan 16 11:39:07 unknown lockdownd[22] <Error>: libMobileGestalt copyMobileEquipmentIdentifier: No MEID in CT mobile equipment info dictionary - <CFBasicHash 0xf646a60 [0x3f3d3630]>{type = mutable dict, count = 1,
              entries =>
                        11 : <CFString 0xf646a30 [0x3f3d3630]>{contents = "kCTMobileEquipmentInfoIMEI"} = <CFString 0xf643440 [0x3f3d3630]>{contents = "013039002992629"}
    Jan 16 11:39:07 unknown lockdownd[22] <Error>: 001d8000 copy_meid: MobileGestalt failed to provide an MEID but returned no error (?)
    Jan 16 11:39:08 unknown lockdownd[22] <Error>: 001d8000 create_activation_info: Can't get postponement info - status: kCTPostponementStatusNotReady
    Jan 16 11:39:08 unknown lockdownd[22] <Error>: 001d8000 copy_phonenumber: CTSettingCopyMyPhoneNumber() returned NULL
    Jan 16 11:39:08 unknown lockdownd[22] <Error>: 001d8000 copy_iccid: invalid ICCID from CT/no ICCID available
    Jan 16 11:39:08 unknown lockdownd[22] <Error>: libMobileGestalt copyMobileEquipmentIdentifier: No MEID in CT mobile equipment info dictionary - <CFBasicHash 0xf6476b0 [0x3f3d3630]>{type = mutable dict, count = 1,
              entries =>
                        11 : <CFString 0xf647660 [0x3f3d3630]>{contents = "kCTMobileEquipmentInfoIMEI"} = <CFString 0xf647690 [0x3f3d3630]>{contents = "013039002992629"}
    Jan 16 11:39:08 unknown lockdownd[22] <Error>: 001d8000 copy_meid: MobileGestalt failed to provide an MEID but returned no error (?)
    Jan 16 11:39:08 unknown SpringBoard[94] <Notice>: Posting 'com.apple.iokit.hid.displayStatus' notifyState=0
    Jan 16 11:39:08 unknown SpringBoard[94] <Notice>: MultitouchHID: detection mode: 3->255
    Jan 16 11:39:09 unknown lockdownd[22] <Error>: 001d8000 create_activation_info: Can't get postponement info - status: kCTPostponementStatusNotReady
    Jan 16 11:39:09 unknown lockdownd[22] <Error>: 001d8000 copy_phonenumber: CTSettingCopyMyPhoneNumber() returned NULL
    Jan 16 11:39:09 unknown lockdownd[22] <Error>: 001d8000 copy_iccid: invalid ICCID from CT/no ICCID available
    Jan 16 11:39:09 unknown lockdownd[22] <Error>: libMobileGestalt copyMobileEquipmentIdentifier: No MEID in CT mobile equipment info dictionary - <CFBasicHash 0xf6476b0 [0x3f3d3630]>{type = mutable dict, count = 1,
              entries =>
                        11 : <CFString 0xf647660 [0x3f3d3630]>{contents = "kCTMobileEquipmentInfoIMEI"} = <CFString 0xf647690 [0x3f3d3630]>{contents = "013039002992629"}
    Jan 16 11:39:09 unknown lockdownd[22] <Error>: 001d8000 copy_meid: MobileGestalt failed to provide an MEID but returned no error (?)
    Jan 16 11:39:10 unknown SpringBoard[94] <Notice>: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    Jan 16 11:39:10 unknown SpringBoard[94] <Notice>: MultitouchHID: detection mode: 255->3 (deferring until bootloaded)
    Jan 16 11:39:10 unknown SpringBoard[94] <Notice>: MultitouchHID: device bootloaded
    Jan 16 11:39:10 unknown SpringBoard[94] <Notice>: MultitouchHID: detection mode: 3->3
    Jan 16 11:39:10 unknown lockdownd[22] <Error>: 001d8000 create_activation_info: Can't get postponement info - status: kCTPostponementStatusNotReady
    Jan 16 11:39:11 unknown lockdownd[22] <Error>: 001d8000 copy_phonenumber: CTSettingCopyMyPhoneNumber() returned NULL
    Jan 16 11:39:11 unknown lockdownd[22] <Error>: 001d8000 copy_iccid: invalid ICCID from CT/no ICCID available
    Jan 16 11:39:11 unknown lockdownd[22] <Error>: libMobileGestalt copyMobileEquipmentIdentifier: No MEID in CT mobile equipment info dictionary - <CFBasicHash 0x246010 [0x3f3d3630]>{type = mutable dict, count = 1,
              entries =>
                        11 : <CFString 0x247220 [0x3f3d3630]>{contents = "kCTMobileEquipmentInfoIMEI"} = <CFString 0x2467a0 [0x3f3d3630]>{contents = "013039002992629"}
    Jan 16 11:39:11 unknown lockdownd[22] <Error>: 001d8000 copy_meid: MobileGestalt failed to provide an MEID but returned no error (?)
    Jan 16 11:39:11 unknown kernel[0] <Debug>: set_crc_notification_state 0
    Jan 16 11:39:12 unknown lockdownd[22] <Error>: 001d8000 create_activation_info: Can't get postponement info - status: kCTPostponementStatusNotReady
    Jan 16 11:39:12 unknown lockdownd[22] <Error>: 001d8000 copy_phonenumber: CTSettingCopyMyPhoneNumber() returned NULL
    Jan 16 11:39:12 unknown lockdownd[22] <Error>: 001d8000 copy_iccid: invalid ICCID from CT/no ICCID available
    Jan 16 11:39:12 unknown lockdownd[22] <Error>: libMobileGestalt copyMobileEquipmentIdentifier: No MEID in CT mobile equipment info dictionary - <CFBasicHash 0xf646250 [0x3f3d3630]>{type = mutable dict, count = 1,
              entries =>
                        11 : <CFString 0xf646220 [0x3f3d3630]>{contents = "kCTMobileEquipmentInfoIMEI"} = <CFString 0xf6448f0 [0x3f3d3630]>{contents = "013039002992629"}
    Jan 16 11:39:12 unknown lockdownd[22] <Error>: 001d8000 copy_meid: MobileGestalt failed to provide an MEID but returned no error (?)
    Jan 16 11:39:13 unknown lockdownd[22] <Error>: 001d8000 create_activation_info: Can't get postponement info - status: kCTPostponementStatusNotReady
    Jan 16 11:39:13 unknown lockdownd[22] <Error>: 001d8000 copy_phonenumber: CTSettingCopyMyPhoneNumber() returned NULL
    Jan 16 11:39:13 unknown lockdownd[22] <Error>: 001d8000 copy_iccid: invalid ICCID from CT/no ICCID available
    Jan 16 11:39:13 unknown lockdownd[22] <Error>: libMobileGestalt copyMobileEquipmentIdentifier: No MEID in CT mobile equipment info dictionary - <CFBasicHash 0xf648450 [0x3f3d3630]>{type = mutable dict, count = 1,
              entries =>
                        11 : <CFString 0xf648400 [0x3f3d3630]>{contents = "kCTMobileEquipmentInfoIMEI"} = <CFString 0xf648430 [0x3f3d3630]>{contents = "013039002992629"}
    Jan 16 11:39:13 unknown lockdownd[22] <Error>: 001d8000 copy_meid: MobileGestalt failed to provide an MEID but returned no error (?)
    Jan 16 11:39:14 unknown lockdownd[22] <Error>: 001d8000 create_activation_info: Can't get postponement info - status: kCTPostponementStatusNotReady
    Jan 16 11:39:15 unknown profiled[124] <Notice>: (Note ) profiled: Service starting...
    Jan 16 11:39:15 unknown lockdownd[22] <Error>: 001d8000 copy_phonenumber: CTSettingCopyMyPhoneNumber() returned NULL
    Jan 16 11:39:15 unknown lockdownd[22] <Error>: 001d8000 copy_iccid: invalid ICCID from CT/no ICCID available
    Jan 16 11:39:15 unknown lockdownd[22] <Error>: libMobileGestalt copyMobileEquipmentIdentifier: No MEID in CT mobile equipment info dictionary - <CFBasicHash 0xf648750 [0x3f3d3630]>{type = mutable dict, count = 1,
              entries =>
                        11 : <CFString 0xf6482c0 [0x3f3d3630]>{contents = "kCTMobileEquipmentInfoIMEI"} = <CFString 0xf6482f0 [0x3f3d3630]>{contents = "013039002992629"}
    Jan 16 11:39:15 unknown lockdownd[22] <Error>: 001d8000 copy_meid: MobileGestalt failed to provide an MEID but returned no error (?)
    Jan 16 11:39:16 unknown lockdownd[22] <Error>: 001d8000 create_activation_info: Can't get postponement info - status: kCTPostponementStatusNotReady
    Jan 16 11:39:16 unknown lockdownd[22] <Error>: 001d8000 copy_phonenumber: CTSettingCopyMyPhoneNumber() returned NULL
    Jan 16 11:39:16 unknown lockdownd[22] <Error>: 001d8000 copy_iccid: invalid ICCID from CT/no ICCID available
    Jan 16 11:39:16 unknown lockdownd[22] <Error>: libMobileGestalt copyMobileEquipmentIdentifier: No MEID in CT mobile equipment info dictionary - <CFBasicHash 0x24b040 [0x3f3d3630]>{type = mutable dict, count = 1,
              entries =>
                        11 : <CFString 0x2462f0 [0x3f3d3630]>{contents = "kCTMobileEquipmentInfoIMEI"} = <CFString 0x24cba0 [0x3f3d3630]>{contents = "013039002992629"}
    Jan 16 11:39:16 unknown lockdownd[22] <Error>: 001d8000 copy_meid: MobileGestalt failed to provide an MEID but returned no error (?)
    Jan 16 11:39:17 unknown lockdownd[22] <Error>: 001d8000 create_activation_info: Can't get postponement info - status: kCTPostponementStatusNotReady
    Jan 16 11:39:17 unknown lockdownd[22] <Error>: 001d8000 copy_phonenumber: CTSettingCopyMyPhoneNumber() returned NULL
    Jan 16 11:39:17 unknown lockdownd[22] <Error>: 001d8000 copy_iccid: invalid ICCID from CT/no ICCID available
    Jan 16 11:39:17 unknown lockdownd[22] <Error>: libMobileGestalt copyMobileEquipmentIdentifier: No MEID in CT mobile equipment info dictionary - <CFBasicHash 0x247e50 [0x3f3d3630]>{type = mutable dict, count = 1,
              entries =>
                        11 : <CFString 0x248870 [0x3f3d3630]>{contents = "kCTMobileEquipmentInfoIMEI"} = <CFString 0x24b5b0 [0x3f3d3630]>{contents = "013039002992629"}
    Jan 16 11:39:17 unknown lockdownd[22] <Error>: 001d8000 copy_meid: MobileGestalt failed to provide an MEID but returned no error (?)
    Jan 16 11:39:19 unknown lockdownd[22] <Error>: 001d8000 create_activation_info: Can't get postponement info - status: kCTPostponementStatusNotReady
    Jan 16 11:39:19 unknown lockdownd[22] <Error>: 001d8000 copy_phonenumber: CTSettingCopyMyPhoneNumber() returned NULL
    Jan 16 11:39:19 unknown lockdownd[22] <Error>: 001d8000 copy_iccid: invalid ICCID from CT/no ICCID available
    Jan 16 11:39:19 unknown lockdownd[22] <Error>: libMobileGestalt copyMobileEquipmentIdentifier: No MEID in CT mobile equipment info dictionary - <CFBasicHash 0x243ab0 [0x3f3d3630]>{type = mutable dict, count = 1,
              entries =>
                        11 : <CFString 0x243a80 [0x3f3d3630]>{contents = "kCTMobileEquipmentInfoIMEI"} = <CFString 0x247330 [0x3f3d3630]>{contents = "013039002992629"}
    Jan 16 11:39:19 unknown lockdownd[22] <Error>: 001d8000 copy_meid: MobileGestalt failed to provide an MEID but returned no error (?)
    Jan 16 11:39:20 unknown lockdownd[22] <Error>: 001d8000 create_activation_info: Can't get postponement info - status: kCTPostponementStatusNotReady
    Jan 16 11:39:20 unknown lockdownd[22] <Error>: 001d8000 copy_phonenumber: CTSettingCopyMyPhoneNumber() returned NULL
    Jan 16 11:39:20 unknown lockdownd[22] <Error>: 001d8000 copy_iccid: invalid ICCID from CT/no ICCID available
    Jan 16 11:39:20 unknown lockdownd[22] <Error>: libMobileGestalt copyMobileEquipmentIdentifier: No MEID in CT mobile equipment info dictionary - <CFBasicHash 0xf6470d0 [0x3f3d3630]>{type = mutable dict, count = 1,
              entries =>
                        11 : <CFString 0xf646e30 [0x3f3d3630]>{contents = "kCTMobileEquipmentInfoIMEI"} = <CFString 0xf648300 [0x3f3d3630]>{contents = "013039002992629"}
    Jan 16 11:39:20 unknown lockdownd[22] <Error>: 001d8000 copy_meid: MobileGestalt failed to provide an MEID but returned no error (?)
    Jan 16 11:39:21 unknown lockdownd[22] <Error>: 001d8000 create_activation_info: Can't get postponement info - status: kCTPostponementStatusNotReady
    Jan 16 11:39:21 unknown lockdownd[22] <Error>: 001d8000 copy_phonenumber: CTSettingCopyMyPhoneNumber() returned NULL
    Jan 16 11:39:21 unknown lockdownd[22] <Error>: 001d8000 copy_iccid: invalid ICCID from CT/no ICCID available
    Jan 16 11:39:21 unknown lockdownd[22] <Error>: libMobileGestalt copyMobileEquipmentIdentifier: No MEID in CT mobile equipment info dictionary - <CFBasicHash 0xf6473d0 [0x3f3d3630]>{type = mutable dict, count = 1,
              entries =>
                        11 : <CFString 0xf647310 [0x3f3d3630]>{contents = "kCTMobileEquipmentInfoIMEI"} = <CFString 0xf647360 [0x3f3d3630]>{contents = "013039002992629"}
    Jan 16 11:39:21 unknown lockdownd[22] <Error>: 001d8000 copy_meid: MobileGestalt failed to provide an MEID but returned no error (?)
    Jan 16 11:39:23 unknown lockdownd[22] <Error>: 001d8000 create_activation_info: Can't get postponement info - status: kCTPostponementStatusNotReady
    Jan 16 11:39:23 unknown lockdownd[22] <Error>: 001d8000 copy_phonenumber: CTSettingCopyMyPhoneNumber() returned NULL
    Jan 16 11:39:23 unknown lockdownd[22] <Error>: 001d8000 copy_iccid: invalid ICCID from CT/no ICCID available
    Jan 16 11:39:23 unknown lockdownd[22] <Error>: libMobileGestalt copyMobileEquipmentIdentifier: No MEID in CT mobile equipment info dictionary - <CFBasicHash 0x247210 [0x3f3d3630]>{type = mutable dict, count = 1,
              entries =>
                        11 : <CFString 0x247000 [0x3f3d3630]>{contents = "kCTMobileEquipmentInfoIMEI"} = <CFString 0x24b040 [0x3f3d3630]>{contents = "013039002992629"}
    Jan 16 11:39:23 unknown lockdownd[22] <Error>: 001d8000 copy_meid: MobileGestalt failed to provide an MEID but returned no error (?)
    Jan 16 11:39:24 unknown lockdownd[22] <Error>: 001d8000 create_activation_info: Can't get postponement info - status: kCTPostponementStatusNotReady
    Jan 16 11:39:24 unknown lockdownd[22] <Error>: 001d8000 copy_phonenumber: CTSettingCopyMyPhoneNumber() returned NULL
    Jan 16 11:39:24 unknown lockdownd[22] <Error>: 001d8000 copy_iccid: invalid ICCID from CT/no ICCID available
    Jan 16 11:39:24 unknown lockdownd[22] <Error>: libMobileGestalt copyMobileEquipmentIdentifier: No MEID in CT mobile equipment info dictionary - <CFBasicHash 0x2461e0 [0x3f3d3630]>{type = mutable dict, count = 1,
              entries =>
                        11 : <CFString 0x2461b0 [0x3f3d3630]>{contents = "kCTMobileEquipmentInfoIMEI"} = <CFString 0x245800 [0x3f3d3630]>{contents = "013039002992629"}
    Jan 16 11:39:24 unknown lockdownd[22] <Error>: 001d8000 copy_meid: MobileGestalt failed to provide an MEID but returned no error (?)
    Jan 16 11:39:25 unknown lockdownd[22] <Error>: 001d8000 copy_phonenumber: CTSettingCopyMyPhoneNumber() returned NULL
    Jan 16 11:39:25 unknown lockdownd[22] <Error>: 001d8000 special_case_get_domain: NN: checking BT MAC Address reported back 60:fa:cd:51:c0:27
    Jan 16 11:39:25 unknown lockdownd[22] <Error>: 2ff7f000 create_activation_info: Can't get postponement info - status: kCTPostponementStatusNotReady
    Jan 16 11:39:26 unknown lockdownd[22] <Error>: 2ff7f000 copy_phonenumber: CTSettingCopyMyPhoneNumber() returned NULL
    Jan 16 11:39:26 unknown lockdownd[22] <Error>: 2ff7f000 copy_iccid: invalid ICCID from CT/no ICCID available
    Jan 16 11:39:26 unknown lockdownd[22] <Error>: libMobileGestalt copyCarrierBundleInfoArray: CommCenter error: 2:-308
    Jan 16 11:39:26 unknown com.apple.CommCenter[17] <Notice>: <CFRunLoopSource MIG Server> mach_msg send error in reply: (ipc/send) invalid memory
    Jan 16 11:39:26 unknown lockdownd[22] <Error>: 001d8000 copy_carrierbundleinfoarray: MobileGestalt failed to provide the Carrier Bundle Info Array
    Jan 16 11:39:26 unknown lockdownd[22] <Error>: libMobileGestalt copyMobileEquipmentIdentifier: No MEID in CT mobile equipment info dictionary - <CFBasicHash 0xf63d5c0 [0x3f3d3630]>{type = mutable dict, count = 1,
              entries =>
                        11 : <CFString 0xf645450 [0x3f3d3630]>{contents = "kCTMobileEquipmentInfoIMEI"} = <CFString 0xf63d5a0 [0x3f3d3630]>{contents = "013039002992629"}
    Jan 16 11:39:26 unknown lockdownd[22] <Error>: 2ff7f000 copy_meid: MobileGestalt failed to provide an MEID but returned no error (?)
    Jan 16 11:39:26 unknown lockdownd[22] <Error>: 001d8000 spawn_service_agent: Service com.apple.mobile.MCInstall is currently prohibited from running
    Jan 16 11:39:26 unknown lockdownd[22] <Error>: 001d8000 spawn_and_handle_checkin: Could not spawn the com.apple.mobile.MCInstall service agent:ServiceProhibited
    Jan 16 11:39:27 iPhone lockdownd[22] <Error>: 2ff7f000 create_activation_info: Can't get postponement info - status: kCTPostponementStatusNotReady
    Jan 16 11:39:27 iPhone lockdownd[22] <Error>: 2ff7f000 copy_phonenumber: CTSettingCopyMyPhoneNumber() returned NULL
    Jan 16 11:39:27 iPhone lockdownd[22] <Error>: 2ff7f000 copy_iccid: invalid ICCID from CT/no ICCID available
    Jan 16 11:39:27 iPhone lockdownd[22] <Error>: libMobileGestalt copyMobileEquipmentIdentifier: No MEID in CT mobile equipment info dictionary - <CFBasicHash 0xf648ae0 [0x3f3d3630]>{type = mutable dict, count = 1,
              entries =>
                        11 : <CFString 0x254b40 [0x3f3d3630]>{contents = "kCTMobileEquipmentInfoIMEI"} = <CFString 0xf647560 [0x3f3d3630]>{contents = "013039002992629"}
    Jan 16 11:39:27 iPhone lockdownd[22] <Error>: 2ff7f000 copy_meid: MobileGestalt failed to provide an MEID but returned no error (?)
    Jan 16 11:39:28 iPhone lockdownd[22] <Error>: 2ff7f000 create_activation_info: Can't get postponement info - status: kCTPostponementStatusNotReady
    Jan 16 11:39:28 iPhone lockdownd[22] <Error>: 2ff7f000 copy_phonenumber: CTSettingCopyMyPhoneNumber() returned NULL
    Jan 16 11:39:28 iPhone lockdownd[22] <Error>: 2ff7f000 copy_iccid: invalid ICCID from CT/no ICCID available
    Jan 16 11:39:28 iPhone lockdownd[22] <Error>: libMobileGestalt copyMobileEquipmentIdentifier: No MEID in CT mobile equipment info dictionary - <CFBasicHash 0x2532e0 [0x3f3d3630]>{type = mutable dict, count = 1,
              entries =>
                        11 : <CFString 0x252cf0 [0x3f3d3630]>{contents = "kCTMobileEquipmentInfoIMEI"} = <CFString 0x2481e0 [0x3f3d3630]>{contents = "013039002992629"}
    Jan 16 11:39:28 iPhone lockdownd[22] <Error>: 2ff7f000 copy_meid: MobileGestalt failed to provide an MEID but returned no error (?)
    Jan 16 11:39:30 iPhone lockdownd[22] <Error>: 2ff7f000 create_activation_info: Can't get postponement info - status: kCTPostponementStatusNotReady
    Jan 16 11:39:30 iPhone lockdownd[22] <Error>: 2ff7f000 copy_phonenumber: CTSettingCopyMyPhoneNumber() returned NULL
    Jan 16 11:39:30 iPhone lockdownd[22] <Error>: 2ff7f000 copy_iccid: invalid ICCID from CT/no ICCID available
    Jan 16 11:39:30 iPhone lockdownd[22] <Error>: libMobileGestalt copyMobileEquipmentIdentifier: No MEID in CT mobile equipment info dictionary - <CFBasicHash 0xf648f90 [0x3f3d3630]>{type = mutable dict, count = 1,
              entries =>
                        11 : <CFString 0xf645940 [0x3f3d3630]>{contents = "kCTMobileEquipmentInfoIMEI"} = <CFString 0xf645970 [0x3f3d3630]>{contents = "013039002992629"}

    Sorry it has taken so long for people to respond but this is a lot of data and it took time but basically it's a software issue what's happening is your service provider is making every attempt to contact your phone and your phone is basically not giving up any of the data like your udid or unique identifier. Their is no exact fix for this because I have only ever seen this issue 3 times and what it is best to do is connect to your computer and restore and set it up as a new phone then restore from backed up data. This is the only advice I can offer as this issue is so rare no one has one exact answer for it

  • JSP, Tomcat 5, Oracle9i

    Hi everyone,
    My Tomcat 5 runs OK with JSP files that don't need access to any database. However, I got error message when running any JSP files that need access to Oracle9i. Below is my "test.jsp" that will get error when running http://localhost/test.jsp.
    <%@ page import="java.awt.*, java.awt.event.*, java.sql.* , java.text.*, java.io.*" %>
    <!------------------------------------------------------------------
    * This is a test page to Oracle9i database.
    --------------------------------------------------------------------!>
    <HTML>
         <HEAD>
              <TITLE>Test</title>
         </head>
         <BODY BGCOLOR=EOFFFO>
              <B>I'm using connection and querying EMP names and
                   salaries from the EMP table in the schema SCOTT.
              </b>
              <P>
                   <%
                        try
                             Connection conn = DriverManager.getConnection("jdbc:oracle:thin:@127.0.0.1:1521:ORCL","scott","tiger");
                                  Statement stmt = conn.createStatement();
                                  String query = "SELECT empno, ename, sal FROM scott.emp ORDER BY ename";
                                  ResultSet rset = stmt.executeQuery(query);
                                  while(rset.next())
                                       out.println( "\n"
                             + "Employee No: " + rset.getInt("empno") + "\n"
                             + "Employee Name: " + rset.getString(2) + "\n"
                             + "Salary ($): " + rset.getFloat(3) + "\n"
                             stmt.close();
                        catch (SQLException e)
                             out.println("<P>" + "There was an error doing the query:");
                             out.println ("<PRE>" + e + "</pre> \n <P>");
                   %>
              </p>
         </body>
    </html>
    I got the error below:
    I'm using connection and querying EMP names and salaries from the EMP table in the schema SCOTT.
    There was an error doing the query:
    java.sql.SQLException: No suitable driver
    What is the driver? Where can I go to get it? How can I install it?
    Please help. Thank you.

    Hi
    First of all classess12.jar or ojdbc.jar must be in classpath of your web app (WEB-INF/lib) or server's extensions dir (usually SERVER_INST/lib/ext).
    MOST IMPORTANT:
    To use driver you must register it within DriverManager. Specification requires drievers to register within static initializer so to register driver you need to do:
    Class.forName("oracle.jdbc.driver.OracleDriver");
    before calling DriverManager.getConnection(...)
    should help
    cheers
    Kula

  • Poor performance caused by using OCI driver?

    [Sorry for the multipost]
    I'm working on a medium-sized Apache / Tomcat / WLS 5.10 / Oracle
    system hosted on some 4-processor Suns. The Apache / Tomcat tier
    uses one box, the WebLogic tier uses another, and the Oracle tier
    uses a third.
    We've found that the performance, measured as the time it takes user
    operations like loading a page that displays database data, gets
    unacceptably bad at suspiciously low loads. When the system is in
    this state, none of the machines appears to be pushed very hard.
    There's no significant paging going on, the disk and network I/O
    isn't out of line, and the CPU load just isn't high enough to
    explain what's going on. Only the WebLogic tier shows a load over
    10%. When the system is perceived as too slow by the users, the
    CPU load on this tier is only 30-40%.
    To try to find out what's going on, I did a series of thread dumps.
    When the system is heavily loaded, I only see about three Oracle
    statements currently being processed (runnable threads with call
    stacks inside weblogic.db.oci.*). What I do see lots of is blocked
    (and one runnable) threads inside
    weblogic.rjvm.RJVMImpl.removePeerGoneListener or
    weblogic.rjvm.RJVMImpl.addPeerGoneListener. These threads appear to
    be attempting to obtain or release database connections.
    I don't know why, but the site is configured to use the WebLogic OCI
    driver for Oracle, instead of the Oracle-supplied thin driver. Is what I'm
    seeing what Sun is describing in this paragraph
    (excerpted from http://java.sun.com/docs/hotspot/PerformanceFAQ.html#24):
    Oracle provides two types of database drivers: a type-2
    driver, called the OCI (Oracle Call Interface) driver
    that utilizes native code, and a type-4 pure Java driver
    called the thin driver. In single processor environments,
    the thin driver works somewhat better than the OCI driver
    because of the JNI overhead associated with the OCI
    driver. On multi-processor configuations, synchronization
    points within Solaris used by the OCI driver become big
    bottlenecks and prevent scaling. We recommend using the
    thin driver in all cases.
    -- Erik

    Hi. I'll chip in here too. Yes, you are wasting JVM cycles having all those
    wasted threads. Threads aren't free, inexhaustable sources of compute power
    that some people assume (I'm not saying you're one). All these threads do
    share a single OS process and CPU. The JVM has to check all these all the
    time to see if they have something to do. I recommend configuring the
    server to run about 15 or 20 execute-threads.
    I see only one thread waiting on Oracle to return data, so I don't think this
    is a JDBC issue necessarily. What I do see is lots of threads trying to operate
    on a Vector, all being blocked, or at least serialized by the lock this thread has, below.
    Is the server hung at this point, or just slow?
    "ExecuteThread-109" daemon prio=5 tid=0x311fb8 nid=0x78 runnable [0xcf9ff000..0xcf9ffc68]
    at java.util.Vector.removeElementAt(Vector.java:509)
    at java.util.Vector.removeElement(Vector.java:598)
    at weblogic.rjvm.RJVMImpl.removePeerGoneListener(RJVMImpl.java:352)
    at weblogic.time.server.ScheduledTrigger.destroy(ScheduledTrigger.java:112)
    at weblogic.time.server.ScheduledTrigger.cancel(ScheduledTrigger.java:100)
    at weblogic.jts.internal.CoordinatorImpl.cancelCurrentTimer(CoordinatorImpl.java:199)
    at weblogic.jts.internal.CoordinatorImpl.commit(CoordinatorImpl.java:404)
    at weblogic.jts.internal.TxContext.commit(TxContext.java:255)
    at weblogic.ejb.internal.StatelessEJBObject.postInvokeOurTx(StatelessEJBObject.java:103
    at weblogic.ejb.internal.BaseEJBObject.postInvoke(BaseEJBObject.java:849)
    at com.xxx.yyy.as.TaskSessionEJBEOImpl.findTaskByFilter(TaskSessionEJBEOImpl.java:784)
    at
    com.xxx.yyy.as.TaskSessionEJBEOImpl_WLSkel.invoke(TaskSessionEJBEOImpl_WLSkel.java:101)
    at
    weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectAdapter.java:347)
    at
    weblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHandler.java:96)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:15)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
    Erik Horstkotte wrote:
    "Rob Woollen" <[email protected]> wrote in message
    news:[email protected]...
    You generally need a lot of data to find the performance problem in
    a distributed system like this.Understood, but I was hoping that someone would recognize my description
    as the "signature" of the locking problem with the OCI driver that Sun
    describes.
    It's very easy to switch to the Thin driver so you might as well
    try it.I had hoped so, and in most cases, you're likely correct. Unfortunately,
    the OCI driver is a touch more permissive than the thin driver. Some
    errors (too many bind parameters) have crept in to our code that don't
    cause problems for the OCI driver, but cause exceptions to be thrown by
    the thin driver. In this particular case, I'm trying to solve a problem on
    a production system - fixing the code there isn't an option (we are
    switching to thin driver in our next release, so we are fixing these
    problems).
    If that doesn't help, I would suggest inserting some timing logic
    in your code. In particular, I'd want to know the time a request
    entered apache/tomcat, left apache/tomcat, entered WLS, left WLS
    (to go to the database), returned from the database, left WLS, got
    back to apache/tomcat, and finally left apache/tomcat to return the
    response. With information like that, you should be able to narrow
    down the problem a bit.In the next release, this is a good idea, and we'll probably do something
    much like this. Unfortunately I can't make changes to the code on the
    production site, so I have to rely on more passive methods of data
    collection for the moment.
    "Slava Imeshev" <[email protected]> wrote in message
    news:[email protected]...
    There can be other reasons for bad performance ranging from
    serialized access to singletons to inefficient queries to
    server mis-configuration. I have some doubts that oci driver
    would affect performance at low loads.I don't see any evidence of serialization blocking, except for the
    interesting locking issue that I mentioned in the original message (a
    PeerGoneListener table maintained somewhere down inside WLS).
    I'm certain that inefficient queries play a large role in our
    performance problems.
    Service mis-configuration could very well play a role here. Note for
    example the large number of blocked idle execute threads in the thread
    dump below. Clearly this instance has way too many execute threads. Not
    knowing the internal architecture of WebLogic Server, nor the
    implementation method Sun used for monitors in Solaris JVM 1.4.2, I don't
    know how much of an impact an excess of execute threads has on
    performance. Anyone?
    Could you post a questionable thread dump here?See the bottom of this message. The dump has been "blinded" to remove some
    customer-specific information.
    Also, what's the load in terms of number of concurrent users
    and requests per second?At peak load, there are about 60 users logged in, of whom only about 4-12
    actually do much. The number of requests per second is very peaky, and
    varies from about 1-10 per second. The complexity of requests also varies
    wildly.
    I've attached a thread dump from a point in time when the WebLogic Server
    instance was taking about 30% of the CPU.
    Any and all ideas are appreciated.
    -- Erik
    Full thread dump:
    "HighPriority TimeEventGenerator" daemon prio=9 tid=0x4223ed0 nid=0xa7 waiting on monitor [0xcceff000..0xcceffc68]
    at java.lang.Object.wait(Native Method)
    at weblogic.time.common.internal.TimeTable.snooze(TimeTable.java:279)
    at weblogic.time.common.internal.TimeEventGenerator.run(TimeEventGenerator.java:141)
    at java.lang.Thread.run(Thread.java:484)
    "ListenThread" prio=5 tid=0x423f7a0 nid=0xa6 runnable [0xccbff000..0xccbffc68]
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:421)
    at java.net.ServerSocket.implAccept(ServerSocket.java:243)
    at java.net.ServerSocket.accept(ServerSocket.java:222)
    at weblogic.socket.WeblogicServerSocket.accept(WeblogicServerSocket.java:26)
    at weblogic.t3.srvr.ListenThread.run(ListenThread.java:325)
    "NBExecuteThread-1" daemon prio=5 tid=0x331ea0 nid=0xa2 waiting on monitor [0xccfff000..0xccfffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "NBExecuteThread-0" daemon prio=5 tid=0x3317b8 nid=0xa1 waiting on monitor [0xcd0ff000..0xcd0ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-149" daemon prio=5 tid=0x330228 nid=0xa0 runnable [0xcd1ff000..0xcd1ffc68]
    at weblogic.socket.PosixSocketMuxer.poll(Native Method)
    at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:290)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
    "ExecuteThread-148" daemon prio=5 tid=0x32f740 nid=0x9f waiting on monitor [0xcd2ff000..0xcd2ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-147" daemon prio=5 tid=0x32ec58 nid=0x9e waiting for monitor entry [0xcd3ff000..0xcd3ffc68]
    at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:289)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
    "ExecuteThread-146" daemon prio=5 tid=0x32e170 nid=0x9d waiting for monitor entry [0xcd4ff000..0xcd4ffc68]
    at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:289)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
    "ExecuteThread-145" daemon prio=5 tid=0x32ce80 nid=0x9c waiting on monitor [0xcd5ff000..0xcd5ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-144" daemon prio=5 tid=0x32c398 nid=0x9b waiting for monitor entry [0xcd6ff000..0xcd6ffc68]
    at java.util.Vector.removeElement(Vector.java:595)
    at weblogic.rjvm.RJVMImpl.removePeerGoneListener(RJVMImpl.java:352)
    at weblogic.jts.internal.CoordinatorImpl.unregisterClientDeathNotification(CoordinatorImpl.java:101)
    at weblogic.jts.internal.CoordinatorImpl.commit(CoordinatorImpl.java:347)
    at weblogic.jts.internal.TxContext.commit(TxContext.java:255)
    at weblogic.ejb.internal.StatelessEJBObject.postInvokeOurTx(StatelessEJBObject.java:103)
    at weblogic.ejb.internal.BaseEJBObject.postInvoke(BaseEJBObject.java:849)
    at com.xxx.yyy.as.ProfileSessionEJBEOImpl.getContactNumbers(ProfileSessionEJBEOImpl.java:5687)
    at com.xxx.yyy.as.ProfileSessionEJBEOImpl_WLSkel.invoke(ProfileSessionEJBEOImpl_WLSkel.java:222)
    at weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectAdapter.java:347)
    at weblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHandler.java:96)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:15)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
    "ExecuteThread-143" daemon prio=5 tid=0x32b8b0 nid=0x9a waiting on monitor [0xcd7ff000..0xcd7ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-142" daemon prio=5 tid=0x32adc8 nid=0x99 waiting on monitor [0xcd8ff000..0xcd8ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-141" daemon prio=5 tid=0x32a2e0 nid=0x98 waiting on monitor [0xcd9ff000..0xcd9ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-140" daemon prio=5 tid=0x3297f8 nid=0x97 waiting on monitor [0xcdaff000..0xcdaffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-139" daemon prio=5 tid=0x328d10 nid=0x96 waiting for monitor entry [0xcdbff000..0xcdbffc68]
    at java.util.Vector.addElement(Vector.java:573)
    at weblogic.rjvm.RJVMImpl.addPeerGoneListener(RJVMImpl.java:348)
    at weblogic.time.server.ScheduledTrigger.setExecCon(ScheduledTrigger.java:46)
    at weblogic.t3.srvr.T3ServerServices.getScheduledTrigger(T3ServerServices.java:177)
    at weblogic.jts.internal.CoordinatorImpl.resetTimer(CoordinatorImpl.java:210)
    at weblogic.jts.internal.CoordinatorImpl.<init>(CoordinatorImpl.java:83)
    at weblogic.jts.internal.CoordinatorFactoryImpl.createCoordinator(CoordinatorFactoryImpl.java:95)
    at weblogic.jts.internal.CoordinatorFactoryImpl_ServiceStub.createCoordinator(CoordinatorFactoryImpl_ServiceStub.java:69)
    at weblogic.jts.internal.TxContext.getCoordinator(TxContext.java:139)
    at weblogic.jts.internal.TxContext.begin(TxContext.java:93)
    at weblogic.jts.internal.CurrentImpl.begin(CurrentImpl.java:48)
    at weblogic.jts.internal.TransactionManagerImpl.begin(TransactionManagerImpl.java:56)
    at weblogic.ejb.internal.EJBHomeImpl.setupTransaction(EJBHomeImpl.java:838)
    at weblogic.ejb.internal.BaseEJBObject.setupTransaction(BaseEJBObject.java:281)
    at weblogic.ejb.internal.BaseEJBObject.preInvoke(BaseEJBObject.java:471)
    at com.xxx.yyy.as.SecuritySessionEJBEOImpl.getClientConfigurationSiteSpecific(SecuritySessionEJBEOImpl.java:143)
    at com.xxx.yyy.as.SecuritySessionEJBEOImpl_WLSkel.invoke(SecuritySessionEJBEOImpl_WLSkel.java:254)
    at weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectAdapter.java:347)
    at weblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHandler.java:96)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:15)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
    "ExecuteThread-138" daemon prio=5 tid=0x328228 nid=0x95 waiting on monitor [0xcdcff000..0xcdcffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-137" daemon prio=5 tid=0x326d38 nid=0x94 waiting on monitor [0xcddff000..0xcddffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-136" daemon prio=5 tid=0x326250 nid=0x93 waiting on monitor [0xcdeff000..0xcdeffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-135" daemon prio=5 tid=0x325768 nid=0x92 waiting on monitor [0xcdfff000..0xcdfffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-134" daemon prio=5 tid=0x324c80 nid=0x91 waiting on monitor [0xce0ff000..0xce0ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-133" daemon prio=5 tid=0x324198 nid=0x90 waiting on monitor [0xce1ff000..0xce1ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-132" daemon prio=5 tid=0x3236b0 nid=0x8f waiting on monitor [0xce2ff000..0xce2ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-131" daemon prio=5 tid=0x322bc8 nid=0x8e waiting on monitor [0xce3ff000..0xce3ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-130" daemon prio=5 tid=0x3220e0 nid=0x8d waiting on monitor [0xce4ff000..0xce4ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-129" daemon prio=5 tid=0x3215f8 nid=0x8c waiting on monitor [0xce5ff000..0xce5ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-128" daemon prio=5 tid=0x320b10 nid=0x8b waiting on monitor [0xce6ff000..0xce6ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-127" daemon prio=5 tid=0x320028 nid=0x8a waiting on monitor [0xce7ff000..0xce7ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-126" daemon prio=5 tid=0x31f540 nid=0x89 waiting on monitor [0xce8ff000..0xce8ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-125" daemon prio=5 tid=0x31ea58 nid=0x88 waiting on monitor [0xce9ff000..0xce9ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-124" daemon prio=5 tid=0x31df70 nid=0x87 waiting on monitor [0xceaff000..0xceaffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-123" daemon prio=5 tid=0x31d488 nid=0x86 waiting on monitor [0xcebff000..0xcebffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-122" daemon prio=5 tid=0x31bb90 nid=0x85 waiting on monitor [0xcecff000..0xcecffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-121" daemon prio=5 tid=0x31b0a8 nid=0x84 waiting on monitor [0xcedff000..0xcedffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-120" daemon prio=5 tid=0x31a5c0 nid=0x83 waiting for monitor entry [0xceeff000..0xceeffc68]
    at java.util.Vector.addElement(Vector.java:573)
    at weblogic.rjvm.RJVMImpl.addPeerGoneListener(RJVMImpl.java:348)
    at weblogic.jdbc20.rmi.internal.ConnectionImpl.<init>(ConnectionImpl.java:39)
    at weblogic.jdbc20.common.internal.RmiDataSource.getConnection(RmiDataSource.java:65)
    at weblogic.jdbc20.common.internal.RmiDataSource_ServiceStub.getConnection(RmiDataSource_ServiceStub.java:179)
    at com.xxx.yyy.asutil.DataAccessManager.getConnection(DataAccessManager.java:113)
    at com.xxx.yyy.as.MetricsSessionEJB.logEvent(MetricsSessionEJB.java:222)
    at com.xxx.yyy.as.MetricsSessionEJBEOImpl.logEvent(MetricsSessionEJBEOImpl.java:324)
    at com.xxx.yyy.as.MetricsSessionEJBEOImpl_WLSkel.invoke(MetricsSessionEJBEOImpl_WLSkel.java:242)
    at weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectAdapter.java:347)
    at weblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHandler.java:96)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:15)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
    "ExecuteThread-119" daemon prio=5 tid=0x319ad8 nid=0x82 waiting on monitor [0xcefff000..0xcefffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-118" daemon prio=5 tid=0x318ff0 nid=0x81 runnable [0xcf0fe000..0xcf0ffc68]
    at weblogic.db.oci.OciCursor.execAndFetch(Native Method)
    at weblogic.db.oci.OciCursor.oci_execAndFetch(OciCursor.java:1890)
    at weblogic.jdbcbase.oci.Statement.executeQuery(Statement.java:905)
    at weblogic.jdbcbase.jts.Statement.executeQuery(Statement.java:58)
    at weblogic.jdbc20.rmi.internal.PreparedStatementImpl.executeQuery(PreparedStatementImpl.java:46)
    at weblogic.jdbc20.rmi.SerialPreparedStatement.executeQuery(SerialPreparedStatement.java:40)
    at com.xxx.yyy.as.SecuritySessionEJB.getClientConfiguration(SecuritySessionEJB.java:1669)
    at com.xxx.yyy.as.SecuritySessionEJBEOImpl.getClientConfiguration(SecuritySessionEJBEOImpl.java:985)
    at com.xxx.yyy.as.SecuritySessionEJBEOImpl_WLSkel.invoke(SecuritySessionEJBEOImpl_WLSkel.java:234)
    at weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectAdapter.java:347)
    at weblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHandler.java:96)
    at weblogic.rmi.extensions.BasicRequestDispatcher.dispatch(BasicRequestDispatcher.java:82)
    at weblogic.rmi.internal.ServerRequest.sendOneWay(ServerRequest.java:73)
    at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:77)
    at com.xxx.yyy.as.SecuritySessionEJBEOImpl_WLStub.getClientConfiguration(SecuritySessionEJBEOImpl_WLStub.java:703)
    at com.xxx.yyy.as.QuestionnaireSessionEJB.getQuestionnaireBatches(QuestionnaireSessionEJB.java:3479)
    at com.xxx.yyy.as.QuestionnaireSessionEJBEOImpl.getQuestionnaireBatches(QuestionnaireSessionEJBEOImpl.java:631)
    at com.xxx.yyy.as.QuestionnaireSessionEJBEOImpl_WLSkel.invoke(QuestionnaireSessionEJBEOImpl_WLSkel.java:237)
    at weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectAdapter.java:347)
    at weblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHandler.java:96)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:15)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
    "ExecuteThread-117" daemon prio=5 tid=0x317f00 nid=0x80 waiting on monitor [0xcf1ff000..0xcf1ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-116" daemon prio=5 tid=0x317418 nid=0x7f waiting on monitor [0xcf2ff000..0xcf2ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-115" daemon prio=5 tid=0x316930 nid=0x7e waiting on monitor [0xcf3ff000..0xcf3ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-114" daemon prio=5 tid=0x315e48 nid=0x7d waiting on monitor [0xcf4ff000..0xcf4ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-113" daemon prio=5 tid=0x314b58 nid=0x7c waiting on monitor [0xcf5ff000..0xcf5ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-112" daemon prio=5 tid=0x314070 nid=0x7b waiting on monitor [0xcf6ff000..0xcf6ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-111" daemon prio=5 tid=0x313588 nid=0x7a waiting on monitor [0xcf7ff000..0xcf7ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-110" daemon prio=5 tid=0x312aa0 nid=0x79 waiting on monitor [0xcf8ff000..0xcf8ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-109" daemon prio=5 tid=0x311fb8 nid=0x78 runnable [0xcf9ff000..0xcf9ffc68]
    at java.util.Vector.removeElementAt(Vector.java:509)
    at java.util.Vector.removeElement(Vector.java:598)
    at weblogic.rjvm.RJVMImpl.removePeerGoneListener(RJVMImpl.java:352)
    at weblogic.time.server.ScheduledTrigger.destroy(ScheduledTrigger.java:112)
    at weblogic.time.server.ScheduledTrigger.cancel(ScheduledTrigger.java:100)
    at weblogic.jts.internal.CoordinatorImpl.cancelCurrentTimer(CoordinatorImpl.java:199)
    at weblogic.jts.internal.CoordinatorImpl.commit(CoordinatorImpl.java:404)
    at weblogic.jts.internal.TxContext.commit(TxContext.java:255)
    at weblogic.ejb.internal.StatelessEJBObject.postInvokeOurTx(StatelessEJBObject.java:103)
    at weblogic.ejb.internal.BaseEJBObject.postInvoke(BaseEJBObject.java:849)
    at com.xxx.yyy.as.TaskSessionEJBEOImpl.findTaskByFilter(TaskSessionEJBEOImpl.java:784)
    at com.xxx.yyy.as.TaskSessionEJBEOImpl_WLSkel.invoke(TaskSessionEJBEOImpl_WLSkel.java:101)
    at weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectAdapter.java:347)
    at weblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHandler.java:96)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:15)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
    "ExecuteThread-108" daemon prio=5 tid=0x3114d0 nid=0x77 waiting on monitor [0xcfaff000..0xcfaffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-107" daemon prio=5 tid=0x3109e8 nid=0x76 waiting on monitor [0xcfbff000..0xcfbffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-106" daemon prio=5 tid=0x30ff00 nid=0x75 waiting on monitor [0xcfcff000..0xcfcffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-105" daemon prio=5 tid=0x30f418 nid=0x74 waiting for monitor entry [0xcfdff000..0xcfdffc68]
    at java.util.Vector.removeElement(Vector.java:595)
    at weblogic.rjvm.RJVMImpl.removePeerGoneListener(RJVMImpl.java:352)
    at weblogic.jdbc20.rmi.internal.ConnectionImpl.close(ConnectionImpl.java:161)
    at weblogic.jdbc20.rmi.SerialConnection.close(SerialConnection.java:162)
    at com.xxx.yyy.asutil.Util

  • Can I delete files from disk that I removed just from LR in error?

    Hi, this is a really silly error.
    I've just deleted 100s of raw files from lightroom, useless stuff that I should have deleted at the time but was too lazy to do so. Am now trying to purge all the rubbish and it's taking me days (it's from the last 3 years or so.)
    This morning I just deleted several hundred images I went to empty the trash can and it's already empty and it's only then that I realise I've been just deleting the files from Lightroom and not from the disk. It's several hours work, is there any way I can now identify in the finder folder which images are not in LR, because these are the ones I want to get rid of for good. I don't want to keep them there taking up valuable memory space or restore them to LR and have to do it all again. Help!
    Any advice much appreciated.
    Emma
    Mac OSX 6.3
    Lightroom 2.7

    Emma,
    I would do the following:
    BACKUP YOUR CATALOG
    Synchronize the folder(s) in question (possibly to top level parent folder)
    - Deselect "Scan for metadata updates" during synchronization
    - Select "Import new photos" during synchronization
    Delete the photos ("Delete from Disk") just imported by Synchronize from within LR (from view "Previous Import") after each import (if it's more than one folder)
    This should delete all the images not previously in your catalog but existing in your folder(s).
    Beat Gossweiler
    Switzerland

  • Windows 7 Offline files behaviour - automatically making 'shortcutted' files available

    I am a sysadmin with a few Windows 7 Professional machines in our network.
    The current setup for our users is folder-redirection, with offline files enabled for users with laptops (some of which are said Win7 users).
    This works fine, just, any shortcut files that are in the users profile (that are made available offline) make the target of the shortcut available offline aswell. Though I see the benefit of this, it is not a behaviour we want.
    For example if user 'dave' has a shortcut on \\server1\users\dave\desktop, that points to \\server2\files\shortcut_target.doc (i.e. a directory we don't want to have offline file behaviour with) - it will make both files available offline.
    I'm positive it is related to shortcuts, as the files are always shortcutted somewhere in the users profile and the majority of these files come from word's recent documents folder, and other similar folders for different program.
    If theres anyway to change this behaviour please let me know, even if it is just a registry edit.
    Thanks Dan

    Hi,
    “For example if user 'dave' has a shortcut on
    \\server1\users\dave\desktop, that points to
    \\server2\files\shortcut_target.doc (i.e. a
    directory we don't want to have offline file behaviour with) - it will make both files available offline.”
    Based on my knowledge, Windows only synchronous the shortcut in this offline folder. What do you mean “it will make both files available offline.”
    For further research, I suggest you may enable sync log and try to repro this problem. Then move to Event Viewer -> Applications and Service Logs ->
    Microsoft -> Windows -> OfflineFiles, right click SyncLog and chose “Save all event as…” to export these event log.  Here is my e-mail:
    [email protected].  You could contact me, then
    I would assist you for this problem.
    Please refer following to enable SyncLog:
    How to enable the "SyncLog Channel"
    ===========================================
    Offline Files defines four event channels through the Windows Event Viewer.
    The channels are listed under the following hierarchy in the left-most pane of the viewer,
    Event Viewer -> Applications and Service Logs -> Microsoft -> Windows -> OfflineFiles
    If you see only one channel in the event viewer it will be the "Operational" channel. The remaining channels are known as Analytic or Debug
    channels. The Windows Event Viewer does not display these additional channels by default. They must first be enabled.
    To enable Analytic and Debug logs, highlight the "OfflineFiles" entry in the Event Viewer left pane. Select the "View" menu and check the
    option titled "Show Analytic and Debug Logs".
    While four channels are defined, only two are currently in use in Windows 7.
    SyncLog Channel
    ================
    This channel is of the "Analytic" type as defined by the Windows Event viewer. Because this is an "Analytic" channel, you must enable the
    channel before events are generated to the associated log. To enable this channel, right click on the "SyncLog" entry in the left pane of the Event Viewer. Select the "Enable Log"
    option.
    This may also be configured using the channel’s Properties page, also accessible through the Event Viewer. When you no longer want
    to collect SyncLog events, disable the channel using the same method ("Disable Log" option).
    The purpose of this channel is to generate events specific to synchronization activities within the Offline Files service.
    This may be helpful when questions arise about why a particular item is or is not being synchronized or questions about why a particular
    sync operation is failing.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ”

  • Reminders.app does not display anymore

    I'm translating my question already posted in french at : http://forums.macg.co/mac-os-x/rappels-ne-s-affiche-plus-1236408.html
    Hi,
    I haven't found any answer to my new problem.
    The app Reminders (Reminders.app) doesn't display anymore.
    To be more precise :
    - the icon is animated on the dock
    - the menu is there but no window opens
    - Cmd-0 does not display the main window
    - I cannot create a new entry
    I checked and repaired the permissions, the HDD, ... without succeeding.
    I tried to start ./Reminders in the terminal in /Applications/Reminders.app/Contents/MacOS and I got this error message :
    2013-12-10 23:07:19.862 Reminders[658:507] *** -[__NSCFString stringByAppendingString:]: nil argument
    2013-12-10 23:07:19.887 Reminders[658:507] +[CATransaction synchronize] called within transaction
    Because it works fine on iCloud.com and iOS7 I tried to :
    - disable iCloud/Reminders in the Preference panel -> then an new and empty Reminders window appears when I start it again (and no error message in the terminal)
    - close the Reminders app and enable iCloud -> the app does not appear
    - colse the app, modify some entries using iCloud or iOS, disable iCloud, enable iCloud, and try to start again without succeeding.
    Does anyone have an idea ?
    Thanks a lot,
    Thibault

    I had the same problem and solved it by quitting Reminders on the iMac and doing this on my iPhone (which is synced to iCloud along with my iMac):
    1) deleting old (completed) reminders so that each list had only reminders less that one year old, and
    2) adding a new list and creating a few entries
    And waiting until that synced to iCloud.
    When I did that all my lists and entries reappeared on the iMac Reminders app!  I'm gussing there was either a corrupt entry somewhere or the lists of entries had just got to be too long.  Even after the deletions, I still have several hundred completed items, which I want to keep as checklists that I re-use.  Doing the above was much better then totally wiping all lists (as some have suggested) or more drastic ideas like deleting pref files.
    I also had to widen the Reminders window to allow it to show the Sidebar as well as enabling Sidebar in the View menu.
    I did not disable iCloud syncing on the iMac but that would not hurt as an initial step before doing the above also.
    Good luck.

  • Using the USB cable to sync my blackberry deletes all calendar entries older than 3 mos

    I'm not very good at this kind of thing, so please pardon what I'm sure will be mistakes/omissions as I describe my problem.
    Every time I sync my blackberry using the USB cable (I'm told by my boyfriend who is an IT guy that I can't sync it wirelessly although I don't know why), all of my calendar entries in Outlook get erased--that is, all the entries that are older than 3 mos.  I frequently use those entries as reference so I can't lose them--so now I'm terrified to sync my blackberry.
    Any help will be much appreciated!
    Jenny

    I just found this on the support page and am going to try it for a couple of days to see if it solves the problem:
    Document ID:
    KB18694
    Modified Date:
    01-18-2010
    Document Type:
    Support
    Print this page
    Contents [show]
       Products
       Environment
       Overview
       Cause
       Resolution
    Products
    BlackBerry® Desktop Software
    BlackBerry® Desktop Software Version 1.0 (Mac OS)
    BlackBerry® Devices
    Environment
    BlackBerry® Desktop Manager
    BlackBerry® Desktop Manager Version 1.0 (Mac OS)
    BlackBerry smartphone
    Microsoft® Outlook®
    Yahoo!® Mail calendar
    Apple iSync
    Overview
    When synchronizing the Calendar via the BlackBerry Desktop Manager, past calendar events are being deleted on the desktop calendar application.
    Cause
    Calendar items on the BlackBerry smartphone were deleted as a result of the keep appointments setting in the Calendar was set to delete older appointments.
    Resolution
    To resolve this issue, complete the following steps:
    Task 1
    Configure the BlackBerry smartphone to keep past appointments:
    Open the Calendar application on the BlackBerry smartphone and press the Menu key.
    Select Options and then General Options.
    Within General Options set the Keep Appointments options to Forever.
    Task 2
    Configure BlackBerry Desktop Manager calendar synchronization options:
    For BlackBerry Desktop Manager version 4.5 to 5.0:
    Connect the BlackBerry smartphone to the computer with a USB cable and open BlackBerry Desktop Manager.
    Select Synchronize from the main menu of BlackBerry Desktop Manager.
    Select the Synchronization link and click on the button labeled Synchronization to configure the synchronization settings on the BlackBerry smartphone.
    Select the Calendar.
    Select the option to Synchronize with Microsoft Outlook and click Next.
    Select either the Two way or One way sync and click Next.
    Select the Default profile for Microsoft Outlook.
    For the Calendar date range select the option to Synchronize items within a range of days, configure the date range to sync 30 days in the past and 365 days in the future.
    Click Next.
    Continue through the configuration wizard and click Finish and then OK.
    Perform a new synchronization.
    For BlackBerry Desktop Manager version 4.2 and 4.3:
    Connect the BlackBerry smartphone to the computer with a USB cable and open BlackBerry Desktop Manager.
    Select Synchronize from the main menu of BlackBerry Desktop Manager.
    Click on the Configuration tab and then on Configure Sync.
    Select the Calendar.
    Select the option to Synchronize with Microsoft Outlook and click Next.
    Select either the Two way or One way sync and click Next.
    Select the Default profile for Microsoft Outlook.
    For the Calendar date range select the option to Synchronize items within a range of days, configure the date range to sync 30 days in the past and 365 days in the future.
    Click Next.
    Continue through the configuration wizard and click Finish and then OK.
    Perform a new synchronization.
    If you are still prompted to make deletions from Microsoft Outlook for past calendar events that were not manually deleted, then you may need to repeat the steps above and synchronize with a smaller date range for past events.
    For BlackBerry Desktop Manager version 1.0 for Mac OS:
    Connect the BlackBerry smartphone to the Mac with a USB cable and open BlackBerry Desktop Manager.
    Select Calendar.
    Select Two-Way.
    Select All Calendars or Selected Calendar, checkmark calendars to use during synchronization.
    Select Advanced Settings.
    For the Calendar date range select the option to Only events, configure the date range to sync 30 days prior and 365 days after.
    Click on Sync.
    Top of page
    Disclaimer
    By downloading, accessing or otherwise using the Knowledge Base documents you agree:
       (a) that the terms of use for the documents found at http://www.blackberry.com/support/knowledgebase/disclaimer.shtml apply to your use or reference to these documents; and
       (b) not to copy, distribute, disclose or reproduce, in full or in part any of the documents without the express written consent of RIM.
    Visit the BlackBerry Technical Solution Center at http://www.blackberry.com/btsc.

  • LR 5.5 and Creative cloud

    Hello,
    Is it possible to somehow synchronize photos within LR 5.5 installed on 2 PC´s via Creative Cloud? I mean on my desktop I will do some develop work and want to continue on my laptop.
    Thanks a lot

    Not via Creative Cloud.
    You would move the files from your Desktop via the Export as Catalog Function to transfer storage - Move them to your Laptop - Work on them - Move them back to your Desktop and then use the Import from Catalog functionality to reintegrate them.

  • Test stand and multiple workstatio​ns

    I run on a network and have several workstations that I can perform my test data analysis on.
    I want to orchestrate a test with TS and then after test completion I
    want to kick off three machines to crunch on my data and then have them
    seperately report back their results.
    Is this something that can be accomodated within TS?
    jim k.

    TEstStand provides several ways to synchronize threads within the same sequence. The Synchronization steps share several common features and can be used in the Parallel and Batch process models. You can choose your process model to be any of the above, and then use the following step types which will enable you to synchronize multiple threads of sequence execution from within a sequence.
    1. Lock
    2. Rendenvous
    3. Queue
    4. Notification
    5. Wait
    etc....
    Please refer to the Synchronization Example program in the following folder:
    C:\Program Files\National Instruments\TestStand 3.1\Examples
    You might want to look into using the Batch Process Model.
    - This controls a set of test sockets that test multiple UUTs as a group
    - Ensures that you start and stop testing all UUTs at the same time
    You can try using the Serial model if you want one thread to access a resource at a time. However if you have three resources each being accessed by on thread, you can simply use the parallel synchronization.
    Hope this helps
    Nandini
    NI

Maybe you are looking for

  • How to select multiple rows from List Of Values

    Hello, I use ADF 11g to create my list of values (LOV). I want to select multiple rows from it. but i can't. so how i can select many rows to set them in my adf table. Thank in advance

  • Can't access my old emails

    Dear Madam or Sir, I can't access my old emails anymore. I use to have Outlook Express and contacted Microsoft. The old emails are still there but I can't access them. Microsoft support couldn't help me to get them back and told me to contact you. Ca

  • Apple TV Video Podcast Stutter

    I have the Apple TV 2nd Generation. When watching video podcasts they stutter/jitter. I have tried adjusting settings on my TV, tried HD and SD videos with the same results. Anyone have any suggestions? Thank you

  • Video exports as just audio?

    I have just upgraded to iMovie 08 and am working on my first project; a simple task of splitting a single mp4 file I have into smaller parts to be put on my iPod Touch. I've selected the first part I wish to export and have been experimenting with th

  • Two folders for one artist??? Help me please!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

    Ok, im having trouble with my ipod 5G 60 gig. On my itunes, I made every artist the same spelling ( eminem has 5 songs and). But when i put it on my ipod 60gig, it makes two folders of eminem and biggie smalls. The songs are in the same artist folder