PDF files not in context route

Hi,
I have several pdf files that I would like to make avaiable over the web. However, I don't want anyone to be able to see them by guessing the URL.
Therefore I would like the files to be stored (on the web-server), but not in the context root of the URL.
Does anyone know how these can be displayed upon clicking a link. e.g.
pdf file
I've seen comments in other posting about needing another servlet that outputs the pdf. But i'm not quite sure where to begin!
Can anyone help? Or is there a much better/easier way?
Thanks

Yes doing this with a servlet surely works.
Have a servlet which accepts a single request parameter filename and outputs that file. The service method of the servlet can be like this.
public void service(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException {
if (request.getParameter("fileName") != null) {
String fileName = request.getParameter("fileName");
String filePath = "folder-path/" + fileName;
try {
File file = new File(filePath);
FileInputStream is = new FileInputStream(file);
ServletOutputStream os = response.getOutputStream();
response.setContentType("application/pdf");
response.addHeader("content-disposition", "attachment; filename=" + fileName);
int c;
while ((c = is.read()) != -1) {
os.write(c);
} catch (Exception e) {
System.out.println("Error downloading file.");
In the above code replace folder-path with the absolute path of the folder where the pdf files are kept.
For a pdf file xyz.pdf call the above servlet with the url
http://server/path-to-servlet?fileName=xyz.pdf
Hope this helps

Similar Messages

  • PDF file not showing context

    After upgrading to ML I have recived a PDF that if I open with Preview only shows me part of the info (layout tables and bullets) but the text does not show!
    The text works for the windows users and I can see it in OmniGraffle.
    Anyone an idea what's wrong?
    Is it the PDF (i.e. the user who made it) or has it got to do with limitations within preview?
    Kind regards,
    Dani

    Please post a sample of the PDF file itself. If you are not embedding the font in the PDF file, but the PDF file doesn't properly provide the font's name, this symptom will occur. Give as a link to the file and we'll take a look at if for you.
              - Dov

  • PDF File not opening in browser for sharepoint 2010

    Recently we have moved our web application from one server to another in Sharepoint 2010. Back up of entire web application was taken and restored in another server. But in the new server , the PDF files in the document library is not getting opened in browser.
    it always open in browser
    I have already made following changes but didn,t work
    Set browser file handling to Permissive from central admin
    Set "open in browser" in setting s of doc library
    Set the doc library file handling property using $docLib = $web.lists["Your Document Library Title"] $docLib.BrowserFileHandling = "Permissive" $docLib.Update()
    Added "AllowedInlineDownloadedMimeType.Add("Application/Pdf") in web app
    Installed Adober eader in client machine
    Even after trying all these, the PDF files are still opening in Client application(Adobe reader) but not in the browser
    It would have been great help if anybody provide a solution for this. I have been banging head on this for two days

    It would be handy if you didn't double post too.
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/81ed0362-4033-4a31-b265-c1aba43c3d14/pdf-file-not-opening-in-browser-for-sharepoint-2010?forum=sharepointadminprevious
    To answer your question, you've tried most things that I normally see working, but there may be an extra solution here for you.  The solution 2 Powershell that deals with updating the Inline MimeType may help.
    http://www.pdfshareforms.com/sharepoint-2010-and-pdf-integration-series-part-1/
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • PDF files not being displayed correctly, instead I get a blank screen with some sort of small pinned icon in the centre.  It was working fine until today HELP!

    PDF files not being displayed correctly, instead I get a blank screen with some sort of small pinned icon in the centre.  It was working fine until today HELP!

    What is your operating system?  Reader version?  Are these local or online PDFs?  If online, in what browser?
    Can you post a screenshot: https://forums.adobe.com/thread/1070933

  • PDF Files not printed

    Dear all,
    r12.0.4.
    solaris 5.10
    bash-3.00$ which pdf2ps
    /usr/bin/pdf2ps
    I can able to print text files in the printer properly. When am printing PDF files am getting
    the error :
    PDF Files not printed
    128mb Of Memory Is Required To Enable Direct Printing
    For which, I followed the note :
    128mb Of Memory Is Required To Enable Direct Printing- 742579.1
    As per the note, file pasta_pdf.cfg is changed to
    bash-3.00$ diff pasta_pdf.cfg pasta_pdf.cfg_orig_Mar17
    122c122
    <         #preprocess=pdftops {infile} {outfile}
    preprocess=pdftops {infile} {outfile}124c124
    <          preprocess=pdf2ps {infile} {outfile}
    ; preprocess=pdf2ps {infile} {outfile}Made the following change in arguments of PASTA_POTRAIT
    FROM
    -pn$PROFILES$.PRINTER -f$PROFILES$.FILENAME -c$PROFILES$.CONC_COPIESTO
    -pn$PROFILES$.PRINTER -f$PROFILES$.FILENAME -c$PROFILES$.CONC_COPIES -Fpasta_pdf.cfgBounced concurrent managers, still we are getting the same error.
    Any idea ?
    Kai
    Edited by: KaiS on Mar 18, 2009 3:13 AM

    Kai,
    Do you have pdf2ps presented in the PATH of applmgr user?
    Did you run the concurrent program with (number of copies = 1)?
    Regards,
    Hussein

  • Pdf file not opening on pushing fdf file with F key in Adobe  Reader

    Well i am a novice developer in case of PDF Development.
    The problem which i am facing is:-
    In our application a PDF document submits the data to server and server sends back FDF to client with f key as http path of PDF which is present on web server.
    This all works well in acrobat professional 7.0 but in abobe reader 8.0 the PDF file doesn't open up on pushing FDF.
    On debugging the problem i found out that if server sends response within 480 milliseconds then reader is showing the pdf otherwise it don't shows up.Since in our application it will always take more than this time because of several operation performed to serve the request posted to server,So the
    PDF will never show up in case of reader.
    I was unable to understand what make it special in acrobat professional that session lasts more than 480 milliseconds whereas in reader the session doesn't last that long.
    I really need uregent help on this.
    Thanks in advance for help.

    It would be handy if you didn't double post too.
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/81ed0362-4033-4a31-b265-c1aba43c3d14/pdf-file-not-opening-in-browser-for-sharepoint-2010?forum=sharepointadminprevious
    To answer your question, you've tried most things that I normally see working, but there may be an extra solution here for you.  The solution 2 Powershell that deals with updating the Inline MimeType may help.
    http://www.pdfshareforms.com/sharepoint-2010-and-pdf-integration-series-part-1/
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • Open Multiple PDF files from Production order/Routing

    Hi Everyone
    We are in ECC 6.0 environment. We have a scenario where multiple documents were attached to single operation and also at multiple operations. But when I was trying to open these PDF documents, only the last file was getting opened and closing the previous file. How can I open multiple PDF files at one time from Production order or Routing?
    Any help is appreciated.
    Regards
    Prasad

    Hi Prasad,
    from DMS standard I regret but such a functionality is not available. In the standard originals can be opened only one after another.
    I think for realising this functionality an individual modificatoin is necessary.
    Best regards,
    Christoph

  • PDF files not getting generated

    Hi friends,
    Through our application we are generating PDF to network location. Suddenly it stoped from last month.
    I am not able to trace exact problem. forms version 6i we are using.
    PROCEDURE P_PRINT_GRN
                                       (p_type VARCHAR2 default 'P') IS -- Added by Piyush on 09/09/2007 GRN Email CR20
                                       /* p_type value if 'P' then normal Printing if 'M' then generate PDF for email attachment CR20*/
         param_grp ParamList ;
         param_grp_frr ParamList ;
         pl_name VARCHAR2(10) := 'tempdata';
         pl_name2 VARCHAR2(10) := 'tempdata';
         v_backslash VARCHAR2(1) ;
         fopen Text_IO.File_Type; /* File handle for opening the file */
         alt_msgs NUMBER ;
         v_runmode VARCHAR2(80) ;
         v_mch_name parameter_master.value%TYPE;
         v_port_no parameter_master.value%TYPE;
         v_server_name parameter_master.value%TYPE;
         o_usrid           VARCHAR2(6);
         o_password      VARCHAR2(15);
         o_dbname           VARCHAR2(30);
         v_param_check NUMBER;
         v_potype VARCHAR2(20);
         v_path                    VARCHAR(100); -- Added by Piyush on 09/09/2007 to capture path for GRN report PDF File CR20
         v_err                         NUMBER;                -- Added by Piyush on 09/09/2007 Show_Alert CR20
    BEGIN
         SELECT NVL(TO_CHAR(po_no), 'VMIPO')
         INTO v_potype
         FROM grn_header
         WHERE GRN_NO = :grn_header.grn_no;
    param_grp := Get_Parameter_List(pl_name);
         /* Creates the parameter list if one doesnt exist */
         IF Id_Null(param_grp) THEN
              param_grp := Create_Parameter_List(pl_name);
              IF Id_Null(param_grp) THEN
                   Message('Error creating parameter list '||pl_name);
                   RAISE Form_Trigger_Failure;
              END IF;
         ELSE
              Destroy_Parameter_List(param_grp);
              param_grp := Create_Parameter_List(pl_name);
         END IF;
    /* Adding parameters to Parameter List in order to be passed to called report */
         /* Added (Start) by Piyush on 09/09/2007 GRN Email, Generate PDF CR20*/
         if p_type = 'M' then
              BEGIN
                   SELECT value
                   INTO v_path
                   FROM parameter_master
                   WHERE type_code = 16
                   AND value_code = 6;
              EXCEPTION
                   WHEN NO_DATA_FOUND THEN
                        SET_ALERT_PROPERTY('ALT_ERROR', alert_message_text, 'Reports Path parameter does not exists in Parameter Master.');
                        v_err := SHOW_ALERT('ALT_ERROR');
                        RAISE FORM_TRIGGER_FAILURE;
                   WHEN OTHERS THEN
                        SET_ALERT_PROPERTY('ALT_ERROR', alert_message_text, substr(error_text,1,100));
                        v_err := SHOW_ALERT('ALT_ERROR');
                        RAISE FORM_TRIGGER_FAILURE;      
              END;
              ADD_PARAMETER(param_grp, 'P_DESTYPE', TEXT_PARAMETER, 'FILE');
              ADD_PARAMETER(param_grp, 'P_DESNAME', TEXT_PARAMETER, v_path || 'GRN_' || :grn_header.grn_no || '.pdf');
              ADD_PARAMETER(param_grp, 'P_DESFORMAT', TEXT_PARAMETER, 'PDF');
         ELSE     
              ADD_PARAMETER( param_grp , 'P_DESTYPE' ,TEXT_PARAMETER,'PRINTER');
              ADD_PARAMETER( param_grp , 'P_DESFORMAT' ,TEXT_PARAMETER,'DEFAULT');
         END IF;
         /* Added (End) by Piyush on 09/09/2007 GRN Email, Generate PDF CR20*/
         /* Commented (Start) by Piyush on 09/09/2007 to set value based on paramter CR20*/
         --ADD_PARAMETER( param_grp , 'P_DESTYPE' ,TEXT_PARAMETER,'PRINTER');
         --ADD_PARAMETER( param_grp , 'P_DESFORMAT' ,TEXT_PARAMETER,'DEFAULT');
         /* Commented (Start) by Piyush on 09/09/2007 to set value based on paramter CR20*/
    ADD_PARAMETER( param_grp , 'P_COPIES' ,TEXT_PARAMETER, 1);
    ADD_PARAMETER (param_grp ,'PARAMFORM' , TEXT_PARAMETER, 'NO');
    ADD_PARAMETER(param_grp,'P_REPID',TEXT_PARAMETER,'R021');
    ADD_PARAMETER(param_grp,'P_MENUID',TEXT_PARAMETER,NULL);
    ADD_PARAMETER(param_grp,'P_USERID',TEXT_PARAMETER,:grn_header.created_by);
    /* Code for adding user Parameters to the list should be added over here */
    ADD_PARAMETER(param_grp , 'P_FROM_GRN_NO', TEXT_PARAMETER,to_char(:grn_header.grn_no));
         ADD_PARAMETER(param_grp , 'P_TO_GRN_NO', TEXT_PARAMETER,to_char(:grn_header.grn_no));
    /* Get the application property to check whether mode is client server or Web */
    v_runmode := Get_Application_Property(USER_INTERFACE);
    IF v_runmode = 'WEB' THEN
         SELECT     a.value,b.value,c.value
                   INTO          v_mch_name,v_port_no,v_server_name
                   FROM          parameter_master a,parameter_master b,parameter_master c
                   WHERE          a.type_code = 13 and a.value_code = 1 AND
                                       b.type_code = 13 and b.value_code = 2 AND
                                       c.type_code = 13 and c.value_code = 3;
    /* Code for calling the reportin web mode */      
    --FP_CONNECTSTRING(o_usrid , o_password ,o_dbname );     
    web.show_document('http://'||v_mch_name||':'||v_port_no||'/ows-bin/rwcgi60.exe?module='||
                                                      '+userid='||o_usrid||'/'||o_password||'@'||o_dbname||     /*added by Amol on 16/08/01*/
                                                 '+server='||v_server_name||
                                                 '+desformat=default'||
                                                 '+p_destype=printer'||
                                                 '+p_copies=1'||
                                                 '+p_repid=R021'||
                        /* Code for adding user Parameters to the list should be added over here*/                                              
                                                                     '+p_grn_number='||:grn_header.grn_no||
                                                 '+p_userid='||:grn_header.created_by||
                                                 '+p_menuid='||NULL                         
    ELSE
    /* Code for calling the report by passing the parameter list to be added over here
    For Example */
    Run_Product(REPORTS,'R021', SYNCHRONOUS,RUNTIME, FILESYSTEM, param_grp ,NULL);
    IF v_potype <> 'VMIPO' THEN
              param_grp_frr := Get_Parameter_List(pl_name2);
         /* Creates the parameter list if one doesnt exist */
                        IF Id_Null(param_grp_frr) THEN
                                  param_grp_frr := Create_Parameter_List(pl_name2);
                                  IF Id_Null(param_grp_frr) THEN
                                            Message('Error creating parameter list '||pl_name2);
                                            RAISE Form_Trigger_Failure;
                                  END IF;
                        ELSE
                                  Destroy_Parameter_List(param_grp_frr);
                                  param_grp_frr := Create_Parameter_List(pl_name2);
                        END IF;
    ADD_PARAMETER(param_grp_frr, 'DESTYPE', TEXT_PARAMETER, 'FILE');
                   ADD_PARAMETER(param_grp_frr, 'DESNAME', TEXT_PARAMETER, v_path || 'FRR_' || to_char(:grn_header.grn_no) || '.pdf');
                   ADD_PARAMETER(param_grp_frr, 'DESFORMAT', TEXT_PARAMETER, 'PDF');
                   ADD_PARAMETER(param_grp_frr , 'P_GRN_NO', TEXT_PARAMETER, TO_CHAR(:grn_header.grn_no));
                   --ADD_PARAMETER (param_grp ,'PARAMFORM' , TEXT_PARAMETER, 'NO');
              --ADD_PARAMETER(param_grp,'P_REPID',TEXT_PARAMETER,'R186');
              --ADD_PARAMETER(param_grp,'P_MENUID',TEXT_PARAMETER,NULL);
              --ADD_PARAMETER(param_grp,'P_USERID',TEXT_PARAMETER,:grn_header.created_by);
         --Run_Product(REPORTS,'R186', SYNCHRONOUS,RUNTIME, FILESYSTEM, param_grp ,NULL);
         Run_Product(REPORTS,'R186', SYNCHRONOUS,RUNTIME, FILESYSTEM, param_grp_frr ,NULL); --testing
    END IF;
    END IF ;
    EXCEPTION
    WHEN OTHERS THEN
    IF sqlcode = -302000 THEN /* Invalid file path */
              alt_msgs := LPK_ERROR.F_ERROR_MSGS(910);/*Enter Valid Path and File name.*/
         END IF;
    END;
    please give a clue

    You have to give us a bit more then this. What stopped? Web or client/server version? What changed last month? Are there errors?
    For the code, please use the { code } tags for formatting and readability.

  • .pdf file not opening in Illustrator CS5

    All of a sudden, I cannot get ,pdf files to open in Illustrator CS5. what would cause this?
    Thanks

    Jeremy,
    Or you may go further down the list.
    The following is a general list of things you may try when the issue is not in a specific file (you may have tried/done some of them already); 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    If possible/applicable, you should save curent artwork first, of course.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to 3 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible);
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall, run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html
    Edit: Hi Steve. Whatever was white is less so now.

  • PDF file Not opening in Main Table

    Hi,
    I have added PDF lookup field in my main Table in console.
    I m able to import PDF file in PDF table ( after making Allow Invalid PDFs as YES)
    I have also imported PDF file in Main table field.
    But here PDF file is not opening.
    I m able to open PDF file only in PDF table & not in main table.
    Also i am not able to Generate Thumbnail.
    I m getting error:
    Regenerating thumbnail for 'Mahi.pdf'...failed.
    Regeneration of thumbnails complete.
    Can anybody tell me what could be the problem?
    Thanks,
    Mahi

    Hi Maheshwari,
    I have added PDF lookup field in my main Table in console.
    I m able to import PDF file in PDF table ( after making Allow Invalid PDFs as YES)
    I have also imported PDF file in Main table field.
    But here PDF file is not opening.
    You can link the pdf to the Main tabel record by two ways:
    1. Using Import Manager
    2. Using Data Manager itself.
    I have just tried it by the second way and I am able to open the Pdf in the Main Table itself.
    PLease follow these step below:
    1. Import the Pdf in the Pdf table and store the Pdf in the repository itself by choosing the Option - +Store in Repository+
    2.Go to Main Table and double click on the Look up field on the right side. GO to the Data Group Tab and add the Data Group you have created.
    3. Then choose the pdf you want to choose for that particular main table record. You will find the PDf getting attached in the Main Table Record.
    4. Now try and open the Pdf, HopefullyYou will find it opening in the Main Table itself .
    Hope it helps.
    Thanks and Regards
    Nitin jain

  • How to print pdf file not using the the adobe reader ?

    hello,
    i used the adobe sdk to open a pdf file in read and modify it serveral times and each time save it to another directory,and now i need to write a program to print the pdf file in this directory.when print the file,i want to continue my work also,so who i tell me how to solve this problem?
    thanks.

    The SDK is only a collection of documentation and headers that show you how to interact with and automate Adobe Acrobat and to some extent Adobe Reader. You need a copy of Acrobat or Reader installed on the system in order to use any of the SDK functions. You cannot "print not using the Adobe Reader", unless you have Adobe Acrobat installed on the system instead of Reader.

  • PDF files not saving/missing and leaving "aa12345" and "aaa12345" files??? - Solution

    risscand: I have workers that are unable to save and they are seeing an "aaa04916" type file in their working folder. This is causing us to lose work (because we are unable to save over the original file) or send out incomplete documents.
    Mudassir: As I understand when you try to edit and save a document, it directly opens "Save As", is that correct?
    risscand: No. When the user saves normally. Ctrl+S or the "Save" icon via the disk at the top of the page it appears to save however the PDF does not actually rewrite
    risscand: This results in an aaa12345 file in the folder, but an unchanged PDF.
    Mudassir: Okay.
    Mudassir: Thank you for the information.
    Mudassir: I will be glad to help you with this issue.
    risscand: Excellent
    Mudassir: May I know if you are chatting from the issue facing computer?
    risscand: I am not currently experiencing the issue but many of the employees in this office are.
    risscand: I can review the issue and see the files however, our worked is based off of a server.
    Mudassir: Okay.
    Mudassir: Marissa, this error often occurs due to a confict with Acrobat application and Windows Preview.
    Mudassir: In order to resolve the issue, you need to disable the Windows Preview in the Windows Explorer
    Mudassir: Follow the steps below to fix:
    Mudassir: Go to “Computer” or a windows explorer window, click on the “View” tab and then make sure the “Preview pane” is unselected. Then try saving your PDF document again.
    risscand: This option was not used by the users
    risscand:: I just asked one of the individuals who was experiencing the issue and she has never used that option.
    Mudassir: Just a minute.
    risscand: Thanks
    Mudassir: Thank you for your patience.
    Mudassir: Are all the users using Acrobat or Adobe Reader to save the PDF files?
    risscand: Acrobat
    Mudassir: Is that PDF file saved on network?
    risscand: Yes
    Mudassir: Does that users have the complete access to the network drive and are all the users use that PDF at a time?
    risscand: The PDF's are used one at a time. The individual who combines the reports that the workers probably does not have complete access to the network.
    Mudassir: To re-write the PDF which is saved on network, the users need to have complete access. If not, they will get the save as option and they can save that PDF file on their local drive
    Here are the options I got from Customer Service - Hopefully it will help some of you!
    -Riss

    Hi risscand,
    Are you still facing this issue or your issue has been resolved?
    Regards,
    Rahul

  • A link to other pdf files not working in only Android OS. How Can I fix it ?

    If there is many folders and pdf files in there  and a pdf file is at root and the root pdf file has many link to pdf files.
    In Windows OS links work well. but In Android OS, not working. when I click links, there is no difference. How can I fix it?

    Hi,
    Are you trying to open a portfolio or a pdf with attachments on Adobe Reader on Android or a pdf file with links(in form of text) to other pdfs? Would it be possible for you to share the pdf with us at [email protected] so that we may investigate?
    Thanks,
    Adobe Reader Team

  • PDF files not showing in IE

    Hello all first time post.
    I have a problem I cant seem to get my head around.I have
    created a web site for our local yacht club , on the links page I
    have added links to PDF files ,I am using dreamweaver 8 .
    The Pdf links work fine in firefox but not in IE ,I have
    changed file names ,put files in root directory ,remade the pdf
    document as a html even the link still will not work , However if a
    create a flash button to the pdf link it works fine in both
    browsers.I even created the page in fireworks and added a link in
    fireworks ,and it still wont work .
    I created the PDF files from a word document using acrobat 7.
    All security settings are ok ,this happens on all computers
    .I have tried the file on 4 different ones with different versions
    of IE.The View pdf in browser is enabled on all machines, as well
    as in acrobat.I also tried this link and tested the acrobat file it
    loads ok in IE
    http://windowsxp.mvps.org/ie/pdf.htm.I
    am trying this offline before I upload to server.
    Thank you all for your time and consideration.
    Peter

    spycatcher69 wrote:
    > Hello all first time post.
    > I have a problem I cant seem to get my head around.I
    have created a web site
    > for our local yacht club , on the links page I have
    added links to PDF files ,I
    > am using dreamweaver 8 .
    > The Pdf links work fine in firefox but not in IE ,I have
    changed file names
    > ,put files in root directory ,remade the pdf document as
    a html even the link
    > still will not work , However if a create a flash button
    to the pdf link it
    > works fine in both browsers.I even created the page in
    fireworks and added a
    > link in fireworks ,and it still wont work .
    > I created the PDF files from a word document using
    acrobat 7.
    > All security settings are ok ,this happens on all
    computers .I have tried the
    > file on 4 different ones with different versions of
    IE.The View pdf in browser
    > is enabled on all machines, as well as in acrobat.I also
    tried this link and
    > tested the acrobat file it loads ok in IE
    >
    http://windowsxp.mvps.org/ie/pdf.htm.I
    am trying this offline before I upload
    > to server.
    > Thank you all for your time and consideration.
    > Peter
    Make sure your server has the correct MIME type for PDFs.
    Dooza
    Posting Guidelines
    http://www.adobe.com/support/forums/guidelines.html
    How To Ask Smart Questions
    http://www.catb.org/esr/faqs/smart-questions.html

  • Acrobat 9 Pro Slow opening and closing pdf files - "Not Responding"

    I was responsible for pushing to get and keep 25 enterprises licenses for Adobe Acrobat Pro Vers 9. Corporate is pushing Blue Beam!
    We are on Acrobat Pro Vers. 9.3.1. Windows XP Pro 32 bit OS.  (PCs and laptops 1 - 3 years old, min 2 GB RAM, 2.1 GHz CPUs)
    Recently pdf files have been slow to open and close to the degree that windows .  It's to the point where I thought we were having network issues since this the problem is widespread.  However, it can occur when opening files on the local machine as well.  Worse, it's intermittent.  We do not run any add-ins, 3rd party or Adobe.  Most of these file run from 25kb in size to 2MB, rarely are they 5MB+.
    I just installed 9.3.2 and will keep an eye on it.  Does anyone have any ideas or suggestions as to what might be causing this or, what to look for?
    Thanks!
    Brian

    Thanks Brennao.  Our Organizer90 files were 7MB - 9MB.  I've deleted them on my PC and a couple of others.  Adobe help was no help for disabling the the Organizer.  I had to search the forums again to find out where to do that, and low and behold, the app apparently defaults to store data for 12 months!  I've change the setting to "Don't Remember PDFs", on the same PCs and am monitoring the performance to see if this is the "Silver Bullet".  If it works we'll put the instructions in our company FAQs.
    Brian

Maybe you are looking for

  • Archiving historical object instances

    Post Author: KevinR CA Forum: Administration Is there an automated way to archive historical object instances?  We are a financial institution and need to keep objects for several years, but don't want to keep so many objects available in WebI becaus

  • SPFileLOck Exception in sharepoint 2010?

    Hi, i am trying to lock a file for an Year through an Event Receiver i am getting SPFIleLockException , below is my code  file.Lock(SPFile.SPLockType.Exclusive, id, System.TimeSpan.FromDays(365));  but when i use the below code it works   file.Lock(S

  • Straighten tool repeatedly crashing ACR

    I havn't seen this issue reported anywhere else, but I can't get it to go away. I am using CS4 with everything updated. I shoot using a 5dmkii and canon 40d. I never had this problem in CS3 I'll load up some raw files (doesn't seem to be affected by

  • Suggestions about the visualisation

    SQLDeveloper ver 1.0.0.15.57 It would be good to be able: * the sort by column the fields in the "Columns" sheet (like to sort by data type) * to see the tables, views, functions, etc. in different tab sheets instead of a tree view (if you have a lot

  • Why does Firefox hello tells me "Something went wrong."?

    Hello, I am on firefox version 37.0.1. When I click on hello button and start a conversation, a small window appear and my camera works for a very short while. Then the small window goes black with this message on it: Something went wrong. It does no