Can't save pdf files downloaded from some databases

When I download some pdf files from databases (e.g. SpringerLink) I can download to READ only (there is NO toolbar for printing/saving/etc). I am accessing them through a University library which gives access. Is there some setting I need to change? OR are some files restricted to read only??? If so - how can I tell that is the case before I download?

Graffiti - I did have Adobe Reader 9 - and I use Google Chrome.
Inspired by your questions, I downloaded Adobe Reader X 10 - the pdf files still don't go through the 'normal' process of requesting to be saved and being open. They appear immediately but with no toolbar.
SO I tried right clicking on the pdf file which could just be viewed, saving it, and THEN - YES THAT starts the 'normal' process of appearing as a file with the possibility of opening it (with toolbar).
Is this 'normal'? I've opened large numbers of pdf files - and I never remember having to right click in order to start the process.
  Thanks very much for all your help,
  Drwhoish

Similar Messages

  • Acrobat Reader can't open PDF file downloaded from the internet

    I downloaded the following pdf file from the internet and saved it to the desktop. When I tried to open the file I got a message saying Acrobat couldn't open it. I do not have trouble opening other PDF files. There is something about opening certain PDF files from the internet that is causing this. Is there a setting in the PDF preferences that is causing this or some security setting.
    http://www.porteverglades.net/include/content/docs/media/Port-map-2009.pdf

    It seems that Safari is unable to export the document as a PDF because the exported file was zero bytes. That's why I couldn't open it. I tried Firefox and did a File>Save. It saved the file as a PDF which I was able to open. So proglem solved.

  • Can I save pdf files from a website to ipad2?

    Can I save pdf files from a website to ipad2?

    Tgara wrote:
    Johnathan Burger wrote:
    Yes.
    Hit the link for the PDF-you will be given option to open in safari or iBooks(or any other program able o open PDFs).
    That's not what she asked about.  She asked about saving PDFs, not just opening them and reading them.  While Safari lets you open PDF documents, it does not let you save them.  In order to save them, you'll need to use a web browser that permits downloading.  I use Atomic Web Browser and can confirm that it does permit downloading and saving of PDF documents.
    http://itunes.apple.com/us/app/atomic-web-browser/id347929410?mt=8
    When you open a pdf in iBooks, it's automatially saved there.

  • Just upgraded to Lion, can't open any pdf file downloaded from internet that was fine with Leopard. How can I overcome this obstacle ?

    Just upgraded to Lion, can't open any pdf file downloaded from the internet that was fine with Leopard before. I just got a black screen when I clicked on a pdf icon on a given internet site, and same happened with several sites that I visited. How can I overcome this obstacle ?

    Try two things with Safari not running:
    1) Launch Adobe Reader, open its preferences, select the Internet category, and check the values under "Display PDF in browser using".  If it's checked, try unchecking it.
    2) Look in /Library/Internet Plug-Ins (at the top-level of your boot volume) for something names AdobePDFViewer.plugin.  If you see such a file, try moving it to a folder named "Disabled Plug-Ins" (if such a folder exists) or onto the Desktop.
    Then see how things work.

  • I'm using iphone 4S, and I can not open PDF file only from my husband email that using Mic outlook. It was very weird because I can received other email with pdf file from other people. can someone help.

    I'm using iphone 4S and ipad mini, and I can not open PDF file only from my husband email that using Mic outlook. It was very weird because I can received other email with pdf file from other people. Can someone help...
    Thanks in advance

    Hi Eidda,
    This may because the attachment is a winmail.dat file. I would recommend taking a look at the article below for more information. Note: the article is written for OS X mail, but does also apply to this situation.
    Mac OS X Mail: What is a winmail.dat attachment?
    http://support.apple.com/kb/HT2614
    -Griff W.

  • Can I save pdf files in the cloud?

    Can I save pdf files in the cloud?

    Yes. But it depends on what "cloud" yuo are referring to. Perhaps you should explain what you are attempting or want to do in a little more detail.

  • HT5925 Can I save pdf files on iCloud?

    Can I save pdf files on iCloud?

    I installed a PDF reader.
    It allows attaching pdf files to my iPod and synching with iTunes.
    But I don't use iCloud, still. I do all backups local to iTunes library.
    However, it should work no matter where or what IF you have files attached to an app that allows files.
    When I make changes to files attached to apps, they change and show under iTunes - tried renaming a file on the computer and changed on iPod.

  • Where can i save pdf files in icloud? Wo kann ich in der icloud PDF Dateien speichern?

    Where can i save PDF files in icloud?
    Wo kann ich in der  icloud PDF Dateien speichern?

    I installed a PDF reader.
    It allows attaching pdf files to my iPod and synching with iTunes.
    But I don't use iCloud, still. I do all backups local to iTunes library.
    However, it should work no matter where or what IF you have files attached to an app that allows files.
    When I make changes to files attached to apps, they change and show under iTunes - tried renaming a file on the computer and changed on iPod.

  • Starting yesterday I can scan a pdf file in from the scanner and can not send a pdf in an email attachment

    Starting yesterday I can scan a pdf file in from the scanner and can not send a pdf in an email attachment.  What happened?  Windows 8

    Adobe Reader can't scan documents. What software do you use?

  • Error while opening PDF file downloaded  from database Blob column

    Hi All,
    I am working on jdev 11.1.1.4.0.
    In my use-case I am using filedownload Actionlistner on a link to get the PDF file stored in the database in blob field. These files are being uploaded from other use-case in adf only.
    After getting the dialog box to open/save/cancel for the PDF file when i click on open then i am getting an error *'Adobe Reader could not open 'abc.pdf' because it is either not a supported file type*
    or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly docoded)' for some files , and to my surprise I am able to open some files.
    When I open these PDF files separately from desktop I am able to view the content of each and every file in adobe reader.
    I dont know where the problem exactly lies , while uploading/downloading the file . Any ideas/thoughts to resolve this issue?
    Thanks
    Kanika

    Thanks a lot Timo...!!!
    I checked the PDF file downloaded directly from the blob column in DB, there only it is corrupted so must be the problem in uploading the file. I am checking the code line by line,, but no problem in setting the file content type,size etc.
    Here is the code snippet ..
    byte[] buff;
    buff = new byte[(int)length]; -- Length is the file size
    int bytesRead = is.read(buff);
    for (int i = 0; bytesRead < buff.length; i++) {
    // int b = is.read();
    int b = is.read();
    if (b == -1)
    break;
    buff[i] = (byte)b;
    BlobDomain blobDomian = new BlobDomain((buff));
    TestVORow = (TestVORow Impl)TestVO.createRow();
    if(blobDomian != null) {
    TestVORow.setAttachment(blobDomian);
    am.getTransaction().commit();
    This seems to be Ok to me..the same issue, file is still corrupting.
    Any thoughts from your side ???
    Thanks
    Kanika
    The problem is resolved.
    Changes made are instead of
    InputStream is;
    used ... BufferedInputStream bis ;
    and after
    for (int i = 0; bytesRead < buff.length; i++) {
    // int b = bis.read();
    int b = bis.read();
    if (b == -1)
    break;
    buff[i] = (byte)b;
    bis.close(); // use this close bufferedInput Stream.
    Able to open each and every file now..Thanks for your suggestions Timo and Frank.
    Edited by: Kanika on Mar 6, 2012 3:15 AM

  • Can i save pdf files onto playbook?

    is it possible to save pdf files onto the playbook? i tried downloading one from a website and it showed up in the active downloads from where i then opened it, but it didnt permanently save. i thought maybe the adobe reader could store it but it didnt. 
    also, is it possible to transfer and save pdf files from a pc onto playbook? 
    this was one of the major things i was hoping the playbook could do..may determine whether it's worth keeping

    It's not through the Blackberry Desktop Software that I am transferring PDFs, Word, Excel files onto the Playbook; only media synching is supported at this time by that means. I did it on my PC through Windows Explorer, ie. the normal box you open on your computer when you click on "documents" and see the contents of your computer folders. There, in the left panel if you go down you see "computer", and click on it to display sub-folders, it should show the "Playbook" if you have a good USB connection. If you click on that PlayBook icon you will then see folders of the Playbook, including documents. That's where I pasted the documents, and they were then available to read and edit on the Playbook through Word to Go, Adobe Reader, etc. 
    The problem then (which other strings discuss) is that while you can paste in a set of documents organized in folders with sub-folders, the Playbook only sees the documents as being in a single folder. They apparently will still retain their organization though I haven't checked that.
    There is no way to synchronize in the way that DataViz Documents to Go does on the smartphones, and to me that is a big omission that RIM needs to take care of soon, or more specifically DataViz who I believe RIM owns now. The technology has been there for around 10 years. On my Palm I used to synchronize documents from my PC onto my Palm, work on various documents there, then when I synched again all the changes would automatically update on the documents on my PC. The only way to do this now is manually copy back from the Playbook to the PC, which is only OK if you are just working on one document.

  • Can't save PDF files on one PC

    I have Windows Explorer 8 and Vista Home Premium 64 bit on two pcs. I can save all downloaded pdf files on one, but can't save my bank statements and credit card statments on the other. I can save pdf files that aren't from protected sites. I have installed all updates to no avail.
    I can save my bank statements if I turn off the protected mode, but can't login to my credit card accounts with the protected mode off.
    I am using Adobe Reader 9.3.3.177

    Corn Trader wrote:
    I have Windows Explorer 8 and Vista Home Premium 64 bit on two pcs. I can save all downloaded pdf files on one, but can't save my bank statements and credit card statments on the other. I can save pdf files that aren't from protected sites. I have installed all updates to no avail.
    I can save my bank statements if I turn off the protected mode, but can't login to my credit card accounts with the protected mode off.
    I am using Adobe Reader 9.3.3.177
    I have Windows 7, but had the same problem.  I contacted my bank and was told to right click on the first existing icon on the reader page.  A drop-down box appeared with an extensive menu, including the "save to."  Hope this helps you.  I spend hours trying to figure it out to no avail.

  • Can ipod save PDF files? Does any application allow me to write notes onto the PDF file? Thanks

    Can Ipod save PDF fiels? does any apple application can help me to write my handnotes onto PDF files

    If what you mean is that you want to annotate already existing PDFs the answer is yes. Goodreader will let you do this. You can highlight stuff. You can type stuff. You can also use your finger or a stylus to hand write stuff onto existing PDFs. It then saves as a copy, so that your original is still intact.
    It's not free, but I find it worth what I spent.

  • Can't save PDF files from on-line banking site

    I'm not able to save a PDF file of bank statements or credit card statements from my secure online banking site.   I'm able to save copies of "non-secure" PDFs from various om-line sites.  I'm using Adobe Reader X.  anyone ahve any thoughts/recommendations?

    The content that I want to save as a PDF shows an icon for saving the file, but when I click on the icon, nothing happens.  I've tried to uninstall Adobe X; and also to "Repair" it.  But that has not made any difference.  I can print the document; increase or decrease the size of the image, advance from page to page, etc. ... it just won't allw me to save it as any type of file.
    Tnx,
    KAK

  • PDF file downloading from server to client

    Hello,
    I am a newbie to Oralce UCM. Writing a component to merge some PDF files and allow user to save/open it on client side.
    The file downloaded is of 0 bytes and when opened it says -
    Adobe Reader could not open the the file because it is either not a suppported file type or because the file is damaged(It was sent as an email attachment and was not correctly decoded)
    this.m_binder.m_contentType = "application/pdf";
    this.m_binder.m_clientEncoding = "utf-8";
    DataStreamWrapper dataStreamWrapper = this.createNewDownloadStream();
    dataStreamWrapper.m_clientFileName = "MergedPDF";
    dataStreamWrapper.m_inStream = mergedPDF.getDocumentInputStream();
    dataStreamWrapper.m_inStreamActive = true;
    dataStreamWrapper.m_dataType = "application/pdf";
    try {
    this.m_httpImplementor.sendStreamResponse(this.m_binder, dataStreamWrapper);
    } catch (ServiceException e) {
    e.printStackTrace();
    Some clue would really help :)
    Thanks,
    Fauzia

    Hi Jiri,
    I have created and HCSP page where data is being populated dynamically. User may select some of the files from this page through checkbox. Page also has a download button which when clicked will merge all the selected documents and let the user open/save it.
    Information like Native URL, docName is passed on to the content server when the component is called (download button-click).
    Merging the PDFs, I have used a custom utility which takes url as a parameter and returns back the inputstream of merged PDF.
    And last, I have used DataStreamWrapper to send this inputstream back to the client as an attachment which can be read by IE.
    Also, I thought at first to use HTTPHeader where parameters like content-disposition, content-type can be set. But UCM already provides a better way to achieve this i.e. through DataStreamWrapper.
    public class MergePDF extends Service {
         public List<PdfDocumentSource> createPdfDocumentSourceList(
                   String... urlStrings) throws MalformedURLException {
              List<PdfDocumentSource> sourceList = new ArrayList<PdfDocumentSource>(
                        urlStrings.length);
              for (String url : urlStrings) {
                   URL urlDoc = new URL(url);
                   PdfDocumentSource pdfSource = new UrlPdfDocumentSource(urlDoc);
                   try {
                        System.out.println("URL in create method - "+urlDoc);
                        System.out.println("PDFSource input stream - "+pdfSource.getDocumentInputStream().available());
                   } catch (IOException e) {
                        e.printStackTrace();
                   sourceList.add(pdfSource);
              return sourceList;
         public void mergeAll() throws DataException, ServiceException {
              Properties property = this.m_binder.getLocalData();
              String urlStrings = "";
              List<PdfDocumentSource> sourceList;
              PdfDocumentSource mergedPDF = null;
              urlStrings = property.getProperty("webURL");
              String[] urls = urlStrings.split(";");
              try {
                   sourceList = createPdfDocumentSourceList(urls);
                   PdfMerge merge = new PdfMerge(sourceList, true);
                   try {
                        mergedPDF = merge.createMergedPdf();
                        transferToClient(mergedPDF);
                   } catch (PdfProcessingException e) {
                        e.printStackTrace();
              } catch (MalformedURLException e) {
                   e.printStackTrace();
              System.out.println("hello123");
              System.out.println("URLS - "+urlStrings);
         public void transferToClient(PdfDocumentSource mergedPDF){
              this.m_binder.m_contentType = "application/pdf";
              this.m_binder.m_clientEncoding = "utf-8";
              DataStreamWrapper dataStreamWrapper = this.createNewDownloadStream();
              dataStreamWrapper.m_clientFileName = "MergedPDF.pdf";
              dataStreamWrapper.m_inStream = mergedPDF.getDocumentInputStream();
              //dataStreamWrapper.m_inStreamActive = true;
              dataStreamWrapper.m_dataType = "application/pdf";
              try {
                   this.m_httpImplementor.sendStreamResponse(this.m_binder, dataStreamWrapper);
              } catch (ServiceException e) {
                   e.printStackTrace();
              * StringBuffer sb = this.createHttpResponseHeader();
              sb.append("Content-Type: application/pdf");
              sb.append("Content-Disposition: attachment; filename=fname.ext");
              //m_headerStr
              this.m_headerStr = sb.toString();
    }

Maybe you are looking for

  • Iphoto doesn't open (KERN_PROTECTION_FAILURE)

    I've read all of the current threads without much luck. Here's my situation. 1) When I click on the iphoto icon it starts to open, but quickly closes. 2) I've tried creating a new account and iphoto works in that account. Just not my main account. 3)

  • Session timeout and Custon login module

    Hi, Dev Platform: Jdev 10.1.3.4.0, Oracle 10.2.4 I'm trying to trap the session timeout and display a page. I'm using the code below from Frank Nimphius. I've also provided a console log of what is happening when the application times out. Instead of

  • Bug Report for Spellcheck-Since there is no other way, unless Mail crashes

    You can not close the spell check window with command-w. Mail will intiate the closing of the new message window currently being written or edited. And unlike 'Show Fonts' and 'Show Colors', the key command can not be used to close the window either.

  • What are the conditions to use hotpatch

    Hi Experts. What is the criteria for deciding whether hotpatch can be used? From what I gather, the following is used as a guide: the patch is small it doesn't update any executable Is there anything else I should check? Thanks in advance, DA.

  • Import Signatures into Mail.app

    I'm trying to find out if there is a way to import signatures from a web based account such as yahoo or something similar. I have the POP setup already and the email is working fine but it would nice to be able to import signatures b/c the content of