DATAS WANT TO SEND BACKEND

Hi,
I am working with interactive form. In that form i have places SUBMIT TO SAP BUTTON . With the help of this button i want to send the datas to backend without converting the datas into string.
If anybody know means please explain me how to do this.
Thanks,
Senthil prabhu

Hi Senthil,
If you are using web dynpro java or ABAP there is property of the adobe form UI element which contains the method "OnActionSUbmit" Define this function as normally defined in web dynpro buttons and write the code to save the data into context nodes which are integrated to SAP system.
Hope it will resolve the issue.
Regards,
Vaibhav Tiwari.

Similar Messages

  • I want to send the data on internet using my laptop as a hotspot of wifi ?

    Dear Team,
    I have created an I/O server & sucessfully made communication with Modbus RTU device.
    Now I want to send this data on an internet.
    I have a laptop, which i have made hotspot using connectify.
    so i wish to transmit the data via wifi hot spot.
    How to transmit the data via wifi from laptop ?
    Can any one help me out on this...

    This is the easy part. Once you connect via the hotspot you can communicate using your standard internet protocols. Is the application accessing you laptop also running code you have written in
    LV?
    If so there are examples that show how to transfer data via a TCP/IP connection.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • I am in the process of trying to send some "photos" from iPhoto to a self publishing company and they want it sent CMYK as opposed to RGB. The "photos" were printed beautifully for 2 books I created at an earlier date. I want to send in the right format

    How do you convert iPhotos to CMYK? I want to send "artwork" which are essentially photos to a self publishing company for a children's book and don't know how to do this. The iBooks I created are beautiful and vibrant. Why can't I just send the photos? They want all artwork tiff and CMYK with at least 300dots on resolution?

    Photoshop is a very  expensive application. GraphicConverter can convert RGB files to CMTK and can set the PPI to what you need:
    GraphicConverter is the only 3rd party image editor other than the full Photoshop to be able to convert to CMYK.  You can get it here: Mac photo editing, Mac photo software, Mac photo-editing - GraphicConverter
    OT

  • Locking of data in R/3 backend (VC 7.1)

    Hello,
    The following scenario:
    I call an ABAP RFC in VC to get data from R/3 Backend which I want to display and change in a View. After I have changed the data I saved the changes in R/3 backend.
    Has the locking of the concerned tables/objects in R/3 backend to handle by the ABAP RFC's or is it possible to do this with VC? Is it possible to run an ABAP RFC / to hold the connection to R/3 backend for several minutes to keep the logging upright?
    Or has to proceed this scenario like this?:
    1. VC calls a RFC
    2. The RFC first locks the data then reads the data and returns the result back to VC
    3. The user changes the data and presses a save button
    4. VC calls the RFC to write and unlock the data
    Regards,
    Armin

    Hi,
    As per my understanding is that you need to validate the data in R/3 and BW if iam not mistaken then you can built a remote cube on R/3 datasource and i think you will be having basic cube in BW which contains data. now you can built an multicube on both remote and basic cubes and you can have a report on that multicube so that you can compare the data of both R/3 and BW.
    Regards,
    Malli.M

  • Want to Send smartform as pdf attachment with a Email to some mail id

    Hi ,
    I want to send a smartform as a PDF attachment with a mail to a mail id. And I can send a mail with the PDF attachment.
    But I am not able to open the PDF. It is throwing some error (Adobe reader could not open u2018fileu2019 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 was not correctly decoded)).
    By debugging I come to know that the file which is generating is in some encoding format.
    Please help me regard this. This is very urgent.
    here is the code,
    Main Program :
    REPORT Ztest_report.
    *--Top Include for Global Data Declarations.
    INCLUDE ztest_report_top.
    *--Form Include for Form Routines.
    INCLUDE ztest_report_form.
    START-OF-SELECTION.
    START-OF-SELECTION.
    *--Display data
      Perform display_data.
    END-OF-SELECTION.
    Top declaration :
    Internal table
    DATA :  i_otfdata TYPE tsfotf,          " Smart Forms: Table OTF
            i_tline TYPE TABLE OF tline WITH HEADER LINE,
            i_receivers TYPE TABLE OF somlreci1 WITH HEADER LINE,
            i_record LIKE solisti1 OCCURS 0 WITH HEADER LINE,
    Objects to send mail.
            i_objpack LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE,
            i_objtxt LIKE solisti1 OCCURS 0 WITH HEADER LINE,
            i_objbin LIKE solisti1 OCCURS 0 WITH HEADER LINE,
            i_reclist LIKE somlreci1 OCCURS 0 WITH HEADER LINE,
    Work Area declarations
            w_mailaddr TYPE ppfdmailad,
            w_mailtype TYPE so_escape,
            w_mailrecipient TYPE swotobjid,
            w_control TYPE ssfctrlop,
            w_compop TYPE ssfcompop,
            w_return TYPE ssfcrescl,
            wa_doc_chng TYPE sodocchgi1,
            w_data TYPE sodocchgi1,
            wa_buffer TYPE string, "To convert from 132 to 255
            wa_objhead TYPE soli_tab,
    Variables declarations
            v_form_name TYPE rs38l_fnam,
            v_len_in LIKE sood-objlen,
            v_len_out LIKE sood-objlen,
            v_len_outn TYPE i,
            v_lines_txt TYPE i,
            v_lines_bin TYPE i.
    Selection Screen
    SELECTION-SCREEN BEGIN OF BLOCK blk1 WITH FRAME TITLE text-009.
    PARAMETER:      p_bukrs TYPE bukrs OBLIGATORY,            "Company Code
                    p_belnr TYPE belnr_d OBLIGATORY,          "Document No
                    p_gjahr TYPE gjahr OBLIGATORY,            "document type
                    p_mailid(50) TYPE c OBLIGATORY.
    "Mail Id
    SELECTION-SCREEN END OF BLOCK blk1.
    Form Logic :
    FORM display_data.
    *Local Variable declaration
      DATA: lc_fm TYPE rs38l_fnam,       "local variable to store the
            l_i_document_output_info TYPE ssfcrespd,
            l_i_struc_job_output_info TYPE ssfcrescl,
            l_i_struc_job_output_options TYPE ssfcrescl,
            i_lines TYPE TABLE OF tline WITH HEADER LINE,
            lv_job_output_info      TYPE ssfcrescl,
            lv_document_output_info TYPE ssfcrespd,
            lv_job_output_options   TYPE ssfcresop,
            lv_bin_filesize         LIKE sood-objlen.
    Determine the smartform name
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
           EXPORTING
                formname           = 'ZTEST_SMARTFORM'
           IMPORTING
                fm_name            = lc_fm
           EXCEPTIONS
                no_form            = 1
                no_function_module = 2
                OTHERS             = 3.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      w_control-getotf = 'X'.
      w_control-no_dialog = 'X'.
      w_control-preview = space.
    w_control-device = 'MAIL'.
    Call the smartform and pass the selection screen parameter
      CALL FUNCTION lc_fm
           EXPORTING
                control_parameters = w_control
                output_options     = w_compop
                user_settings      = 'X'
                t_bukrs            = p_bukrs
                t_belnr            = p_belnr
                t_gjahr            = p_gjahr
           IMPORTING
                job_output_info    = l_i_struc_job_output_info
           EXCEPTIONS
                formatting_error   = 1
                internal_error     = 2
                send_error         = 3
                user_canceled      = 4
                OTHERS             = 5.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
        WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    Moving the Smart Forms: Table OTF into an internal table
      i_otfdata[] = l_i_struc_job_output_info-otfdata[].
    CONVERT TO OTF TO PDF.
      CALL FUNCTION 'CONVERT_OTF'
           EXPORTING
                format                = 'PDF'
                max_linewidth         = 132
           IMPORTING
                bin_filesize          = lv_bin_filesize
           TABLES
                otf                   = i_otfdata
                lines                 = i_lines
           EXCEPTIONS
                err_max_linewidth     = 1
                err_format            = 2
                err_conv_not_possible = 3
                err_bad_otf           = 4
                OTHERS                = 5.
    IF sy-batch EQ l_c_no.
    To directly view the print-preview in PDF format
      CALL FUNCTION 'SSFCOMP_PDF_PREVIEW'
           EXPORTING
                i_otf                    = i_otfdata
           EXCEPTIONS
                convert_otf_to_pdf_error = 1
                cntl_error               = 2
                OTHERS                   = 3.
    For Sending the PDF file to a Mail ID.
    LOOP AT i_lines.
       TRANSLATE i_lines USING '~'.
       CONCATENATE wa_buffer i_lines INTO wa_buffer.
    ENDLOOP.
    TRANSLATE wa_buffer USING '~'.
    DO.
       i_record = wa_buffer.
       APPEND i_record.
       SHIFT wa_buffer LEFT BY 255 PLACES.
       IF wa_buffer IS INITIAL.
         EXIT.
       ENDIF.
    ENDDO.
      DATA: BEGIN OF zlines OCCURS 0,
      tline TYPE char255,
      END OF zlines.
    *Change the PDF format from 132 to 255.
      CALL FUNCTION 'SX_TABLE_LINE_WIDTH_CHANGE'
           EXPORTING
                transfer_bin                = 'X'
           TABLES
                content_in                  = i_lines
                content_out                 = zlines
           EXCEPTIONS
                err_line_width_src_too_long = 1
                err_line_width_dst_too_long = 2
                err_conv_failed             = 3
                OTHERS                      = 4.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
        WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    Attachment
      REFRESH: i_reclist,
      i_objtxt,
      i_objbin,
      i_objpack.
      CLEAR wa_objhead.
      i_objbin[] = zlines[].
    Create Message Body Title and Description
      i_objtxt = 'test with pdf-Attachment!'.
      APPEND i_objtxt.
      DESCRIBE TABLE i_objtxt LINES v_lines_txt.
      READ TABLE i_objtxt INDEX v_lines_txt.
      wa_doc_chng-obj_name = 'smartform'.
      wa_doc_chng-expiry_dat = sy-datum + 10.
      wa_doc_chng-obj_descr = 'smartform'.
      wa_doc_chng-sensitivty = 'F'.
      wa_doc_chng-doc_size = v_lines_txt * 255.
    Main Text
      CLEAR i_objpack-transf_bin.
      i_objpack-head_start = 1.
      i_objpack-head_num = 1.
      i_objpack-body_start = 2.
      i_objpack-body_num = v_lines_txt.
      i_objpack-doc_type = 'RAW'.
      APPEND i_objpack.
    Attachment (pdf-Attachment)
      i_objpack-transf_bin = 'X'.
      i_objpack-head_start = 1.
      i_objpack-head_num = 1.
      i_objpack-body_start = 2.
    I_OBJPACK-DOC_TYPE = 'RAW'.
      DESCRIBE TABLE i_objbin LINES v_lines_bin.
      READ TABLE i_objbin INDEX v_lines_bin.
      i_objpack-doc_size = v_lines_bin * 255 .
      i_objpack-body_num = v_lines_bin.
      i_objpack-doc_type = 'PDF'.
      i_objpack-obj_name = 'smart'.
      i_objpack-obj_descr = 'test'.
      APPEND i_objpack.
      CLEAR i_reclist.
      i_reclist-receiver = p_mailid.
      i_reclist-rec_type = 'U'.
      APPEND i_reclist.
    Send new document with attachments via RFC
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
           EXPORTING
                document_data              = wa_doc_chng
                put_in_outbox              = 'X'
                commit_work                = 'X'
           TABLES
                packing_list               = i_objpack
                object_header              = wa_objhead
                contents_bin               = i_objbin
                contents_txt               = i_objtxt
                receivers                  = i_reclist
           EXCEPTIONS
                too_many_receivers         = 1
                document_not_sent          = 2
                document_type_not_exist    = 3
                operation_no_authorization = 4
                parameter_error            = 5
                x_error                    = 6
                enqueue_error              = 7
                OTHERS                     = 8.
      IF sy-subrc <> 0.
        WRITE:/ 'Error When Sending the File', sy-subrc.
      ELSE.
        WRITE:/ 'Mail sent'.
      ENDIF.
    ENDFORM.                    " display_data

    hi,
    i wrote a programm.for me it is working.i think it will help for u.
    DATA: t_otfdata TYPE ssfcrescl,
          t_lines LIKE tline OCCURS 0 WITH HEADER LINE,
          t_otf TYPE itcoo OCCURS 0 WITH HEADER LINE,
          t_RECORD LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE.
    Objects to send mail.
    DATA:T_OBJPACK LIKE SOPCKLSTI1 OCCURS 0 WITH HEADER LINE,
         T_OBJTXT LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
         T_OBJBIN LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
         T_RECLIST LIKE SOMLRECI1 OCCURS 0 WITH HEADER LINE.
    DATA: w_filesize TYPE i,
          w_bin_filesize TYPE i,
          wa_ctrlop TYPE ssfctrlop,
          wa_outopt TYPE ssfcompop,
          WA_BUFFER TYPE STRING,          "To convert from 132 to 255
          WA_OBJHEAD TYPE SOLI_TAB,
          WA_DOC_CHNG TYPE SODOCCHGI1,
          W_DATA TYPE SODOCCHGI1.
    DATA: form_name TYPE rs38l_fnam,
          V_LINES_TXT TYPE I,
          V_LINES_BIN TYPE I,
          nast-spras type sy-langu value 'DE'.
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
      EXPORTING
        FORMNAME                 = 'ZSR_DEMO1'
      VARIANT                  = ' '
      DIRECT_CALL              = ' '
    IMPORTING
       FM_NAME                  = form_name
    EXCEPTIONS
       NO_FORM                  = 1
       NO_FUNCTION_MODULE       = 2
       OTHERS                   = 3
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    wa_ctrlop-LANGU = nast-spras.
    wa_ctrlop-getotf = 'X'.
    wa_ctrlop-no_dialog = 'X'.
    wa_outopt-tdnoprev = 'X'.
    CALL FUNCTION form_name
      EXPORTING
      ARCHIVE_INDEX              =
      ARCHIVE_INDEX_TAB          =
      ARCHIVE_PARAMETERS         =
       CONTROL_PARAMETERS         = wa_ctrlop
      MAIL_APPL_OBJ              =
      MAIL_RECIPIENT             =
      MAIL_SENDER                =
       OUTPUT_OPTIONS             = wa_outopt
       USER_SETTINGS              = 'X'
    IMPORTING
      DOCUMENT_OUTPUT_INFO       =
       JOB_OUTPUT_INFO            = t_otfdata
      JOB_OUTPUT_OPTIONS         =
    EXCEPTIONS
       FORMATTING_ERROR           = 1
       INTERNAL_ERROR             = 2
       SEND_ERROR                 = 3
       USER_CANCELED              = 4
       OTHERS                     = 5
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    t_otf[] = t_otfdata-otfdata[].
    CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
       FORMAT                      = 'PDF'
       MAX_LINEWIDTH               = 132
      ARCHIVE_INDEX               = ' '
      COPYNUMBER                  = 0
      ASCII_BIDI_VIS2LOG          = ' '
      PDF_DELETE_OTFTAB           = ' '
    IMPORTING
       BIN_FILESIZE                = w_bin_filesize
      BIN_FILE                    =
      TABLES
        OTF                         = t_otf
        LINES                       = t_lines
    EXCEPTIONS
       ERR_MAX_LINEWIDTH           = 1
       ERR_FORMAT                  = 2
       ERR_CONV_NOT_POSSIBLE       = 3
       ERR_BAD_OTF                 = 4
       OTHERS                      = 5
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    loop at t_lines.
    TRANSLATE t_lines USING '~'.
      CONCATENATE WA_BUFFER T_LINES INTO WA_BUFFER.
    ENDLOOP.
    TRANSLATE WA_BUFFER USING '~'.
    DO.
      t_RECORD = WA_BUFFER.
      APPEND t_RECORD.
      SHIFT WA_BUFFER LEFT BY 255 PLACES.
      IF WA_BUFFER IS INITIAL.
        EXIT.
      ENDIF.
    ENDDO.
    Attachment
    REFRESH: T_RECLIST,
    T_OBJTXT,
    T_OBJBIN,
    T_OBJPACK.
    CLEAR WA_OBJHEAD.
    T_OBJBIN[] = T_RECORD[].
    Create Message Body Title and Description
    T_OBJTXT = 'test with pdf-Attachment!'.
    APPEND T_OBJTXT.
    DESCRIBE TABLE T_OBJTXT LINES V_LINES_TXT.
    READ TABLE T_OBJTXT INDEX V_LINES_TXT.
    WA_DOC_CHNG-OBJ_NAME = 'smartform'.
    WA_DOC_CHNG-EXPIRY_DAT = SY-DATUM + 10.
    WA_DOC_CHNG-OBJ_DESCR = 'smartform'.
    WA_DOC_CHNG-SENSITIVTY = 'F'.
    WA_DOC_CHNG-DOC_SIZE = V_LINES_TXT * 255.
    Main Text
    CLEAR T_OBJPACK-TRANSF_BIN.
    T_OBJPACK-HEAD_START = 1.
    T_OBJPACK-HEAD_NUM = 0.
    T_OBJPACK-BODY_START = 1.
    T_OBJPACK-BODY_NUM = V_LINES_TXT.
    T_OBJPACK-DOC_TYPE = 'RAW'.
    APPEND T_OBJPACK.
    Attachment (pdf-Attachment)
    T_OBJPACK-TRANSF_BIN = 'X'.
    T_OBJPACK-HEAD_START = 1.
    T_OBJPACK-HEAD_NUM = 0.
    T_OBJPACK-BODY_START = 1.
    DESCRIBE TABLE T_OBJBIN LINES V_LINES_BIN.
    READ TABLE T_OBJBIN INDEX V_LINES_BIN.
    T_OBJPACK-DOC_SIZE = V_LINES_BIN * 255 .
    T_OBJPACK-BODY_NUM = V_LINES_BIN.
    T_OBJPACK-DOC_TYPE = 'PDF'.
    T_OBJPACK-OBJ_NAME = 'smart'.
    T_OBJPACK-OBJ_DESCR = 'test'.
    APPEND T_OBJPACK.
    CLEAR T_RECLIST.
    T_RECLIST-RECEIVER = 'mail id'.
    T_RECLIST-REC_TYPE = 'U'.
    APPEND T_RECLIST.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
      EXPORTING
        DOCUMENT_DATA              = WA_DOC_CHNG
        PUT_IN_OUTBOX              = 'X'
        COMMIT_WORK                = 'X'
      TABLES
        PACKING_LIST               = T_OBJPACK
        OBJECT_HEADER              = WA_OBJHEAD
        CONTENTS_BIN               = T_OBJBIN
        CONTENTS_TXT               = T_OBJTXT
        RECEIVERS                  = T_RECLIST
      EXCEPTIONS
        TOO_MANY_RECEIVERS         = 1
        DOCUMENT_NOT_SENT          = 2
        DOCUMENT_TYPE_NOT_EXIST    = 3
        OPERATION_NO_AUTHORIZATION = 4
        PARAMETER_ERROR            = 5
        X_ERROR                    = 6
        ENQUEUE_ERROR              = 7
        OTHERS                     = 8.
    IF SY-SUBRC <> 0.
      WRITE:/ 'Error When Sending the File', SY-SUBRC.
    ELSE.
      WRITE:/ 'Mail sent'.
    ENDIF.
    please reward me if helpful.

  • Multipart/form-data using HTTPService, sending a binary file and some text in the same request.

    Hi There,
             I am new to FLEX and also new to writing a client for a web service.
    My question is more about flex (Flash builder 4.5) APIs, what APIs to use.
    I want to access a web service, that's published here.
    https://build.phonegap.com/docs/write_api
    here is the description of webservice
    ===========
    1) I have to do a post on POST https://build.phonegap.com/api/v1/apps
    2) content type has to be "multipart/form-data"
    3) JSON bodies of requests are expected to have the name 'data'
      data will be someting like this
    'data={"title":"API V1 App","package":"com.alunny.apiv1","version":"0.1.0","create_method":"file"}'
    4) include a zip file in the multipart body of your post, with the parameter name 'file'.
    ===========
    I want to make a 'multipart/form-data' Post and send
    one string and one zip file.
    My first question to self was If i send both string + binary data in the body ...
    how will server understand where string end and where zip file starts?
    Then read on W3.org( http://www.w3.org/TR/html401/interact/forms.html#h-17.13.4.2 )
    How is text + binary data can be sent through "multipart/form-data" post requst.
    there has to be some boundries.
    After this I read and example in flex and  tried following it.
    http://codeio.wordpress.com/2010/04/03/5-minutes-on-adobe-flex-mimic-file-upload-for-in-me mory-contents/
    but it doesn't seems to be working for me.
                        public function createNewApp(cb:Function , appFile : File):void
                                  var service:HTTPService = new HTTPService();
                                  service.url = ROOT+"apps";
                                  service.showBusyCursor = true;
                                  service.addEventListener(ResultEvent.RESULT, function(e:ResultEvent):void {
                                            //translate JSON
                                            trace(e.result);
                                            var result:String = e.result.toString();
                                            var data:Object = JSON.parse(result);
                                            cb(data.link);
                                  service.addEventListener(FaultEvent.FAULT, defaultFaultHandler); //todo : allow user to add his own as well
                                  authAndUploadNewApp(service,appFile);
                        private function authAndUploadNewApp(service:HTTPService,appFile : File):void {
                                  var encoder:Base64Encoder = new Base64Encoder();
                                  encoder.encode(username + ":"+password);
                                  service.headers = {Accept:"application/json", Authorization:"Basic " + encoder.toString()};
                                  service.method ="POST";
                                  var boundary:String = UIDUtil.createUID();
                                  service.contentType = "multipart/form-data; boundary=—————————" + boundary;
                                  var stream:FileStream = new FileStream();
                                  stream.open(appFile, FileMode.READ);
                                  var binaryData:ByteArray = new ByteArray();
                                  var fileData : String = new String();
                                  stream.readBytes(binaryData);
                                  stream.close();
                                  fileData = binaryData.readUTFBytes(binaryData.bytesAvailable); // I think this is where I have problem.... how do
                           //how do i converrt this bytearray/stream of data to string and send it in my post request's body - i guess if this step work rest should work..  
                                  var params: String = new String();
                                  var content:String = "—————————" + boundary + "nr";
                                  content += 'Content-Disposition: form-data; name="data";' + '{"title":"ELS test app 2","package":"com.elsapp.captivate","version":"12.3.09","create_method":"file"}' + "nr";
                                  content += "—————————" + boundary + "nr";
                                  content += 'Content-Disposition: form-data; name="file";' + fileData  + "nr";
                                  content += "—————————–" + boundary + "–nr";
                                  service.request = content;
                                  service.send();

    In the past I have used URLVariables with URLRequest and URLLoader to achieve this kind of requirement.
    Check out http://livedocs.adobe.com/flex/3/html/help.html?content=17_Networking_and_communications_3 .html which should be useful. My preference has always been to use this style instead of HTTPService objects, giving you a little more control which is what you need here.
    Let me know if you need any more assistance.

  • Why can I not attach a document to an email? Every time I want to send an email with a document attached to it, an error notice pops out. It tell me that the file is being used even when  it is not. How can I fix this issue?

    Why can I not attach a document to an email? Every time I want to send an email with a document attached to it, an error notice pops out. It tells me that the file is being used even when  iall other programs are closed. How can I fix this issue?

    Thanks Jeff, I was not aware that a template could be multi-page.  (All the existing templates were 1 page)
    But it worked, saving me some steps.  When I was finished I renamed the document, and locked it.
    Then tried to save it but  could not because it was locked.  I closed it, went to my Spread Sheet Folder ,
    to find it, it was not there.  The Finder could not find it either.
    So I start over again.
    I opened up Numbers and it showed my personal Numbers template folder, it contained both my new 
    original 4 page template and the vanished saved document!
    I tried to delete the template containing these document data and could not - I had to go to the Library/Application Support/Numbers to physically remove it from this folder. Then I started over again.  I Finally found out how to make it work: I can now "save as", and then lock, and it will go to place where I want it to be saved and locked.
    The secret is: Click on the document title in the menu bar, and it opens up  "Save as...", which works the same as in OS 10.4.11, and you can pick the place you want for saving.  Once done that, you can then lock the document in the same pull down menu, and then close it.
    I also found later that I can delete a template from its folder, by letting Numbers open the templates,
    clicking on the one I want to remove, then go to the "Numbers Menu/File/Move to...", select "Desktop"
    and from there the selected template can then be thrown into the Trash from there.
    It appears now that the real fault of the Numbers software is that the "Save as" command is not available in the "Edit" or "File" pull-down menus, but hidden behind the title of the document.

  • OSX: 10.9.4 Safari: 7.0.5 message: "Are you sure you want to send a form again?"

    My system:
    Mac Mini
    Processor 2.6 GHz Intel Core i7
    Memory  16 GB 1600 MHz DDR3
    Mavericks 10.9.4 (13E28)
    Safari 7.0.5
    Most annoying message keeps coming up on several websites.
    If you go here:
    http://www.bedbathandbeyond.com/store/s/laundry-sorter
    and click on the "Honey-Can-Do® Wicker Corner Hamper"
    and once in that item's site, you click to go back, I'm getting
    a message, "Are you sure you want to send a form again?"
    I don't enter anything into the screen of the item.  All I do is
    look at it, and try to click back and I keep getting this annoying
    message.
    And it happens with all other items on the BBB site.
    How to turn off this blankety-blank message??
    Its such a pain to have to keep clicking "Send" !!
    HALP!!

    Hi ...
    I followed your instructions, went back a page but no warning on Safari. Might be a cookies, cache, or extensions issue.
    From your Safari menu bar click Safari > Preferences then select the Privacy tab.
    Click:   Remove All Website Data
    Then delete the cache.
    Open a Finder window. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following
    ~/Library/Caches/com.apple.Safari/Cache.db
    Click Go then move the Cache.db file to the Trash.
    Quit and relaunch Safari to test.
    If nothing above helped, troubleshoot Safari extensions.
    From the Safari menu bar click Safari > Preferences then select the Extensions tab. Turn that OFF, quit and relaunch Safari to test.
    If that helped, turn one extension on then quit and relaunch Safari to test until you find the incompatible extension then click uninstall.

  • Mail crashes when i wanted to send a mail

    I don't what happen, but i recently update my OS, and now when i want to send a mail from my app mail, it closed inmediatley, i obtain this information from the console, could you help me?
    Thanks a lot
    Process:         Mail [382]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:      com.apple.mail
    Version:         7.3 (1878.6)
    Build Info:      Mail-1878006000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [168]
    Responsible:     Mail [382]
    User ID:         501
    Date/Time:       2014-09-22 19:20:08.344 -0500
    OS Version:      Mac OS X 10.9.5 (13F34)
    Report Version:  11
    Anonymous UUID:  0AC8739E-4EB0-5EBD-6AE2-AB675DDAC737
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x000000011c373000
    VM Regions Near 0x11c373000:
        WebKit Malloc          000000011c273000-000000011c373000 [ 1024K] rw-/rwx SM=PRV 
    --> WebKit Malloc          000000011c373000-000000011c374000 [    4K] ---/rwx SM=NUL 
        JS VM register file (r 000000011c374000-000000011c774000 [ 4096K] rw-/rwx SM=NUL  reserved VM address space (unallocated)
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_platform.dylib       0x00007fff8ec589a9 _platform_bzero$VARIANT$Ivybridge + 41
    1   com.apple.WebCore             0x00007fff8be1e0cc WebCore::getPropertyNameAtomicString(WebCore::CSSPropertyID) + 108
    2   com.apple.WebCore             0x00007fff8be1e040 WebCore::getPropertyNameString(WebCore::CSSPropertyID) + 16
    3   com.apple.WebCore             0x00007fff8c7320f2 WebCore::StylePropertySet::PropertyReference::cssName() const + 66
    4   com.apple.WebCore             0x00007fff8c65b588 WebCore::PropertySetCSSStyleDeclaration::item(unsigned int) const + 40
    5   com.apple.WebCore             0x00007fff8c191496 -[DOMCSSStyleDeclaration item:] + 54
    6   com.apple.mail                 0x000000010f7695ef 0x10f6ca000 + 652783
    7   com.apple.mail                 0x000000010f7693dd 0x10f6ca000 + 652253
    8   com.apple.mail                 0x000000010f764175 0x10f6ca000 + 631157
    9   com.apple.mail                 0x000000010f75fcaf 0x10f6ca000 + 613551
    10  com.apple.CoreFoundation       0x00007fff86c0d9ac __invoking___ + 140
    11  com.apple.CoreFoundation       0x00007fff86c0d814 -[NSInvocation invoke] + 308
    12  com.apple.MailCore             0x00007fff8fc3f448 -[MCThrowingInvocationOperation main] + 40
    13  com.apple.MailCore             0x00007fff8fbeb578 -[MCMainThreadInvocationOperation main] + 55
    14  com.apple.Foundation           0x00007fff90c0d7ce __NSThreadPerformPerform + 229
    15  com.apple.CoreFoundation       0x00007fff86c535b1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    16  com.apple.CoreFoundation       0x00007fff86c44c62 __CFRunLoopDoSources0 + 242
    17  com.apple.CoreFoundation       0x00007fff86c443ef __CFRunLoopRun + 831
    18  com.apple.CoreFoundation       0x00007fff86c43e75 CFRunLoopRunSpecific + 309
    19  com.apple.HIToolbox           0x00007fff8d60ca0d RunCurrentEventLoopInMode + 226
    20  com.apple.HIToolbox           0x00007fff8d60c7b7 ReceiveNextEventCommon + 479
    21  com.apple.HIToolbox           0x00007fff8d60c5bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    22  com.apple.AppKit               0x00007fff892e724e _DPSNextEvent + 1434
    23  com.apple.AppKit               0x00007fff892e689b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    24  com.apple.AppKit               0x00007fff892da99c -[NSApplication run] + 553
    25  com.apple.AppKit               0x00007fff892c5783 NSApplicationMain + 940
    26  libdyld.dylib                 0x00007fff8d88c5fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff8530b662 kevent64 + 10
    1   libdispatch.dylib             0x00007fff8730b421 _dispatch_mgr_invoke + 239
    2   libdispatch.dylib             0x00007fff8730b136 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff8530ae6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8f7aef08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff8f7b1fb9 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff85306a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff85305d18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff86c44f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff86c44539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff86c43e75 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit               0x00007fff8948705e _NSEventThread + 144
    6   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    8   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib         0x00007fff8530ae6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8f7aef08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff8f7b1fb9 start_wqthread + 13
    Thread 5:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x00007fff85306a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff85305d18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff86c44f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff86c44539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff86c43e75 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation           0x00007fff90c10ff7 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation           0x00007fff90c10dfb __NSThread__main__ + 1318
    7   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    8   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    9   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 6:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib         0x00007fff8530a9aa __select + 10
    1   com.apple.CoreFoundation       0x00007fff86c90a03 __CFSocketManager + 867
    2   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    3   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    4   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 7:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib         0x00007fff85306a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff85305d18 mach_msg + 64
    2   com.apple.QuartzCore           0x00007fff87188377 CA::Render::Server::server_thread(void*) + 195
    3   com.apple.QuartzCore           0x00007fff871882ad thread_fun + 25
    4   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    5   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    6   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib         0x00007fff8530ae6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8f7aef08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff8f7b1fb9 start_wqthread + 13
    Thread 9:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib         0x00007fff8530a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8f7afc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8cceccb5 JSC::BlockAllocator::blockFreeingThreadMain() + 261
    3   com.apple.JavaScriptCore       0x00007fff8cce1f4f ***::wtfThreadEntryPoint(void*) + 15
    4   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    5   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    6   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 10:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8530a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8f7afc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8cced727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff8cced5b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8cce1f4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 11:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8530a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8f7afc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8cced727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff8cced5b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8cce1f4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 12:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8530a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8f7afc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8cced727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff8cced5b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8cce1f4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 13:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8530a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8f7afc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8cced727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff8cced5b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8cce1f4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 14:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8530a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8f7afc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8cced727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff8cced5b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8cce1f4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 15:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8530a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8f7afc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8cced727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff8cced5b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8cce1f4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib         0x00007fff8530ae6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8f7aef08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff8f7b1fb9 start_wqthread + 13
    Thread 17:
    0   libsystem_kernel.dylib         0x00007fff8530ae6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8f7aef08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff8f7b1fb9 start_wqthread + 13
    Thread 18:
    0   libsystem_kernel.dylib         0x00007fff8530ae6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8f7aef08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff8f7b1fb9 start_wqthread + 13
    Thread 19:
    0   libsystem_kernel.dylib         0x00007fff8530ae6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8f7aef08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff8f7b1fb9 start_wqthread + 13
    Thread 20:
    0   libsystem_kernel.dylib         0x00007fff8530ae6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8f7aef08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff8f7b1fb9 start_wqthread + 13
    Thread 21:
    0   libsystem_kernel.dylib         0x00007fff8530ae6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8f7aef08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff8f7b1fb9 start_wqthread + 13
    Thread 22:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib         0x00007fff8530a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8f7afc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8cced106 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore       0x00007fff8ccecc25 JSC::BlockAllocator::blockFreeingThreadMain() + 117
    4   com.apple.JavaScriptCore       0x00007fff8cce1f4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 23:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8530a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8f7afc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8cced727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff8cced5b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8cce1f4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 24:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8530a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8f7afc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8cced727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff8cced5b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8cce1f4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 25:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8530a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8f7afc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8cced727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff8cced5b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8cce1f4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 26:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8530a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8f7afc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8cced727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff8cced5b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8cce1f4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 27:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8530a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8f7afc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8cced727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff8cced5b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8cce1f4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 28:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8530a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8f7afc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8cced727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff8cced5b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8cce1f4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x000000011c283108  rcx: 0x0000000115f7f7a8  rdx: 0x000000011c283108
      rdi: 0x000000011c373000  rsi: 0x0000000000000000  rbp: 0x00007fff50533fe0  rsp: 0x00007fff50533fe0
       r8: 0x8ef87693e9c0f76e   r9: 0x9af87692e670282b  r10: 0x1400000000087dc5  r11: 0x8ef8096c9c866c7e
      r12: 0x00006000008310e0  r13: 0x000000010fa6c548  r14: 0x00007fff7547f9a8  r15: 0x00000000000000a3
      rip: 0x00007fff8ec589a9  rfl: 0x0000000000010206  cr2: 0x000000011c373000
    Logical CPU:     0
    Error Code:      0x00000006
    Trap Number:     14
    Binary Images:
           0x10f6ca000 -        0x10f9bcfff  com.apple.mail (7.3 - 1878.6) <84C51E40-00C5-3710-8A99-04A0F6D078F5> /Applications/Mail.app/Contents/MacOS/Mail
           0x10fba3000 -        0x10fbaefff  com.apple.Notes.iaplugin (2.0 - 284) <BF5A1CB0-1040-3781-B19B-C7C4C864DFEC> /System/Library/InternetAccounts/Notes.iaplugin/Contents/MacOS/Notes
           0x10fbdf000 -        0x10fbebff7  com.apple.calendar.iaplugin (7.0 - 1366) <C5D4A563-A116-3442-98A9-D71B17F1E211> /System/Library/InternetAccounts/Calendar.iaplugin/Contents/MacOS/Calendar
           0x10fbf4000 -        0x10fc00ff7  com.apple.reminders.iaplugin (7.0 - 1366) <746ABED7-9075-34FA-B938-19D19FAF06B9> /System/Library/InternetAccounts/Reminders.iaplugin/Contents/MacOS/Reminders
           0x10fd09000 -        0x10fd0affa +cl_kernels (???) <A72E8C15-79F0-4DED-9C67-8AC3F910D6DC> cl_kernels
           0x111997000 -        0x11199afff  libspindump.dylib (161.2) <E16E9BFB-8F34-366F-BE10-48993F5843BC> /usr/lib/libspindump.dylib
           0x113d30000 -        0x113d37fff  com.apple.SyncedDefaults (1.3 - 91.30.1) <26F0AD10-86CC-31A4-899C-097269680E05> /System/Library/PrivateFrameworks/SyncedDefaults.framework/SyncedDefaults
           0x114044000 -        0x114045fff  com.apple.AddressBook.LocalSourceBundle (8.0 - 1371.2) <E63CFFBD-3CC0-329C-BB89-17996C9F75E4> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
           0x114058000 -        0x11405cfff  com.apple.DirectoryServicesSource (8.0 - 1371.2) <BDB90569-EC4F-379E-948A-C354C9467E86> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
           0x115971000 -        0x115973fff  apop.so (170.1) <97DD24EE-D5F4-34EB-B521-D7BA883D2606> /usr/lib/sasl2/apop.so
           0x115977000 -        0x115987ff7  dhx.so (170.1) <E4299F4A-F42C-397A-A306-58161EFD7686> /usr/lib/sasl2/dhx.so
           0x115993000 -        0x11599bfff  digestmd5WebDAV.so (170.1) <B11199EC-EF62-3592-AE51-38EBD1B6282F> /usr/lib/sasl2/digestmd5WebDAV.so
           0x1159a0000 -        0x1159a2fff  libanonymous.2.so (170) <D1297C21-A57B-311E-9006-C3FB8689849A> /usr/lib/sasl2/libanonymous.2.so
           0x1159a9000 -        0x1159abfff  libcrammd5.2.so (170) <940A42FC-C634-354E-AD74-691CD90A1427> /usr/lib/sasl2/libcrammd5.2.so
           0x1159b0000 -        0x1159b8ff7  libdigestmd5.2.so (170) <122C0383-F9B2-34D1-89AF-D317BC4D5164> /usr/lib/sasl2/libdigestmd5.2.so
           0x1159bd000 -        0x1159c1fff  libgssapiv2.2.so (170) <AA58D85E-916C-3B0B-959A-DCC58497D0F2> /usr/lib/sasl2/libgssapiv2.2.so
           0x1159c6000 -        0x1159c8fff  login.so (170) <7D801D4E-A1A4-32FC-BF2E-9F25DB902523> /usr/lib/sasl2/login.so
           0x1159cc000 -        0x1159d1fff  libntlm.so (170) <18693B29-154F-339C-A329-4C42A43F6428> /usr/lib/sasl2/libntlm.so
           0x1159d6000 -        0x1159ddfff  libotp.2.so (170) <D1C70F92-1C75-340B-AD53-0C2CD79144FF> /usr/lib/sasl2/libotp.2.so
           0x1159e6000 -        0x1159e8fff  libplain.2.so (170) <E9C3B22A-5958-3869-B778-55948D1EC2B7> /usr/lib/sasl2/libplain.2.so
           0x1159ec000 -        0x1159f0ffd  libpps.so (170.1) <C7604F07-E966-33F7-8727-93F000CBA92F> /usr/lib/sasl2/libpps.so
           0x1159f7000 -        0x1159fafff  mschapv2.so (170.1) <C79F63BB-E66D-3552-9C4C-2D3EB14CEE01> /usr/lib/sasl2/mschapv2.so
           0x1159ff000 -        0x115a27ff6  com.apple.DirectoryService.PasswordServerFramework (10.9 - 36) <C36B818F-C1FE-3F3F-A01C-F4613F570D4D> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
           0x115a58000 -        0x115a5afff  pwauxprop.so (400.1) <B95FA3F5-0EE9-335E-BBC7-FDEDEB7F18F0> /usr/lib/sasl2/pwauxprop.so
           0x115a5f000 -        0x115a61fff  shadow_auxprop.so (170.1) <E02127CB-F9C0-3E3B-ABBB-473EC0CB6DE7> /usr/lib/sasl2/shadow_auxprop.so
           0x115a66000 -        0x115a68fff  smb_nt.so (170.1) <B508FD03-CE31-3B93-91D7-440BEDAD9581> /usr/lib/sasl2/smb_nt.so
           0x115a6d000 -        0x115a6ffff  smb_ntlmv2.so (170.1) <938D40AF-BEB3-3F55-B409-C84E3C2886FD> /usr/lib/sasl2/smb_ntlmv2.so
           0x11611a000 -        0x11611aff6 +cl_kernels (???) <2F7A6D46-E7D1-473F-88AF-D79337614301> cl_kernels
           0x116120000 -        0x116121fe2 +cl_kernels (???) <61E6B6D6-2A2E-4CF0-8BF5-F1337427C6F8> cl_kernels
           0x11612a000 -        0x11612bff9 +cl_kernels (???) <631959F5-8590-4EEF-8839-546AD88CFE23> cl_kernels
           0x11613d000 -        0x11613dfe7 +cl_kernels (???) <3362B985-4C58-41FC-9D88-5A12F09590BA> cl_kernels
           0x116142000 -        0x116143fef +cl_kernels (???) <0CE4F291-DF4B-4C41-9F78-4B82F0AD3FEE> cl_kernels
           0x11614b000 -        0x11614bffd +cl_kernels (???) <53F40B9A-61A6-4779-B32F-7A6273CDE82D> cl_kernels
           0x11614f000 -        0x11614ffff +cl_kernels (???) <859328A3-27E3-4910-9C00-C37E6B944B52> cl_kernels
           0x1161e1000 -        0x1161e2fee +cl_kernels (???) <EC89AF23-8B67-4251-8CD9-37CBEE16E752> cl_kernels
           0x11644e000 -        0x116534fef  unorm8_bgra.dylib (2.3.58) <280D6FDD-8CA5-36EC-9EA1-D7DC09598E20> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x1165f9000 -        0x1166defe7  unorm8_argb.dylib (2.3.58) <7B4A2580-C169-3ABC-8F62-B766914C59DD> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_argb.dylib
           0x116720000 -        0x116800ff7  unorm8_rgba.dylib (2.3.58) <8252DC3E-7434-34C6-B4B9-CFD59B923D12> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_rgba.dylib
           0x116c6b000 -        0x116c6bfeb +cl_kernels (???) <E9C54640-61CA-4550-B708-95E427DD4A0E> cl_kernels
           0x116d70000 -        0x116d71fe4 +cl_kernels (???) <2C33F03C-8EC6-4468-86FA-DFF86930A4B4> cl_kernels
           0x116ddd000 -        0x116ddefe3 +cl_kernels (???) <5326C2B5-0810-4822-9248-FEA10AF8C60F> cl_kernels
           0x116eb0000 -        0x116eb0fe3 +cl_kernels (???) <A08B208F-058B-43B1-AE00-230E64EDC009> cl_kernels
           0x116ee9000 -        0x116eeaff0 +cl_kernels (???) <41ACDB97-728C-4BBF-8686-6419DB20F0A1> cl_kernels
           0x116f09000 -        0x116f0aff4 +cl_kernels (???) <ED0FF59F-48E9-429E-AB8C-5E21F7CF2F8C> cl_kernels
           0x117289000 -        0x117289fec +cl_kernels (???) <916BBE3D-D5EE-4F55-B89D-8C2526435531> cl_kernels
           0x117349000 -        0x11734afeb +cl_kernels (???) <DC3386B3-2BE2-4562-B58B-8E44454708C4> cl_kernels
           0x11734f000 -        0x117350ffa +cl_kernels (???) <D8B4DDBF-5F91-40DF-ABF6-52F312B1EE7A> cl_kernels
           0x117355000 -        0x117356fe6 +cl_kernels (???) <5A439907-2C3F-4CF3-8F43-52FA7E3E6B7C> cl_kernels
           0x11735a000 -        0x11735aff3 +cl_kernels (???) <B4759B96-32F6-4F1D-85DF-095E368B2431> cl_kernels
           0x117c3f000 -        0x117c43fff  com.apple.google.iaplugin (2.1 - 210) <28AA2815-EB62-347A-B7F6-8F06AB25EBAB> /System/Library/InternetAccounts/Google.iaplugin/Contents/MacOS/Google
           0x117ead000 -        0x117eafff7  com.apple.qq.iaplugin (1.1 - 110) <165AD1AD-7191-3A9B-A761-988DC0AB2114> /System/Library/InternetAccounts/QQ.iaplugin/Contents/MacOS/QQ
           0x117eb4000 -        0x117ebbfff  com.apple.twitter.iaplugin (1.1 - 110) <93EBF687-26AC-3296-938D-61E07B438599> /System/Library/InternetAccounts/TwitterPlugin.iaplugin/Contents/MacOS/TwitterP lugin
           0x117ec4000 -        0x117ef9fff  com.apple.sociald.Social (87 - 87) <25F8FA83-E8DB-3082-93AC-0868A7B46607> /System/Library/Frameworks/Social.framework/Versions/A/Social
           0x117f35000 -        0x117f80ff7  com.apple.accounts.AccountsDaemon (113 - 113) <248F6C14-DDEA-3E8F-B016-E760E9B1E599> /System/Library/PrivateFrameworks/AccountsDaemon.framework/Versions/A/AccountsD aemon
           0x117faf000 -        0x117fb7ff7  com.apple.xpcobjects (103 - 103) <268F4950-61A2-3A14-9697-C121E1798D18> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
           0x117fc9000 -        0x117fcefff  com.apple.tencentweibo.iaplugin (1.1 - 110) <E81524DB-B266-3056-A69E-94B4F86B58CB> /System/Library/InternetAccounts/TencentWeibo.iaplugin/Contents/MacOS/TencentWe ibo
           0x117fd5000 -        0x117fdafff  com.apple.osxserver.iaplugin (2.1 - 210) <0EE1331E-8734-3A26-9B93-3CE35D61CA74> /System/Library/InternetAccounts/OSXServer.iaplugin/Contents/MacOS/OSXServer
           0x117fe2000 -        0x117fe3ffe  libACSClient.dylib (65) <B068CA41-5A0E-31F9-AFB3-6194620B983D> /usr/lib/libACSClient.dylib
           0x117fe8000 -        0x117febff7  com.apple.yahoo.iaplugin (2.1 - 210) <AA361E32-4E61-30BE-BFB5-57D97C93DAA6> /System/Library/InternetAccounts/Yahoo.iaplugin/Contents/MacOS/Yahoo
           0x117ff1000 -        0x117ff9fff  com.apple.facebook.iaplugin (1.1 - 110) <CDE70454-4A46-387C-8EBD-D9566359E558> /System/Library/InternetAccounts/Facebook.iaplugin/Contents/MacOS/Facebook
           0x118003000 -        0x118005ff7  com.apple.126.iaplugin (1.1 - 110) <6C8CD06A-0779-3D6E-A0C4-21C298557074> /System/Library/InternetAccounts/126.iaplugin/Contents/MacOS/126
           0x11800a000 -        0x118010fff  com.apple.tudou.iaplugin (1.1 - 110) <73468E5A-3303-3110-8660-E46CF3E92F89> /System/Library/InternetAccounts/Tudou.iaplugin/Contents/MacOS/Tudou
           0x118019000 -        0x118023ff7  com.apple.flickr.iaplugin (1.1 - 110) <B178A6C4-369F-3A5C-95A8-96EEDD58DCA6> /System/Library/InternetAccounts/Flickr.iaplugin/Contents/MacOS/Flickr
           0x11802e000 -        0x118030ff7  com.apple.aol.iaplugin (2.1 - 210) <45BC8C0E-A0CF-3695-B612-9ACDA2C98A42> /System/Library/InternetAccounts/AOL.iaplugin/Contents/MacOS/AOL
           0x118035000 -        0x11803bfff  com.apple.vimeo.iaplugin (1.1 - 110) <FD922DDC-6D4A-3B76-9AB2-489C532241EA> /System/Library/InternetAccounts/Vimeo.iaplugin/Contents/MacOS/Vimeo
           0x118044000 -        0x118046ff7  com.apple.163.iaplugin (1.1 - 110) <2B71CC0B-6C16-399E-9758-D1E2A0A689C5> /System/Library/InternetAccounts/163.iaplugin/Contents/MacOS/163
           0x11804b000 -        0x118051ff7  com.apple.youku.iaplugin (1.1 - 110) <C8ED7EFB-F2D9-376B-95DE-7725466F8986> /System/Library/InternetAccounts/Youku.iaplugin/Contents/MacOS/Youku
           0x11805a000 -        0x118079ff7  com.apple.icloud.iaplugin (426 - 460) <F6012E71-1AC7-3B16-81AB-AA5FDC55D8F9> /System/Library/InternetAccounts/iCloud.iaplugin/Contents/MacOS/iCloud
           0x118091000 -        0x118117fff  com.apple.AOSUI (1.2 - 273) <92D761D5-1ABC-3A29-9306-018570EF6005> /System/Library/PrivateFrameworks/AOSUI.framework/Versions/A/AOSUI
           0x118187000 -        0x11818ffff  com.apple.exchange.iaplugin (2.1 - 210) <37CA9806-DE80-3399-8B36-179AB6455B3F> /System/Library/InternetAccounts/Exchange.iaplugin/Contents/MacOS/Exchange
           0x118199000 -        0x1181a1fff  com.apple.linkedin.iaplugin (1.1 - 110) <B0EF0D29-E605-36F0-9CEA-70AF9BCF28CA> /System/Library/InternetAccounts/LinkedIn.iaplugin/Contents/MacOS/LinkedIn
           0x1181ab000 -        0x1181b1ff7  com.apple.weibo.iaplugin (1.1 - 110) <C405B6A9-FF5B-3044-9E84-3C5C00622711> /System/Library/InternetAccounts/Weibo.iaplugin/Contents/MacOS/Weibo
           0x11864a000 -        0x11864bfe6 +cl_kernels (???) <C069D7B4-EABD-4446-8DDA-98E3E4F57024> cl_kernels
           0x118924000 -        0x11892cfff  com.apple.contacts.iaplugin (8.0 - 1371.2) <3264DC1C-2056-3741-9B7E-D28275D17751> /System/Library/InternetAccounts/AddressBook.iaplugin/Contents/MacOS/AddressBoo k
           0x11b8c8000 -        0x11b914ff6  com.apple.AddressBook.CardDAVPlugin (10.9 - 424) <15AC9317-8E7D-3DC3-A68F-89C546648E25> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
        0x7fff665c0000 -     0x7fff665f3817  dyld (239.4) <7AD43B9B-5CEA-3C7E-9836-A06909F9CA56> /usr/lib/dyld
        0x7fff83749000 -     0x7fff8374aff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8374b000 -     0x7fff837baff1  com.apple.ApplicationServices.ATS (360 - 363.3) <546E89D9-2AE7-3111-B2B8-2366650D22F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff837bb000 -     0x7fff837c6fff  libkxld.dylib (2422.115.4) <3C678B75-F7C5-3DBB-8DBD-48483AD54D5C> /usr/lib/system/libkxld.dylib
        0x7fff837c7000 -     0x7fff837f6ff7  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <404369C0-ED9F-3010-8D2F-BC55285F7808> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff837f7000 -     0x7fff837f9fff  libCVMSPluginSupport.dylib (9.6.1) <FB37F4C4-1E84-3349-BB03-92CA0A5F6837> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff837fa000 -     0x7fff837fafff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff837fb000 -     0x7fff83805ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff83806000 -     0x7fff8383bffc  com.apple.LDAPFramework (2.4.28 - 194.5) <4ADD0595-25B9-3F09-897E-3FB790AD2C5A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff83855000 -     0x7fff8385afff  com.apple.NetFSServer (2.0 - 1) <9B7BAA23-4D4D-30A2-8538-DFD3B1E347A6> /System/Library/PrivateFrameworks/NetFSServer.framework/Versions/A/NetFSServer
        0x7fff8385b000 -     0x7fff83c3cffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff83c3d000 -     0x7fff83df5ffb  libicucore.A.dylib (511.35) <6F097DA7-147C-32A1-93D2-728A64CF0DC2> /usr/lib/libicucore.A.dylib
        0x7fff83df6000 -     0x7fff83e0fff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff83e10000 -     0x7fff83e34ff7  libJPEG.dylib (1044) <BE0ED4E1-F7FC-3038-86D3-0456DD173FCB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff83ecc000 -     0x7fff83f1dff7  com.apple.audio.CoreAudio (4.2.1 - 4.2.1) <BE13E840-FB45-3BC2-BCF5-031629754FD5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff83f1e000 -     0x7fff83f27ff7  com.apple.MailService (7.3 - 1878.6) <9D8CEFF2-6ABD-3654-B70D-D878BB61EBD3> /System/Library/PrivateFrameworks/MailService.framework/Versions/A/MailService
        0x7fff83f28000 -     0x7fff83f28ffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff83f29000 -     0x7fff83f29fff  com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff83f2a000 -     0x7fff83f2bffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
        0x7fff83f54000 -     0x7fff83fb1fff  com.apple.imfoundation (10.0 - 1000) <122D84B9-871D-3885-9D8D-840CD529028F> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
        0x7fff83fb2000 -     0x7fff84083ff1  com.apple.DiskImagesFramework (10.9 - 371.1) <DCCAADEC-35D5-3968-8B39-358ACC56ADC4> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff8408b000 -     0x7fff840c7ff7  com.apple.ids (10.0 - 1000) <632F7192-0399-34C8-B6BB-463D2F4370E0> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
        0x7fff840c8000 -     0x7fff840f8fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff840f9000 -     0x7fff84103ff7  com.apple.AppSandbox (3.0 - 1) <9F27DC25-C566-3AEF-92D3-DCFE7836916D> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff84104000 -     0x7fff8414dfff  com.apple.CoreMedia (1.0 - 1273.54) <CAB7303A-9AB2-317A-99C3-BEAA8AE8764B> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff8414e000 -     0x7fff84183ffb  com.apple.datadetectors (5.0 - 246.0) <1C4C33FE-F364-3DBA-A1BC-4A53E594CFD3> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
        0x7fff84184000 -     0x7fff84184fff  com.apple.SafariDAVNotifier (1.1.1 - 1) <6FD70177-7044-3EFE-905F-08F1D2D40ECA> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
        0x7fff84185000 -     0x7fff84273fff  libJP2.dylib (1044) <BE5FF765-5ECE-38B5-BF5D-BE806F5CAD18> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff84279000 -     0x7fff84294ff7  libPng.dylib (1044) <151BA92C-6E7C-3B69-8024-FDD1E2C89DD3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff84295000 -     0x7fff84295ff7  com.apple.frameworks.SleepServices (1.1 - 1.1) <4D9C44FF-5403-3372-A90E-CBF2A34D7CE7> /System/Library/PrivateFrameworks/SleepServices.framework/Versions/A/SleepServi ces
        0x7fff84296000 -     0x7fff84346ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff84396000 -     0x7fff843d6fff  com.apple.PassKit (1.0 - 1) <CE4A0FC6-6E65-38AC-BC8E-74821D713B43> /System/Library/PrivateFrameworks/PassKit.framework/Versions/A/PassKit
        0x7fff843d7000 -     0x7fff843d7ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
        0x7fff843d8000 -     0x7fff843dcff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
        0x7fff843dd000 -     0x7fff8442efff  com.apple.QuickLookFramework (5.0 - 622.7) <17685CEC-C94B-3F83-ADE1-B24840B35E44> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8442f000 -     0x7fff84447ff7  com.apple.GenerationalStorage (2.0 - 160.3) <64749B08-0212-3AC8-9B49-73D662B09304> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff84448000 -     0x7fff844bffff  com.apple.CoreServices.OSServices (600.4 - 600.4) <C63562F5-6DF5-3EE9-8897-FF61A44C8251> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff844c0000 -     0x7fff84520fff  com.apple.ISSupport (1.9.9 - 57) <E1E343D7-222C-3458-9D1F-FC600B7F1C50> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff84521000 -     0x7fff84525fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
        0x7fff84526000 -     0x7fff84535ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff84536000 -     0x7fff84537fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
        0x7fff84538000 -     0x7fff8457efff  com.apple.DiskManagement (6.1 - 744.1) <3DD4CD10-4476-334C-8C4B-991A85AAC272> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
        0x7fff8457f000 -     0x7fff8460bff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8460c000 -     0x7fff8460ffff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff84610000 -     0x7fff84618ff7  com.apple.AppleSRP (5.0 - 1) <ABC7F088-1FD5-3768-B9F3-847F355E90B3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff84619000 -     0x7fff84619fff  com.apple.AOSMigrate (1.0 - 1) <ABA8F3F2-BC96-3F89-AAF4-1AA459A0BCBD> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
        0x7fff84659000 -     0x7fff84743fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
        0x7fff84744000 -     0x7fff84c67fff  com.apple.QuartzComposer (5.1 - 319) <8B90921F-911B-3240-A1D5-3C084F3E6A36> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff84c68000 -     0x7fff84c7fffa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff84c80000 -     0x7fff84ce5ffb  com.apple.Heimdal (4.0 - 2.0) <F34D6627-9F80-3823-8B57-DB629307DF87> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff84ce6000 -     0x7fff84d12ff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <6FD03EF6-32B6-397D-B9D7-D68E89A462F5> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
        0x7fff84d13000 -     0x7fff84d1fff7  com.apple.KerberosHelper (4.0 - 1.0) <6D64703B-D7A3-3EF7-89AB-16F7F89333FC> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
        0x7fff84d20000 -     0x7fff84d32ff7  com.apple.MultitouchSupport.framework (245.13.1 - 245.13.1) <38262B92-C63F-35A0-997D-AD2EBF2F8338> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff84dc0000 -     0x7fff84f30ff4  com.apple.CFNetwork (673.4 - 673.4) <F3BF6020-99BE-3844-A7B8-352B93AD02F3> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff84f31000 -     0x7fff84f3affb  libsystem_notify.dylib (121.20.1) <9B34B4FE-F5AD-3F09-A5F0-46AFF3571323> /usr/lib/system/libsystem_notify.dylib
        0x7fff84f3b000 -     0x7fff84f7bff7  com.apple.CalDAV (7.0 - 155.2) <B96DAB4A-7431-3FD2-971B-726A67F6E004> /System/Library/PrivateFrameworks/CalDAV.framework/Versions/A/CalDAV
        0x7fff84f7c000 -     0x7fff84f7cfff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff84f7d000 -     0x7fff84fbefff  com.apple.PerformanceAnalysis (1.47 - 47) <7B73DFF4-75DB-3403-80D2-0F3FE48764C3> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff84fc5000 -     0x7fff8508fff7  com.apple.LaunchServices (572.28 - 572.28) <FC72C089-A069-3374-B80A-E041AF149F24> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff85090000 -     0x7fff852f4ffd  com.apple.security (7.0 - 55471.14.18) <83A9E8C8-06A1-3F6D-8514-C35CD0DBD370> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff852f5000 -     0x7fff85311ff7  libsystem_kernel.dylib (2422.115.4) <9EDE872E-2A9E-3A78-8E1D-AB790794A098> /usr/lib/system/libsystem_kernel.dylib
        0x7fff85bd6000 -     0x7fff85c25ff7  com.apple.framework.internetaccounts (2.1 - 210) <D7175985-03A5-315B-B788-FBDC0019B0EA> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff85c61000 -     0x7fff85ccdfff  com.apple.framework.IOKit (2.0.1 - 907.100.13) <057FDBA3-56D6-3903-8C0B-849214BF1985> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff85d0d000 -     0x7fff85d21fff  com.apple.aps.framework (4.0 - 4.0) <2D42DCDD-055E-3EE1-97F8-FC447B495D3E> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff8647f000 -     0x7fff86482ff7  com.apple.LoginUICore (3.0 - 3.0) <1ECBDA90-D6ED-3333-83EB-9C8232DFAD7C> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff86516000 -     0x7fff865e1fff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff865e2000 -     0x7fff865e5fff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff865e6000 -     0x7fff8682eff7  com.apple.CoreData (107 - 481.3) <E78734AA-E3D0-33CB-A014-620BBCAB2E96> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8682f000 -     0x7fff86830fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
        0x7fff86831000 -     0x7fff86836fff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff86837000 -     0x7fff8683afff  com.apple.AppleSystemInfo (3.0 - 3.0) <61FE171D-3D88-313F-A832-280AEC8F4AB7> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff86bd4000 -     0x7fff86db9fff  com.apple.CoreFoundation (6.9 - 855.17) <729BD6DA-1F63-3E72-A148-26F21EBF52BB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff86e3f000 -     0x7fff86e5cff7  com.apple.framework.Apple80211 (9.4 - 940.60) <043C7CFD-B57B-3F9D-B0FE-CA4B97C43968> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff86e6d000 -     0x7fff86e7ffff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff86e80000 -     0x7fff87114ff7  com.apple.RawCamera.bundle (5.07 - 760) <EA94F148-975D-32D7-8A20-B06017E5793B> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff87115000 -     0x7fff87131fff  com.apple.frameworks.preferencepanes (16.0 - 16.0) <059E99D8-67C2-3B59-B5E7-850DD7A92D75> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff87132000 -     0x7fff87160ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff87161000 -     0x7fff872fdff3  com.apple.QuartzCore (1.8 - 332.3) <72003E51-1287-395B-BCBC-331597D45C5E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff872fe000 -     0x7fff87307ff7  libcldcpuengine.dylib (2.3.58) <E3A84FEC-4060-39C2-A469-159A443D2B6D> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
        0x7fff87308000 -     0x7fff87322fff  libdispatch.dylib (339.92.1) <C4E4A18D-3C3B-3C9C-8709-A4270D998DE7> /usr/lib/system/libdispatch.dylib
        0x7fff87323000 -     0x7fff87325fff  com.apple.marco (10.0 - 1000) <FC7EF8C7-5EDF-3720-BAEC-281F12A7A3F8> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
        0x7fff87347000 -     0x7fff87349ff7  com.apple.securityhi (9.0 - 55005) <18C42525-688C-3D47-B9C9-1E0F8F58FA64> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8734a000 -     0x7fff8761bff4  com.apple.CoreImage (9.4.0) <2C636ECD-0F1A-357C-9EFF-0452476FDDF5> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8761c000 -     0x7fff8761cffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <68B21135-55A6-3563-A3D6-3E692A7DEB7F> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8761d000 -     0x7fff87624ff8  liblaunch.dylib (842.92.1) <A40A0C7B-3216-39B4-8AE0-B5D3BAF1DA8A> /usr/lib/system/liblaunch.dylib
        0x7fff87625000 -     0x7fff8764eff7  libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib
        0x7fff8764f000 -     0x7fff87658fff  com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <383FB557-E88E-3239-82B8-15F9F885B702> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff87659000 -     0x7fff87788fef  com.apple.MediaControlSender (2.0 - 200.34.4) <FC24EC8D-2E46-3F76-AF63-749F30857B96> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff87789000 -     0x7fff877a2ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff877a5000 -     0x7fff877afff7  libcsfde.dylib (380.70.2) <3ACB87D7-A81C-3C45-B648-AD27F1B9D841> /usr/lib/libcsfde.dylib
        0x7fff877b0000 -     0x7fff87a41ff7  com.apple.AOSKit (1.06 - 176) <35525B2F-B02F-31FD-A3B2-FD6AE6D32C11> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff87a42000 -     0x7fff87a4bffd  com.apple.CommonAuth (4.0 - 2.0) <32BA436F-6319-3A0B-B5D2-2EB75FF36B5B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff87a4c000 -     0x7fff87a4efff  com.apple.SecCodeWrapper (3.0 - 1) <DE7CA981-2B8B-34AC-845D-06D5C8F10441> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff87a95000 -     0x7fff87a95fff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff87a96000 -     0x7fff87a9eff3  libCGCMS.A.dylib (599.35.4) <67AD122A-B8DA-3C05-8B8C-1939F5064FAE> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff87a9f000 -     0x7fff87aa4fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
        0x7fff87aa5000 -     0x7fff87addff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff87ade000 -     0x7fff87ae9ff7  com.apple.DirectoryService.Framework (10.9 - 173.90.1) <22A0C230-CF1E-38F5-A947-5ACDAEEE0DB6> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff87aea000 -     0x7fff87b87fff  com.apple.imcore (10.0 - 1000) <DF924E35-74AB-389C-9279-1828518218F8> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
        0x7fff87bf4000 -     0x7fff87bf8fff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff87bf9000 -     0x7fff87c14ff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib
        0x7fff87c15000 -     0x7fff87d06ff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
        0x7fff87d07000 -     0x7fff87d30fff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8810d000 -     0x7fff88139fff  com.apple.CoreServicesInternal (184.9 - 184.9) <4DEA54F9-81D6-3EDB-AA3C-1F9C497B3379> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8813a000 -     0x7fff881c3ff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
        0x7fff881c4000 -     0x7fff881c5ff7  libodfde.dylib (20) <C00A4EBA-44BC-3C53-BFD0-819B03FFD462> /usr/lib/libodfde.dylib
        0x7fff881c6000 -     0x7fff88297fff  com.apple.QuickLookUIFramework (5.0 - 622.7) <13841701-34C2-353D-868D-3E08D020C90F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff88298000 -     0x7fff8829cfff  com.apple.FindMyMac (2.1 - 2.1) <57D589E9-B726-3519-BE99-1B38F7737ED6> /System/Library/PrivateFrameworks/FindMyMac.framework/Versions/A/FindMyMac
        0x7fff8829d000 -     0x7fff8845bfff  com.apple.GeoServices (1.0 - 702.15.12) <5A4D463F-689F-3822-BF26-A19D51503019> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff8845c000 -     0x7fff8845eff7  com.apple.diagnosticlogcollection (10.0 - 1000) <5CA6D8A2-DEA6-33C3-91BC-F3B076C0500B> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/Versions/A/ DiagnosticLogCollection
        0x7fff8845f000 -     0x7fff8846afff  libGL.dylib (9.6.1) <4B65BF9F-F34A-3CD1-94E8-DB26DAA0A59D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8846b000 -     0x7fff884b3ff7  com.apple.ExchangeWebServices (4.0 - 193) <867EDAF0-5863-397E-BA75-855878D68949> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
        0x7fff884b4000 -     0x7fff884e5ff7  libtidy.A.dylib (15.12) <BF757E3C-733A-3B6B-809A-A3949D46466E> /usr/lib/libtidy.A.dylib
        0x7fff884e6000 -     0x7fff884e8ff3  libsystem_configuration.dylib (596.15) <4998CB6A-9D54-390A-9F57-5D1AC53C135C> /usr/lib/system/libsystem_configuration.dylib
        0x7fff884eb000 -     0x7fff8850ffff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
        0x7fff8858f000 -     0x7fff88592fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff88593000 -     0x7fff885b7fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <39C08086-9866-372F-9420-81F5689149DF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff885b8000 -     0x7fff885dafff  com.apple.framework.fa

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Click the Clear Display icon in the toolbar. Then take an action that isn't working the way you expect. Select any lines that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name or email address, may appear in the log. Anonymize before posting.

  • I want to send a letter to apple

    Hi ! My name is Mohammed Lasker. I am from SWEDEN. I have one question? I know everything is possible.
    If you can make a one program for iphone and ipad.
    Just like that I want to send a massage to my friend at the morning 05;00 clock but i dont want to weakup from sleep at the morning.
    Can i write it when i want but it will be one question when i want to send after i will deside date and time .
    The right time the messege will be send.
    It will be very helpful for everyone use the iphone and ipad, i use mostly everything from Apple.
    If you dont understand my question plese just call me i can discous more becouse i am not so good in english.
    Have a nice day.
    Mohammed Lasker
    <Personal Information Edited by Host>

    This is an open forum used primarily by other users. You should NEVER post personal contact information on a platform such as this (unless you like SPAM and compromising your privacy).
    You can submit feedback to Apple here: http://www.apple.com/feedback/

  • I want to send 10 bit ADC from PIC via serial communicaton. i send it separetly 8 bit first then the other 2 bit. how to program in labview to capture those two packet then combine it togother

    i want to send 10 bit ADC from PIC mCu via serial communicaton.
     i send it separetly 8 bit first then the other 2 bit (2 bit --> with zero at 6 bit from LSB).
    how to program in labview to capture those two packet and then combine it together
    so i have 10 bit in lab view
    thank you

    Close, but now quite. You need to specify to the VISA Read how many bytes to read, not how many bits. Thus, the input would be 2, not 16. It's also not clear why you're trying to use the "String to Byte Array". The Type Cast will give you a number based on what data type you wired. You're basically telling it how to interpret the string. In this case we're telling it to interpret the string a 16-bit value, so we'll get a 16-bit integer. I know you said you wanted a 10-bit, but you can't have that. You'll get a 16-bit with 6 bits set to zero. Note: I did not completely understand what you said so we may need to change this slightly, but we want to get the communication and reading collection working first.
    Also, since you seem to be setting this in a loop you probably want to monitor this or to collect the data. For that you need a shift register. See attached for a modified version of your attempt. You need to set the datatype to I16 or U16 based on whether the value you get from the PIC is signed or unsigned.
    Message Edited by smercurio_fc on 05-01-2007 02:28 PM
    Attachments:
    Read PIC.vi ‏21 KB
    Read PIC.png ‏7 KB

  • Send backend PO as pdf attachment in an eMail to creator of SC

    Hello,
    I'm working on an SRM 5.5 Add-On on ERP6.0 system (one-client SRM system). Now i want to send the PO which is created in the backend vie eMail as PDF attachment to the creator/initiator of a SC.
    I already pass the SC number in field EKPO-BEDNR into the PO which works fine.
    A new output type for external sending is created as well. The standard functionality which creates the normal output to the supplier. But I want to send it to the creator of the SC.
    Where is the right place to change the receipient list of this eMail? Are there any BADIs I can use?
    Any hint would be appretiated.
    Kind regards,
    Thomas

    Hello,
    I'm working on an SRM 5.5 Add-On on ERP6.0 system (one-client SRM system). Now i want to send the PO which is created in the backend vie eMail as PDF attachment to the creator/initiator of a SC.
    I already pass the SC number in field EKPO-BEDNR into the PO which works fine.
    A new output type for external sending is created as well. The standard functionality which creates the normal output to the supplier. But I want to send it to the creator of the SC.
    Where is the right place to change the receipient list of this eMail? Are there any BADIs I can use?
    Any hint would be appretiated.
    Kind regards,
    Thomas

  • Want to send a text in BOLD via email

    Hi all,
    I want to send a text in BOLD via email,
    Right now i ma using the Function Module: SO_NEW_DOCUMENT_ATT_SEND_API1 for sending attachments via mail.
    But i do not know how i can send some text in BOLD.
    <b>****NOTE: I want the text in BOLD is in the BODY of the mail</b>
    I checked the Import and tables parameters inthat FM.But there is no option in those parameters.
    So, can any one plz help me to solve this issue.
    Thanks&Regards,
    Srikanth T
    Message was edited by:
            srikanth T
    Message was edited by:
            srikanth T

    Convert them into smartform or SAP Script from report then convert into pdf format and then send an email ...
    See the example code :
    report zemail.
    data: itcpo like itcpo,
          tab_lines like sy-tabix.
    Variables for EMAIL functionality
    data: maildata   like sodocchgi1.
    data: mailpack   like sopcklsti1 occurs 2 with header line.
    data: mailhead   like solisti1 occurs 1 with header line.
    data: mailbin    like solisti1 occurs 10 with header line.
    data: mailtxt    like solisti1 occurs 10 with header line.
    data: mailrec    like somlrec90 occurs 0  with header line.
    data: solisti1   like solisti1 occurs 0 with header line.
    perform send_form_via_email.
          FORM  SEND_FORM_VIA_EMAIL                                      *
    form  send_form_via_email.
      clear:    maildata, mailtxt, mailbin, mailpack, mailhead, mailrec.
      refresh:  mailtxt, mailbin, mailpack, mailhead, mailrec.
    Creation of the document to be sent File Name
      maildata-obj_name = 'TEST'.
    Mail Subject
      maildata-obj_descr = 'Subject'.
    Mail Contents
      mailtxt-line = 'Here is your file'.
      append mailtxt.
    Prepare Packing List
      perform prepare_packing_list.
    Set recipient - email address here!!!
      mailrec-receiver = '[email protected]'.
      mailrec-rec_type  = 'U'.
      append mailrec.
    Sending the document
      call function 'SO_NEW_DOCUMENT_ATT_SEND_API1'
           exporting
                document_data              = maildata
                put_in_outbox              = ' '
           tables
                packing_list               = mailpack
                object_header              = mailhead
                contents_bin               = mailbin
                contents_txt               = mailtxt
                receivers                  = mailrec
           exceptions
                too_many_receivers         = 1
                document_not_sent          = 2
                operation_no_authorization = 4
                others                     = 99.
    if sy-subrc = 0.
    submit rsconn01 with mode = 'INT' and return.
    endif.
    endform.
         Form  PREPARE_PACKING_LIST
    form prepare_packing_list.
      clear:    mailpack, mailbin, mailhead.
      refresh:  mailpack, mailbin, mailhead.
      describe table mailtxt lines tab_lines.
      read table mailtxt index tab_lines.
      maildata-doc_size = ( tab_lines - 1 ) * 255 + strlen( mailtxt ).
    Creation of the entry for the compressed document
      clear mailpack-transf_bin.
      mailpack-head_start = 1.
      mailpack-head_num = 0.
      mailpack-body_start = 1.
      mailpack-body_num = tab_lines.
      mailpack-doc_type = 'RAW'.
      append mailpack.
      mailhead = 'TEST.TXT'.
      append mailhead.
    File 1
      mailbin = 'This is file 1'.
      append mailbin.
      describe table mailbin lines tab_lines.
      mailpack-transf_bin = 'X'.
      mailpack-head_start = 1.
      mailpack-head_num = 1.
      mailpack-body_start = 1.
      mailpack-body_num = tab_lines.
      mailpack-doc_type = 'TXT'.
      mailpack-obj_name = 'TEST1'.
      mailpack-obj_descr = 'Subject'.
      mailpack-doc_size = tab_lines * 255.
      append mailpack.
    *File 2
      mailbin = 'This is file 2'.
      append mailbin.
      data: start type i.
      data: end type i.
      start = tab_lines + 1.
      describe table mailbin lines end.
      mailpack-transf_bin = 'X'.
      mailpack-head_start = 1.
      mailpack-head_num = 1.
      mailpack-body_start = start.
      mailpack-body_num = end.
      mailpack-doc_type = 'TXT'.
      mailpack-obj_name = 'TEST2'.
      mailpack-obj_descr = 'Subject'.
      mailpack-doc_size = tab_lines * 255.
      append mailpack.
    endform.
    With PDF Attachment:CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
    EXPORTING
    formname = 'Z_TEST'
    IMPORTING
    fm_name = v_fname.
    CALL FUNCTION v_fname
    EXPORTING
    control_parameters = x_ctrl_p
    IMPORTING
    job_output_info = x_output_data.
    CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
    format = 'PDF'
    max_linewidth = 134
    IMPORTING
    bin_filesize = v_size
    TABLES
    otf = x_output_data-otfdata
    lines = it_lines
    EXCEPTIONS
    err_max_linewidth = 1
    err_format = 2
    err_conv_not_possible = 3
    OTHERS = 4.
    CALL FUNCTION 'SX_TABLE_LINE_WIDTH_CHANGE'
    EXPORTING
    line_width_dst = 255
    TABLES
    content_in = it_lines
    content_out = it_soli
    EXCEPTIONS
    err_line_width_src_too_long = 1
    err_line_width_dst_too_long = 2
    err_conv_failed = 3
    OTHERS = 4.
    CALL FUNCTION 'FUNC_CONVERT_DATA_ODC01'
    EXPORTING
    iv_byte_mode = 'X'
    TABLES
    it_data = it_lines
    et_data = it_table.
    *-----To caluculate total number of lines of internal table
    DESCRIBE TABLE it_table LINES v_lines.
    *-----Create Message Body and Title and Description
    it_mess = 'successfully converted smartform from otf format to pdf' .
    APPEND it_mess.
    wa_doc_data-obj_name = 'smartform'.
    wa_doc_data-expiry_dat = sy-datum + 10.
    wa_doc_data-obj_descr = 'smartform'.
    wa_doc_data-sensitivty = 'F'.
    wa_doc_data-doc_size = v_lines * 255.
    APPEND it_pcklist.
    *-----PDF Attachment
    it_pcklist-transf_bin = 'X'.
    it_pcklist-head_start = 1.
    it_pcklist-head_num = 0.
    it_pcklist-body_start = 1.
    it_pcklist-doc_size = v_lines_bin * 255 .
    it_pcklist-body_num = v_lines.
    it_pcklist-doc_type = 'PDF'.
    it_pcklist-obj_name = 'smartform'.
    it_pcklist-obj_descr = 'smart_desc'.
    it_pcklist-obj_langu = 'E'.
    it_pcklist-doc_size = v_lines * 255.
    APPEND it_pcklist.
    *-----Giving the receiver email-id
    CLEAR it_receivers.
    it_receivers-receiver = [email protected]'.
    it_receivers-rec_type = 'U'.
    APPEND it_receivers.
    *-----Calling the function module to sending email
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    document_data = wa_doc_data
    put_in_outbox = 'X'
    commit_work = 'X'
    TABLES
    packing_list = it_pcklist
    contents_txt = it_mess
    contents_hex = it_table
    receivers = it_receivers
    EXCEPTIONS
    too_many_receivers = 1
    document_not_sent = 2
    document_type_not_exist = 3
    operation_no_authorization = 4
    parameter_error = 5
    x_error = 6
    enqueue_error = 7
    OTHERS = 8.

  • Mail doesn't want to send using smtp

    Very regularly (from a few times a day to once every few weeks), I have this same problem.
    If I want to send an email, mail is unable to send it using the smtp-server (smtp.telenet.be) I normally use. Nothing works but to choose another server. If I go to the preferences and delete the server I use and add it again (without changing anything), mail is all of a sudden able to use the smtp-server again.
    What's wrong? It's pretty annoying...

    These fixes have helped others, depending on the situation.
    Have an up-to-date Time Machine or other backup before attempting any major software updates or rebuilds.
    For more about backups:
    Time Machine Basics: http://support.apple.com/kb/ht1427
    Most commonly used backup methods: 
    https://discussions.apple.com/docs/DOC-3045
    Methodology to protect your data.  Backups vs. Archives.  Long-term data protection:
    https://discussions.apple.com/docs/DOC-6031
    Make sure your software is up to date.  Apple recently released a Mail update.
    Apple > Software Update...
    Try booting in Safe Mode.
              Boot and when you hear the bong hold down the Shift key.
              It will boot slowly.  Be patient.
              Login the the user account.
              Restart.
    Another fix to try:
    Shut down Mail.
    Open the Finder. From the Finder menu bar click Go > Go to Folder
    Copy and paste the following
    ~/Library/Mail/V2/MailData/
    Click Go.
    Move all "Envelope" files to your desktop.
    Restart Mail and let it convert/reindex your mailboxes.
    If this worked, Trash the Envelope files file that are on your desktop,
    if not put them back.
    Another fix:
    Open the Finder. From the Finder menu bar click Go > Go to Folder
    Copy and paste the following:
    ~/Library/Containers/com.apple.mail/Data/Library/Caches/com.apple.mail/Cache.db
    Click Go.
    Move the Cache.db file to the Trash.
    Restart your Mac and try Mail.
    You can try restoring mail from a Time Machine backup.
    Hold down the Option key and in the Finder Go > Library
    Enter Time Machine.
    Select a date before the Mavericks upgrade.
    Restore Mail.
    Advice from another thread:  https://discussions.apple.com/message/23657222#23657222

  • I want to send a present to a friend that lives in another country, How can I do?, I want to send a present to a friend that lives in another country, How can I do?

    I want to send a present, a music CD, to a friend that lives in another country(Brasil).  I've read that the presents are valid only in the Country of purchasing
    How can I do?

    She'll have connect in recovery mode to restore: iOS: Unable to update or restore
    This will give her the option to set up a new password, if done on the same computer you usually sync to.
    iPhone and iPod touch: Wrong passcode results in red disabled screen
    If you cannot remember the passcode, you will need to restore your device using the computer with which you last synced it. This allows you to reset your passcode and resync the data from the device (or restore from a backup). If you restore on a different computer that was never synced with the device, you will be able to unlock the device for use and remove the passcode, but your data will not be present. Refer to Updating and restoring iPhone, iPad and iPod touch software.

Maybe you are looking for

  • Calibrating my Monitor question

    Hello everyone I am trying to calibrate my JVC monitor i am following the instructions to a link mentioned in one of the threads i generated a color bar in finalcut and brought it to the timeline i see it on my monitor, i turned the chroma all the wa

  • CRM Survey Suit

    Try to generate URL from Survey Suit,i cant see any value in "GetFile =  ??" and "SendFile=??" This has to be in this format Get File: CRM_SVY_BSP_xxx_yyy.XML (xxx,yyy being the current CRM system name) Send File: CRM_SVY_BSP_xxx_yyy.XML (xxx,yyy bei

  • Use of remote files

    I want to fetch a XML file from a remote system, and copy this file to my local computer and use this file in my program. What is the best way for doing this. Is it FTP? What is the syntax for FTP calls in a java program?

  • Unresponsive USB 3.0 and USB Ports

    Hello, Hp, Recently I purchased a brand new USB 3.0 adapter for my front panel of my desktop computer, but also recently I noticed that one of my 2 USB 3.0 ports is faulty as it supplies power but can not operate devices. A couple days ago I also los

  • Error Message When Syncing iPhone -Contacts

    I have been using my iPhone for some time now and just recently I have had this issue with my new 16GB phone. When I put it in to sync I get the following error message: itunes could not sync contacts to the iPhone because the iPhone is disconnected.