Error 'Timer already cancelled' when using CFIMAGE - captcha

I've implemented captcha image using cfimage. Works fine on
our development system however, I'm getting a
'java.lang.IllegalStateException: Timer already cancelled' in our
production environment.
The first time I requested the page containing the captcha
image it took forever to load but eventially did. Susequent
requests to this page now produces the above error. Production
enviroment is running Coldfusion 8.01 in multiserver configuration
with latest hotfix applied, IIS 6.

Fixed the problem! Turns out simple restarting of the cf
service resolved the issue.

Similar Messages

  • Hi, I have just loaded Lightroom 5 from the disc onto my Mac.  every time i try and launch the application, it goes to the registration/licence window.  i have input the data five times already.  When Lr5 launches the update window appears, when i try to

    Hi, I have just loaded Lightroom 5 from the disc onto my Mac.  every time i try and launch the application, it goes to the registration/licence window.  i have input the data five times already.  When Lr5 launches the update window appears, when i try to do anything the following message comes up: - An error occrred when attempting to change modules.  What do i need to do to fix this?

    Masher please use the uninstaller located in the Applications/Utilities/Adobe Installers folder.  Once Photoshop Lightroom is removed then please download Lightroom 5.5 from Adobe - Lightroom : For Macintosh : Adobe Photoshop Lightroom 5.5 and reinstall.

  • How do I resolve "Error processing your request", when using Download link in My Orders (photoshop 5

    How do I resolve "error processing your request" when using the download link in My Orders for photoshop 5

    As Jeff already hinted at, try a different browser. Such issues almost always are local problems on your end. Something is either changing or blocking the HTTP headers used for forwarding (could be your router, a desktop firewall or other security tools) or a JavaScript is not running/ being blocked.
    Mylenium

  • Photoshop CS6 crashes all the time and especially when using the type tool... please help!

    Photoshop CS6 crashes all the time and especially when using the type tool... please help!

    Since I did not have this problem with CS5 or CS4, I can only assume something is not right with Photoshop CS6... below is my video card info:
    ATI Radeon HD 4850:
      Chipset Model:          ATI Radeon HD 4850
      Type:          GPU
      Bus:          PCIe
      PCIe Lane Width:          x16
      VRAM (Total):          512 MB
      Vendor:          ATI (0x1002)
      Device ID:          0x944a
      Revision ID:          0x0000
      ROM Revision:          113-B9110C-425
      EFI Driver Version:          01.00.383
      Displays:
    iMac:
      Resolution:          2560 x 1440
      Pixel Depth:          32-Bit Color (ARGB8888)
      Main Display:          Yes
      Mirror:          Off
      Online:          Yes
      Built-In:          Yes
      Connection Type:          DisplayPort
    Cinema HD:
      Resolution:          1920 x 1200
      Pixel Depth:          32-Bit Color (ARGB8888)
      Display Serial Number:          2A80273WXMN
      Mirror:          Off
      Online:          Yes
      Rotation:          Supported

  • "X resolution" error when using CFIMAGE

    I've built an uploader for my new photo gallery, and it's pretty basic.  I can either upload using the new <cffileupload> box, or I can FTP files to an "upload" directory.  Since the entire site is local still, I've just been copying the files I want to add to the database to the "upload" directory, then running my script.  So far I've created 49 albums and added just over 3,400 pics.
    That is, until this latest round.
    I have some pics I took on a cruise a couple of years ago.  There are just fewer than 400 of them.  When I copy the files to my upload folder, pick my album, then click "Submit", get the following errors from <cfcatch>:
    cfcatch.type = Application
    cfcatch.message = X Resolution
    cfcatch.detail = X Resolution
    That's ALL I get.
    On the upload form, there's a <cfif> statement that copies the original images to a "/fullsize/" directory before processing if they're 1280px wide or less.  Otherwise it resizes them using <cfimage>.  In this case, the files are all 1280 wide, so the next <cfimage> tag is the one that makes the default viewing pic.
    Here's the code I'm using:
    <cfdirectory action="list" directory="#request.basepath#/manage/upload" name="uploads" sort="name ASC" mode="777">
    <cfsetting requesttimeout="#createtimespan(0,1,0,0)#">
    <cftry>
    <cfloop query="uploads">
    <!--- calculate portrait or landscape --->
    <cfimage source="#request.basepath#/manage/upload/#uploads.name#" name="thisimage">
    <cfif thisimage.height gt thisimage.width>
    <cfset imgheight="800">
    <cfset imgwidth="">
    <cfset thumbheight="180">
    <cfset thumbwidth="">
    <cfelse>
    <cfset imgheight="">
    <cfset imgwidth="800">
    <cfset thumbheight="">
    <cfset thumbwidth="180">
    </cfif>
    <!--- add pics to database --->
    <cfif IsNull(ImageGetEXIFTag(thisimage,"Date/Time Original"))>
    <cfset pictimestamp = uploads.dateLastModified>
    <cfelse>
    <cfset pictimestamp = replace(listfirst(ImageGetEXIFTag(thisimage,"Date/Time Original")," "),":","-","ALL") & " " & listlast(ImageGetEXIFTag(thisimage,"Date/Time Original")," ")>
    </cfif>
    <!--- create full size file --->
    <cfif thisimage.width gt 1280>
    <cfimage
        action="resize"
        width="1280"
        height=""
        source="#request.basepath#/manage/upload/#uploads.name#"
        destination="#request.basepath#/gallery/fullsize/#uploads.name#">
    <cfelse>
    <cffile
        action="copy"
        source="#request.basepath#/manage/upload/#uploads.name#"
        destination="#request.basepath#/gallery/fullsize/#uploads.name#"
        mode="777">
    </cfif>
    <!--- create main photo --->
    <cfimage
        action="resize"
        width="#imgwidth#"
        height="#imgheight#"
        source="#request.basepath#/manage/upload/#uploads.name#"
        destination="#request.basepath#/gallery/#uploads.name#">
    <!--- create thumbnail --->
    <cfimage
        action="resize"
        width="#thumbwidth#"
        height="#thumbheight#"
        source="#request.basepath#/manage/upload/#uploads.name#"
        destination="#request.basepath#/gallery/thumbnails/#uploads.name#">
    <cfquery name="addpicstodb" datasource="#request.dsn#" timeout="#createtimespan(0,1,0,0)#">
    INSERT INTO photos
                    ( pic_album
                    , pic_file
                    , pic_date
            VALUES (  <cfqueryparam value="#FORM.upload_album#" cfsqltype="cf_sql_numeric">
                    , <cfqueryparam value="#uploads.name#" cfsqltype="cf_sql_varchar">
                    , <cfqueryparam value="#pictimestamp#" cfsqltype="cf_sql_timestamp">
    </cfquery>   
    <!--- clean upload directory --->
    <cffile 
        action="delete"
        file="#request.basepath#/manage/upload/#uploads.name#">
    </cfloop>
    <cfcatch type="any">
    <cfoutput>#cfcatch.type# - #cfcatch.message# - #cfcatch.detail# - #cfcatch.ExtendedInfo#</cfoutput>
    </cfcatch>
    </cftry>
    Keep in mind this has worked for over 3,400 pics, so something perhaps is different about this set of pics I'm uploading.
    The pics are all around 600KB in size (jpegs), and are 1280x853px in resolution.  I've even batch-renamed them with a unique file prefix to avoid naming conflicts.

    Solved, sort of.
    I had used the Nautilus rotate/resize extension on a bunch of pics in this set where the landscape/portrait properties were somehow not retained.  Apparently that messes things up with <cfimage> because when I deleted the first image in the set (which was portrait), the upload went fine until I got to the next portrait file.  I opened it in image viewer, rotated it, then rotated it back and saved it, and then it was fine.
    Looks like I have to do this with all the ones I rotated. :/
    But at least I'm able to upload again.

  • Error while calling RFC when using BSP Web Interface

    Hi,
    we have a problem with the Authorization when we use an Web Interface for BSP. We have assigned all roles to the user which were mentioned in the SAP standard documentation:
    R_AREA   
    R_METHOD 
    R_PACKAGE
    R_PARAM  
    R_PLEVEL 
    R_PM_NAME
    R_PROFILE
    R_STS_PT 
    R_STS_SUP
    R_WEBITF 
    S_RS_ADMWB
    S_RS_AUTH
    S_RS_COMP
    S_RS_COMP1
    S_RS_DAS 
    S_RS_ICUBE
    but we still get the error message: "Error while calling RFC".
    When using a user with SAP_ALL, it works.
    What can we do?
    Thx for your time.
    Joerg

    Actually that's surprising - because BSP (Business Server Pages) and RFC (Remote Function Call) are not related; they use totally different transport protocols (http vs. RFC). Even if an BSP application is calling a function module remotely (acting as RFC client) no authorizations for S_RFC are required - in the calling system (but in the called system, i.e. the RFC server).
    Since assigning SAP_ALL seems to "cure" the problem, it seems to be an authorization issue, indeed. In that case it makes sense to use the authorization trace (ST01 - notice: that's specific to one single ABAP application server; you might have to activate the trace on multiple instances) to find out which authorizations are checked / demanded.

  • "Type mismatch" error in IE7/8 when using custom Actions Menu Image

    Hi all,
    in APEX 4.2: when using a custom image in the "Actions Menu Image" attribute in an interactive report, I get a "Type mismatch" error in IE7/8 when refreshing the report through PPR (filtering, sorting, paginating etc.). When I leave the "Actions Menu Image" field empty, everything works fine. The error doesn't seem to happen in IE9 (unless using compatibility mode), or in any non-IE browser.
    I've been able to reproduce the issue in an application on apex.oracle.com:
    http://apex.oracle.com/pls/apex/f?p=69347:1
    Some debugging seems to indicate that the following line in widget.interactiveReport.js is the culprit:
    lTemp.parentNode.replaceChild($x('apexir_WORKSHEET'), lTemp);Does anybody know if this is a known issue, or if there is some workaround?
    Thanks,
    Tobias

    Hi,
    Great solution Paul! It cost me a while before I found out the Action Menu Image was causing my interactive reports to stop refreshing in IE10 and not other browsers. Your solution works great, I've implemented it with a few minor adjustments:
    - Put the css in report template (for some reason it didn't work in our own application stylesheet)
    - replace  'url("/c/action_dropdown.gif")' with 'url("&APP_IMAGE_PREFIX./<path_to_image>")'
    - place one dynamic action on page 0: after refresh of '#apexir_DATA_PANEL' , set event scope to "Dynamic".
    - Let the Dynamic action also fire on page load.
    - To make sure the dynamic action only works for pages with an interactive report add condition of type 'Exists' with expression:
    select 1
    from   dual
    where  :APP_PAGE_ID in (select page_id
                                            from   apex_application_page_ir
                                            where  application_id = :APP_ID
    Best regards,
    Vincent Deelen

  • Win7 can't boot in USB hard drive blue screen 7b error,but can boot when use PD8

    Install Win7 64bit in a USB hard drive through some tools,when start windows the microsoft logo appear,get blue screen.
    ***stop:0x0000007B(0x80786B58,0xC0000034,0x00000000,0x00000000)
    problem has been detected and windows has been shut down to prevent  damage to your computer.If  this is the first you've seen this stop  error screen restart your computer .If this screen appears again.follow these steps:Check for viruses on  your computer.Remove any newly hard drives or hard drive  controllers.Check your hard drive to make sure it is  properly.Configured and terminated.Run DCHKDSK/F to check for hard  drive corrption,and then restart your computer.
    Technical:
    ***stop:0x0000007B(0x80786B58,0xC0000034,0x00000000,0x00000000)
    But when use Parallels Desktop 8 My boot camp ,the win7 can boot normally.
    Any solution?
    Thank you.

    Hi,
    If this issue is related with firmare, then it's recommend to contact the vender\manufacture, if you got any update of this issue, we'd be appreciate that you could share your experience with us.
    Regards
    Yolanda Zhu
    TechNet Community Support

  • Query take long time in fetching when used within a procedure

    The Database is : Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bi
    Query just takes a second from toad but when used inside a procedure as a cursor it takes takes 3 to 5 minutes.
    Following is the Tkprof information when running from procedure.
    SELECT CHCLP.CLM_PRVDR_TYPE_LKPCD, CHCLP.PRVDR_LCTN_IID, TO_CHAR
    (CHCLP.MODIFIED_DATE, 'MM-dd-yyyy hh24:mi:ss') MODIFIED_DATE,
    CHCLP.PRVDR_LCTN_IDENTIFIER, CHCLP.CLM_HDR_CLM_LN_X_PVDR_LCTN_SID
    FROM
    CLM_HDR_CLM_LN_X_PRVDR_LCTN CHCLP WHERE CHCLP.CLAIM_HEADER_SID = :B1 AND
    CHCLP.CLAIM_LINE_SID IS NULL AND CHCLP.IDNTFR_TYPE_CID = 7
    call count cpu elapsed disk query current rows
    Parse 0 0.00 0.00 0 0 0 0
    Execute 1 0.00 0.00 0 0 0 0
    Fetch 1 110.79 247.79 568931 576111 0 3
    total 2 110.79 247.79 568931 576111 0 3
    Misses in library cache during parse: 0
    Optimizer mode: ALL_ROWS
    Parsing user id: 93 (CMSAPP) (recursive depth: 1)
    Rows     Execution Plan
    0 SELECT STATEMENT MODE: ALL_ROWS
    0 PARTITION RANGE (SINGLE) PARTITION:KEYKEY
    0 TABLE ACCESS MODE: ANALYZED (BY LOCAL INDEX ROWID) OF
    'CLM_HDR_CLM_LN_X_PRVDR_LCTN' (TABLE) PARTITION:KEYKEY
    0 INDEX MODE: ANALYZED (RANGE SCAN) OF
    'XAK1CLM_HDR_CLM_LN_X_PRVDR_LCT' (INDEX (UNIQUE))
    PARTITION:KEYKEY
    Execution plan when running just the query from TOAD is: (it comes out in a second)
    Plan
    SELECT STATEMENT ALL_ROWSCost: 6 Bytes: 100 Cardinality: 2                
         3 PARTITION RANGE SINGLE Cost: 6 Bytes: 100 Cardinality: 2 Partition #: 1 Partitions accessed #13          
              2 TABLE ACCESS BY LOCAL INDEX ROWID TABLE CMSAPP.CLM_HDR_CLM_LN_X_PRVDR_LCTN Cost: 6 Bytes: 100 Cardinality: 2 Partition #: 2 Partitions accessed #13     
    Why would fetching take such a long time? Please let me know if you need any other information.
    Thank You.
    Edited by: spur230 on Apr 1, 2009 10:23 AM
    Edited by: spur230 on Apr 1, 2009 10:26 AM
    Edited by: spur230 on Apr 1, 2009 10:28 AM
    Edited by: spur230 on Apr 1, 2009 10:30 AM

    Query just takes a second from toad It's possible that the query starts returning rows in a second, but that's not the time required for the entire query.

  • Frequently get error "Firefox is already running" when using desktop shortcuts to web sites

    I love Firefox and don't want to use another browser. I frequently get the error "Firefox is already running". I even created a batch file to kill the process so I can re-launch it. There has to be a real solution.
    The key to my issue is... I use shortcuts to web sites from my desktop. This is what seems to trigger the error (but not every time). Please don't tell me to stop using shortcuts; that isn't a solution.
    I am using Windows 8.1 64 bit
    Firefox 32.0.1 (had this same problem with all prior versions too)
    Any help is appreciated!

    Separate issue;
    Your System Details shows;
    Installed Plug-ins
    Shockwave Flash 15.0 r0
    Shockwave Flash 14.0 r0
    Having more than one version of a program may cause issues.
    Flash is notorious for not cleaning out the older version as part of an update.
    Grab the uninstaller from here:
    '''[http://helpx.adobe.com/flash-player/kb/uninstall-flash-player-windows.html Uninstall Flash Player | Windows]'''
    '''[http://helpx.adobe.com/flash-player/kb/uninstall-flash-player-mac-os.html Uninstall Flash Player | Mac]'''
    Then reinstall the latest version.
    Shockwave Flash '''v15.0.0.152 http://get.adobe.com/flashplayer/'''
    fixed last link as it incorrectly was for shockwave player instead of the proper flash player. If it has shockwave in a adobe link then that is not Flash.

  • Error Message Repeated Display When using BBP_DOC_CHECK_BADI

    Hi,EveryOne,
        Who can help me,I am using BBP_DOC_CHECK_BADI,Check the item's,when the first time,i modify some PO item data,then through this BBP_DOC_CHECK_BADI,can show one error message.Then i modify the error data to correct,push the check button,no error message show again.
         Then i go into the second item,check,no error message.
         And there only two item.
         So, i Save the order.But the first error message display again.
         I don't know why? Is there have any one can help me.I am will very appreciate him.
        Thanks a lot.
    The code display:
            DATA:l_destination TYPE rfcdest.
            DATA:lt_ekbe TYPE TABLE OF zgp_invoice_check,
                 ls_ekbe TYPE                 z_invoice_check,
                 lt_ekpo TYPE TABLE OF z_invoice_po,
                 ls_ekpo TYPE                 z_invoice_po.
            CLEAR:l_destination.
            CHECK po_header-be_log_system IS NOT INITIAL.
            MOVE po_header-be_log_system TO l_destination.
            CALL FUNCTION 'Z_INVOICE_PRICING_CHECK'
              DESTINATION l_destination
              EXPORTING
                pi_ebeln = po_header-be_object_id
              TABLES
                pto_ekbe = lt_ekbe
                pto_ekpo = lt_ekpo
              EXCEPTIONS
                OTHERS   = 1.
            IF lt_ekbe[] IS NOT INITIAL.
              SORT lt_ekbe BY ebeln ebelp.
              LOOP AT po_item INTO ls_po_item.
                READ TABLE lt_ekbe INTO ls_ekbe WITH KEY ebelp = ls_po_item-number_int.
                IF sy-subrc EQ 0.
                  READ TABLE lt_ekpo INTO ls_ekpo WITH KEY ebelp = ls_po_item-number_int.
                  IF sy-subrc EQ 0 AND ls_ekpo-netpr NE ls_po_item-price.
                    ls_messages-msgty = 'E'.
                    ls_messages-msgid = 'BBP_PU'.
                    ls_messages-msgno = '001'.
                    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'
                      EXPORTING
                        input  = ls_po_item-number_int
                      IMPORTING
                        output = ls_po_item-number_int
                      EXCEPTIONS
                        OTHERS = 1.
                    CONCATENATE 'Line No.' ls_po_item-number_int ': ' 'Price cannot be changed for invoice item!'
                           INTO ls_messages-msgv1.
                    CONCATENATE 'Line No.' ls_po_item-number_int ': ' 'Price cannot be changed for invoice item!'
                           INTO ls_messages-message.
                    APPEND ls_messages TO et_messages .
                  ENDIF.
                ENDIF.
              ENDLOOP.
            ENDIF.
    Edited by: andy zhou on Apr 10, 2008 3:51 AM

    Hi
    Which SRM version are you using ?
    All the Data after makning changes in the PO document, will be also aviavale in BBP_DOC_CHANGE_BADI for the filter type- BUS2201 (Purchase orders) in your case. You can either do a validation there using BBP_DOC_CHECK_BADI.
    The  Business Add-Ins [BADI] - BBP_DOC_CHECK_BADI should be used for customer messages to be triggered ->
    Re: Error message control for invoice w/o PO in SRM
    Re: calling a screen from BADI BBP_DOC_CHECK_BADI
    Re: PO Message
    Re: Problem with BBP_DOC_CHECK_BADI 
    Re: Mandatory field
    Re: "Refresh" button in BBP_POC calls badi..... ?
    Re: Validation of SC/PO
    Re: PO Changes, PO date
    Do let me know, incase still face any issues.
    Regards
    - Atul

  • Error "Job already started" when calling a adobe form in Z function module

    Hi All,
    I have a error when calling a adobe form in a custom function module.
    I am using FP_FUNCTION_MODULE_NAME to get the adobe form function module and then i am using FP_JOB_OPEN function module to control the printing parameters such as no print preview or no dialog ..etc.. I dont have any exceptions during the call of FP_JOB_OPEN function module ..
    Later I am calling my function module which was generated for the adobe form and i am getting the error called " JOB ALREADY STARTED".
    I tried executing the same function module in se37 and the PDF form output was generated, and also by commenting FP_JOB_OPEN function module the PDF form output was generated.
    But i need the FP_JOB_OPEN function module to control the output based on the output type which triggers the form output such as the medium from nast record which says print or email or fax.. etc
    Please let me know how to handling this error.

    Just as a followup note. If you are testing a function module from SE37 and the test button you will get a value in SY-CPROG. You must override this value for everything to work.
    If you override the value of SY-CPROG with the main program that will be calling the function module you have no problem.
    John W.

  • Error message from OSX when using Toast

    When I opena dvd in Toast and go to slide show I get the error message below:
    rocess: Slideshow [241]
    Path: /Volumes/Snow and Scotland 2010/Slideshow.app/Contents/MacOS/Slideshow
    Identifier: com.roxio.Slideshow
    Version: ??? (1.0)
    Code Type: X86 (Native)
    Parent Process: launchd [84]
    Date/Time: 2010-05-08 13:46:19.971 +0100
    OS Version: Mac OS X 10.6.3 (10D573)
    Report Version: 6
    Interval Since Last Report: 34973 sec
    Crashes Since Last Report: 18
    Per-App Interval Since Last Report: 24 sec
    Per-App Crashes Since Last Report: 15
    Anonymous UUID: 74E4A971-635D-4AB8-8FF8-242C2FEE4C8F
    Exception Type: EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Application Specific Information:
    * Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[IKSlideshow runSlideshowWithDataSource:options:]: unrecognized selector sent to instance 0x1310c0'
    * Call stack at first throw:
    0 CoreFoundation 0x959f7bda __raiseError + 410
    1 libobjc.A.dylib 0x97acb509 objcexceptionthrow + 56
    2 CoreFoundation 0x95a448db -[NSObject(NSObject) doesNotRecognizeSelector:] + 187
    3 CoreFoundation 0x9599e806 __forwarding__ + 950
    4 CoreFoundation 0x9599e3d2 CF_forwarding_prep0 + 50
    5 Slideshow 0x00003888 -[MainController awakeFromNib] + 1586
    6 CoreFoundation 0x95990584 -[NSSet makeObjectsPerformSelector:] + 196
    7 AppKit 0x903b6bc8 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1566
    8 AppKit 0x903b4ba0 loadNib + 257
    9 AppKit 0x903b41f4 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 831
    10 AppKit 0x903b3eaa +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 158
    11 AppKit 0x903b3df5 +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 383
    12 AppKit 0x903b0bf9 NSApplicationMain + 434
    13 Slideshow 0x00002ace _start + 216
    14 Slideshow 0x000029f5 start + 41
    15 ??? 0x00000002 0x0 + 2
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 com.apple.CoreFoundation 0x95a42a07 __TERMINATING_DUE_TO_UNCAUGHT_EXCEPTION__ + 7
    1 libobjc.A.dylib 0x97acb509 objcexceptionthrow + 56
    2 com.apple.CoreFoundation 0x95a448db -[NSObject(NSObject) doesNotRecognizeSelector:] + 187
    3 com.apple.CoreFoundation 0x9599e806 __forwarding__ + 950
    4 com.apple.CoreFoundation 0x9599e3d2 CF_forwarding_prep0 + 50
    5 com.roxio.Slideshow 0x00003888 -[MainController awakeFromNib] + 1586
    6 com.apple.CoreFoundation 0x95990584 -[NSSet makeObjectsPerformSelector:] + 196
    7 com.apple.AppKit 0x903b6bc8 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1566
    8 com.apple.AppKit 0x903b4ba0 loadNib + 257
    9 com.apple.AppKit 0x903b41f4 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 831
    10 com.apple.AppKit 0x903b3eaa +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 158
    11 com.apple.AppKit 0x903b3df5 +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 383
    12 com.apple.AppKit 0x903b0bf9 NSApplicationMain + 434
    13 com.roxio.Slideshow 0x00002ace _start + 216
    14 com.roxio.Slideshow 0x000029f5 start + 41
    Thread 1:
    0 libSystem.B.dylib 0x91876bd2 _workqkernreturn + 10
    1 libSystem.B.dylib 0x91877168 pthreadwqthread + 941
    2 libSystem.B.dylib 0x91876d86 start_wqthread + 30
    Thread 2: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x91877b42 kevent + 10
    1 libSystem.B.dylib 0x9187825c dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x91877719 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x918774be dispatch_workerthread2 + 240
    4 libSystem.B.dylib 0x91876f41 pthreadwqthread + 390
    5 libSystem.B.dylib 0x91876d86 start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x97acb4e5 ecx: 0xa01fc4e0 edx: 0x0000003b
    edi: 0xa09ebaf0 esi: 0x00131660 ebp: 0xbffff618 esp: 0xbffff600
    ss: 0x0000001f efl: 0x00000286 eip: 0x95a42a07 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x000af000
    Binary Images:
    0x1000 - 0x3fff +com.roxio.Slideshow ??? (1.0) /Volumes/Snow and Scotland 2010/Slideshow.app/Contents/MacOS/Slideshow
    0x8fe00000 - 0x8fe41627 dyld 132.1 (???) <7E8A62A5-BB2D-C9C5-940D-B493DC9CD231> /usr/lib/dyld
    0x9003d000 - 0x900abff7 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
    0x900b9000 - 0x90257feb com.apple.JavaScriptCore 6531.22 (6531.22.5) <3FB9AF5B-17DD-D4C8-C7B1-4F79B404496E> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x90258000 - 0x902f0fe7 edu.mit.Kerberos 6.5.9 (6.5.9) <6BE72972-E512-19E3-F68A-67A0548498D9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x90313000 - 0x903aeff7 com.apple.ApplicationServices.ATS 4.2 (???) <3BEB7210-4C85-7309-B22D-695765526524> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x903af000 - 0x90c8eff7 com.apple.AppKit 6.6.5 (1038.29) <E76A05A6-27C6-DA02-0961-5C8EEDC5F0A7> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x90c8f000 - 0x90e11fe7 libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <96A45E03-2B29-83EB-0FC6-2C932E398722> /usr/lib/libicucore.A.dylib
    0x90fee000 - 0x90fefff7 com.apple.TrustEvaluationAgent 1.1 (1) <8C570606-D77C-738E-7148-6B28846F0B3C> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x90ff0000 - 0x90ff0ff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x90ff1000 - 0x911d3fff com.apple.imageKit 2.0.3 (1.0) <56AE34CD-4406-8AA2-DDBF-DBF902BD0E0A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x911d4000 - 0x911f5fe7 com.apple.opencl 12.1 (12.1) <1BCA4F60-E612-5C1B-EF50-A810D70CDF05> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x91347000 - 0x913c0ff7 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
    0x913c1000 - 0x913c5ff7 IOSurface ??? (???) <4B825ADA-8DBE-6BA2-1AB3-307D2C3AFCA8> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x915ba000 - 0x9173afeb com.apple.MediaToolbox 0.484.5 (484.5) <6996E5E1-18B6-C734-8335-FE43670C1F9C> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x9173b000 - 0x9176bff7 com.apple.MeshKit 1.1 (49.2) <ECFBD794-5D36-4405-6184-5568BFF29BF3> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x91850000 - 0x919f5feb libSystem.B.dylib 125.0.1 (compatibility 1.0.0) <06A5336A-A6F6-4E62-F55F-4909A64631C2> /usr/lib/libSystem.B.dylib
    0x91a47000 - 0x91a85ff7 com.apple.CoreMedia 0.484.5 (484.5) <35725D22-4549-5568-8E8C-62E0AD0E90F7> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x91a8d000 - 0x91ac0ff7 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
    0x91ac1000 - 0x91aceff7 com.apple.NetFS 3.2.1 (3.2.1) <1F28472D-9913-B8CE-B025-BBA52372F568> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x91acf000 - 0x91dc8fef com.apple.QuickTime 7.6.6 (1729) <4C99ED7D-5A4B-E41E-602D-2D01A99168CD> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x91dc9000 - 0x91dcbff7 com.apple.securityhi 4.0 (36638) <3F66C91E-D1D7-8E85-4CF8-A8B557D6DBC5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x91dcc000 - 0x92133ff7 com.apple.QuartzCore 1.6.1 (227.18) <8A65F233-4C77-BA7C-5DDA-2423F5C1B7A1> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x92134000 - 0x92145ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <FF1FC361-4F97-8F22-7272-1EDFF828E7BA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x92146000 - 0x92189ff7 libGLU.dylib ??? (???) <CE02968E-930D-E63B-7B21-B87205F8B19A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9218a000 - 0x921a5ff7 libPng.dylib ??? (???) <929FE8EE-277D-F6EB-D672-E6F4CEBF1504> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x921a6000 - 0x92663ffb com.apple.VideoToolbox 0.484.5 (484.5) <DA9B4FA8-B91C-43AC-1D84-0BFF46BB5BCE> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x9266c000 - 0x9276dfe7 libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <89E648DC-E865-0AF4-5D4D-9562458FE939> /usr/lib/libxml2.2.dylib
    0x9276e000 - 0x92838fef com.apple.CoreServices.OSServices 357 (357) <764872C3-AE30-7F54-494D-4BA3CE4F4DFB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x928e3000 - 0x928eaff3 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
    0x928eb000 - 0x92d20ff7 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
    0x92d21000 - 0x92ddafe7 libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
    0x92ddb000 - 0x92e3fffb 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
    0x92e40000 - 0x93256ff7 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
    0x93257000 - 0x93482ff3 com.apple.QuartzComposer 4.1 (156.13) <FE0BF06B-8D32-C712-7CCD-63D8918B8B6D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x93483000 - 0x934a9fff com.apple.DictionaryServices 1.1.1 (1.1.1) <B4344524-2EC0-D4C7-85B6-8A8CC6A5DCEA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x934aa000 - 0x934aeff7 libGIF.dylib ??? (???) <03880BA1-7A86-0F2B-617A-C66B1D05DD70> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x934b1000 - 0x9350bfe7 com.apple.CorePDF 1.1 (1.1) <E4608FF6-A27D-7DFC-5620-D86762502AC0> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x93566000 - 0x9357afe7 libbsm.0.dylib ??? (???) <821E415B-6C42-D359-78FF-E892792F8C52> /usr/lib/libbsm.0.dylib
    0x93583000 - 0x93589fff 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
    0x9363b000 - 0x9366cff7 libGLImage.dylib ??? (???) <AF110892-B10A-5B61-F898-21FB2BCE63BF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945bf000 - 0x945caff7 libCSync.A.dylib 543.33.0 (compatibility 64.0.0) <F914F427-98EA-98BC-923D-47274A90D441> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x946d2000 - 0x94800fe7 com.apple.CoreData 102.1 (251) <E6A457F0-A0A3-32CD-6C69-6286E7C0F063> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x94801000 - 0x94845fe7 com.apple.Metadata 10.6.3 (507.8) <53BB360A-1813-170D-827F-C1863EF15537> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9486a000 - 0x948c0ff7 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
    0x948c1000 - 0x9491cff7 com.apple.framework.IOKit 2.0 (???) <69E4FE93-376C-565E-650F-04FAD213AA24> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9491d000 - 0x94a5ffe3 com.apple.QTKit 7.6.6 (1729) <1EC021FB-AB8F-F8BF-0434-78C0A7B78EB2> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x94a61000 - 0x94a9fff7 com.apple.QuickLookFramework 2.2 (327.4) <88A59C42-A200-FCB6-23EC-E848D0E14963> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x94aa0000 - 0x94aa0ff7 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
    0x94dc2000 - 0x95032ffb com.apple.Foundation 6.6.2 (751.21) <DA7A173A-4435-ECD6-F4AF-977D722FD2F7> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x95033000 - 0x95084ff7 com.apple.HIServices 1.8.0 (???) <10C85B88-C6AF-91DB-2546-34661BA35AC5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x950ba000 - 0x95170fff libFontParser.dylib ??? (???) <5935E105-1E45-886C-6420-C1CCA886C375> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x9519b000 - 0x95243ffb com.apple.QD 3.35 (???) <B80B64BC-958B-DA9E-50F9-D7E8333CC5A2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x95244000 - 0x95294ff7 com.apple.framework.familycontrols 2.0.1 (2010) <50E74916-19A5-F2FC-AB57-76F2C8DDF0A7> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x952b4000 - 0x95516ff3 com.apple.security 6.1.1 (37594) <1AC07F75-7E27-9662-21DA-B05DFF047B26> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x95517000 - 0x9555dff7 libauto.dylib ??? (???) <9A2E444C-89BD-2902-C1E6-EC3E92544A25> /usr/lib/libauto.dylib
    0x9555e000 - 0x95572ffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <0DBE17D5-17A2-8A0E-8572-5A78408B41C9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x95573000 - 0x95591ff7 com.apple.CoreVideo 1.6.1 (45.4) <E0DF044D-BF31-42CE-B690-FD1FCE07E64A> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x95592000 - 0x95684ff7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <7482933B-4AF6-ED55-AD72-4FBD1E134958> /usr/lib/libcrypto.0.9.8.dylib
    0x95688000 - 0x95698ff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x95708000 - 0x9573dff7 libcups.2.dylib 2.8.0 (compatibility 2.0.0) <458E819A-4E3F-333E-28CE-671281B318D3> /usr/lib/libcups.2.dylib
    0x9573e000 - 0x95749ff7 libGL.dylib ??? (???) <EAD85409-9036-831B-C378-E50780305DA6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9574a000 - 0x957e7fe3 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
    0x957e8000 - 0x9586affb SecurityFoundation 36840.0.0 (compatibility 1.0.0) <9714B2B7-854E-834D-FEEC-07F85E10D557> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x958f5000 - 0x958ffffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <45083DBA-5EA4-9B90-8BEB-A089E515180F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x95900000 - 0x95900ff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <BC501C9F-7C20-961A-B135-0A457667D03C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x95901000 - 0x95923fef com.apple.DirectoryService.Framework 3.6 (621.3) <05FFDBDB-F16B-8AC0-DB42-986965FCBD95> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x95924000 - 0x95a9dffb com.apple.CoreFoundation 6.6.1 (550.19) <1E97FB1E-9E42-B8EB-E463-5C75315FDA31> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x95ada000 - 0x95b27feb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <52906E26-3D22-6F37-8C90-E50BBCDEA5D0> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x95b28000 - 0x95b2cff7 libGFXShared.dylib ??? (???) <286F466C-2856-B579-B87F-4E9A35C80263> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x95b2d000 - 0x95b85fe7 com.apple.datadetectorscore 2.0 (80.7) <18C2FB6A-BF60-F838-768C-0306151C21DA> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x95b86000 - 0x95b86ff7 com.apple.vecLib 3.6 (vecLib 3.6) <7362077A-890F-3AEF-A8AB-22247B10E106> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x95c7c000 - 0x95c85ff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x95c86000 - 0x95c94ff7 com.apple.opengl 1.6.7 (1.6.7) <3C529790-DEE9-AC27-A879-806E4C23323C> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x95c95000 - 0x95cd9ff3 com.apple.coreui 2 (114) <29F8F1A4-1C96-6A0F-4CC2-9B85CF83209F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x95cda000 - 0x95d20ffb com.apple.CoreMediaIOServices 130.0 (1035) <397101F4-BA80-C8C2-F816-E2FBE5E15D4F> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x95d21000 - 0x95d31ff7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x95e6a000 - 0x96659537 com.apple.CoreGraphics 1.543.33 (???) <C57E2964-80AF-6346-6D3E-23AED9D26977> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x96f11000 - 0x96f82ff7 com.apple.AppleVAFramework 4.8.11 (4.8.11) <BDDDFA36-4B53-4B57-B3D4-427DA8226A80> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x96f8e000 - 0x9709aff7 libGLProgrammability.dylib ??? (???) <CA0A975B-2BEE-44E7-CFA6-8105CFE6FE00> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x9709b000 - 0x970daff7 com.apple.ImageCaptureCore 1.0.1 (1.0.1) <A03C5D7E-54CD-D56D-E120-9B35EBC9D8F1> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x970db000 - 0x97145fe7 libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x97151000 - 0x971cbfef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <F8CDF5EC-1CC7-5CE7-58C2-2A59D17D2DD5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x971cc000 - 0x971cdff7 com.apple.audio.units.AudioUnit 1.6.3 (1.6.3) <959DFFAE-A06B-7FF6-B713-B2076893EBBD> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x971ce000 - 0x971f2ff7 libJPEG.dylib ??? (???) <EDA86712-F49C-760C-BE55-9B899A4A5D1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x971f3000 - 0x973afff3 com.apple.ImageIO.framework 3.0.2 (3.0.1) <CB39B067-58B8-70DB-3E40-160604664A6D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x973b0000 - 0x976d0feb com.apple.CoreServices.CarbonCore 861.6 (861.6) <D3D5D9F1-01ED-DCAD-6AA9-4ABE60C7A112> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x976e1000 - 0x977bcfe7 com.apple.DesktopServices 1.5.5 (1.5.5) <ECEDFDF2-C40E-8DF0-F8FC-249CCA762E62> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x97845000 - 0x978b4ff7 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
    0x978bc000 - 0x978d4ff7 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
    0x978d5000 - 0x97967fe3 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
    0x97968000 - 0x97969ff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x97ac1000 - 0x97b6efe7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <3308DD74-5D03-6189-2AFD-63BF06848E91> /usr/lib/libobjc.A.dylib
    0x97b6f000 - 0x97c71fef 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
    0x97c7e000 - 0x97cc7fe7 libTIFF.dylib ??? (???) <E45B169E-253E-E865-1501-97777D2702F2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x97d04000 - 0x97d47ff7 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
    0x97d95000 - 0x97d95ff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x980bb000 - 0x980f8ff7 com.apple.SystemConfiguration 1.10.2 (1.10.2) <830FED9E-3E24-004C-35D5-2C1273F79734> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x980f9000 - 0x9841dfef com.apple.HIToolbox 1.6.2 (???) <F5F99E78-5377-DD54-6138-9FC84467F938> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x98432000 - 0x98438ff7 com.apple.DisplayServicesFW 2.2.2 (251) <D8BB3A1F-29C7-A957-C781-794CC9550525> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x984ee000 - 0x9859eff3 com.apple.ColorSync 4.6.3 (4.6.3) <68B6A1B9-86CF-0C5A-7D63-56ED4BB2EB5B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9859f000 - 0x985c6ff7 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
    0x98643000 - 0x98651fe7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <82B2C254-6F8D-7BEA-4C18-038E90CAE19B> /usr/lib/libz.1.dylib
    0x98652000 - 0x98657ff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x98658000 - 0x98658ff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x98735000 - 0x9873ffe7 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
    0x98740000 - 0x98755fff com.apple.ImageCapture 6.0 (6.0) <0E86F45E-E656-9015-7AD4-A2C5F8D8A2FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x98761000 - 0x9877dfe3 com.apple.openscripting 1.3.1 (???) <DE20A1B9-F9B6-697C-B533-F5869BA43077> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9877e000 - 0x9879efe7 libresolv.9.dylib 40.0.0 (compatibility 1.0.0) <03019DD7-993D-AC88-6636-179F92F315C4> /usr/lib/libresolv.9.dylib
    0x98908000 - 0x98908ff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x98909000 - 0x98c88ff3 com.apple.RawCamera.bundle 3.0.2 (527) <981AB834-6C34-6FA5-F886-01DF06C56609> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x98c89000 - 0x98c8cff7 libCoreVMClient.dylib ??? (???) <98CB96B1-85FE-25AF-AB19-ED061912FC3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x98ccf000 - 0x98dfbfff com.apple.audio.toolbox.AudioToolbox 1.6.3 (1.6.3) <F0D7256E-0914-8E77-E37B-9720430422AB> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x98f71000 - 0x98fb3ff7 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
    0x98fb4000 - 0x99091ff7 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
    0x990cb000 - 0x990f3ff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x990f4000 - 0x9919dff7 com.apple.CFNetwork 454.9.4 (454.9.4) <2F8B5BA5-099F-6CDA-F500-4CA188BBCDBC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9919e000 - 0x9919eff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9919f000 - 0x991a2fe7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x991a3000 - 0x99204fe7 com.apple.CoreText 3.1.0 (???) <1372DABE-F183-DD03-03C2-64B2464A4FD5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x99348000 - 0x9934aff7 libRadiance.dylib ??? (???) <9358E1EF-F802-B76E-8E23-2D0695787CFB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x99361000 - 0x99373ff7 com.apple.MultitouchSupport.framework 204.12.1 (204.12.1) <6BB58E90-21FA-C491-F0E4-54B69CCDBBC0> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x99374000 - 0x99380ff7 libkxld.dylib ??? (???) <13F26BB6-C2F7-9D74-933E-09AD8B509ECD> /usr/lib/system/libkxld.dylib
    0x99381000 - 0x99401feb com.apple.SearchKit 1.3.0 (1.3.0) <2F5DE102-A203-7905-7D12-FCBCF17BAEF8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9959c000 - 0x9959cff7 com.apple.Carbon 150 (152) <811FC695-B346-354A-EDEA-1D243DE50BC8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9963f000 - 0x996edff3 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
    0x996ee000 - 0x996f1ffb com.apple.help 1.3.1 (41) <EF92C648-2085-C085-8EA7-A1AF37AE94F4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <06A5336A-A6F6-4E62-F55F-4909A64631C2> /usr/lib/libSystem.B.dylib
    Model: Macmini3,1, BootROM MM31.00AD.B00, 2 processors, Intel Core 2 Duo, 2.26 GHz, 2 GB, SMC 1.35f1
    Graphics: NVIDIA GeForce 9400, NVIDIA GeForce 9400, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x90), Broadcom BCM43xx 1.0 (5.10.91.27)
    Bluetooth: Version 2.3.1f4, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: FUJITSU MHZ2160BH G1, 149.05 GB
    Serial ATA Device: OPTIARC DVD RW AD-5670S, 103.9 MB
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x04500000
    USB Device: Composite Device, 0x04f3 (ELAN Microelectronics Corportation), 0x0103, 0x04100000
    USB Device: Microsoft Wireless Optical Mouse® 1.00, 0x045e (Microsoft Corporation), 0x00e1, 0x06200000
    USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x06100000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8216, 0x06110000

    The COMBO update includes all updated items since the original release of 10.6.0, including any security updates and can be used on any previous version. The 10.6.3 update only works on 10.6.2 or 10.6.3. SL = Snow Leopard. Sorry for the confusion, but I've been mucking with SL for over 18 months and forget some don't use that terminology.

  • Error processing a page when using AJAX

    hi apex forum.
    I need your help with a problem that presents me with an application in apex 4.2.
    I have developed a html screen, in which I have created a table that contains a detailed items and on which the user can enter some values. these data that user enters, I calculate a total at the end of the page. To view the current total of the entries , the user presses a button that uses AJAX (to avoid having to refresh the whole page)  to calculate totals and at the same time, i call an AJAX process to add each record to an apex_collection , until here everything perfect.
    The problem is that when I want to save the information to pass it from apex_collection to the database (by pressing a button and make the official insert), I must first have to refresh the page, if not do it this way, Apex generate an Error Message.
    it's important to say that error does not apper, if before pressing the button, i first refresh the page.  Any suggestions??
    I think I should use some internally command to synchronize or update the page.... any suggestions are welcome.,
    thanks in advance,

    Soooo...
    What is the error you are seeing?
    Is the multi-row process still there? What exactly happens on submit (computations, validations, processes)?
    Have you tried to run with debug enabled and were you able to see where the error originates?

  • Error 00-341 RAISE_EXCEPTION when using Call Transaction for VA01 in backgr

    Hi,
    I am getting this message when I use call transaction to create a sales order using VA01. Following is the statement I have used.  Note that when i execute the program online, I am not getting any errors. I could create sales order without any problem. I am getting this exception only when I run in background.
          CALL TRANSACTION 'VA01'
                     USING BDC_TAB
                      MODE 'N'
                    UPDATE 'S'
             MESSAGES INTO W_MESS_TAB.
    When I captured message tab, I got following messages.
    DC006 - Control Framework: Fatal error - GUI cannot be reached
    00341 Runtime error RAISE_EXCEPTION has occurred.
    Please help me in this regard.
    Regards
    Kasi

    Some times execution of BDC program in back ground is different from the foreground. Some screens may appear in background and raise error while same will not when executed in foreground.
    Double click the message in Session log to know more details.
    One way is to suppress the screen while executing BDC.
    Alternatively I suggest to use BAPI instead.
    - Sanjay

Maybe you are looking for

  • Runtime Error in itunes

    Hi all, I have itunes 7 loaded on my PC and have had so for a while. Up till now its been operating fine. Toady when i tried to open it i got the following message: Microsoft Visual C ++ Runtime Library Runtime Error Program C:\Program Files\itunes\i

  • Since IOS 6 update, malfunction with auto rotate and sounds

    Hello. I'm wondering if others have experienced a problem since updating their IPads. Since the update, I've lost the dual functionality of auto-rotate and sounds. I can only have 1 of the functions operate as per norm.  If I want sounds (for keyboar

  • Is smserialport broken or am I doing something wrong?

    I'm trying to configure a serial port and I keep getting blown off by smserialport. I have tried using the SMC gui and that shows no ports and gives me no actions to add a port. So I went back to the command line : Firstly, it won't list ports : # ./

  • Preventing duplication

    Is there a way to prevent duplication of a dvd created in iDVD from Final Cut Pro? I have a montage that the high school students will buy one and make 20 copies for their friends instead of buying each as a support for the class that created the mon

  • PDF vs PDF/a

    Hello - Is there a way to tell the difference between a PDF file and a PDF/a file? I could find no differences in the properties. Any help is appreciated.