Viewing Error Log

I tried to preview a form, but it created a rendering error log.  When I viewed it, it looked something like the following:
%PDF-1.6#%#####
287 0 obj<</First 853/Length 1580/Filter/FlateDecode/N 99/Type/ObjStm>>stream#
x&#1716;XMo#9##+##B.#]v#CBH#h#(#
##E9#h##&;(;####+##a>&#1693;A####]###s##&#1900;#
%##2&#1448;#####Q#HE#####Z#bP6aH&#657;W#(&#445;D#=##8E###i#T#.####6###vZF#r###5##r1###0F&###[F+CZ&#"######
Does anyone know what I can do to view the error log properly?
Wing

Dezso,
I saved the log and renamed the extension to .pdf.  When I tried to open it with Adobe reader, a message indicated either damaged or file type not supported.
Wing

Similar Messages

  • Event in "view error log"

    Hi,
    I am using sun web proxy server 4.0.3 for windows (windows 2000). I used 4.0.2 but I have got some problems with cpu usage (process usage 100 %...).
    We are using Etrust Antivirus and recently I have got some problems when I am downloading new signature. Sometimes I can download new signature sometimes not.
    In Server status, view error log, I have severals :
    "[08/Sep/2006:12:34:53] info ( 3520): CORE3282: stdout: gc channel: ftpav.ca.com anonymous:sunproxy@ "
    ftpav.ca.com is from where i'm downloading new signature.
    Anyone can help me to understand these messages ?
    Mems.
    PS: sorry for my english.

    I have the same problem with ftp. If I try to download the same file several times with help of ftp proxy, after third or fourth retry proxy rejects my connections.
    It writes the same line in error log, and file is not accessible anymore.

  • Tx to view error log generated during a day

    hi all,
    can anyone pls tell me the Tx Code to view all type of error logs generated in a day.
    Regards
    vikas chhabra

    hi
    go to Easy access and  in application tool bar  press " SAP businees work place" or "control+F12" then select INBOX and
    select unread documents her eu can find the list if errors.
    reward me if it helps.
    regards,
    kishore.

  • Smart View error logging in to an application

    Hello,
    I successfully installed Smart View on a computer with Windows XP SP3. I can connect to the data source, but when I try to connect to an application, after entering the username and password, an error pops up: "Requested operation failed. Error: java.lang.NullPointerException"
    Do anybody know the issue?
    Thanks!

    Hi,
    Are you connecting to a Planning or Essbase datasource connection?
    Can you try connecting to other DS connections to see if it works?
    If connecting to an Essbase datasource, have you configured your APS correctly?
    Seb

  • Windows8 64 bit , EVENT VIEWER ERROR LOG

    I just got a new windows 8- 64 bit notebook, I have only just set it up yet in event viewer I get lots of Error messages one is HP error ID 2146233088, some are marked
    caution and others are critical and all seem to be under HP, I installed all windows updates and took out the 60 day trial of Norton internet Security 2013 and installed my own, my printer is set up with a USB cable wired, other than that I have only installed
    Microsoft office home and student which I purchased for 3 computers from a retail
    store, can anyone tell me why I would have so many errors showing up on a new computer.
     Thanks.

    Hello,
    The Windows Desktop Perfmon and Diagnostic tools forum is to discuss performance monitor (perfmon), resource monitor (resmon), and task manager, focusing on HOW-TO, Errors/Problems, and usage scenarios.
    Since your post is off-topic, I am moving it to the
    off topic forum.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book:
    Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • How do I view error logs

    WHen I shutdown, sometimes I see an error pop up quickly as its shutting down. Its too fast to read. I have a weird issue tht when I reboot/shutdown it takes me to the log off screen first, where I then shut down. Like to fix this.

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, or by a peripheral device. 
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including Wi-Fi on certain iMacs. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. Test while in safe mode. Same problem? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Web Server 7 Error Logs in GUI

    In Sun One Web Server 6.1 in View Error Log you can search logs by "Only show entries with" but in Sun Java System Web Server 7.0 I don�t find this feature.
    Somebody know if that feature exists in Sun One Web Server 7.0?
    Thanks a lot

    This feature does not exist in WS70 GUI. However if you click on "More Options" link, you will find a lot of search options on the basis of which you can search the error/access logs.
    Rgds
    Irfan.

  • BULK INSERT into View w/ Instead Of Trigger - DML ERROR LOGGING Issue

    Oracle 10.2.0.4
    I cannot figure out why I cannot get bulk insert errors to aggregate and allow the insert to continue when bulk inserting into a view with an Instead of Trigger. Whether I use LOG ERRORS clause or I use SQL%BULK_EXCEPTIONS, the insert works until it hits the first exception and then exits.
    Here's what I'm doing:
    1. I'm bulk inserting into a view with an Instead of Trigger on it that performs the actual updating on the underlying table. This table is a child table with a foreign key constraint to a reference table containing the primary key. In the Instead of Trigger, it attempts to insert a record into the child table and I get the following exception: +5:37:55 ORA-02291: integrity constraint (FK_TEST_TABLE) violated - parent key not found+, which is expected, but the error should be logged in the table and the rest of the inserts should complete. Instead the bulk insert exits.
    2. If I change this to bulk insert into the underlying table directly, it works, all errors get put into the error logging table and the insert completes all non-exception records.
    Here's the "test" procedure I created to test my scenario:
    View: V_TEST_TABLE
    Underlying Table: TEST_TABLE
    PROCEDURE BulkTest
    IS
    TYPE remDataType IS TABLE of v_TEST_TABLE%ROWTYPE INDEX BY BINARY_INTEGER;
    varRemData remDataType;
    begin
    select /*+ DRIVING_SITE(r)*/ *
    BULK COLLECT INTO varRemData
    from TEST_TABLE@REMOTE_LINK
    where effectiveday < to_date('06/16/2012 04','mm/dd/yyyy hh24')
    and terminationday > to_date('06/14/2012 04','mm/dd/yyyy hh24');
    BEGIN
    FORALL idx IN varRemData.FIRST .. varRemData.LAST
    INSERT INTO v_TEST_TABLE VALUES varRemData(idx) LOG ERRORS INTO dbcompare.ERR$_TEST_TABLE ('INSERT') REJECT LIMIT UNLIMITED;
    EXCEPTION WHEN others THEN
    DBMS_OUTPUT.put_line('ErrorCode: '||SQLCODE);
    END;
    COMMIT;
    end;
    I've reviewed Oracle's documentation on both DML logging tools and neither has any restrictions (at least that I can see) that would prevent this from working correctly.
    Any help would be appreciated....
    Thanks,
    Steve

    Thanks, obviously this is my first post, I'm desperate to figure out why this won't work....
    This code I sent is only a test proc to try and troubleshoot the issue, the others with the debug statement is only to capture the insert failing and not aggregating the errors, that won't be in the real proc.....
    Thanks,
    Steve

  • Error about the dll crdb_dao.dll - In Event Viewer - Application log

    We have classic ASP application and we are using Crystal XI for reports viewing and printing. We are keep getting the following error logged in the event view application log.
    Faulting application dllhost.exe, version 5.2.3790.3959, faulting module crdb_dao.dll, version 11.0.0.1282, fault address 0x0001b130.
    What is Causing this error. When this happens, the components stops responding and we have re-start the server.

    Hi ABC,
    CR XI is past it's patch life cycle so all I can suggest is you download the last Service Pack and test again. If it still happens then you can update to XI R2 and try again.
    You can get to downloads from here: http://service.sap.com/sap/bc/bsp/spn/bobj_download/main.htm
    And to upgrade go to this link: http://www.sdn.sap.com/irj/boc and download the trial version of CR XI R2 and use your XI keycode, then apply the patches which you can get to by clicking on the BusinessObjects tab above, then Downloads.
    Direct link to the Trial version: http://www.sap.com/solutions/sapbusinessobjects/sme/freetrials/index.epx
    Thank you
    Don

  • Help, How to view the error log of oracle Job

    Hi all,
    I created a job in my database, which clears the archivelog. After the job is executed, it occurs error.Such as :
    RMAN清理归档日志 1 问题 2010-3-19 下午03时11分00秒 GMT+08:00 PTDB 数据库实例 SYSTEM RMAN 脚本
    How to view the error log of oracle Job?
    Thank you.
    Eric Zhou

    Hello,
    Besides some views (with the scheduler) that you can get on the link below:
    http://download-west.oracle.com/docs/cd/B28359_01/server.111/b28310/scheduse002.htm#CHDGIDFD
    You may use the LOG parameter with RMAN so as to generate a logfile on the server.
    Also from EM DBConsole (starting with 10g) you may have the RMAN Backup Report.
    Hope this help.
    Best regards,
    Jean-Valentin

  • View request log error

    Hi Hussein,
    While trying to view the log of a particular request, the screen is comming blank and an error window pops up as
    * An error occured while attempting to establish an application file server connection with the node <node_name>. there may be network configuration problem or the TNS listener on the node may not be running*
    The user is able to view all the request except these few request,
    please suggest
    Bilal

    Bilal,
    the user is able to see now these out and log files from front end but I have to give the root cause from this error, any ideaThey can view it now? If yes, what changes have been done?
    Regards,
    Hussein

  • How do I view system error log?

    My external backup drive keeps getting ejected and I want to see if the system error log could give me an idea why this is happening. How do I access error messages?

    In your Utilities folder (inside the Applications folder) is Console. Launch it. In the left-hand contents pane, select system.log and it will appear in the main pane, with the newest entries at the top:
    It will help us if you edit your equipment profile. "iOS" as currently shown cannot run on any Mac computer. Doing "About this Mac" from your Apple menu will reveal your true Mac OSX version. Thanks.
    AJ

  • How to view errors if bulk collect has thrown errors

    Hi,
    I have few questions.
    1.How to view error whether bulk collect is successful or not
    2.What is identified & unidentified relationships in ERWIN
    3.How to see the errors whether the sql loder is successful or not
    and how to open the log file.Is there any specific command in UNIX
    which tells loader is successful or thrown error
    4.When executing the pl/sql procedure from UNIX.how to check for errors.
    Please provide the answers for this
    Thanks

    Use SAVE EXCEPTIONS clause in your FORALL loop.
    Is this for homework/test?

  • Error logs in job releases forecast from DP to SNP-"Matl does not exist"

    Hi Everyone,
    I am facing error logs in the batch job which releases forecast from DP to SNP
    Forecast release job - Weekly - Through background job
    Forecast category - FA
    Error 1: - Characteristic combination appears on batch job log with an error that
    "GMC does not exist " Even though it exist in R/3 and APO
    All products with error message "Product does not exist" from do exist and have Forecast in Product View
    Error 2: - Deleted KCC keep showing up on the Demand Forecast release job log as errors even though they are invalid KCC and were deleted previously. How do they get removed from error log so they don't get created again
    Material does not exist on the APO Product Master, in R3 there is a delete flag and the MRP type is set to X1 ,it does not exist in the APO Product Master and does not exist in R3.
    Request you to kindly provide any way forward which may be causing error logs of the job
    Thanks in advance,
    Mrigendra Sharma

    Hi Mrigendra,
    Please re-initialize the SNP planning area (program : /SAPAPO/TS_PAREA_INITIALIZE) and then check the consistency by executing the program: /SAPAPO/TS_LCM_CONS_CHECK. If you observe any inconsistency in the log/spool, then re-run the program: /SAPAPO/TS_LCM_CONS_CHECK to observe all green.
    It is recommended to run the consistency program after any master data change. The initialization program should be run at least weekly.
    Try transfering the data again from DP to SNP to see if the error reappear.
    Hope this helps.
    Regards,
    Nawanit

  • Ical crashes with error log

    When i'm trying to start Ical on my Imac with intel i3 10.6.8, sice today it crasshes.
    The next error log is shown after Ical was closed:
    Process:         iCal [229]
    Path:            /Applications/iCal.app/Contents/MacOS/iCal
    Identifier:      com.apple.iCal
    Version:         4.0.4 (1395.7)
    Build Info:      iCal-13950700~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [96]
    Date/Time:       2012-07-06 10:33:32.316 +0200
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          6840 sec
    Crashes Since Last Report:           9
    Per-App Interval Since Last Report:  1214 sec
    Per-App Crashes Since Last Report:   9
    Anonymous UUID:                      1388268B-54D2-4ED1-A67D-081D3B0333F2
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread:  4  Dispatch queue: com.apple.root.default-priority
    Application Specific Information:
    abort() called
    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Thread <NSThread: 0x1169a7180>{name = (null), num = 42} is not prepared to receive inter-thread messages.  You must invoke +prepareForInterThreadMessages first.'
    *** Call stack at first throw:
              0   CoreFoundation                      0x00007fff81858784 __exceptionPreprocess + 180
              1   libobjc.A.dylib                     0x00007fff869b6f03 objc_exception_throw + 45
              2   CoreFoundation                      0x00007fff818585a7 +[NSException raise:format:arguments:] + 103
              3   CoreFoundation                      0x00007fff81858534 +[NSException raise:format:] + 148
              4   DAVKit                              0x00007fff830794fd postMessage + 214
              5   DAVKit                              0x00007fff83077185 -[AYOperation notifyWithName:infos:] + 253
              6   DAVKit                              0x00007fff83078edd +[AYOperation _dispatchNextOperationInQueue] + 512
              7   DAVKit                              0x00007fff8307814b __+[AYOperation _queueOneBlock]_block_invoke_1 + 94
              8   libSystem.B.dylib                   0x00007fff87ac2d64 _dispatch_call_block_and_release + 15
              9   libSystem.B.dylib                   0x00007fff87aa12d1 _dispatch_worker_thread2 + 239
              10  libSystem.B.dylib                   0x00007fff87aa0c08 _pthread_wqthread + 353
              11  libSystem.B.dylib                   0x00007fff87aa0aa5 start_wqthread + 13
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                         0x00007fff869b3d5e _class_getInstanceSize + 22
    1   libobjc.A.dylib                         0x00007fff869b3dde _internal_class_createInstanceFromZone + 47
    2   com.apple.CoreFoundation                0x00007fff817d0b39 +[NSObject(NSObject) allocWithZone:] + 25
    3   com.apple.AppKit                        0x00007fff8961a9fa -[NSTableView drawRect:] + 628
    4   com.apple.AppKit                        0x00007fff89610cc5 -[NSView _drawRect:clip:] + 3390
    5   com.apple.AppKit                        0x00007fff8960f938 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1325
    6   com.apple.AppKit                        0x00007fff8960fca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    7   com.apple.AppKit                        0x00007fff8960fca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    8   com.apple.AppKit                        0x00007fff8960fca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    9   com.apple.AppKit                        0x00007fff8960e00a -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 767
    10  com.apple.AppKit                        0x00007fff8960eed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    11  com.apple.AppKit                        0x00007fff8960eed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    12  com.apple.AppKit                        0x00007fff8960eed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    13  com.apple.AppKit                        0x00007fff8960db2c -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 254
    14  com.apple.AppKit                        0x00007fff8960a3de -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2683
    15  com.apple.AppKit                        0x00007fff89583c0e -[NSView displayIfNeeded] + 969
    16  com.apple.AppKit                        0x00007fff8957eaba _handleWindowNeedsDisplay + 678
    17  com.apple.CoreFoundation                0x00007fff81817b07 __CFRunLoopDoObservers + 519
    18  com.apple.CoreFoundation                0x00007fff817f3434 __CFRunLoopRun + 468
    19  com.apple.CoreFoundation                0x00007fff817f2d8f CFRunLoopRunSpecific + 575
    20  com.apple.HIToolbox                     0x00007fff84bc77ee RunCurrentEventLoopInMode + 333
    21  com.apple.HIToolbox                     0x00007fff84bc7551 ReceiveNextEventCommon + 148
    22  com.apple.HIToolbox                     0x00007fff84bc74ac BlockUntilNextEventMatchingListInMode + 59
    23  com.apple.AppKit                        0x00007fff89553eb2 _DPSNextEvent + 708
    24  com.apple.AppKit                        0x00007fff89553801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    25  com.apple.AppKit                        0x00007fff8951968f -[NSApplication run] + 395
    26  com.apple.AppKit                        0x00007fff895123b0 NSApplicationMain + 364
    27  com.apple.iCal                          0x00000001000027cc 0x100000000 + 10188
    28  com.apple.iCal                          0x00000001000a4654 0x100000000 + 673364
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x00007fff87a9fc0a kevent + 10
    1   libSystem.B.dylib                       0x00007fff87aa1add _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x00007fff87aa17b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x00007fff87aa12de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x00007fff87aa0c08 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x00007fff87aa0aa5 start_wqthread + 13
    Thread 2:  com.apple.CFSocket.private
    0   libSystem.B.dylib                       0x00007fff87aca932 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x00007fff81815468 __CFSocketManager + 824
    2   libSystem.B.dylib                       0x00007fff87abffd6 _pthread_start + 331
    3   libSystem.B.dylib                       0x00007fff87abfe89 thread_start + 13
    Thread 3:
    0   libSystem.B.dylib                       0x00007fff87ac1a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff87ac18f9 nanosleep + 148
    2   libSystem.B.dylib                       0x00007fff87ac1863 usleep + 57
    3   com.apple.AppKit                        0x00007fff8969f3a1 -[NSUIHeartBeat _heartBeatThread:] + 1540
    4   com.apple.Foundation                    0x00007fff83b36114 __NSThread__main__ + 1429
    5   libSystem.B.dylib                       0x00007fff87abffd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff87abfe89 thread_start + 13
    Thread 4 Crashed:  Dispatch queue: com.apple.root.default-priority
    0   libSystem.B.dylib                       0x00007fff87af99ce __semwait_signal_nocancel + 10
    1   libSystem.B.dylib                       0x00007fff87af98d0 nanosleep$NOCANCEL + 129
    2   libSystem.B.dylib                       0x00007fff87b563ce usleep$NOCANCEL + 57
    3   libSystem.B.dylib                       0x00007fff87b75a00 abort + 93
    4   libstdc++.6.dylib                       0x00007fff8697b5d2 __tcf_0 + 0
    5   libobjc.A.dylib                         0x00007fff869bab39 _objc_terminate + 100
    6   libstdc++.6.dylib                       0x00007fff86979ae1 __cxxabiv1::__terminate(void (*)()) + 11
    7   libstdc++.6.dylib                       0x00007fff86979b16 __cxxabiv1::__unexpected(void (*)()) + 0
    8   libstdc++.6.dylib                       0x00007fff86979bfc __gxx_exception_cleanup(_Unwind_Reason_Code, _Unwind_Exception*) + 0
    9   libobjc.A.dylib                         0x00007fff869b6fa2 object_getIvar + 0
    10  com.apple.CoreFoundation                0x00007fff818585a7 +[NSException raise:format:arguments:] + 103
    11  com.apple.CoreFoundation                0x00007fff81858534 +[NSException raise:format:] + 148
    12  com.apple.DAVKit                        0x00007fff830794fd postMessage + 214
    13  com.apple.DAVKit                        0x00007fff83077185 -[AYOperation notifyWithName:infos:] + 253
    14  com.apple.DAVKit                        0x00007fff83078edd +[AYOperation _dispatchNextOperationInQueue] + 512
    15  com.apple.DAVKit                        0x00007fff8307814b __+[AYOperation _queueOneBlock]_block_invoke_1 + 94
    16  libSystem.B.dylib                       0x00007fff87ac2d64 _dispatch_call_block_and_release + 15
    17  libSystem.B.dylib                       0x00007fff87aa12d1 _dispatch_worker_thread2 + 239
    18  libSystem.B.dylib                       0x00007fff87aa0c08 _pthread_wqthread + 353
    19  libSystem.B.dylib                       0x00007fff87aa0aa5 start_wqthread + 13
    Thread 5:
    0   libSystem.B.dylib                       0x00007fff87aa0a2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff87aa0e3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff87aa0aa5 start_wqthread + 13
    Thread 4 crashed with X86 Thread State (64-bit):
      rax: 0x000000000000003c  rbx: 0x00000001037a8b20  rcx: 0x00000001037a8ad8  rdx: 0x0000000000000001
      rdi: 0x0000000000000c03  rsi: 0x0000000000000000  rbp: 0x00000001037a8b10  rsp: 0x00000001037a8ad8
       r8: 0x0000000000000000   r9: 0x0000000000989680  r10: 0x0000000000000001  r11: 0x0000000000000246
      r12: 0x0000000000000000  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000000000000
      rip: 0x00007fff87af99ce  rfl: 0x0000000000000247  cr2: 0x0000000058a43000
    Binary Images:
           0x100000000 -        0x1002d6fef  com.apple.iCal 4.0.4 (1395.7) <063A7FEF-C2D3-246E-D6CB-C9A3E75DFB4B> /Applications/iCal.app/Contents/MacOS/iCal
        0x7fff5fc00000 -     0x7fff5fc3be0f  dyld 132.1 (???) <29DECB19-0193-2575-D838-CF743F0400B2> /usr/lib/dyld
        0x7fff80003000 -     0x7fff80005fff  com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff80006000 -     0x7fff80006ff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff80083000 -     0x7fff801e3ff7  com.apple.syncservices 5.2 (578.3) <F86C878E-8B5E-DBCE-8592-7AF88DE53261> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
        0x7fff801e4000 -     0x7fff80244fe7  com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8027c000 -     0x7fff80507fef  com.apple.JavaScriptCore 6534.52 (6534.52.7) <C8340CAE-B6AC-BCBB-24AB-A6B8B1276C23> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff80508000 -     0x7fff80646fff  com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff80647000 -     0x7fff80670ff7  com.apple.speech.LatentSemanticMappingFramework 2.7.2 (2.7.2) <778F7753-F0DD-5B89-0908-B2EC9B66B30A> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
        0x7fff80681000 -     0x7fff807a9ff7  com.apple.MediaToolbox 0.484.60 (484.60) <F921A5E6-E260-03B4-1458-E5814FA1924D> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff807b9000 -     0x7fff807e4ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <8AB4CA9E-435A-33DA-7041-904BA7FA11D5> /usr/lib/libxslt.1.dylib
        0x7fff807e5000 -     0x7fff80828ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <5FF3D7FD-84D8-C5FA-D640-90BB82EC651D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff80829000 -     0x7fff80940fef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib
        0x7fff80964000 -     0x7fff80965ff7  com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff80c65000 -     0x7fff80ce2fef  com.apple.backup.framework 1.2.2 (1.2.2) <CD3554D8-DA47-DDBC-910C-B2F1DE3B8CA6> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff80ce3000 -     0x7fff80d7dfff  com.apple.ApplicationServices.ATS 275.19 (???) <2DE8987F-4563-4D8E-45C3-2F6F786E120D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff80d7e000 -     0x7fff80da6fff  com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff80da7000 -     0x7fff80da7ff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff80da8000 -     0x7fff80dbdff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <1AE1FE8F-2204-4410-C94E-0E93B003BEDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8162c000 -     0x7fff8164dfff  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <9410EC7F-4D24-6740-AFEE-90405750FAD7> /usr/lib/libresolv.9.dylib
        0x7fff8164e000 -     0x7fff816ccff7  com.apple.CoreText 151.12 (???) <5BE797B7-C903-B664-ADD9-7514B1A6EF9E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff816f2000 -     0x7fff816f8fff  libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <D2F8C7E3-CBA1-2E66-1376-04AA839DABBB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff816f9000 -     0x7fff81734fff  com.apple.AE 496.5 (496.5) <208DF391-4DE6-81ED-C697-14A2930D1BC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff81735000 -     0x7fff817a6ff7  com.apple.AppleVAFramework 4.10.27 (4.10.27) <6CDBA3F5-6C7C-A069-4716-2B6C3AD5001F> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff817a7000 -     0x7fff8191efe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8191f000 -     0x7fff81960fff  com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8196a000 -     0x7fff819dcfef  com.apple.CoreSymbolication 2.0 (23) <06F8561E-4B36-7BF6-31BA-64091B3D8058> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff819dd000 -     0x7fff81b7afef  com.apple.WebKit 6534.52 (6534.52.7) <CE3B2C17-67CD-E5DA-1580-B08B10A8FFBB> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff81b7b000 -     0x7fff81b81ff7  IOSurface ??? (???) <8E302BB2-0704-C6AB-BD2F-C2A6C6A2E2C3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff81b82000 -     0x7fff81ba7ff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff81ba8000 -     0x7fff823b2fe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff823b3000 -     0x7fff82468fe7  com.apple.ink.framework 1.3.3 (107) <8C36373C-5473-3A6A-4972-BC29D504250F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff82491000 -     0x7fff824a2fff  com.apple.DSObjCWrappers.Framework 10.6 (134) <3C08225D-517E-2822-6152-F6EB13A4ADF9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
        0x7fff824a3000 -     0x7fff8255cfff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff825f2000 -     0x7fff8263dfef  com.apple.ImageCaptureCore 1.1 (1.1) <F23CA537-4F18-76FC-8D9C-ED6E645186FC> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff8263e000 -     0x7fff82685ff7  com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff82686000 -     0x7fff82686ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff826af000 -     0x7fff82dabff7  com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff82dac000 -     0x7fff82de9fff  com.apple.LDAPFramework 2.0 (120.1) <54A6769E-D7E2-DBE2-EA61-87B9EA355DA4> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff82dea000 -     0x7fff82fa8ff7  com.apple.ImageIO.framework 3.0.5 (3.0.5) <4CF96F2C-B7BB-4C57-E352-3C678CA2B2B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff82fa9000 -     0x7fff83049fff  com.apple.LaunchServices 362.3 (362.3) <B90B7C31-FEF8-3C26-BFB3-D8A48BD2C0DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8304a000 -     0x7fff83094ff7  com.apple.DAVKit 4.0.3 (732.2) <7DC4C8B4-9259-2D5D-BDA5-82F0DE3C95CA> /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
        0x7fff83095000 -     0x7fff83096fff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
        0x7fff83097000 -     0x7fff830a9fe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff830aa000 -     0x7fff830cdfff  com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff830ce000 -     0x7fff8317efff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8317f000 -     0x7fff833e8fff  com.apple.QuartzComposer 4.2 ({156.30}) <C05B97F7-F543-C329-873D-097177226D79> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff833e9000 -     0x7fff833ecfff  com.apple.help 1.3.2 (41.1) <BD1B0A22-1CB8-263E-FF85-5BBFDE3660B9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff833ed000 -     0x7fff833edff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff833ee000 -     0x7fff8341ffff  libGLImage.dylib ??? (???) <562565E1-AA65-FE96-13FF-437410C886D0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff83420000 -     0x7fff8342dfff  com.apple.NSServerNotificationCenter 3.0 (3.0) <FF7063D0-A25F-C22E-FA20-3225ADF089E2> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
        0x7fff8342e000 -     0x7fff834bafef  SecurityFoundation ??? (???) <3F1F2727-C508-3630-E2C1-38361841FCE4> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff834bb000 -     0x7fff83504fef  libGLU.dylib ??? (???) <B0F4CA55-445F-E901-0FCF-47B3B4BAE6E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8350d000 -     0x7fff83518ff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <3D65E89B-FFC6-4AAF-D5CC-104F967C8131> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff83519000 -     0x7fff8352dfff  libGL.dylib ??? (???) <2ECE3B0F-39E1-3938-BF27-7205C6D0358B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8352e000 -     0x7fff83638ff7  com.apple.MeshKitIO 1.1 (49.2) <C19D0CCD-1DCB-7EDE-76FA-BF74079AFC6A> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
        0x7fff83639000 -     0x7fff83837fe7  com.apple.CalendarStore 4.0.4 (997.7) <9A357B3C-F083-BEAA-4094-B00B423DDE47> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
        0x7fff83838000 -     0x7fff838bafff  com.apple.QuickLookUIFramework 2.3 (327.6) <9093682A-0E2D-7D27-5F22-C96FD00AE970> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff838bb000 -     0x7fff838c6fff  com.apple.CrashReporterSupport 10.6.7 (258) <A2CBB18C-BD1C-8650-9091-7687E780E689> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff838c7000 -     0x7fff838cdff7  com.apple.AOSNotification 1.2.0 (124) <19CCCD17-6888-58F3-17B6-7DC5D49276A4> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
        0x7fff838ce000 -     0x7fff838dafff  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <9AB864FA-9197-5D48-A0EC-EC8330D475FC> /usr/lib/libbz2.1.0.dylib
        0x7fff838e1000 -     0x7fff838e1ff7  com.apple.Carbon 150 (152) <23704665-E9F4-6B43-1115-2E69F161FC45> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff838e2000 -     0x7fff838e2ff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff838e3000 -     0x7fff8391cff7  com.apple.MeshKit 1.1 (49.2) <832A074D-7601-F7C9-6D3A-E1C58965C3A1> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
        0x7fff8391d000 -     0x7fff83965ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff83966000 -     0x7fff83b24fff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <4274FC73-A257-3A56-4293-5968F3428854> /usr/lib/libicucore.A.dylib
        0x7fff83b25000 -     0x7fff83da7fff  com.apple.Foundation 6.6.8 (751.63) <E10E4DB4-9D5E-54A8-3FB6-2A82426066E4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff83da8000 -     0x7fff83e08ff7  com.apple.ExchangeWebServices 1.3 (61) <7DB2989C-1362-8688-C73E-8405734A6566> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
        0x7fff83e09000 -     0x7fff83e46ff7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <F743389F-F25A-A77D-4FCA-D6B01AF2EE6D> /usr/lib/libssl.0.9.8.dylib
        0x7fff83e47000 -     0x7fff83eb1fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <AF0EA96D-000F-8C12-B952-CB7E00566E08> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff83eb2000 -     0x7fff83ebcfff  com.apple.DisplayServicesFW 2.3.3 (289) <97F62F36-964A-3E17-2A26-A0EEF63F4BDE> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff83eee000 -     0x7fff83f07fff  com.apple.CFOpenDirectory 10.6 (10.6) <401557B1-C6D1-7E1A-0D7E-941715C37BFA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff83fd3000 -     0x7fff83fd4ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <49B723D1-85F8-F86C-2331-F586C56D68AF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff83fd5000 -     0x7fff8403dfff  com.apple.MeshKitRuntime 1.1 (49.2) <4D3045D0-0D50-7053-3A05-0AECE86E39F8> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
        0x7fff8403e000 -     0x7fff84485fef  com.apple.RawCamera.bundle 3.7.1 (570) <5AFA87CA-DC3D-F84E-7EA1-6EABA8807766> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff84486000 -     0x7fff84543fff  com.apple.CoreServices.OSServices 359.2 (359.2) <BBB8888E-18DE-5D09-3C3A-F4C029EC7886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff84544000 -     0x7fff84663fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <14115D29-432B-CF02-6B24-A60CC533A09E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff84664000 -     0x7fff84673fff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff84674000 -     0x7fff8467aff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8467d000 -     0x7fff84684fff  com.apple.OpenDirectory 10.6 (10.6) <4FF6AD25-0916-B21C-9E88-2CC42D90EAC7> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff84685000 -     0x7fff846a5fef  com.apple.DotMacSyncManager 2.0.3 (446.9) <E8F9E7E2-A696-4111-C4FF-20AB5DFBC3FC> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
        0x7fff846a6000 -     0x7fff84a43fe7  com.apple.QuartzCore 1.6.3 (227.37) <16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff84a56000 -     0x7fff84a5aff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff84a5b000 -     0x7fff84a68fe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <1C35FA50-9C70-48DC-9E8D-2054F7A266B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff84a69000 -     0x7fff84a72ff7  com.apple.aps.framework 1.2 (1.2) <2E09D42F-2021-C995-44D0-B80AAAAA99E5> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff84b99000 -     0x7fff84e97fff  com.apple.HIToolbox 1.6.5 (???) <AD1C18F6-51CB-7E39-35DD-F16B1EB978A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff84e98000 -     0x7fff84e9fff7  com.apple.KerberosHelper 2.1 (1.0) <8BCCEA2D-7CE7-1B3E-F371-AB8485A1588F> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
        0x7fff84ea0000 -     0x7fff84ea4ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <DB710299-B4D9-3714-66F7-5D2964DE585B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff84ea5000 -     0x7fff84f34fff  com.apple.PDFKit 2.5.1 (2.5.1) <38BEE9BB-3716-49BA-7E14-687FE9E066EB> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff84f35000 -     0x7fff84f68ff7  libTrueTypeScaler.dylib ??? (???) <B7BA8104-FA18-39A2-56E1-922EE7A660AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff84f69000 -     0x7fff84fa3fff  com.apple.bom 10.0 (164) <E5C9AFBD-68C1-197E-72B0-B43295DC87DC> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff84fa4000 -     0x7fff84fa4ff7  com.apple.quartzframework 1.5 (1.5) <5BFE5998-26D9-0AF1-1522-55C78E41F778> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff84fa5000 -     0x7fff84fb6ff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <97019C74-161A-3488-41EC-A6CA8738418C> /usr/lib/libz.1.dylib
        0x7fff84fb7000 -     0x7fff84fb8fff  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
        0x7fff84fb9000 -     0x7fff84fcffe7  com.apple.MultitouchSupport.framework 207.11 (207.11) <8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff84fd0000 -     0x7fff8501cfff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff8501d000 -     0x7fff85060fef  libtidy.A.dylib ??? (???) <2F4273D3-418B-668C-F488-7E659D3A8C23> /usr/lib/libtidy.A.dylib
        0x7fff85061000 -     0x7fff850c3fe7  com.apple.datadetectorscore 2.0 (80.7) <34592AFF-B1B8-2277-B013-70193E4E1691> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff850c4000 -     0x7fff85109fff  com.apple.CoreMediaIOServices 140.0 (1496) <D93293EB-0B84-E97D-E78C-9FE8D48AF58E> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
        0x7fff8527c000 -     0x7fff852bafe7  libFontRegistry.dylib ??? (???) <395D7C0D-36B5-B353-0DC8-51ABC0B1C030> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff852bb000 -     0x7fff8530aff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <0731C40D-71EF-B417-C83B-54C3527A36EA> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
        0x7fff8530b000 -     0x7fff8530eff7  libCoreVMClient.dylib ??? (???) <75819794-3B7A-8944-D004-7EA6DD7CE836> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8530f000 -     0x7fff85413ff7  com.apple.PubSub 1.0.5 (65.28) <0C94CB22-B6B6-F37A-A4FD-A33BB2A29996> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
        0x7fff8542d000 -     0x7fff85433ff7  com.apple.CommerceCore 1.0 (9.1) <3691E9BA-BCF4-98C7-EFEC-78DA6825004E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff85464000 -     0x7fff85466fef  com.apple.ExceptionHandling 1.5 (10) <F2867B93-A56A-974F-9556-266BCE394057> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
        0x7fff85467000 -     0x7fff85472fff  com.apple.dotMacLegacy 3.2 (266) <80F00DE2-4C50-0FD9-5C6E-3EAA1599277B> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
        0x7fff85473000 -     0x7fff85550fff  com.apple.vImage 4.1 (4.1) <C3F44AA9-6F71-0684-2686-D3BBC903F020> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8557e000 -     0x7fff857c0fe7  com.apple.AddressBook.framework 5.0.4 (883) <3C634319-4B5B-592B-2D3A-A16336F93AA0> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff857c1000 -     0x7fff85802fef  com.apple.CoreMedia 0.484.60 (484.60) <6B73A514-C4D5-8DC7-982C-4E4F0231ED77> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff85803000 -     0x7fff85832ff7  com.apple.quartzfilters 1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff85833000 -     0x7fff86865fef  com.apple.WebCore 6534.52 (6534.52.11) <78740DDE-7B9C-92EC-9CF6-C8DD1815B609> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff86898000 -     0x7fff86928fff  com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff86929000 -     0x7fff8692efff  libGIF.dylib ??? (???) <1888A176-22D5-C663-22D0-336D9D213BD6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8692f000 -     0x7fff869acfef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff869ad000 -     0x7fff86a63ff7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib
        0x7fff86a64000 -     0x7fff86a67ff7  com.apple.securityhi 4.0 (36638) <AEF55AF1-54D3-DB8D-27A7-E16192E0045A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff86a68000 -     0x7fff86a75ff7  com.apple.AppleFSCompression 24.4 (1.0) <56B27685-B6A7-7FD7-85F3-402C4E0C988E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff86a76000 -     0x7fff86ac9ff7  com.apple.HIServices 1.8.3 (???) <F6E0C7A7-C11D-0096-4DDA-2C77793AA6CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff86aca000 -     0x7fff86d04fef  com.apple.imageKit 2.0.3 (1.0) <9EA216AF-82D6-201C-78E5-D027D85B51D6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff86d05000 -     0x7fff86d0afff  libGFXShared.dylib ??? (???) <6BBC351E-40B3-F4EB-2F35-05BDE52AF87E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff86d0b000 -     0x7fff86d87ff7  com.apple.ISSupport 1.9.7 (55) <BAE839AB-9DBD-FB23-F1F1-39445F04D8DA> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff86d88000 -     0x7fff86e0dff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff86e0e000 -     0x7fff86e57ff7  com.apple.securityinterface 4.0.1 (40418) <77FDB498-B502-050C-6AF4-1DAB17F64B6F> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff876a0000 -     0x7fff8771ffe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff87720000 -     0x7fff87720ff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff87751000 -     0x7fff8778bfff  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <539EBFDD-96D6-FB07-B128-40232C408757> /usr/lib/libcups.2.dylib
        0x7fff8778c000 -     0x7fff87871fef  com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff87872000 -     0x7fff878defe7  com.apple.CorePDF 1.4 (1.4) <06AE6D85-64C7-F9CC-D001-BD8BAE31B6D2> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff87997000 -     0x7fff8799cff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff87a6a000 -     0x7fff87a85ff7  com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff87a86000 -     0x7fff87c47fef  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
        0x7fff87c48000 -     0x7fff8814eff7  com.apple.VideoToolbox 0.484.60 (484.60) <F55EF548-56E4-A6DF-F3C9-6BA4CFF5D629> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff8814f000 -     0x7fff88284fff  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <F4814A13-E557-59AF-30FF-E62929367933> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff88351000 -     0x7fff88694fff  com.apple.MessageFramework 4.5 (1084) <C291835F-FD0E-443D-05BA-3DC0A1634E0C> /System/Library/Frameworks/Message.framework/Versions/B/Message
        0x7fff88695000 -     0x7fff886e4fef  libTIFF.dylib ??? (???) <2DDC5A18-35EE-5B59-10D8-0F6925DB3858> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff886e5000 -     0x7fff887a7fe7  libFontParser.dylib ??? (???) <EF06F16C-0CC9-B4CA-7BD9-0A97FA967340> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff888a1000 -     0x7fff888c8ff7  libJPEG.dylib ??? (???) <921A3A14-A69B-F393-1678-5A5D32D4BDF2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff888c9000 -     0x7fff88907fef  com.apple.DebugSymbols 1.1 (70) <C3D11461-E118-09DB-D9D7-8972B3FD160F> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff88b0f000 -     0x7fff88b66fff  com.apple.Symbolication 1.1 (67) <73B6FC15-9E05-69E2-2955-14F82F9BC337> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff88b67000 -     0x7fff88b69fff  libRadiance.dylib ??? (???) <E08CD209-E3E4-2753-AF8A-90DD12ED556F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff88b6a000 -     0x7fff88b87ff7  libPng.dylib ??? (???) <A6D093D2-CA9D-2035-9C11-0AE98585C6F1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff88bcb000 -     0x7fff88be2fff  com.apple.ImageCapture 6.1 (6.1) <79AB2131-2A6C-F351-38A9-ED58B25534FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff88c18000 -     0x7fff88d32fff  libGLProgrammability.dylib ??? (???) <D1650AED-02EF-EFB3-100E-064C7F018745> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff88d33000 -     0x7fff88d49fef  libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
        0x7fff88d4a000 -     0x7fff88d9fff7  com.apple.framework.familycontrols 2.0.2 (2020) <8807EB96-D12D-8601-2E74-25784A0DE4FF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff88da0000 -     0x7fff88e61fef  com.apple.ColorSync 4.6.8 (4.6.8) <7DF1D175-6451-51A2-DBBF-40FCA78C0D2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff88e62000 -     0x7fff88ea9fff  com.apple.QuickLookFramework 2.3 (327.6) <11DFB135-24A6-C0BC-5B97-ECE352A4B488> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff88eaa000 -     0x7fff88f7efe7  com.apple.CFNetwork 454.12.4 (454.12.4) <C83E2BA1-1818-B3E8-5334-860AD21D1C80> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff88f7f000 -     0x7fff88f8efef  com.apple.opengl 1.6.14 (1.6.14) <ECAE2D12-5BE3-46E7-6EE5-563B80B32A3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff88f9b000 -     0x7fff893defef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C

    Mail account > network account, yes.
    This is the log of the Console
    The error with unauthorized accounts/passwords, comes because on the account we changed the password.
    7/6/12 4:22:40 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:40.290 [iCal:2175] ERROR (AYOPERATION): <[Request 0x118033f80] PROPFIND /principals/__uids__/395E4C1F-CEE4-4330-BC11-3B72AEF1C5AE/ (for <DAVSession 0x1019c4c90(SERVER ADDRESS)>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101ba1f90 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b862b0 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:40 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:40.315 [iCal:2175] ERROR (AYOPERATION): <[Request 0x118033f80] PROPFIND /principals/__uids__/1E9C1426-DFDD-451F-BCAC-BEA41D33CCD7/ (for <DAVSession 0x1163442c0 SERVER ADDRESS>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x116540cf0 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x10196ef00 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:40 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:40.419 [iCal:2175] ERROR (AYOPERATION): <[Request 0x1165001d0] PROPFIND /principals/__uids__/7EB9A32E-0940-4A7D-BF8E-980C3C5F6596/ (for <DAVSession 0x1019e4590 SERVER ADDRESS>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101bacae0 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101bc6df0 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:40 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:40.524 [iCal:2175] ERROR (AYOPERATION): <[Request 0x1165001d0] PROPFIND /principals/__uids__/B8AD2ED7-5056-477D-B316-C102AAA199C4/ (for <DAVSession 0x1163135a0 SERVER ADDRESS>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101bbc870 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b86080 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:40 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:40.627 [iCal:2175] ERROR (AYOPERATION): <[Request 0x1165001d0] PROPFIND /principals/__uids__/4ACD2BC1-37BC-4BAE-9C16-A3DEE043B52F/ (for <DAVSession 0x11635b270 SERVER ADDRESS>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x118002460 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b86080 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:40 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:40.732 [iCal:2175] ERROR (AYOPERATION): <[Request 0x1165001d0] PROPFIND /principals/__uids__/CA598031-091D-4757-86D1-BAF64BEAEB51/ (for <DAVSession 0x1019eda00 SERVER ADDRESS>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101bad9e0 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b24a50 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:40 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:40.960 [iCal:2175] ERROR (AYOPERATION): <[Request 0x1165001d0] PROPFIND /principals/__uids__/16C46998-F75D-4A35-9E84-11978C2FDE67/ (for <DAVSession 0x11635b890 SERVER ADDRESS>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b69c10 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x11702fa40 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:40 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:40.977 [iCal:2175] ERROR (AYOPERATION): <[Request 0x116508c00] PROPFIND /principals/__uids__/AC8C4E8C-7190-45E9-94A3-67079CB2E7DE/ (for <DAVSession 0x1163f9380 SERVER ADDRESS>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101ba3720 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b9ca50 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:41 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:41.040 [iCal:2175] ERROR (AYOPERATION): <[Request 0x116508c00] PROPFIND /principals/__uids__/37A0E0D6-C383-4071-8005-086B147D8B68/ (for <DAVSession 0x11635c220 https://mail.trinite.nl/>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b83990 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b9ca50 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:41 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:41.144 [iCal:2175] ERROR (AYOPERATION): <[Request 0x116508c00] PROPFIND /principals/__uids__/A477C8B6-6413-4E11-A5B3-684917E3D51C/ (for <DAVSession 0x116359440 https://mail.trinite.nl/>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b7f450 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101ba66e0 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:41 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:41.248 [iCal:2175] ERROR (AYOPERATION): <[Request 0x116508c00] PROPFIND /principals/__uids__/0E703019-155D-4B74-8054-5C30F354DC49/ (for <DAVSession 0x116347860 https://mail.trinite.nl/>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b7def0 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b6eb50 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:41 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:41.351 [iCal:2175] ERROR (AYOPERATION): <[Request 0x116508c00] PROPFIND /principals/__uids__/F2118006-FB38-4B57-AD2A-DAF2AD75011F/ (for <DAVSession 0x11631e800 https://mail.trinite.nl/>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b72a50 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b77030 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:41 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:41.461 [iCal:2175] ERROR (AYOPERATION): <[Request 0x116508c00] PROPFIND /principals/__uids__/A41A50F1-3D87-4A9E-AE6F-F3B43F003963/ (for <DAVSession 0x116359930 SERVER ADDRESS>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101bc55c0 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b8d8f0 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:41 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:41.630 [iCal:2175] ERROR (AYOPERATION): <[Request 0x116508c00] PROPFIND /principals/__uids__/2DEDB61B-CF41-4E0A-A959-A26F1FCC59EC/ (for <DAVSession 0x10193c990 SERVER ADDRESS>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b73b10 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b70200 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:41 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:41.668 [iCal:2175] ERROR (AYOPERATION): <[Request 0x116508c00] PROPFIND /principals/__uids__/5F06B255-AD07-4D0A-9366-129FA31A6354/ (for <DAVSession 0x10198ac50 SERVER ADDRESS>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b77720 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101bbe840 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:42 PM          iCal[2175]          CalDAV CalDAVAccountRefreshQueueableOperation failed: status 'HTTP/1.1 401 Unauthorized' request:
    <?xml version="1.0" encoding="utf-8"?>
    <x0:propfind xmlns:x1="urn:ietf:params:xml:ns:caldav" xmlns:x0="DAV:" xmlns:x2="http://calendarserver.org/ns/">
    <x0:prop>
      <x0:principal-collection-set/>
      <x1:calendar-home-set/>
      <x1:calendar-user-address-set/>
      <x1:schedule-inbox-URL/>
      <x1:schedule-outbox-URL/>
      <x2:dropbox-home-URL/>
      <x2:xmpp-uri/>
      <x2:notification-URL/>
      <x0:displayname/>
      <x0:principal-URL/>
      <x0:supported-report-set/>
    </x0:prop>
    </x0:propfind>
    ... response:
    HTTP/1.1 401 Unauthorized
    Date: Fri, 06 Jul 2012 14:22:40 GMT
    Server: Twisted/8.2.0 TwistedWeb/8.2.0
    Content-Length: 141
    Dav: 1, access-control, calendar-access, calendar-schedule, calendar-auto-schedule, calendar-availability, inbox-availability, calendar-proxy, calendarserver-private-events, calendarserver-private-comments, calendarserver-principal-property-search
    Content-Type: text/html
    Www-Authenticate: digest nonce="655567066705680629856015390420100222343823624532540240874", realm="/Search", algorithm="md5"
    Cache-Control: max-age=60
    Expires: Fri, 06 Jul 2012 14:23:40 GMT
    Ms-Author-Via: DAV
    X-Frame-Options: SameOrigin
    X-Ua-Compatible: IE=EmulateIE7
    Keep-Alive: timeout=15, max=500
    Connection: Keep-Alive
    7/6/12 4:22:42 PM          iCal[2175]          CalDAV CalDAVAccountRefreshQueueableOperation failed: status 'HTTP/1.1 401 Unauthorized' request:
    <?xml version="1.0" encoding="utf-8"?>
    <x0:propfind xmlns:x1="urn:ietf:params:xml:ns:caldav" xmlns:x0="DAV:" xmlns:x2="http://calendarserver.org/ns/">
    <x0:prop>
      <x0:principal-collection-set/>
      <x1:calendar-home-set/>
      <x1:calendar-user-address-set/>
      <x1:schedule-inbox-URL/>
      <x1:schedule-outbox-URL/>
      <x2:dropbox-home-URL/>
      <x2:xmpp-uri/>
      <x2:notification-URL/>
      <x0:displayname/>
      <x0:principal-URL/>
      <x0:supported-report-set/>
    </x0:prop>
    </x0:propfind>
    ... response:
    HTTP/1.1 401 Unauthorized
    Date: Fri, 06 Jul 2012 14:22:40 GMT
    Server: Twisted/8.2.0 TwistedWeb/8.2.0
    Content-Length: 141
    Dav: 1, access-control, calendar-access, calendar-schedule, calendar-auto-schedule, calendar-availability, inbox-availability, calendar-proxy, calendarserver-private-events, calendarserver-private-comments, calendarserver-principal-property-search
    Content-Type: text/html
    Www-Authenticate: digest nonce="86233837381709637792687613964965059846593283836775444391", realm="/Search", algorithm="md5"
    Cache-Control: max-age=60
    Expires: Fri, 06 Jul 2012 14:23:40 GMT
    Ms-Author-Via: DAV
    X-Frame-Options: SameOrigin
    X-Ua-Compatible: IE=EmulateIE7
    Keep-Alive: timeout=15, max=500
    Connection: Keep-Alive
    7/6/12 4:22:43 PM          iCal[2175]          CalDAV CalDAVAccountRefreshQueueableOperation failed: status 'HTTP/1.1 401 Unauthorized' request:
    <?xml version="1.0" encoding="utf-8"?>
    <x0:propfind xmlns:x1="urn:ietf:params:xml:ns:caldav" xmlns:x0="DAV:" xmlns:x2="http://calendarserver.org/ns/">
    <x0:prop>
      <x0:principal-collection-set/>
      <x1:calendar-home-set/>
      <x1:calendar-user-address-set/>
      <x1:schedule-inbox-URL/>
      <x1:schedule-outbox-URL/>
      <x2:dropbox-home-URL/>
      <x2:xmpp-uri/>
      <x2:notification-URL/>
      <x0:displayname/>
      <x0:principal-URL/>
      <x0:supported-report-set/>
    </x0:prop>
    </x0:propfind>
    ... response:
    HTTP/1.1 401 Unauthorized
    Date: Fri, 06 Jul 2012 14:22:41 GMT
    Server: Twisted/8.2.0 TwistedWeb/8.2.0
    Content-Length: 141
    Dav: 1, access-control, calendar-access, calendar-schedule, calendar-auto-schedule, calendar-availability, inbox-availability, calendar-proxy, calendarserver-private-events, calendarserver-private-comments, calendarserver-principal-property-search
    Content-Type: text/html
    Www-Authenticate: digest nonce="558077760900657414480520995007282074272601601878391817905", realm="/Search", algorithm="md5"
    Cache-Control: max-age=60
    Expires: Fri, 06 Jul 2012 14:23:41 GMT
    Ms-Author-Via: DAV
    X-Frame-Options: SameOrigin
    X-Ua-Compatible: IE=EmulateIE7
    Keep-Alive: timeout=15, max=500
    Connection: Keep-Alive
    7/6/12 4:22:45 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:45.672 [iCal:2175] ERROR (AYOPERATION): <[Request 0x1160ebd70] PROPFIND /principals/__uids__/395E4C1F-CEE4-4330-BC11-3B72AEF1C5AE/ (for <DAVSession 0x1019c4c90 SERVER ADDRESS>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x11702b170 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x117071440 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:45 PM          iCal[2175]          CalDAV CalDAVRefreshDelegateListQueueableOperation failed: status 'HTTP/1.1 401 Unauthorized' request:
    <?xml version="1.0" encoding="utf-8"?>
    <x0:propfind xmlns:x0="DAV:">
    <x0:prop>
      <x0:group-membership/>
    </x0:prop>
    </x0:propfind>
    ... response:
    HTTP/1.1 401 Unauthorized
    Date: Fri, 06 Jul 2012 14:22:45 GMT
    Server: Twisted/8.2.0 TwistedWeb/8.2.0
    Content-Length: 141
    Dav: 1, access-control, calendar-access, calendar-schedule, calendar-auto-schedule, calendar-availability, inbox-availability, calendar-proxy, calendarserver-private-events, calendarserver-private-comments, calendarserver-principal-property-search
    Content-Type: text/html
    Www-Authenticate: digest nonce="467035962767024934544068053588574762419090495224343160582", realm="/Search", algorithm="md5"
    Cache-Control: max-age=60
    Expires: Fri, 06 Jul 2012 14:23:45 GMT
    Ms-Author-Via: DAV
    X-Frame-Options: SameOrigin
    X-Ua-Compatible: IE=EmulateIE7
    Keep-Alive: timeout=15, max=500
    Connection: Keep-Alive

Maybe you are looking for