Upload Xlets to Alticast decoder

Hi all,
I'm a newbie.
I created my first xlet and I have a TV decoder (Humax 4500 DTT) provided with an Alticast firmware.
This Tv decoder have a serial port which can be used for Input/Output.
Can I use the serial port to upload my xlets?
Shall I use a particular application to upload my .class files?
How can I solve my problem?
I apologize for my newbie-questions :-|
Thanks a lot in advance

I had the same problem. Solution for me:
Run iPhoto and immediately click on any album, event, anything other than the Facebook album that is causing the crash.
Open the Preferences selection in the iPhoto menu
Click on Accounts tab
Select the Facebook Account and delete it by clicking on the "-" at the bottom of the list
It will tell you that it's going to delete all FB albums from your iPhoto. I chose to backup FB albums.
While it might not be necessary, I quit and restarted iPhoto
Open the Preferences selection in the iPhoto menu
Click on Accounts tab
Add your Facebook account by clicking "+" at the bottom of the list
Once I did that, everything seemed to be fine although it appears that it's trying to download my FB albums from FB. I'm not on particularly fast internet at the moment, so I'm not letting it do that.

Similar Messages

  • Change file name with oreilly servlet

    I am using oreilly servlet package and I want to change the file name to the file I am uploading, is this possible ?
    How ?
    Thanks.
    here I post the servlet code:
    package com.reducativa.sitio.servlets;
    * DemoParserUploadServlet.java
    * Example servlet to handle file uploads using MultipartParser for
    * decoding the incoming multipart/form-data stream
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import com.oreilly.servlet.multipart.*;
    public class DemoParserUploadServlet extends HttpServlet {
    public void doPost(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    PrintWriter out = response.getWriter();
    response.setContentType("text/plain");
    out.println("Demo Parser Upload Servlet");
    File dir = new File("f:/");
    if (! dir.isDirectory()) {
    throw new ServletException("Supplied uploadDir " + "f:/ " +
    " is invalid");
    try {
    MultipartParser mp = new MultipartParser(request, 10*1024*1024); // 10MB
    Part part;
    while ((part = mp.readNextPart()) != null) {
    String name = part.getName();
    if (part.isParam()) {
    // it's a parameter part
    ParamPart paramPart = (ParamPart) part;
    String value = paramPart.getStringValue();
    out.println("param; name=" + name + ", value=" + value);
    else if (part.isFile()) {
    // it's a file part
    FilePart filePart = (FilePart) part;
    String fileName = filePart.getFileName();
    if (fileName != null) {
    // the part actually contained a file
    long size = filePart.writeTo(dir);
    out.println("file; name=" + name + "; filename=" + fileName +
    ", filePath=" + filePart.getFilePath() +
    ", content type=" + filePart.getContentType() +
    ", size=" + size);
    else {
    // the field did not contain a file
    out.println("file; name=" + name + "; EMPTY");
    out.flush();
    catch (IOException lEx) {
    this.getServletContext().log("error reading or saving file");
    }

    Hi there,
    I am facing the same problem that you have stated in your Feb 26, 2002 10:28 AM message regarding "change file name with oreilly servlet", I would like to change the file name to include a unique identifier upon upload, did you ever find a solution to your problem?
    Thanks!
    Todd
    [email protected]

  • MHP serial return channel

    Does anyone know how to use the serial port present in some set-top boxes?
    Is it a RS232 serial port?
    It's intended to provide a way of using other return device than a modem, but since the MHP spec. only defines that the return channel is a TCP/IP connection and the basic connection handle API, I don't know how to setthe return channel to be by the serial port.
    I also need direct access to it, not over TCP/IP, but using streams or something like. Has anyone written some code to talk to this port, or can indicate me som documentation references?

    There is requirement that an MHP box support an RS232 port, hence there are no standard API's to support it. All the Debug boxes I've seen use a serial port for debug (uploading xlets to debug are reading back trace messages written to standard out).
    If you want to use the return channel you'll need to look at the org.dvb.net.rc packages to set up the return channel. For example use:
    RCInterfaceManager.getInstance().getInterfaces();
    to find out what return channel hardware you've got attached to your STB. After you've set up the connection you can use the standard java.io and java.net packages to talk to your remote server.
    Hope this helps,
    Roger

  • AVC intra 100 in FCP

    Tried to "log and transfer" a Panasonic HPX3000 P2/AVC-Intra 100/ 1080x1920 60i/24P file but Final Cut Studio 2(6.0) didn't read it What did I d wrong?? have the latest Macbook Pro intel computer, I have uploaded the Panasonic AVCintra Decoder in my mac succesfully.
    I have i my Audio / Video setting chosen : Apple ProRes 422 (HQ) 1920x1080 24P 48 Hz.
    What am I missing??
    Anybody know?
    I would appreciate it..
    Theo Van de Sande

    Do you have have FCP 6.0.2? The latest upgrade?
    How about FX Factory by Noise Industries? Do you have that? I ran into an import issue with P2 DVCPRO HD and a version of those plugins. They have been updated to fix that issue.
    Shane

  • Upload File using decode in SQL Region...Help

    I am trying to allow a user to see the file names of files attached to a row (ex., training certificates for training taken). If there is no training certificate attached, "None (Upload Certificate)" is shown in that column as html. I want the user to be able to upload the certificate, by clicking on that html. I'm getting "Error ERR-1002 Unable to find item ID for item "TRAINING_ID" in application "113". ", when clicking on the link.
    Here is my code:
    select
    A.TRAINING_ID,
    A.TRAINING_ID TRAINING_ID_DISPLAY,
    A.PERSONNEL_ID,
    A.COURSE_ID,
    A.DATE_COMPLETED,
    A.CERTIFICATE_ID,
    B.IMAGE_ID,
    decode(b.filename, null, htf.anchor('f?p=113:1090:'||:APP_SESSION||'::NO::PERSONNEL_ID,TRAINING_ID:'||A.PERSONNEL_ID||'%2C'||A.TRAINING_ID, 'None (Upload Certificate)'),
    ''||&B.FILENAME||'') as cert_file_name,
    B.IMAGE_ID DELETE_CERTIFICATE
    from TRAINING A, EASY_IMAGE B
    WHERE A.PERSONNEL_ID = :P2_PERSONNEL_ID
    AND (A.PERSONNEL_ID = B.PERSONNEL_ID (+)
    AND A.TRAINING_ID = B.TRAINING_ID (+))
    The only thing that doesn't seem to be working correctly, is when the filename is null, the parameter's being passed and calling of the upload form. I've tested this in another app, but not being passed in the SQL Region and in both cases the status line at the bottom match for the call, when passing the mouse over the link. One works fine , but the decoded one gives me the error above.
    Any Help/Direction would be GREATLY Appreciated.
    Thanks in Advance!
    Juanita Layne

    We Got it......
    We changed the decode to this..
    decode(b.filename, null, htf.anchor('https://rockhopper.hqcnsg.navy.mil/apex/f?p=102:1090:&SESSION.::NO::PERSONNEL_ID,TRAINING_ID:'||A.PERSONNEL_ID||','||A.TRAINING_ID||':','None (Upload Certificate)'), ''||&B.FILENAME||'') as cert_file_name,
    and our 2 items
    PERSONNEL_ID and TRAINING_ID were setup as Database Items. We changed them to Static Assignments and passed #PERSONNEL_ID# and #TRAINING_ID# to those items respectively. It worked perfectly after that.
    Maybe that will help someone else.
    Thanks,
    Juanita

  • Unable to get the filename from file upload UI element

    Hi,
    I added a FileUpload UI element.
    I created an attribute of type resource , assigned to the resource property of the file upload element.
    I created an action button called upload and added the following code.
    try {
           IWDResource resource = wdContext.currentContextElement().getFileupload();
          } catch (Exception e) {
             e.printStackTrace();
    when I debug to see the value of resource it is null.
    Please let me know where I am going wrong.
    Regards,
    Narayani

    Hi,
    Check if there are any space characters in your uploading path (file path).
    First try to upload a file without any space characters in the uploading path(file path). If the problem is with the space characters then use the below encoding & decoding to resolve that issue.
    Encoding while uploading the file:
    // Getting the file resource
    IWDResource resource = element.getCtx_va_FileResource();
    //Getting the resource name
    String resourceName = resource.getResourceName();
    //Encoding the resource name
    String encoderesourceName = java.net.URLEncoder.encode(resourceName,"UTF-8");
    Again while downloading you can use decoder.
    Hope this helps to resolve your issue.
    See this below link.
    Re: File Upload Problem
    Try this encoding even if there are no space characters.
    Regards,
    Charan

  • IPhoto will not stay open after most recent upload! Help!

    Please help me out here. I am running on Mac 10.5.8 with a version of iPhoto, 8.1.2.
    After my most recent picture upload from my iphone my iphoto will NOT stay open. It keeps shutting down, and I can't even send the report to apple. It says the report failed. Below is the report I am receiving.
    I cannot lose all of my pictures, so please help me. I will appreciate any and all help that you can give.
    Thank you!!
    Process:         iPhoto [640]
    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 [99]
    Interval Since Last Report:          16311 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  28 sec
    Per-App Crashes Since Last Report:   1
    Date/Time:       2012-04-01 20:11:08.065 -0400
    OS Version:      Mac OS X 10.5.8 (9L31a)
    Report Version:  6
    Anonymous UUID:  21150C9B-FA4F-46CE-9CE0-85A8A44FDCDC
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    Crashed Thread:  14
    Thread 0:
    0   libSystem.B.dylib                       0x97e52166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x97e5995c mach_msg + 72
    2   com.apple.CoreFoundation                0x96943e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x96944aa8 CFRunLoopRunInMode + 88
    4   com.apple.HIToolbox                     0x96fc52ac RunCurrentEventLoopInMode + 283
    5   com.apple.HIToolbox                     0x96fc50c5 ReceiveNextEventCommon + 374
    6   com.apple.HIToolbox                     0x96fc4f39 BlockUntilNextEventMatchingListInMode + 106
    7   com.apple.AppKit                        0x93b386d5 _DPSNextEvent + 657
    8   com.apple.AppKit                        0x93b37f88 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    9   com.apple.AppKit                        0x93b30f9f -[NSApplication run] + 795
    10  com.apple.AppKit                        0x93afe1d8 NSApplicationMain + 574
    11  com.apple.iPhoto                        0x00124b80 0x1000 + 1194880
    12  com.apple.iPhoto                        0x00003172 0x1000 + 8562
    Thread 1:
    0   libSystem.B.dylib                       0x97e521c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x97e841af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x97e85a33 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x95a81dbc -[NSCondition waitUntilDate:] + 236
    4   com.apple.Foundation                    0x95a81bd0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5   com.apple.Foundation                    0x95a81b35 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x01364201 -[XTMsgQueue waitForMessage] + 49
    7   com.apple.proxtcore                     0x01352363 -[XTThread run:] + 387
    8   com.apple.Foundation                    0x95a3bdfd -[NSThread main] + 45
    9   com.apple.Foundation                    0x95a3b9a4 __NSThread__main__ + 308
    10  libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    11  libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 2:
    0   libSystem.B.dylib                       0x97e521c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x97e841af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x97e85a33 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x95a81dbc -[NSCondition waitUntilDate:] + 236
    4   com.apple.Foundation                    0x95a81bd0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5   com.apple.Foundation                    0x95a81b35 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x01364201 -[XTMsgQueue waitForMessage] + 49
    7   com.apple.proxtcore                     0x01352363 -[XTThread run:] + 387
    8   com.apple.Foundation                    0x95a3bdfd -[NSThread main] + 45
    9   com.apple.Foundation                    0x95a3b9a4 __NSThread__main__ + 308
    10  libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    11  libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 3:
    0   libSystem.B.dylib                       0x97e52166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x97e5995c mach_msg + 72
    2   com.apple.CoreFoundation                0x96943e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x96944aa8 CFRunLoopRunInMode + 88
    4   com.apple.Foundation                    0x95a703d5 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    5   com.apple.proxtcore                     0x013538a5 -[XTRunLoopThread run:] + 421
    6   com.apple.Foundation                    0x95a3bdfd -[NSThread main] + 45
    7   com.apple.Foundation                    0x95a3b9a4 __NSThread__main__ + 308
    8   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    9   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x97e5934e __semwait_signal + 10
    1   libSystem.B.dylib                       0x97e83ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.iPhoto                        0x00506841 0x1000 + 5265473
    3   com.apple.Foundation                    0x95a3bdfd -[NSThread main] + 45
    4   com.apple.Foundation                    0x95a3b9a4 __NSThread__main__ + 308
    5   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    6   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x97e5934e __semwait_signal + 10
    1   libSystem.B.dylib                       0x97e83ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore                0x95434d58 ***::TCMalloc_PageHeap::scavengerThread() + 824
    3   com.apple.JavaScriptCore                0x95434d8f ***::TCMalloc_PageHeap::runScavengerThread(void*) + 15
    4   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    5   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x97e52166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x97e5995c mach_msg + 72
    2   com.apple.CoreFoundation                0x96943e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x96944aa8 CFRunLoopRunInMode + 88
    4   com.apple.CFNetwork                     0x96e0818c CFURLCacheWorkerThread(void*) + 388
    5   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    6   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x97e5934e __semwait_signal + 10
    1   libSystem.B.dylib                       0x97e83ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore                0x952896b1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3   com.apple.WebCore                       0x91f7277c WebCore::LocalStorageThread::threadEntryPoint() + 188
    4   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    5   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x97ebe20a accept$UNIX2003 + 10
    1   com.apple.iPhoto                        0x002d2dd3 0x1000 + 2956755
    2   com.apple.iPhoto                        0x002d2e34 0x1000 + 2956852
    3   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    4   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                       0x97ea160a select$DARWIN_EXTSN + 10
    1   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    2   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                       0x97e5934e __semwait_signal + 10
    1   libSystem.B.dylib                       0x97e83ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.QuartzCore                    0x94acca09 fe_fragment_thread + 54
    3   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    4   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 11:
    0   libSystem.B.dylib                       0x97e52166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x97e5995c mach_msg + 72
    2   com.apple.CoreFoundation                0x96943e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x96944aa8 CFRunLoopRunInMode + 88
    4   com.apple.Foundation                    0x95a9f520 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5   com.apple.Foundation                    0x95a3bdfd -[NSThread main] + 45
    6   com.apple.Foundation                    0x95a3b9a4 __NSThread__main__ + 308
    7   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    8   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 12:
    0   libSystem.B.dylib                       0x97e5934e __semwait_signal + 10
    1   libSystem.B.dylib                       0x97e83ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.Foundation                    0x95a83932 -[NSCondition wait] + 210
    3   com.apple.iPhoto                        0x0051242a 0x1000 + 5313578
    4   com.apple.iPhoto                        0x00511c48 0x1000 + 5311560
    5   com.apple.Foundation                    0x95a3bdfd -[NSThread main] + 45
    6   com.apple.Foundation                    0x95a3b9a4 __NSThread__main__ + 308
    7   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    8   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 13:
    0   libSystem.B.dylib                       0x97e5934e __semwait_signal + 10
    1   libSystem.B.dylib                       0x97e83ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.Foundation                    0x95a83932 -[NSCondition wait] + 210
    3   com.apple.iPhoto                        0x0051242a 0x1000 + 5313578
    4   com.apple.iPhoto                        0x00511c48 0x1000 + 5311560
    5   com.apple.Foundation                    0x95a3bdfd -[NSThread main] + 45
    6   com.apple.Foundation                    0x95a3b9a4 __NSThread__main__ + 308
    7   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    8   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 14 Crashed:
    0   libSystem.B.dylib                       0xffff07c2 __memcpy + 34 (cpu_capabilities.h:246)
    1   libsqlite3.0.dylib                      0x96c2eec0 fillInCell + 384
    2   libsqlite3.0.dylib                      0x96c30ef7 balance_nonroot + 7351
    3   libsqlite3.0.dylib                      0x96c376ab sqlite3BtreeInsert + 763
    4   libsqlite3.0.dylib                      0x96c7cf23 sqlite3VdbeExec + 8835
    5   libsqlite3.0.dylib                      0x96c86ea2 sqlite3Step + 386
    6   libsqlite3.0.dylib                      0x96c8755d sqlite3_step + 29
    7   com.apple.iPhoto                        0x006af891 0x1000 + 7006353
    8   com.apple.iPhoto                        0x006e165f 0x1000 + 7210591
    9   com.apple.iPhoto                        0x006a07b2 0x1000 + 6944690
    10  com.apple.iPhoto                        0x006a08be 0x1000 + 6944958
    11  com.apple.iPhoto                        0x006c21a1 0x1000 + 7082401
    12  com.apple.Foundation                    0x95a3bdfd -[NSThread main] + 45
    13  com.apple.Foundation                    0x95a3b9a4 __NSThread__main__ + 308
    14  libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    15  libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 15:
    0   libSystem.B.dylib                       0x97e521c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x97e841af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x97e85a33 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore          0x97b2ac62 TSWaitOnConditionTimedRelative + 246
    4   ...ple.CoreServices.CarbonCore          0x97b2aa42 TSWaitOnSemaphoreCommon + 422
    5   ...ickTimeComponents.component          0x90cf8c8e ReadSchedulerThreadEntryPoint + 4728
    6   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    7   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 16:
    0   libSystem.B.dylib                       0x97e521c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x97e841af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x97e85a33 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore          0x97b2ac62 TSWaitOnConditionTimedRelative + 246
    4   ...ple.CoreServices.CarbonCore          0x97b2aa42 TSWaitOnSemaphoreCommon + 422
    5   ...ple.CoreServices.CarbonCore          0x97b53138 AIOFileThread(void*) + 1056
    6   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    7   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 17:
    0   libSystem.B.dylib                       0x97e521ae semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x97e841c6 _pthread_cond_wait + 1267
    2   libSystem.B.dylib                       0x97ec9449 pthread_cond_wait + 48
    3   ...ickTimeComponents.component          0x913e6e67 jpegdecompress_MPLoop + 79
    4   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    5   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 18:
    0   libSystem.B.dylib                       0x97e75e7a read$UNIX2003 + 10
    1   com.apple.Foundation                    0x95a44f16 _NSReadBytesFromFile + 86
    2   com.apple.Foundation                    0x95a59413 -[NSData(NSData) initWithContentsOfFile:] + 83
    3   com.apple.iPhoto                        0x00303e82 0x1000 + 3157634
    4   com.apple.iPhoto                        0x0030520a 0x1000 + 3162634
    5   com.apple.iPhoto                        0x00064bf7 0x1000 + 408567
    6   com.apple.iPhoto                        0x002196a6 0x1000 + 2197158
    7   com.apple.Foundation                    0x95a3bdfd -[NSThread main] + 45
    8   com.apple.Foundation                    0x95a3b9a4 __NSThread__main__ + 308
    9   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    10  libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 19:
    0   libSystem.B.dylib                       0x97e5934e __semwait_signal + 10
    1   libSystem.B.dylib                       0x97e83ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.iPhoto                        0x00506841 0x1000 + 5265473
    3   com.apple.Foundation                    0x95a3bdfd -[NSThread main] + 45
    4   com.apple.Foundation                    0x95a3b9a4 __NSThread__main__ + 308
    5   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    6   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 20:
    0   libSystem.B.dylib                       0x97e5934e __semwait_signal + 10
    1   libSystem.B.dylib                       0x97e83ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.ColorSync                     0x946b13c8 pthreadSemaphoreWait(t_pthreadSemaphore*) + 42
    3   com.apple.ColorSync                     0x946c3d4e CMMConvTask(void*) + 54
    4   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    5   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 14 crashed with X86 Thread State (32-bit):
      eax: 0xffff07a0  ebx: 0x96c2f260  ecx: 0x00000001  edx: 0x00000004
      edi: 0x026713fd  esi: 0x00000000  ebp: 0xb07dbdd8  esp: 0xb07dbdd0
       ss: 0x0000001f  efl: 0x00010202  eip: 0xffff07c2   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037
      cr2: 0x00000000
    Binary Images:
        0x1000 -   0x9fbfee  com.apple.iPhoto 8.1.2 (8.1.2) <436e886ce26d2c7d9745252829318efe> /Applications/iPhoto.app/Contents/MacOS/iPhoto
      0xb31000 -   0xbfafe5  com.apple.DiscRecording 4.0.7 (4070.4.1) <7c105f35c674aad3a476f8959d3f3ebb> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
      0xc65000 -   0xc90ff7  com.apple.DiscRecordingUI 4.0.7 (4070.4.1) <8382640e9ca4f6c5e087efb1c715db57> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
      0xcae000 -   0xcb0fff  com.apple.ExceptionHandling 1.5 (10) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
      0xcb7000 -   0xcc1fff  com.apple.UpgradeChecker 1.0 (1.1) /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
      0xccb000 -   0xd67ffc  com.apple.MobileMe 8 (1.0) <47df6c2078c51aa21d64274eae522d93> /Applications/iPhoto.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
      0xdc9000 -  0x1022ffb  com.apple.MessageFramework 3.6 (936) <d7a6e5f6721cbab99ed3e83137dba11a> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0x1179000 -  0x1179fff +eOkaoCom.dylib ??? (???) <17adb0f4bf830b0b5293f843f1724644> /Applications/iPhoto.app/Contents/MacOS/eOkaoCom.dylib
    0x117d000 -  0x11b0fe7 +eOkaoDt.dylib ??? (???) <673bd0c5fac4abb7b55efd8a75e4759d> /Applications/iPhoto.app/Contents/MacOS/eOkaoDt.dylib
    0x11b6000 -  0x131cfff +eOkaoFr.dylib ??? (???) <684982fe55e4174d9cf3da4319bd57f9> /Applications/iPhoto.app/Contents/MacOS/eOkaoFr.dylib
    0x1320000 -  0x1344ff2 +eOkaoPt.dylib ??? (???) <e2ed8de87a2d83093cb52e87f135a8a8> /Applications/iPhoto.app/Contents/MacOS/eOkaoPt.dylib
    0x134b000 -  0x1392ff7  com.apple.proxtcore 1.0.0 (1.0.0) /Applications/iPhoto.app/Contents/Frameworks/ProXTCore.framework/Versions/A/Pro XTCore
    0x13d6000 -  0x13d6ff8  com.apple.iLifeSlideshow 1.1 (452) <65fe31a8c4c320699b2ccb00bb168cfe> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/iLifeSlid eshow
    0x13da000 -  0x145afef  com.apple.NetServices.NetServices 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Frameworks/NetServices.framework/ Versions/A/NetServices
    0x14bc000 -  0x14bcffd  com.apple.AppleAppSupport 1.5 (1.5) /System/Library/PrivateFrameworks/AppleAppSupport.framework/Versions/A/AppleApp Support
    0x14c0000 -  0x14e4fe7  com.apple.speech.LatentSemanticMappingFramework 2.6.4 (2.6.4) <623d0f3f1b3fb665dc9cb196c482510a> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0x14f9000 -  0x1521fff  com.apple.iLifeSlideshowCore 1.1 (134) <6b3aa83c61989c497afb619e5dc2c756> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowCore.framework/Versions/A/iLifeSlideshowCore
    0x153b000 -  0x164bfe3  com.apple.iLifeSlideshowProducer 1.1 (382) <bbc8afe495a64993c10cff8aac006928> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowProducer.framework/Versions/A/iLifeSlideshowProducer
    0x16be000 -  0x17c7ff3  com.apple.iLifeSlideshowRenderer 1.1 (375) <f87238833c5c734fcd08709e4079b2c5> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowRenderer.framework/Versions/A/iLifeSlideshowRenderer
    0x183b000 -  0x1846fff  com.apple.iLifeSlideshowExporter 1.1 (159) <a378ae2696982327cdaad2af255de5be> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowExporter.framework/Versions/A/iLifeSlideshowExporter
    0x184f000 -  0x186efed  com.apple.audio.CoreAudioKit 1.5 (1.5) <585f5ec95dc8f1efe51d820be84d53a6> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x1880000 -  0x1888fe7  com.apple.NetServices.BDControl 1.0.5 (1.0.5) /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDControl.framework/Ve rsions/A/BDControl
    0x1894000 -  0x1897fff  com.apple.NetServices.BDRuleEngine 1.0.2 (1.0.2) /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDRuleEngine.framework /Versions/A/BDRuleEngine
    0x18bf000 -  0x18c2ff3 +com.divx.divxtoolkit 1.0 (1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0x1abc000 -  0x1b14fff +com.DivXInc.DivXDecoder 6.8.4.3 (6.8.4) <26a406b3e4bcc6ff8f28a99ffeb5cf2d> /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x1c3d000 -  0x1c3eff3  ATSHI.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x1c49000 -  0x1c4dfff  com.apple.iPhoto.RSSPublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/RSSPublisher.publisher/Contents/MacOS /RSSPublisher
    0x168e5000 - 0x168fafff  com.apple.iPhoto.FacebookPublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/FacebookPublisher.publisher/Contents/ MacOS/FacebookPublisher
    0x16907000 - 0x1690cff3  libCGXCoreImage.A.dylib ??? (???) <30bd95e38c8a203ee387013527cfd9d0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x16a4f000 - 0x16e36fff  com.apple.RawCamera.bundle 3.4.0 (545) <46f9387243c4db157889522a00d16c32> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x1717f000 - 0x1718fff3  com.apple.iPhoto.FlickrPublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/FlickrPublisher.publisher/Contents/Ma cOS/FlickrPublisher
    0x1719a000 - 0x171cbff7  com.apple.iPhoto.MobileMePublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/MobileMePublisher.publisher/Contents/ MacOS/MobileMePublisher
    0x181f8000 - 0x181f9fe1  com.apple.textencoding.unicode 2.2 (2.2) <09ac11c81bf4e673a30cc364868fdc11> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x19700000 - 0x1970bfff  com.apple.BookService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/BookService.NetService/Co ntents/MacOS/BookService
    0x19aa7000 - 0x19ab1fff  com.apple.CalendarsService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/CalendarsService.NetServi ce/Contents/MacOS/CalendarsService
    0x19abb000 - 0x19ac5fff  com.apple.CardsService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/CardsService.NetService/C ontents/MacOS/CardsService
    0x19acf000 - 0x19adafff  com.apple.PrintsService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/PrintsService.NetService/ Contents/MacOS/PrintsService
    0x19af2000 - 0x19af3fff  com.apple.iLMBAppDefPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAppDefPlugin.ilmbplugin/Contents/MacOS/i LMBAppDefPlugin
    0x19af9000 - 0x19afafff  com.apple.iLMBFolderPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBFolderPlugin.ilmbplugin/Contents/MacOS/i LMBFolderPlugin
    0x19c2b000 - 0x19c2ffff  com.apple.iLMBGarageBandPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBGarageBandPlugin.ilmbplugin/Contents/Mac OS/iLMBGarageBandPlugin
    0x19c84000 - 0x19c8bfff  com.apple.iLMBAperturePlugin 2.1.5 (127) <64f3d109e8ac7abb31e073da26832360> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAperturePlugin.ilmbplugin/Contents/MacOS /iLMBAperturePlugin
    0x19c93000 - 0x19c9efff  com.apple.iLMBiMoviePlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiMoviePlugin.ilmbplugin/Contents/MacOS/i LMBiMoviePlugin
    0x19ced000 - 0x19cf5fff  com.apple.iLMBiPhotoPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhotoPlugin.ilmbplugin/Contents/MacOS/i LMBiPhotoPlugin
    0x1a601000 - 0x1a612fff  com.apple.iLMBiPhoto8Plugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhoto8Plugin.ilmbplugin/Contents/MacOS/ iLMBiPhoto8Plugin
    0x1a61c000 - 0x1a624fff  com.apple.iLMBiTunesPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiTunesPlugin.ilmbplugin/Contents/MacOS/i LMBiTunesPlugin
    0x1a62c000 - 0x1a6e1fef  com.apple.iTunesAccess 10.6 (10.6) <cf57a9994a815b4dbcc0abfb893cec9c> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x1a712000 - 0x1a714fff  com.apple.iLMBMoviesFolderPlugin 2.1.5 (127) <a6ae59ef4e40840b36a8f4dc6b697a5b> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBMoviesFolderPlugin.ilmbplugin/Contents/M acOS/iLMBMoviesFolderPlugin
    0x1a71b000 - 0x1a71dfff  com.apple.iLMBPhotoBoothPlugin 2.1.5 (127) <86fe02308b70e1cdf2805654f999ec70> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBPhotoBoothPlugin.ilmbplugin/Contents/Mac OS/iLMBPhotoBoothPlugin
    0x1aa5f000 - 0x1aa5fffd  libmx.A.dylib ??? (???) /usr/lib/libmx.A.dylib
    0x1ab0a000 - 0x1ab16fff +net.telestream.license 1.0.1.3-GC (1.0.1.3-GC) <105e17171fcc41681295768fb28c4217> /Library/Frameworks/TSLicense.framework/Versions/A/TSLicense
    0x1ab1f000 - 0x1ab72ff7  com.apple.AppleProResDecoder 2.0.1 (227) /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/AppleProR esDecoder
    0x1abac000 - 0x1abb1ff7  com.apple.AppleMPEG2Codec 1.0.1 (220) <6fdff3c87ececb7413749c0230c54f78> /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0x1ad26000 - 0x1ad61fff  com.apple.QuickTimeFireWireDV.component 7.7 (1680.28) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x1ad6e000 - 0x1ad88fc3  com.apple.AppleIntermediateCodec 1.2 (145) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x1ad8d000 - 0x1ada6ff3  com.apple.applepixletvideo 1.2.18 (1.2d18) <fd882f567e0480f18107f66ea6e7187d> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x1b22c000 - 0x1b423fc2 +net.telestream.wmv.import 2.2.3.7 (2.2.3.7) <16463171cbc541aca577883c116422ee> /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x1b492000 - 0x1b5f4fe2 +net.telestream.wmv.advanced 2.2.3.7 (2.2.3.7) <33ea17448ff4499197c8279db599b913> /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0x1b65b000 - 0x1b6c0fef  com.apple.AppleVAH264HW.component 1.0 (1.0) <9247aea75cd42fd2c138dd35ce83ab9a> /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH264HW
    0x8fe00000 - 0x8fe2db43  dyld 97.1 (???) <458eed38a009e5658a79579e7bc26603> /usr/lib/dyld
    0x90003000 - 0x9003ffff  com.apple.DAVKit 3.0.6 (661) /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x90070000 - 0x9007afeb  com.apple.audio.SoundManager 3.9.2 (3.9.2) <df077a8048afc3075c6f2d9e7780e78e> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9007b000 - 0x9007fffd  com.apple.AOSNotification 1.0.0 (68.13) <24530e1abba37ab4bacf92fcf13cd216> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x902e9000 - 0x904bafef  com.apple.security 5.0.7 (1) <44e26a9c40630a54d5a9f70c18483411> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x904bb000 - 0x9055fff7  com.apple.QuickTimeImporters.component 7.7 (1680.28) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x90560000 - 0x90699ff7  libicucore.A.dylib ??? (???) <f2819243b278259b9a622ea111ea5fd6> /usr/lib/libicucore.A.dylib
    0x9069a000 - 0x90b6bfbe  libGLProgrammability.dylib ??? (???) <d5cb4e7997a873cd77523689e6749acd> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x90b6c000 - 0x90c4dff7  libxml2.2.dylib ??? (???) <f274ba384fb55203873f9c17569ef131> /usr/lib/libxml2.2.dylib
    0x90c4e000 - 0x90c72fff  libxslt.1.dylib ??? (???) <c372568bd2f7169efa0faee6546eead3> /usr/lib/libxslt.1.dylib
    0x90c73000 - 0x91b73fe6  com.apple.QuickTimeComponents.component 7.7 (1680.28) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x91b74000 - 0x91b91ff7  com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x91b92000 - 0x91b92ff8  com.apple.ApplicationServices 34 (34) <ee7bdf593da050bb30c7a1fc446eb8a6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91b93000 - 0x91bbcfff  libcups.2.dylib ??? (???) <2b0ab6b9fa1957ee940835d0cfd42894> /usr/lib/libcups.2.dylib
    0x91bbd000 - 0x91bc1fff  com.apple.CoreMediaAuthoringPrivate 1.6 (1.6) /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x91bc2000 - 0x91c13feb  com.apple.framework.familycontrols 1.0.4 (1.0.4) <e76b4fa1c25673c8e0fb183b6c0e8eaf> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x91c14000 - 0x91c24ffc  com.apple.LangAnalysis 1.6.5 (1.6.5) <d057feb38163121ffd871c564c692804> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91c25000 - 0x91c5ffe7  com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x91c78000 - 0x91d66fef  com.apple.PubSub 1.0.5 (65.23) <7d496f89df21f6b9ecf99a7727469c2a> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x91d67000 - 0x91d8fff7  com.apple.shortcut 1.0.1 (1.0) <37e4b08cfaf9edb08b8682a06c4ec844> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x91d90000 - 0x91dcffef  libTIFF.dylib ??? (???) <2afd7f6079224311d67ab427e10bf61c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91dd0000 - 0x91f50fff  com.apple.AddressBook.framework 4.1.2 (702) <f9360f9926ccd411fdf7550b73034d17> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x91f51000 - 0x92cbffe3  com.apple.WebCore 5534 (5534.50.1) <bef6f01e56834f2498918b264f0acbf7> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x92cc0000 - 0x92d0ffff  com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x92d10000 - 0x92d3bfe7  libauto.dylib ??? (???) <4f3e58cb81da07a1662c1f647ce30225> /usr/lib/libauto.dylib
    0x92d3c000 - 0x92d99ffb  libstdc++.6.dylib ??? (???) <f75e5133d72769de5ce6c06153fc65f6> /usr/lib/libstdc++.6.dylib
    0x92d9a000 - 0x92de3fef  com.apple.Metadata 10.5.8 (398.26) <e4d268ea45379200f03cdc7c8bedae6f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x92de4000 - 0x92eabff2  com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x92eac000 - 0x92eb8ff9  com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x92eb9000 - 0x92eb9ffe  com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <1f4c10fcc17187a6f106e0a0be8236b0> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x92eba000 - 0x92f0bff7  com.apple.HIServices 1.7.1 (???) <ba7fd0ede540a0da08db027f87efbd60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92f0c000 - 0x92f10fff  libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x92f11000 - 0x92f16ffc  com.apple.KerberosHelper 1.1 (1.0) <026012b54e36fecbc1a4ed3a3edec439> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x92f17000 - 0x92f27fff  com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <9a71429c74ed6ca43eb35e1f78471b2e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x92f28000 - 0x92f46ff3  com.apple.DirectoryService.Framework 3.5.7 (3.5.7) <b4cd561d2481c4162ecf0acdf8cb062c> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x92f47000 - 0x92fd1ff7  com.apple.DesktopServices 1.4.9 (1.4.9) <f5e51a76d315798371b3dd35a4d46d6c> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92fd2000 - 0x9305fff7  com.apple.framework.IOKit 1.5.2 (???) <7a3cc24f78f93931731203854ae0d891> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x93060000 - 0x93112ffb  libcrypto.0.9.7.dylib ??? (???) <d02f7e5b8a68813bb7a77f5edb34ff9d> /usr/lib/libcrypto.0.9.7.dylib
    0x93113000 - 0x93113ffd  com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x93114000 - 0x93116fff  com.apple.securityhi 3.0 (30817) <b3517782ad664a21e4fd60242e92723e> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93117000 - 0x9311cfff  com.apple.DisplayServicesFW 2.0.2 (2.0.2) <cb9b98b43ae385a0f374baabe2b71764> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x9311d000 - 0x93133fff  com.apple.DictionaryServices 1.0.0 (1.0.0) <7d20b8d1fb238c3e71d0fa6fda18c4f7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x93134000 - 0x93297ff2  com.apple.CalendarStore 3.0.8 (860) /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x93298000 - 0x932cafff  com.apple.LDAPFramework 1.4.5 (110) <bb7a3e5d66f00d1d1c8a40569b003ba3> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x932cb000 - 0x9335efff  com.apple.ink.framework 101.3 (86) <d4c85b5cafa8027fff042b84a8be71dc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x93362000 - 0x933adff7  com.apple.CoreMediaIOServices 140.0 (1492) <3fd3879b31be7659c1008e8991e9f69b> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x933ae000 - 0x933dbfeb  libvDSP.dylib ??? (???) <f39d424bd56a0e75d5c7a2280a25cd76> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x933dc000 - 0x93456ff8  com.apple.print.framework.PrintCore 5.5.4 (245.6) <9ae833544b8249984c07544dbe6a97fa> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x93457000 - 0x93af7fff  com.apple.CoreGraphics 1.409.8 (???) <25020feb388637ee860451c19b613c48> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x93af8000 - 0x942f6fef  com.apple.AppKit 6.5.9 (949.54) <4df5d2e2271175452103f789b4f4d8a8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x942f7000 - 0x9432bfef  com.apple.bom 9.0.1 (136.1.1) <007941632d316d064e8decc51255a5e0> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9432c000 - 0x94449ff7  com.apple.WebKit 5534 (5534.50.2) <643ffe6446c331210a74f896f0804eb2> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9444a000 - 0x9444bffc  libffi.dylib ??? (???) <eaf10b99a3fbc4920b175809407466c0> /usr/lib/libffi.dylib
    0x9444c000 - 0x94584fe7  com.apple.imageKit 1.0.2 (1.0) <00d03cf7f26e1b6023efdc4bd15dd52e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x94585000 - 0x945ebffb  com.apple.ISSupport 1.8 (38.3) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x945ec000 - 0x945fbffe  com.apple.DSObjCWrappers.Framework 1.3 (1.3) <a2f7a163a74c134f6f17d497423436fe> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x945fc000 - 0x94603ff7  libCGATS.A.dylib ??? (???) <8875cf11c0de0579423ac6b6ce80336d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94604000 - 0x94652fe3  com.apple.AppleVAFramework 4.1.17 (4.1.17) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x94653000 - 0x94653ffc  com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94654000 - 0x9467dfff  com.apple.CoreMediaPrivate 15.0 (15.0) /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x9467e000 - 0x94749fef  com.apple.ColorSync 4.5.4 (4.5.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9474a000 - 0x947c9ff5  com.apple.SearchKit 1.2.2 (1.2.2) <3b5f3ab6a363a4d8a2bbbf74213ab0e5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x947ca000 - 0x94914feb  com.apple.QTKit 7.7 (1680.28) <c03868cba11c22743a5d68e1b0184399> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x94915000 - 0x9491afff  com.apple.CommonPanels 1.2.4 (85) <c135f02edd6b2e2864311e0b9d08a98d> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9491b000 - 0x9495cfe7  libRIP.A.dylib ??? (???) <cd04df9e8993c51312c8cbcfe2539914> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9495d000 - 0x949caffb  com.apple.WhitePagesFramework 1.2 (122.0) /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x949cb000 - 0x949d7ffe  libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x949d8000 - 0x94d75fef  com.apple.QuartzCore 1.5.8 (1.5.8) <18113e06d296230d63a63b58baf35f55> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94d76000 - 0x94e5eff3  com.apple.CoreData 100.2 (186.2) <44df326fea0236718f5ed64084e82270> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x94e69000 - 0x94e9affb  com.apple.quartzfilters 1.5.0 (1.5.0) <92b4f39479fdcabae0d8f53febd22fad> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x94e9b000 - 0x94f2eff3  com.apple.ApplicationServices.ATS 3.8 (???) <e61b0945da6ab368348a927f7428ad67> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x94f2f000 - 0x94f3bfff  libbz2.1.0.dylib ??? (???) <d355415c89c383330697a7b73d6dbc2e> /usr/lib/libbz2.1.0.dylib
    0x94f3c000 - 0x95267ff6  com.apple.QuickTime 7.7 (1680.28) <df75ea1435dadaf44ffde0924bc67ec4> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x95268000 - 0x9526fffe  libbsm.dylib ??? (???) <fa7ae5f1a621d9b69e7e18747c9405fb> /usr/lib/libbsm.dylib
    0x95270000 - 0x95278fff  com.apple.DiskArbitration 2.2.1 (2.2.1) <ba64dd6ada417b5e7be736957f380bca> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x95279000 - 0x9527dfff  libGIF.dylib ??? (???) <ade6d93abe118569a7a39d11f81eb9bf> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9527e000 - 0x95495ff7  com.apple.JavaScriptCore 5534 (5534.49) <b6a2c99482d55a354e6281cd4dd82518> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x95496000 - 0x9561afef  com.apple.MediaToolbox 0.484.2 (484.2) <03c5c5966a91ad3ae9c825340fa21970> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x9561b000 - 0x9561dff1  com.apple.QuickTimeH264.component 7.7 (1680.28) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x9561e000 - 0x956abff7  com.apple.LaunchServices 292 (292) <a41286c7c1eb20ffd5cc796f791070f0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x956ac000 - 0x956dbfe3  com.apple.AE 402.3 (402.3) <dba512e47f68eea1dd0ab35f596edb34> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9572b000 - 0x95784ff7  libGLU.dylib ??? (???) <64d010e31d7596bd8f9edc6e027d1d0c> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x95785000 - 0x957c5fef  com.apple.CoreMedia 0.484.2 (484.2) <a3f49c4ac23e1e4ff60061ef279e367c> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x957c6000 - 0x957c6ffb  com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x957c7000 - 0x957e2ff3  libPng.dylib ??? (???) <e0c3bdc3144e1ed91f1e4d00d147ff3a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x957e3000 - 0x957e3ffd  com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x957e4000 - 0x95800fff  com.apple.IMFramework 4.0.8 (584) <03c3fc58fa1809c1716aaa7b623ff3d1> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x95801000 - 0x9594aff7  com.apple.ImageIO.framework 2.0.9 (2.0.9) <717938c4837f88bbe8ec613d4d25bc52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9594b000 - 0x9594ffff  com.apple.OpenDirectory 10.5 (10.5) <7d9ff71c60ad73f4c82a638abc233bf0> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x95950000 - 0x95a30fff  libobjc.A.dylib ??? (???) <3ca288b625a47bbcfe378158e4dc328f> /usr/lib/libobjc.A.dylib
    0x95a31000 - 0x95cadfe7  com.apple.Foundation 6.5.9 (677.26) <c68b3cff7864959becfc7fd1a384f925> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x95cae000 - 0x95cbbfe7  com.apple.opengl 1.5.10 (1.5.10) <e7d1198d869f45f09251f9697cbdd192> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x95cbc000 - 0x95cbcffe  com.apple.quartzframework 1.5 (1.5) <6865aa0aeaa584b5a54d43f2f21d6c08> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x95cbd000 - 0x95d08fe1  com.apple.securityinterface 3.0.4 (37213) <16de57ab3e3f85f3b753f116e2fa7847> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x95d09000 - 0x95d3bff7  com.apple.DotMacSyncManager 1.2.4 (308) <890ea4eb2947d2e701dcda9f6a7a3e9e> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x95d3c000 - 0x9614cfef  libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9614d000 - 0x96154fe9  libgcc_s.1.dylib ??? (???) <e280ddf3f5fb3049e674edcb109f389a> /usr/lib/libgcc_s.1.dylib
    0x96155000 - 0x9618cfff  com.apple.SystemConfiguration 1.9.2 (1.9.2) <41d5aeffefc6d19d471f51ae0b15024f> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9618d000 - 0x961fffff  com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x96200000 - 0x96209fff  com.apple.speech.recognition.framework 3.7.24 (3.7.24) <da2d8411921a3fd8bc898dc753b7f3ee> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9620a000 - 0x962ecfff  com.apple.syncservices 3.3 (389.20) <bfedc8cbb3754652e13d67a45791fac9> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x962ed000 - 0x966a9ff4  com.apple.VideoToolbox 0.484.2 (484.2) <f8e0dbf848f7441bc31428305a2f65bf> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x966aa000 - 0x96839fe7  com.apple.CoreAUC 3.08.0 (3.08.0) <ce8da72493f7ad2bcb13130e6d0eca54> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x9683a000 - 0x9687cfef  com.apple.NavigationServices 3.5.2 (163) <7f4f1766414a511bf5bc68920ac85a88> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9687d000 - 0x96895fff  com.apple.openscripting 1.2.8 (???) <a888b18c8527f71629702ed8dce9c877> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x96896000 - 0x968d0ffe  com.apple.securityfoundation 3.0.2 (36131) <dd2a4d1a4f50b82923d7cfc5df10455d> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x968d1000 - 0x96a04fe7  com.apple.CoreFoundation 6.5.7 (476.19) <a332c8f45529ee26d2e9c36d0c723bad> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x96a05000 - 0x96a82feb  com.apple.audio.CoreAudio 3.1.2 (3.1.2) <782a08c44be4698597f4bbd79cac21c6> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x96a83000 - 0x96a83ffd  com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x96a84000 - 0x96bd6ff3  com.apple.audio.toolbox.AudioToolbox 1.5.3 (1.5.3) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x96bd7000 - 0x96be5ffd  libz.1.dylib ??? (???) <a98b3b221a72b54faf73ded3dd7000e5> /usr/lib/libz.1.dylib
    0x96be6000 - 0x96be9fff  com.apple.help 1.1 (36) <1a25a8fbb49a830efb31d5c0a52939cd> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x96bea000 - 0x96bf0fff  com.apple.print.framework.Print 218.0.3 (220.2) <8c541d587e4068a5fe5a5ce8ee208516> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x96bf1000 - 0x96c06ffb  com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x96c07000 - 0x96c8eff7  libsqlite3.0.dylib ??? (???) <aaaf72c093e13f34b96e2688b95bdb4a> /usr/lib/libsqlite3.0.dylib
    0x96c8f000 - 0x96d40fff  edu.mit.Kerberos 6.0.15 (6.0.15) <28005ea82ba82307f185c255c25bfdd3> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x96d41000 - 0x96d46fff  com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x96d47000 - 0x96dc4fef  libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x96dc5000 - 0x96dc5ffa  com.apple.CoreServices 32 (32) <373d6a888f9204641f313bc6070ae065> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x96dc6000 - 0x96dfcfef  libtidy.A.dylib ??? (???) <7f0b8a7837bd7f8039d06fc042acf85b> /usr/lib/libtidy.A.dylib
    0x96dfd000 - 0x96e04fff  com.apple.agl 3.0.9 (AGL-3.0.9) <5a57ce58f8adb7825e1adb9f7cdea151> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x96e05000 - 0x96eacfec  com.apple.CFNetwork 438.16 (438.16) <0a2f633dc532b176109547367f209ced> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x96ead000 - 0x96ec0fff  com.apple.IMUtils 4.0.8 (584) <f9b5c40fc6a37b082ae2a3df33766105> /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x96ec1000 - 0x96eccfe7  libCSync.A.dylib ??? (???) <f3228c803584320fde5e1bb9f04b4d44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x96ecd000 - 0x96f74feb  com.apple.QD 3.11.57 (???) <35f058678972d42b88ebdf652df79956> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x96f75000 - 0x96f94ffa  libJPEG.dylib ??? (???) <6d61215d5adfd74f75fed2e4db29a21c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x96f95000 - 0x9729dfe7  com.apple.HIToolbox 1.5.6 (???) <eece3cb8aa0a4e6843fcc1500aca61c5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9729e000 - 0x972faff7  com.apple.htmlrendering 68 (1.1.3) <1c5c0c417891b920dfe139385fc6c155> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x972fb000 - 0x97306fff  com.apple.dotMacLegacy 3.1 (246) <1a8b7930067bce09867a6fb7b7ba31b2> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x97307000 - 0x97318ffe  com.apple.CFOpenDirectory 10.5 (10.5) <39d48cd00b8f9ca3fcdd251715cc74d5> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x97319000 - 0x976d7fea  libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x976d8000 - 0x97732ff7  com.apple.CoreText 2.0.5 (???) <5483518a613464d043455ac661a9dcbe> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x97733000 - 0x9774fff3  com.apple.CoreVideo 1.6.1 (48.6) <e1eea31edd855f3e739202eb18ac8312> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x97750000 - 0x97844ff4  libiconv.2.dylib ??? (???) <96ff4c6f84c4a1623cb78287371cdd3f> /usr/lib/libiconv.2.dylib
    0x97845000 - 0x97a01ff3  com.apple.QuartzComposer 2.1 (106.13) <dc04566811ab9c5316d1a622f42da8ba> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x97a02000 - 0x97a02ff8  com.apple.Cocoa 6.5 (???) <a1bc9247cf65c20f1a44d0973cbe649c> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x97a03000 - 0x97a05ff5  libRadiance.dylib ??? (???) <73169d8c3fc31df4005e8eaa0d16bde5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x97a06000 - 0x97ac1fe3  com.apple.CoreServices.OSServices 228.1 (228.1) <9c640e79ad97f335730d8a49f6cb2032> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x97ac2000 - 0x97b00fff  libGLImage.dylib ??? (???) <2e570958595e0c9c3a289158223b39ee> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x97b01000 - 0x97ddbff3  com.apple.CoreServices.CarbonCore 786.16 (786.16) <d2af3f75c3500c518c39fd00aed7f9b9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x97ddc000 - 0x97ddcfff  com.apple.Carbon 136 (136) <eb3c292d5544512f86e1e4e743c23f8e> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x97ddd000 - 0x97e50fff  com.apple.iLifeMediaBrowser 2.1.5 (368) <3026150475335424dd1532739ded6fb0> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x97e51000 - 0x97fb8ff3  libSystem.B.dylib ??? (???) <be7a9fa5c8a925578bddcbaa72e5bf6e> /usr/lib/libSystem.B.dylib
    0x97fb9000 - 0x97fd7fff  libresolv.9.dylib ??? (???) <0e26b308654f33fc94a0c010a50751f9> /usr/lib/libresolv.9.dylib
    0x97fd8000 - 0x97ffcfeb  libssl.0.9.7.dylib ??? (???) <5b29af782be5894be8b336c9c73c18b6> /usr/lib/libssl.0.9.7.dylib
    0x97ffd000 - 0x980c6fef  com.apple.QuickTimeMPEG4.component 7.7 (1680.28) /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x980c7000 - 0x980d6fff  libsasl2.2.dylib ??? (???) <0ae9f3c08d8508d9dba56324c60ceb63> /usr/lib/libsasl2.2.dylib
    0x980d7000 - 0x9811bfeb  com.apple.DirectoryService.PasswordServerFramework 3.0.4 (3.0.4) <45d0af6eed184b278990175527a0d3fa> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0xba900000 - 0xba916fff  libJapaneseConverter.dylib ??? (???) <b9aea83b1cd97f3230999ebfcbf63e7c> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xfffe8000 - 0xfffebfff  libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780  libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    Try these in order - from best option on down...
    1. Do you have an up-to-date back up? If so, try copy the library6.iphoto file from the back up to the iPhoto Library (Right Click -> Show Package Contents) allowing it to overwrite the damaged file.
    2. Download <a href="http://www.fatcatsoftware.com/iplm/"><b><u>iPhoto Library Manager</b></u></a> and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.
    3. If neither of these work then you'll need to create and populate a new library.
    To create and populate a new *iPhoto 08* library:
    Note this will give you a working library with the same Events and pictures as before, however, you will lose your albums, keywords, modified versions, books, calendars etc.
    In the iPhoto Preferences -> Events Uncheck the box at 'Imported Items from the Finder'
    Move the iPhoto Library to the desktop
    Launch iPhoto. It will ask if you wish to create a new Library. Say Yes.
    Go into the iPhoto Library (Right Click -> Show Package Contents) on your desktop and find the Originals folder. From the Originals folder drag the individual Event Folders to the iPhoto Window and it will recreate them in the new library.
    When you're sure all is well you can delete the iPhoto Library on your desktop.
    In the future, in addition to your usual back up routine, you might like to make a copy of the library6.iPhoto file whenever you have made changes to the library as protection against database corruption. 

  • Uploading a file in Webservice

    I have WSDL for a web service which takes a file for Uploading. The file is passed as javax.activation.DataHandler. The WSDl contains following details for it .
    <xs:element name="uploadFile">
    <xs:complexType>
    <xs:sequence>
    <xs:element name="dataHandler" type="att:datahandler" xmlns:att="http://www.bea.com/servers/wls90/wsee/attachment"/>
    <xs:element name="parentPath" type="xs:string"/>
    <xs:element name="fileName" type="xs:string"/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    When I create JAR for the WSDL so as to cal lthe service it generated the class public interface Datahandler extends org.apache.xmlbeans.XmlObject.
    While calling it gives following error.
    org.apache.xmlbeans.XmlException: C:\Work\EPM.doc:1:1: error: Illegal XML character: 0x11
    org.apache.xmlbeans.impl.piccolo.io.IllegalCharException: Illegal XML character: 0x11
         at org.apache.xmlbeans.impl.piccolo.xml.UTF8XMLDecoder.decode(UTF8XMLDecoder.java:196)
         at org.apache.xmlbeans.impl.piccolo.xml.XMLStreamReader$FastStreamDecoder.read(XMLStreamReader.java:762)
         at org.apache.xmlbeans.impl.piccolo.xml.XMLStreamReader.read(XMLStreamReader.java:162)
         at org.apache.xmlbeans.impl.piccolo.xml.PiccoloLexer.yy_refill(PiccoloLexer.java:3474)
         at org.apache.xmlbeans.impl.piccolo.xml.PiccoloLexer.yylex(PiccoloLexer.java:3958)
         at org.apache.xmlbeans.impl.piccolo.xml.Piccolo.yylex(Piccolo.java:1290)
         at org.apache.xmlbeans.impl.piccolo.xml.Piccolo.yyparse(Piccolo.java:1400)
         at org.apache.xmlbeans.impl.piccolo.xml.Piccolo.parse(Piccolo.java:714)
         at org.apache.xmlbeans.impl.store.Locale$SaxLoader.load(Locale.java:3435)
         at org.apache.xmlbeans.impl.store.Locale.parseToXmlObject(Locale.java:1270)
         at org.apache.xmlbeans.impl.store.Locale.parseToXmlObject(Locale.java:1257)
         at org.apache.xmlbeans.impl.schema.SchemaTypeLoaderBase.parse(SchemaTypeLoaderBase.java:345)
         at org.apache.xmlbeans.impl.schema.SchemaTypeLoaderBase.parse(SchemaTypeLoaderBase.java:252)
         at com.bea.servers.wls90.wsee.attachment.Datahandler$Factory.parse(Ljava.io.File;)Lcom.bea.servers.wls90.wsee.attachment.Datahandler;(Unknown Source)
         at uk.gov.fsa.dms.ws.client.TestWsClient.testUpload(TestWsClient.java:45)
         at uk.gov.fsa.dms.ws.client.TestWsClient.main(TestWsClient.java:30)
    Any ideas ?
    Thanks
    Ravi

    http://search.java.sun.com/search/java/index.jsp?col=ja
    aforums&qp=&qt=servlet+file+uploadThats a Master Link!!

  • SQlldr Error while uploading "excel" or "csv" file.

    Hello to community,
    We are using Oracle AS(application Server) 10g as a "web Server" & "database Server"
    The Database Server is having an NFS Partition,which has mounted onto "Web Server"
    So, if any client tried to upload any excel OR csv file , the Web Server will redirect that file data onto "database" server" through NFS partition.
    By clicking "upload" button from client end, they are getting a strange error. By checking "ias_console" log file, I have found below latest logs,which belongs to the error. Kindly let me know where is the problem coming from.
    The Database Server Shared NFS partition name is "web_upload" & we have same "web_upload" partition on the "web server". The command of mounting NFS partition is given below.
    On AIX web Server :- mount <ip address>:/file_data/web_upload/ /web_upload/
    SYNTAX :- <ip add of db server>/mount point "web server mount point"
    The error is as given below.
    09/06/09 15:27:47 NumIdle: 2
    09 Jun 2009 15:27:47,764 [DEBUG] - [ com.vat.website.service.DatabaseService ] [ private Connection getDBConnection() ] Exited
    09 Jun 2009 15:27:47,764 [DEBUG] - [ com.vat.website.service.DatabaseService ] [ private Connection getDBConnection() ] Exited
    09 Jun 2009 15:27:47,766 [DEBUG] - [ com.vat.website.service.DatabaseService ] [ private void initialize() ] After getDBConnection called,
      connection object is: org.apache.commons.dbcp.PoolableConnection@1048a893
    09 Jun 2009 15:27:47,767 [DEBUG] - [ com.vat.website.service.ExcelUploadService ] [ public boolean insertFileDetails(ExcelDataBean databean,String
      strFname) ] strUniqueKey:select  web_uploaded_file_history_seq.nextval from dual
    09 Jun 2009 15:27:47,767 [DEBUG] - [ com.vat.website.service.DatabaseService ] [ public ResultSet executeQuery(String strQuery) ] Entered
    09 Jun 2009 15:27:47,773 [DEBUG] - [ com.vat.website.service.DatabaseService ] [ public ResultSet executeQuery(String strQuery) ] Exited
    09 Jun 2009 15:27:47,774 [DEBUG] - [ com.vat.website.service.ExcelUploadService ] [ public boolean insertFileDetails(ExcelDataBean databean,String
      strFname) ] insertQuery:INSERT INTO WEB_UPLOADED_FILE_HISTORY(WUF_SERIAL_NUMBER,WUF_DEALER_ID,WUF_PERIOD_FROM,WUF_PERIOD_TO,WUF_FILE_PATH,WUF_FORM_NO,WUF_SERVER_IP,WUF_UPLOAD_YN,WUF_CREATED_DATE,WUF_CREATED_BY,WUF_ORIGINAL_REVISED,WUF_SHEETS_NUMBER,wuf_reco
      d_key)VALUES('2658271','T00100001000306',to_date('01/01/2009','dd/mm/yyyy'),to_date('31/01/2009','dd/mm/yyyy'),'/web_upload/090609/VAT
      Returns/000000/0000000000/Form201/0000000000_0T201BO0109_009062009152747.csv',replace(decode('T201B','T201M', 'T201','T201B'),'T','VAT-Form'),(select
      RPAD(sys_context('USERENV','IP_ADDRESS'),15,' ') AS client_ipaddress from dual),'Y',SYSDATE,'WEB','O','0','3317063')
    09 Jun 2009 15:27:47,791 [DEBUG] - [ com.vat.website.service.DatabaseService ] [ public void closeDBConnection() ] Entered
    09 Jun 2009 15:27:47,791 [DEBUG] - finalDate:01-JAN-2009
    09 Jun 2009 15:27:47,792 [DEBUG] - finalDate:31-JAN-2009
    09 Jun 2009 15:27:47,806 [DEBUG] - [ com.vat.website.utils.PropertyCache ] [ static Object getValue(String propertyName, String propertyFileName)
      ] Entered
    09 Jun 2009 15:27:47,806 [DEBUG] - [ com.vat.website.utils.PropertyCache ] [ static Object getValue(String propertyName, String propertyFileName)
      ] Entered
    09 Jun 2009 15:27:47,806 [DEBUG] - [ com.vat.website.utils.PropertyCache ] [ static Object getValue(String propertyName, String propertyFileName)
      ] Entered
    09 Jun 2009 15:27:47,806 [DEBUG] - [ com.vat.website.action.UploadAction ] [ public ActionForward submit(ActionMapping mapping, ActionForm
      form,HttpServletRequest request, HttpServletResponse response) ] Executing: sqlldr parfile=parafile.par silent=feedback direct=Y at location:
      /web_upload/090609/VAT Returns/000000/0000000000/Form201/SQLLdr
    It seems that this problem is due to "Sqlldr" then how to troubleshoot this problem?
    Waiting for your favorable response,
    Advanced Thanks,
    Nishith Vyas.

    Flat File was in error.

  • Image is not displayed after upload

    Hello, I have imported an application from oracle APEX 3.0 10g in my express edition APEX 3.0 . In this application you can upload pictures in the database and afterwards show them in a report. in 10g everything works well. In my XE the pictures are not shown(red cross) but were written in the database.
    Procedure to select the images from the table:
    create or replace procedure emps_image_display (p_emp_id in number)
    as
    l_mime varchar2(255);
    l_length number;
    l_file_name varchar2(2000);
    lob_loc BLOB;
    begin
    select mime_type, image, image_name, dbms_lob.getlength(image)
    into l_mime, lob_loc, l_file_name, l_length
    from emps_images where emp_id = p_emp_id;
    owa_util.mime_header(nvl(l_mime,'application/octet'), FALSE );
    htp.p('Content-length: ' || l_length);
    htp.p('Content-Disposition: filename="' || l_file_name || '"');
    owa_util.http_header_close;
    wpg_docload.download_file( Lob_loc );
    end;
    the process has grant on execute
    procedure on the page:
    begin
    delete from emps_images where emp_id = :P6_EMP_ID;
    insert into emps_images (image_id, emp_id, image_name, mime_type, image)
    select null, :P6_EMP_ID, filename, mime_type, blob_content
    from wwv_flow_files where name = :P6_IMAGE_URL;
    delete from wwv_flow_files where name = :P6_IMAGE_URL;
    end;
    The writing of the picture in the database works well, only it is not shown on the page (red cross)
    the SQL query to show the pictures in the report:
    select e.emp_id, e.last_name, e.first_name, e.phone, e.email, e.location, e.job,
    decode(i.image_id, null, 'No Image Found',
    '') image
    from emps_view e, emps_images i
    where e.emp_id = :P10_EMPID
    and e.emp_id = i.emp_id(+)
    If no entry exists in the table, " No image found " is shown. otherwise ... the red cross :)
    the URL to the picture looks as follows:
    http://127.0.0.1:8081/apex/WORKSHOP.emps_image_display?p_emp_id=2
    I hope, somebody here can help me.

    Are you sure, that you granted the privileges for executing EMPS_IMAGE_DISPLAY procedure to the right database user?
    In XE (APEX 2.1), the default database user for HTTP access is ANONYMOUS, in other editions it is APEX_PUBLIC_USER.
    To check this, create a report on any of your pages with this SQL:
    SELECT USER from DUAL
    This should show you the username, that you should grant execute to.

  • Rename file extension during a file upload ??

    I need to rename the extension of a file at some point during the file upload. I am not sure where to do this at.
    The file needs to be renamed before it is written to the directory.
    Basically, the file will come in with a .txt or .doc type. Based on a users profile, I will change the type to a non-relavent number such as 1111.
    Here is my upload servlet. Can you tell me where to change the type so it will write the file with the new extension?
    Thanks.
    public class FileExport {
    //restrict upload files to 1 Meg
    private static final int DEFAULT_MAX_POST_SIZE = 1024 * 1024;
    private static final String NO_FILE = "unknown";
    private HttpServletRequest req;
    private File dir;
    private int maxSize;
    private Hashtable parameters = new Hashtable(); // name - Vector of values
    private Hashtable files = new Hashtable(); // name - UploadedFile
    public FileExport(HttpServletRequest request,
    String saveDirectory) throws IOException {
    this(request, saveDirectory, DEFAULT_MAX_POST_SIZE);
    // request the servlet request
    // saveDirectory = directory in which to save any uploaded files
    // maxPostSize = maximum size of the POST content
    public FileExport(HttpServletRequest request,
    String saveDirectory,
    int maxPostSize) throws IOException {
    // check values
    if (request == null)
    throw new IllegalArgumentException("request cannot be null");
    if (saveDirectory == null)
    throw new IllegalArgumentException("saveDirectory cannot be null");
    if (maxPostSize <= 0) {
    throw new IllegalArgumentException("maxPostSize must be positive");
    // Save the request, dir, and max size
    req = request;
    dir = new File(saveDirectory);
    maxSize = maxPostSize;
    // Check saveDirectory is truly a directory
    if (!dir.isDirectory())
    throw new IllegalArgumentException("Not a directory: " + saveDirectory);
    // Check saveDirectory is writable
    if (!dir.canWrite())
    throw new IllegalArgumentException("Not writable: " + saveDirectory);
    // Now parse the request saving data to "parameters" and "files";
    // write the file contents to the saveDirectory
    readRequest();
    public FileExport(ServletRequest request,
    String saveDirectory) throws IOException {
    this((HttpServletRequest)request, saveDirectory);
    public FileExport(ServletRequest request,
    String saveDirectory,
    int maxPostSize) throws IOException {
    this((HttpServletRequest)request, saveDirectory, maxPostSize);
    // Returns the names of all the parameters as an Enumeration of
    // Strings. It returns an empty Enumeration if there are no parameters.
    public Enumeration getParameterNames() {
    return parameters.keys();
    // Returns the names of all the uploaded files as an Enumeration of
    // Strings. It returns an empty Enumeration if there are no uploaded
    // files. Each file name is the name specified by the form, not by
    // the user.
    public Enumeration getFileNames() {
    return files.keys();
    // Returns the value of the named parameter as a String, or null if
    // the parameter was not sent or was sent without a value.
    public String getParameter(String name) {
    try {
    Vector values = (Vector)parameters.get(name);
    if (values == null || values.size() == 0) {
    return null;
    String value = (String)values.elementAt(values.size() - 1);
    return value;
    catch (Exception e) {
    return null;
    // Returns the values of the named parameter as a String array, or null if
    // the parameter was not sent.
    public String[] getParameterValues(String name) {
    try {
    Vector values = (Vector)parameters.get(name);
    if (values == null || values.size() == 0) {
    return null;
    String[] valuesArray = new String[values.size()];
    values.copyInto(valuesArray);
    return valuesArray;
    catch (Exception e) {
    return null;
    // Returns the filesystem name of the specified file, or null if the
    // file was not included in the upload. A filesystem name is the name
    // specified by the user. It is also the name under which the file is
    // actually saved.
    public String getFilesystemName(String name) {
    try {
    UploadedFile file = (UploadedFile)files.get(name);
    return file.getFilesystemName(); // may be null
    catch (Exception e) {
    return null;
    // Returns the content type of the specified file (as supplied by the
    //client browser), or null if the file was not included in the upload.
    public String getContentType(String name) {
    try {
    UploadedFile file = (UploadedFile)files.get(name);
    return file.getContentType(); // may be null
    catch (Exception e) {
    return null;
    // Returns a File object for the specified file saved on the server's
    // filesystem, or null if the file was not included in the upload.
    public File getFile(String name) {
    try {
    UploadedFile file = (UploadedFile)files.get(name);
    return file.getFile(); // may be null
    catch (Exception e) {
    return null;
    // method that actually parses the request.
    protected void readRequest() throws IOException {
    // Check the content length to prevent denial of service attacks
    int length = req.getContentLength();
    if (length > maxSize) {
    throw new IOException("Posted content length of " + length +
    " exceeds limit of " + maxSize);
    // Check the content type to make sure it's "multipart/form-data"
    // Access header two ways to work around WebSphere oddities
    String type = null;
    String type1 = req.getHeader("Content-Type");
    String type2 = req.getContentType();
    // If one value is null, choose the other value
    if (type1 == null && type2 != null) {
    type = type2;
    else if (type2 == null && type1 != null) {
    type = type1;
    // If neither value is null, choose the longer value
    else if (type1 != null && type2 != null) {
    type = (type1.length() > type2.length() ? type1 : type2);
    if (type == null ||
    !type.toLowerCase().startsWith("multipart/form-data")) {
    throw new IOException("Posted content type isn't multipart/form-data");
    // Get the boundary string; it's included in the content type.
    // Should look something like "------------------------12012133613061"
    String boundary = extractBoundary(type);
    if (boundary == null) {
    throw new IOException("Separation boundary was not specified");
    // Construct the special input stream we'll read from
    MultipartInputStreamHandler in =
    new MultipartInputStreamHandler(req.getInputStream(), length);
    // Read the first line, should be the first boundary
    String line = in.readLine();
    if (line == null) {
    throw new IOException("Corrupt form data: premature ending");
    // Verify that the line is the boundary
    if (!line.startsWith(boundary)) {
    throw new IOException("Corrupt form data: no leading boundary");
    // Now that we're just beyond the first boundary, loop over each part
    boolean done = false;
    while (!done) {
    done = readNextPart(in, boundary);
    // A utility method that reads an individual part. Dispatches to
    // readParameter() and readAndSaveFile() to do the actual work. A
    // subclass can override this method for a better optimized or
    // differently behaved implementation.
    protected boolean readNextPart(MultipartInputStreamHandler in,
    String boundary) throws IOException {
    // Read the first line, should look like this:
    // content-disposition: form-data; name="field1"; filename="file1.txt"
    String line = in.readLine();
    if (line == null) {
    // No parts left, we're done
    return true;
    else if (line.length() == 0) {
    // IE4 on Mac sends an empty line at the end; treat that as the end.
    // Thanks to Daniel Lemire and Henri Tourigny for this fix.
    return true;
    // Parse the content-disposition line
    String[] dispInfo = extractDispositionInfo(line);
    String disposition = dispInfo[0];
    String name = dispInfo[1];
    String filename = dispInfo[2];
    // Now onto the next line. This will either be empty
    // or contain a Content-Type and then an empty line.
    line = in.readLine();
    if (line == null) {
    // No parts left, we're done
    return true;
    // Get the content type, or null if none specified
    String contentType = extractContentType(line);
    if (contentType != null) {
    // Eat the empty line
    line = in.readLine();
    if (line == null || line.length() > 0) {  // line should be empty
    throw new
    IOException("Malformed line after content type: " + line);
    else {
    // Assume a default content type
    contentType = "application/octet-stream";
    // Now, finally, we read the content (end after reading the boundary)
    if (filename == null) {
    // This is a parameter, add it to the vector of values
    String value = readParameter(in, boundary);
    if (value.equals("")) {
    value = null; // treat empty strings like nulls
    Vector existingValues = (Vector)parameters.get(name);
    if (existingValues == null) {
    existingValues = new Vector();
    parameters.put(name, existingValues);
    existingValues.addElement(value);
    else {
    // This is a file
    readAndSaveFile(in, boundary, filename, contentType);
    if (filename.equals(NO_FILE)) {
    files.put(name, new UploadedFile(null, null, null));
    else {
    files.put(name,
    new UploadedFile(dir.toString(), filename, contentType));
    return false; // there's more to read
    // A utility method that reads a single part of the multipart request
    // that represents a parameter. A subclass can override this method
    // for a better optimized or differently behaved implementation.
    protected String readParameter(MultipartInputStreamHandler in,
    String boundary) throws IOException {
    StringBuffer sbuf = new StringBuffer();
    String line;
    while ((line = in.readLine()) != null) {
    if (line.startsWith(boundary)) break;
    sbuf.append(line + "\r\n"); // add the \r\n in case there are many lines
    if (sbuf.length() == 0) {
    return null; // nothing read
    sbuf.setLength(sbuf.length() - 2); // cut off the last line's \r\n
    return sbuf.toString(); // no URL decoding needed
    // A utility method that reads a single part of the multipart request
    // that represents a file, and saves the file to the given directory.
    // A subclass can override this method for a better optimized or
    // differently behaved implementation.
    protected void readAndSaveFile(MultipartInputStreamHandler in,
    String boundary,
    String filename,
    String contentType) throws IOException {
    OutputStream out = null;
    // A filename of NO_FILE means no file was sent, so just read to the
    // next boundary and ignore the empty contents
    if (filename.equals(NO_FILE)) {
    out = new ByteArrayOutputStream(); // write to nowhere
    // A MacBinary file goes through a decoder
    else if (contentType.equals("application/x-macbinary")){
    File f = new File(dir + File.separator + filename);
    out = new MacBinaryDecoderOutputStream(
    new BufferedOutputStream(
    new FileOutputStream(f), 8 * 1024));
    // A real file's contents are written to disk
    else {
    File f = new File(dir + File.separator + filename);
    out = new BufferedOutputStream(new FileOutputStream(f), 8 * 1024);
    byte[] bbuf = new byte[100 * 1024]; // 100K
    int result;
    String line;
    // ServletInputStream.readLine()
    // adds a \r\n to the end of the last line.
    // Since we want a byte-for-byte transfer, we have to cut those chars.
    boolean rnflag = false;
    while ((result = in.readLine(bbuf, 0, bbuf.length)) != -1) {
    // Check for boundary
    if (result > 2 && bbuf[0] == '-' && bbuf[1] == '-') { // quick pre-check
    line = new String(bbuf, 0, result, "ISO-8859-1");
    if (line.startsWith(boundary)) break;
    // Are we supposed to write \r\n for the last iteration?
    if (rnflag) {
    out.write('\r'); out.write('\n');
    rnflag = false;
    // Write the buffer, postpone any ending \r\n
    if (result >= 2 &&
    bbuf[result - 2] == '\r' &&
    bbuf[result - 1] == '\n') {
    out.write(bbuf, 0, result - 2); // skip the last 2 chars
    rnflag = true; // make a note to write them on the next iteration
    else {
    out.write(bbuf, 0, result);
    out.flush();
    out.close();
    // Extracts and returns the boundary token from a line.
    private String extractBoundary(String line) {
    // Use lastIndexOf() because IE 4.01 on Win98 has been known to send the
    // "boundary=" string multiple times. Thanks to David Wall for this fix.
    int index = line.lastIndexOf("boundary=");
    if (index == -1) {
    return null;
    String boundary = line.substring(index + 9); // 9 for "boundary="
    // The real boundary is always preceeded by an extra "--"
    boundary = "--" + boundary;
    return boundary;
    // Extracts and returns disposition info from a line, as a String array
    // with elements: disposition, name, filename. Throws an IOException
    // if the line is malformatted.
    private String[] extractDispositionInfo(String line) throws IOException {
    // Return the line's data as an array: disposition, name, filename
    String[] retval = new String[3];
    // Convert the line to a lowercase string without the ending \r\n
    // Keep the original line for error messages and for variable names.
    String origline = line;
    line = origline.toLowerCase();
    // Get the content disposition, should be "form-data"
    int start = line.indexOf("content-disposition: ");
    int end = line.indexOf(";");
    if (start == -1 || end == -1) {
    throw new IOException("Content disposition corrupt: " + origline);
    String disposition = line.substring(start + 21, end);
    if (!disposition.equals("form-data")) {
    throw new IOException("Invalid content disposition: " + disposition);
    // Get the field name
    start = line.indexOf("name=\"", end); // start at last semicolon
    end = line.indexOf("\"", start + 7); // skip name=\"
    if (start == -1 || end == -1) {
    throw new IOException("Content disposition corrupt: " + origline);
    String name = origline.substring(start + 6, end);
    // Get the filename, if given
    String filename = null;
    start = line.indexOf("filename=\"", end + 2); // start after name
    end = line.indexOf("\"", start + 10); // skip filename=\"
    if (start != -1 && end != -1) {                // note the !=
    filename = origline.substring(start + 10, end);
    // The filename may contain a full path. Cut to just the filename.
    int slash =
    Math.max(filename.lastIndexOf('/'), filename.lastIndexOf('\\'));
    if (slash > -1) {
    filename = filename.substring(slash + 1); // past last slash
    if (filename.equals("")) filename = NO_FILE; // sanity check
    // Return a String array: disposition, name, filename
    retval[0] = disposition;
    retval[1] = name;
    retval[2] = filename;
    return retval;
    // Extracts and returns the content type from a line, or null if the
    // line was empty. Throws an IOException if the line is malformatted.
    private String extractContentType(String line) throws IOException {
    String contentType = null;
    // Convert the line to a lowercase string
    String origline = line;
    line = origline.toLowerCase();
    // Get the content type, if any
    if (line.startsWith("content-type")) {
    int start = line.indexOf(" ");
    if (start == -1) {
    throw new IOException("Content type corrupt: " + origline);
    contentType = line.substring(start + 1);
    else if (line.length() != 0) {  // no content type, so should be empty
    throw new IOException("Malformed line after disposition: " + origline);
    return contentType;
    // A class to hold information about an uploaded file.
    class UploadedFile {
    private String dir;
    private String filename;
    private String type;
    UploadedFile(String dir, String filename, String type) {
    this.dir = dir;
    this.filename = filename;
    this.type = type;
    public String getContentType() {
    return type;
    public String getFilesystemName() {
    return filename;
    public File getFile() {
    if (dir == null || filename == null) {
    return null;
    else {
    return new File(dir + File.separator + filename);
    // A class to aid in reading multipart/form-data from a ServletInputStream.
    // It keeps track of how many bytes have been read and detects when the
    // Content-Length limit has been reached.
    class MultipartInputStreamHandler {
    ServletInputStream in;
    int totalExpected;
    int totalRead = 0;
    byte[] buf = new byte[8 * 1024];
    public MultipartInputStreamHandler(ServletInputStream in,
    int totalExpected) {
    this.in = in;
    this.totalExpected = totalExpected;
    // Reads the next line of input. Returns null to indicate the end
    // of stream.
    public String readLine() throws IOException {
    StringBuffer sbuf = new StringBuffer();
    int result;
    String line;
    do {
    result = this.readLine(buf, 0, buf.length); // this.readLine() does +=
    if (result != -1) {
    sbuf.append(new String(buf, 0, result, "ISO-8859-1"));
    } while (result == buf.length); // loop only if the buffer was filled
    if (sbuf.length() == 0) {
    return null; // nothing read, must be at the end of stream
    sbuf.setLength(sbuf.length() - 2); // cut off the trailing \r\n
    return sbuf.toString();
    // A pass-through to ServletInputStream.readLine() that keeps track
    // of how many bytes have been read and stops reading when the
    // Content-Length limit has been reached.
    public int readLine(byte b[], int off, int len) throws IOException {
    if (totalRead >= totalExpected) {
    return -1;
    else {
    if (len > (totalExpected - totalRead)) {
    len = totalExpected - totalRead; // keep from reading off end
    int result = in.readLine(b, off, len);
    if (result > 0) {
    totalRead += result;
    return result;
    // Class to filters MacBinary files to normal files on the fly
    // Optimized for speed more than readability
    class MacBinaryDecoderOutputStream extends FilterOutputStream {
    int bytesFiltered = 0;
    int dataForkLength = 0;
    public MacBinaryDecoderOutputStream(OutputStream out) {
    super(out);
    public void write(int b) throws IOException {
    // Bytes 83 through 86 are a long representing the data fork length
    // Check <= 86 first to short circuit early in the common case
    if (bytesFiltered <= 86 && bytesFiltered >= 83) {
    int leftShift = (86 - bytesFiltered) * 8;
    dataForkLength = dataForkLength | (b & 0xff) << leftShift;
    // Bytes 128 up to (128 + dataForkLength - 1) are the data fork
    else if (bytesFiltered < (128 + dataForkLength) && bytesFiltered >= 128) {
    out.write(b);
    bytesFiltered++;
    public void write(byte b[]) throws IOException {
    write(b, 0, b.length);
    public void write(byte b[], int off, int len) throws IOException {
    // If the write is for content past the end of the data fork, ignore
    if (bytesFiltered >= (128 + dataForkLength)) {
    bytesFiltered += len;
    // If the write is entirely within the data fork, write it directly
    else if (bytesFiltered >= 128 &&
    (bytesFiltered + len) <= (128 + dataForkLength)) {
    out.write(b, off, len);
    bytesFiltered += len;
    // Otherwise, do the write a byte at a time to get the logic above
    else {
    for (int i = 0 ; i < len ; i++) {
    write(b[off + i]);

    I am also need to rename a file and extension while uploadinf the file to the server. The oreilly example seems only save as the same file name and ext. I wonder if you have the ability chANGE OIT OR NOT. pLEASE LET ME KNOW
    thanks
    kansen

  • Muse CC 2014.3 crashing on upload to FTP

    Though I've made updates to my site in before, Muse CC 2014.3 is now crashing on upload to FTP. I have tried to research this, but have yet to see an answer that fits. As I am only uploading changed content to my main home page it should not be difficult for Muse. Perhaps there is something on my end that has caused this situation. The progress bar reaches about 6%, stops and crashes. I have attached the crash report below for review. I have also tried exporting for HTML as well with the same result. FYI: I did try exporting to HTML a practice website and did the "preview this site in browser..." and was successful. So it initially appears that there is something in my site. The problem with that though is that I am only deleting an element, not adding or changing items.   HELP!!
    rocess:    
    Adobe Muse CC [22250]
    Path:       
    /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/MacOS/Adobe Muse CC
    Identifier: 
    com.adobe.Muse.application
    Version:    
    2014.3.2 (2014.3.2.11)
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [182]
    Responsible:
    Adobe Muse CC [22250]
    User ID:    
    501
    Date/Time:  
    2015-04-23 16:09:28.283 -0500
    OS Version: 
    Mac OS X 10.9.5 (13F1077)
    Report Version:  11
    Anonymous UUID:  86F3BD1C-38E8-EEFC-CBBD-9CD5BBF5D021
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    terminating with uncaught exception of type AIDE::Exception: std::exception
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib  
    0x00007fff8c748866 __pthread_kill + 10
    1   libsystem_pthread.dylib 
    0x00007fff9671635c pthread_kill + 92
    2   libsystem_c.dylib       
    0x00007fff97a97b1a abort + 125
    3   libc++abi.dylib         
    0x00007fff95bccf31 abort_message + 257
    4   libc++abi.dylib         
    0x00007fff95bf293a default_terminate_handler() + 240
    5   libobjc.A.dylib         
    0x00007fff8e0bf322 _objc_terminate() + 124
    6   libc++abi.dylib         
    0x00007fff95bf01d1 std::__terminate(void (*)()) + 8
    7   libc++abi.dylib         
    0x00007fff95befc5b __cxa_throw + 124
    8   com.adobe.Muse.application  
    0x0000000101b612c6 AIDE::Decoder::Decoder(AIDE::Lib&, AIDE::InputStream&, AIDE::DecodeOptions&) + 102
    9   com.adobe.Muse.application  
    0x0000000101b5756a MuseDOMAIDEProviderObj::ReEncode(MuseASObject, int, int, EncodingFormat) + 906
    10  com.adobe.Muse.application  
    0x0000000101b5c1b1 MuseDOMAIDEProviderObj::Handler::ReEncodeAsJPEGAsync(MuseASArgs const&) + 433
    11  com.adobe.Muse.application  
    0x0000000101ae25ec MuseHandlerObj::CallMethod(MuseKey const&, MuseASArgs const&) + 124
    12  com.adobe.Muse.application  
    0x0000000101af4e60 MuseDOMObjectObj::CallMethod(MuseAtom const&, MuseASArgs const&) + 256
    13  com.adobe.Muse.application  
    0x0000000101af334c MuseDOMExtensionObj::APEObjectInvokeMethod(Opaque_APEPlayer*, void*, void*, APEOpaqueAtom*, unsigned int, APEOpaqueAtom* const*) + 348
    14  com.adobe.ape.engine    
    0x000000010a32d5b9 avmplus::APXHostObject::__call(avmplus::String*, avmplus::ArrayObject*) const + 329 (APXHostObjectGlue.cpp:531)
    15  com.adobe.ape.engine    
    0x000000010a8bdb19 avmplus::BaseExecMgr::debugEnterExitWrapper32(avmplus::MethodEnv*, int, unsigned int*) + 57 (exec.cpp:431)
    16  ???                     
    0x000000011ddf15b2 0 + 4796126642
    17  ???                     
    0x000000011d33f0b2 0 + 4784910514
    18  ???                     
    0x000000011d36e39b 0 + 4785103771
    19  com.adobe.ape.engine    
    0x000000010a8bcf93 avmplus::BaseExecMgr::verifyEnterGPR(avmplus::MethodEnv*, int, unsigned int*) + 131 (exec.cpp:296)
    20  ???                     
    0x000000011d36e6ea 0 + 4785104618
    21  com.adobe.ape.engine    
    0x000000010a8bde81 avmplus::BaseExecMgr::endCoerce(avmplus::MethodEnv*, int, unsigned int*, avmplus::MethodSignature const*) + 65 (exec.cpp:726)
    22  com.adobe.ape.engine    
    0x000000010a8bea24 avmplus::BaseExecMgr::invokeGeneric(avmplus::MethodEnv*, int, long long*) + 292 (exec.cpp:937)
    23  com.adobe.ape.engine    
    0x000000010a8bd044 avmplus::BaseExecMgr::verifyInvoke(avmplus::MethodEnv*, int, long long*) + 132 (exec.cpp:312)
    24  ???                     
    0x000000011d36f495 0 + 4785108117
    25  com.adobe.ape.engine    
    0x000000010a8bde81 avmplus::BaseExecMgr::endCoerce(avmplus::MethodEnv*, int, unsigned int*, avmplus::MethodSignature const*) + 65 (exec.cpp:726)
    26  com.adobe.ape.engine    
    0x000000010a8bea24 avmplus::BaseExecMgr::invokeGeneric(avmplus::MethodEnv*, int, long long*) + 292 (exec.cpp:937)
    27  com.adobe.ape.engine    
    0x000000010a8bd044 avmplus::BaseExecMgr::verifyInvoke(avmplus::MethodEnv*, int, long long*) + 132 (exec.cpp:312)
    28  com.adobe.ape.engine    
    0x000000010a3ca19d avmplus::EventDispatcherObject::DoDispatchEvent(avmplus::EventObject*, avmplus::PlayerAvmCore*, bool) + 685 (EventDispatcherGlue.cpp:1766)
    29  com.adobe.ape.engine    
    0x000000010a3c89de avmplus::EventDispatcherObject::dispatchEventFunction(avmplus::EventObject*) + 318 (EventGlue.h:46)
    30  com.adobe.ape.engine    
    0x000000010a4f9295 avmplus::NativeID::avmglue_b2a_oo_thunk(avmplus::MethodEnv*, unsigned int, long long*) + 37 (avmglue.cpp:32877)
    31  com.adobe.ape.engine    
    0x000000010a8bdb19 avmplus::BaseExecMgr::debugEnterExitWrapper32(avmplus::MethodEnv*, int, unsigned int*) + 57 (exec.cpp:431)
    32  ???                     
    0x000000010b6192cb 0 + 4485911243
    33  ???                     
    0x00000001123637d1 0 + 4600510417
    34  ???                     
    0x0000000112784ab6 0 + 4604840630
    35  ???                     
    0x000000011277bcdb 0 + 4604804315
    36  com.adobe.ape.engine    
    0x000000010a3ca19d avmplus::EventDispatcherObject::DoDispatchEvent(avmplus::EventObject*, avmplus::PlayerAvmCore*, bool) + 685 (EventDispatcherGlue.cpp:1766)
    37  com.adobe.ape.engine    
    0x000000010a3c970b avmplus::EventDispatcherObject::NativeConstructAndDispatchEvent(avmplus::List<MMgc::GCWea kRef*, (avmplus::ListElementType)1, avmplus::ListAllocPolicy_GC>*, bool&, int, char const*, ...) + 219 (EventGlue.h:46)
    38  com.adobe.ape.engine    
    0x000000010a3ca7c9 avmplus::EventDispatcherObject::DispatchBaseEvent(avmplus::String*, bool, bool) + 345 (EventDispatcherGlue.cpp:1998)
    39  com.adobe.ape.engine    
    0x000000010a6ead54 avmplus::URLStreamObject::OnClose() + 180 (URLStreamGlue.cpp:1188)
    40  com.adobe.ape.engine    
    0x000000010a6eac3a avmplus::DataURLStream::StreamClose() + 298 (async.h:119)
    41  com.adobe.ape.engine    
    0x000000010a36de2d PlatformURLStream::NotifyDone() + 93 (cocoa_urlstream.mm:1457)
    42  com.adobe.ape.engine    
    0x000000010a3705d2 NetworkASyncMessage<PlatformURLStream::NotifyFinishedLoadingMessage, PlatformURLStream>::Handler(NetworkASync*) + 34 (cocoa_urlstream.mm:1818)
    43  com.adobe.ape.engine    
    0x000000010a334f37 ASyncManager::DoProcessASyncMessages(int) + 615 (async.cpp:506)
    44  com.adobe.ape.engine    
    0x000000010a64e89c CorePlayer::DoPlay_EnterFrameStart() + 188 (splayer.h:514)
    45  com.adobe.ape.engine    
    0x000000010a65044b CorePlayer::DoPlay(bool, bool) + 251 (splayer.cpp:12617)
    46  com.adobe.ape.engine    
    0x000000010a687d1b PlatformPlayer::DoTick() + 219 (swfl_macplayer.mm:2267)
    47  com.apple.CoreFoundation
    0x00007fff8cc155b1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    48  com.apple.CoreFoundation
    0x00007fff8cc06c62 __CFRunLoopDoSources0 + 242
    49  com.apple.CoreFoundation
    0x00007fff8cc063ef __CFRunLoopRun + 831
    50  com.apple.CoreFoundation
    0x00007fff8cc05e75 CFRunLoopRunSpecific + 309
    51  com.apple.HIToolbox     
    0x00007fff95ec1a0d RunCurrentEventLoopInMode + 226
    52  com.apple.HIToolbox     
    0x00007fff95ec1685 ReceiveNextEventCommon + 173
    53  com.apple.HIToolbox     
    0x00007fff95ec15bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    54  com.apple.AppKit        
    0x00007fff909c324e _DPSNextEvent + 1434
    55  com.apple.AppKit        
    0x00007fff909c289b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    56  com.adobe.Muse.application  
    0x0000000101c12e0b dv_utils::BlockWaitingForNextEvent(double) + 139
    57  com.adobe.Muse.application  
    0x0000000101af7781 MuseDialogHost::DoRunModal() + 1057
    58  com.adobe.Muse.application  
    0x0000000101afa197 MuseDialogHost::ModalLoopRunner::DoRun() + 23
    59  com.adobe.Muse.application  
    0x0000000101ac56ec IMuseIdleProc::Run() const + 108
    60  com.adobe.Muse.application  
    0x0000000101b71bfe MuseIdleManager::HandleTick(unsigned int, char const*) + 1278
    61  com.adobe.Muse.application  
    0x0000000101b71693 MuseIdle::DoIdle() + 51
    62  com.adobe.Muse.application  
    0x0000000101ad01ae MuseApp::DoIdle() + 14
    63  com.adobe.dvacore.framework 
    0x00000001027312ec int dvacore::config::ErrorManager::ExecuteFunction<void>(boost::function0<void>*, void*) + 28
    64  com.adobe.Muse.application  
    0x0000000101b41573 MuseErrorManager::ExecuteFunctionWithTopLevelExceptionHandler(boost::function0<int>) + 83
    65  com.adobe.dvacore.framework 
    0x0000000102731438 void dvacore::config::ErrorManager::ExecuteFunctionWithTopLevelExceptionHandler<void>(boost::f unction0<void>, bool*) + 136
    66  com.adobe.dvacore.framework 
    0x00000001027327d5 void dvacore::config::ExecuteTopLevelFunction<void>(boost::function0<void>, bool*) + 165
    67  com.adobe.exo.framework 
    0x00000001038e939c -[ExoMacApplication idle:] + 140
    68  com.apple.Foundation    
    0x00007fff8d346714 __NSFireTimer + 96
    69  com.apple.CoreFoundation
    0x00007fff8cc4b3e4 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    70  com.apple.CoreFoundation
    0x00007fff8cc4af1f __CFRunLoopDoTimer + 1151
    71  com.apple.CoreFoundation
    0x00007fff8ccbc5aa __CFRunLoopDoTimers + 298
    72  com.apple.CoreFoundation
    0x00007fff8cc066a5 __CFRunLoopRun + 1525
    73  com.apple.CoreFoundation
    0x00007fff8cc05e75 CFRunLoopRunSpecific + 309
    74  com.apple.HIToolbox     
    0x00007fff95ec1a0d RunCurrentEventLoopInMode + 226
    75  com.apple.HIToolbox     
    0x00007fff95ec1685 ReceiveNextEventCommon + 173
    76  com.apple.HIToolbox     
    0x00007fff95ec15bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    77  com.apple.AppKit        
    0x00007fff909c324e _DPSNextEvent + 1434
    78  com.apple.AppKit        
    0x00007fff909c289b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    79  com.apple.AppKit        
    0x00007fff909b699c -[NSApplication run] + 553
    80  com.adobe.exo.framework 
    0x00000001038e8148 exo::app::OS_AppBase::RunEventLoop() + 56
    81  com.adobe.Muse.application  
    0x0000000101acd678 MuseApp::RunEventLoop() + 24
    82  com.adobe.Muse.application  
    0x0000000101ac4f62 main + 594
    83  com.adobe.Muse.application  
    0x0000000101ac4cd4 start + 52
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib  
    0x00007fff8c749662 kevent64 + 10
    1   libdispatch.dylib       
    0x00007fff8d617421 _dispatch_mgr_invoke + 239
    2   libdispatch.dylib       
    0x00007fff8d617136 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib  
    0x00007fff8c748716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff96717c3b _pthread_cond_wait + 727
    2   com.adobe.ape.engine    
    0x000000010a4ef27e TThreadWait::Wait(unsigned int) + 62 (OSXMiniThreads.cpp:260)
    3   com.adobe.ape.engine    
    0x000000010a33882e BGThreadFunc(void*) + 78 (bgthread.cpp:27)
    4   com.adobe.ape.engine    
    0x000000010a4ef07a TSafeThread::RunHelper() + 106 (OSXMiniThreads.cpp:190)
    5   com.adobe.ape.engine    
    0x000000010a4ef0ed TSafeThread::Run(EThreadType) + 61 (GCHeap-inlines.h:90)
    6   com.adobe.ape.engine    
    0x000000010a4eedde ThreadStartProc(void*) + 62 (OSXMiniThreads.cpp:80)
    7   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    8   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    9   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib  
    0x00007fff8c748716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff96717c3b _pthread_cond_wait + 727
    2   com.adobe.ape.engine    
    0x000000010a4ef27e TThreadWait::Wait(unsigned int) + 62 (OSXMiniThreads.cpp:260)
    3   com.adobe.ape.engine    
    0x000000010a33882e BGThreadFunc(void*) + 78 (bgthread.cpp:27)
    4   com.adobe.ape.engine    
    0x000000010a4ef07a TSafeThread::RunHelper() + 106 (OSXMiniThreads.cpp:190)
    5   com.adobe.ape.engine    
    0x000000010a4ef0ed TSafeThread::Run(EThreadType) + 61 (GCHeap-inlines.h:90)
    6   com.adobe.ape.engine    
    0x000000010a4eedde ThreadStartProc(void*) + 62 (OSXMiniThreads.cpp:80)
    7   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    8   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    9   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib  
    0x00007fff8c748716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff96717c3b _pthread_cond_wait + 727
    2   com.adobe.ape.engine    
    0x000000010a4ef27e TThreadWait::Wait(unsigned int) + 62 (OSXMiniThreads.cpp:260)
    3   com.adobe.ape.engine    
    0x000000010a33882e BGThreadFunc(void*) + 78 (bgthread.cpp:27)
    4   com.adobe.ape.engine    
    0x000000010a4ef07a TSafeThread::RunHelper() + 106 (OSXMiniThreads.cpp:190)
    5   com.adobe.ape.engine    
    0x000000010a4ef0ed TSafeThread::Run(EThreadType) + 61 (GCHeap-inlines.h:90)
    6   com.adobe.ape.engine    
    0x000000010a4eedde ThreadStartProc(void*) + 62 (OSXMiniThreads.cpp:80)
    7   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    8   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    9   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib  
    0x00007fff8c748716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff96717c3b _pthread_cond_wait + 727
    2   com.adobe.ape.engine    
    0x000000010a4ef27e TThreadWait::Wait(unsigned int) + 62 (OSXMiniThreads.cpp:260)
    3   com.adobe.ape.engine    
    0x000000010a33882e BGThreadFunc(void*) + 78 (bgthread.cpp:27)
    4   com.adobe.ape.engine    
    0x000000010a4ef07a TSafeThread::RunHelper() + 106 (OSXMiniThreads.cpp:190)
    5   com.adobe.ape.engine    
    0x000000010a4ef0ed TSafeThread::Run(EThreadType) + 61 (GCHeap-inlines.h:90)
    6   com.adobe.ape.engine    
    0x000000010a4eedde ThreadStartProc(void*) + 62 (OSXMiniThreads.cpp:80)
    7   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    8   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    9   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib  
    0x00007fff8c748716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff96717c77 _pthread_cond_wait + 787
    2   com.adobe.ape.engine    
    0x000000010a4eee95 TThreadWait::DoSleep(int) + 149 (OSXMiniThreads.cpp:306)
    3   com.adobe.ape.engine    
    0x000000010a37448a DoActionsManager::RunThreadBody(void*) + 58 (coreasdebug.cpp:77)
    4   com.adobe.ape.engine    
    0x000000010a4ef07a TSafeThread::RunHelper() + 106 (OSXMiniThreads.cpp:190)
    5   com.adobe.ape.engine    
    0x000000010a4ef0ed TSafeThread::Run(EThreadType) + 61 (GCHeap-inlines.h:90)
    6   com.adobe.ape.engine    
    0x000000010a4eedde ThreadStartProc(void*) + 62 (OSXMiniThreads.cpp:80)
    7   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    8   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    9   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib  
    0x00007fff8c748716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff96717c77 _pthread_cond_wait + 787
    2   com.adobe.ape.engine    
    0x000000010a4ef2b4 TThreadWait::Wait(unsigned int) + 116 (OSXMiniThreads.cpp:268)
    3   com.adobe.ape.engine    
    0x000000010a4fc406 avmplus::PlayerAvmCore::ScriptTimeoutProc(void*) + 310 (PlayerAvmCore.cpp:1144)
    4   com.adobe.ape.engine    
    0x000000010a4ef07a TSafeThread::RunHelper() + 106 (OSXMiniThreads.cpp:190)
    5   com.adobe.ape.engine    
    0x000000010a4ef0ed TSafeThread::Run(EThreadType) + 61 (GCHeap-inlines.h:90)
    6   com.adobe.ape.engine    
    0x000000010a4eedde ThreadStartProc(void*) + 62 (OSXMiniThreads.cpp:80)
    7   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    8   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    9   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib  
    0x00007fff8c748716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff96717c77 _pthread_cond_wait + 787
    2   com.adobe.ape.engine    
    0x000000010a4ef2b4 TThreadWait::Wait(unsigned int) + 116 (OSXMiniThreads.cpp:268)
    3   com.adobe.ape.engine    
    0x000000010a65b73f CorePlayer::CoreLoop() + 223 (splayer.cpp:23706)
    4   com.adobe.ape.engine    
    0x000000010a4ef07a TSafeThread::RunHelper() + 106 (OSXMiniThreads.cpp:190)
    5   com.adobe.ape.engine    
    0x000000010a4ef0ed TSafeThread::Run(EThreadType) + 61 (GCHeap-inlines.h:90)
    6   com.adobe.ape.engine    
    0x000000010a4eedde ThreadStartProc(void*) + 62 (OSXMiniThreads.cpp:80)
    7   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    8   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    9   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib  
    0x00007fff8c744a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x00007fff8c743d18 mach_msg + 64
    2   com.apple.CoreFoundation
    0x00007fff8cc06f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation
    0x00007fff8cc06539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation
    0x00007fff8cc05e75 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit        
    0x00007fff90b6305e _NSEventThread + 144
    6   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    7   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    8   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 10:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib  
    0x00007fff8c744a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x00007fff8c743d18 mach_msg + 64
    2   com.apple.CoreFoundation
    0x00007fff8cc06f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation
    0x00007fff8cc06539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation
    0x00007fff8cc05e75 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation    
    0x00007fff8d348f87 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation    
    0x00007fff8d348d8b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    8   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    9   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 11:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib  
    0x00007fff8c7489aa __select + 10
    1   com.apple.CoreFoundation
    0x00007fff8cc52a03 __CFSocketManager + 867
    2   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    3   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    4   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib  
    0x00007fff8c748e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff96716f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib 
    0x00007fff96719fb9 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib  
    0x00007fff8c748e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff96716f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib 
    0x00007fff96719fb9 start_wqthread + 13
    Thread 14:
    0   libsystem_kernel.dylib  
    0x00007fff8c744a56 semaphore_wait_trap + 10
    1   com.adobe.AIDE          
    0x000000010421e1e2 CTThreading::OSSemaphore::Wait() + 16
    2   com.adobe.AIDE          
    0x000000010421d28a CTThreading::ThreadSafeQueue::Dequeue() + 22
    3   com.adobe.AIDE          
    0x000000010421d7d4 CTThreading::WorkerThread::Start() + 38
    4   com.adobe.AIDE          
    0x000000010421cfda CTThreading::PthreadStart(void*) + 14
    5   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib  
    0x00007fff8c744a56 semaphore_wait_trap + 10
    1   com.adobe.AIDE          
    0x000000010421e1e2 CTThreading::OSSemaphore::Wait() + 16
    2   com.adobe.AIDE          
    0x000000010421d28a CTThreading::ThreadSafeQueue::Dequeue() + 22
    3   com.adobe.AIDE          
    0x000000010421d7d4 CTThreading::WorkerThread::Start() + 38
    4   com.adobe.AIDE          
    0x000000010421cfda CTThreading::PthreadStart(void*) + 14
    5   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib  
    0x00007fff8c744a56 semaphore_wait_trap + 10
    1   com.adobe.AIDE          
    0x000000010421e1e2 CTThreading::OSSemaphore::Wait() + 16
    2   com.adobe.AIDE          
    0x000000010421d28a CTThreading::ThreadSafeQueue::Dequeue() + 22
    3   com.adobe.AIDE          
    0x000000010421d7d4 CTThreading::WorkerThread::Start() + 38
    4   com.adobe.AIDE          
    0x000000010421cfda CTThreading::PthreadStart(void*) + 14
    5   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib  
    0x00007fff8c744a56 semaphore_wait_trap + 10
    1   com.adobe.AIDE          
    0x000000010421e1e2 CTThreading::OSSemaphore::Wait() + 16
    2   com.adobe.AIDE          
    0x000000010421d28a CTThreading::ThreadSafeQueue::Dequeue() + 22
    3   com.adobe.AIDE          
    0x000000010421d7d4 CTThreading::WorkerThread::Start() + 38
    4   com.adobe.AIDE          
    0x000000010421cfda CTThreading::PthreadStart(void*) + 14
    5   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib  
    0x00007fff8c744a56 semaphore_wait_trap + 10
    1   com.adobe.AIDE          
    0x000000010421e1e2 CTThreading::OSSemaphore::Wait() + 16
    2   com.adobe.AIDE          
    0x000000010421d28a CTThreading::ThreadSafeQueue::Dequeue() + 22
    3   com.adobe.AIDE          
    0x000000010421d7d4 CTThreading::WorkerThread::Start() + 38
    4   com.adobe.AIDE          
    0x000000010421cfda CTThreading::PthreadStart(void*) + 14
    5   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib  
    0x00007fff8c744a56 semaphore_wait_trap + 10
    1   com.adobe.AIDE          
    0x000000010421e1e2 CTThreading::OSSemaphore::Wait() + 16
    2   com.adobe.AIDE          
    0x000000010421d28a CTThreading::ThreadSafeQueue::Dequeue() + 22
    3   com.adobe.AIDE          
    0x000000010421d7d4 CTThreading::WorkerThread::Start() + 38
    4   com.adobe.AIDE          
    0x000000010421cfda CTThreading::PthreadStart(void*) + 14
    5   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 20:
    0   libsystem_kernel.dylib  
    0x00007fff8c744a56 semaphore_wait_trap + 10
    1   com.adobe.AIDE          
    0x000000010421e1e2 CTThreading::OSSemaphore::Wait() + 16
    2   com.adobe.AIDE          
    0x000000010421d28a CTThreading::ThreadSafeQueue::Dequeue() + 22
    3   com.adobe.AIDE          
    0x000000010421d7d4 CTThreading::WorkerThread::Start() + 38
    4   com.adobe.AIDE          
    0x000000010421cfda CTThreading::PthreadStart(void*) + 14
    5   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib  
    0x00007fff8c744a56 semaphore_wait_trap + 10
    1   com.adobe.AIDE          
    0x000000010421e1e2 CTThreading::OSSemaphore::Wait() + 16
    2   com.adobe.AIDE          
    0x000000010421d28a CTThreading::ThreadSafeQueue::Dequeue() + 22
    3   com.adobe.AIDE          
    0x000000010421d7d4 CTThreading::WorkerThread::Start() + 38
    4   com.adobe.AIDE          
    0x000000010421cfda CTThreading::PthreadStart(void*) + 14
    5   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 22:
    0   libsystem_kernel.dylib  
    0x00007fff8c748716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff96717c77 _pthread_cond_wait + 787
    2   com.adobe.ape.engine    
    0x000000010a336c51 BackgroundWorkManager::ThreadProc() + 289 (OSXThreadUtilities.h:185)
    3   com.adobe.ape.engine    
    0x000000010a3369de BackgroundWorkManager::ThreadProc(void*) + 14 (async.h:110)
    4   com.adobe.ape.engine    
    0x000000010a4ef07a TSafeThread::RunHelper() + 106 (OSXMiniThreads.cpp:190)
    5   com.adobe.ape.engine    
    0x000000010a4ef0ed TSafeThread::Run(EThreadType) + 61 (GCHeap-inlines.h:90)
    6   com.adobe.ape.engine    
    0x000000010a4eedde ThreadStartProc(void*) + 62 (OSXMiniThreads.cpp:80)
    7   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    8   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    9   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 23:
    0   libsystem_kernel.dylib  
    0x00007fff8c748e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff96716f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib 
    0x00007fff96719fb9 start_wqthread + 13
    Thread 24:
    0   libsystem_kernel.dylib  
    0x00007fff8c748716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff96717c77 _pthread_cond_wait + 787
    2   com.adobe.ape.engine    
    0x000000010a336c51 BackgroundWorkManager::ThreadProc() + 289 (OSXThreadUtilities.h:185)
    3   com.adobe.ape.engine    
    0x000000010a3369de BackgroundWorkManager::ThreadProc(void*) + 14 (async.h:110)
    4   com.adobe.ape.engine    
    0x000000010a4ef07a TSafeThread::RunHelper() + 106 (OSXMiniThreads.cpp:190)
    5   com.adobe.ape.engine    
    0x000000010a4ef0ed TSafeThread::Run(EThreadType) + 61 (GCHeap-inlines.h:90)
    6   com.adobe.ape.engine    
    0x000000010a4eedde ThreadStartProc(void*) + 62 (OSXMiniThreads.cpp:80)
    7   libsystem_pthread.dylib 
    0x00007fff96715899 _pthread_body + 138
    8   libsystem_pthread.dylib 
    0x00007fff9671572a _pthread_start + 137
    9   libsystem_pthread.dylib 
    0x00007fff96719fc9 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff7d6ec310  rcx: 0x00007fff5e135af8  rdx: 0x0000000000000000
      rdi: 0x0000000000000707  rsi: 0x0000000000000006  rbp: 0x00007fff5e135b20  rsp: 0x00007fff5e135af8
       r8: 0x00007fff95bf392c   r9: 0x00007fff97abf8d0  r10: 0x0000000008000000  r11: 0x0000000000000206
      r12: 0x00007fff5e135c80  r13: 0x0000600000304f18  r14: 0x0000000000000006  r15: 0x00007fff5e135b60
      rip: 0x00007fff8c748866  rfl: 0x0000000000000206  cr2: 0x000000010acc40e8
    Logical CPU:
    0
    Error Code: 
    0x02000148
    Trap Number:
    133
    Binary Images:
    0x101ac3000 -   
    0x102100fe7 +com.adobe.Muse.application (2014.3.2 - 2014.3.2.11) <37336507-6525-303C-AE2C-A6E4901A1228> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/MacOS/Adobe Muse CC
    0x102675000 -   
    0x10267bff7 +com.adobe.boost_date_time.framework (7.0.0 - 7.0.0.0) <E23D3FA5-0F1C-358B-B7AE-3EA0F1041610> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time
    0x102699000 -   
    0x1026a5fff +com.adobe.boost_signals.framework (7.0.0 - 7.0.0.0) <270C06CE-CA4D-3BFB-ABB5-8E123BC39295> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_signals
    0x1026c6000 -   
    0x1026c8fff +com.adobe.boost_system.framework (7.0.0 - 7.0.0.0) <02064CC7-B140-39BC-A327-63A16AC6C2A2> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system
    0x1026d7000 -   
    0x1026e5fff +com.adobe.boost_threads.framework (7.0.0 - 7.0.0.0) <E6AB959B-255C-3A31-9F03-28CEBA9AF869> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
    0x102708000 -   
    0x102996fff +com.adobe.dvacore.framework (8.0.0 - 8.0.0.0) <A9B99355-C620-3986-9671-A6FDC570E084> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
    0x102bef000 -   
    0x1030cbfff +com.adobe.dvaui.framework (8.0.0 - 8.0.0.0) <7F350138-ABF8-395F-8287-4F1F59A1A861> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
    0x10370a000 -   
    0x1037c8fff +com.adobe.dvaworkspace.framework (8.0.0 - 8.0.0.0) <9621117F-85CF-3790-90FB-3044238B3FEE> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/dvaworkspace.framework/Versions/A/dvaworkspace
    0x1038e0000 -   
    0x1039aafff +com.adobe.exo.framework (8.0.0 - 8.0.0.0) <78272CC5-C266-3898-93FE-8A8192C3752A> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/exo.framework/Versions/A/exo
    0x103b08000 -   
    0x103b94ff7 +com.adobe.headlights.LogSessionFramework (7.2.1.3399) <8033183B-8259-3AF1-B3D8-8AC48847F90E> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0x103c06000 -   
    0x103c0bfff +com.adobe.ape.shim (3.4.0.1 - 3.4.0.1) <BC3B0DE4-5455-3A88-AECA-E5D3A1518691> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
    0x103c14000 -   
    0x103c34ff7 +com.adobe.dvaflashview.framework (8.0.0 - 8.0.0.0) <F52B4DD4-7445-35F3-BB56-57A7F9063E42> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/dvaflashview.framework/Versions/A/dvaflashview
    0x103c61000 -   
    0x103c7dff7 +com.adobe.BIB (AdobeBIB 1.2.03.33657 - 1.2.03.33657) <4F6DE96A-F039-3052-96D7-7474BDCC5BA6> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x103c8b000 -   
    0x103cafff7 +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.8.0.33608 - 3.8.0.33608) <9A59CA19-C18D-3055-A6DE-3E09715D2D31> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExp at
    0x103cd5000 -   
    0x103e80fef +libcurl.4.dylib (0) <B1F9D821-FB66-331A-B685-CCADEDDFACBC> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/libcurl.4.dylib
    0x103f12000 -   
    0x10410cfff +com.adobe.owl (AdobeOwl version 5.2.3 - 5.2.3) <1B7A9EA5-54F1-3520-8A3A-04DE84986242> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x104157000 -   
    0x104291ff7 +com.adobe.AIDE (1.5.0 - 1.5.0.33698) <622F1E1E-6A89-3BEA-9243-9C3B80132E93> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/AIDE.framework/Versions/A/AIDE
    0x104306000 -   
    0x1043abff7 +com.adobe.boost_regex.framework (7.0.0 - 7.0.0.0) <F4006FE0-FB37-31F3-9F2D-D4B74F499A4A> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_regex
    0x104444000 -   
    0x10459efff +com.adobe.linguistic.LinguisticManager (8.0.0 - 20256) <65F0E23D-218B-3365-890E-249E085586B0> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0x1045f2000 -   
    0x104926ff7 +com.adobe.dvaadameve.framework (8.0.0 - 8.0.0.0) <CDBE4831-F495-3A22-8CB8-BA29CBF2450A> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
    0x104f7b000 -   
    0x104f89fff +com.adobe.boost_filesystem.framework (7.0.0 - 7.0.0.0) <4F542626-E61E-3AD6-83A4-F54CE23AD50F> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/boost_filesystem.framework/Versions/A/boost_filesystem
    0x104fa3000 -   
    0x1050a2fff +com.adobe.amtlib (8.0.0.122 - 8.0.0.122) <3793FBF6-1FED-357D-96EF-5C17B2F7A371> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x1050b8000 -   
    0x105dfdfff +com.adobe.ICUData (4.0 - 3.61) <01D90725-4B10-312C-9546-9C0CCCA1B7BB> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/ICUData.framework/Versions/4.0/libicudata.40.0.dylib
    0x105e12000 -   
    0x105f08ff7 +com.adobe.ICUUnicode (4.0 - 3.61) <2352E6C8-3431-3A99-92B9-382E85A018AC> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/ICUUnicode.framework/Versions/4.0/libicuuc.40.0.dylib
    0x10797e000 -   
    0x107986ff3  libCGCMS.A.dylib (599.35.6) <09F33B9F-098A-340A-8717-E3BA6849470E> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib
    0x107ab2000 -   
    0x107acefff  libJapaneseConverter.dylib (61) <94EF6A2F-F596-3638-A3DC-CF03567D9427> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x107ad3000 -   
    0x107af4ff7  libKoreanConverter.dylib (61) <22EEBBDB-A2F2-3985-B9C7-53BFE2B02D08> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0x107af9000 -   
    0x107b08fff  libSimplifiedChineseConverter.dylib (61) <F5827491-A4E3-3471-A540-8D1FE241FD99> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x107b0c000 -   
    0x107b1efff  libTraditionalChineseConverter.dylib (61) <A182514D-426F-3D5F-BA69-4C4A4680ECB8> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x107c2f000 -   
    0x107c57ffb  libRIP.A.dylib (599.35.6) <45A8594F-906E-3EAE-87D4-BA1DB091C690> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x107c67000 -   
    0x107c6affa  libCGXType.A.dylib (599.35.6) <7DAB1A62-D475-37F1-8234-07649906E234> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x107c7f000 -   
    0x107ca3ff7 +com.adobe.ape (3.4.0.1 - 3.4.0.1) <2147737B-46A8-3BB5-A820-FB972BBA6A92> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/APE/adbeapecore.framework/adbeapecore
    0x107cb0000 -   
    0x107cb4fff  com.apple.agl (3.2.3 - AGL-3.2.3) <9851E4CC-DA6B-3AF4-9B06-61BAC289572D> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x107cdf000 -   
    0x107ce3ffd  com.apple.audio.AppleHDAHALPlugIn (2.6.3 - 2.6.3f4) <2EB88B27-FA19-3C0C-AA06-7FB8BC56694E> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
    0x10a268000 -   
    0x10a2a1ff7 +com.adobe.pip (7.2.1.3399) <9E80366E-2A40-34CA-AAE3-2CA50F5F8505> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/AdobePIP.framework/AdobePIP
    0x10a2ab000 -   
    0x10a2eaff7 +com.adobe.AAM.AdobeUpdaterNotificationFramework (UpdaterNotifications 8.0.0.14 - 8.0.0.14) <FC7DECBD-48F6-3E2F-8E40-42F19885B415> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/UpdaterNotifications.framework/Versions/A/UpdaterNotificatio ns
    0x10a306000 -   
    0x10afc5fc7 +com.adobe.ape.engine (3.4.0.1 - 3.4.0.1) <86A1465A-76D8-3800-A106-0EE376AAD805> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Frameworks/APE/adbeapecore.framework/Libraries/adbeapeengine.bundle/Con tents/MacOS/adbeapeengine
    0x10e455000 -   
    0x10e4f8ff7  ColorSyncDeprecated.dylib (426) <1EBD0729-A174-3EA5-B226-DE63C2E89D14> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x112fa4000 -   
    0x1130b3ff7 +IMSLib.dylib (9.0.1.5 - 9.0.1.5) <AC77A2DA-B4AC-3F26-95C6-E649631A0A99> /Library/Application Support/Adobe/*/IMSLib.dylib
    0x11316b000 -   
    0x113171fff  com.apple.SymptomReporter (1.0 - 1) <F4638872-23B4-3A50-8BBF-EC270E926C1B> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomReporter.framework /SymptomReporter
    0x114992000 -   
    0x114bc6fff +com.adobe.adobehunspellplugin2 (1.0) <0E4D2C74-7368-32C3-8D29-AB1A7CCD837F> /Applications/Adobe Muse CC 2014/Adobe Muse CC 2014.app/Contents/Resources/Linguistics/Providers/Plugins2/AdobeHunspellPlugin.bundle/Con tents/MacOS/AdobeHunspellPlugin
    0x7fff6dd03000 -
    0x7fff6dd36817  dyld (239.4) <7AD43B9B-5CEA-3C7E-9836-A06909F9CA56> /usr/lib/dyld
    0x7fff8bed6000 -
    0x7fff8bed9fff  com.apple.AppleSystemInfo (3.0 - 3.0) <61FE171D-3D88-313F-A832-280AEC8F4AB7> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x7fff8c448000 -
    0x7fff8c5e3ff8  com.apple.CFNetwork (673.5 - 673.5) <EF4DA617-D442-327A-9575-A75111A0A742> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff8c634000 -
    0x7fff8c659ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff8c65a000 -
    0x7fff8c662fff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
    0x7fff8c663000 -
    0x7fff8c6b1fff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
    0x7fff8c6b2000 -
    0x7fff8c6b2fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.frame

    Muse is crashing while attempting to decompress an image in your site. It may be an external image file, or image data embedded with the .muse file.
    It would be helpful to know whether the crash occurs if the links to the external files are broken. if you rename the folder containing the images and open and output your file without fixing the links, does the crash still occur? If so, that would indicate the crash is triggered by image data within the .muse file. If that's the situation we'll need to have you send us the .muse file so we can further diagnose and repair the problem. If the crash doesn't occur with the links broken, then it's being triggered by an external image file. By re-linking sets of files you may be able to identify the problem file. Assuming the image can be opened in Photoshop without errors, opening it in PS and re-saving will avoid the crash. (If it does turn out to be an external image file, we'd be grateful if you could send us a copy of it. If it's malformed, it should result in an error message and not a crash.)
    You can send files to [email protected] along with a link to this thread for context. If the file is larger than 20Mb you can use a service like Adobe SendNow, Dropbox, WeTransfer, etc. (If you use a service, please include your return e-mail address in the body of the message, since not all services include it in the sharing invite they send.) Thanks.

  • Upload documents from webdynpro to R/3

    Hi All,
    I have referred to the below thread and created a RFC which gets the binary content and uploads it to DMS.
    How to upload file from Web Dynpro into R/3 (BAPI_DOCUMENT_CREATE2)
    The file is getting created without any problems. But i am unable to open this file directly from DMS using the transaction CV03N. For example when i upload a PDF and when i try to open the document in CV03N it launches the application with an error message
    <i>"Acrobat Reader could not open '_DEVCC10.PDF' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasnt correctly decoded)."</i>
    When i upload a text file it opens some junk data and not the original content that was uploaded from portal.
    <b>Can someone help me out in finding out the problem?
    Also can someone help me in understanding what is the exact data that needs to be passed to <i>BIN_CONTENT</i> as mentioned in the above thread.</b>
    Thanks,
    Prasath N<i></i>

    Can anyone help me on this?
    Thanks,
    Prasath N

  • Problem in upload file using oreilly classes

    Hi
    I stucked on a problem......
    I want to upload file from html page....On this page I want only a upload button so that when I click on this button file will upload from my client m/c to server m/c....
    I have code n all but browse button on html page....now I want to remove this browse button n want to give the file path somewhere in the code itself........so that on html page there will only the uplod button and by click on this button file will upload from client to server.......server path already there in code.....Please do the needful
    Abhishek
    I m putting the code here:-
    FileUpload.java
    upload-FileUpload.java
    NOTE: This file is a generated file.
    Do not modify it by hand!
    package upload;
    //custom imports for FileUpload
    //add your custom import statements here
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import com.oreilly.servlet.MultipartRequest;
    import java.util.*;
    public class FileUpload extends javax.servlet.http.HttpServlet
         protected boolean create() throws java.lang.Exception
              return true;
         public FileUpload()
         {   // Constructor.
         private void unhandledEvent( String listenerName, String methodName, java.lang.Object event )
         * destroy Method
         public void destroy()
              super.destroy();
              // TODO: implement
         * doGet Method
         protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
              System.out.println("abhishek");
              response.setContentType( "text/html" );
              PrintWriter out = response.getWriter();
              out.println("<HTML>");
              out.println("<HEAD><TITLE>FileUpload</TITLE></HEAD>");
              out.println("<BODY>");
              out.println("<H1>FileUpload</H1>");
              out.println("Hello World!");
              out.println("<P>Default Implementation From PowerJ</P>");
              out.println("</BODY></HTML>");
              // TODO: implement
         * doPost Method
         protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
              PrintWriter out = response.getWriter();
              try{
                   response.setContentType("text/html");
                   out.println("<HTML>");
                   out.println("<head><Title>Decoded Uploaded File</title><head>");
                   out.println("<body>");
                   out.println("<H1>UploadFile</h1>");
                   // path must be absolute to upload dir
                   // This is the decoder class that extracts the parameters and transfer file
                   // request argument = Http input stream
                   // c:\\temp\\upload = directory to save file
                   // 15*1024*1024 = 15mb max size file
                   MultipartRequest multi = new MultipartRequest(request, "c:\\temp\\upload",15*1024*1024);
                   // Lists form parameters
                   out.println("Params:");
                   Enumeration params = multi.getParameterNames();
                   out.println("<pre>");
                   while (params.hasMoreElements()) {
                        String name = (String)params.nextElement();
                        String value = multi.getParameter(name);
                        out.println(name + " = " + value);
                   out.println("</pre>");
                   // Show details of uploaded file
                   out.println("Files:");
                   Enumeration files = multi.getFileNames();
                   out.println("<pre>");
                   while (files.hasMoreElements()) {
                        String name = (String)files.nextElement();
                        String filename = multi.getFilesystemName(name);
                        String type = multi.getContentType(name);
                        File f = multi.getFile(name);
                        out.println("name: " + name);
                        out.println("filename: " + filename);
                        out.println("type: " + type);
                        if (f != null) {
                             out.println("f.toString(): " + f.toString());
                             out.println("f.getName(): " + f.getName());
                             out.println("f.exists(): " + f.exists());
                             out.println("f.length(): " + f.length());
                             out.println();
                        out.println("</pre>");
              }catch (Exception e){
                   out.println("<pre>");
                   e.printStackTrace(out);
                   out.println("</pre>");
              out.println("</body></html>");
         * init Method
         public void init(ServletConfig config) throws ServletException
              super.init(config);
              // TODO: implement
         * data members
    //     add your data members here
    UploadFile.html
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <meta name="GENERATOR" content="Microsoft FrontPage 4.0">
    <meta name="ProgId" content="FrontPage.Editor.Document">
    <title>File Upload using EAS</title>
    </head>
    <body>
    <form method="POST" enctype="multipart/form-data" action="upload/FileUpload">
    <p><b>File Upload using EAS </b></p>
    <p>Select file to send: <input type="file" name="name" size="30"></p>
    <p>Your Name: <input type="input" name="yourname" size="20"> </p>
    <p align="left"><input type="submit" value="Send File" name="submit"></p>
    </form>
    </body>
    </html>
    You can download the oreilly files from :- (same code is also here)
    http://www.sybase.com/detail?id=1011664

    where I should write down the file path(The file in client pc....e.g. C:\Documents and Settings\abhishek.jain\Desktop\Daily Order Manual.pdf ) in code........I m getting stuck

  • Upload file component in JSF 1.2

    Hi,
    I am developing an application with JSF 1.2 . I am using a custom component made with Apache Commons FileUpload 1.2.1 API which purpose is to upload files. This component work only if the form data is encoded with the “multipart/form-data” encoding instead of the usual “application x-www-form-urlencoded” encoding. From what I know JSF 1.2 doesn't handle this type of encoding. To overcome this issue, I install a servlet filter that intercepts a file upload and turns uploaded files into request attributes. The problem is that when the form data is encoded with the “multipart/form-data” encoding no characters are encoded. I have other JSF components in this form and in them I put different international characters which are lost when the form is submit because they are not encoded.
    Can somebody help me with this issue ?

    I have a filter
    import java.io.File;
    import java.io.IOException;
    import java.util.Collections;
    import java.util.Enumeration;
    import java.util.HashMap;
    import java.util.List;
    import java.util.Map;
    import javax.servlet.Filter;
    import javax.servlet.FilterChain;
    import javax.servlet.FilterConfig;
    import javax.servlet.ServletException;
    import javax.servlet.ServletRequest;
    import javax.servlet.ServletResponse;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletRequestWrapper;
    import org.apache.commons.fileupload.FileItem;
    import org.apache.commons.fileupload.FileUploadException;
    import org.apache.commons.fileupload.disk.DiskFileItemFactory;
    import org.apache.commons.fileupload.servlet.ServletFileUpload;
    public class UploadFilter implements Filter {
    private int sizeThreshold = -1;
    private String repositoryPath;
    public void init(FilterConfig config) throws ServletException {
    repositoryPath = config.getInitParameter(
    "com.corejsf.UploadFilter.repositoryPath");
    try {
    String paramValue = config.getInitParameter(
    "com.corejsf.UploadFilter.sizeThreshold");
    if (paramValue != null)
    sizeThreshold = Integer.parseInt(paramValue);
    catch (NumberFormatException ex) {
    ServletException servletEx = new ServletException();
    servletEx.initCause(ex);
    throw servletEx;
    public void destroy() {
    public void doFilter(ServletRequest request,
    ServletResponse response, FilterChain chain)
    throws IOException, ServletException {
    if (!(request instanceof HttpServletRequest)) {
    chain.doFilter(request, response);
    return;
    HttpServletRequest httpRequest = (HttpServletRequest) request;
    boolean isMultipartContent
    = ServletFileUpload.isMultipartContent(httpRequest);
    if (!isMultipartContent) {
    chain.doFilter(request, response);
    return;
    DiskFileItemFactory factory = new DiskFileItemFactory();
    if (sizeThreshold >= 0)
    factory.setSizeThreshold(sizeThreshold);
    if (repositoryPath != null)
    factory.setRepository(new File(repositoryPath));
    ServletFileUpload upload = new ServletFileUpload(factory);
    try {
    List<FileItem> items = (List<FileItem>) upload.parseRequest(httpRequest);
    final Map<String, String[]> map = new HashMap<String, String[]>();
    for (FileItem item : items) {
    String str = item.getString();
    if (item.isFormField())
    map.put(item.getFieldName(), new String[] { str });
    else
    httpRequest.setAttribute(item.getFieldName(), item);
    chain.doFilter(new
    HttpServletRequestWrapper(httpRequest) {
    public Map<String, String[]> getParameterMap() {
    return map;
    // busywork follows ... should have been part of the wrapper
    public String[] getParameterValues(String name) {
    Map<String, String[]> map = getParameterMap();
    return (String[]) map.get(name);
    public String getParameter(String name) {
    String[] params = getParameterValues(name);
    if (params == null) return null;
    return params[0];
    public Enumeration<String> getParameterNames() {
    Map<String, String[]> map = getParameterMap();
    return Collections.enumeration(map.keySet());
    }, response);
    } catch (FileUploadException ex) {
    ServletException servletEx = new ServletException();
    servletEx.initCause(ex);
    throw servletEx;
    a render
    import java.io.File;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.UnsupportedEncodingException;
    import javax.el.ValueExpression;
    import javax.faces.FacesException;
    import javax.faces.component.EditableValueHolder;
    import javax.faces.component.UIComponent;
    import javax.faces.context.ExternalContext;
    import javax.faces.context.FacesContext;
    import javax.faces.context.ResponseWriter;
    import javax.faces.render.Renderer;
    import javax.servlet.ServletContext;
    import javax.servlet.http.HttpServletRequest;
    import org.apache.commons.fileupload.FileItem;
    public class UploadRenderer extends Renderer {
    public void encodeBegin(FacesContext context, UIComponent component)
    throws IOException {
    if (!component.isRendered()) return;
    ResponseWriter writer = context.getResponseWriter();
    String clientId = component.getClientId(context);
    writer.startElement("input", component);
    writer.writeAttribute("type", "file", "type");
    writer.writeAttribute("name", clientId, "clientId");
    writer.endElement("input");
    writer.flush();
    public void decode(FacesContext context, UIComponent component) {
    ExternalContext external = context.getExternalContext();
    HttpServletRequest request = (HttpServletRequest) external.getRequest();
    String clientId = component.getClientId(context);
    FileItem item = (FileItem) request.getAttribute(clientId);
    Object newValue;
    ValueExpression valueExpr = component.getValueExpression("value");
    if (valueExpr != null) {
    Class valueType = valueExpr.getType(context.getELContext());
    if (valueType == byte[].class) {
    newValue = item.get();
    else if (valueType == InputStream.class) {
    try {
    newValue = item.getInputStream();
    } catch (IOException ex) {
    throw new FacesException(ex);
    else {
    String encoding = request.getCharacterEncoding();
    if (encoding != null)
    try {
    newValue = item.getString(encoding);
    } catch (UnsupportedEncodingException ex) {
    newValue = item.getString();
    else
    newValue = item.getString();
    ((EditableValueHolder) component).setSubmittedValue(newValue);
    ((EditableValueHolder) component).setValid(true);
    Object target = component.getAttributes().get("target");
    if (target != null) {
    File file;
    if (target instanceof File)
    file = (File) target;
    else {
    ServletContext servletContext
    = (ServletContext) external.getContext();
    String realPath = servletContext.getRealPath(target.toString());
    file = new File(realPath);
    try { // ugh--write is declared with "throws Exception"
    item.write(file);
    } catch (Exception ex) {
    throw new FacesException(ex);
    and a simple tag handler it is nothing special.
    This code is taken from an example in the book Core JavaServer Faces Second Edition 2007

Maybe you are looking for