MS Access Web App: corrupted table, cannot open in Access anymore

**tldr: How can I delete a corrupted table that prevents me from opening my Web App in Access?**
I used the Access desktop client to create a new table with approx 20 lookup fields. When I tried saving the table, I received an error message about too many indices. So I set the index option to "no" for all the lookup fields and tried to close
the "edit table view". However, I was not able to close the edit table view anymore. After trying for a while, I used the task manager to terminate Access.
Now, when I try to open my app in Access by clicking the "customize in Access" button on the web, I receive several error messages:
 1. Operation failed: the table xxx contains too many indices. Delete some indices and try again. (this error message appears about 5 times)
 2. Microsoft Access can not create the table
 3. A problem occurred when trying to access a property or method of the OLE object.
Next, I'm at the Access start screen. My application does not open.
So, is there any other way I can delete the corrupted table without opening it through the Access client? Maybe directly accessing the SQL server? The database is configured to allow read/write connections, becasue I connected to the tables from an Access Desktop
Database, but I'm not sure if I can delete a table or fields that way. Any help is greatly appreciated!
[I translated the error messages from German, so they might be slightly different in the English version]

**tldr: How can I delete a corrupted table that prevents me from opening my Web App in Access?**
I used the Access desktop client to create a new table with approx 20 lookup fields. When I tried saving the table, I received an error message about too many indices. So I set the index option to "no" for all the lookup fields and tried to close
the "edit table view". However, I was not able to close the edit table view anymore. After trying for a while, I used the task manager to terminate Access.
Now, when I try to open my app in Access by clicking the "customize in Access" button on the web, I receive several error messages:
 1. Operation failed: the table xxx contains too many indices. Delete some indices and try again. (this error message appears about 5 times)
 2. Microsoft Access can not create the table
 3. A problem occurred when trying to access a property or method of the OLE object.
Next, I'm at the Access start screen. My application does not open.
So, is there any other way I can delete the corrupted table without opening it through the Access client? Maybe directly accessing the SQL server? The database is configured to allow read/write connections, becasue I connected to the tables from an Access Desktop
Database, but I'm not sure if I can delete a table or fields that way. Any help is greatly appreciated!
[I translated the error messages from German, so they might be slightly different in the English version]
Not sure, but you may have to many indexes created, see below article:
Indexes on a Table
Hope its not corrupted though. If so, I hope you have a backup in place.
Try to Compact & Repair and also check below article: 
Recovering from Corruption
Hope this helps,
Daniel van den Berg | Washington, USA | "Anticipate the difficult by managing the easy"
Please vote an answer helpful if they helped. Please mark an answer(s) as an answer when your question is being answered.

Similar Messages

  • APP-FND-01630 Cannot open file

    Hi,
    While opening forms getting error:-
    "APP-FND-01630 Cannot open file"
    Regards,
    Bhatia

    I had this problem before and i solve it
    To implement the solution, please execute the following steps:
    1. Rename the temp directory.
    2. Create new temp directory.
    3. Run cmclean.sql using apps user name
    you can download cmclean.sql from metalink
    the following is cmclean.sql
    REM
    REM FILENAME
    REM cmclean.sql
    REM DESCRIPTION
    REM Clean out the concurrent manager tables
    REM NOTES
    REM Usage: sqlplus @cmclean
    REM
    REM
    REM $Id: cmclean.sql,v 1.4 2001/04/07 15:55:07 pferguso Exp $
    REM
    REM
    REM +======================================================================+
    set verify off;
    set head off;
    set timing off
    set pagesize 1000
    column manager format a20 heading 'Manager short name'
    column pid heading 'Process id'
    column pscode format a12 heading 'Status code'
    column ccode format a12 heading 'Control code'
    column request heading 'Request ID'
    column pcode format a6 heading 'Phase'
    column scode format a6 heading 'Status'
    WHENEVER SQLERROR EXIT ROLLBACK;
    DOCUMENT
    WARNING : Do not run this script without explicit instructions
    from Oracle Support
    *** Make sure that the managers are shut down ***
    *** before running this script ***
    *** If the concurrent managers are NOT shut down, ***
    *** exit this script now !! ***
    accept answer prompt 'If you wish to continue type the word ''dual'': '
    set feed off
    select null from &answer;
    set feed on
    REM Update process status codes to TERMINATED
    prompt
    prompt ------------------------------------------------------------------------
    prompt -- Updating invalid process status codes in FND_CONCURRENT_PROCESSES
    set feedback off
    set head on
    break on manager
    SELECT concurrent_queue_name manager,
    concurrent_process_id pid,
    process_status_code pscode
    FROM fnd_concurrent_queues fcq, fnd_concurrent_processes fcp
    WHERE process_status_code not in ('K', 'S')
    AND fcq.concurrent_queue_id = fcp.concurrent_queue_id
    AND fcq.application_id = fcp.queue_application_id;
    set head off
    set feedback on
    UPDATE fnd_concurrent_processes
    SET process_status_code = 'K'
    WHERE process_status_code not in ('K', 'S');
    REM Set all managers to 0 processes
    prompt
    prompt ------------------------------------------------------------------------
    prompt -- Updating running processes in FND_CONCURRENT_QUEUES
    prompt -- Setting running_processes = 0 and max_processes = 0 for all managers
    UPDATE fnd_concurrent_queues
    SET running_processes = 0, max_processes = 0;
    REM Reset control codes
    prompt
    prompt ------------------------------------------------------------------------
    prompt -- Updating invalid control_codes in FND_CONCURRENT_QUEUES
    set feedback off
    set head on
    SELECT concurrent_queue_name manager,
    control_code ccode
    FROM fnd_concurrent_queues
    WHERE control_code not in ('E', 'R', 'X')
    AND control_code IS NOT NULL;
    set feedback on
    set head off
    UPDATE fnd_concurrent_queues
    SET control_code = NULL
    WHERE control_code not in ('E', 'R', 'X')
    AND control_code IS NOT NULL;
    REM Also null out target_node for all managers
    UPDATE fnd_concurrent_queues
    SET target_node = null;
    REM Set all 'Terminating' requests to Completed/Error
    REM Also set Running requests to completed, since the managers are down
    prompt
    prompt ------------------------------------------------------------------------
    prompt -- Updating any Running or Terminating requests to Completed/Error
    set feedback off
    set head on
    SELECT request_id request,
    phase_code pcode,
    status_code scode
    FROM fnd_concurrent_requests
    WHERE status_code = 'T' OR phase_code = 'R'
    ORDER BY request_id;
    set feedback on
    set head off
    UPDATE fnd_concurrent_requests
    SET phase_code = 'C', status_code = 'E'
    WHERE status_code ='T' OR phase_code = 'R';
    REM Set all Runalone flags to 'N'
    REM This has to be done differently for Release 10
    prompt
    prompt ------------------------------------------------------------------------
    prompt -- Updating any Runalone flags to 'N'
    prompt
    set serveroutput on
    set feedback off
    declare
    c pls_integer := dbms_sql.open_cursor;
    upd_rows pls_integer;
    vers varchar2(50);
    tbl varchar2(50);
    col varchar2(50);
    statement varchar2(255);
    begin
    select substr(release_name, 1, 2)
    into vers
    from fnd_product_groups;
    if vers >= 11 then
    tbl := 'fnd_conflicts_domain';
    col := 'runalone_flag';
    else
    tbl := 'fnd_concurrent_conflict_sets';
    col := 'run_alone_flag';
    end if;
    statement := 'update ' || tbl || ' set ' || col || '=''N'' where ' || col || ' = ''Y''';
    dbms_sql.parse(c, statement, dbms_sql.native);
    upd_rows := dbms_sql.execute(c);
    dbms_sql.close_cursor(c);
    dbms_output.put_line('Updated ' || upd_rows || ' rows of ' || col || ' in ' || tbl || ' to ''N''');
    end;
    prompt
    prompt ------------------------------------------------------------------------
    prompt Updates complete.
    prompt Type commit now to commit these updates, or rollback to cancel.
    prompt ------------------------------------------------------------------------
    prompt
    set feedback on
    REM <= Last REM statment -----------------------------------------------------
    hope this help you also
    Radwan Al-qubati
    ITapplication senior developer
    Safer oil company-Rebublic of Yemen

  • I have just updated pages app, but now cannot open the app.?

    I have just updated the pages app but now cannot open the pages app

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased.
     Cheers, Tom

  • I have had a blue dot beside an app for over 8 hours and cannot open the app. I have deleted and reinstalled app and still cannot open

    I have had a blue dot beside an app for over 8 hours and cannot open the app. I have deleted and reinstalled app and still cannot open
    Partsman

    You can refer to the following article for installation help.
    If you getting issues with the validity of serial number, you can try contacting the adobe support team.
    Even without the serial number, you can use PSE for 30 days as trail and then activate the product later.

  • I am using Ipad 2, Wi-Fi is connected but cant open any web-site " error : Safari cannot open the page because it is not connected to the internet "

    I am using ipad 2, Wi-Fi is connected but cant open any web-site " error : safari cannot open the page becasue it is not connected to the internet "
    need support please

    You haven't provided much information, such as what type of router you have?  If you entered the encryption key as the password as opposed to the router name you have selected?  If you have WEP or WPA?  What you've tried that didn't work, other than saying it doesn't work?  So, below is a link to some assistance.  Follow this and see if it helps you.........
    http://www.apple.com/support/ipad/assistant/wifi/

  • Cannot open Illustrator CC anymore

    I tried to uninstall and re-install, but I cannot open Illustrator CC anymore. Can somebody help me please ? Thanks in advance
    Here is the report :
    Date/Time:       2014-10-13 19:20:40 +0200
    OS Version:      10.9.5 (Build 13F34)
    Architecture:    x86_64
    Report Version:  18
    Command:         Illustrator
    Path:            /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Version:         18.1.0 (18.1.0)
    Parent:          launchd [156]
    PID:             169
    Event:           hang
    Duration:        1.42s (process was unresponsive for 690 seconds before sampling)
    Steps:           14 (100ms sampling interval)
    Hardware model:  MacBookPro10,1
    Active cpus:     8
    Fan speed:       4089 rpm
    Free pages:      2925532 pages (+863)
    Pageins:         0 pages
    Pageouts:        0 pages
    Swapins:         0 pages
    Swapouts:        0 pages
    Process:         Adobe Illustrator [169]
    Path:            /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Architecture:    x86_64
    Parent:          launchd [156]
    UID:             501
    Task size:       80681 pages
    CPU Time:        1.332s
    Note:            Unresponsive for 690 seconds before sampling
      Thread 0x539      DispatchQueue 1          priority 46         cpu time   1.332s
      14 ??? (Adobe Illustrator + 12148) [0x100002f74]
        14 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 3935440 (Adobe Illustrator) [0x100462480]
          14 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 3996739 (Adobe Illustrator) [0x1004713f3]
            14 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 325254 (Adobe Illustrator) [0x1005f78e6]
              14 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 326206 (Adobe Illustrator) [0x1005f7c9e]
                14 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 4002902 (Adobe Illustrator) [0x100472c06]
                  14 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 1992816 (Adobe Illustrator) [0x10078ead0]
                    14 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 1997761 (Adobe Illustrator) [0x10078fe21]
                      14 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 325254 (Adobe Illustrator) [0x1005f78e6]
                        14 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 326206 (Adobe Illustrator) [0x1005f7c9e]
                          14 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 2010886 (Adobe Illustrator) [0x100793166]
                            14 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 1198429 (Adobe Illustrator) [0x1006ccbbd]
                              14 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 325254 (Adobe Illustrator) [0x1005f78e6]
                                14 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 326206 (Adobe Illustrator) [0x1005f7c9e]
                                  14 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 1245270 (Adobe Illustrator) [0x1006d82b6]
                                    14 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 3224350 (Adobe Illustrator) [0x1003b4ace]
                                      14 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 3227373 (Adobe Illustrator) [0x1003b569d]
                                        14 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 3207095 (Adobe Illustrator) [0x1003b0767]
                                          5  std::vector<VMDirectory, std::allocator<VMDirectory> >::_M_insert_aux(__gnu_cxx::__normal_iterator<VMDirectory*, std::vector<VMDirectory, std::allocator<VMDirectory> > >, VMDirectory const&) + 301631 (Adobe Illustrator) [0x100b0b90f]
                                            2  _platform_strcmp + 43 (libsystem_platform.dylib) [0x7fff98111d2b]
                                              2  <executing in user space>
                                            1  _platform_strcmp + 23 (libsystem_platform.dylib) [0x7fff98111d17]
                                              1  <executing in user space>
                                            1  _platform_strcmp + 106 (libsystem_platform.dylib) [0x7fff98111d6a]
                                              1  <executing in user space>
                                            1  _platform_strcmp + 4 (libsystem_platform.dylib) [0x7fff98111d04]
                                              1  <executing in user space>
                                          3  std::vector<VMDirectory, std::allocator<VMDirectory> >::_M_insert_aux(__gnu_cxx::__normal_iterator<VMDirectory*, std::vector<VMDirectory, std::allocator<VMDirectory> > >, VMDirectory const&) + 301618 (Adobe Illustrator) [0x100b0b902]
                                            3  <executing in user space>
                                          2  std::vector<VMDirectory, std::allocator<VMDirectory> >::_M_insert_aux(__gnu_cxx::__normal_iterator<VMDirectory*, std::vector<VMDirectory, std::allocator<VMDirectory> > >, VMDirectory const&) + 301247 (Adobe Illustrator) [0x100b0b78f]
                                            1  std::vector<VMDirectory, std::allocator<VMDirectory> >::_M_insert_aux(__gnu_cxx::__normal_iterator<VMDirectory*, std::vector<VMDirectory, std::allocator<VMDirectory> > >, VMDirectory const&) + 322197 (Adobe Illustrator) [0x100b10965]
                                              1  <executing in user space>
                                            1  std::vector<VMDirectory, std::allocator<VMDirectory> >::_M_insert_aux(__gnu_cxx::__normal_iterator<VMDirectory*, std::vector<VMDirectory, std::allocator<VMDirectory> > >, VMDirectory const&) + 322061 (Adobe Illustrator) [0x100b108dd]
                                              1  <executing in user space>
                                          1  _platform_memchr + 240 (libsystem_platform.dylib) [0x7fff98111d00]
                                            1  <executing in user space>
                                          1  std::vector<VMDirectory, std::allocator<VMDirectory> >::_M_insert_aux(__gnu_cxx::__normal_iterator<VMDirectory*, std::vector<VMDirectory, std::allocator<VMDirectory> > >, VMDirectory const&) + 301651 (Adobe Illustrator) [0x100b0b923]
                                            1  <executing in user space>
                                          1  std::vector<VMDirectory, std::allocator<VMDirectory> >::_M_insert_aux(__gnu_cxx::__normal_iterator<VMDirectory*, std::vector<VMDirectory, std::allocator<VMDirectory> > >, VMDirectory const&) + 301623 (Adobe Illustrator) [0x100b0b907]
                                            1  <executing in user space>
                                          1  std::vector<VMDirectory, std::allocator<VMDirectory> >::_M_insert_aux(__gnu_cxx::__normal_iterator<VMDirectory*, std::vector<VMDirectory, std::allocator<VMDirectory> > >, VMDirectory const&) + 301648 (Adobe Illustrator) [0x100b0b920]
                                            1  <executing in user space>
      Thread 0xb55      DispatchQueue 2          priority 48       
      14 _dispatch_mgr_thread + 52 (libdispatch.dylib) [0x7fff90aef136]
        14 kevent64 + 10 (libsystem_kernel.dylib) [0x7fff8e5b2662]
         *14 ??? (mach_kernel + 3960080) [0xffffff80005c6d10]
      Thread 0x128d     priority 62       
      14 thread_start + 13 (libsystem_pthread.dylib) [0x7fff90388fc9]
        14 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff9038472a]
          14 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff90384899]
            14 __NSThread__main__ + 1318 (Foundation) [0x7fff8c419dfb]
              14 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348 (Foundation) [0x7fff8c419ff7]
                14 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff8f410e75]
                  14 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8f411539]
                    14 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8f411f15]
                      14 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e5ada1a]
                       *14 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff80002167d0]
      Thread 0x1293     priority 46       
      14 thread_start + 13 (libsystem_pthread.dylib) [0x7fff90388fc9]
        14 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff9038472a]
          14 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff90384899]
            14 __select + 10 (libsystem_kernel.dylib) [0x7fff8e5b19aa]
             *14 ??? (mach_kernel + 4080224) [0xffffff80005e4260]
      Thread 0x12a4     priority 46       
      14 thread_start + 13 (libsystem_pthread.dylib) [0x7fff90388fc9]
        14 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff9038472a]
          14 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff90384899]
            14 boost::(anonymous namespace)::thread_proxy(void*) + 136 (AdobeAGM) [0x102cebee3]
              14 AGMWorkQueueTask::operator()() + 73 (AdobeAGM) [0x102cc5f4d]
                14 AGMMessageQueueImpl::Pull() + 68 (AdobeAGM) [0x102cc4a56]
                  14 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8e5b1716]
                   *14 psynch_cvcontinue + 0 (pthread) [0xffffff7f80bde940]
      Binary Images:
             0x100000000 -        0x1015bdff7  com.adobe.illustrator 18.1.0 (18.1.0) <E06A6B1A-ACCB-3580-A30A-E99C9FDC2055> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
             0x1028b9000 -        0x103079ff7  com.adobe.AGM AdobeAGM 4.30.41.1 (4.30.41.1) <9D07AF6E-D741-3CAF-94E1-C3CBAF6BC5B3> /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
          0x7fff8c3b3000 -     0x7fff8c6b3ff7  com.apple.Foundation 6.9 (1056.16) <24349208-3603-3F5D-95CC-B379616FBEF8> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8e59c000 -     0x7fff8e5b8ff7  libsystem_kernel.dylib (2422.115.4) <9EDE872E-2A9E-3A78-8E1D-AB790794A098> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8f3a1000 -     0x7fff8f586fff  com.apple.CoreFoundation 6.9 (855.17) <729BD6DA-1F63-3E72-A148-26F21EBF52BB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff90383000 -     0x7fff9038aff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
          0x7fff90aec000 -     0x7fff90b06fff  libdispatch.dylib (339.92.1) <C4E4A18D-3C3B-3C9C-8709-A4270D998DE7> /usr/lib/system/libdispatch.dylib
          0x7fff9810d000 -     0x7fff98113ff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib
    *0xffffff7f80bd9000 - 0xffffff7f80be0fff  com.apple.kec.pthread 1.0 (1) <882075E6-12C4-3225-8750-928715183739> /System/Library/Extensions/pthread.kext/Contents/MacOS/pthread
    *0xffffff8000200000 - 0xffffff80007a823a  mach_kernel (2422.115.4) <9477416E-7BCA-3679-AF97-E1EAAD3DD5A0> /mach_kernel
    Process:         accountsd [207]
    Path:            /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
    Architecture:    x86_64
    Parent:          launchd [156]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       1950 pages
    Importance:      Adaptive, Background Priority
    IO Policy:       Utility
    Timers:          Coalesced
      Thread 0x5f7      DispatchQueue 1          priority 4        
      14 start + 1 (libdyld.dylib) [0x7fff965bb5fd]
        14 ??? (accountsd + 6850) [0x10fef4ac2]
          14 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff8f410e75]
            14 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8f411539]
              14 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8f411f15]
                14 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e5ada1a]
                 *14 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff80002167d0]
      Thread 0x609      DispatchQueue 2          priority 4        
      14 _dispatch_mgr_thread + 52 (libdispatch.dylib) [0x7fff90aef136]
        14 kevent64 + 10 (libsystem_kernel.dylib) [0x7fff8e5b2662]
         *14 ??? (mach_kernel + 3960080) [0xffffff80005c6d10]
      Binary Images:
             0x10fef3000 -        0x10fef4fff  accountsd (336.9) <806AD9DD-23C7-3DB5-BE2F-C3E4D3E27EA9> /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
          0x7fff8e59c000 -     0x7fff8e5b8ff7  libsystem_kernel.dylib (2422.115.4) <9EDE872E-2A9E-3A78-8E1D-AB790794A098> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8f3a1000 -     0x7fff8f586fff  com.apple.CoreFoundation 6.9 (855.17) <729BD6DA-1F63-3E72-A148-26F21EBF52BB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff90aec000 -     0x7fff90b06fff  libdispatch.dylib (339.92.1) <C4E4A18D-3C3B-3C9C-8709-A4270D998DE7> /usr/lib/system/libdispatch.dylib
          0x7fff965b8000 -     0x7fff965bbff7  libdyld.dylib (239.4) <7C9EC3B7-DDE3-33FF-953F-4067C743951D> /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff80007a823a  mach_kernel (2422.115.4) <9477416E-7BCA-3679-AF97-E1EAAD3DD5A0> /mach_kernel
    Process:         Adobe CEF Helper [368]
    Path:            /Applications/Utilities/Adobe Creative Cloud/*/Adobe CEF Helper.app/Contents/MacOS/Adobe CEF Helper
    Architecture:    i386
    Parent:          Creative Cloud [294]
    Responsible:     Creative Cloud [294]
    UID:             501
    Task size:       10987 pages
    Importance:      Donating
    IO Policy:       Standard
    Process:         Adobe CEF Helper [369]
    Path:            /Applications/Utilities/Adobe Creative Cloud/*/Adobe CEF Helper.app/Contents/MacOS/Adobe CEF Helper
    Architecture:    i386
    Parent:          Creative Cloud [294]
    Responsible:     Creative Cloud [294]
    UID:             501
    Task size:       13987 pages
    Importance:      Donating
    IO Policy:       Standard
    Process:         Adobe Photoshop CC 2014 [170]
    Path:            /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/MacOS/Adobe Photoshop CC 2014
    Architecture:    x86_64
    Parent:          launchd [156]
    UID:             501
    Task size:       6 pages
    Timers:          Coalesced
    Note:            Suspended for 14 samples
    Process:         AdobeAcrobat [171]
    Path:            /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeAcrobat
    Architecture:    i386
    Parent:          launchd [156]
    UID:             501
    Task size:       14905 pages
    Suppression:     IO Throttling, Low CPU Priority, Timer Limits
    IO Policy:       Standard
    Timers:          Limited
    Process:         AdobeCrashDaemon [244]
    Path:            /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/Frameworks/AdobeCrashReporter.framework/Required/AdobeCrashDaemo n.app/Contents/MacOS/AdobeCrashDaemon
    Architecture:    x86_64
    Parent:          Adobe Illustrator [169]
    Responsible:     Adobe Illustrator [169]
    UID:             501
    Task size:       1254 pages
    CPU Time:        0.002s
    Process:         AdobeIPCBroker [303]
    Path:            /Applications/Utilities/Adobe Application Manager/*/AdobeIPCBroker.app/Contents/MacOS/AdobeIPCBroker
    Architecture:    i386
    Parent:          launchd [1]
    Responsible:     Creative Cloud [294]
    UID:             501
    Task size:       1529 pages
    Importance:      Donating
    IO Policy:       Standard
    Process:         AirPlayUIAgent [252]
    Path:            /System/Library/CoreServices/AirPlayUIAgent.app/Contents/MacOS/AirPlayUIAgent
    Architecture:    x86_64
    Parent:          launchd [156]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       1949 pages
    Importance:      Adaptive, Donating
      Thread 0x12fe     DispatchQueue 1          priority 46       
      14 start + 1 (libdyld.dylib) [0x7fff965bb5fd]
        14 NSApplicationMain + 940 (AppKit) [0x7fff940e0783]
          14 -[NSApplication run] + 553 (AppKit) [0x7fff940f599c]
            14 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122 (AppKit) [0x7fff9410189b]
              14 _DPSNextEvent + 1434 (AppKit) [0x7fff9410224e]
                14 _BlockUntilNextEventMatchingListInModeWithFilter + 65 (HIToolbox) [0x7fff98a8a5bc]
                  14 ReceiveNextEventCommon + 479 (HIToolbox) [0x7fff98a8a7b7]
                    14 RunCurrentEventLoopInMode + 226 (HIToolbox) [0x7fff98a8aa0d]
                      14 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff8f410e75]
                        14 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8f411539]
                          14 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8f411f15]
                            14 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e5ada1a]
                             *14 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff80002167d0]
      Thread 0x1300     DispatchQueue 2          priority 48       
      14 _dispatch_mgr_thread + 52 (libdispatch.dylib) [0x7fff90aef136]
        14 kevent64 + 10 (libsystem_kernel.dylib) [0x7fff8e5b2662]
         *14 ??? (mach_kernel + 3960080) [0xffffff80005c6d10]
      Thread 0x1310     priority 46       
      14 thread_start + 13 (libsystem_pthread.dylib) [0x7fff90388fc9]
        14 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff9038472a]
          14 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff90384899]
            14 _NSEventThread + 144 (AppKit) [0x7fff942a205e]
              14 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff8f410e75]
                14 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8f411539]
                  14 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8f411f15]
                    14 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e5ada1a]
                     *14 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff80002167d0]
      Binary Images:
             0x10b9c8000 -        0x10b9cdff3  com.apple.AirPlayUIAgent 2.0 (200.34.4) <0E216F6D-BD52-38DA-BED6-DDF3BA3B34D2> /System/Library/CoreServices/AirPlayUIAgent.app/Contents/MacOS/AirPlayUIAgent
          0x7fff8e59c000 -     0x7fff8e5b8ff7  libsystem_kernel.dylib (2422.115.4) <9EDE872E-2A9E-3A78-8E1D-AB790794A098> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8f3a1000 -     0x7fff8f586fff  com.apple.CoreFoundation 6.9 (855.17) <729BD6DA-1F63-3E72-A148-26F21EBF52BB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff90383000 -     0x7fff9038aff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
          0x7fff90aec000 -     0x7fff90b06fff  libdispatch.dylib (339.92.1) <C4E4A18D-3C3B-3C9C-8709-A4270D998DE7> /usr/lib/system/libdispatch.dylib
          0x7fff940de000 -     0x7fff94c54ff7  com.apple.AppKit 6.9 (1265.21) <9DC13B27-841D-3839-93B2-3EDE66157BDE> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
          0x7fff965b8000 -     0x7fff965bbff7  libdyld.dylib (239.4) <7C9EC3B7-DDE3-33FF-953F-4067C743951D> /usr/lib/system/libdyld.dylib
          0x7fff98a5c000 -     0x7fff98d06ff5  com.apple.HIToolbox 2.1.1 <A388E773-AE7B-3FD1-8662-A98E6E24EA16> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    *0xffffff8000200000 - 0xffffff80007a823a  mach_kernel (2422.115.4) <9477416E-7BCA-3679-AF97-E1EAAD3DD5A0> /mach_kernel
    Process:         airportd [95]
    Path:            /usr/libexec/airportd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Sudden Term:     Clean
    Task size:       1304 pages
    Importance:      Adaptive, Background Priority
    IO Policy:       Utility
    Timers:          Coalesced
      Thread 0x319      DispatchQueue 1          priority 4        
      14 start + 1 (libdyld.dylib) [0x7fff965bb5fd]
        14 ??? (airportd + 85556) [0x105c27e34]
          14 -[NSRunLoop(NSRunLoop) run] + 74 (Foundation) [0x7fff8c504b3a]
            14 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 253 (Foundation) [0x7fff8c41c16c]
              14 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff8f410e75]
                14 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8f411539]
                  14 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8f411f15]
                    14 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e5ada1a]
                     *14 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff80002167d0]
      Thread 0x3d1      DispatchQueue 2          priority 4        
      14 _dispatch_mgr_thread + 52 (libdispatch.dylib) [0x7fff90aef136]
        14 _dispatch_mgr_invoke + 177 (libdispatch.dylib) [0x7fff90aef3e3]
          14 __select_nocancel + 10 (libsystem_kernel.dylib) [0x7fff8e5b19c2]
           *14 ??? (mach_kernel + 4080224) [0xffffff80005e4260]
      Thread 0x3e1      priority 4        
      14 thread_start + 13 (libsystem_pthread.dylib) [0x7fff90388fc9]
        14 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff9038472a]
          14 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff90384899]
            14 __select + 10 (libsystem_kernel.dylib) [0x7fff8e5b19aa]
             *14 ??? (mach_kernel + 4080224) [0xffffff80005e4260]
      Binary Images:
             0x105c13000 -        0x105c82ff7  airportd (940.60) <0329604B-D65F-3571-BBC5-7ABF6CC80101> /usr/libexec/airportd
          0x7fff8c3b3000 -     0x7fff8c6b3ff7  com.apple.Foundation 6.9 (1056.16) <24349208-3603-3F5D-95CC-B379616FBEF8> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8e59c000 -     0x7fff8e5b8ff7  libsystem_kernel.dylib (2422.115.4) <9EDE872E-2A9E-3A78-8E1D-AB790794A098> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8f3a1000 -     0x7fff8f586fff  com.apple.CoreFoundation 6.9 (855.17) <729BD6DA-1F63-3E72-A148-26F21EBF52BB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff90383000 -     0x7fff9038aff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
          0x7fff90aec000 -     0x7fff90b06fff  libdispatch.dylib (339.92.1) <C4E4A18D-3C3B-3C9C-8709-A4270D998DE7> /usr/lib/system/libdispatch.dylib
          0x7fff965b8000 -     0x7fff965bbff7  libdyld.dylib (239.4) <7C9EC3B7-DDE3-33FF-953F-4067C743951D> /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff80007a823a  mach_kernel (2422.115.4) <9477416E-7BCA-3679-AF97-E1EAAD3DD5A0> /mach_kernel
    Process:         aosnotifyd [94]
    Path:            /usr/libexec/aosnotifyd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Sudden Term:     Clean (allows idle exit)
    Task size:       2401 pages
    Importance:      Adaptive, Background Priority
    IO Policy:       Utility
    Timers:          Coalesced
      Thread 0x318      DispatchQueue 1          priority 4        
      14 start + 1 (libdyld.dylib) [0x7fff965bb5fd]
        14 ??? (aosnotifyd + 61205) [0x10a42af15]
          14 ??? (aosnotifyd + 173664) [0x10a446660]
            14 -[NSRunLoop(NSRunLoop) run] + 74 (Foundation) [0x7fff8c504b3a]
              14 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 253 (Foundation) [0x7fff8c41c16c]
                14 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff8f410e75]
                  14 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8f411539]
                    14 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8f411f15]
                      14 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e5ada1a]
                       *14 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff80002167d0]
      Thread 0x386      DispatchQueue 2          priority 4        
      14 _dispatch_mgr_thread + 52 (libdispatch.dylib) [0x7fff90aef136]
        14 kevent64 + 10 (libsystem_kernel.dylib) [0x7fff8e5b2662]
         *14 ??? (mach_kernel + 3960080) [0xffffff80005c6d10]
      Thread 0x47e      priority 4        
      14 thread_start + 13 (libsystem_pthread.dylib) [0x7fff90388fc9]
        14 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff9038472a]
          14 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff90384899]
            14 __NSThread__main__ + 1318 (Foundation) [0x7fff8c419dfb]
              14 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348 (Foundation) [0x7fff8c419ff7]
                14 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff8f410e75]
                  14 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8f411539]
                    14 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8f411f15]
                      14 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e5ada1a]
                       *14 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff80002167d0]
      Thread 0x12ee     priority 4        
      14 thread_start + 13 (libsystem_pthread.dylib) [0x7fff90388fc9]
        14 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff9038472a]
          14 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff90384899]
            14 __select + 10 (libsystem_kernel.dylib) [0x7fff8e5b19aa]
             *14 ??? (mach_kernel + 4080224) [0xffffff80005e4260]
      Binary Images:
             0x10a41c000 -        0x10a47afff  aosnotifyd (760.3) <57A7B425-2369-3F29-A0DE-13E0DA454F62> /usr/libexec/aosnotifyd
          0x7fff8c3b3000 -     0x7fff8c6b3ff7  com.apple.Foundation 6.9 (1056.16) <24349208-3603-3F5D-95CC-B379616FBEF8> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8e59c000 -     0x7fff8e5b8ff7  libsystem_kernel.dylib (2422.115.4) <9EDE872E-2A9E-3A78-8E1D-AB790794A098> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8f3a1000 -     0x7fff8f586fff  com.apple.CoreFoundation 6.9 (855.17) <729BD6DA-1F63-3E72-A148-26F21EBF52BB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff90383000 -     0x7fff9038aff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
          0x7fff90aec000 -     0x7fff90b06fff  libdispatch.dylib (339.92.1) <C4E4A18D-3C3B-3C9C-8709-A4270D998DE7> /usr/lib/system/libdispatch.dylib
          0x7fff965b8000 -     0x7fff965bbff7  libdyld.dylib (239.4) <7C9EC3B7-DDE3-33FF-953F-4067C743951D> /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff80007a823a  mach_kernel (2422.115.4) <9477416E-7BCA-3679-AF97-E1EAAD3DD5A0> /mach_kernel
    Process:         appleeventsd [87]
    Path:            /System/Library/CoreServices/appleeventsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             55
    Task size:       879 pages
    Importance:      Adaptive, Background Priority
    IO Policy:       Utility
    Timers:          Coalesced
      Thread 0x3e4      DispatchQueue 2          priority 4        
      14 _dispatch_mgr_thread + 52 (libdispatch.dylib) [0x7fff90aef136]
        14 kevent64 + 10 (libsystem_kernel.dylib) [0x7fff8e5b2662]
         *14 ??? (mach_kernel + 3960080) [0xffffff80005c6d10]
      Thread 0x3e5      DispatchQueue 7          priority 4        
      14 _dispatch_sig_thread + 45 (libdispatch.dylib) [0x7fff90af77c5]
        14 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x7fff8e5b1caa]
         *14 ??? (mach_kernel + 4080224) [0xffffff80005e4260]
      Binary Images:
             0x10a77e000 -        0x10a77effe  appleeventsd (665.5) <5049C997-9744-35A2-960D-0C4732911528> /System/Library/CoreServices/appleeventsd
          0x7fff8e59c000 -     0x7fff8e5b8ff7  libsystem_kernel.dylib (2422.115.4) <9EDE872E-2A9E-3A78-8E1D-AB790794A098> /usr/lib/system/libsystem_kernel.dylib
          0x7fff90aec000 -     0x7fff90b06fff  libdispatch.dylib (339.92.1) <C4E4A18D-3C3B-3C9C-8709-A4270D998DE7> /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff80007a823a  mach_kernel (2422.115.4) <9477416E-7BCA-3679-AF97-E1EAAD3DD5A0> /mach_kernel
    Process:         AppleIDAuthAgent [289]
    Path:            /System/Library/CoreServices/AppleIDAuthAgent
    Architecture:    x86_64
    Parent:          launchd [156]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       518 pages
    Importance:      Adaptive, Background Priority
    IO Policy:       Utility
    Timers:          Coalesced
      Thread 0x1671     DispatchQueue 2          priority 4        
      14 _dispatch_mgr_thread + 52 (libdispatch.dylib) [0x7fff90aef136]
        14 kevent64 + 10 (libsystem_kernel.dylib) [0x7fff8e5b2662]
         *14 ??? (mach_kernel + 3960080) [0xffffff80005c6d10]
      Thread 0x1672     DispatchQueue 7          priority 4        
      14 _dispatch_sig_thread + 45 (libdispatch.dylib) [0x7fff90af77c5]
        14 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x7fff8e5b1caa]
         *14 ??? (mach_kernel + 4080224) [0xffffff80005e4260]
      Thread 0x1675     DispatchQueue 16         priority 4        
      14 start_wqthread + 13 (libsystem_pthread.dylib) [0x7fff90388fb9]
        14 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x7fff90385ef8]
          14 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x7fff90af0177]
            14 _dispatch_root_queue_drain + 75 (libdispatch.dylib) [0x7fff90aeef87]
              14 _dispatch_queue_invoke + 110 (libdispatch.dylib) [0x7fff90af09c1]
                14 _dispatch_queue_drain + 359 (libdispatch.dylib) [0x7fff90aef617]
                  14 _dispatch_source_invoke + 413 (libdispatch.dylib) [0x7fff90aef885]
                    14 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff90aed28d]
                      14 _dispatch_after_timer_callback + 77 (libdispatch.dylib) [0x7fff90af5433]
                        14 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff90aed28d]
                          14 _dispatch_call_block_and_release + 12 (libdispatch.dylib) [0x7fff90af01bb]
                            14 ___ZL30startScheduledAccountCheckTaskdd_block_invoke_2 + 480 (AppleIDAuthAgent) [0x10c183dd4]
                              14 semaphore_timedwait_trap + 10 (libsystem_kernel.dylib) [0x7fff8e5ada6e]
                               *14 semaphore_wait_continue + 0 (mach_kernel) [0xffffff800023b570]
      Binary Images:
             0x10c181000 -        0x10c1b1fff  AppleIDAuthAgent (600.4) <9549C391-F83B-3B63-8D2B-482E77EE24CE> /System/Library/CoreServices/AppleIDAuthAgent
          0x7fff8e59c000 -     0x7fff8e5b8ff7  libsystem_kernel.dylib (2422.115.4) <9EDE872E-2A9E-3A78-8E1D-AB790794A098> /usr/lib/system/libsystem_kernel.dylib
          0x7fff90383000 -     0x7fff9038aff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
          0x7fff90aec000 -     0x7fff90b06fff  libdispatch.dylib (339.92.1) <C4E4A18D-3C3B-3C9C-8709-A4270D998DE7> /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff80007a823a  mach_kernel (2422.115.4) <9477416E-7BCA-3679-AF97-E1EAAD3DD5A0> /mach_kernel
    Process:         AppleSpell [397]
    Path:            /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
    Architecture:    x86_64
    Parent:          launchd [156]
    UID:             501
    Sudden Term:     Clean
    Task size:       1173 pages
    Importance:      Donating
    IO Policy:       Standard
    Timers:          Coalesced
      Thread 0x1d75     DispatchQueue 1          priority 31       
      14 start + 1 (libdyld.dylib) [0x7fff965bb5fd]
        14 ??? (AppleSpell + 4798) [0x1051ac2be]
          14 -[NSSpellServer run] + 73 (Foundation) [0x7fff8c53621b]
            14 CFRunLoopRun + 97 (CoreFoundation) [0x7fff8f4c6811]
              14 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff8f410e75]
                14 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8f411539]
                  14 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8f411f15]
                    14 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e5ada1a]
                     *14 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff80002167d0]
      Thread 0x1d7e     DispatchQueue 2          priority 33       
      14 _dispatch_mgr_thread + 52 (libdispatch.dylib) [0x7fff90aef136]
        14 kevent64 + 10 (libsystem_kernel.dylib) [0x7fff8e5b2662]
         *14 ??? (mach_kernel + 3960080) [0xffffff80005c6d10]
      Binary Images:
             0x1051ab000 -        0x10526eff7  com.apple.AppleSpell 2.1 (232) <A0032D8D-8C88-3E70-960D-BE53DE83E0BC> /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
          0x7fff8c3b3000 -     0x7fff8c6b3ff7  com.apple.Foundation 6.9 (1056.16) <24349208-3603-3F5D-95CC-B379616FBEF8> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8e59c000 -     0x7fff8e5b8ff7  libsystem_kernel.dylib (2422.115.4) <9EDE872E-2A9E-3A78-8E1D-AB790794A098> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8f3a1000 -     0x7fff8f586fff  com.apple.CoreFoundation 6.9 (855.17) <729BD6DA-1F63-3E72-A148-26F21EBF52BB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff90aec000 -     0x7fff90b06fff  libdispatch.dylib (339.92.1) <C4E4A18D-3C3B-3C9C-8709-A4270D998DE7> /usr/lib/system/libdispatch.dylib
          0x7fff965b8000 -     0x7fff965bbff7  libdyld.dylib (239.4) <7C9EC3B7-DDE3-33FF-953F-4067C743951D> /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff80007a823a  mach_kernel (2422.115.4) <9477416E-7BCA-3679-AF97-E1EAAD3DD5A0> /mach_kernel
    Process:         apsd [93]
    Path:            /System/Library/PrivateFrameworks/ApplePushService.framework/apsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Task size:       2336 pages
    Importance:      Adaptive, Donating
    Timers:          Coalesced
      Thread 0x317      DispatchQueue 1          priority 31       
      14 start + 1 (libdyld.dylib) [0x7fff965bb5fd]
        14 ??? (apsd + 211338) [0x10993798a]
          14 -[NSRunLoop(NSRunLoop) run] + 74 (Foundation) [0x7fff8c504b3a]
            14 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 253 (Foundation) [0x7fff8c41c16c]
              14 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff8f410e75]
                14 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8f411539]
                  14 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8f411f15]
                    14 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e5ada1a]
                     *14 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff80002167d0]
      Thread 0x39b      DispatchQueue 2          priority 33       
      14 _dispatch_mgr_thread + 52 (libdispatch.dylib) [0x7fff90aef136]
        14 kevent64 + 10 (libsystem_kernel.dylib) [0x7fff8e5b2662]
         *14 ??? (mach_kernel + 3960080) [0xffffff80005c6d10]
      Thread 0x43c      priority 63       
      14 thread_start + 13 (libsystem_pthread.dylib) [0x7fff90388fc9]
        14 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff9038472a]
          14 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff90384899]
            14 __NSThread__main__ + 1318 (Foundation) [0x7fff8c419dfb]
              14 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348 (Foundation) [0x7fff8c419ff7]
                14 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff8f410e75]
                  14 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8f411539]
                    14 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8f411f15]
                      14 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e5ada1a]
                       *14 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff80002167d0]
      Thread 0xa7c      priority 31       
      14 thread_start + 13 (libsystem_pthread.dylib) [0x7fff90388fc9]
        14 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff9038472a]
          14 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff90384899]
            14 __select + 10 (libsystem_kernel.dylib) [0x7fff8e5b19aa]
             *14 ??? (mach_kernel + 4080224) [0xffffff80005e4260]
      Binary Images:
             0x109904000 -        0x109998fff  apsd (206.2) <6F36B882-4D77-34A8-8BB4-1300962DE3F4> /System/Library/PrivateFrameworks/ApplePushService.framework/apsd
          0x7fff8c3b3000 -     0x7fff8c6b3ff7  com.apple.Foundation 6.9 (1056.16) <24349208-3603-3F5D-95CC-B379616FBEF8> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8e59c000 -     0x7fff8e5b8ff7  libsystem_kernel.dylib (2422.115.4) <9EDE872E-2A9E-3A78-8E1D-AB790794A098> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8f3a1000 -     0x7fff8f586fff  com.apple.CoreFoundation 6.9 (855.17) <729BD6DA-1F63-3E72-A148-26F21EBF52BB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff90383000 -     0x7fff9038aff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
          0x7fff90aec000 -     0x7fff90b06fff  libdispatch.dylib (339.92.1) <C4E4A18D-3C3B-3C9C-8709-A4270D998DE7> /usr/lib/system/libdispatch.dylib
          0x7fff965b8000 -     0x7fff965bbff7  libdyld.dylib (239.4) <7C9EC3B7-DDE3-33FF-953F-4067C743951D> /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff80007a823a  mach_kernel (2422.115.4) <9477416E-7BCA-3679-AF97-E1EAAD3DD5A0> /mach_kernel
    Process:         authd [34]
    Path:            /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/authd.xpc/Contents/M acOS/authd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Sudden Term:     Dirty (allows idle exit)
    Task size:       1804 pages
    Importance:      Adaptive, Background Priority
    IO Policy:       Utility
    Timers:          Coalesced
      Thread 0x1b1      DispatchQueue 7          priority 4        
      14 _dispatch_sig_thread + 45 (libdispatch.dylib) [0x7fff90af77c5]
        14 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x7fff8e5b1caa]
         *14 ??? (mach_kernel + 4080224) [0xffffff80005e4260]
      Thread 0x1b2      DispatchQueue 2          priority 4        
      14 _dispatch_mgr_thread + 52 (libdispatch.dylib) [0x7fff90aef136]
        14 kevent64 + 10 (libsystem_kernel.dylib) [0x7fff8e5b2662]
         *14 ??? (mach_kernel + 3960080) [0xffffff80005c6d10]
      Thread 0x1b3      DispatchQueue 6          priority 4        
      14 start_wqthread + 13 (libsystem_pthread.dylib) [0x7fff90388fb9]
        14 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x7fff90385ef8]
          14 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x7fff90af0177]
            14 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x7fff90aef082]
              14 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff90aed28d]
                14 _dispatch_call_block_and_release + 12 (libdispatch.dylib) [0x7fff90af01bb]
                  14 ??? (authd + 73564) [0x1019e6f5c]
                    14 au_sdev_read_aia + 570 (libbsm.0.dylib) [0x7fff90341ac5]
                      14 fgetc + 44 (libsystem_c.dylib) [0x7fff9548f68e]
                        14 __srget + 14 (libsystem_c.dylib) [0x7fff95495ff5]
                          14 __srefill1 + 24 (libsystem_c.dylib) [0x7fff95495edb]
                            14 __read_nocancel + 10 (libsystem_kernel.dylib) [0x7fff8e5b18ea]
                             *14 hndl_unix_scall64 + 22 (mach_kernel) [0xffffff80002f4176]
                               *14 unix_syscall64 + 499 (mach_kernel) [0xffffff8000640c63]
                                 *14 read_nocancel + 127 (mach_kernel) [0xffffff80005f20ff]
                                   *14 ??? (mach_kernel + 4137710) [0xffffff80005f22ee]
                                     *14 ??? (mach_kernel + 2047477) [0xffffff80003f3df5]
                                       *14 VNOP_READ + 225 (mach_kernel) [0xffffff80003fe241]
                                         *14 spec_read + 253 (mach_kernel) [0xffffff800040d60d]
                                           *14 ??? (mach_kernel + 3847193) [0xffffff80005ab419]
                                             *14 msleep + 114 (mach_kernel) [0xffffff80005e4072]
                                               *14 ??? (mach_kernel + 4079173) [0xffffff80005e3e45]
                                                 *14 lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d18e]
                                                   *14 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d5c]
                                                     *14 ??? (mach_kernel + 223579) [0xffffff800023695b]
                                                       *14 machine_switch_context + 354 (mach_kernel) [0xffffff80002d8452]
      Binary Images:
             0x1019d5000 -        0x1019ecff3  com.apple.authd 1.0 (55471.14.18) <B30B0EB7-7B73-3C76-ACB7-C686E527450D> /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/authd.xpc/Contents/M acOS/authd
          0x7fff8e59c000 -     0x7fff8e5b8ff7  libsystem_kernel.dylib (2422.115.4) <9EDE872E-2A9E-3A78-8E1D-AB790794A098> /usr/lib/system/libsystem_kernel.dylib
          0x7fff90333000 -     0x7fff90343fff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
          0x7fff90383000 -     0x7fff9038aff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
          0x7fff90aec000 -     0x7fff90b06fff  libdispatch.dylib (339.92.1) <C4E4A18D-3C3B-3C9C-8709-A4270D998DE7> /usr/lib/system/libdispatch.dylib
          0x7fff95453000 -     0x7fff954dcff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
    *0xffffff8000200000 - 0xffffff80007a823a  mach_kernel (2422.115.4) <9477416E-7BCA-3679-AF97-E1EAAD3DD5A0> /mach_kernel
    Process:         autofsd [92]
    Path:            /usr/libexec/autofsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Sudden Term:     Clean
    Task size:       519 pages
    Importance:      Donating
    IO Policy:       Standard
    Timers:          Coalesced
      Thread 0x356      DispatchQueue 2          priority 33       
      14 _dispatch_mgr_thread + 52 (libdispatch.dylib) [0x7fff90aef136]
        14 kevent64 + 10 (libsystem_kernel.dylib) [0x7fff8e5b2662]
         *14 ??? (mach_kernel + 3960080) [0xffffff80005c6d10]
      Thread 0x43b      DispatchQueue 7          priority 31       
      14 _dispatch_sig_thread + 45 (libdispatch.dylib) [0x7fff90af77c5]
        14 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x7fff8e5b1caa]
         *14 ??? (mach_kernel + 4080224) [0xffffff80005e4260]
      Binary Images:
             0x10a88d000 -        0x10a88efff  autofsd (234) <6536BE49-F3B9-3603-B2C5-1EB34103CF10> /usr/libexec/autofsd
          0x7fff8e59c000 -     0x7fff8e5b8ff7  libsystem_kernel.dylib (2422.115.4) <9EDE872E-2A9E-3A78-8E1D-AB790794A098> /usr/lib/system/libsystem_kernel.dylib
          0x7fff90aec000 -     0x7fff90b06fff  libdispatch.dylib (339.92.1) <C4E4A18D-3C3B-3C9C-8709-A4270D998DE7> /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff80007a823a  mach_kernel (2422.115.4) <9477416E-7BCA-3679-AF97-E1EAAD3DD5A0> /mach_kernel
    Process:         backupd-helper [90]
    Path:            /System/Library/CoreServices/backupd.bundle/Contents/Resources/backupd-helper
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Sudden Term:     Clean (allows idle exit)
    Task size:       620 pages
    Importance:      Background Priority
    IO Policy:       Utility
    Timers:          Coalesced
      Thread 0x314      DispatchQueue 1          priority 4        
      14 start + 1 (libdyld.dylib) [0x7fff965bb5fd]
        14 ??? (backupd-helper + 13556) [0x10d9304f4]
          14 CFRunLoopRun + 97 (CoreFoundation) [0x7fff8f4c6811]
            14 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff8f410e75]
              14 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8f411539]
                14 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8f411f15]
                  14 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8e5ada1a]
                   *14 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff80002167d0]
      Thread 0x364      DispatchQueue 2          priority 4        
      14 _dispatch_mgr_thread + 52 (libdispatch.dylib) [0x7fff90aef136]
        14 kevent64 + 10 (libsystem_kernel.dylib) [0x7fff8e5b2662]
         *14 ??? (mach_kernel + 3960080) [0xffffff80005c6d10]
      Binary Images:
             0x10d92d000 -        0x10d93fff3  backupd-helper (185) <FFB954F2-4D5B-320C-981D-33CA3E197A64> /System/Library/CoreServices/backupd.bundle/Contents/Resources/backupd-helper
          0x7fff8e59c000 -     0x7fff8e5b8ff7  libsystem_kernel.dylib (2422.115.4) <9EDE872E-2A9E-3A78-8E1D-AB790794A098> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8f3a1000 -     0x7fff8f586fff  com.apple.CoreFoundation 6.9 (855.17) <729BD6DA-1F63-3E72-A148-26F21EBF52BB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff90aec000 -     0x7fff90b06fff  libdispatch.dylib (339.92.1) <C4E4A18D-3C3B-3C9C-8709-A4270D998DE7> /usr/lib/system/libdispatch.dylib
          0x7fff965b8000 -     0x7fff965bbff7  libdyld.dylib (239.4) <7C9EC3B7-DDE3-33FF-953F-4067C743951D> /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff80007a823a  mach_kernel (2422.115.4) <9477416E-7BCA-3679-AF97-E1EAAD3DD5A0> /mach_kernel
    Process:         CalendarAgent [200]
    Path:            /System/Library/PrivateFra

    DZ-Design,
    Have you tried to restart the Creative Cloud application by quitting and relaunching it, and have you updated to the latest version?
    You could try to reinstall using the full three step way:
    Uninstall, run the Cleaner Tool, and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • Double clicking on a file launches the app but doesn't open the file anymore. Why?

    Double clicking on a file launches the app but doesn't open the file anymore. Why?

    I would post in the Illustrator forum here http://forums.adobe.com/community/illustrator or the Dreamweaver forum here http://forums.adobe.com/community/dreamweaver. One of these product forums will be able to help.

  • Cannot open my libraries anymore since 10.0.8 upgrade

    Hello,
    I just apply the 10.0.8 upgrade on my iMac under Yosemite and now, I cannot open my libraries anymore ...
    I have a message : "Impossible to delete "___Sync___".
    I have more than 20 libraries and all have the same problem.
    There was no problem before the upgrade.
    Do you have an idea ?
    Thanks in advance.
    Regards
    Thierry

    Not being able to delete something could be a permissions problem.  If your libraries are on an external hard disk make sure right click on the disk icon in the Finder and right click - Get Info.  Make sure  "Ignore ownership on this volume" is checked (bottom of info window).  You could also repair permissions on your boot drive.
    Geoff.

  • Editing the Schedule PDP, at the Page Details Web Part, inserted wrong Project Web App URL. Cannot access Project Schedule Pages.

    I need a help. The environment, SharePoint and Project Server 2013 and SQL Server 2012, running on Windows Server 2008. Editing Details Web Part in a Schedule PDP Page, saved invalid Project Web App URL. After that, can display the Project Information and Project
    Details Pages from the projects accessed, and can display the Project site, too. But, when I access the Project Schedule Page, receive an error page, because of the invalid URL. The message is obvious: "There
    is no Web named xxxxxxx". I´ve tried to find out how to correct this, but no success, because cannot open the Project Schedule page anymore.
    I would like to know if there is some way to fix it without re-installing the system. Thanks for all. If somebody need more information, have log information and page display available. 

    Paul,
    When I click Schedule after PWA Settings > Project Details Page, there comes the error.
    I can download the Schedule Page. But I don't see where to change, because the wrong URL doesn't apper at the page. 
    I'm sending below the page that I can download. The schedule.aspx.
    <%@ Page language="C#" MasterPageFile="~masterurl/default.master" Inherits="Microsoft.SharePoint.WebPartPages.WebPartPage" %>
    <asp:Content ContentPlaceHolderId="PlaceHolderPageTitle" runat="server">
    <SharePoint:ListProperty Property="Title" runat="server"/> - <SharePoint:ListItemProperty Property="BaseName" maxlength="40" runat="server"/>
    </asp:Content>
    <asp:Content ContentPlaceHolderId="PlaceHolderPageTitleInTitleArea" runat="server">
    <WebPartPages:WebPartZone runat="server" title="loc:TitleBar" id="TitleBar" AllowLayoutChange="false" AllowPersonalization="false" />
    </asp:Content>
    <asp:Content ContentPlaceHolderId="PlaceHolderAdditionalPageHead" runat="server">
    <meta name="GENERATOR" content="Microsoft SharePoint" />
    <meta name="ProgId" content="SharePoint.WebPartPage.Document" />
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="CollaborationServer" content="SharePoint Team Web Site" />
    <script type="text/javascript">
    var navBarHelpOverrideKey = "wssmain";
    </script>
    </asp:Content>
    <asp:Content ContentPlaceHolderId="PlaceHolderSearchArea" runat="server" />
    <asp:Content ContentPlaceHolderId="PlaceHolderPageDescription" runat="server">
       <asp:literal id="idPageDescription" runat="server" text="<%$Resources:PWA,PAGE_DESCRIPTION_SCHEDULE%>" />
    </asp:Content>
    <asp:Content ContentPlaceHolderId="PlaceHolderPageImage" runat="server"></asp:Content>
    <asp:Content ContentPlaceHolderId="PlaceHolderLeftNavBar" runat="server"></asp:Content>
    <asp:Content ContentPlaceHolderId="PlaceHolderNavSpacer" runat="server"></asp:Content>
    <asp:Content ContentPlaceHolderId="PlaceHolderMain" runat="server">
    <WebPartPages:WebPartZone runat="server" Title="loc:FullPage" ID="FullPage" FrameType="TitleBarOnly"/>
    </asp:Content>
    <asp:Content ContentPlaceHolderID="PlaceHolderUtilityContent" Runat="server">
    </asp:Content>
    Thanks
    LuisPerez

  • Office Web Apps 2013: SSLOffLoad, Cannot connect Sharepoint.

    Hi,
    Background.
    We have a 2 machine SharePoint 2013 farm and a 2 machine Office Web Apps Farm, both of which are behind a load balancer. Our public DNS holds the records for the two farms: webapps.company.com and sharepoint.company.com. However these domains are not in
    the internal DNS and cannot be resolved internally. I've put these in the hosts file on the respective machines, so they can talk to each other.
    I'm now at the point where I need to connect SharePoint to the OWA farm. I've followed the guide here: http://technet.microsoft.com/en-us/library/jj219455%28v=office.15%29.aspx
    and setup the OWA farm by the specification under the heading "Deploy a multi-server, load balanced, office web apps server farm that uses HTTPS".
    My creation string
    New-OfficeWebAppsFarm -InternalUrl https://machinename.domain.com -ExternalUrl https://webapps.comapny.com -SSLOffloaded -EditingEnabled
    That went ok and the farm is created. I then added the second machine
    New-OfficeWebAppsMachine -MachineToJoin "machinename.domain.com"
    Now that the farm is created i went ahead and ran
    New-SPWOPIBinding -ServerName machinename.company.com
    But that just gave me "WARNING: The Server did not respond. Trying again"
    Adding the -AllowHttp flag let me continue, but that ended up giving me error when i created or opened a document in Sharepoint.
    So my guess is that i need to figure out why i cannot use New-SPWOPIBinding -ServerName machinename.company.com without -AllowHTTP.
    It was my understanding that we don't have to setup SSL on the individual farm server as the load balanser woudl take care of that.
    Any ideas as to why New-SPWOPIBinding -ServerName machinename.company.com won't work?
    Thank you for taking the time to read my post
    Regards.

    http://social.technet.microsoft.com/wiki/contents/articles/19039.sharepoint-2013-how-to-enable-office-web-apps-to-work-in-both-internal-and-external-environments.aspx
     Because I’ve not configured my OWA machine to be published to the Internet so I have to use its Internet-public IP. It’s not a recommended best practice. In your case, the external URL would be http://owa.abc.com
    . Above I’m not using SSL certificate
    to encrypt data over the Internet. Just add CertificateName parameter if you want to use whether CA-issued certificate
    or self-signed certificate. Finally, check both internal URL (http://app03/hosting/discovery
    ) and external URL (http://198.xxx.xxx.xxx/hosting/discovery
    ) to confirm everything is working
    well. Your screen should display XML structure.
    Now you need to re-bind all SharePoint machines to WAC farm using New-SPWOPIBinding (http://technet.microsoft.com/en-us/library/jj219441.aspx
    ). Next, you just need to set the WOPI
    zone for external use even there is an internal use in your SharePoint environment.
    1
    Set-SPWOPIZone –zone “external-http”
    Finally, configure Excel service and then upload an Excel workbook into a document library and check it. Below are the screenshots of OWA working on both internal and external environment.
    http://blogs.technet.com/b/ken_prices_sharepoint_blog/archive/2014/01/15/explaining-the-use-of-internal-and-external-wopi-zones-for-office-web-apps.aspx
    If this helped you resolve your issue, please mark it Answered

  • Word Web App (2013) can't open this document ... Because the service is busy

    I have just set up Office Web Apps Server in a SharePoint 2013 test environment as per document here:
    http://technet.microsoft.com/en-us/library/ff431687.aspx
    Although I had some issues with Excel Web App at first, I've solved this and excel seems to work ok, However, the Word Web App just sits there spinning and ultimately give the error dialog:
    "Sorry, Word Web App can't open this document because the service is busy. Please try again later"   The Same link as above has a simple solution :
     Did you install Office Web Apps Server on a domain controller? Office Web Apps Server cannot run on a domain controller. Office Web Apps Server must be installed on a separate server that is part of a domain. For more information, see
    Software, hardware, and configuration requirements for Office Web Apps Server.
    I certainly did not install on a DC - its a standalone server.
    ULS Logs are growing by 2K per second even when I am not doing anything on the server.
    VERY FRUSTRATED!

    So after further research we have found the following:
    Un-bind and unindstall Web Application Server
    Clean Server
    Reinstall (by Mistake to the C: Drive)
    Bind and Provision
    WOW it works!
    Un-bind, deprovision, Uninstall, Web Application Server
    clean Server
    Re-install to the D: Drive
    Provision and Bind
    wow - it DOES NOT work
    Again - repeat the first scenario
    and once again IT WORKS
    SO Why doesn't it work on the D Drive - We've checked IIS Setting and Permission - there don't seem to be any differences.
    SO - Why isn't this working when changing the default installation location, is it just me?   Has anyone gotten this working installing to another drive?
    Thanks
    James Moore

  • Office Web Apps: WordViewer redirects when opening in Word

    I have installed Office Web Apps on a SharePoint 2010 farm and it works fine. However, when I have a Word document open in the browser and click "Open in Word" the Word Viewer control redirects the browser back to the document library. Can I somehow
    configure it to stop doing that? I want it to stay on the same page.
    /Andreas

    Hi Andreas,
    I think it was by design so that you only had the document open with one set of features. If you open a document in the Word desktop application, and introduce content or functionality to the document that will prevent other authors’ ability to
    edit the document in Word Web App.
    For example, don’t use permissions features such as editing restrictions or marking the document as final. If you want to restrict access to the document, use the permission features where the document is stored (SkyDrive, Office 365, or SharePoint).
    Also, If another author saves the document with unsupported features before you have saved the document in Word Web App, you might not be able to save your work in Word Web App. If you have Word 2010, Word 2013, or Word for Mac 2011 you can prevent losing
    your changes by opening the document in the Word desktop application. Click
    Open in Word, copy your changes from Word Web App, and then paste them in the document in Word. When you save the document in Word, your changes are saved on the server.
    That said I will send an email out to our DL to see if there is a relatively painless way to modify the behavior.
    -Ivan
    Ivan Sanders My LinkedIn Profile,
    My Blog,
    @iasanders, Business Intelligence in SharePoint 2013.

  • Office Web App Server 2013: cannot edit word document with own WOPI Server

    Hi all,
    I tried to build our own WOPI Server to connect to Office Web App Server 2013 SP1. Viewing documents
    in IE was possible quite easy to achieve. Now it comes to editing.
    When I try to edit a document, I got a german message “Sie verfügen leider nicht über die Berechtigung zum Bearbeiten dieses Dokuments“.
    This means something like „Sorry, you do not have any permission to modify this document”.
    I enabled editing on the OWAS-Server while setup procedure
    (Until now, I only have an InternalUrl but no ExternalUrl.)
    PS C:\ > New-OfficeWebAppsFarm –InternalUrl “https://win-owas...” 
    –CertificateName "win-owas…" –EditingEnabled
    ULS log shows
    BaseDocument says editing is not supported [WebEditingEnabled: True] [SupportsEditing: True] [PinnedUsersRights: Read] 
    So far, I implemented these three REST service methods:
    [OperationContract]
    [WebInvoke
    "GET":"api/wopi/files/{name}?access_token={access_token}"
    "GET":"api/wopi/files/{name}/contents?access_token={access_token}"
    "POST":"api/wopi/files/{name}/contents?access_token={access_token}"
    Office Web App Server was downloaded from “Microsoft Volume Licensing Center”. I installed latest updates from Microsoft.
    Did anybody succeed in writing to own WOPI an can give me some hints?
    Thank you in advance.

    Hi,
    The discovery xml contains many lines. The one for editing docx is:
    <action
    name="edit"
    urlsrc="https://win-owas.cado.camos.de/we/wordeditorframe.aspx?"<ui=UI_LLCC=""&><rs=DC_LLCC=""&><showpagestats=PERFSTATS=""&>"
    ext="docx" requires="locks,cobalt,update"/>
    I am calling it this way:
    <iframe
    src="https://win-owas.cado.camos.de/we/wordeditorframe.aspx?WOPISrc=http%3a%2f%2fpc-ms.cado.camos.de%3a8000%2fWOPI%2fapi%2Fwopi%2Ffiles%2FAbout_Keyboard_Input.docx&access_token=5268690b-19c6-496d-8ae6-b694f8e7bd0c"
    I’m not sure whether or not I implemented "locks,cobalt,update" correct, but I do not see any ‘edit-’network traffic from OWAS-Server to WOPI-Server. So I cannot debug anything. I will (re)check the articles you mentioned.
    Thank you for your help.

  • Office Web Apps returns "unable to open"

    We have SharePoint 2013 with Office Web Apps 2013 SP1.
    Recently, users started receiving errors after the "Word Web App" logo would present stating "unable to open".  This occurred on anything (Excel Web App, etc..).
    Observed the following Event on my Office Web Apps server in the Applications and Services Logs, Microsoft Office Web Apps Log
    Log Name:      Microsoft Office Web Apps
    Source:        Office Web Apps
    Date:          4/9/2015 8:24:24 AM
    Event ID:      8115
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      FQDN_WebAppsServerName
    Description:
    Could not contact WOPI End Point. Error details - 'FileNotFound url - <a href="https:///highschool/CUA/_vti_bin/wopi.ashx/files/f0b744b0a509477fad71b5c1c94891b2?access_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjhCalNDdmJxVU9HNmc1bjN3SmJNeTVMV0dzcyJ9%2EeyJhdWQiOiJ3b3BpL2VjbGFzcy5lY3RzLm9yZ0BmZWQxN2JiMy1hYjc1LTRjZDktOTllOS02M2U1NGJjNDczM2UiLCJpc3MiOiIwMDAwMDAwMy0wMDAwLTBmZjEtY2UwMC0wMDAwMDAwMDAwMDBAZmVkMTdiYjMtYWI3NS00Y2Q5LTk5ZTktNjNlNTRiYzQ3MzNlIiwibmJmIjoiMTQyODU4MjI1NSIsImV4cCI6IjE0Mjg2MTgyNTUiLCJuYW1laWQiOiIwIy53fGhpZ2hzY2hvb2xcXGpzbWl0aDMyNjYiLCJuaWkiOiJtaWNyb3NvZnQuc2hhcmVwb2ludCIsImlzdXNlciI6InRydWUiLCJjYWNoZWtleSI6IjApLnd8cy0xLTUtMjEtMTQwOTA4MjIzMy0xMjc1MjEwMDcxLTE0MTcwMDEzMzMtMzk3NCIsImlzbG9vcGJhY2siOiJUcnVlIiwiYXBwY3R4IjoiZjBiNzQ0YjBhNTA5NDc3ZmFkNzFiNWMxYzk0ODkxYjI7Y1A4WDBHQUpKaW5PUExzUE1LNEpDR1ZxSDlZPTtEZWZhdWx0Ozs3RkZGRkZGRkZGRkZGRkZGO1RydWUifQ%2EN2jimetPSQcG%5Fl%5FdZR98KJUrlTXJLlGxvMoYGxNu2pGLr%2DWsv2Ir7%2DV3R0RHROUr8wqhSBSvX63qgEJF6thk7ODRv3hOp8SoMrM8PM08vhbaXVb15GTbSoQIC%2D1xnp4QAcVaLlIUpWRHnL5zNOno%5FRoqxmIa8uRGi24neCGUqAn6lne3kQHfzxneVwAR8U%5FvjYlgk2dA%5FzUaU0jB3DqQTfW5xjO0T2E0e42WNcuVCTLs0SYbtNXz5uljXtRQrtZKJl4%2DIWkgQgk1y7dLxS%2DvBTgTLrEBX9qJcJxqFX%2DEh6Ojk4yEURtAa581z0rWCBRPnRdHjwMU7iT4AT1BFsPLzA&access_token_ttl=1428618255865'">https://<fqdn_Sharepoint_ServerName>/highschool/CUA/_vti_bin/wopi.ashx/files/f0b744b0a509477fad71b5c1c94891b2?access_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjhCalNDdmJxVU9HNmc1bjN3SmJNeTVMV0dzcyJ9%2EeyJhdWQiOiJ3b3BpL2VjbGFzcy5lY3RzLm9yZ0BmZWQxN2JiMy1hYjc1LTRjZDktOTllOS02M2U1NGJjNDczM2UiLCJpc3MiOiIwMDAwMDAwMy0wMDAwLTBmZjEtY2UwMC0wMDAwMDAwMDAwMDBAZmVkMTdiYjMtYWI3NS00Y2Q5LTk5ZTktNjNlNTRiYzQ3MzNlIiwibmJmIjoiMTQyODU4MjI1NSIsImV4cCI6IjE0Mjg2MTgyNTUiLCJuYW1laWQiOiIwIy53fGhpZ2hzY2hvb2xcXGpzbWl0aDMyNjYiLCJuaWkiOiJtaWNyb3NvZnQuc2hhcmVwb2ludCIsImlzdXNlciI6InRydWUiLCJjYWNoZWtleSI6IjApLnd8cy0xLTUtMjEtMTQwOTA4MjIzMy0xMjc1MjEwMDcxLTE0MTcwMDEzMzMtMzk3NCIsImlzbG9vcGJhY2siOiJUcnVlIiwiYXBwY3R4IjoiZjBiNzQ0YjBhNTA5NDc3ZmFkNzFiNWMxYzk0ODkxYjI7Y1A4WDBHQUpKaW5PUExzUE1LNEpDR1ZxSDlZPTtEZWZhdWx0Ozs3RkZGRkZGRkZGRkZGRkZGO1RydWUifQ%2EN2jimetPSQcG%5Fl%5FdZR98KJUrlTXJLlGxvMoYGxNu2pGLr%2DWsv2Ir7%2DV3R0RHROUr8wqhSBSvX63qgEJF6thk7ODRv3hOp8SoMrM8PM08vhbaXVb15GTbSoQIC%2D1xnp4QAcVaLlIUpWRHnL5zNOno%5FRoqxmIa8uRGi24neCGUqAn6lne3kQHfzxneVwAR8U%5FvjYlgk2dA%5FzUaU0jB3DqQTfW5xjO0T2E0e42WNcuVCTLs0SYbtNXz5uljXtRQrtZKJl4%2DIWkgQgk1y7dLxS%2DvBTgTLrEBX9qJcJxqFX%2DEh6Ojk4yEURtAa581z0rWCBRPnRdHjwMU7iT4AT1BFsPLzA&access_token_ttl=1428618255865'.
    I ran Update-SPWOPIProofKey on the SharePoint Server; and it has seemed to fix it.
    Trying to recall past events; in January we installed the latest Web Apps updates; and while troubleshooting this issue; I did as well; install the most recent Web Apps updates KB2956158.
    We use the Remove-OfficeWebAppsMachine and subsequently New-OfficeWebAppsFarm each time we apply the updates.  Our environment is stand-alone.  One Exchange Server, One SharePoint Server, One Office Web Apps Server.
    Any insight is appreciated.
    Technology Administrator Erie County (Career and) Technical School.

    Hi,
    From your description, my understanding is that you got an error when you opened documents.
    Please install Microsoft .NET Framework 4.5.2, compare the result.
    More information, please refer to the link:
    http://blogs.technet.com/b/justin_gao/archive/2014/12/19/troubleshooting-error-event-id-8115-when-you-install-office-web-apps-server-2013-on-windows-server-2012-r2.aspx
    Thanks,
    Wendy
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Office Web App error - unable to open PDF after multiple trials

    Hi, we are using Office Web App server 2013 on win server 2012 (NO Sharepoint installed) to preview files (doc, docx, pdf, xls, xlsx, ppt, pptx), OWA is set as http, wopihost
    is http as well under different from HTTP80, HTTP809 application pool
    File conversion if fine for small files and large files to some point - we can process same large pdf (100MB) 30-50 times, but after that there is a message
    "Sorry, Word Web App ran into
    a problem opening this document. To view this document please open it in Microsoft Word."
    Server has plenty of free space, PerfMon
    does not show spikes, no memory spikes in Process Manager. ULS logs do not provide any good info either...
    No errors in event log under Applications,
    System, or Microsoft Office Web Apps sections.
    That error will be shown if we process
    the same file. if try to process different file it works fine (again - few dozen times), but if after that I try to process first file - it shows error again.
    Documents
    are located on the same server as OWA installed, same machine has wopi site in non owa application pool (from Microsoft demo
    - C#)
    The only resolution i found is to reset
    WAC server from PowerShell or restart IIS - after that it starts to process original file...
    If I just recycle OWA application pools
    - HTTP80, HTTP809 it does not help. (tried to change Recycling condition in IIS for those pools - it slightly improves situation but does not resolve).
    I can reproduce such pattern with different file types, it just matter of number of hits.
    Same error present if we use OWA and wopi on machine as https with certificate.
    We use VerboseEx option for logging - no errors in ULS log files, but multiple Sync exiting
    early records similar to 
    Sync exiting early: LastSyncTime = 09/16/2014 14:52:07    
     at Microsoft.Office.Web.Apps.Environment.WacServer.ACacheableFarmStateObject.Sync(Boolean force)  
     at Microsoft.Office.Web.Apps.Environment.WacServer.AFarmSettings.TryGetSettingValue[T](String settingName,
    T& value, Boolean shouldProcessValue)    
     at Microsoft.Office.Web.Apps.Environment.WacServer.WSConfigAdapter.TryGetValue[T](String settingName,
    T& value)    
     at Microsoft.Office.Web.Apps.Environment.WacServer.WSServiceInstanceFinderAdapter.GetAgentUri(WebAgentProperties
    agentProperties, String machineName, String fqdn)    
     at Microsoft.Office.Web.Apps.Environment.WacServer.WSServiceInstanceFinderAdapter.UpdateServiceList()
     at Microsoft.Office.Web.Apps.Environment.WacServer.WSServiceInstanceFinderAdapter.FindAllServiceInstances()
     at Microsoft.Office.Web.Common.ServiceInstanceFinder.RefreshList(Object state)    
     at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback
    callback, Object state, Boolean preserveSyncCtx)    
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback,
    Object state, Boolean preserveSyncCtx)    
     at System.Threading.TimerQueueTimer.CallCallback()    
     at System.Threading.TimerQueueTimer.Fire()    
     at System.Threading.TimerQueue.FireNextTimers()  
    ---------------------------------There are some paired records
    Cached service list has 39 service instances before the update
    Cached service lists has 39 service instances after the update
    So it goes as follows: OWA processing all formats fine, after trying same 100mb pdf file 50 times (it is possible to get same error with docx, just bigger number of trials) it does not process that pdf file, but processes others.
    After IIS reset it works as usual again. After trying another 100mb pdf file 50-60 times OWA stops to process that another file... We are expecting large number of hits and resetting IIS every 30min is not a good solution...
    Any help will be appreciated.
    Thank you

    Hi ,
    Thank you for your post.
    Whether the issue occurs with different file types or only the PDF.
    Based on your description, when you reset WAC server from PowerShell or restart IIS, the issue is solved temporarily.
    I recommend that you check the application account, re-enter the account, then reset the IIS.
    whether the issue occurs with different file types or only the PDF.
    In addition, please check if the link is useful:
    http://stevemannspath.blogspot.jp/2013/04/sharepoint-2013-pdf-support-and.html
    Best Regards,  
    Lisa Chen

Maybe you are looking for

  • Multiple users found with the same name

    Hi, In my ADF bean, I am trying to access some users from ldap. I found there are two users with the same email in my console under "Users and Groups" tab. I am getting the following error in logs: oracle.jbo.JboException: multiple users found with s

  • HT4463 I Can't Install Mountain Lion On My Macbook

    I Can't Install Mountain Lion On My Macbook White 10.6.8 (Late 2010) . It Goes Throught The Process, And Once It's Downloaded, It Doesn't Say To Restart. I Restart It On My Own And It Still Boots Up To Snow Leopard. I Tried Downloaded It Over And Ove

  • Error Message for newer software

    I have purchased an app and it will not sync to my iPad. Here is the error message I received: The application "Dotti" was not installe don the iPad "name" because it requires a newer version of iPad software. According, to my iTunes on my computer,

  • Why does my powerbook screen look inverted(256 colors)

    when I powered off my PB after it locked up and re started it goes to the mac OS blue screen and starts loading normally,then all of a sudden it goes goes grey and inverts all images loading on the desktop. When I check the displays screen under syst

  • Storing apps onto mini sd card

    Hi I recently bought my bb curve and downloaded only a couple off apps and noticed that that the number that says the memory is in the red and on like 22MB left. I was wondering if there was any way to change it so the apps are saved onto the mini SD