Open or Save Box with IE

Hi,
My JSP is calling oracle report. When the report is generated it is displaying the box “Open or Close Box”.
This is happening with PDF as well as the reports open in Microsoft Exel.
When clicked on any of the option it gives error,” Can not download”.
This is with IE browser only.
The same is working fine with Fire fox and other browser.
Also on my development environment the same code is working with IE as well.
I guess some of the web server setting is missing on higher environment where the code is not working. But not able to find out what?
Please help me.
Thanks.

What happens if a similar document is served as static?

Similar Messages

  • HT1750 Pages, This document can't be opened because it's too old.  To open it, save it with Pages 09 first          still can't open pages document

    I recently purchased a new Mac and I am having difficulty opening older Pages documents.
    Pages, This document can't be opened because it's too old.  To open it, save it with Pages 09 first          still can't open pages document

    Either you have access to Pages ’08 v3, Pages ’09 v4, or neither. One of these older, but more functional versions of Pages can open, and export the document in question to Word. Preview on OS X 10.9.5 and Yosemite can view Pages ’08 documents (in my experience). It is not obvious to me that Preview may be using the installed Pages ’09 v4.3 to assist in opening these '08 documents.
    Once opened in Preview, you can select/paste text into Pages v5.2.2, or v5.5. If you want the images from the PDF, then export it from Preview as PDF, and then drag/drop onto latest free LibreOffice icon in the Dock, which will open the PDF for editing. Select, copy, and paste the images into Pages v5, or incorporate into Text boxes, or Shapes. When pasted, images will be in their original size/resolution, not necessarily as small as they appear in the PDF.
    If the second paragraph is a chore, then follow Peggy's advice above on the sources for purchase of Pages ’09.
    In the future, I would not recommend trusting document architecture to Apple, and use a more accessible format (.doc/x) for better cross-platform access, longevity, and application choice. You may find LibreOffice, or Office for Mac 2011 a better choice for features.

  • Pages 5.1 error "This document is too old. To open it, save it with Pages '09 first."

    When trying to open a Pages '08 file from a MacBook Pro in Pages 5.1 on an iMac, I get thr error message, "This document is too old. To open it, save it with Pages '09 first". I cannot locate a Pages '09 to use.  I can export the file from Pages '08 into a Microsoft Word Doc file and can open it then. How I do I solve the problem and open files in Pages 5.1?

    It is A solution that works if you don't have too many Page files to convert, but is very poor solution if trying to move everything off of the MacBook Pro to the iMac.  I don't necessarily need to open the 5 years of files, but if I need to look at something archived, I'm dead in the water.
    It doesn't make sense that a Mac can open a Microsoft product but cannot open a Mac product.  I can understand that a program is not forward compatibale, but almost all programs are backward compatible. This same problem appears with Numbers 3.1.
    Apple needs Microsoft as a solution?

  • I updated my Itunes to the latest version(11.1.4) and it isn't running on my laptop. The current OS is a W7 ultimate 64bits, when i try to run it, opens a message box with the following error message: error 7 (windows error 1114) . What should I do?

    I updated my Itunes to the latest version(11.1.4) and it isn't running on my laptop. The current OS is a W7 ultimate 64bits, when i try to run it, opens a message box with the following error message: error 7 (windows error 1114) . What should I do?

    Try the following user tip:
    Troubleshooting issues with iTunes for Windows updates

  • This document can't be opened because it's too old.To open it, save it with Pages '09 first.

    Bought new MAC desktop tried to open old Ipages and I get this message, what do I do now?
    This document can’t be opened because it’s too old.To open it, save it with Pages ’09 first.
    Thanks

    If you migrated your old system to the new Mac you should still have Pages '08 in your Applications/iWork folder.
    Open your document in Pages '08 and Export it to Word .doc/.docx and open that in Pages 5.
    Peter

  • With my new macbook I attempted to open an older spreadsheet and get the following error message:  "This spreadsheet cannot be opened because ti is too old.  To open it, save it with numbers '09 first"  So how does one do this when I only have ver3.1?

    With my new macbook I attempted to open an older spreadsheet and get the following error message:  "This spreadsheet cannot be opened because ti is too old.  To open it, save it with numbers '09 first"  So how does one do this when I only have ver3.1?

    Numbers 3.x can only open Numbers '09 and later.  You will need Numbers '09 to open Numbers '08 files.
    If it is a single file (or only a few) you can email me and I will open and convert then email back.  My email address is in the "Biography" of my profile.
    You may have Numbers '09 installed.  Look in the folder "/Applications/iWork '09"  if Numbers is in that folder launch it, open the file you tried to open, and save.  Then you should be able to open in Numbers 3.x

  • I can't open or save file with Java Web Start

    Hi,
    i can't open or save file with Java Web Start:
    import java.io.*;
    import java.util.*;
    public class MetaDataFileCreator {
    public String fileNameSpace = null;
    public String fileName = null;
    protected Properties file = null;
    public MetaDataFileCreator(String fileNameSpace, String fileName) {
    this.fileNameSpace = fileNameSpace;
    this.fileName = fileName;
    public void createMetaDataFile() {
    try {
    System.out.println("file METADATA");
    ClassLoader cl = this.getClass().getClassLoader();
    String nameFileMetaData = fileNameSpace + fileName + ".txt";
    FileOutputStream fileOS = new FileOutputStream(cl.getResource(nameFileMetaData).getFile());
    file = new Properties();
    file.setProperty("aaaaa", "aaaa");
    file.store(fileOS, "");
    fileOS.close();
    } catch (Exception e) {
    System.out.println("Error writing metadata-file: " + e);
    System.exit(1);
    e.printStackTrace();
    I have try also to open a file like this:
    ClassLoader cl = this.getClass().getClassLoader();
    file.load(cl.getResourceAsStream(nameFile));
    also like this:
    try {
    fos = (FileOpenService)ServiceManager.lookup("javax.jnlp.FileOpenService");
    fss = (FileSaveService)ServiceManager.lookup("javax.jnlp.FileSaveService");
    } catch (UnavailableServiceException e) {
    fss = null;
    fos = null;
    System.out.println("Error with JNLP");
    System.exit(1);
    if (fss != null && fos != null) {
    try {
    // get a FileContents object to work with from the
    // FileOpenService
    FileContents fc = fos.openFileDialog(null, null);
    //FileContents newfc2 = fss.saveAsFileDialog(null, null, fc);
    // get the OutputStream and write the file back out
    if (fc.canWrite()) {
    // don't append
    os = fc.getOutputStream(false);
    } catch (Exception e) {
    e.printStackTrace();
    also like this:
    File f = new File((System.getProperty("user.home")+"x.txt").toString());
    FileOutputStream fileX = new FileOutputStream(f);
    OutputX = new PrintWriter(new BufferedWriter(new OutputStreamWriter(fileX, "UTF8")));
    OutputX.println(....
    but it doesn't work with Java Web Start.
    Can someone help me?
    How can I open or save file?
    thank you.
    Sebastiano

    Did you specify <all-permissions/> in your JNLP file? Did you sign your code? What error are you getting?

  • Message, this document too old can't be opened.  To open it , save it with Pages 09

    Keep getting the message, this document too old can't be opened, save it with Pages '09 first?  I recently purchased the new Pages, yellow Icon.  My old Pages was '08.  My new Pages doesn't say what it is except the version 5.0.1. Where do I get version '09 to save all my of Pages docs. so I can open them.  Or do I just keep my old '08 version active and open them through it?

    You can use iWork 08 on MacOs Mavericks for the PAges 08 documents. If you eally need to have them in Pages 5 you can try in Pages 08 save the document as/export to Word format and then open in Pages 5. 
    I would just continue using iwork 08. PAges 5 is a mess.

  • How could I re-open my mail box with error message :The last time you opened Mail, it unexpectedly quit while reopening windows. Do you want to try to reopen its windows again?

    How could I re-open my mail box, as an error message blocked "The last time you opened Mail, it unexpectedly quit while reopening windows. Do you want to try to reopen its windows again?" Even I entered re-open, the airbook does not response but prompt the same error message again.

    Please follow these directions to delete the Mail "sandbox" folders. In OS X 10.9 there are two sandboxes, while in 10.8 there is only one. If you're running a version older than 10.8, this comment isn't applicable.
    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Containers/com.apple.mail
    Right-click or control-click the highlighted line and select
    Services ▹ Reveal
    from the contextual menu.* A Finder window should open with a folder named "com.apple.mail" selected. If it does, move the selected folder — not just its contents — to the Desktop. Leave the Finder window open for now.
    Log out and log back in. Launch Mail and test. If the problem is resolved, you may have to recreate some of your Mail settings. You can then delete the folder you moved and close the Finder window. If you still have the problem, quit Mail again and put the folder back where it was, overwriting the one that may have been created in its place. Repeat with this line:
    ~/Library/Containers/com.apple.MailServiceAgent
    Caution: If you change any of the contents of the sandbox, but leave the folder itself in place, Mail may crash or not launch at all. Deleting the whole sandbox will cause it to be rebuilt automatically.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.

  • Opening print dialog box with "Selection" printing enabled

    Hi all,
    I have a JTable in which I wan to print only selected rows. When I open the Print dialog box using printDialog() method of PrinterJob, the dialog opens with "Selection" option disabled.
    How can I enable this option ?
    How can I print my selection using the standard Print Dialog ?

    This I know.
    Let me refrase my question:
    I have a table with selected cells (Rows Cols
    whatever ...) I wish to open the print dialog box
    with Selection radio button enabled, such that when I
    will check it and click print, the selected table
    cell get printed.This I had understood.
    Let me refrase my reply:
    If you simply print a new table containing the selected data
    then you don't need to have the Selection radio button enabled
    in the print dialog box.

  • When forwarding email with Firefox (default browser)the pictures in the email (not attachments) will not open , only shows boxes with a red x on top at the receiver, but when sending with IE, the pictures open, this happens only recently since a week ago.

    I forward a message with pictures in it with Firefox, the receiver can not see any pictures, only boxes with a red x, but can read the message.
    But when I forward the same message with pictures with IE,
    the receiver can see the pictures and read the message too.

    When going to a website the picture was small - tried changing the Zoom size , tried Zoom Reset - the text did change size but the layout distorts - found under View - Zoom - Zoom Text Only was checked --- Removed this check mark and the website returned to normal size and Zoom worked normally again. I am 99.9999% sure I did NOT check this myself and there is no one else on the computer to cause it. Maybe this will help.

  • Open a save dialog with a name of a not existing file as tip name

    Hello, I`m using JFileChooser to save a file, but the file does not exist in the File System, it is only a Java File object.
    Then I want to open the dialog with a name for this new file already in the field, then I can change the folders and the proposed name will still be there to be used.
    I have found some posts pretty close to what I need but i could not solve my problem.
    Thanks

    setSelectedFile()

  • AppleScript open and save file with Numbers

    Hi all,
    I need to save an Excel .xls file as an .xls file in order to break the links that are included in the original Excel file. Since Numbers doesn't have any actions for Automator, I hoped someone could help me writing an AppleScript?
    It needs to open (Numbers) and all the .xls files that are added to a specific folder on my Mac, then save them to another folder as .xls (not .xlsx) and overwrite any existing files with same name. Since this all should work automatically, warnings and pop-ups that need a user to click an option are not allowed.
    Didn't think this could be too hard, but I'm just a noob when it comes to AppleScript. Help?
    Thanks in advance

    Check the attributes of the <textarea> tag. You can use wrap="no" or wrap="virtual" or wrap="hard" to define how the text area handles carriage returns.
    Brian

  • An open-file dialog box with image preview

    Hi Francois,
    I am trying your GetImageFileName and it works great.
    When using the filechooser in webutil, I can input abc* and press the
    open button and it will help me to filter out the files.
    But there is no such a function in GetImageFileName. Can you tell me how
    can I modify the java so that the filter function exist.
    Many thanks.
    Ivan

    JFileChooser.showOpenDialog

  • I checked the always save box for downloads and now don't have the option of "open"

    I tried looking at the the firefox application thing and it said "always ask" next to things, but it isn't asking. Not sure how to get my open or save box back!

    You can rename (or delete) the mimeTypes.rdf file in the Firefox profile folder to reset all file actions.
    *http://kb.mozillazine.org/mimeTypes.rdf
    *http://kb.mozillazine.org/File_types_and_download_actions#Resetting_download_actions
    You can use this button to go to the currently used Firefox profile folder:
    *Help > Troubleshooting Information > Profile Director: Show Folder (Linux: Open Director; Mac: Show in Finder)

Maybe you are looking for

  • JSP and Service on EP 6.0 SP7

    Hi, I can't import my service into my JSP, I have the following error : Error in executing a process for compilation, F:/usr/sap/NW4/JC00/j2ee/cluster/server0/apps/sap.com/irj/servlet_jsp/irj/root/web-inf/portal/portalapps/appli2menu/work/pagelet/_sa

  • Transfer imovie files to Seagate

    Whenever I attempt to transfer video from an eMac 10.3.9 and imovie 3.0.3, drag and drop, to a Seagate Central 1T, file kind "Unix Executable File" is created which returns the following when I attempt to view the file; "Last login: Sun Dec 29 09:19:

  • Step by step process for taking oracle back up on solaris

    Hi Can you please explain me step by step process for taking oracle back up on solaris. as well as i don't know about RMAN . what is this how to install this. whenever i am typing the rman in solaris $ rman rman not found is comming please help me in

  • DMS link  BOM object

    Hi SAP Consultants, We are in the process of linking DMS with BOM. While Creating a DIR in CV01n we are unable to link a BOM because when we click the Object links tab it is displaying the following message: Object link to STKO_DOC cannot be changed

  • Can't see any computers

    When I search for computers on my network, for file sharing, I cannnot find any. When I try to connect to another computer using its IP address, it still cannot connect. It worked just fine, untill the computer I was transering files from, crashed, a