Logout WD4A application

Hello everyone,
After searching the forum, i've been able to exit my web dynpro application and close the browser window (using outbound plug of type 1 from window).
My problem is that if i open a new browser window and call my app url again, the system doesn't require new login, which is exactly what i wanted.
I saw somewhere someone explaining to navigate to a BSP page that would ultimately delete the session cookies. Can anyone explain how to do this procedure?
To close the app and browser i used this link:
/people/mohammed.anzys/blog/2007/06/05/how-to-close-parent-window-in-webdynpro-applications
                                   Thank you in advance for any help,
                                                         Nuno

Hi Nuno,
Which browser you are using? IE or Firefox..
Please check this...
http://help.sap.com/saphelp_nw04s/helpdata/en/fc/04a5421935c511e10000000a1550b0/frameset.htm
alsocheck this thread..
Re: How is session maintained with URL param sap-system-login-basic_auth=X
SSO2 Cookie deletion on session time out
Re: Reading Cookies from Webdynpro ABAP
Re: Delete ITS session
Cheers,
Kris.

Similar Messages

  • How to call a WD4A Application of another system

    Hi,
    I have the need to call a WebDynpro Application of another system via a URL call, thet the application should be opend in the CRM WebUI Window (statefull ) .
    Calling the application via a button event & transaction launcher works fine, but i need to call it from a BSP page. So my idea was to create an iframe, but this obviously opens a new window:
    <html>
      <head>
        <title>IFrames - Webdynpro Test</title>
      </head>
      <body>
        <iframe src=<%= lv_url_route %>"
          width="100%" height="500" scrolling="auto" frameborder="1" transparency>
              </iframe>
      </body>
    <html>
    Can anybody help?!?!
    Thanx & best regards,
    Oliver
    Edited by: Oliver Pregler on Jul 28, 2008 3:26 PM

    Hi Oliver,
    unfortunately I know nothing about BSP-Applications, but this is how I call my WD4A-Application using a FM from CRM:
    data: lr_empty_parent type ref to cl_gui_container,
          lr_viewer       type ref to cl_gui_html_viewer.
    data: lv_url(200)     type c.
    lv_url = 'http://www.xyz.com'.
      create object lr_viewer
        exporting
          parent             = lr_empty_parent
        exceptions
          cntl_error         = 1
          cntl_install_error = 2
          dp_install_error   = 3
          dp_error           = 4
          others             = 5.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                  with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
      lr_viewer->detach_url_in_browser(
        exporting
          url              = lv_url
        exceptions
          cntl_error       = 1
          dp_error_general = 2
          others           = 3 ).
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                   with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
      cl_gui_cfw=>flush( ).
    If it helps you - fine. If not - forget it
    Best regards
    Jörg Racz

  • How to change the browser title of standard SAP WD4A application - eRecruit

    Hi,
    I have a requirement to change browser title for standard SAP WD4A application hrrcf_a_candidate_registration. I know this value is used from application description filed.
    Current set up is 'Candidate Registration'. (WD Component HRRCF_C_REGISTER_UI)
    I tried to use enhancement framework technique and application customization/configuration - but was not successfull.
    I do not like the idea of changing the standard SAP object since it might be overwritten in future upgrade. And also I do not prefer to create z* copy of this application as well.
    Any ideas how to handle this request? Is dynamic modification of this property possible?
    Thanks for your feedback.
    Regards,
    Igor

    Hello,
    Did you try to change the description of the service in transaction SICF ?
    You can find the Webdynpro services under the tree /default_host/sap/bc/webdynpro/sap/.
    Regards,

  • Absolute Navigation between WD4J and WD4A applications

    All,
    I have a WD4J and a WD4A application that communicate with each other via absolute navigation and URL parameter.  I am finding that in some cases after calling the WD4J from my WD4A (via call method lr_port_manager->navigate_absolute), that the WD4A seems to remain "alive" such that when the WD4J again calls the WD4A it resumes to the view from which it left rather than calling the window startup plug to obtain the URL parameter.
    This happens consistently for some users, but not others even though the same exact user roles are assigned and the same exact data is used.  Furthermore, I do not make use of any Suspend/Resume or Exit plugs w/in the Window.
    I appreciate any thoughts/help,
    Chad

    Hi All,
    I solved it by adding the encoded parameter string
    &_paramsXmlStr_=<Params><Row BANK_CTRY="US" MAX_ROW="10"></Row></Params>
    to iView URL in the WDPortalNavigation.navigateAbsolute. Find the code below.
    WDPortalNavigation.navigateAbsolute(
    "ROLES://portal_content/myFolder/myiViews/myVCiView?&_paramsXmlStr_=<Params><Row BANK_CTRY="US" MAX_ROW="10"></Row></Params>",
    WDPortalNavigationMode.SHOW_INPLACE,
    (String) null,
    (String) null,
    WDPortalNavigationHistoryMode.NO_DUPLICATIONS,
    (String) null,
    (String) null,
    I did not pass the parameters as Business parameters(WebDynpro will chage these Business parameters as DynamicParameter).
    Thanks
    Sreekanth

  • Folder creation in MS sharepoint from WD4A application

    Hi All,
    We have a requirement to create folders in MS sharepoint from our WD4A applications. We need some guidence in achieving this functionality.
    Thanks in advance.
    Regards,
    Booma Ganesan

    Hi Viajy,
    I am using below code in the ABAP program, unfortunately it is not sucessfully create the folder in the application server. Please correct the below code, if any thing wrong.
    data: unixcom like   rlgrap-filename,
            dir  type char(30).
    data: begin of tabl occurs 500,
            line(400),
          end of tabl.
    dir = '/tmp/test'.
    tabl-line = dir.
    append tabl.
    unixcom = 'mkdir mydir'. "command to create dir
    "to execute the unix command
      call 'SYSTEM' id 'COMMAND' field unixcom
                    id 'TAB'     field tabl[].
    Please correcr if anything wrong in the code..

  • Set browser title in NW Portal via WD4A application

    Hi all,
    i have to set the browser title dynamically via a WD4A application, which is integrated in a NW Portal.
    The WD4A application runs in the main portal window, not in a separated one.
    All my trials to set the title failed...
    Does anybody know how to set the title?
    Regards
    Daniel

    Not sure about this one, what maybe you can use methods from interface IF_WD_PORTAL_INTEGRATION
    data LR_COMPONENTCONTROLLER type ref to IG_COMPONENTCONTROLLER .
    data L_API_COMPONENTCONTROLLER type ref to IF_WD_COMPONENT.
    data LR_PORT_MANAGER type ref to IF_WD_PORTAL_INTEGRATION.
    LR_COMPONENTCONTROLLER = WD_THIS->GET_COMPONENTCONTROLLER_CTR( ).
    L_API_COMPONENTCONTROLLER = LR_COMPONENTCONTROLLER->WD_GET_API( ).
    LR_PORT_MANAGER = L_API_COMPONENTCONTROLLER->GET_PORTAL_MANAGER( ).
    call method LR_PORT_MANAGER->NAVIGATE_ABSOLUTE
    exporting
    NAVIGATION_TARGET = NAVIGATION_DATA-TARGET
    NAVIGATION_MODE = NAVIGATION_DATA-NAVIGATION_MODE
    WINDOW_FEATURES = NAVIGATION_DATA-WINDOW_FEATURES
    WINDOW_NAME = NAVIGATION_DATA-WINDOW_NAME
    HISTORY_MODE = NAVIGATION_DATA-HISTORY_MODE
    TARGET_TITLE = NAVIGATION_DATA-TARGET_TITLE
    CONTEXT_URL = NAVIGATION_DATA-CONTEXT_URL
    POST_PARAMETERS = ABAP_FALSE
    USE_SAP_LAUNCHER = ABAP_TRUE
    BUSINESS_PARAMETERS = BUS_PARAMETER_LIST
    LAUNCHER_PARAMETERS = LAUNCHER_PARAMETER_LIST.
    But I'm not sure when or where to use this.

  • Debug a WD4A application

    Hello to all,
    how can I debug a WD4A application.
    If I set an external breakpoint in SE80 the requested application dumps.
    Regards Christian

    Hello,
    I have never came across this kind of issue like just setting a external break point in SE80 code results in a dump.
    I think this is the only way to debug the WD4A to put a breakpoint in code in se80.
    May be some one has came across this issue before will come up with the answer.
    Thanks
    Pradeep

  • WD4A application FPM framework - Explicit Configuration

    Hi All,
    Have been following FPM for ABAP - Developer's guide, to develop a test WD4A application with FPM framework. After creating the Webdynpro Component and Application while trying to change the Component Configuration, the tab 'Explicit Configuration' at any time is not active its simply grayed out.
    Could you please help me in finding the reason?

    hi,
    Once you will make Custom Controller , then only Explicit Configuration will be active.
    Othervise it will be Grayed only.
    ->So Please make a Custom controller-Configuration Controller and add to further contexts.
    ->The storage of attributes in the  context of this controller ensures that their values can be set or  changed later on with the help of Component Configurator.
    Check this out at Page 6.
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/b52e13c3-0901-0010-8fa6-d11a51821b7c
    I hope this way you will be able to solve your problem.
    Thanx.
    Edited by: saurav mago on Mar 21, 2009 6:50 AM

  • Portal Theme - Portal Theme Editor - What about the WD4A Applications

    Hello,
    Question is :
    i copied a standard theme : SAP_TRADESHOW to make a custom theme. I used the portal theme editor in the portal.
    i changed the colors and the pics.. The Screens of the portal is like i changed it.
    But my problem is, when i open a WD4A Application which is included in the portal, for example "Travel Management" it is showen in the standard sap_tradeshow colors.
    I also checked the versions of the backend themes in the mime, but the version of the theme in der portal i used is younger than the backend theme.
    Is it necessary, that to make a backend theme with the colors of the changed portal theme, and contain the URL of the mime in the theme_root parameter of the WD4A Applications?
    What kind of options do i have ??
    Can anyone help me ??
    greeting
    dominic

    I have found it already.... The structure of the themes can be located at the Portal server (file system) in path:
    \usr\sap\ep1\jc00\j2ee\cluster\server0\apps\sap.com\irj\servlet_jsp\ irj\root\portalapps\com.sap.portal.themes.lafservice\themes\portal
    regards,
    Noel

  • Logout flex application

    I have a
    Flex application that I would like it to logout (essentially call a
    function) when there is no activity for a given time. (No mouse movement  or key
    strokes). Is there a built in fx for  this, if not any ideas. Thx

    see this:
    http://forums.adobe.com/thread/844577?tstart=0
    so there clearly is an idle event i have not jumped into it but a great place to start.
    i use timers myself and that drives a lot of what I do for auto-logoff or prompting saying it will happen unless you click No now.
    basically i use a timer that fires once a minute to call wsdl wcf routines to refresh summaries and update info on the screen. good for user to user messaging too but you need sockets for more timely chat stuff.
    when the user moves between modules or calls any backend routine (wsdl wcf) then i update a datetime for that request. sort of a global singleton class. if 30 minutes passes by (compare timer event nowdatetime to that variable of last request).  if greater than allowed time then throw up a messagebox saying hey bud are you there you are about to be logged off Yes or No.
    for some assignments i have even saved their current State if i log them off so when they log in again i re-zoom them to where they were. It is a challenge but hey they pay for it.
    there are many ways to skin the cat find one you like.

  • Clipboard functionality in Select-options in a WD4A application

    Hi,
    Currently in the select - options in a normal ABAP program we can paste multiple values from clipboard
    Does anyone have an idea on whether this functionality will be extended to WD4A too.
    Is there any workaround such that multiple values in a Select-option can be populated with values in the clipboard/spreadsheet
    regards
    Schunder

    Hi Thomas,
    Thanks for the update,
    what I was thinking of is to open an OSS on this to find out if this functionality will be extended in future,
    since existing SAP users are really missing this on the web front end
    Thanks
    Schunder

  • IPhoto always get logout from application while using it.

    Hi!
    Anyone encounter this before that iphoto automatically exit itself while you are using it?

    Process: iPhoto [3219]
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier: com.apple.iPhoto
    Version: 8.1.2 (8.1.2)
    Build Info: iPhotoProject-4240000~8
    Code Type: X86 (Native)
    Parent Process: launchd [91]
    Date/Time: 2010-08-26 23:16:13.270 +0800
    OS Version: Mac OS X 10.6.4 (10F569)
    Report Version: 6
    Interval Since Last Report: 187739 sec
    Crashes Since Last Report: 8
    Per-App Interval Since Last Report: 174396 sec
    Per-App Crashes Since Last Report: 7
    Anonymous UUID: 0E0FEAFC-43BF-4BEA-B8EB-F1C570AF1791
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000000
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 ??? 0000000000 0 + 0
    1 ??? 0x00000002 0 + 2
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x96a6f942 kevent + 10
    1 libSystem.B.dylib 0x96a7005c dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x96a6f519 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x96a6f2be dispatch_workerthread2 + 240
    4 libSystem.B.dylib 0x96a6ed41 pthreadwqthread + 390
    5 libSystem.B.dylib 0x96a6eb86 start_wqthread + 30
    Thread 2:
    0 libSystem.B.dylib 0x96a4915a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x96a76ca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x96aa5848 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x94493a80 -[NSCondition waitUntilDate:] + 453
    4 com.apple.Foundation 0x9444c7f1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5 com.apple.Foundation 0x9444c6d4 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.proxtcore 0x00f6c201 -[XTMsgQueue waitForMessage] + 49
    7 com.apple.proxtcore 0x00f5a363 -[XTThread run:] + 387
    8 com.apple.Foundation 0x944578d4 -[NSThread main] + 45
    9 com.apple.Foundation 0x94457884 _NSThread__main_ + 1499
    10 libSystem.B.dylib 0x96a7681d pthreadstart + 345
    11 libSystem.B.dylib 0x96a766a2 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x96a4915a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x96a76ca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x96aa5848 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x94493a80 -[NSCondition waitUntilDate:] + 453
    4 com.apple.Foundation 0x9444c7f1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5 com.apple.Foundation 0x9444c6d4 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.proxtcore 0x00f6c201 -[XTMsgQueue waitForMessage] + 49
    7 com.apple.proxtcore 0x00f5a363 -[XTThread run:] + 387
    8 com.apple.Foundation 0x944578d4 -[NSThread main] + 45
    9 com.apple.Foundation 0x94457884 _NSThread__main_ + 1499
    10 libSystem.B.dylib 0x96a7681d pthreadstart + 345
    11 libSystem.B.dylib 0x96a766a2 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x96a490fa machmsgtrap + 10
    1 libSystem.B.dylib 0x96a49867 mach_msg + 68
    2 com.apple.CoreFoundation 0x93c45faf __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x93c45094 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x93c44ec1 CFRunLoopRunInMode + 97
    5 com.apple.Foundation 0x94491378 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 279
    6 com.apple.proxtcore 0x00f5b8a5 -[XTRunLoopThread run:] + 421
    7 com.apple.Foundation 0x944578d4 -[NSThread main] + 45
    8 com.apple.Foundation 0x94457884 _NSThread__main_ + 1499
    9 libSystem.B.dylib 0x96a7681d pthreadstart + 345
    10 libSystem.B.dylib 0x96a766a2 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x96a68086 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x93c8580d __CFSocketManager + 1085
    2 libSystem.B.dylib 0x96a7681d pthreadstart + 345
    3 libSystem.B.dylib 0x96a766a2 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x96a77066 _semwaitsignal + 10
    1 libSystem.B.dylib 0x96a76d22 pthread_condwait + 1191
    2 libSystem.B.dylib 0x96a789b8 pthreadcondwait$UNIX2003 + 73
    3 com.apple.iPhoto 0x00506841 0x1000 + 5265473
    4 com.apple.Foundation 0x944578d4 -[NSThread main] + 45
    5 com.apple.Foundation 0x94457884 _NSThread__main_ + 1499
    6 libSystem.B.dylib 0x96a7681d pthreadstart + 345
    7 libSystem.B.dylib 0x96a766a2 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x96a77066 _semwaitsignal + 10
    1 libSystem.B.dylib 0x96a76d22 pthread_condwait + 1191
    2 libSystem.B.dylib 0x96a789b8 pthreadcondwait$UNIX2003 + 73
    3 com.apple.iPhoto 0x00506841 0x1000 + 5265473
    4 com.apple.Foundation 0x944578d4 -[NSThread main] + 45
    5 com.apple.Foundation 0x94457884 _NSThread__main_ + 1499
    6 libSystem.B.dylib 0x96a7681d pthreadstart + 345
    7 libSystem.B.dylib 0x96a766a2 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x96a490fa machmsgtrap + 10
    1 libSystem.B.dylib 0x96a49867 mach_msg + 68
    2 com.apple.CoreFoundation 0x93c45faf __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x93c45094 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x93c44ec1 CFRunLoopRunInMode + 97
    5 com.apple.Foundation 0x9449042c +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 329
    6 com.apple.Foundation 0x944578d4 -[NSThread main] + 45
    7 com.apple.Foundation 0x94457884 _NSThread__main_ + 1499
    8 libSystem.B.dylib 0x96a7681d pthreadstart + 345
    9 libSystem.B.dylib 0x96a766a2 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x96a77066 _semwaitsignal + 10
    1 libSystem.B.dylib 0x96a76d22 pthread_condwait + 1191
    2 libSystem.B.dylib 0x96a789b8 pthreadcondwait$UNIX2003 + 73
    3 com.apple.Foundation 0x9447faeb -[NSCondition wait] + 316
    4 com.apple.iPhoto 0x0051242a 0x1000 + 5313578
    5 com.apple.iPhoto 0x00511c48 0x1000 + 5311560
    6 com.apple.Foundation 0x944578d4 -[NSThread main] + 45
    7 com.apple.Foundation 0x94457884 _NSThread__main_ + 1499
    8 libSystem.B.dylib 0x96a7681d pthreadstart + 345
    9 libSystem.B.dylib 0x96a766a2 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x96a77066 _semwaitsignal + 10
    1 libSystem.B.dylib 0x96a76d22 pthread_condwait + 1191
    2 libSystem.B.dylib 0x96a789b8 pthreadcondwait$UNIX2003 + 73
    3 com.apple.Foundation 0x9447faeb -[NSCondition wait] + 316
    4 com.apple.iPhoto 0x0051242a 0x1000 + 5313578
    5 com.apple.iPhoto 0x00511c48 0x1000 + 5311560
    6 com.apple.Foundation 0x944578d4 -[NSThread main] + 45
    7 com.apple.Foundation 0x94457884 _NSThread__main_ + 1499
    8 libSystem.B.dylib 0x96a7681d pthreadstart + 345
    9 libSystem.B.dylib 0x96a766a2 thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x96a4915a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x96a76ca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x96aa5848 pthreadcond_timedwait_relativenp + 47
    3 ...ple.CoreServices.CarbonCore 0x9583e3b5 TSWaitOnConditionTimedRelative + 242
    4 ...ple.CoreServices.CarbonCore 0x9583e0f3 TSWaitOnSemaphoreCommon + 511
    5 ...ickTimeComponents.component 0x9736a8bd ReadSchedulerThreadEntryPoint + 4698
    6 libSystem.B.dylib 0x96a7681d pthreadstart + 345
    7 libSystem.B.dylib 0x96a766a2 thread_start + 34
    Thread 12:
    0 libSystem.B.dylib 0x96a49142 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x96a76cbc pthread_condwait + 1089
    2 libSystem.B.dylib 0x96abf203 pthreadcondwait + 48
    3 ...ickTimeComponents.component 0x974d8f75 jpegdecompress_MPLoop + 79
    4 libSystem.B.dylib 0x96a7681d pthreadstart + 345
    5 libSystem.B.dylib 0x96a766a2 thread_start + 34
    Thread 13:
    0 libSystem.B.dylib 0x96a77066 _semwaitsignal + 10
    1 libSystem.B.dylib 0x96a76d22 pthread_condwait + 1191
    2 libSystem.B.dylib 0x96a789b8 pthreadcondwait$UNIX2003 + 73
    3 com.apple.iPhoto 0x00506841 0x1000 + 5265473
    4 com.apple.Foundation 0x944578d4 -[NSThread main] + 45
    5 com.apple.Foundation 0x94457884 _NSThread__main_ + 1499
    6 libSystem.B.dylib 0x96a7681d pthreadstart + 345
    7 libSystem.B.dylib 0x96a766a2 thread_start + 34
    Thread 14:
    0 libSystem.B.dylib 0x96a77066 _semwaitsignal + 10
    1 libSystem.B.dylib 0x96a76d22 pthread_condwait + 1191
    2 libSystem.B.dylib 0x96a789b8 pthreadcondwait$UNIX2003 + 73
    3 com.apple.iPhoto 0x004a4bec 0x1000 + 4865004
    4 com.apple.Foundation 0x944578d4 -[NSThread main] + 45
    5 com.apple.Foundation 0x94457884 _NSThread__main_ + 1499
    6 libSystem.B.dylib 0x96a7681d pthreadstart + 345
    7 libSystem.B.dylib 0x96a766a2 thread_start + 34
    Thread 15:
    0 libSystem.B.dylib 0x96a6e9d2 _workqkernreturn + 10
    1 libSystem.B.dylib 0x96a6ef68 pthreadwqthread + 941
    2 libSystem.B.dylib 0x96a6eb86 start_wqthread + 30
    Thread 16:
    0 libSystem.B.dylib 0x96a6e9d2 _workqkernreturn + 10
    1 libSystem.B.dylib 0x96a6ef68 pthreadwqthread + 941
    2 libSystem.B.dylib 0x96a6eb86 start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x00004000 ecx: 0x96a4f442 edx: 0xffffffff
    edi: 0xffffffff esi: 0xfffff000 ebp: 0xcf644118 esp: 0xbfffdb1c
    ss: 0x0000001f efl: 0x00210246 eip: 0x00000000 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x00000000
    Binary Images:
    0x1000 - 0x9fbfee com.apple.iPhoto 8.1.2 (8.1.2) <436E886C-E26D-2C7D-9745-252829318EFE> /Applications/iPhoto.app/Contents/MacOS/iPhoto
    0xb31000 - 0xb5cfff com.apple.DiscRecordingUI 5.0.5 (5050.4.3) <D8435BFF-0FD0-BCDA-8E22-AF466FDAD5FC> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0xb74000 - 0xc29fe7 libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <0B69B1F5-3440-B0BF-957F-E0ADD49F13CB> /usr/lib/libcrypto.0.9.7.dylib
    0xc6f000 - 0xc79fff com.apple.UpgradeChecker 1.0 (1.1) /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0xc83000 - 0xd1fffc com.apple.MobileMe 8 (1.0) <47DF6C20-78C5-1AA2-1D64-274EAE522D93> /Applications/iPhoto.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
    0xd81000 - 0xd81fff +eOkaoCom.dylib ??? (???) <17ADB0F4-BF83-0B0B-5293-F843F1724644> /Applications/iPhoto.app/Contents/MacOS/eOkaoCom.dylib
    0xd85000 - 0xdb8fe7 +eOkaoDt.dylib ??? (???) <673BD0C5-FAC4-ABB7-B55E-FD8A75E4759D> /Applications/iPhoto.app/Contents/MacOS/eOkaoDt.dylib
    0xdbe000 - 0xf24fff +eOkaoFr.dylib ??? (???) <684982FE-55E4-174D-9CF3-DA4319BD57F9> /Applications/iPhoto.app/Contents/MacOS/eOkaoFr.dylib
    0xf28000 - 0xf4cff2 +eOkaoPt.dylib ??? (???) <E2ED8DE8-7A2D-8309-3CB5-2E87F135A8A8> /Applications/iPhoto.app/Contents/MacOS/eOkaoPt.dylib
    0xf53000 - 0xf9aff7 com.apple.proxtcore 1.0.0 (1.0.0) /Applications/iPhoto.app/Contents/Frameworks/ProXTCore.framework/Versions/A/Pro XTCore
    0xfde000 - 0xfdeff8 com.apple.iLifeSlideshow 1.1 (452) <65FE31A8-C4C3-2069-9B2C-CB00BB168CFE> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/iLifeSlid eshow
    0xfe2000 - 0x1062fef com.apple.NetServices.NetServices 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Frameworks/NetServices.framework/ Versions/A/NetServices
    0x10c4000 - 0x10c4ff7 com.apple.AppleAppSupport 1.5 (1.5) <9FD82212-62A9-A388-940B-2343D69889C3> /System/Library/PrivateFrameworks/AppleAppSupport.framework/Versions/A/AppleApp Support
    0x10c8000 - 0x10f0fff com.apple.iLifeSlideshowCore 1.1 (134) <6B3AA83C-6198-9C49-7AFB-619E5DC2C756> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowCore.framework/Versions/A/iLifeSlideshowCore
    0x110a000 - 0x121afe3 com.apple.iLifeSlideshowProducer 1.1 (382) <BBC8AFE4-95A6-4993-C10C-FF8AAC006928> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowProducer.framework/Versions/A/iLifeSlideshowProducer
    0x128d000 - 0x1396ff3 com.apple.iLifeSlideshowRenderer 1.1 (375) <F8723883-3C5C-734F-CD08-709E4079B2C5> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowRenderer.framework/Versions/A/iLifeSlideshowRenderer
    0x140a000 - 0x1415fff com.apple.iLifeSlideshowExporter 1.1 (159) <A378AE26-9698-2327-CDAA-D2AF255DE5BE> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowExporter.framework/Versions/A/iLifeSlideshowExporter
    0x141e000 - 0x1447fe3 com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <7FFBD485-5251-776A-CC44-4470DD84112B> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x1458000 - 0x1460fe7 com.apple.NetServices.BDControl 1.0.5 (1.0.5) /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDControl.framework/Ve rsions/A/BDControl
    0x146c000 - 0x146ffff com.apple.NetServices.BDRuleEngine 1.0.2 (1.0.2) /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDRuleEngine.framework /Versions/A/BDRuleEngine
    0x14f8000 - 0x14faff3 com.apple.LiveType.component 2.1.4 (2.1.4) <D60E2537-3B47-EA99-0077-6CE394378D07> /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x17a0000 - 0x17a3ff3 +com.divx.divxtoolkit 1.0 (1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0x17a8000 - 0x17eeffb com.apple.motion.component 1.0 (726) <E31AF6AE-6E05-B6E9-3533-9A8955D6D27C> /Library/QuickTime/Motion.component/Contents/MacOS/Motion
    0x17f4000 - 0x17f6ff7 Motion 726.0.0 (compatibility 1.0.0) <4377AE39-7E6B-D0E0-356E-6F3C92EBE405> /Library/Frameworks/Motion.framework/Versions/A/Motion
    0x365a000 - 0x36befe2 com.apple.LiveType.framework 2.1.4 (2.1.4) <7AABA687-4323-E5B9-BA04-8F61C217E6FD> /Library/Application Support/ProApps/SharedA/Frameworks/LiveType.framework/Versions/A/LiveType
    0x36de000 - 0x3733fdf +com.DivXInc.DivXDecoder 6.8.3.5 (6.8.3.5) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x3761000 - 0x37feff8 com.apple.procore.framework 4.0.2 (757) <D3146F1E-F86D-F2A2-509B-E3F9640CBE40> /Library/Application Support/ProApps/SharedA/Frameworks/ProCore.framework/Versions/A/ProCore
    0x16080000 - 0x16080ff7 libmx.A.dylib 315.0.0 (compatibility 1.0.0) <01401BF8-3FC7-19CF-ACCE-0F292BFD2F25> /usr/lib/libmx.A.dylib
    0x160a8000 - 0x160b9fe7 com.apple.FCP Uncompressed 422.component 1.6.1 (1.6.1) <62C290FB-2735-60C4-CE88-7ECB0DE6EDB3> /Library/QuickTime/FCP Uncompressed 422.component/Contents/MacOS/FCP Uncompressed 422
    0x1617b000 - 0x1617fff7 com.apple.qldisplay.Generic 2.2 (327.4) <FFAE5FA3-DFAD-3906-E575-5C342F3D034E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/Resources/DisplayBundles/Generic.qldisplay/Contents/MacOS/Ge neric
    0x163fa000 - 0x163fbff7 com.apple.textencoding.unicode 2.3 (2.3) <78A61FD5-70EE-19EA-48D4-3481C640B70D> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x19f66000 - 0x1a0d9ff7 GLEngine ??? (???) <5EB664AC-6395-A161-ED9D-12219745A887> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x1a10b000 - 0x1a510fe7 libclh.dylib 3.1.1 C (3.1.1) <50390561-2363-6DB1-407B-FD807F375466> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x1a5dc000 - 0x1a5fffe7 GLRendererFloat ??? (???) <4F847096-3DBD-AE90-90FF-5AE12E15D3C9> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x1a607000 - 0x1a617ff3 com.apple.iPhoto.FlickrPublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/FlickrPublisher.publisher/Contents/Ma cOS/FlickrPublisher
    0x1a697000 - 0x1a6b1ffb com.apple.AppleIntermediateCodec 1.3.1 (152) <D9F7038D-87B0-9F80-3AC2-3C7624D464AE> /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x1a6c3000 - 0x1a6c4fff com.apple.iLMBAppDefPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAppDefPlugin.ilmbplugin/Contents/MacOS/i LMBAppDefPlugin
    0x1a985000 - 0x1a991fff com.apple.FinalCutPro.iChatTheaterPreview 1.0 (195) <C8965C94-63DD-F9B0-BA40-E79194ED6391> /Library/QuickTime/iChatTheaterPreview.component/Contents/MacOS/iChatTheaterPre view
    0x1a9a1000 - 0x1a9acfff com.apple.BookService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/BookService.NetService/Co ntents/MacOS/BookService
    0x1a9b6000 - 0x1a9c0fff com.apple.CalendarsService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/CalendarsService.NetServi ce/Contents/MacOS/CalendarsService
    0x1a9ca000 - 0x1a9d4fff com.apple.CardsService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/CardsService.NetService/C ontents/MacOS/CardsService
    0x1a9de000 - 0x1a9e9fff com.apple.PrintsService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/PrintsService.NetService/ Contents/MacOS/PrintsService
    0x1a9f3000 - 0x1a9fafff com.apple.iLMBAperturePlugin 2.1.5 (127) <64F3D109-E8AC-7ABB-31E0-73DA26832360> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAperturePlugin.ilmbplugin/Contents/MacOS /iLMBAperturePlugin
    0x1aa02000 - 0x1aa03fff com.apple.iLMBFolderPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBFolderPlugin.ilmbplugin/Contents/MacOS/i LMBFolderPlugin
    0x1aa09000 - 0x1aa0dfff com.apple.iLMBGarageBandPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBGarageBandPlugin.ilmbplugin/Contents/Mac OS/iLMBGarageBandPlugin
    0x1aa14000 - 0x1aa1ffff com.apple.iLMBiMoviePlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiMoviePlugin.ilmbplugin/Contents/MacOS/i LMBiMoviePlugin
    0x1aa27000 - 0x1aa38fff com.apple.iLMBiPhoto8Plugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhoto8Plugin.ilmbplugin/Contents/MacOS/ iLMBiPhoto8Plugin
    0x1aa42000 - 0x1aa4afff com.apple.iLMBiPhotoPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhotoPlugin.ilmbplugin/Contents/MacOS/i LMBiPhotoPlugin
    0x1aa52000 - 0x1aa5afff com.apple.iLMBiTunesPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiTunesPlugin.ilmbplugin/Contents/MacOS/i LMBiTunesPlugin
    0x1aa62000 - 0x1aa64fff com.apple.iLMBMoviesFolderPlugin 2.1.5 (127) <A6AE59EF-4E40-840B-36A8-F4DC6B697A5B> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBMoviesFolderPlugin.ilmbplugin/Contents/M acOS/iLMBMoviesFolderPlugin
    0x1aa6b000 - 0x1aa6dfff com.apple.iLMBPhotoBoothPlugin 2.1.5 (127) <86FE0230-8B70-E1CD-F280-5654F999EC70> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBPhotoBoothPlugin.ilmbplugin/Contents/Mac OS/iLMBPhotoBoothPlugin
    0x1abd9000 - 0x1abf2fe7 com.apple.applepixletvideo 1.2.19 (1.2d19) <4A68731C-8071-6CF5-012C-40F00CD1333A> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x1abf9000 - 0x1ac0efff com.apple.iPhoto.FacebookPublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/FacebookPublisher.publisher/Contents/ MacOS/FacebookPublisher
    0x1ac1b000 - 0x1ac1ffff com.apple.iPhoto.RSSPublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/RSSPublisher.publisher/Contents/MacOS /RSSPublisher
    0x1b10e000 - 0x1b13fff7 com.apple.iPhoto.MobileMePublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/MobileMePublisher.publisher/Contents/ MacOS/MobileMePublisher
    0x1b1d0000 - 0x1b1f4ff7 com.apple.AppleAVCIntraCodec 1.0 (16) <8A1A4CEE-1610-EECE-74DA-D2AF42825E6D> /Library/QuickTime/AppleAVCIntraCodec.component/Contents/MacOS/AppleAVCIntraCod ec
    0x1bab0000 - 0x1baecfe3 com.apple.QuickTimeFireWireDV.component 7.6.6 (1742) <1FFC5B3D-78E8-4902-7886-7EC84B574481> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x1c500000 - 0x1c56dfe7 com.apple.AppleProResCodec 2.0 (224) <B7A79FF2-9C32-5554-A3C3-BE91F9B89419> /Library/QuickTime/AppleProResCodec.component/Contents/MacOS/AppleProResCodec
    0x1c5ba000 - 0x1c5cdfe3 com.apple.IMXCodec 1.4 (155) <B7A1514F-1A2B-EC3E-719D-B8BB25016A05> /Library/QuickTime/IMXCodec.component/Contents/MacOS/IMXCodec
    0x1c900000 - 0x1c9e1ff3 com.apple.iTunesAccess 9.2.1 (9.2.1) <AA5ACB37-2AA4-F426-AB28-755F58F2CB19> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x1ca09000 - 0x1ca40fe7 com.apple.DVCPROHDCodec 1.5 (237) <5BA42205-5AEE-73BB-A7DE-5417EF028D5B> /Library/QuickTime/DVCPROHDCodec.component/Contents/MacOS/DVCPROHDCodec
    0x1cf40000 - 0x1cfeffe3 com.apple.AppleHDVCodec 1.5 (228) <8D2121A0-BA53-28A2-C9A5-3BED137701DA> /Library/QuickTime/AppleHDVCodec.component/Contents/MacOS/AppleHDVCodec
    0x1d074000 - 0x1d0c0ff7 unorm8_argb.dylib 1.4.1 (compatibility 1.0.0) <82389195-06EA-B276-3AC5-DDDF94C2A82E> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_argb. dylib
    0x1d1e2000 - 0x1d22bff7 float_rgba.dylib 1.4.1 (compatibility 1.0.0) <1411D7AC-D509-3401-3D59-733AA271D5E5> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/float_rgba.d ylib
    0x1d5a8000 - 0x1d665fe2 com.apple.DesktopVideoOut 1.2.7 (1.2.7) <7959538F-2A96-F2BB-EEC3-0718A326C152> /Library/QuickTime/DesktopVideoOut.component/Contents/MacOS/DesktopVideoOut
    0x20c00000 - 0x20e95ffb +org.perian.Perian 1.2.1 (1.2.1) <7FBFA9CD-68D1-DFB5-6296-A11B06B62B37> /Library/QuickTime/Perian.component/Contents/MacOS/Perian
    0x211e0000 - 0x21259fe7 com.apple.AppleVAH264HW.component 2.0 (1.0) <4FD6FDD7-8791-CEA2-9E5A-1628492A98B2> /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH264HW
    0x22d9a000 - 0x23007ff7 +com.yourcompany.XviD_Codec ??? (1.0) /Library/QuickTime/XviD_Codec 1.0 alpha.component/Contents/MacOS/XviD_Codec
    0x23665000 - 0x2366afff +com.roxio.ToastItPlugin ToastIt 1.1.2 (build 18) (1.1.2) <271B9402-59DA-B4F5-4554-0356099BD7BB> /Users/keef/Library/Contextual Menu Items/ToastIt.plugin/Contents/MacOS/ToastIt
    0x243c0000 - 0x243c2ff7 libclparser.dylib ??? (???) <3B34FEB5-BBFA-CC65-5D04-A4777CF60990> /System/Library/Frameworks/OpenCL.framework/Libraries/libclparser.dylib
    0x24aad000 - 0x24ab1fef com.apple.EffectsPlugin 8.0 (8.0) /Applications/iPhoto.app/Contents/PlugIns/EffectsPlugin.plugin/Contents/MacOS/E ffectsPlugin
    0x24b80000 - 0x24b84ff7 libcldcpuengine.dylib 1.4.1 (compatibility 1.0.0) <214E573A-5880-324B-3F74-7F131CFBBF9B> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
    0x2da40000 - 0x2da5bfff com.apple.AdjustmentsPlugin 8.0 (8.0) /Applications/iPhoto.app/Contents/PlugIns/AdjustmentsPlugin.plugin/Contents/Mac OS/AdjustmentsPlugin
    0x32708000 - 0x3277aff7 half_rgba.dylib 1.4.1 (compatibility 1.0.0) <BB252DDB-F720-1831-CB75-39486B112589> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/half_rgba.dy lib
    0x8f050000 - 0x8f711fef com.apple.GeForceGLDriver 1.6.16 (6.1.6) <564FA254-348F-D753-74D9-85F91F64B805> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <A4F6ADCC-6448-37B4-ED6C-ABB2CD06F448> /usr/lib/dyld
    0x90003000 - 0x90072ff7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <2FC2178F-FEF9-6E3F-3289-A6307B1A154C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90073000 - 0x90150ff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x90151000 - 0x901b5ffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x901b6000 - 0x9020cff7 com.apple.MeshKitRuntime 1.1 (49.2) <F1EAE9EC-2DA3-BAFD-0A8C-6A3FFC96D728> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x9020d000 - 0x90531fef com.apple.HIToolbox 1.6.3 (???) <0A5F56E2-9AF3-728D-70AE-429522AEAD8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x90532000 - 0x9058dff7 com.apple.framework.IOKit 2.0 (???) <A013B850-6ECB-594A-CBD6-DB156B11871B> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x905c7000 - 0x905dfff7 com.apple.CFOpenDirectory 10.6 (10.6) <1537FB4F-C112-5D12-1E5D-3B1002A4038F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x905e0000 - 0x905e0ff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x905e1000 - 0x90629fff com.apple.iCalendar 1.0.3 (54) <1FF7C991-491D-6708-51C2-08FF8916BD84> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0x9062a000 - 0x9062aff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x9062b000 - 0x9062dff7 libRadiance.dylib ??? (???) <AB06F616-E3EA-5966-029A-8AA44BBE5B28> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x90633000 - 0x906fdfef com.apple.CoreServices.OSServices 357 (357) <CF9530AD-F581-B831-09B6-16D9F9283BFA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x906fe000 - 0x90702ff7 IOSurface ??? (???) <66E11D8E-CF4B-EFD0-37F9-20177C647021> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x90703000 - 0x90721ff7 com.apple.iChat.IMFoundation 5.0.4 (746) <427B0732-581D-C741-0BFD-A8E4D3AD6F9B> /System/Library/Frameworks/IMCore.framework/Frameworks/IMFoundation.framework/V ersions/A/IMFoundation
    0x90744000 - 0x90759fff com.apple.ImageCapture 6.0 (6.0) <3F31833A-38A9-444E-02B7-17619CA6F2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9075a000 - 0x909bdfef com.apple.security 6.1.1 (37594) <8AE73F5F-936C-80F6-B05B-A50C3082569C> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x909be000 - 0x90a01ff7 libGLU.dylib ??? (???) <B50572FF-3EAC-FD98-1A01-6B718D98F67F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90a02000 - 0x90a20ff7 com.apple.CoreVideo 1.6.1 (45.4) <E0DF044D-BF31-42CE-B690-FD1FCE07E64A> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x90a21000 - 0x90a8fff7 com.apple.ISSupport 1.9.3 (51) <9BB37FBA-E379-8D12-11C6-B9C5C9683D27> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x90a90000 - 0x90a90ff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <BC501C9F-7C20-961A-B135-0A457667D03C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x90a91000 - 0x90ad2ff7 libRIP.A.dylib 543.50.0 (compatibility 64.0.0) <8BAE1FC1-A478-F151-17C7-2D5DE470AC4F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x90ad3000 - 0x90b04ff3 libTrueTypeScaler.dylib ??? (???) <7601D717-236D-8F4E-91F5-E69BB2920478> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x90b05000 - 0x90b07ff7 com.apple.QuickTimeH264.component 7.6.6 (1742) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x90b08000 - 0x90b46ff7 com.apple.QuickLookFramework 2.2 (327.4) <88A59C42-A200-FCB6-23EC-E848D0E14963> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x90ba8000 - 0x90beaff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <3F0ED200-741B-4E27-B89F-634B131F5E9E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x90bfb000 - 0x90c1dfef com.apple.DirectoryService.Framework 3.6 (621.3) <05FFDBDB-F16B-8AC0-DB42-986965FCBD95> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x90c1e000 - 0x90e13fe3 com.apple.JavaScriptCore 6533 (6533.13) <56902210-5DA2-D2F4-9166-089BDDEDB091> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x90e14000 - 0x90e64ff7 com.apple.Symbolication 1.1 (67) <E0C94D8B-4F12-49E6-BAA5-3B00441A047B> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x90fe6000 - 0x90ff6ff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x90ff7000 - 0x90ffcff7 com.apple.AOSNotification 1.1.0 (123.3) <0386E48C-4095-1D2A-629A-83B7711550F3> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x90ffd000 - 0x9104afeb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x910fb000 - 0x91131fff libtidy.A.dylib ??? (???) <DDFAB560-3883-A6A2-7BDD-D91730982B48> /usr/lib/libtidy.A.dylib
    0x91132000 - 0x91b7aff7 com.apple.WebCore 6533 (6533.16) <8A07755B-3390-5E14-60A5-071A48DEBFF4> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x91b9d000 - 0x91bd0ff7 com.apple.AE 496.4 (496.4) <7F34EC47-8429-3077-8158-54F5EA908C66> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x91bd1000 - 0x91c17ff7 libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
    0x91c18000 - 0x91d44ffb com.apple.MediaToolbox 0.484.11 (484.11) <B93B175A-2039-2FD2-FBE4-22C9F8C9E223> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x91d45000 - 0x91d89fe7 com.apple.Metadata 10.6.3 (507.10) <630494FA-3BB3-EDD3-E10B-8DAAF4831E26> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91d8a000 - 0x91dc2ff7 libcups.2.dylib 2.8.0 (compatibility 2.0.0) <76C02F5C-98FD-BD64-B5FB-C698FB76EA25> /usr/lib/libcups.2.dylib
    0x91dee000 - 0x92223ff7 libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92224000 - 0x92258ff7 libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <0B900F26-51C1-7639-346F-24B080AEDAF3> /usr/lib/libssl.0.9.8.dylib
    0x92259000 - 0x922a9ff7 com.apple.framework.familycontrols 2.0.1 (2010) <B9762E20-543D-13B9-F6BF-E8585F04CA01> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x922aa000 - 0x922b1ff7 com.apple.iChat.IMUtils 5.0.4 (746) <B2060317-610E-0D77-C602-D331FC0F4D82> /System/Library/Frameworks/IMCore.framework/Frameworks/IMUtils.framework/Versio ns/A/IMUtils
    0x922b2000 - 0x922b5fe7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x922b6000 - 0x922d7fe7 com.apple.opencl 12.1 (12.1) <DA2AC3FA-ED11-2D10-21E9-7BDF4778B228> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x922d8000 - 0x92388fe3 com.apple.QuickTimeImporters.component 7.6.6 (1742) <76B0E668-214A-AB71-AAB8-E39E7F227C9B> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x92389000 - 0x9238aff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x9238b000 - 0x9239cff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <97511CC7-FE23-5AC3-2EE2-B5479FAEB316> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9239d000 - 0x92c7dff7 com.apple.AppKit 6.6.6 (1038.29) <6F28C335-6DC2-AE0E-B79A-F256DBD0BB45> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x92c7e000 - 0x92d79ffb com.apple.PubSub 1.0.5 (65.19) <AD511C1B-9FC7-E0C6-2550-8EA55137D14F> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x92d7a000 - 0x92e56ff3 com.apple.DiscRecording 5.0.5 (5050.4.3) <7BFF81A5-BBFA-5D2F-FFEE-65BEA7697134> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x92e5c000 - 0x93272ff7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x93275000 - 0x93280ff7 com.apple.CrashReporterSupport 10.6.3 (250) <981124CA-6E89-94C5-C7E9-4E0D6CA06F1D> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x93281000 - 0x93288ff7 com.apple.KerberosHelper 2.1 (1.0) <2E28DB03-60AF-1C7B-28B0-2768DFBF44EB> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x93289000 - 0x9328bff7 com.apple.securityhi 4.0 (36638) <38D36D4D-C798-6ACE-5FA8-5C001993AD6B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9328c000 - 0x9329eff7 com.apple.MultitouchSupport.framework 204.13 (204.13) <F91A4E32-01AA-49DB-2205-3DBE1FEFFC43> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x9329f000 - 0x93758ffb com.apple.VideoToolbox 0.484.11 (484.11) <6AB58081-F7C4-46F9-2C05-CFED9E38F0A0> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x9376c000 - 0x9389afe7 com.apple.CoreData 102.1 (251) <E6A457F0-A0A3-32CD-6C69-6286E7C0F063> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9389b000 - 0x938a6ff7 libGL.dylib ??? (???) <B87E0676-F5EF-8DA3-6DEE-13C43B3832A7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x938a7000 - 0x93ad2ff3 com.apple.QuartzComposer 4.1 (156.16) <578A1842-8B62-00BF-B2E8-4C0AA8E6A938> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x93b7d000 - 0x93bdefe7 com.apple.CoreText 3.1.0 (???) <1372DABE-F183-DD03-03C2-64B2464A4FD5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x93c09000 - 0x93d83fe3 com.apple.CoreFoundation 6.6.3 (550.29) <00373783-3744-F47D-2191-BEEA658F0C3D> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x93d84000 - 0x93e31fe7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x93e32000 - 0x93ec4fe3 com.apple.print.framework.PrintCore 6.2 (312.5) <7729B4D7-D661-D669-FA7E-510F93F685A6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x93ec5000 - 0x93f40fe7 com.apple.audio.CoreAudio 3.2.2 (3.2.2) <51D0E2DC-B15F-AF6C-70D8-026DDAD4E2A5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x93f41000 - 0x93fafff7 com.apple.WhitePagesFramework 10.6.0 (140.0) <132A7CF8-D073-0F35-E9A4-777E5EBAC1EE> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x93fb0000 - 0x93fbaff7 com.apple.NSServerNotificationCenter 2.1 (2.1) <27830081-A412-54C8-0FB0-CEA823826F5E> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x93fbb000 - 0x94004fe7 libTIFF.dylib ??? (???) <9CFF48CC-4852-4D06-17AC-3C947C824159> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x94005000 - 0x9436dff7 com.apple.QuartzCore 1.6.2 (227.22) <4288F0D2-0C87-F054-C372-8764B44DE024> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9436e000 - 0x9436fff7 com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x94370000 - 0x9437aff7 com.apple.HelpData 2.0.4 (34) <9128FFEB-0F6C-B273-FCF4-D87A20227345> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x9437b000 - 0x943effef com.apple.CoreSymbolication 2.0 (23) <8A04EA5F-83F8-5E15-B2E0-8A727C9C4E8B> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x943f0000 - 0x943f9ff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x94441000 - 0x946b1ffb com.apple.Foundation 6.6.3 (751.29) <E77D3906-99F4-FEF4-FBB0-86FB3C94073E> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x946b2000 - 0x946c0ff7 com.apple.opengl 1.6.8 (1.6.8) <EBB7B411-60DD-DB9D-20C0-3E6258762EF0> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x946cc000 - 0x946d7ff7 libCSync.A.dylib 543.50.0 (compatibility 64.0.0) <4FA0CE4A-BDE5-0E3D-37F0-03B41F0C2637> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x946d8000 - 0x94710ff7 com.apple.LDAPFramework 2.0 (120.1) <001A70A8-3984-8E19-77A8-758893CC128C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94711000 - 0x94762ff7 com.apple.HIServices 1.8.0 (???) <10C85B88-C6AF-91DB-2546-34661BA35AC5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x94763000 - 0x9493efe7 com.apple.CalendarStore 4.0.3 (991) <9A51F65A-5B76-C96D-23DE-BE6B00822731> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x9493f000 - 0x9512e557 com.apple.CoreGraphics 1.543.50 (???) <74533178-5C90-0F54-1B06-2E1C5251ED5D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9512f000 - 0x9512fff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x95130000 - 0x95426fe7 com.apple.MessageFramework 4.3 (1081) <643469D1-15F3-FEAE-03A0-11776D613421> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0x95427000 - 0x95429fe7 com.apple.ExceptionHandling 1.5 (10) <21F37A49-E63B-121E-D406-1BBC94BEC762> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x95443000 - 0x9545ffe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x95460000 - 0x954adff7 com.apple.ExchangeWebServices 1.2 (60) <AA36F562-FBA8-8D9A-D4E7-1E6B0657467F> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
    0x954ae000 - 0x954b2ff7 libGIF.dylib ??? (???) <3ECD4D2C-40FE-E9A0-A2D2-E36D1C00D3A8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x954b3000 - 0x955bfff7 libGLProgrammability.dylib ??? (???) <23AB2443-1DB3-3BFE-38A6-11F0BE453989> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x955c0000 - 0x955e6fff com.apple.DictionaryServices 1.1.1 (1.1.1) <02709230-9B37-C743-6E27-3FCFD18211F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x955e7000 - 0x9565afff com.apple.iLifeMediaBrowser 2.1.5 (368) <30261504-7533-5424-DD15-32739DED6FB0> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x95672000 - 0x9571bff7 com.apple.CFNetwork 454.9.7 (454.9.7) <B740E1BD-01B7-34C2-2A9A-6DBC68B1EA5B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9571c000 - 0x95726ff7 com.apple.dotMacLegacy 3.2 (266) <6F2588BA-E801-1664-E60C-5BEC2AF924D0> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x95727000 - 0x95744fe7 com.apple.DotMacSyncManager 2.0.3 (446.9) <11FAEB92-AA44-CFA4-F2D3-73687984BAFD> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x95745000 - 0x957f5ff3 com.apple.ColorSync 4.6.3 (4.6.3) <AA1076EA-7665-3005-A837-B661260DBE54> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x957f6000 - 0x957f6ff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x957f7000 - 0x95b17feb com.apple.CoreServices.CarbonCore 861.13 (861.13) <52803668-3669-36BD-57DD-078FBA835081> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x95b18000 - 0x95b1eff7 libCGXCoreImage.A.dylib 543.50.0 (compatibility 64.0.0) <94F66BA6-A4E8-63A4-1B70-EFAA4C75D668> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x95b1f000 - 0x95b20ff7 com.apple.audio.units.AudioUnit 1.6.3 (1.6.3) <959DFFAE-A06B-7FF6-B713-B2076893EBBD> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x95b21000 - 0x95b61ff3 com.apple.securityinterface 4.0.1 (37214) <BBC88C96-8827-91DC-0CF6-7CB639183395> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x95b62000 - 0x95b89ff7 com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x95bed000 - 0x95c57fe7 libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x95c71000 - 0x95cb0ff7 com.apple.ImageCaptureCore 1.0.2 (1.0.2) <18E338B0-D82E-2ADC-FB9E-8909E765C41B> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x95cb1000 - 0x95e8cff3 libType1Scaler.dylib ??? (???) <3CCADAB2-FBBF-15C9-C70C-4D26746B309E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x95e8d000 - 0x95ee7fe7 com.apple.CorePDF 1.3 (1.3) <696ADD5F-C038-A63B-4732-82E4109379D7> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x95ee8000 - 0x95eefff3 com.apple.print.framework.Print 6.1 (237.1) <97AB70B6-C653-212F-CFD3-E3816D0F5C22> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x95ef0000 - 0x95ef4ff7 libGFXShared.dylib ??? (???) <B6028E64-3F3B-C637-DA04-D0CD528F6E1F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x95ef5000 - 0x95f30fe7 com.apple.DebugSymbols 1.1 (70) <05013716-CFCF-801E-5535-D0643869BDCD> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x95f31000 - 0x95f34ff7 libCGXType.A.dylib 543.50.0 (compatibility 64.0.0) <3B49AED9-0DBA-9D21-F9AC-8784363AD762> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x95f35000 - 0x95febffb libFontParser.dylib ??? (???) <067DC1A2-764B-41EA-B07E-4205472749B7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x95fec000 - 0x960eefef com.apple.MeshKitIO 1.1 (49.2) <34322CDD-E67E-318A-F03A-A3DD05201046> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x961ce000 - 0x963b0fff com.apple.imageKit 2.0.3 (1.0) <BF2ECA4D-FCD8-AD5D-E100-22370F2C7EE0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x963b1000 - 0x963b8ff7 com.apple.agl 3.0.12 (AGL-3.0.12) <6877F0D8-0DCF-CB98-5304-913667FF50FA> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x963b9000 - 0x963eaff7 libGLImage.dylib ??? (???) <B45EA17E-03EF-3575-0843-A1205F29E71E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x963eb000 - 0x96499ff3 com.apple.ink.framework 1.3.3 (107) <57B54F6F-CE35-D546-C7EC-DBC5FDC79938> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9649a000 - 0x9649dffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9649e000 - 0x964dbff7 com.apple.CoreMedia 0.484.11 (484.11) <0346F9E5-AEFE-B751-7D85-88D156C01385> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x964dc000 - 0x9655effb SecurityFoundation ??? (???) <3670AE8B-06DA-C447-EB14-79423DB9C474> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9655f000 - 0x96765feb com.apple.AddressBook.framework 5.0.2 (870) <3E9D6CF3-6C41-245D-5343-941A185C8384> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x96766000 - 0x96892fff com.apple.audio.toolbox.AudioToolbox 1.6.3 (1.6.3) <F0D7256E-0914-8E77-E37B-9720430422AB> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x96893000 - 0x9690aff3 com.apple.backup.framework 1.2.2 (1.2.2) <FE4C6311-EA63-15F4-2CF7-04CF7734F434> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x9690b000 - 0x96933ff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x96934000 - 0x96942fe7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <3CE8AA79-F077-F1B0-A039-9103A4A02E92> /usr/lib/libz.1.dylib
    0x96943000 - 0x96943ff7 com.apple.Carbon 150 (152) <9252D5F2-462D-2C15-80F3-109644D6F704> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x96944000 - 0x96954ff7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x96955000 - 0x96967ff7 com.apple.syncservices.syncservicesui 5.2 (578.3) <D3B86149-3466-B202-DBC1-06C575D451EB> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
    0x969aa000 - 0x96a47fe3 com.apple.LaunchServices 362.1 (362.1) <885D8567-9E40-0105-20BC-42C7FF657583> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x96a48000 - 0x96beefeb libSystem.B.dylib 125.2.0 (compatibility 1.0.0) <3441F338-2218-6D36-3F95-3A16FBF6713D> /usr/lib/libSystem.B.dylib
    0x96bef000 - 0x96befff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <1DEC639C-173D-F808-DE0D-4070CC6F5BC7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x96bf0000 - 0x96ccbfe7 com.apple.DesktopServices 1.5.7 (1.5.7) <A69072AD-C47E-A00D-4A69-6E46A7FB2119> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x96ccc000 - 0x96d67ff7 com.apple.ApplicationServices.ATS 4.3 (???) <7ECA252B-5F67-2816-A4F0-73E1DC833728> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x96d68000 - 0x96da3feb libFontRegistry.dylib ??? (???) <A102F61F-25D5-001A-20C3-56304C585072> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x96db1000 - 0x97d01fe3 com.apple.QuickTimeComponents.component 7.6.6 (1742) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x97d02000 - 0x97d3bfe7 com.apple.bom 10.0 (164) <CC61CCD7-F76C-45DD-6666-C0E0D07C7343> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x97d3c000 - 0x97d94fe7 com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x97d95000 - 0x97da9fe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x97daa000 - 0x97db7ff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x97db8000 - 0x97de8ff7 com.apple.MeshKit 1.1 (49.2) <ECFBD794-5D36-4405-6184-5568BFF29BF3> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x97de9000 - 0x97e26ff7 com.apple.SystemConfiguration 1.10.2 (1.10.2) <398BB007-41FD-1A30-26D8-CB86ED5E467E> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x97e27000 - 0x97e31ffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x97e32000 - 0x97edaffb com.apple.QD 3.35 (???) <B80B64BC-958B-DA9E-50F9-D7E8333CC5A2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x97edb000 - 0x98095fe3 com.apple.ImageIO.framework 3.0.3 (3.0.3) <A93A514B-C1BF-21D0-FB03-CB775DE4FFAA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x98096000 - 0x9814ffe7 libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
    0x98150000 - 0x98164ffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x98165000 - 0x98257ff7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <D2C86308-F998-C83D-F49B-CD484D4EFE6A> /usr/lib/libcrypto.0.9.8.dylib
    0x98258000 - 0x98366fe7 com.apple.WebKit 6533 (6533.16) <DA6B3A05-22A9-C28C-F520-8CA5A2B88334> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x98367000 - 0x98387fe7 libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <751955F3-21FB-A03A-4E92-1F3D4EFB8C5B> /usr/lib/libresolv.9.dylib
    0x98388000 - 0x9838efff com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9838f000 - 0x98408ff7 com.apple.PDFKit 2.5.1 (2.5.1) <CEF13510-F08D-3177-7504-7F8853906DE6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x98442000 - 0x98513fe3 ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <8FDB4C40-D453-DA53-2A66-9A53998AB23C> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x98514000 - 0x98521fe7 libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <6008C8AC-8DB1-B38B-52A9-9133533B0DA2> /usr/lib/libbz2.1.0.dylib
    0x98522000 - 0x98528ff7 com.apple.DisplayServicesFW 2.2.2 (251) <6E4020F6-4DD0-F137-F226-F396807E3C3B> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x98529000 - 0x98569fe7 com.apple.IMCore 5.0.4 (746) <9B1CF5CD-7C0D-F29E-2D74-68D79B36789D> /System/Library/Frameworks/IMCore.framework/Versions/A/IMCore
    0x9856a000 - 0x9858eff7 libJPEG.dylib ??? (???) <5CE96981-6B2A-D15B-4A17-E7BD329095B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9858f000 - 0x985cffe7 com.apple.DAVKit 4.0.3 (732) <BE678EDA-B46C-6733-C0DD-447012450C9A> /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x985d0000 - 0x985faff7 com.apple.shortcut 1.1 (1.1) <B0514FA9-7CAE-AD94-93CA-7B2A2C5F7B8A> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x985fb000 - 0x985fbff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x985fc000 - 0x98608ff7 libkxld.dylib ??? (???) <322A4B52-8305-3081-6B74-813C3A87A56D> /usr/lib/system/libkxld.dylib
    0x98635000 - 0x98778fef com.apple.QTKit 7.6.6 (1742) <98ECA8E3-73F0-D21B-8B7E-8FE651E29A7F> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x98779000 - 0x987bfffb com.apple.CoreMediaIOServices 130.0 (1035) <F5E6F93D-6844-9FD7-8769-44503DFD5363> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x987f3000 - 0x987fdfe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x98812000 - 0x98856ff3 com.apple.coreui 2 (114) <29F8F1A4-1C96-6A0F-4CC2-9B85CF83209F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x98857000 - 0x9889aff7 com.apple.NavigationServices 3.5.4 (182) <753B8906-06C0-3AE0-3D6A-8FF5AC18ED12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x989df000 - 0x98a4dff7 com.apple.QuickLookUIFramework 2.2 (327.4) <5B6A066B-B867-D3A3-BDEE-3D68FA5385B4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x98a4e000 - 0x98a63ff7 com.apple.iChat.InstantMessage 5.0.4 (746) <E2F51B36-EFB1-5ACC-4188-A02B81AC056D> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x98a64000 - 0x98a69ff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x98a6a000 - 0x98bacff7 com.apple.syncservices 5.2 (578.3) <16A29689-1A80-3065-C4E7-AEC6A3C05C2E> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x98c2c000 - 0x98f25fef com.apple.QuickTime 7.6.6 (1742) <89720F2A-F33B-FF09-3D81-F9F25A99F3EB> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x98f26000 - 0x992a5fe3 com.apple.RawCamera.bundle 3.0.3 (529) <68958A8F-F1AC-A73C-3172-BC17F18EC5FC> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x992a6000 - 0x992c1ff7 libPng.dylib ??? (???) <36A3D75E-5178-4358-7F02-444E276D61AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x992c2000 - 0x9935afe7 edu.mit.Kerberos 6.5.10 (6.5.10) <8B83AFF3-C074-E47C-4BD0-4546EED0D1BC> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9935b000 - 0x993d3fef com.apple.AppleVAFramework 4.9.20 (4.9.20) <D8B544CB-9E32-81C2-59BD-C5DDB66DA621> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x993d4000 - 0x9950bff7 com.apple.CoreAUC 6.04.01 (6.04.01) <B6E035A9-8DA2-82FC-9C2F-F57B9B62BE5F> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x9950c000 - 0x9950fff7 libCoreVMClient.dylib ??? (???) <420D9D10-B00E-202D-AA98-026996AB97DD> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x99510000 - 0x99590feb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x99686000 - 0x99808fe7 libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <2314BD12-0821-75BB-F3BC-98D324CFD30A> /usr/lib/libicucore.A.dylib
    0x99809000 - 0x9990afe7 libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x9990b000 - 0x9990bff7 com.apple.vecLib 3.6 (vecLib 3.6) <7362077A-890F-3AEF-A8AB-22247B10E106> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9990c000 - 0x99932fe3 com.apple.speech.LatentSemanticMappingFramework 2.7.2 (2.7.2) <EB422111-E732-2AE0-0CFD-1D8B713B2EC9> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0x99933000 - 0x99940ff7 com.apple.AppleFSCompression 24.3 (1.0) <49782434-8CEE-CD5C-A953-E5EAD5765B48> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <3441F338-2218-6D36-3F95-3A16FBF6713D> /usr/lib/libSystem.B.dylib
    Model: MacBookPro5,1, BootROM MBP51.007E.B05, 2 processors, Intel Core 2 Duo, 2.53 GHz, 4 GB, SMC 1.33f8
    Graphics: NVIDIA GeForce 9600M GT, NVIDIA GeForce 9600M GT, PCIe, 512 MB
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.91.27)
    Bluetooth: Version 2.3.3f8, 2 service, 12 devices, 1 incoming serial ports
    Network Service: PPP Interface, PPP (PPPSerial), ppp0
    Serial ATA Device: Hitachi HTS543232L9SA02, 298.09 GB
    Serial ATA Device: MATSHITADVD-R UJ-868
    USB Device: USB-SATA Bridge, 0x0411 (BUFFALO INC.), 0x0177, 0x26200000
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8507, 0x24400000
    USB Device: Generic USB Hub, 0x058f (Alcor Micro, Corp.), 0x9254, 0x04100000
    USB Device: HUAWEI Mobile, 0x12d1, 0x1001, 0x04140000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0236, 0x04600000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x04500000
    USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x06100000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8213, 0x06110000

  • Timeout parameter of WD4A application

    Hi,
    can you tell me, which parameter controls the sesssion time out of a webdynpro application (for abap)?
    Is there a possibility to change this parameter only for one application, or is it a system parameter?
    Thanks,
    Thomas

    Hi Thomas
    Use transaction SMICM
    then Goto->services
    Use can change the timeout for http service here. I am not sure whether we can change the parameter for individual application.
    Regards
    Naresh

  • Deploying WD4A application

    Hi all,
    What are the steps to be followed to deploy the WD application on to the portal.
    Regards,

    Hi
    This is more of Portal side question.
    1. create an iView
    2. choose template web dynpro iView
    3. choose web dynpro abap
    4. give name of the view
    5. choose system alias
    6. in the application put web dynpro application name
    7. in the name space type sap, all the web dynpro applications under namespace sap
    Abhi

  • Partner Application in SSO logout does'nt synchronize

    Hi All,
    I've setup two separate application on different workspace and different server as partner Application. I've follow the instruction from http://www.oracle.com/technology/products/database/application_express/howtos/sso_partner_app.html
    . And everything working fine, but the "logout" seen doesn't work correctly.
    Example: I'm login to Application "A" from single sign on homepage, after enter username and password, it direct me to Application "A". After that, i've click on Application "B" which also located on single sign on homepage and direct me to application "B" (that's correct). When I clicked on the "logout" link in Application "A" it work fine, but the other Application (B) doesn't log me out. I can do the normal work on Application "B" even the Application "A" already logout.

    Hi Scott,
    Thank you for your reply. I've read the two link above and I don't figure out how to resolve my problem yet. From the link: Logout URL for 9iAS SSO Partner App
    you said:
    Steve - Here's a logout URL that unsets the app's session cookie first, then goes to Single Sign-off, then back to a public page in the app:
    https://host:port/pls/DAD/wwv_flow_custom_auth_std.logout_then_go_to_url?p_args=&APP_ID.:https://login.yourlogin.com/pls/orasso/orasso.wwsso_app_admin.ls_logout?p_done_url=https://host:port/pls/DAD/f?p=&APP_ID.:PUBLIC_PAGECan set the authentication schema logout URL of application "A" something like: unsets app's session cookies first, then goes to Single Sing-off, then goes to Application "B" sign-off, and then back to a public page in the app. That way will be logout the Application "A", logout the Single Sign-On, and logout the Application "B" when i click on the "logout" link from Application "A". Am I correct?
    The other question is how can i get the SSO cookie. I've used the owa_cookie.get('cookie_name') function, but it doesn't work for SSO.
    Thanks,
    Kevin

Maybe you are looking for