Pdf download problem in lion

Safari can download most files ok. But, pdf downloads result in a dark blank screen and no download.  There is no problem downloading in Chrome. Repairing permissions hasn't worked

If you use Adobe Acrobat to view PDF files...
Apple Safari 5.1 and Adobe Reader/Acrobat Advisory

Similar Messages

  • Strange PDF Download problem

    We are having a difficult time getting a PDF download to work with the
              Struts framework on WLS 5.1.
              This works fine with a servlet we have in production today, but when using
              Struts, it fails every time.
              We are submitting a form that contains a date and a type, and then going to
              a back-end vendor to retrieve the PDF stream and re-stream it back to the
              user. The URL that should work is as follows:
              http://xxxx/action/viewStmt?period=mm/dd/yy&type=PDF
              When we execute this URL, the action is invoked, the correct arguments are
              obtained, the vendor is called, and the streaming is done. However, the
              browser then pops up a message saying...
              "You have chosen to download a file from this location:
              yy&type=PDF from xxxx"
              and the download fails.
              We are doing almost the exact same thing with a servlet, and no such error
              happens. I don't know if this is Struts-related or some configuration
              issue.
              Any ideas?
              Thanks,
              John
              

    it sounds like the browser wants to download a file who's ContentType
              isn't set.
              try the following:
              response.setContentType(<ENTER PROPER PDF CONTENT TYPE HERE>);
              it'll probably be something like "application/pdf" or "text/pdf"
              with Struts you'll probably have to extend the Action bean to handle
              that. just have that extended Action read the type parameter and
              interpret it.
              hope that helps
              e.j. fuhr
              "John Bauer" <[email protected]> wrote in message news:<[email protected]>...
              > We are having a difficult time getting a PDF download to work with the
              > Struts framework on WLS 5.1.
              > This works fine with a servlet we have in production today, but when using
              > Struts, it fails every time.
              >
              > We are submitting a form that contains a date and a type, and then going to
              > a back-end vendor to retrieve the PDF stream and re-stream it back to the
              > user. The URL that should work is as follows:
              >
              > http://xxxx/action/viewStmt?period=mm/dd/yy&type=PDF
              >
              > When we execute this URL, the action is invoked, the correct arguments are
              > obtained, the vendor is called, and the streaming is done. However, the
              > browser then pops up a message saying...
              >
              > "You have chosen to download a file from this location:
              >
              > yy&type=PDF from xxxx"
              >
              > and the download fails.
              >
              > We are doing almost the exact same thing with a servlet, and no such error
              > happens. I don't know if this is Struts-related or some configuration
              > issue.
              >
              > Any ideas?
              >
              > Thanks,
              > John
              

  • PDF Download on iMac Lion

    Have recently purchased an iMac (Lion) and am having trouble downloading PDF's through my hotmail email address.  Is there some setting which I have failed to set up properly in the computer in order to do this?

    Have done that but the error message comes up "can't open the file because no available application can open it". Could it be that the sender is perhaps a Windows user and my mac can't read it?  I have no problem downloading photos.

  • PDF Download Problem

    Hi,
    I have one report using Reuse_Alv_List_Display as output. After that I have to download the output to PDF.
    By using the following code I can able to download, But the Problem is I have 54 fields( total length to 900 characters) in the out put and while downloading through Spool I am getting only 17 fields in one row and remaining fields are getting in 2nd and 3rd rows and are getting overlap.
    So is there any Possibility to download to 54 Fields in PDF.If so, Please help me...
    *&      Form  USER_COMMAND
          Form for user-command for providing Pdf Functionlity.
    -->  No Import / Export Parameters.
    FORM user_command USING l_okcode LIKE sy-ucomm
                           l_selfield TYPE slis_selfield .
      CASE l_okcode.
        WHEN '&PDF'.
          g_flag = 'X'.
          PERFORM pdf_download.
      ENDCASE.
    ENDFORM.                    " USER_COMMAND
    *&      Form  PDF_DOWNLOAD
          Form for Pdf functionalty
    -->  No Import / Export Parameters
    FORM pdf_download .
      DATA l_spoolid TYPE tsp01-rqident.
    Without archiving
      DATA: params LIKE pri_params,
      days(1) TYPE n VALUE 2,
      count(3) TYPE n VALUE 1, p_file TYPE rlgrap-filename,
      valid TYPE c.
      CLEAR l_spoolid.
      CALL FUNCTION 'GET_PRINT_PARAMETERS'
        EXPORTING
          destination    = 'LOCA'
          copies         = count
          list_name      = 'TEST'
          list_text      = 'SUBMIT ... TO SAP-SPOOL'
          immediately    = 'X'
          release        = 'X'
          new_list_id    = 'X'
          expiration     = days
          line_size      = 132
          line_count     = 25
          layout         = 'X'
          sap_cover_page = 'X'
          cover_page     = 'X'
          receiver       = 'SAP*'
          department     = 'System'
          no_dialog      = ' '
        IMPORTING
          out_parameters = params
          valid          = valid.
      IF valid <> space.
        EXPORT g_flag TO MEMORY ID 'M1'.
        SUBMIT z_fi_exec_customercollection WITH s_kunnr IN s_kunnr
                                    WITH s_bukrs IN s_bukrs
                                    WITH s_budat IN s_budat
                                         TO SAP-SPOOL
        SPOOL PARAMETERS params
        WITHOUT SPOOL DYNPRO
        AND RETURN.
      ENDIF.
      DATA: lt_spooltab TYPE STANDARD TABLE OF  rsporq WITH HEADER LINE ,
        lc_rq2name LIKE tsp01-rq2name.
      CONCATENATE sy-repid+0(8)
                    sy-uname+0(3)
          INTO lc_rq2name SEPARATED BY '_'.
      CALL FUNCTION 'RSPO_FIND_SPOOL_REQUESTS'
        EXPORTING
          rq2name       = lc_rq2name
          rqowner       = sy-uname
        TABLES
          spoolrequests = lt_spooltab
        EXCEPTIONS
          no_permission = 1
          OTHERS        = 2.
      IF sy-subrc <> 0.
        WRITE:/ 'Error in Find Spool request '.
      ENDIF.
      SORT lt_spooltab DESCENDING BY rqcretime.
      READ TABLE lt_spooltab INDEX 1.
      l_spoolid = lt_spooltab-rqident.
      SUBMIT rstxpdft4 WITH spoolno EQ l_spoolid
                       WITH download EQ 'X'
                       WITH  p_file EQ p_file
                       AND RETURN.
    ENDFORM.                    " PDF_DOWNLOAD
    *&      Form  SET_PF_STATUS
          Setting Modified Pf-Status to our program.
    -->  No Import / Export Parameters.
    FORM set_pf_status USING rt_extab TYPE slis_t_extab.
      SET PF-STATUS 'ZSTANDARD_ALV_C'.
    ENDFORM.                    " SET_PF_STATUS

    Hi,
    I dont know the possibility but we can do some thing by using the hirarchial list display, reduce the field lengths where ever is unnecessary you will get it.
    Regards,
    venkat appikonda.

  • Mountain Lion download problems with Lion 10.7.5 (no VirusBarrier issue)

    I have a mid-2009 Macbook Pro. From the factory it came with Snow Leopard but has since been upgraded to Lion OS X 10.7.5. I do not have VirusBarrier, I am writing from a recently clean-installed Lion.
    I have now been troubleshooting my Mac for several days. When I wrote first, I had an issue with Safari having been damaged and so I wasn't able to reinstall Lion - but after a certain extremely helpful community member I finally succeeded in installing Lion.
    But the issues with the App Store still persist. All my Mountain Lion downloads fail, getting the error message "can't verify, might be corrupted" what many here have also been getting. However, most solutions were related to VirusBarrier (which I don't have), or /var/folders errors (Console does not show any var-related errors).
    So if it's not a var-related issue, or related to firewalls or virus softwares (I have disabled the Firewall and I have no virus software installed), what could it be?
    When the download and install of ML failed last time, Console showed the following messages:
    11/30/12 11:54:44.617 AM com.apple.SecurityServer: Failed to authorize right 'system.install.app-store-software' by client '/System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/Resources/in stalld' [235] for authorization created by '/System/Library/CoreServices/Software Update.app' [567]
    11/30/12 11:54:44.617 AM com.apple.SecurityServer: Failed to authorize right 'system.install.software' by client '/System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/Resources/in stalld' [235] for authorization created by '/System/Library/CoreServices/Software Update.app' [567]
    11/30/12 12:25:49.252 PM authexec: executing /Applications/Install OS X Mountain Lion.app/Contents/Resources/InstallAssistantTool
    11/30/12 12:26:17.178 PM Install OS X Mountain Lion: Stopped operation queue with Error Domain=IAErrorDomain Code=101 "This copy of the Install OS X Mountain Lion application can't be verified. It may have been corrupted or tampered with during downloading." UserInfo=0x7f93aad17ee0 {IAErrorAlternateAction=App Store, NSLocalizedRecoveryOptions=(
        Cancel,
        "App Store\U2026"
    ), NSLocalizedRecoverySuggestion=Delete this copy of the application, and go to the Purchases page of the Mac App Store to download a new copy., NSRecoveryAttempter=<IARecoveryAttempter: 0x7f93aab1e1d0>, NSLocalizedDescription=This copy of the Install OS X Mountain Lion application can't be verified. It may have been corrupted or tampered with during downloading.}
    ...and a bit later, upon re-starting the download:
    11/30/12 12:29:40.515 PM com.apple.SecurityServer: Failed to authorize right 'system.install.apple-software' by client '/System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/Resources/in stalld' [817] for authorization created by '/Applications/App Store.app' [781]
    11/30/12 12:29:40.547 PM com.apple.SecurityServer: Failed to authorize right 'system.install.software' by client '/System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/Resources/in stalld' [817] for authorization created by '/Applications/App Store.app' [781]
    Problem elimination:
    * I don't think this is a router-related issue: I have downloaded and installed other softwares outside App Store successfully
    * As said, I don't think this has anything to do with Firewall or Virus settings
    * Nor has this anything to do with /var/folders as far as I can tell
    What I've tried so far:
    * Repaired disk permissions several times
    * Rebooted
    * Restarted App Store
    * Following one advise found on the net, I deleted preflight.pfpkg just in case
    * All the time I have made sure my OS has the most recent Software Updates installed (most of them downloaded successfully, while with Safari and OS 10.7.5. I had to try several times before they were downloaded succesfully)
    I just reinstalled my OS X Lion, only to use it to jump on to Mountain Lion - so I am pending my migration until ML is installed. I would like to fix this soon, since I'd like to get the migration done and my real work started. I would really appreciate your help.
    I'm not very adept at using Console or Terminal to troubleshoot, so if someone could guide me through the problem identification, that would be great. Unless someone already knows exactly what's going wrong and can show me a working solution - that'd save my day!
    Thanks!

    In cases like this, if you have an Apple store near by, they will most likely install the OS free of charge for you, if you can't bring your Apple ID along to prove you've paid for it.
    Would that work out for you?

  • Firefox and PDF download problems -- hanging and failures

    I am working in Windows XP and Firefox 12.0.
    We post our multi-page newsletter to our website in PDF, and then use a list to send a link to access it. When attempting to download using Firefox, the document will download all or part of the first page, and then hang -- sometimes in perpetuity, and sometimes with infinitesimally slow progress.
    It works just fine in Google Chrome.
    I tried disabling all of my plug-ins, including Adobe Acrobat (9.5.1.283). I left them all disabled, but re-enabled Adobe. No joy.
    I disabled Adobe and tried a straight-up download, then open with my local reader. No joy.
    What is going on, and how can I fix it?
    My Acrobat 9 Standard is 9.5.1 that I'm using to create the document in the first place.
    What can I do to fix MY system to get it to download and, more importantly, what information can I give our members to use so that they can successfully download it?

    I personally open PDFs in the stand-alone Adobe Reader rather than in the browser, but everyone has their own preference.
    Have you experimented with Firefox's application tab settings?
    orange Firefox button ''or'' classic Tools menu > Options > Applications
    In the search box on that tab, type pdf and pause for the list to be filtered. You should be able to toggle between viewing the PDF in the browser or launching it externally. I have mine set to "Always Ask."
    Generally speaking, when you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    1. Clear Firefox's Cache
    orange Firefox button ''or'' Tools menu > Options > Advanced
    On the Network mini-tab > Offline Storage : "Clear Now"
    2. If needed, delete the site's cookies here
    While viewing a page on the site, right-click and choose View Page Info > Security > "View Cookies"
    If you host the PDFs on a site you can't actually visit, access the View Cookies dialog from this page and change the host name at the top of the box to the correct host name to access the relevant cookies.
    Then try downloading again. Does that help?

  • PDF Download Problems

    Hi, this is a repeat post but maybe no-one noticed it when I posted it several months ago:
    I have problems with filenames of downloaded pdfs. I download pdfs from the internet, and my computer corrupts the filenames. For example, it replaces all the spaces with the string "%20" and sometimes, instead of the name of the file, it is just all numbers and "#" signs. Of course, I can re-type the correct filename, but why on earth aren't the correct ones just coming down with the file?
    Very frustrating because I deal with a lot of academic docs.

    Try the Internet Explorer or disable the PDF Viewer of Chrome.

  • N900 PDF Download Problems

    Whenever I download a pdf from a web site I get a message that asks me whether I want to open the file with PDF Reader or Save to Device. If I try to open with PDF Reader I get a message saying "file format not supported" and the phone goes back to the desktop. If I save the file to the device and then try to open it, there is a ? symbol appear on the file and the phone requres me to choose a software format to open the file with. I pick PDF Reader, but again the message appears "file format not supported" and the phone goes back to the desktop.
    The issue is that when I first purchsed the phone about 6 weeks ago PDF Reader used to download files from the web and I could read them no problem. Last week the phone just wouldn't open a PDF from a web site and hasn't done since. Can anyone help?

    Try the Internet Explorer or disable the PDF Viewer of Chrome.

  • PDF Download Problem with Mozilla

    Actually more of a nuisance. Whenever I download (when in OS 9.2.2 using the Mozilla browser) a PDF document, the file downloads OK, however, instead of having the PDF icon it has a PictureViewer/QuickTime icon and the file Type is GIFf & Creator Code is ogle. Naturally, it won’t open using Adobe Reader. I have to change the file Type to PDF & Creator Code to CARO. Then Adobe Reader will open the file. The change in the Type and Creator Code does not change during download when using iCab or Explorer. I couldn’t find any setting in Mozilla that could cause this.
    Any suggestions?
     Cheers, Tom

    Hi, Tom -
    Check the settings for Helper Apps (IE calls them File Helpers) in Mozilla - since I don't use it, I'm not conversant with where they might be, although I'd imagine they'd be somewhere in its Preferences.
    Check also the settings in the Internet control panel, Advanced tab, File Mapping section; and the settings in the PC Exchange and File Translation tabs in the File Exchnage control panel.
    Make sure all appropriate ones are set to use Acrobat Reader as the linked app for PDF (or .pdf) files. There may be more that one linked pair in any of those places.

  • I bought a pdf book last year and had no problem reading it for a few months then all of a sudden I could no longer open it and to this day. Any other pdf download off internet I can still open and read, except for that particular book. Operating system i

    I bought a pdf book last year and had no problem reading it for a few months then all of a sudden I could no longer open it and to this day. Any other pdf download off internet I can still open and read, except for that particular book. Operating system is Windows 7 Home Premium, Adobe Reader XI 11.0.07.  When trying to open file I get msg "You did'nt login or your session has expired. Please log in to read this document for the first time". (Like I said I have read it before). So I log in but that prompts me to give the name of the file I want to export or convert to Word or something else, which is not what I want to do of course. I have not purchased any service from Adobe or Acrobat as I only need to read. Thanks for your help..

    Thank you for your reply. Operating system is Windows 7 Home Premium, Adobe Reader XI 11.0.07.  When trying to open file I get msg "You did'nt login or your session has expired. Please log in to read this document for the first time". (Like I said I have read it before). So I log in but that prompts me to give the name of the file I want to export or convert to Word or something else, which is not what I want to do of course. I have not purchased any service from Adobe or Acrobat as I only need to read. Thanks for your help.

  • HT202159 OSX Mountain Lion download problems

    Hello,
    I have been trying to download OSX Mountain Lion from the appstore on my 10.6.8 mac mini but the file stops downloading after about 10mb. I was able to download 10.7 without any problems but I am not able to downlaod 10.8 on either of my two machines. Both stop at about 10mb. Anyone seen this or have any possible solutions?
    Thanks!
    Travis

    I have seen this, unfortunately there are 100 & 1 different things that can cause this. If you want to trouble shoot, let's power-cycle both your modem and router and see how that goes.

  • Hi people, have on the phone till Apple, the reason i cant download OS X Lion is because BT are having issues with the large download & are working on a fix. Was told to phone back in 24 hours if problem continues

    Hi people, have on the phone till Apple, the reason i cant download OS X Lion is because BT are having issues with the large download & are working on a fix. Was told to phone back in 24 hours if problem continues

    Hi, just got off the phone from BT Business. It is the Business 2wire hub that has the issue. The girl from technical talked through a direct modem to Mac connection and my download took 20 minutes. If you are on Fibre broadband this is the only current fix or a new router if non fibre customer. Hope that helps.

  • I downloaded OS X Lion on my iMac and I'm having problems with my computer waking up after hibernating.  I can get to the login screen but my mouse will be frozen.  The only fix's is a hard reboot.  Any help would be great!

    I downloaded OS X Lion on my iMac and I'm having problems with my computer waking up after hibernating.  I can get to the login screen but my mouse will be frozen.  The only fix's is a hard reboot.  Any help would be great!

    Try resetting the SMC and the PRAM.
    1. SMC
    Read this and follow the instructions for your kind of mac:
    http://support.apple.com/kb/HT3964
    2. PRAM
    Follow the procedure below:
    1. Power down the machine.
    2. Locate the following keys on your keyboard in preparation for Step 4:
    command–option–P–R
    3. Press the ‘power on’ button.
    4. Immediately – and before the grey screen appears – hold down ‘command-option-P-R’ all together.
    5. Keep them held down until you’ve heard the start-up chime twice. After you release them you should hear it again, and hopefully your Mac will boot up as it should normally.

  • Problems with PDF downloads

    I was ready to blame the latest update from Apple, but perhaps not. Here are the symptoms:
    Our church publishes a newsletter in PDF format which can be downloaded from their web site every month. This month, after the latest Apple update, the downloaded document has problems. General format is OK (boxes around text, images) but all text is simply grey bars that seem shaded from one side of the page to the other.
    If I save the document and try to open it in Preview the same problem.
    HOWEVER, if I open the document in the Adobe reader the document is fine!
    I thought this might be a problem with my iMac (first of the aluminium iMacs), so I tried this on my Apple laptop (recent vintage). Both machines run 10.6.8 with the latest updates from Apple applied. I have no funny "helper" programs; i.e. the software is pretty clean and all updated.
    Same issue on the laptop.
    HOWEVER I looked for a generic pdf download on the web and downloaded a PDF instruction sheet from the Moen (plumbing) web site - no problem!
    So now my suspicion is that the PDF document has the problem. But I would have thought that PDF is PDF and if the Adobe reader can handle the document that Safari and Preview should be able to? Is there some format switch in the program used to generate the PDF document that would cause the Apple programs to fail but Adobe to succeed?
    Any thoughts welcomed! I'd like to figure out if it's me or them.
    PS - I've not yet tried this on that "other" operating system. I could do that with a trip to the library

    Thanks guys. I think I'll just rely on Acrobat as suggested. Sounds like somehting has changed on their end as the previous month's file loads fine.
    I'll check with teh secretary ans see what has happened.
    Thanks

  • Strange problem of Pdf downloading  with Web Dynpro

    Hi, experts, I have to setup a project to realize pdf downloading with web dynpro. But unluckily, I have tried all the methods in this froum ,there's really strange problem .Because when I click the link of Download UI link, there's no reaction at all, I really don't know why.Below is the codes I used , can anyone help me ? thank you very much!
    public void wdDoInit()
        //@@begin wdDoInit()
              IWDAttributeInfo attInfo =
                   wdContext
                        .currentContextElement()
                        .node()
                        .getNodeInfo()
                        .getAttribute(
                        "Pdfsource");
              ISimpleTypeModifiable type = attInfo.getModifiableSimpleType();
              IWDModifiableBinaryType binaryType = (IWDModifiableBinaryType) type;
              binaryType.setFileName("test.pdf");
              binaryType.setMimeType(WDWebResourceType.PDF);
              try {
                   int length =
                        (int) wdContext.currentPdfdownloadElement().getBin_Filesize();
                   byte b[] = new byte[length];
                   b = wdContext.currentPdfdownloadElement().getBin_File();
                   wdContext.currentContextElement().setPdfsource(b);
              } catch (Exception ex) {
    "Pdfsource" is the context value attribute of type binary.And Bin_File is the xstring type parameter from my RFC contains pdf content.
    I used two views and one customer-controller . I put some value in the first view to set search condition.and the second then appears and have the download UI element. Are there any additional codes I should use? pls help!

    Hi Hao,
    Try this out
    Suppose the file name is test.doc in c drive in server
    create a context attribute filedata of binary type
    bind it to data property
    write the following code
    try
       File input = new File("C:
    test.doc");
       int length =(int)input.length();
       //Create a byte array b to hold the file
       byte b[] = new byte[length];
       FileInputStream in = new FileInputStream(input);
       //Reading the file to a byte array b
       in.read(b);            
       in.close();
       //Setting the data from the byte array to the context element.
       wdContext.currentContextElement().setfiledata(b);
    catch(Exception ex)
      wdComponentAPI.getMessageManager().reportSuccess("Error in File 
      IO"+ex.toString());
    // Structure information of the context attribute
    IWDAttributeInfo attinfo = wdContext.getNodeInfo().getAttribute("filedata");
    IWDModifiableBinaryType binaryType = (IWDModifiableBinaryType) attinfo.getModifiableSimpleType();
    // Default File name which appears when opened on client machine
    binaryType.setFileName("testing.doc");
    //Explicitly setting the file type
    binaryType.setMimeType(WDWebResourceType.DOC);

Maybe you are looking for

  • Using md5 in a manul tabular form to compare if column value changed

    Version: Application Express 3.2.0.00.27 Hello, I am creating a manul tabular form using apx_item in my select statment that is the source for the query in a report region. I am using a collection. The collection creation statement is:     apex_colle

  • IDOC Overrides the data in SAP

    Hi Experts, I am working on MDM 7.1 SP5 Vendor Master Implementation. We are maintaining all the SAP data in MDM and there is no manual intervenation at SAP ECC So we have used standard repository , CREMDM04 as XSD and the standard process code for I

  • Is there a way to retrieve an error report on OS X 10.7?

    In regards to the error report that is developed after a system crash that has the option of being sent to Apple.

  • Session expiry on 2 applications

    Hello I have 2 applications running on weblogic 7.0 on two managed servers , When I try to access the applications from 2 browser sessions I am getting an issue where the user session is lost from the other application, If I open the second window us

  • Preset parameter for schedule

    Hi, I have a requirement that we should allow user to run the report, system would save the report instance in pdf format in the default enterprise location,  however, we should preset the settings like connection setting, format, destination, etc..