OS x 10.7.2 hangs, resumes when clicking away from active window

I have a 2010 iMac i3 running 10.7.2 - configured as shown in the About pic.
Lately, it has become very slow and unstable - by that I mean that Safari is very slow, mail hangs and I get a beach ball multiple times..  I did a Disk verify and repaired some issues.  I have also verified and repaired permissions.  The problem mostly occurs in Safari and Mail - I either get a beach ball when surfing or entering information, but have noticed that it corrects if/when I click away from the active window and return.  Mail does a similar thing - a new message will 'hang' in that it is translucent and I cannot enter anything, but if I click away from the active window, it will correct and I can continue.  I appears to be intermittant and I cannot get it to happen on command.  I checked the Activity Monitor and do not see any processes that are eating processor and I have plenty of free memory - currently up over 6 days and 0 page outs.  Any help would be greatly appreciated.  I do have a PC laptop running Win & and a 2011 MBA both on the same network (wireless)  and neither have any lag/slow issues.
Thanks!

You mentioned you have "plenty of free memory" but did not state how much is Free when you are getting beach balls. Leave Activity Monitor open and click the System Memory tab. OS X likes to have approximately 500MB or more of FREE RAM, if you get a beach ball and the FREE RAM is in the 500MB or less range then you would benefit by upgrading the RAM.
I would also STRONGLY recommend reading the XLab's Spinning Beach Ball of Death article, it's a valuable resource for troubleshooting this issue.

Similar Messages

  • Terminal opens when clicking desktop from finder window

    I don't know when started to happen, but when I open a window of Finder, and click in the left sidebar to see what is in Desktop, it didn't show in the right panel, it open a Terminal window.
    If I click Applications, or Music, it works good, but not with Desktop.
    Any ideas? I alredy installed Lion again 3 times, but when restoring from Time Machine, it starts to doing that.
    Thank's!

    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, press the key combination shift-command-U. The application is in the folder that opens.
    ☞ If you’re running Mac OS X 10.7 or later, open LaunchPad. Click Utilities, then Terminal in the page that opens.
    Drag or copy – do not type – the following line into the Terminal window, then press return:
    ls -@Odel ~/Desktop
    Post any lines of output that appear below what you entered – the text, please, not a screenshot. If your user name appears in the output, anonymize it for privacy's sake.

  • X200s sometimes hangs/freezes when goes back from sleep

    There is a confirmed bug in ubuntu jaunty/karmic running on lenovo x200 series notebooks. Shortly, it sometimes hangs/freezes when goes back from sleep mode.
    https://bugs.launchpad.net/ubuntu/+source/linux/+bug/479842
    Does anyone know anything  about it? How do i contact lenovo engeneer about it?
    Here is filled bug report in ubuntu bugtracker: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/479842

    There is a confirmed bug in ubuntu jaunty/karmic running on lenovo x200 series notebooks. Shortly, it sometimes hangs/freezes when goes back from sleep mode.
    https://bugs.launchpad.net/ubuntu/+source/linux/+bug/479842
    Does anyone know anything  about it? How do i contact lenovo engeneer about it?
    Here is filled bug report in ubuntu bugtracker: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/479842

  • DW CS6 - Spry collapsible panels - How to have panel close when you click away from it?

    I know typically onmouseout is used to close other items, but I could not figure it out with the spry collapsible panel. I have the panel opening onclick and closing onclick, but I would really like for it to close when you click anything else on the page outside of the panel.
    Thank you!

    Sorry, I did not mean other collapsing panels close when you click away from it. I simply meant in general for the closing after clicking away function, you can use onmouseout. I was working on something with collapsing panels and I wanted it to show the information when you clicked on it, but when you click on another panel, they both remain open. I really want both to close. I believe accordion does this, but not quite what I am looking for either.
    Here is a better example of what I would prefer: Houston Public Library
    If you visit their page and click "Find it" a box pops down with information and then when you click anywhere else on the screen, it closes that box. When you click "Research," it closes the "Find It" box and opens the "Research" box. There is likely a much better way to do this, but I am pretty new to this.
    Any assistance is very much appreciated.
    Thank you!

  • Need to stop playback of an FLVPlayback component when navigate away from page!

    I have an movieclip playing as auto start on the first page of my website.  The component continues to play when I navigate away from the page.  How can I stop the playback of the movie if it has not completed when navigation away from the page is invoked.  I have search and am unable to find such an event using an FLVPlayback component.  Presently there is no code in actionscript to display here.
    thanks

    Hi, this is the entire code that is placed on the timeline in frame 1 of the AS line.  There is now an error and the FLVPlayer component, which is also begin in frame 1. At this point there is one method that I thought should work when the vTinesDayBtn is clicked.  However, is not.
    The error is:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at ewddSite_fla::MainTimeline/vTines()
    ArgumentError: Error #1063: Argument count mismatch on ewddSite_fla::MainTimeline/stoppedVid(). Expected 0, got 1.
    The code is:
    stop();
    import flash.events.*;
    import flash.display.*;
    import fl.video.*;
    import fl.video.FLVPlayback;
    function stoppedVid() {
      vidPlay.stop();
    vTinesDayBtn.addEventListener(MouseEvent.CLICK, stoppedVid)
    function vTines(evt:MouseEvent):void {
    gotoAndStop(20);
    vidPlay.stop();
    function engagements(evt:MouseEvent):void {
    gotoAndStop(25);
    function weddings(evt:MouseEvent):void {
    gotoAndStop(30);
    function births(evt:MouseEvent):void {
    gotoAndStop(35);
    function birthdays(evt:MouseEvent):void {
    gotoAndStop(40);
    function graduations(evt:MouseEvent):void {
    gotoAndStop(45);
    function anniversaries(evt:MouseEvent):void {
    gotoAndStop(50);
    function specEvents(evt:MouseEvent):void {
    gotoAndStop(55);
    function memorials(evt:MouseEvent):void {
    gotoAndStop(60);
    //main.addEventListener(MouseEvent.MOUSE_DOWN, mainPg);
    vTinesDayBtn.addEventListener(MouseEvent.MOUSE_DOWN, vTines);
    engageBtn.addEventListener(MouseEvent.MOUSE_DOWN, engagements);
    weddingsBtn.addEventListener(MouseEvent.MOUSE_DOWN, weddings);
    birthsBtn.addEventListener(MouseEvent.MOUSE_DOWN, births);
    bDaysBtn.addEventListener(MouseEvent.MOUSE_DOWN, birthdays);
    graduBtn.addEventListener(MouseEvent.MOUSE_DOWN, graduations);
    annivBtn.addEventListener(MouseEvent.MOUSE_DOWN, anniversaries);
    spEventsBtn.addEventListener(MouseEvent.MOUSE_DOWN, specEvents);
    memorialsBtn.addEventListener(MouseEvent.MOUSE_DOWN, memorials);

  • Acrobat Form button that when clicked will open a Windows Folder?

    Is there a way to have a button on an Adobe Acrobat Form that when clicked will open a Windows Folder located with a predefined UNC path? I'm looking for a scripting solution.
    UNC example: \\myserver\myshares\engineering\changeorders
    I'm using LiveCycle Designer ES v. 8.2.
    Thanks for any help that you can give.

    This is in Internet Explorer 6 (yes, horrible, I know), but we use a standardized image where I work, with pretty intense GPO's.
    Don't know what happens if you right-click the link; but from any other machine (with the same image) the same link will open with all three options "Open", "Save", and "Cancel".  These are not freshly imaged machines, so some setting must of been changed along the way to make this happen on this user's computer.
    Repaired Acrobat, but this resolved nothing.
    Also checked in IE to make sure that Adobe was enabled under the Programs tab.
    Also, the option to view a pdf within the browser is not turned on.
    Any other ideas?

  • When switching away from a particular web site, the audio often continues.

    When switching away from an eagle cam web site, the audio often continues after leaving the site or will stop then restart later.
    Only happens from this one web site but occurs on two different computers using Firefox browser but not others. This seemed to start with Firefox 10 and continues with FF 11. I have watched this particular web site off and on for a year and never had this experience with the audio restarting after leaving the site.
    This is the only site I have found where this happens and it happens only with FF, not IE or Chrome. I also learned that a friend has the same problem on the same site on her computer.
    Any help resolving this is appreciated.

    Sounds like a problem with the plugin-container process that doesn't stop properly and keeps playing the sound.
    *http://kb.mozillazine.org/Plugin-container_and_out-of-process_plugins

  • Labview 2011 on Win7, OS causing serial loopback message corruption when clicking on top of windows?

    I'm wondering if anyone else has seen problems like this.
    I've been tearing my hair out over debugging some code. I have a ftont panel, I'm using some LEDs to send messages through the NI RS232 cable I bought, and have connected with a connector in a loopback fashion.
    I've been trying to read the incoming messages from loopback...and based on those, changing indicators and controls on the front panel.
    I could not figure why values were changing at strange times....like T's were turning to F's (I'm working with the serial data as boolean arrays).
    Well, I was simplifying code, and mostly running right...but every once in awhile, it appeared that my front panel indictors, especially the values I'm changing based on the loopback serial messages would  *BLINK*.
    I happened to be looking at the Probe Watch window...and I saw where my probes were correctly showing on a couple spots (a left and right indicator) TTTTTTTF  and TTTTTTTF......these appear at times to change T's to F's and vice versa.
    I then started clicking around...and found this is almost always caused, when I click the mouse on the top of the window...the part that you usually click and drag to move a window around the Windows desktop!!!!!!!!!!!!
    I can see this happen when I click on ANY window on the Windows OS desktop!!!!!!
    It appears that the OS is messing with me..............?
    I'm using Labview 2011, 32-bit on Win7....I believe the OS is 64 bit. 
    Has anyone seen behavior like this before?
    Thanks in advance,
    cayenne

    Matthew Kelton wrote:
    When you are probing, are you looking at the actual spot where you are getting your serial data, or are you looking at it after you've done some processing?  I would look at the actual raw data and use a serial port capture utility (there are several free ones on the internet) which will confirm your data is coming in correctly.
    What is your CPU running at?  If it is pegged at 100%, something has to give.
    Is your entire VI running in the UI execution system?  If you post your test code, it sounds like it would be easy enough for someone to do a loopback test of their own to confirm similar behavior.
    Thanks for the reply.  No, CPU isn't being hardly used at all...this is a new lenovo laptop.....high end Dell U2711 monitor...
    Task Mgr while Front Panel running:
    I'm looking after I've done some processing....
    I'm new to working with serial port stuff....I don't have a serial port capture device...?
    Thing is...when I run this in debug with breakpoints and stepping through...I don't see this happening. But when running at full speed, and especially when I click on any of the open windows on my desktop, along the top margin where you would click and drag a window around...I can see the serial data in the probe jump...and all data going through the serial port and being displayed on the front panel changing values...
    On my VI, I'm actually constructing the byte string...sending it  through the serial loopback, and receiving it and acting on it. I can see the data going in is the same as is coming out...it just seems to quickly corrupt and then come back again...like maybe it is getting interrupted by the Win7 OS....?
    I can't really post the whole code here...proprietary stuff...that's why in the past, I was posting a separate, simpler vi with only the parts I was having problems with....
    I think I have full support with NI...I wonder if I could send them the code to look at, with more confidentiality...?
    But again, I can make the problems happen, when it and the probe window is open, in real time...by clicking on windows.
    Also, this tends to explain problems I saw earlier...when running slow, all was well , when debugging with break points and stepping through. But at full speed, unexplained...things would start resetting without explanation...and without regularity.
    C
    I"m not sure what you are asking with "Is your entire VI running in the UI execution system?"....I have the one vi running, and only that vi is running.....

  • After an upgrade to 10.8.5 I can not see my mails with Mail. No "Message Viewer" window- When open it from menu "Window" I have the message "Mail quit unexpectedly"

    Hi there
    I just upgrade to 10.8.5 (from snow leopard on an '08 iMac 2.4 GHz Intel Core 2 Duo with 4 GB memory) and I have a problem with Mail
    While during migration there was no problem and it looks like all my massages was transferred (more than 17.000 mails) when I open Mail there is no "Message Viewer" window and if I try to open it from menu "Window" I have the message "Mail quit unexpectedly" (I have report it to Apple).
    So I can not see my mails!!
    Otherwise everything looks "OK" with Mail. I can see all my accounts in Preferences, I can see other windows like Activity, I can even see the red indicator with he new mails on the Mail icon on the Dock… But I can not quit Mail, only Force quit…
    Thank you in advance for your help.
    I am really sorry but If there will be no solution I am afraid I will go back to snow leopard…

    Hello
    and thank you for your help
    I hope the following information are the ones you ask and useful!
    Step 1 
    24/9/13 11:18:37,404 μ.μ. Mail[3161]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:18:37,408 μ.μ. Mail[3161]: (
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x0000000107640763 Mail + 1656675
              9   Mail                                0x0000000107640d13 Mail + 1658131
              10  Mail                                0x00000001076129e3 Mail + 1468899
              11  Mail                                0x000000010761321f Mail + 1471007
              12  AppKit                              0x00007fff89083199 -[NSPreferences _selectModuleOwner:] + 706
              13  AppKit                              0x00007fff8908289d -[NSPreferences _setupPreferencesPanelForOwner:] + 448
              14  AppKit                              0x00007fff89082944 -[NSPreferences showPreferencesPanelForOwner:] + 33
              15  Mail                                0x0000000107630177 Mail + 1589623
              16  AppKit                              0x00007fff88d0b959 -[NSApplication sendAction:to:from:] + 342
              17  AppKit                              0x00007fff88e4136c -[NSMenuItem _corePerformAction] + 406
              18  AppKit                              0x00007fff88e4105a -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 133
              19  AppKit                              0x00007fff88b2e20f -[NSMenu _internalPerformActionForItemAtIndex:] + 36
              20  AppKit                              0x00007fff88b2e097 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 135
              21  AppKit                              0x00007fff88e3a165 NSSLMMenuEventHandler + 342
              22  HIToolbox                           0x00007fff8ed9ed1a _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1206
              23  HIToolbox                           0x00007fff8ed9e1e9 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 410
              24  HIToolbox                           0x00007fff8edb3fc9 SendEventToEventTarget + 40
              25  HIToolbox                           0x00007fff8edeaca9 _ZL18SendHICommandEventjPK9HICommandjjhPKvP20OpaqueEventTargetRefS5_PP14OpaqueE ventRef + 443
              26  HIToolbox                           0x00007fff8ed8fa21 SendMenuCommandWithContextAndModifiers + 59
              27  HIToolbox                           0x00007fff8ed8f9d3 SendMenuItemSelectedEvent + 254
              28  HIToolbox                           0x00007fff8ed8f85f _ZL19FinishMenuSelectionP13SelectionDataP10MenuResultS2_ + 94
              29  HIToolbox                           0x00007fff8ed6b8bb _ZL14MenuSelectCoreP8MenuData5PointdjPP13OpaqueMenuRefPt + 605
              30  HIToolbox                           0x00007fff8ed6aec8 _HandleMenuSelection2 + 565
              31  AppKit                              0x00007fff88cf98c6 _NSHandleCarbonMenuEvent + 245
              32  AppKit                              0x00007fff88c1ba9f _DPSNextEvent + 2073
              33  AppKit                              0x00007fff88c1adf2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
              34  AppKit                              0x00007fff88c121a3 -[NSApplication run] + 517
              35  AppKit                              0x00007fff88bb6bd6 NSApplicationMain + 869
              36  libdyld.dylib                       0x00007fff8883b7e1 start + 0
              37  ???                                 0x0000000000000002 0x0 + 2
    24/9/13 11:18:56,856 μ.μ. Mail[3161]: An exception occurred during invocation of -[MailboxesController _writeSmartMailboxesToDisk]
    24/9/13 11:18:56,856 μ.μ. Mail[3161]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:18:56,858 μ.μ. Mail[3161]: (
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x0000000107649df0 Mail + 1695216
              9   Mail                                0x0000000107537d95 Mail + 572821
              10  CoreFoundation                      0x00007fff8e11009c __invoking___ + 140
              11  CoreFoundation                      0x00007fff8e10ff37 -[NSInvocation invoke] + 263
              12  CoreMessage                         0x00007fff8cfe07d7 -[MonitoredInvocation invoke] + 225
              13  CoreMessage                         0x00007fff8cff8e22 -[ThrowingInvocationOperation main] + 33
              14  CoreMessage                         0x00007fff8cfa4f82 -[_MFInvocationOperation main] + 431
              15  Foundation                          0x00007fff83bbb926 -[__NSOperationInternal start] + 684
              16  Foundation                          0x00007fff83bc30f1 __block_global_6 + 129
              17  libdispatch.dylib                   0x00007fff8b2e9f01 _dispatch_call_block_and_release + 15
              18  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
              19  libdispatch.dylib                   0x00007fff8b2e71fa _dispatch_worker_thread2 + 304
              20  libsystem_c.dylib                   0x00007fff89fb7cdb _pthread_wqthread + 404
              21  libsystem_c.dylib                   0x00007fff89fa2191 start_wqthread + 13
    24/9/13 11:19:26,862 μ.μ. Mail[3161]: An exception occurred during invocation of -[MailboxesController _writeSmartMailboxesToDisk]
    24/9/13 11:19:26,863 μ.μ. Mail[3161]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:19:26,864 μ.μ. Mail[3161]: (
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x0000000107649df0 Mail + 1695216
              9   Mail                                0x0000000107537d95 Mail + 572821
              10  CoreFoundation                      0x00007fff8e11009c __invoking___ + 140
              11  CoreFoundation                      0x00007fff8e10ff37 -[NSInvocation invoke] + 263
              12  CoreMessage                         0x00007fff8cfe07d7 -[MonitoredInvocation invoke] + 225
              13  CoreMessage                         0x00007fff8cff8e22 -[ThrowingInvocationOperation main] + 33
              14  CoreMessage                         0x00007fff8cfa4f82 -[_MFInvocationOperation main] + 431
              15  Foundation                          0x00007fff83bbb926 -[__NSOperationInternal start] + 684
              16  Foundation                          0x00007fff83bc30f1 __block_global_6 + 129
              17  libdispatch.dylib                   0x00007fff8b2e9f01 _dispatch_call_block_and_release + 15
              18  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
              19  libdispatch.dylib                   0x00007fff8b2e71fa _dispatch_worker_thread2 + 304
              20  libsystem_c.dylib                   0x00007fff89fb7cdb _pthread_wqthread + 404
              21  libsystem_c.dylib                   0x00007fff89fa2191 start_wqthread + 13
    24/9/13 11:19:56,957 μ.μ. Mail[3161]: An exception occurred during invocation of -[MailboxesController _writeSmartMailboxesToDisk]
    24/9/13 11:19:56,957 μ.μ. Mail[3161]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:19:56,959 μ.μ. Mail[3161]: (
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x0000000107649df0 Mail + 1695216
              9   Mail                                0x0000000107537d95 Mail + 572821
              10  CoreFoundation                      0x00007fff8e11009c __invoking___ + 140
              11  CoreFoundation                      0x00007fff8e10ff37 -[NSInvocation invoke] + 263
              12  CoreMessage                         0x00007fff8cfe07d7 -[MonitoredInvocation invoke] + 225
              13  CoreMessage                         0x00007fff8cff8e22 -[ThrowingInvocationOperation main] + 33
              14  CoreMessage                         0x00007fff8cfa4f82 -[_MFInvocationOperation main] + 431
              15  Foundation                          0x00007fff83bbb926 -[__NSOperationInternal start] + 684
              16  Foundation                          0x00007fff83bc30f1 __block_global_6 + 129
              17  libdispatch.dylib                   0x00007fff8b2e9f01 _dispatch_call_block_and_release + 15
              18  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
              19  libdispatch.dylib                   0x00007fff8b2e71fa _dispatch_worker_thread2 + 304
              20  libsystem_c.dylib                   0x00007fff89fb7cdb _pthread_wqthread + 404
              21  libsystem_c.dylib                   0x00007fff89fa2191 start_wqthread + 13
    24/9/13 11:20:26,962 μ.μ. Mail[3161]: An exception occurred during invocation of -[MailboxesController _writeSmartMailboxesToDisk]
    24/9/13 11:20:26,962 μ.μ. Mail[3161]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:20:26,963 μ.μ. Mail[3161]: (
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x0000000107649df0 Mail + 1695216
              9   Mail                                0x0000000107537d95 Mail + 572821
              10  CoreFoundation                      0x00007fff8e11009c __invoking___ + 140
              11  CoreFoundation                      0x00007fff8e10ff37 -[NSInvocation invoke] + 263
              12  CoreMessage                         0x00007fff8cfe07d7 -[MonitoredInvocation invoke] + 225
              13  CoreMessage                         0x00007fff8cff8e22 -[ThrowingInvocationOperation main] + 33
              14  CoreMessage                         0x00007fff8cfa4f82 -[_MFInvocationOperation main] + 431
              15  Foundation                          0x00007fff83bbb926 -[__NSOperationInternal start] + 684
              16  Foundation                          0x00007fff83bc30f1 __block_global_6 + 129
              17  libdispatch.dylib                   0x00007fff8b2e9f01 _dispatch_call_block_and_release + 15
              18  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
              19  libdispatch.dylib                   0x00007fff8b2e71fa _dispatch_worker_thread2 + 304
              20  libsystem_c.dylib                   0x00007fff89fb7cdb _pthread_wqthread + 404
              21  libsystem_c.dylib                   0x00007fff89fa2191 start_wqthread + 13
    24/9/13 11:20:57,310 μ.μ. Mail[3161]: An exception occurred during invocation of -[MailboxesController _writeSmartMailboxesToDisk]
    24/9/13 11:20:57,311 μ.μ. Mail[3161]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:20:57,312 μ.μ. Mail[3161]: (
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x0000000107649df0 Mail + 1695216
              9   Mail                                0x0000000107537d95 Mail + 572821
              10  CoreFoundation                      0x00007fff8e11009c __invoking___ + 140
              11  CoreFoundation                      0x00007fff8e10ff37 -[NSInvocation invoke] + 263
              12  CoreMessage                         0x00007fff8cfe07d7 -[MonitoredInvocation invoke] + 225
              13  CoreMessage                         0x00007fff8cff8e22 -[ThrowingInvocationOperation main] + 33
              14  CoreMessage                         0x00007fff8cfa4f82 -[_MFInvocationOperation main] + 431
              15  Foundation                          0x00007fff83bbb926 -[__NSOperationInternal start] + 684
              16  Foundation                          0x00007fff83bc30f1 __block_global_6 + 129
              17  libdispatch.dylib                   0x00007fff8b2e9f01 _dispatch_call_block_and_release + 15
              18  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
              19  libdispatch.dylib                   0x00007fff8b2e71fa _dispatch_worker_thread2 + 304
              20  libsystem_c.dylib                   0x00007fff89fb7cdb _pthread_wqthread + 404
              21  libsystem_c.dylib                   0x00007fff89fa2191 start_wqthread + 13
    24/9/13 11:21:06,290 μ.μ. WindowServer[2287]: CGXDisableUpdate: UI updates were forcibly disabled by application "Mail" for over 1.00 seconds. Server has re-enabled them.
    24/9/13 11:21:06,308 μ.μ. WindowServer[2287]: reenable_update_for_connection: UI updates were finally reenabled by application "Mail" after 1.03 seconds (server forcibly re-enabled them after 1.01 seconds)
    24/9/13 11:21:27,315 μ.μ. Mail[3161]: An exception occurred during invocation of -[MailboxesController _writeSmartMailboxesToDisk]
    24/9/13 11:21:27,316 μ.μ. Mail[3161]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:21:27,317 μ.μ. Mail[3161]: (
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x0000000107649df0 Mail + 1695216
              9   Mail                                0x0000000107537d95 Mail + 572821
              10  CoreFoundation                      0x00007fff8e11009c __invoking___ + 140
              11  CoreFoundation                      0x00007fff8e10ff37 -[NSInvocation invoke] + 263
              12  CoreMessage                         0x00007fff8cfe07d7 -[MonitoredInvocation invoke] + 225
              13  CoreMessage                         0x00007fff8cff8e22 -[ThrowingInvocationOperation main] + 33
              14  CoreMessage                         0x00007fff8cfa4f82 -[_MFInvocationOperation main] + 431
              15  Foundation                          0x00007fff83bbb926 -[__NSOperationInternal start] + 684
              16  Foundation                          0x00007fff83bc30f1 __block_global_6 + 129
              17  libdispatch.dylib                   0x00007fff8b2e9f01 _dispatch_call_block_and_release + 15
              18  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
              19  libdispatch.dylib                   0x00007fff8b2e71fa _dispatch_worker_thread2 + 304
              20  libsystem_c.dylib                   0x00007fff89fb7cdb _pthread_wqthread + 404
              21  libsystem_c.dylib                   0x00007fff89fa2191 start_wqthread + 13
    24/9/13 11:28:03,262 μ.μ. Mail[3161]: An uncaught exception was raised
    24/9/13 11:28:03,262 μ.μ. Mail[3161]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:28:03,266 μ.μ. Mail[3161]: (
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x00000001074b6c7f Mail + 44159
              9   Mail                                0x00000001074b6133 Mail + 41267
              10  Mail                                0x000000010764fd73 Mail + 1719667
              11  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
              12  libdispatch.dylib                   0x00007fff8b2e6041 dispatch_once_f + 50
              13  Mail                                0x00000001074b5fe8 Mail + 40936
              14  Mail                                0x00000001074b5ea6 Mail + 40614
              15  CoreFoundation                      0x00007fff8e1148e9 -[NSSet makeObjectsPerformSelector:] + 201
              16  AppKit                              0x00007fff88bdc136 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1168
              17  AppKit                              0x00007fff88bbb11d loadNib + 317
              18  AppKit                              0x00007fff88bba649 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 219
              19  AppKit                              0x00007fff88df7653 -[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 150
              20  CoreMessage                         0x00007fff8cfe83d6 -[NSBundle(MessageFrameworkAdditions) loadNibNamed:owner:] + 95
              21  Mail                                0x00000001074b5002 Mail + 36866
              22  Mail                                0x00000001074b4ecc Mail + 36556
              23  Mail                                0x000000010762d8ac Mail + 1579180
              24  AppKit                              0x00007fff88d0b959 -[NSApplication sendAction:to:from:] + 342
              25  AppKit                              0x00007fff88e4136c -[NSMenuItem _corePerformAction] + 406
              26  AppKit                              0x00007fff88e4105a -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 133
              27  AppKit                              0x00007fff88b2e20f -[NSMenu _internalPerformActionForItemAtIndex:] + 36
              28  AppKit                              0x00007fff88b2e097 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 135
              29  AppKit                              0x00007fff88e3a165 NSSLMMenuEventHandler + 342
              30  HIToolbox                           0x00007fff8ed9ed1a _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1206
              31  HIToolbox                           0x00007fff8ed9e1e9 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 410
              32  HIToolbox                           0x00007fff8edb3fc9 SendEventToEventTarget + 40
              33  HIToolbox                           0x00007fff8edeaca9 _ZL18SendHICommandEventjPK9HICommandjjhPKvP20OpaqueEventTargetRefS5_PP14OpaqueE ventRef + 443
              34  HIToolbox                           0x00007fff8ed8fa21 SendMenuCommandWithContextAndModifiers + 59
              35  HIToolbox                           0x00007fff8ed8f9d3 SendMenuItemSelectedEvent + 254
              36  HIToolbox                           0x00007fff8ed8f85f _ZL19FinishMenuSelectionP13SelectionDataP10MenuResultS2_ + 94
              37  HIToolbox                           0x00007fff8ed6b8bb _ZL14MenuSelectCoreP8MenuData5PointdjPP13OpaqueMenuRefPt + 605
              38  HIToolbox                           0x00007fff8ed6aec8 _HandleMenuSelection2 + 565
              39  AppKit                              0x00007fff88cf98c6 _NSHandleCarbonMenuEvent + 245
              40  AppKit                              0x00007fff88c1ba9f _DPSNextEvent + 2073
              41  AppKit                              0x00007fff88c1adf2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
              42  AppKit                              0x00007fff88c121a3 -[NSApplication run] + 517
              43  AppKit                              0x00007fff88bb6bd6 NSApplicationMain + 869
              44  libdyld.dylib                       0x00007fff8883b7e1 start + 0
              45  ???                                 0x0000000000000002 0x0 + 2
    24/9/13 11:28:03,268 μ.μ. Mail[3161]: *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray'
    *** First throw call stack:
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x00000001074b6c7f Mail + 44159
              9   Mail                                0x00000001074b6133 Mail + 41267
              10  Mail                                0x000000010764fd73 Mail + 1719667
              11  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
              12  libdispatch.dylib                   0x00007fff8b2e6041 dispatch_once_f + 50
              13  Mail                                0x00000001074b5fe8 Mail + 40936
              14  Mail                                0x00000001074b5ea6 Mail + 40614
              15  CoreFoundation                      0x00007fff8e1148e9 -[NSSet makeObjectsPerformSelector:] + 201
              16  AppKit                              0x00007fff88bdc136 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1168
              17  AppKit                              0x00007fff88bbb11d loadNib + 317
              18  AppKit                              0x00007fff88bba649 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 219
              19  AppKit                              0x00007fff88df7653 -[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 150
              20  CoreMessage                         0x00007fff8cfe83d6 -[NSBundle(MessageFrameworkAdditions) loadNibNamed:owner:] + 95
              21  Mail                                0x00000001074b5002 Mail + 36866
              22  Mail                                0x00000001074b4ecc Mail + 36556
              23  Mail                                0x000000010762d8ac Mail + 1579180
              24  AppKit                              0x00007fff88d0b959 -[NSApplication sendAction:to:from:] + 342
              25  AppKit                              0x00007fff88e4136c -[NSMenuItem _corePerformAction] + 406
              26  AppKit                              0x00007fff88e4105a -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 133
              27  AppKit                              0x00007fff88b2e20f -[NSMenu _internalPerformActionForItemAtIndex:] + 36
              28  AppKit                              0x00007fff88b2e097 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 135
              29  AppKit                              0x00007fff88e3a165 NSSLMMenuEventHandler + 342
              30  HIToolbox                           0x00007fff8ed9ed1a _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1206
              31  HIToolbox                           0x00007fff8ed9e1e9 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 410
              32  HIToolbox                           0x00007fff8edb3fc9 SendEventToEventTarget + 40
              33  HIToolbox                           0x00007fff8edeaca9 _ZL18SendHICommandEventjPK9HICommandjjhPKvP20OpaqueEventTargetRefS5_PP14OpaqueE ventRef + 443
              34  HIToolbox                           0x00007fff8ed8fa21 SendMenuCommandWithContextAndModifiers + 59
              35  HIToolbox                           0x00007fff8ed8f9d3 SendMenuItemSelectedEvent + 254
              36  HIToolbox                           0x00007fff8ed8f85f _ZL19FinishMenuSelectionP13SelectionDataP10MenuResultS2_ + 94
              37  HIToolbox                           0x00007fff8ed6b8bb _ZL14MenuSelectCoreP8MenuData5PointdjPP13OpaqueMenuRefPt + 605
              38  HIToolbox                           0x00007fff8ed6aec8 _HandleMenuSelection2 + 565
              39  AppKit                              0x00007fff88cf98c6 _NSHandleCarbonMenuEvent + 245
              40  AppKit                              0x00007fff88c1ba9f _DPSNextEvent + 2073
              41  AppKit                              0x00007fff88c1adf2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
              42  AppKit                              0x00007fff88c121a3 -[NSApplication run] + 517
              43  AppKit                              0x00007fff88bb6bd6 NSApplicationMain + 869
              44  libdyld.dylib                       0x00007fff8883b7e1 start + 0
              45  ???                                 0x0000000000000002 0x0 + 2
    24/9/13 11:28:04,903 μ.μ. com.apple.launchd.peruser.506[2322]: ([0x0-0x307307].com.apple.mail[3161]) Job appears to have crashed: Abort trap: 6
    24/9/13 11:28:08,393 μ.μ. ReportCrash[3465]: Saved crash report for Mail[3161] version 6.6 (1510) to /Users/------/Library/Logs/DiagnosticReports/Mail_2013-09-24-232808_----------- ---.crash
    24/9/13 11:44:24,585 μ.μ. Mail[3744]: Using V2 Layout
    24/9/13 11:44:27,235 μ.μ. Mail[3744]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:44:33,389 μ.μ. Mail[3744]: An uncaught exception was raised
    Step 2
    Process:         Mail [3744]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:      com.apple.mail
    Version:         6.6 (1510)
    Build Info:      Mail-1510000000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [2322]
    User ID:         506
    Date/Time:       2013-09-24 23:48:10.137 +0300
    OS Version:      Mac OS X 10.8.5 (12F37)
    Report Version:  10
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray'
    Performing @selector(newViewerWindow:) from sender NSMenuItem 0x7fb33ac74df0
    abort() called
    terminate called throwing an exception
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
    1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
    2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
    3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
    4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
    5   Mail                                0x000000010dae822b Mail + 33323
    6   Mail                                0x000000010dae7cbf Mail + 31935
    7   Mail                                0x000000010dae7990 Mail + 31120
    8   Mail                                0x000000010daeac7f Mail + 44159
    9   Mail                                0x000000010daea133 Mail + 41267
    10  Mail                                0x000000010dc83d73 Mail + 1719667
    11  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
    12  libdispatch.dylib                   0x00007fff8b2e6041 dispatch_once_f + 50
    13  Mail                                0x000000010dae9fe8 Mail + 40936
    14  Mail                                0x000000010dae9ea6 Mail + 40614
    15  CoreFoundation                      0x00007fff8e1148e9 -[NSSet makeObjectsPerformSelector:] + 201
    16  AppKit                              0x00007fff88bdc136 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1168
    17  AppKit                              0x00007fff88bbb11d loadNib + 317
    18  AppKit                              0x00007fff88bba649 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 219
    19  AppKit                              0x00007fff88df7653 -[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 150
    20  CoreMessage                         0x00007fff8cfe83d6 -[NSBundle(MessageFrameworkAdditions) loadNibNamed:owner:] + 95
    21  Mail                                0x000000010dae9002 Mail + 36866
    22  Mail                                0x000000010dae8ecc Mail + 36556
    23  AppKit                              0x00007fff88d0b959 -[NSApplication sendAction:to:from:] + 342
    24  AppKit                              0x00007fff88e4136c -[NSMenuItem _corePerformAction] + 406
    25  AppKit                              0x00007fff88e4105a -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 133
    26  AppKit                              0x00007fff88b2e20f -[NSMenu _internalPerformActionForItemAtIndex:] + 36
    27  AppKit                              0x00007fff88b2e097 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 135
    28  AppKit                              0x00007fff88e3a165 NSSLMMenuEventHandler + 342
    29  HIToolbox                           0x00007fff8ed9ed1a _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1206
    30  HIToolbox                           0x00007fff8ed9e1e9 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 410
    31  HIToolbox                           0x00007fff8edb3fc9 SendEventToEventTarget + 40
    32  HIToolbox                           0x00007fff8edeaca9 _ZL18SendHICommandEventjPK9HICommandjjhPKvP20OpaqueEventTargetRefS5_PP14OpaqueE ventRef + 443
    33  HIToolbox                           0x00007fff8ed8fa21 SendMenuCommandWithContextAndModifiers + 59
    34  HIToolbox                           0x00007fff8ed8f9d3 SendMenuItemSelectedEvent + 254
    35  HIToolbox                           0x00007fff8ed8f85f _ZL19FinishMenuSelectionP13SelectionDataP10MenuResultS2_ + 94
    36  HIToolbox                           0x00007fff8ed6b8bb _ZL14MenuSelectCoreP8MenuData5PointdjPP13OpaqueMenuRefPt + 605
    37  HIToolbox                           0x00007fff8ed6aec8 _HandleMenuSelection2 + 565
    38  AppKit                              0x00007fff88cf98c6 _NSHandleCarbonMenuEvent + 245
    39  AppKit                              0x00007fff88c1ba9f _DPSNextEvent + 2073
    40  AppKit                              0x00007fff88c1adf2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    41  AppKit                              0x00007fff88c121a3 -[NSApplication run] + 517
    42  AppKit                              0x00007fff88bb6bd6 NSApplicationMain + 869
    43  libdyld.dylib                       0x00007fff8883b7e1 start + 0
    44  ???                                 0x0000000000000002 0x0 + 2
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff8be9d212 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff89fb6b24 pthread_kill + 90
    2   libsystem_c.dylib                       0x00007fff89ffaf61 abort + 143
    3   libc++abi.dylib                         0x00007fff884b69eb abort_message + 257
    4   libc++abi.dylib                         0x00007fff884b439a default_terminate() + 28
    5   libobjc.A.dylib                         0x00007fff8df81873 _objc_terminate() + 91
    6   libc++.1.dylib                          0x00007fff8dcc68fe std::terminate() + 20
    7   libobjc.A.dylib                         0x00007fff8df815de objc_terminate + 9
    8   libdispatch.dylib                       0x00007fff8b2e60ca _dispatch_client_callout + 28
    9   libdispatch.dylib                       0x00007fff8b2e6041 dispatch_once_f + 50
    10  com.apple.mail                          0x000000010dae9fe8 0x10dae0000 + 40936
    11  com.apple.mail                          0x000000010dae9ea6 0x10dae0000 + 40614
    12  com.apple.CoreFoundation                0x00007fff8e1148e9 -[NSSet makeObjectsPerformSelector:] + 201
    13  com.apple.AppKit                        0x00007fff88bdc136 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1168
    14  com.apple.AppKit                        0x00007fff88bbb11d loadNib + 317
    15  com.apple.AppKit                        0x00007fff88bba649 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 219
    16  com.apple.AppKit                        0x00007fff88df7653 -[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 150
    17  com.apple.CoreMessage                   0x00007fff8cfe83d6 -[NSBundle(MessageFrameworkAdditions) loadNibNamed:owner:] + 95
    18  com.apple.mail                          0x000000010dae9002 0x10dae0000 + 36866
    19  com.apple.mail                          0x000000010dae8ecc 0x10dae0000 + 36556
    20  com.apple.AppKit                        0x00007fff88d0b959 -[NSApplication sendAction:to:from:] + 342
    21  com.apple.AppKit                        0x00007fff88e4136c -[NSMenuItem _corePerformAction] + 406
    22  com.apple.AppKit                        0x00007fff88e4105a -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 133
    23  com.apple.AppKit                        0x00007fff88b2e20f -[NSMenu _internalPerformActionForItemAtIndex:] + 36
    24  com.apple.AppKit                        0x00007fff88b2e097 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 135
    25  com.apple.AppKit                        0x00007fff88e3a165 NSSLMMenuEventHandler + 342
    26  com.apple.HIToolbox                     0x00007fff8ed9ed1a DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1206
    27  com.apple.HIToolbox                     0x00007fff8ed9e1e9 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 410
    28  com.apple.HIToolbox                     0x00007fff8edb3fc9 SendEventToEventTarget + 40
    29  com.apple.HIToolbox                     0x00007fff8edeaca9 SendHICommandEvent(unsigned int, HICommand const*, unsigned int, unsigned int, unsigned char, void const*, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 443
    30  com.apple.HIToolbox                     0x00007fff8ed8fa21 SendMenuCommandWithContextAndModifiers + 59
    31  com.apple.HIToolbox                     0x00007fff8ed8f9d3 SendMenuItemSelectedEvent + 254
    32  com.apple.HIToolbox                     0x00007fff8ed8f85f FinishMenuSelection(SelectionData*, MenuResult*, MenuResult*) + 94
    33  com.apple.HIToolbox                     0x00007fff8ed6b8bb MenuSelectCore(MenuData*, Point, double, unsigned int, OpaqueMenuRef**, unsigned short*) + 605
    34  com.apple.HIToolbox                     0x00007fff8ed6aec8 _HandleMenuSelection2 + 565
    35  com.apple.AppKit                        0x00007fff88cf98c6 _NSHandleCarbonMenuEvent + 245
    36  com.apple.AppKit                        0x00007fff88c1ba9f _DPSNextEvent + 2073
    37  com.apple.AppKit                        0x00007fff88c1adf2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    38  com.apple.AppKit                        0x00007fff88c121a3 -[NSApplication run] + 517
    39  com.apple.AppKit                        0x00007fff88bb6bd6 NSApplicationMain + 869
    40  libdyld.dylib                           0x00007fff8883b7e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8be9dd16 kevent + 10
    1   libdispatch.dylib                       0x00007fff8b2e8dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff8b2e89ee _dispatch_mgr_thread + 54
    Thread 2:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff8be9b686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8be9ac42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8e0b9233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8e0be916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8e0be0e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x00007fff83b64546 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
    6   com.apple.Foundation                    0x00007fff83bc2562 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff89fb5772 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff89fa21a1 thread_start + 13
    Thread 3:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x00007fff8be9d0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff89fb9fb9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00007fff8d92eb66 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore                0x00007fff8db51bfa JSC::BlockAllocator::blockFreeingThreadMain() + 90
    4   com.apple.JavaScriptCore                0x00007fff8db6725f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x00007fff89fb5772 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff89fa21a1 thread_start + 13
    Thread 4:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff8be9d0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff89fb9fb9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00007fff8dab49d4 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x00007fff8dab48b6 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x00007fff8db6725f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x00007fff89fb5772 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff89fa21a1 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff8be9b686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8be9ac42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8e0b9233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8e0be916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8e0be0e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x00007fff83bc77ee -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
    6   com.apple.Foundation                    0x00007fff83b601aa -[NSRunLoop(NSRunLoop) run] + 74
    7   com.apple.CoreMessage                   0x00007fff8cf7dd57 +[_NSSocket _runIOThread] + 77
    8   com.apple.Foundation                    0x00007fff83bc2562 __NSThread__main__ + 1345
    9   libsystem_c.dylib                       0x00007fff89fb5772 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff89fa21a1 thread_start + 13
    Thread 6:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff8be9d322 __select + 10
    1   com.apple.CoreFoundation                0x00007fff8e0fdf46 __CFSocketManager + 1302
    2   libsystem_c.dylib                       0x00007fff89fb5772 _pthread_start + 327
    3   libsystem_c.dylib                       0x00007fff89fa21a1 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff8be9d6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff89fb7f1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff89fb7ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff89fa2191 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff8be9d6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff89fb7f1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff89fb7ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff89fa2191 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff8be9d6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff89fb7f1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff89fb7ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff89fa2191 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff5211e218  rdx: 0x0000000000000000
      rdi: 0x0000000000000c07  rsi: 0x0000000000000006  rbp: 0x00007fff5211e240  rsp: 0x00007fff5211e218
       r8: 0x00007fff74393278   r9: 0x000000000000000d  r10: 0x0000000020000000  r11: 0x0000000000000206
      r12: 0x00007fff5211e3a0  r13: 0x00007fb33bbe43d0  r14: 0x00007fff74394180  r15: 0x00007fff5211e280
      rip: 0x00007fff8be9d212  rfl: 0x0000000000000206  cr2: 0x00007fff7438cff0
    Logical CPU: 0
    Binary Images:
           0x10dae0000 -        0x10de7ffff  com.apple.mail (6.6 - 1510) <49BBA752-FE19-381B-BD78-1394141471D5> /Applications/Mail.app/Contents/MacOS/Mail
           0x10f5c8000 -        0x10f5cafff  libanonymous.2.so (166) <6417EA9E-4202-31DA-A086-B58F1E92C931> /usr/lib/sasl2/libanonymous.2.so
           0x10f5cf000 -        0x10f5d2fff  libcrammd5.2.so (166) <866C8DD4-5086-376A-BFC7-897A40327DB4> /usr/lib/sasl2/libcrammd5.2.so
           0x10f5d8000 -        0x10f5dafff  apop.so (169) <2A1CAD32-5734-3D4E-868B-E773DCD192B5> /usr/lib/sasl2/apop.so
           0x10f5de000 -        0x10f5f2fff  dhx.so (169) <3C4D7E51-F30B-3A5B-9BB6-4426EC607E10> /usr/lib/sasl2/dhx.so
           0x10fef2000 -        0x10fefbff7  digestmd5WebDAV.so (169) <D1EF0A0E-92FA-321F-9445-DD08A64C2493> /usr/lib/sasl2/digestmd5WebDAV.so
           0x10ff04000 -        0x10ff0dff7  libdigestmd5.2.so (166) <F2344A08-F032-35D3-9EBB-F147D4100517> /usr/lib/sasl2/libdigestmd5.2.so
           0x10ff13000 -        0x10ff18fff  libgssapiv2.2.so (166) <83A21AF3-FB42-3ACC-B6ED-26B23388C4F4> /usr/lib/sasl2/libgssapiv2.2.so
           0x10ff1d000 -        0x10ff1ffff  login.so (166) <1F868238-FB26-3477-B31C-67DB400D6F68> /usr/lib/sasl2/login.so
           0x10ff23000 -        0x10ff28fff  libntlm.so (166) <82608FB8-E225-39FF-BC83-B9D3F89D7CEC> /usr/lib/sasl2/libntlm.so
           0x10ff2d000 -        0x10ff34fff  libotp.2.so (166) <2AE53E63-A826-3E20-9B4D-476CC712410D> /usr/lib/sasl2/libotp.2.so
           0x110089000 -        0x11008bfff  libplain.2.so (166) <074D7604-3435-3E01-A86B-FF102001FC5B> /usr/lib/sasl2/libplain.2.so
           0x11008f000 -        0x110093fff  libpps.so (169) <3C150ECF-0D94-3DBE-8AB6-7B0070700699> /usr/lib/sasl2/libpps.so
           0x1103dc000 -        0x1103dffff  mschapv2.so (169) <9DAC741E-6BB8-3DFA-85AD-532EB20E780B> /usr/lib/sasl2/mschapv2.so
           0x1103e4000 -        0x110411fff  com.apple.DirectoryService.PasswordServerFramework (10.8 - 27.1) <81194DEC-984F-3099-B537-F70394F8492C> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
           0x110429000 -        0x11042bfff  p

  • RMAN 11gr2 ORA-00308 when dulplicate database from active

    Hi,
    I'm trying to clone a production database (Oracle 11.2.0.3) from HP-UX IA64 to Solaris 10 (Sparc 64) (source on Filesystem, target on ASM)
    the previous steps was done (same oracle software installation, same patches, sqlnet comunication, etc.)
    but the RMAN fails at end of the process:
    Recovery Manager: Release 11.2.0.3.0 - Production on Wed Aug 22 09:44:34 2012
    Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.
    connected to target database: SIN (DBID=634625013)
    connected to recovery catalog database
    connected to auxiliary database: SIN (not mounted)
    RMAN> run
    +2> {+
    +3> allocate channel c1 type disk;+
    +4> allocate channel c2 type disk;+
    +5> allocate channel c3 type disk;+
    +6> allocate channel c4 type disk;+
    +7> allocate auxiliary channel a1 type disk;+
    +8> allocate auxiliary channel a2 type disk;+
    +9> set newname for datafile 1 to '+DG_DATA';+
    +10> set newname for datafile 2 to '+DG_DATA';+
    +11> set newname for datafile 3 to '+DG_DATA';+
    +12> set newname for datafile 4 to '+DG_DATA';+
    +13> set newname for datafile 5 to '+DG_DATA';+
    +14> set newname for datafile 6 to '+DG_DATA';+
    +15> set newname for datafile 7 to '+DG_DATA';+
    +16> set newname for datafile 8 to '+DG_DATA';+
    +17> set newname for datafile 9 to '+DG_DATA';+
    +18> set newname for datafile 10 to '+DG_DATA';+
    +... to...+
    +398> set newname for datafile 390 to '+DG_DATA';+
    +399> set newname for datafile 391 to '+DG_DATA';+
    +400> duplicate target database to "sin" from active database nofilenamecheck+
    +401> DB_FILE_NAME_CONVERT=('/u10/oradata/sin/','+DG_DATA/',+
    +402> '/u11/oradata/sin/','+DG_DATA/',+
    +403> '/u07/oradata/sin/','+DG_DATA/',+
    +404> '/u08/oradata/sin/','+DG_DATA/',+
    +405> '/u09/oradata/sin/','+DG_DATA/');+
    +406> }+
    +407>+
    starting full resync of recovery catalog
    full resync complete
    allocated channel: c1
    channel c1: SID=1787 device type=DISK
    allocated channel: c2
    channel c2: SID=2406 device type=DISK
    allocated channel: c3
    channel c3: SID=850 device type=DISK
    allocated channel: c4
    channel c4: SID=1146 device type=DISK
    allocated channel: a1
    channel a1: SID=1325 device type=DISK
    allocated channel: a2
    channel a2: SID=1514 device type=DISK
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    +...+
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    Starting Duplicate Db at 22-AUG-12
    contents of Memory Script:
    +{+
    sql clone "create spfile from memory";
    +}+
    executing Memory Script
    sql statement: create spfile from memory
    contents of Memory Script:
    +{+
    shutdown clone immediate;
    startup clone nomount;
    +}+
    executing Memory Script
    Oracle instance shut down
    connected to auxiliary database (not started)
    Oracle instance started
    Total System Global Area    7317790720 bytes
    Fixed Size                     2173456 bytes
    Variable Size               3808433648 bytes
    Database Buffers            3489660928 bytes
    Redo Buffers                  17522688 bytes
    allocated channel: a1
    channel a1: SID=1325 device type=DISK
    allocated channel: a2
    channel a2: SID=758 device type=DISK
    contents of Memory Script:
    +{+
    sql clone "alter system set  control_files =
    +''+DG_DATA/sin/controlfile/current.511.791978153'', ''+DG_DATA/sin/controlfile/current.562.791978153'' comment=+
    +''Set by RMAN'' scope=spfile";+
    +''+DG_DATA/sin/controlfile/current.511.791978153'', ''+DG_DATA/sin/controlfile/current.562.791978153'' comment=+
    +''Set by RMAN'' scope=spfile";+
    sql clone "alter system set  db_name =
    +''SIN'' comment=+
    +''Modified by RMAN duplicate'' scope=spfile";+
    +sql clone "alter system set db_unique_name =+
    +''SIN'' comment=+
    +''Modified by RMAN duplicate'' scope=spfile";+
    +shutdown clone immediate;+
    +startup clone force nomount+
    +backup as copy current controlfile auxiliary format '+DG_DATA/sin/controlfile/current.512.791978153';+
    +restore clone controlfile to '+DG_DATA/sin/controlfile/current.625.791978153' from+
    +'+DG_DATA/sin/controlfile/current.512.791978153';+
    +sql clone "alter system set control_files =+
    +''+DG_DATA/sin/controlfile/current.512.791978153'', ''+DG_DATA/sin/controlfile/current.625.791978153'' comment=+
    +''Set by RMAN'' scope=spfile";+
    +shutdown clone immediate;+
    +startup clone nomount;+
    +alter clone database mount;+
    +}+
    +executing Memory Script+
    +sql statement: alter system set control_files = ''+DG_DATA/sin/controlfile/current.511.791978153'', ''+DG_DATA/sin/controlfile/cu+
    +rrent.562.791978153'' comment= ''Set by RMAN'' scope=spfile+
    +sql statement: alter system set db_name = ''SIN'' comment= ''Modified by RMAN duplicate'' scope=spfile+
    +sql statement: alter system set db_unique_name = ''SIN'' comment= ''Modified by RMAN duplicate'' scope=spfile+
    +Oracle instance shut down+
    +Oracle instance started+
    +Total System Global Area 7317790720 bytes+
    +Fixed Size 2173456 bytes+
    +Variable Size 3808433648 bytes+
    +Database Buffers 3489660928 bytes+
    +Redo Buffers 17522688 bytes+
    +allocated channel: a1+
    +channel a1: SID=1514 device type=DISK+
    +allocated channel: a2+
    +channel a2: SID=2081 device type=DISK+
    +Starting backup at 22-AUG-12+
    +channel c1: starting datafile copy+
    +copying current control file+
    +output file name=/u06/tmpapp/rmanbkps/snapcf_sin.f tag=TAG20120822T094657 RECID=49 STAMP=791977621+
    +channel c1: datafile copy complete, elapsed time: 00:00:01+
    +Finished backup at 22-AUG-12+
    +Starting restore at 22-AUG-12+
    +channel a2: skipped, AUTOBACKUP already found+
    +channel a1: copied control file copy+
    +Finished restore at 22-AUG-12+
    +sql statement: alter system set control_files = ''+DG_DATA/sin/controlfile/current.512.791978153'', ''+DG_DATA/sin/controlfile/cu+
    +rrent.625.791978153'' comment= ''Set by RMAN'' scope=spfile+
    +Oracle instance shut down+
    +connected to auxiliary database (not started)+
    +Oracle instance started+
    +Total System Global Area 7317790720 bytes+
    +Fixed Size 2173456 bytes+
    +Variable Size 3808433648 bytes+
    +Database Buffers 3489660928 bytes+
    +Redo Buffers 17522688 bytes+
    +allocated channel: a1+
    +channel a1: SID=1514 device type=DISK+
    +allocated channel: a2+
    +channel a2: SID=2081 device type=DISK+
    +database mounted+
    +Using previous duplicated file +DG_DATA/sin/datafile/system.666.791914845 for datafile 1 with checkpoint SCN of 46164275052+
    +Using previous duplicated file +DG_DATA/sin/datafile/undotbs1.678.791913821 for datafile 2 with checkpoint SCN of 46164227408+
    +...+
    +Using previous duplicated file +DG_DATA/sin/datafile/med_dat.498.791939115 for datafile 389 with checkpoint SCN of 46165353395+
    +Using previous duplicated file +DG_DATA/sin/datafile/mytablespace.674.791914359 for datafile 390 with checkpoint SCN of 46164253329+
    +Using previous duplicated file +DG_DATA/sin/datafile/med_dat.499.791939115 for datafile 391 with checkpoint SCN of 46165353396+
    +contents of Memory Script:+
    +{+
    +sql 'alter system archive log current';+
    +}+
    +executing Memory Script+
    +sql statement: alter system archive log current+
    +contents of Memory Script:+
    +{+
    +backup as copy reuse+
    +archivelog like "/u06/app/oracle/admin/sin/arch/SIN_0544862197_0001_0000065832.ARC" auxiliary format+
    +"+DG_DATA" archivelog like+
    +"/u06/app/oracle/admin/sin/arch/SIN_0544862197_0001_0000065833.ARC" auxiliary format+
    +"+DG_DATA" archivelog like+
    +"/u06/app/oracle/admin/sin/arch/SIN_0544862197_0001_0000065834.ARC" auxiliary format+
    +"+DG_DATA" archivelog like+
    +"/u06/app/oracle/admin/sin/arch/SIN_0544862197_0001_0000065835.ARC" auxiliary format+
    +"+DG_DATA" archivelog like+
    +"/u06/app/oracle/admin/sin/arch/SIN_0544862197_0001_0000065836.ARC" auxiliary format+
    +"+DG_DATA" ;+
    +catalog clone start with "+DG_DATA";+
    +catalog clone datafilecopy "+DG_DATA/sin/datafile/system.666.791914845",+
    +"+DG_DATA/sin/datafile/undotbs1.678.791913821",+
    +"+DG_DATA/sin/datafile/undotbs1.679.791913821",+
    +"+DG_DATA/sin/datafile/undotbs1.689.791913821",+
    +"+DG_DATA/sin/datafile/undotbs1.690.791913821",+
    +"+DG_DATA/sin/datafile/undotbs1.677.791914357",+
    +"+DG_DATA/sin/datafile/drsys.621.791939555",+
    +"+DG_DATA/sin/datafile/high_idx.663.791914889",+
    +"+DG_DATA/sin/datafile/tools.507.791939555",+
    +...+
    +"+DG_DATA/sin/datafile/bkptemp.497.791939113",+
    +"+DG_DATA/sin/datafile/med_dat.498.791939115",+
    +"+DG_DATA/sin/datafile/mytablespace.674.791914359",+
    +"+DG_DATA/sin/datafile/med_dat.499.791939115";+
    +switch clone datafile 1 to datafilecopy+
    +"+DG_DATA/sin/datafile/system.666.791914845";+
    +switch clone datafile 2 to datafilecopy+
    +"+DG_DATA/sin/datafile/undotbs1.678.791913821";+
    +switch clone datafile 3 to datafilecopy+
    +...+
    +"+DG_DATA/sin/datafile/med_dat.498.791939115";+
    +switch clone datafile 390 to datafilecopy+
    +"+DG_DATA/sin/datafile/mytablespace.674.791914359";+
    +switch clone datafile 391 to datafilecopy+
    +"+DG_DATA/sin/datafile/med_dat.499.791939115";+
    +}+
    +executing Memory Script+
    +Starting backup at 22-AUG-12+
    +channel c1: starting archived log copy+
    +input archived log thread=1 sequence=65832 RECID=48339 STAMP=791913640+
    +channel c2: starting archived log copy+
    +input archived log thread=1 sequence=65833 RECID=48340 STAMP=791933223+
    +channel c3: starting archived log copy+
    +input archived log thread=1 sequence=65834 RECID=48341 STAMP=791939052+
    +channel c4: starting archived log copy+
    +input archived log thread=1 sequence=65835 RECID=48342 STAMP=791962351+
    +output file name=+DG_DATA/sin/archivelog/2012_08_22/thread_1_seq_65834.515.791978259 RECID=0 STAMP=0+
    +channel c3: archived log copy complete, elapsed time: 00:00:35+
    +channel c3: starting archived log copy+
    +input archived log thread=1 sequence=65836 RECID=48343 STAMP=791977692+
    +output file name=+DG_DATA/sin/archivelog/2012_08_22/thread_1_seq_65832.513.791978259 RECID=0 STAMP=0+
    +channel c1: archived log copy complete, elapsed time: 00:00:51+
    +output file name=+DG_DATA/sin/archivelog/2012_08_22/thread_1_seq_65833.514.791978259 RECID=0 STAMP=0+
    +channel c2: archived log copy complete, elapsed time: 00:01:41+
    +output file name=+DG_DATA/sin/archivelog/2012_08_22/thread_1_seq_65836.581.791978295 RECID=0 STAMP=0+
    +channel c3: archived log copy complete, elapsed time: 00:01:06+
    +output file name=+DG_DATA/sin/archivelog/2012_08_22/thread_1_seq_65835.516.791978259 RECID=0 STAMP=0+
    +channel c4: archived log copy complete, elapsed time: 00:01:41+
    +Finished backup at 22-AUG-12+
    +searching for all files that match the pattern +DG_DATA+
    +List of Files Unknown to the Database+
    +=====================================+
    +File Name: +dg_data/SIN/ARCHIVELOG/2012_08_22/thread_1_seq_65832.513.791978259+
    +File Name: +dg_data/SIN/ARCHIVELOG/2012_08_22/thread_1_seq_65833.514.791978259+
    +File Name: +dg_data/SIN/ARCHIVELOG/2012_08_22/thread_1_seq_65834.515.791978259+
    +...+
    +File Name: +dg_data/SIN/DATAFILE/XDB.508.791939555+
    +File Name: +dg_data/SIN/DATAFILE/DRSYS.621.791939555+
    +File Name: +dg_data/SIN/CONTROLFILE/Current.691.791913737+
    +File Name: +dg_data/SIN/CONTROLFILE/Current.692.791913737+
    +File Name: +dg_data/SIN/CONTROLFILE/Current.703.791913737+
    +File Name: +dg_data/SIN/CONTROLFILE/Current.704.791913737+
    +File Name: +dg_data/SIN/CONTROLFILE/Current.511.791978153+
    +File Name: +dg_data/SIN/CONTROLFILE/Current.562.791978153+
    +File Name: +dg_data/ASM/ASMPARAMETERFILE/REGISTRY.253.790861037+
    +cataloging files...+
    +cataloging done+
    +List of Cataloged Files+
    +=======================+
    +File Name: +dg_data/SIN/ARCHIVELOG/2012_08_22/thread_1_seq_65832.513.791978259+
    +File Name: +dg_data/SIN/ARCHIVELOG/2012_08_22/thread_1_seq_65833.514.791978259+
    +File Name: +dg_data/SIN/ARCHIVELOG/2012_08_22/thread_1_seq_65834.515.791978259+
    +File Name: +dg_data/SIN/ARCHIVELOG/2012_08_22/thread_1_seq_65835.516.791978259+
    +...+
    +File Name: +dg_data/SIN/DATAFILE/XDB.508.791939555+
    +File Name: +dg_data/SIN/DATAFILE/DRSYS.621.791939555+
    +File Name: +dg_data/SIN/CONTROLFILE/Current.703.791913737+
    +File Name: +dg_data/SIN/CONTROLFILE/Current.704.791913737+
    +List of Files Which Where Not Cataloged+
    +=======================================+
    +File Name: +dg_data/SIN/CONTROLFILE/Current.691.791913737+
    +RMAN-07517: Reason: The file header is corrupted+
    +File Name: +dg_data/SIN/CONTROLFILE/Current.692.791913737+
    +RMAN-07517: Reason: The file header is corrupted+
    +File Name: +dg_data/SIN/CONTROLFILE/Current.511.791978153+
    +RMAN-07517: Reason: The file header is corrupted+
    +File Name: +dg_data/SIN/CONTROLFILE/Current.562.791978153+
    +RMAN-07517: Reason: The file header is corrupted+
    +File Name: +dg_data/ASM/ASMPARAMETERFILE/REGISTRY.253.790861037+
    +RMAN-07518: Reason: Foreign database file DBID: 0 Database Name:+
    +cataloged datafile copy+
    +datafile copy file name=+DG_DATA/sin/datafile/system.666.791914845 RECID=442 STAMP=791978374+
    +cataloged datafile copy+
    +datafile copy file name=+DG_DATA/sin/datafile/undotbs1.678.791913821 RECID=443 STAMP=791978375+
    +cataloged datafile copy+
    +datafile copy file name=+DG_DATA/sin/datafile/undotbs1.679.791913821 RECID=444 STAMP=791978375+
    +cataloged datafile copy+
    +datafile copy file name=+DG_DATA/sin/datafile/undotbs1.689.791913821 RECID=445 STAMP=791978375+
    +cataloged datafile copy+
    +...+
    +datafile copy file name=+DG_DATA/sin/datafile/med_dat.498.791939115 RECID=830 STAMP=791978408+
    +cataloged datafile copy+
    +datafile copy file name=+DG_DATA/sin/datafile/mytablespace.674.791914359 RECID=831 STAMP=791978408+
    +cataloged datafile copy+
    +datafile copy file name=+DG_DATA/sin/datafile/med_dat.499.791939115 RECID=832 STAMP=791978408+
    +datafile 1 switched to datafile copy+
    +input datafile copy RECID=442 STAMP=791978374 file name=+DG_DATA/sin/datafile/system.666.791914845+
    +datafile 2 switched to datafile copy+
    +input datafile copy RECID=443 STAMP=791978375 file name=+DG_DATA/sin/datafile/undotbs1.678.791913821+
    +datafile 3 switched to datafile copy+
    +input datafile copy RECID=444 STAMP=791978375 file name=+DG_DATA/sin/datafile/undotbs1.679.791913821+
    +datafile 4 switched to datafile copy+
    +input datafile copy RECID=445 STAMP=791978375 file name=+DG_DATA/sin/datafile/undotbs1.689.791913821+
    +...+
    +datafile 389 switched to datafile copy+
    +input datafile copy RECID=830 STAMP=791978408 file name=+DG_DATA/sin/datafile/med_dat.498.791939115+
    +datafile 390 switched to datafile copy+
    +input datafile copy RECID=831 STAMP=791978408 file name=+DG_DATA/sin/datafile/mytablespace.674.791914359+
    +datafile 391 switched to datafile copy+
    +input datafile copy RECID=832 STAMP=791978408 file name=+DG_DATA/sin/datafile/med_dat.499.791939115+
    +contents of Memory Script:+
    +{+
    +set until scn 46167049411;+
    +recover+
    +clone database+
    +delete archivelog+
    +;+
    +}+
    +executing Memory Script+
    +executing command: SET until clause+
    +Starting recover at 22-AUG-12+
    +starting media recovery+
    +archived log for thread 1 with sequence 65832 is already on disk as file +DG_DATA/sin/archivelog/2012_08_22/thread_1_seq_65832.513.7+
    +91978259+
    +archived log for thread 1 with sequence 65833 is already on disk as file +DG_DATA/sin/archivelog/2012_08_22/thread_1_seq_65833.514.7+
    +91978259+
    +archived log for thread 1 with sequence 65834 is already on disk as file +DG_DATA/sin/archivelog/2012_08_22/thread_1_seq_65834.515.7+
    +91978259+
    +archived log for thread 1 with sequence 65835 is already on disk as file +DG_DATA/sin/archivelog/2012_08_22/thread_1_seq_65835.516.7+
    +91978259+
    +archived log for thread 1 with sequence 65836 is already on disk as file +DG_DATA/sin/archivelog/2012_08_22/thread_1_seq_65836.581.7+
    +91978295+
    +archived log file name=+DG_DATA/sin/archivelog/2012_08_22/thread_1_seq_65832.513.791978259 thread=1 sequence=65832+
    +released channel: c1+
    +released channel: c2+
    +released channel: c3+
    +released channel: c4+
    +Oracle Error:+
    +ORA-01547: warning: RECOVER succeeded but OPEN RESETLOGS would get error below+
    +ORA-01194: file 1 needs more recovery to be consistent+
    +ORA-01110: data file 1: '+DG_DATA/sin/datafile/system.666.791914845'+
    *+released channel: a1+*
    *+released channel: a2+*
    *+RMAN-00571: ===========================================================+*
    *+RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============+*
    *+RMAN-00571: ===========================================================+*
    *+RMAN-03002: failure of Duplicate Db command at 08/22/2012 09:52:27+*
    *+RMAN-05501: aborting duplication of target database+*
    *+RMAN-03015: error occurred in stored script Memory Script+*
    *+RMAN-11003: failure during parse/execution of SQL statement: alter database recover logfile '+DG_DATA/sin/archivelog/2012_08_22/thre+*
    *+ad_1_seq_65832.513.791978259'+*
    *+ORA-00308: cannot open archived log '+DG_DATA/sin/archivelog/2012_08_22/thread_1_seq_65832.513.791978259'+*
    +Recovery Manager complete.+
    the error is always the same, a previous backup with RMAN was taken on tape on the source database (production).
    Please help me to find what is wrong here!!

    Hi mseberg
    that's exactly i'm doing:
    1. Create an Oracle Password File for the Auxiliary Database
    a. done, passwd file created*
    2. Create the Directory Structure on the remote server
    a. done, all the admin structure wa created.*
    3. Oracle Net Setup ( you need an entry for the CLONE in your TNSNAMES.ORA on both servers ) ( I use SID_LIST_LISTENER entry for static )
    a. done, i have the entries working on my tnsnames.ora (source and target with static listeners)*
    4. Create an Initialization Parameter File for the Auxiliary Instance ( I use Parameters DB_FILE_NAME_CONVERT and LOG_FILE_NAME_CONVERT to change locations)
    a. done, this is my initialization file:*
    *.audit_file_dest='/u01/app/oracle/admin/sin/adump'*
    *.audit_trail='db'*
    *.compatible='11.2.0.0.0'*
    *.db_block_size=8192*
    *.db_create_file_dest='DG_DATA'+*
    *.db_domain=''*
    *.db_files=2048*
    *.db_name='sin'*
    *.db_recovery_file_dest='DG_DATA'+*
    *.db_recovery_file_dest_size=20G*
    *.diagnostic_dest='/u01/app/oracle'*
    *.dispatchers='(PROTOCOL=TCP) (SERVICE=sinXDB)'*
    *.log_archive_format='%t_%s_%r.dbf'*
    *.memory_target=7340032000*
    *.open_cursors=300*
    *.processes=2000*
    *.remote_login_passwordfile='EXCLUSIVE'*
    *.sessions=2205*
    *.undo_tablespace='UNDOTBS1'*
    DB_FILE_NAME_CONVERT=('/u10/oradata/sin/','DG_DATA/',+*
    +'/u11/oradata/sin/','+DG_DATA/',+
    +'/u07/oradata/sin/','+DG_DATA/',+
    +'/u08/oradata/sin/','+DG_DATA/',+
    +'/u09/oradata/sin/','+DG_DATA/')+
    LOG_FILE_NAME_CONVERT=('/u04/oradata/sin/','DG_DATA/',+*
    +'/u05/oradata/sin/','+DG_DATA/',+
    +'/u03/oradata/sin/','+DG_DATA/',+
    +'/u02/oradata/sin/','+DG_DATA/')+
    and this is my command from RMAN:
    run*
    *+{+*
    allocate channel c1 type disk;*
    allocate channel c2 type disk;*
    allocate channel c3 type disk;*
    allocate channel c4 type disk;*
    allocate auxiliary channel a1 type disk;*
    allocate auxiliary channel a2 type disk;*
    set newname for datafile 1 to 'DG_DATA';+*
    set newname for datafile 2 to 'DG_DATA';+*
    set newname for datafile 3 to 'DG_DATA';+*
    set newname for datafile 4 to 'DG_DATA';+*
    set newname for datafile 5 to 'DG_DATA';+*
    set newname for datafile 6 to 'DG_DATA';+*
    set newname for datafile 7 to 'DG_DATA';+*
    set newname for datafile 8 to 'DG_DATA';+*
    set newname for datafile 9 to 'DG_DATA';+*
    set newname for datafile 10 to 'DG_DATA';+*
    +...+
    set newname for datafile 390 to 'DG_DATA';+*
    set newname for datafile 391 to 'DG_DATA';+*
    duplicate target database to "sin" from active database nofilenamecheck*
    DB_FILE_NAME_CONVERT=('/u10/oradata/sin/','DG_DATA/',+*
    +'/u11/oradata/sin/','+DG_DATA/',+
    +'/u07/oradata/sin/','+DG_DATA/',+
    +'/u08/oradata/sin/','+DG_DATA/',+
    +'/u09/oradata/sin/','+DG_DATA/');+
    +}+
    do you think the problem may be in the name of the database?, I am using the same name in the auxiliary
    and when I get the error, I have the same dbid in both databases (source and destination)
    Thanks
    MM

  • Anyone using 4.0 Beta 5 on MAC and noticing Adobe Flash creating boxes when moving away from site where flash is used?

    Just upgraded to FF 4.0 beta 5 - noticing that when I visit a new page that uses Flash, I navigate away or to other sites and the box that Flash used is blanked out and super-imposes itself over the page. That means when I move from the flash page, the only thing I can do it close the browser and reopen.
    Yes, I am using 10.1 (or whatever the latest flash is for my MAC - that also has all its updates). Reverted back to FF 4.0 beta 4 and NO PROBLEM using the older beta version. HELP.

    That sounds like a known problem on OS X. From the known issues section of the [http://www.mozilla.com/en-US/firefox/4.0b5/releasenotes/ Firefox 4 Beta 5 Release Notes]
    "Plugin content can be rendered incorrectly leaving blank white squares over web content. Scrolling or switching tabs will often fix the problem, although sometimes you must close the tab which contains that plugin content (see [https://bugzilla.mozilla.org/show_bug.cgi?id=592453 bug 592453])"
    This should be fixed in the next beta.

  • I get no browser home page; no favorites/bookmarks; no back buttons; no tools, etc. just a generic Firefox bar with preset sites which go nowhere when clicked. I have windows vista home premium. Firefox works fine on my desktop

    Upgraded to latest Firefox version on my laptop w/ Vista Home Premium and get no browser page; no back buttons; no bookmarks/favorites; no address bar...nothing like a typical browser page...all I have is a cumbersome Firefox bar that has preset sites that do nothing when clicked.
    FF worked fine before I "upgraded". Want 3.5 back
    == This happened ==
    Every time Firefox opened
    == about 5 days ago

    I followed your instructions and installed Developer Suite 10G on Windows Vista Home Premium edition. I have Oracle 11G DB running on the same machine.
    Two points, Steve:
    1. When I tried to set the maximum virtual memory to 6110 an error message displayed from Windows and told me that I can't set the maximum virtual memory to more than 4096. I set it to 4090 and it worked and I got nothing wrong during the installation process.
    2. After installing JInitiator and disabling Java on Firefox I called the http://127.0.0.1:8889/forms/frmservlet page and everything seemed to be OK because the Oracle Forms Services logo appeared and then a successful installation message appeared , but as I clicked (ok) to continue a gray screen appeared inside the browser (like the one displayed when you try to run a Java applet inside a browser) and then I wait to death till something appears but sadly nothing. I just get a blank gray screen inside my Firefox browser.
    Do you have any idea what to do to solve the problem?
    Regards

  • Error when executing jar from command window pla help

    Hello
    I have a project which calls a webservice, I am using Jdeveloper 10.1.3.4
    I deployed the project in a jar file and included all the necessary libraries in it,
    but when executing the jar from command window I am getting the exceptions below
    the statement which cause the error is : PROXY= new JoPayWebServiceClient();
    please help
    Exception in thread "main" java.lang.NoClassDefFoundError
    at oracle.j2ee.ws.common.encoding.soap.StandardSOAPTypeMappings.class$(S
    tandardSOAPTypeMappings.java:125)
    at oracle.j2ee.ws.common.encoding.soap.StandardSOAPTypeMappings.<init>(S
    tandardSOAPTypeMappings.java:558)
    at oracle.j2ee.ws.client.BasicService.createSoapMappings(BasicService.ja
    va:259)
    at oracle.j2ee.ws.client.BasicService.createStandardTypeMappingRegistry(
    BasicService.java:236)
    at has.proxy.runtime.JoPayWebServiceService_SerializerRegistry.getRegist
    ry(JoPayWebServiceService_SerializerRegistry.java:26)
    at has.proxy.runtime.JoPayWebServiceService_Impl.<init>(JoPayWebServiceS
    ervice_Impl.java:26)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct
    orAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC
    onstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
    at java.lang.Class.newInstance0(Class.java:350)
    at java.lang.Class.newInstance(Class.java:303)
    at oracle.j2ee.ws.client.ServiceFactoryImpl.createService(ServiceFactory
    Impl.java:92)
    at oracle.j2ee.ws.client.ServiceFactoryImpl.loadService(ServiceFactoryIm
    pl.java:121)
    at has.proxy.JoPayWebServiceClient.<init>(JoPayWebServiceClient.java:18)
    at moict.Main.confirmPayment(Main.java:142)
    at moict.Main.main(Main.java:93)
    Caused by: java.lang.ClassNotFoundException: javax.activation.DataHandler
    at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:164)
    ... 17 more
    C:\>

    Hi Arun
    I added all the jars I found in jdeveloper log as you told me , but still I have this error:-
    standard type mapping initialization error: javax.xml.rpc.JAXRPCException: javax
    .xml.soap.SOAPException: Unable to create SOAP Factory: Provider com.sun.xml.mes
    saging.saaj.soap.ver1_1.SOAPFactory1_1Impl not found
    at oracle.j2ee.ws.client.BasicService.createLiteralMappings(BasicService
    .java:282)
    at oracle.j2ee.ws.client.BasicService.createStandardTypeMappingRegistry(
    BasicService.java:244)
    at has.proxy.runtime.JoPayWebServiceService_SerializerRegistry.getRegist
    ry(JoPayWebServiceService_SerializerRegistry.java:26)
    at has.proxy.runtime.JoPayWebServiceService_Impl.<init>(JoPayWebServiceS
    ervice_Impl.java:26)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct
    orAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC
    onstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
    at java.lang.Class.newInstance0(Class.java:350)
    at java.lang.Class.newInstance(Class.java:303)
    at oracle.j2ee.ws.client.ServiceFactoryImpl.createService(ServiceFactory
    Impl.java:92)
    at oracle.j2ee.ws.client.ServiceFactoryImpl.loadService(ServiceFactoryIm
    pl.java:121)
    at has.proxy.JoPayWebServiceClient.<init>(JoPayWebServiceClient.java:18)
    at moict.Main.confirmPayment(Main.java:142)
    at moict.Main.main(Main.java:93)
    CAUSE:
    javax.xml.rpc.JAXRPCException: javax.xml.soap.SOAPException: Unable to create SO
    AP Factory: Provider com.sun.xml.messaging.saaj.soap.ver1_1.SOAPFactory1_1Impl n
    ot found
    at oracle.j2ee.ws.client.BasicService.createLiteralMappings(BasicService
    .java:282)
    at oracle.j2ee.ws.client.BasicService.createStandardTypeMappingRegistry(
    BasicService.java:244)
    at has.proxy.runtime.JoPayWebServiceService_SerializerRegistry.getRegist
    ry(JoPayWebServiceService_SerializerRegistry.java:26)
    at has.proxy.runtime.JoPayWebServiceService_Impl.<init>(JoPayWebServiceS
    ervice_Impl.java:26)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct
    orAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC
    onstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
    at java.lang.Class.newInstance0(Class.java:350)
    at java.lang.Class.newInstance(Class.java:303)
    at oracle.j2ee.ws.client.ServiceFactoryImpl.createService(ServiceFactory
    Impl.java:92)
    at oracle.j2ee.ws.client.ServiceFactoryImpl.loadService(ServiceFactoryIm
    pl.java:121)
    at has.proxy.JoPayWebServiceClient.<init>(JoPayWebServiceClient.java:18)
    at moict.Main.confirmPayment(Main.java:142)
    at moict.Main.main(Main.java:93)
    Caused by: javax.xml.rpc.JAXRPCException: javax.xml.soap.SOAPException: Unable t
    o create SOAP Factory: Provider com.sun.xml.messaging.saaj.soap.ver1_1.SOAPFacto
    ry1_1Impl not found
    at oracle.j2ee.ws.common.encoding.literal.LiteralFragmentSerializer.<ini
    t>(LiteralFragmentSerializer.java:95)
    at oracle.j2ee.ws.common.encoding.literal.LiteralFragmentSerializer.<ini
    t>(LiteralFragmentSerializer.java:62)
    at oracle.j2ee.ws.common.encoding.literal.LiteralAnyElementSerializer.<i
    nit>(LiteralAnyElementSerializer.java:16)
    at oracle.j2ee.ws.common.encoding.literal.StandardLiteralTypeMappings.<i
    nit>(StandardLiteralTypeMappings.java:198)
    at oracle.j2ee.ws.client.BasicService.createLiteralMappings(BasicService
    .java:280)
    ... 14 more
    Caused by: javax.xml.soap.SOAPException: Unable to create SOAP Factory: Provider
    com.sun.xml.messaging.saaj.soap.ver1_1.SOAPFactory1_1Impl not found
    at javax.xml.soap.SOAPFactory.newInstance(SOAPFactory.java:33)
    at oracle.j2ee.ws.common.encoding.literal.LiteralFragmentSerializer.<ini
    t>(LiteralFragmentSerializer.java:93)
    ... 18 more
    CAUSE:
    javax.xml.rpc.JAXRPCException: javax.xml.soap.SOAPException: Unable to create SO
    AP Factory: Provider com.sun.xml.messaging.saaj.soap.ver1_1.SOAPFactory1_1Impl n
    ot found
    at oracle.j2ee.ws.client.BasicService.createLiteralMappings(BasicService
    .java:282)
    at oracle.j2ee.ws.client.BasicService.createStandardTypeMappingRegistry(
    BasicService.java:244)
    at has.proxy.runtime.JoPayWebServiceService_SerializerRegistry.getRegist
    ry(JoPayWebServiceService_SerializerRegistry.java:26)
    at has.proxy.runtime.JoPayWebServiceService_Impl.<init>(JoPayWebServiceS
    ervice_Impl.java:26)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct
    orAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC
    onstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
    at java.lang.Class.newInstance0(Class.java:350)
    at java.lang.Class.newInstance(Class.java:303)
    at oracle.j2ee.ws.client.ServiceFactoryImpl.createService(ServiceFactory
    Impl.java:92)
    at oracle.j2ee.ws.client.ServiceFactoryImpl.loadService(ServiceFactoryIm
    pl.java:121)
    at has.proxy.JoPayWebServiceClient.<init>(JoPayWebServiceClient.java:18)
    at moict.Main.confirmPayment(Main.java:142)
    at moict.Main.main(Main.java:93)
    Caused by: javax.xml.rpc.JAXRPCException: javax.xml.soap.SOAPException: Unable t
    o create SOAP Factory: Provider com.sun.xml.messaging.saaj.soap.ver1_1.SOAPFacto
    ry1_1Impl not found
    at oracle.j2ee.ws.common.encoding.literal.LiteralFragmentSerializer.<ini
    t>(LiteralFragmentSerializer.java:95)
    at oracle.j2ee.ws.common.encoding.literal.LiteralFragmentSerializer.<ini
    t>(LiteralFragmentSerializer.java:62)
    at oracle.j2ee.ws.common.encoding.literal.LiteralAnyElementSerializer.<i
    nit>(LiteralAnyElementSerializer.java:16)
    at oracle.j2ee.ws.common.encoding.literal.StandardLiteralTypeMappings.<i
    nit>(StandardLiteralTypeMappings.java:198)
    at oracle.j2ee.ws.client.BasicService.createLiteralMappings(BasicService
    .java:280)
    ... 14 more
    Caused by: javax.xml.soap.SOAPException: Unable to create SOAP Factory: Provider
    com.sun.xml.messaging.saaj.soap.ver1_1.SOAPFactory1_1Impl not found
    at javax.xml.soap.SOAPFactory.newInstance(SOAPFactory.java:33)
    at oracle.j2ee.ws.common.encoding.literal.LiteralFragmentSerializer.<ini
    t>(LiteralFragmentSerializer.java:93)
    ... 18 more
    Exception in thread "main" java.lang.NullPointerException
    at has.proxy.runtime.JoPayWebServiceService_SerializerRegistry.registerS
    erializer(JoPayWebServiceService_SerializerRegistry.java:45)
    at has.proxy.runtime.JoPayWebServiceService_SerializerRegistry.getRegist
    ry(JoPayWebServiceService_SerializerRegistry.java:32)
    at has.proxy.runtime.JoPayWebServiceService_Impl.<init>(JoPayWebServiceS
    ervice_Impl.java:26)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct
    orAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC
    onstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
    at java.lang.Class.newInstance0(Class.java:350)
    at java.lang.Class.newInstance(Class.java:303)
    at oracle.j2ee.ws.client.ServiceFactoryImpl.createService(ServiceFactory
    Impl.java:92)
    at oracle.j2ee.ws.client.ServiceFactoryImpl.loadService(ServiceFactoryIm
    pl.java:121)
    at has.proxy.JoPayWebServiceClient.<init>(JoPayWebServiceClient.java:18)
    at moict.Main.confirmPayment(Main.java:142)
    at moict.Main.main(Main.java:93)
    C:\>

  • Error when executing jar from command window PLZ HELP URGENT

    Hello
    I have a project which calls a webservice, I am using Jdeveloper 10.1.3.4
    I deployed the project in a jar file and included all the necessary libraries in it,
    but when executing the jar from command window I am getting the exceptions below
    the statement which cause the error is : PROXY= new JoPayWebServiceClient();
    please help
    Exception in thread "main" java.lang.NoClassDefFoundError
    at oracle.j2ee.ws.common.encoding.soap.StandardSOAPTypeMappings.class$(S
    tandardSOAPTypeMappings.java:125)
    at oracle.j2ee.ws.common.encoding.soap.StandardSOAPTypeMappings.<init>(S
    tandardSOAPTypeMappings.java:558)
    at oracle.j2ee.ws.client.BasicService.createSoapMappings(BasicService.ja
    va:259)
    at oracle.j2ee.ws.client.BasicService.createStandardTypeMappingRegistry(
    BasicService.java:236)
    at has.proxy.runtime.JoPayWebServiceService_SerializerRegistry.getRegist
    ry(JoPayWebServiceService_SerializerRegistry.java:26)
    at has.proxy.runtime.JoPayWebServiceService_Impl.<init>(JoPayWebServiceS
    ervice_Impl.java:26)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct
    orAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC
    onstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
    at java.lang.Class.newInstance0(Class.java:350)
    at java.lang.Class.newInstance(Class.java:303)
    at oracle.j2ee.ws.client.ServiceFactoryImpl.createService(ServiceFactory
    Impl.java:92)
    at oracle.j2ee.ws.client.ServiceFactoryImpl.loadService(ServiceFactoryIm
    pl.java:121)
    at has.proxy.JoPayWebServiceClient.<init>(JoPayWebServiceClient.java:18)
    at moict.Main.confirmPayment(Main.java:142)
    at moict.Main.main(Main.java:93)
    Caused by: java.lang.ClassNotFoundException: javax.activation.DataHandler
    at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:164)
    ... 17 more
    C:\>

    I added all required jars but still I get this error :-
    standard type mapping initialization error: javax.xml.rpc.JAXRPCException: javax
    .xml.soap.SOAPException: Unable to create SOAP Factory: Provider com.sun.xml.mes
    saging.saaj.soap.ver1_1.SOAPFactory1_1Impl not found
    at oracle.j2ee.ws.client.BasicService.createLiteralMappings(BasicService
    .java:282)
    at oracle.j2ee.ws.client.BasicService.createStandardTypeMappingRegistry(
    BasicService.java:244)
    at has.proxy.runtime.JoPayWebServiceService_SerializerRegistry.getRegist
    ry(JoPayWebServiceService_SerializerRegistry.java:26)
    at has.proxy.runtime.JoPayWebServiceService_Impl.<init>(JoPayWebServiceS
    ervice_Impl.java:26)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct
    orAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC
    onstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
    at java.lang.Class.newInstance0(Class.java:350)
    at java.lang.Class.newInstance(Class.java:303)
    at oracle.j2ee.ws.client.ServiceFactoryImpl.createService(ServiceFactory
    Impl.java:92)
    at oracle.j2ee.ws.client.ServiceFactoryImpl.loadService(ServiceFactoryIm
    pl.java:121)
    at has.proxy.JoPayWebServiceClient.<init>(JoPayWebServiceClient.java:18)
    at moict.Main.confirmPayment(Main.java:142)
    at moict.Main.main(Main.java:93)
    CAUSE:
    javax.xml.rpc.JAXRPCException: javax.xml.soap.SOAPException: Unable to create SO
    AP Factory: Provider com.sun.xml.messaging.saaj.soap.ver1_1.SOAPFactory1_1Impl n
    ot found
    at oracle.j2ee.ws.client.BasicService.createLiteralMappings(BasicService
    .java:282)
    at oracle.j2ee.ws.client.BasicService.createStandardTypeMappingRegistry(
    BasicService.java:244)
    at has.proxy.runtime.JoPayWebServiceService_SerializerRegistry.getRegist
    ry(JoPayWebServiceService_SerializerRegistry.java:26)
    at has.proxy.runtime.JoPayWebServiceService_Impl.<init>(JoPayWebServiceS
    ervice_Impl.java:26)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct
    orAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC
    onstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
    at java.lang.Class.newInstance0(Class.java:350)
    at java.lang.Class.newInstance(Class.java:303)
    at oracle.j2ee.ws.client.ServiceFactoryImpl.createService(ServiceFactory
    Impl.java:92)
    at oracle.j2ee.ws.client.ServiceFactoryImpl.loadService(ServiceFactoryIm
    pl.java:121)
    at has.proxy.JoPayWebServiceClient.<init>(JoPayWebServiceClient.java:18)
    at moict.Main.confirmPayment(Main.java:142)
    at moict.Main.main(Main.java:93)
    Caused by: javax.xml.rpc.JAXRPCException: javax.xml.soap.SOAPException: Unable t
    o create SOAP Factory: Provider com.sun.xml.messaging.saaj.soap.ver1_1.SOAPFacto
    ry1_1Impl not found
    at oracle.j2ee.ws.common.encoding.literal.LiteralFragmentSerializer.<ini
    t>(LiteralFragmentSerializer.java:95)
    at oracle.j2ee.ws.common.encoding.literal.LiteralFragmentSerializer.<ini
    t>(LiteralFragmentSerializer.java:62)
    at oracle.j2ee.ws.common.encoding.literal.LiteralAnyElementSerializer.<i
    nit>(LiteralAnyElementSerializer.java:16)
    at oracle.j2ee.ws.common.encoding.literal.StandardLiteralTypeMappings.<i
    nit>(StandardLiteralTypeMappings.java:198)
    at oracle.j2ee.ws.client.BasicService.createLiteralMappings(BasicService
    .java:280)
    ... 14 more
    Caused by: javax.xml.soap.SOAPException: Unable to create SOAP Factory: Provider
    com.sun.xml.messaging.saaj.soap.ver1_1.SOAPFactory1_1Impl not found
    at javax.xml.soap.SOAPFactory.newInstance(SOAPFactory.java:33)
    at oracle.j2ee.ws.common.encoding.literal.LiteralFragmentSerializer.<ini
    t>(LiteralFragmentSerializer.java:93)
    ... 18 more
    CAUSE:
    javax.xml.rpc.JAXRPCException: javax.xml.soap.SOAPException: Unable to create SO
    AP Factory: Provider com.sun.xml.messaging.saaj.soap.ver1_1.SOAPFactory1_1Impl n
    ot found
    at oracle.j2ee.ws.client.BasicService.createLiteralMappings(BasicService
    .java:282)
    at oracle.j2ee.ws.client.BasicService.createStandardTypeMappingRegistry(
    BasicService.java:244)
    at has.proxy.runtime.JoPayWebServiceService_SerializerRegistry.getRegist
    ry(JoPayWebServiceService_SerializerRegistry.java:26)
    at has.proxy.runtime.JoPayWebServiceService_Impl.<init>(JoPayWebServiceS
    ervice_Impl.java:26)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct
    orAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC
    onstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
    at java.lang.Class.newInstance0(Class.java:350)
    at java.lang.Class.newInstance(Class.java:303)
    at oracle.j2ee.ws.client.ServiceFactoryImpl.createService(ServiceFactory
    Impl.java:92)
    at oracle.j2ee.ws.client.ServiceFactoryImpl.loadService(ServiceFactoryIm
    pl.java:121)
    at has.proxy.JoPayWebServiceClient.<init>(JoPayWebServiceClient.java:18)
    at moict.Main.confirmPayment(Main.java:142)
    at moict.Main.main(Main.java:93)
    Caused by: javax.xml.rpc.JAXRPCException: javax.xml.soap.SOAPException: Unable t
    o create SOAP Factory: Provider com.sun.xml.messaging.saaj.soap.ver1_1.SOAPFacto
    ry1_1Impl not found
    at oracle.j2ee.ws.common.encoding.literal.LiteralFragmentSerializer.<ini
    t>(LiteralFragmentSerializer.java:95)
    at oracle.j2ee.ws.common.encoding.literal.LiteralFragmentSerializer.<ini
    t>(LiteralFragmentSerializer.java:62)
    at oracle.j2ee.ws.common.encoding.literal.LiteralAnyElementSerializer.<i
    nit>(LiteralAnyElementSerializer.java:16)
    at oracle.j2ee.ws.common.encoding.literal.StandardLiteralTypeMappings.<i
    nit>(StandardLiteralTypeMappings.java:198)
    at oracle.j2ee.ws.client.BasicService.createLiteralMappings(BasicService
    .java:280)
    ... 14 more
    Caused by: javax.xml.soap.SOAPException: Unable to create SOAP Factory: Provider
    com.sun.xml.messaging.saaj.soap.ver1_1.SOAPFactory1_1Impl not found
    at javax.xml.soap.SOAPFactory.newInstance(SOAPFactory.java:33)
    at oracle.j2ee.ws.common.encoding.literal.LiteralFragmentSerializer.<ini
    t>(LiteralFragmentSerializer.java:93)
    ... 18 more
    Exception in thread "main" java.lang.NullPointerException
    at has.proxy.runtime.JoPayWebServiceService_SerializerRegistry.registerS
    erializer(JoPayWebServiceService_SerializerRegistry.java:45)
    at has.proxy.runtime.JoPayWebServiceService_SerializerRegistry.getRegist
    ry(JoPayWebServiceService_SerializerRegistry.java:32)
    at has.proxy.runtime.JoPayWebServiceService_Impl.<init>(JoPayWebServiceS
    ervice_Impl.java:26)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct
    orAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC
    onstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
    at java.lang.Class.newInstance0(Class.java:350)
    at java.lang.Class.newInstance(Class.java:303)
    at oracle.j2ee.ws.client.ServiceFactoryImpl.createService(ServiceFactory
    Impl.java:92)
    at oracle.j2ee.ws.client.ServiceFactoryImpl.loadService(ServiceFactoryIm
    pl.java:121)
    at has.proxy.JoPayWebServiceClient.<init>(JoPayWebServiceClient.java:18)
    at moict.Main.confirmPayment(Main.java:142)
    at moict.Main.main(Main.java:93)
    C:\>

  • Firefox freezes when clicking away during applet load

    I have an applet that, upon startup, reads in a large amount of initial data. While this startup read usually only takes about 10 seconds, if a user clicks on a regular HTML link on the page during this initial loading of the java applet then Firefox will freeze.
    I've tried adding some focus/component listeners to see if an event gets fired when the page is navigated away from and thus shut down all the data readers, but to no avail. I would assume that no such event occurs.
    Is this just a Firefox bug or is there a workaround?
    Many thanks
    Si

    slyadams wrote:
    I have an applet that, upon startup, reads in a large amount of initial data. While this startup read usually only takes about 10 seconds, if a user clicks on a regular HTML link on the page during this initial loading of the java applet then Firefox will freeze.
    Is there a workaround?Can you not do micro-initialisation - launch another thread to do the donkey work for the next 10 seconds (or more) - but have all your listeners and stuff up and running, or will that not make a difference?

Maybe you are looking for