Displaying ppt and doc files in weblogic

I am working on weblogic 8.1 I have .doc and .ppt files in directories under the
webroot. When I click on the url to display the file I get garbage instead of
getting the option to open/save the file.
How can I enable the open/save option? Do I have to configure anything on the
server?
Thanks
Please respond soon.

It's usually a browser configuration for the mime type.
John wrote:
I am working on weblogic 8.1 I have .doc and .ppt files in directories under the
webroot. When I click on the url to display the file I get garbage instead of
getting the option to open/save the file.
How can I enable the open/save option? Do I have to configure anything on the
server?
Thanks
Please respond soon.

Similar Messages

  • How do I stop Safari from displaying .rtf and .doc files?

    I have placed a number of .rtf and .doc files on my website for downloading. I've notice that my other browsers download the actual file when I type in the exact web address to where they are stored, whereas Safari just displays the text in Safari--there's no physical file download. What can I do to force Safari to download the physical file? (Am I not storing the file for download properly?)

    Hello jtenny,
    Welcome to the Discussions.
    I had a similar problem with Safari opening .pdf files. It went away when I went into the following folder: Your Home Folder/Library/Internet Plug-ins, and dragged out any files that looked as if they might make a difference, just one at a time, onto the Desktop. (N.B. I did not Trash them; and if removal made no difference, I replaced the file into the Plug-ins folder.) You will have to restart Safari on each occasion; and on a couple of occasions I found that re-setting Safari (Safari Menu) was necessary to give the application a start-from-scratch with each download attempt.
    That's a somewhat makeshift way of approaching it; but provided you don't trash the plugins, and provided you restore those that make no difference, it can't do any harm -- within my experience anyway.
    All good wishes from Ireland
    Martin
    If you found that this contribution helped to answer your question, please consider awarding some points. Why reward points?
    Powerbook 15-inch G4 1GHz   Mac OS X (10.4.8)   Several veterans that go on and on. 40gig, 3rd generation iPod

  • Initially I had downloaded Document 2 (Free) application to view my doc, ppt and xls files. I was not able to edit the files so there was an option for upgrade the Document-2 free to paid version. I have upgraded the Document 2 application.

    Initially I had downloaded Document 2 (Free) application to view my doc, ppt and xls files. I was not able to edit the files so there was an option for upgrade the Document-2 free to paid version. I have upgraded the Document 2 application. But on my iPad now there are to application present Docemnt-2 (Free) and Document-2. I am not able to open any existing document using the upgraded version of application. How do I connect all the existing txt,PPT,XLS doccument to the new upgraded Document-2 application and then to edit it on my iPad.

    As suggested I had deleted the free application and did a hard restart the iPad. I have again copied the document using iTunes. But I am not able to edit any document using this app. Document 2 (paid version) supports editing features of the txt/ xls /ppt files. Is there any problem while loading the Document 2 app. If I reload then do I need to purchase again?

  • Insertion of ppt file and doc file

    How to insert ppt file,wbmp file(used in mobile application) and doc file using intermedia objects?
    Please provide me a pl/sql code to insert ppt,doc and wbmp file

    You can use SQL*loader to load the PPT to a BLOB. Then you need to create a text index and you are ready to search. Sample code is available at technet.oracle.com/products/text

  • How to display RTF file and .doc file in JTextPane

    How to display RTF file and .doc file in JTextPane??

    Duplicate post
    http://forum.java.sun.com/thread.jsp?forum=57&thread=567029&tstart=0&trange=30

  • How to display.xls, pdf, .doc files in UIImageView within a UIScrollView.

    Hi,
    I am new to iPhone programming. I need some help.
    I want to display .xls, pdf, .doc files in UIImageView within a UIScrollView programtically how can i do this. What is the procedure.
    Pls. provide me a sample application.
    If anyone knows pls. respond it would be of great help for me.
    Thanks in Advance,
    Regards,
    Sreelatha.

    Hi Sreelatha. The best example code for your purpose is the Scrolling sample app I referred to previously. The word Scrolling in that post is a link to the download page. I think that code will answer all your questions about how to init a UIImage, then use it to init a UIImageView, and then position the UIImageView frame in a UIScrollView. Two cases are demostrated: 1) Scrolling horizontally through a series of images; 2) Scrolling both H & V over a single image which is several times larger than the window.
    You might also be interested in the PageControl sample app in case you want to add a page control to your scroll view.
    Reading your last post again... I sure hope we've been discussing images (like jpegs?) in this thread. This isn't about reading and rendering the actual xls, pdf and doc files, is it?? Of course the iPhone handles html beautifully, so for example, an html representation of a doc file would play nicely. But in that case you'd want a UIWebView, not a UIImageView.

  • To open a Excel and Doc file inside the AIR application

    How to open a Excel and Doc file inside the AIR application.  I have opened the PDF file inside the AIR application.  But i got stuck in opening the Exce and Doc file.  Please help me in this issue.

    AIR does not support this inherently. However, you could write code to parse these file formats. For example, the following is an ActionScript 3.0 library for reading and writing Excel files:
    http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&extid=1375018

  • Batch script to open multiple excel and doc files

    Hi Everyone,
    Could anybody please provide a batch script to open multiple excel and doc files at a time.
    Appreciate ur quick response.
    Regards,

    You have several scripting choices within Windows. At a basic level you've got "batch files" - which run a series of command interpreter commands, and have a file extension of .BAT or .CMD. If you just wanted to open a list of Word documents, then assuming that the path to Word is correct (something like this below) you could list these in a file with a .BAT extension and run this (e.g. double click on it):
    "C:\Program Files\Microsoft Office\Office\Winword.exe" "C:\Documents and Settings\All Users\Desktop\File1.DOC"
    "C:\Program Files\Microsoft Office\Office\Winword.exe" "C:\Documents and Settings\All Users\Desktop\File2.DOC"
    "C:\Program Files\Microsoft Office\Office\Winword.exe" "C:\Documents and Settings\All Users\Desktop\File3.DOC"
    "C:\Program Files\Microsoft Office\Office\Excel.exe" "C:\Documents and Settings\All Users\Desktop\File1.XLS"
    "C:\Program Files\Microsoft Office\Office\Excel.exe" "C:\Documents and Settings\All Users\Desktop\File2.XLS"
    Another script language is VBScript, which was the example I gave. VBScript is available on most Windows platforms and can be run from a command prompt or within Windows. If you save the text I gave you above to a file with a .VBS extension you can double-click to run it (Windows) or open a command prompt and type CSCRIPT MyVBScript.VBS (assuming that's the name of the your .VBS file).
    Other script languages are available to achieve the same thing, including Powershell, however you'd need to have Powershell available on your PC.

  • Previewing pdf and doc files

    Does anyone know the best way to go about showing pdf and doc files as a document preview within a Swing panel?
    Thanks in advance for your advice!
    Sarah

    You can do it with iText PDF. Go through it's tutorial. It is easy.
    iTextPDF

  • Attach .pdf and .doc files to Reply emails.

    I am desperately trying to figure out how to attach .pdf and .doc files to Reply emails in the Mail app. I have downloaded GoodReader, but when I go into "Manage Files" and choose "Open in...", Mail is not one of the apps listed for me to choose from (only Quickoffice and iBooks are listed, that's it). My Gmail account is pushed to the Mail app, if that's relevant at all.
    I'm hoping to be able to attach documents to Reply emails in the Mail app, but if I have to do it using my web-based email, that's better than nothing. I just really need to be able to attach them to Replies, and not compose a new email from scratch.
    I'd REALLY appreciate any help with this!
    Thanks.

    I thought I might be able to figure out a clever work-around by using cut and paste from a new message but this did not work as expected. I have been using the MobileMe iDisk app to store pdf files and then just mailing out the links.  I believe my cut and paste method would have worked with this, however I've got about a year now to figure out another way to do this if it is not included in Apple's new cloud service. This has actually been a better as I need to worry less about file size and don't need to have the files stored on the device.
    You may want to look into what on-line file storage solutions are out there and if they have the ability to send links to files to colleagues, possibly with password protection.

  • Can i view and edit PDF and .DOC file on iphone?

    Actually I got 2 question to ask,
    firstly have anybody got any luck to view PDF and .DOC file on Iphone because i have been trying for aged but there was no luck for me. I'm not talking about went to a email that contain a PDF or .DOC file but something like going to a website that let me able to download a PDF/.DOC. When I tried to download the file, safari keep saying that "It can not be download"??
    secondly, when is that going to be available to install third-party application to iphone such as Skype, IM+..
    appreciated everybody.

    You cannot download anything on the phone as it is not supported
    Third party applications support will start after the SDK(software development kit) is released in February

  • .pdf and .doc files corrupted on 2 Macs?

    On an iMac and a shared Mac Mini, a number of PDF and DOC files have all of a sudden gotten corrupt. Some of these have not been modifed in 2 years but all of a sudden are corrupt. I've tried Data Rescue and cannot find anything online about these multiple files getting corrupted. I've rebuilt permissions and done various ML Cache Cleaner options to no avail. Anyone heard of anything like this? It just happened all of a sudden on 2 computers. At first I figured the first computer had the partition going bad but that doesn't explain 2 computers at once.

    Dear M.V,
    with the same above configuration, now I am able to open pdf's which are having a size lessthan 2 MB.
    below is the access log
    127.0.0.1 - - [13/Feb/2008:15:04:36 +0530] "GET /pdfcheck.php?file=CampusMap HTTP/1.1" 200 2000000 below is the error log
    [13/Feb/2008:15:10:49] warning ( 3288):  for host 127.0.0.1 trying to GET /pdfcheck.php, finish-response reports: HTTP2228: Response content length mismatch (2000000 bytes with a content length of 2535786)  php code
    <?php
    if(!isset($_GET['file']))die('LOGGED! no file specified');
    $file_path=$_SERVER['DOCUMENT_ROOT'].'/pdfs/'.strip_tags(htmlentities($_GET['file'])).'.pdf';
      $file_name = $_GET['file'];
    $mm_type="application/pdf";
    header("Cache-Control: public, must-revalidate");
    header("Pragma: hack");
    header("Content-Type: " . $mm_type);
    header("Content-Length: " .(string)(filesize($file_path)) );
    header('Content-Disposition: inline; filename="'.$file_name.'"');
    header("Content-Transfer-Encoding: binary\n");
    readfile($file_path);
    ?>Thanks
    madhu

  • Why can't I convert .odt and .doc files to .pdf?

    why doesn't my reader say it can't convert .odt and .doc files to .pdf?

    ...or a subscription to PDF Pack?  See this document for supported file types: http://forums.adobe.com/docs/DOC-1496
    What exactly happens when you try to convert such a doc?

  • Smart folders and .doc files

    Problem: Smart folders do not show Microsoft .doc files. I have created a smart folder to show all documents I worked on recently. The search criteria in the smart folder are
    kind -> document
    last opened -> within last 14 days
    The folder shows now all documents I opened during the previous 14 days, EXCEPT .doc files. Any solution?

    Axxelerator wrote:
    Somewhere must be a setting that tells spotlight which file is a document which one is not...
    Actually, that information is a part of the metadata for the file. As I mentioned above, the actuall criteria used when you select Documents is the nearly all-inclusive
    kMDItemContentTypeTree = public.content
    You can read the metadata for any file using the Terminal. Launch Terminal, then type:
    mdls
    a space, then drag and drop a file into the Terminal window and hit the Return key. You'll see something like this:
    NoobiX:~ francine$ mdls /Users/francine/Documents/wordocs/MyFamily.doc
    kMDItemAuthors = (
    "Francine Schwieder"
    kMDItemContentCreationDate = 2008-08-31 12:49:48 -0700
    kMDItemContentModificationDate = 2008-08-31 12:49:48 -0700
    kMDItemContentType = "com.microsoft.word.doc"
    kMDItemContentTypeTree = (
    "com.microsoft.word.doc",
    "public.data",
    "public.item",
    "public.composite-content",
    "public.content"
    kMDItemDisplayName = "MyFamily.doc"
    And so on, with all the rest of the metadata displayed. The relevant entry in this case is "public.content" statement in the kMDItemContentTypeTree.
    I can't imagine that that entry is changed by saving something as .doc rather than .docx, which is why the only thing I can think of that would cause the behavior you are seeing is a Spotlight plist that is somehow messed up and excluding the extension doc. But I can't imagine how THAT would happen either.
    As for AND searches: you already have that setup when you click the + button to add something. Thus, in the example above, the search is for files that are Documents AND were modified in the last 3 days, but are NOT jpegs, etc.
    I have difficulty with correctly setting up the OR function, I always think that an option click on the + button, then selecting "Any" and adding a criterion ought to do it, but that doesn't seem to work as expected (or at least as I expect it to!). Anyway, one OR method that would yield approximately the same results as the example search above would be to select Kind is Other and then put this into the blank space after Other:
    HTML OR text OR PDF OR RTF OR archive
    Trouble is that if there WERE some doc or docx files, or some other sort of text based item, it wouldn't show up. I find it easier to just exclude things I know I don't want.
    Francine
    Francine
    Schwieder

  • To JDeveloper Tech Team & All: Displaying Microsoft Word Doc file in JDeveloper

    Is there any way, we can display a Microsoft Word Document file in JDeveloper ? I have JDeveloper 3.2.2 on my computer running Windows NT version 4.0 (SP 6). I appreciate your immediate responce. Thanks.

    In theory, you can display a DOC file in JDeveloper - given the correct JavaBean capable of reading DOC files and dispplaying it - then it could be hooked
    into JDeveloper as an Addin.
    But, wouldn't it be easier to display it in MS Word / other Doc Viewer?
    If DOC files are part of your development,
    then you can put a quick Invocation to Word / other tool in your JDeveloper Tools menu by editing the [JDev]\bin\tools.cfg file - See help for more info.
    I hope this helps,
    if not, please clarify further.
    -John

Maybe you are looking for

  • Foreground color turns grey

    Hello I am just learning Photoshop CS4 on a Mac. I selected a color, expecting the foreground color to change to that color so I could fill a an area. I found that the foreground color changed to grey. Whatever I tried it just went grey. Could someon

  • "The iTunes Library file cannot be saved. ..."

    "...There is not enough memory available." But I'm pretty sure 145 GB worth of free disk space is enough... I don't understand. ;_; And I'm sorry if you guys have heard this a bajillion times before but none of the searches that came up were able to

  • How do I get google + 1 to stop popping up when I click on a web site on my i pad

    How do I get google +1 to quit popping up when I am surfing the web with firefox on my I PAD? I cannot see what I clicked on it just keeps showing a white screen. I tab back and it keeps going back to the +1 screen.

  • Is it possible to use a smaller configuration

    Hi everybody, I am new to OpenSparc community. I want to make a project which is using OpenSparc core, but there is one thing that I want to make sure. It is about which FPGA to choose to implement the core. First of all I checked the website http://

  • GL Account and Billing document

    Dear All, I would like to see the list of billing documents based on the GL account input ,Can you suggest(Table ........) how to get the values.