Displaying ppt in the browser window.

Hi,
I have a ppt stored in the database as BLOB.I've fetched it in the jsp and am directly writing it to web using OutputStream's write() method, but I want to show it in the browser window itself instead of opening the ppt seperately.Can anyone tell how this can be done?

Hi,
I have a ppt stored in the database as BLOB.I'veJSPs are not supposed to access a database.
fetched it in the jsp and am directly writing it to
web using OutputStream's write() method,This is a job a servlet can do a little better.
but I want
to show it in the browser window itself instead of
opening the ppt seperately.Can anyone tell how this
can be done?Just have the servlet return the powerpoint as a binary stream, with the appropriate MIME type set.

Similar Messages

  • How can I keep the browser window stretched across my two displays?

    I run am trying to run dual monitor setup and have the Firefox browser span the two monitors. Whenever a Firefox dialog opens, such as Preferences or Print, the window zooms to fit the one primary monitor. How can I keep the browser window stretched across my two displays?

    Thanks very much for your response to my question -very helpful.
    Do you have any recommendations for a good book on Edge Animate?
    Thanks,
    Shaun
    Date: Thu, 25 Oct 2012 17:10:43 -0600
    From: [email protected]
    To: [email protected]
    Subject: How can I change the browser window background color when playing an Edge animation?
        Re: How can I change the browser window background color when playing an Edge animation?
        created by heathrowe in Edge Animate - View the full discussion
    ADD this to compositionReady handler, change the hex color code to your desired color //Force body of webpage to a specific color$("body").css("background-color","#5d5e61"); Darrell
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/4801409#4801409
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4801409#4801409
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4801409#4801409. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Edge Animate by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • How do i get my navbar to stay on one line when the browser window is minimized?

    I am new to coding and have just created my first website in html and css.  I know that the coding is pretty dire and that I have a lot to learn and hope that someone can guide me in how to solve this problem.  When the browser window is minimized, the navbar breaks down into 2 or 3 lines but I want the navbar to fit to the window whatever the size of the client machine.
    I think I need to add a media query but i'm not sure if i do and if so what code to use and where to put it?
    I am worried that the page will only be viewable properly on a desktop and i really want to learn how to make a fluid layout which can be viewed on 320px, 768px and 1200px.
    Any guidance would be greatly appreciated.
    Here is my code:
    HTML
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>The Engineer's Corset</title>
    <link href="styles/style.css" rel="stylesheet" type="text/css" media="screen">
    <style type="text/css">
    body {
        background-color: #000;
    </style>
    </head>
    <body>
    <div id="container">
    <div id="navbar">
        <ul id="nav">
        <li><span class="current-menu-item">Home</span></li>
        <li><a href="about.html">About Us</a></li>
        <li><a href="workshops.html">Workshops</a></li>
        <li><a href="news.html">News</a></li>
        <li><a href="gallery.html">Gallery</a></li>
        <li><a href="contact.html">Contact Us</a></li>
        </ul>
    </div>
    <div id="header">
      <img src="images/final/headerbeauty3.png" width="1100" height="341" alt="The Engineer's Corset">
    </div>
    <div id="links">
    <ul id="link">
    <li><a href="https://www.facebook.com/Bristolengineer" target="_blank"><img src="images/final/fb3.png" width="200" height="45" alt="Follow Us on Facebook"></li>
    <li><a href="https://twitter.com/Engineerscorset" target="_blank"><img src="images/final/twitter2.jpg" width="200" height="45" alt="Follow us on Twitter"></a></li>
    </ul>
    </div>
    <div class="chantry">
    <img src="images/final/CD Logo fin.png" width="240" height="200" alt="Chantry Dance Company">
    </div>
    <div class="about">
      <p> The Engineer's Corset is a new play written by Janet Goddard for performance by the community of Bristol in 2015. <br>  ~ <br>
    The play is based on the extraordinary real-life events of 1843 surrounding Isambard Kingdom Brunel's near-death experience after swallowing a coin.  We travel through time to explore the adventure and horror of Victorian industrialisation. <br> ~ <br> Using a community theatre group The Engineer’s Corset tells a familiar tale of Brunel’s near death experience when he swallows a gold half sovereign. His wife Mary fights to maintain her composure but is ripped apart by the waiting game. Her servants and his workforce, using dance and sound, broaden her horizons. Just like Mary the audience too will see life in the 1840s through a different lens.</p>
    </div>
    <div class="workshops">
    <img src="images/final/bridgebridge.jpg" width="1100" height="713" alt="clifton suspension bridge">
    <span><a href="workshops.html">We will be running a series of workshops prior to production and hope you will join us.  For further information, click here.</a></span>
    </div>
    <div id="sponsorspace"></div>
    <div id="footer"> <p> &copy; Heartprints Web Design 2014 </p> </div>
    </div>
    </body>
    </html>
    CSS
    @charset "utf-8";
    /* CSS Document */
    body {
        font-family:Arial, Helvetica, sans-serif;
        font-size:125%;
    @media screen {
        #navbar:
    #navbar li {
        font: 25px Arial;
        display: inline;
        list-style-type: none;
        background: #09F;
        color: #000;
        border-radius: 20px;
        padding: 15px 25px;
    .current-menu-item {
        color: #0FF;
    #navbar a {
        padding: 15px 25px;
        background-color: #6cf;
        color: #000;
        text-decoration: none;
        border-radius: 20px;
    #navbar a:hover {
        background-color:#0FF;
        color: #000;
        padding: 15px 25px;
    #header {
        width: 1100px;
        height: 340px;
        margin-left: 50px;
        margin-top: 0px;
        margin-bottom: 0px;
        border-style: ridge;
        border-width: 5px;
        border-color:#09F;
    #links li {
        display: inline;
        width: 700px;
        margin-left: 300px;
    .chantry {
        margin-left: 40px;
    .about {
        position: relative;
        width: 860px;
        text-align:center;
        background-color: #CCC;
        color: #000;
        border-style: ridge;
        border-width: 3px;
        border-color:#09F;
        border-radius: 15px;
        float: right;
        margin-top: -200px;
        margin-right: 90px;
    .workshops{
        position:relative;
        width: 1100px;
        height: 713px;
        font-size:24px;
        margin-left: 50px;
        border-style: ridge;
        border-width: 5px;
        border-color:#09F;
        margin-top: 130px;
    .workshops span {
        position: absolute;
        background: #6CF;
        color: #000;
        left: 30px;
        top: 30px;
        right: 800px;
        padding: 15px;
        font: 1em georgia, serif;
        font-style:italic;
        text-align:center;
        border: 5px solid #09F;
        border-radius: 20px;
        margin-top: 35px;
    .workshops span a {
        color: #000;
    #link li {
        border-style: solid;
        border-color: #6CF;
        padding: 30px 10px 5px 10px;
    .info {
        text-align:center;
        width: 1100px;
        margin-top: 50px;
        margin-bottom: 50px;
    .CDC {
        float: left;
        margin-right: 50px;
        margin-left: 45px;
    .workshopinfo {
        height: 250px;
        text-align:center;
        margin-top: 50px;
    .photos {
        Height: 500px;
        text-align:center;
        margin-top: 50px;
    #footer {
        text-align:center;
        margin-top: 700px;
        color:#0CF;
    .brunel {
        margin-top: 50px;
        margin-left: 400px;
    #workshops2{
        width: 1000px;
        border-style: outset;
        border-width: 5px;
        padding: 15px;
        border-color:#09F;
        background-color: #6CF;
        margin-left: 100px;
        text-align:center;
    #workshops2 a {
        color: #000;
    #sponsorspace {
        height:  300px;
        background-color: #6CF;
        border-style: outset;
        border-color: #09f;
        margin-top: 15px;

    Give #navbar a width that is wide enough to hold all of the buttons within it.
    #navbar {
         width:####px;
    Replace #### with a pixel number large enough to hold the nav buttons.

  • Portlet Item Attr: "Link That Displays Item in New Browser Window"

    I have been searching the forums for a similar experience, but haven't found anything quite like this:
    I have a couple of portlets. One is a Discoverer Portlet, the other is something more basic: The "Developer News" portlet from the 9iAS Community portlet provider.
    After defining the portlets and looking at them, I edit the page and click the Edit button (little pencil) to edit the attributes.
    There are radio buttons for Display Options.
    One option is: "Link that Displays Item in New Browser Window."
    When I select this, OK, and then go back to the page, **the portlet doesn't show at all any more! There is no link, no nothing. Note that I have defined a Display Name, which should be the text for the link.
    It would seem that this feature flat out doesn't work.
    This technique for a popup works fine for an "Item" defined in an item region.
    Anyone?

    Yes -- I did do that after reading an article on metalink about such issues.
    This actually changes the problem.
    When I add the "Display name and image link" attribute to the region, I now do get a link.
    However, clicking it brings up an undefined Discoverer portlet.
    It works great for non-Disco portlets. For instance, I was able to pop up the "Developer News" portlet from the Oracle 9iAS Community portlet provider.
    I think the problem is that the link that Disco produces does not provide enough information to bring up the particular portlet. For instance, the URL does not have the workbook name, the worksheet name, the parameter values, etc.
    If anyone uses Disco w/ the portal, I would be curious to hear if anyone can reproduce this apparent bug / limitation.

  • My Adobe Reader toolbar that allows you to save, print, email, etc. the document in the browser window/tab has disappeared and I want to know how to get it back.

    I was unable to view PDF files in Firefox and would get a blank screen telling me I needed to re-install Adobe. I did that and was still unable to view PDF files in the browser window or tab.
    Now that I have upgraded to the most current version of Firefox I no longer have the Adobe Reader toolbar that used to be a toolbar above a PDF file when viewing in the browser window or tab. I don't have the printer icon, floppy disc icon, email icon, page arrows to scroll up or down, the percentage for size, etc. Is there a way to be able to have this toolbar again?

    I do not use Adobe Reader, but use Foxit Reader in its place, and had the same problem. In Foxit Reader, I right-clicked in the area at the top where you would expect the toolbar to be (it was a blank area immediately above the displayed PDF file), and chose which toolbars to display and that has "stuck" and I still see the Foxit toolbars when I load a PDF file after system shutdown overnight. The only problem is that the area where you would expect the toolbars is still there and blank, but the toolbars that I selected appear immediately below that blank area. See if that works in Adobe Reader for you.

  • PDF will not display in an IE browser window

    I have the following setup:
    Windows Vista Business w/ SP2
    Internet Explorer 8 (8.0.6001.18813)
    Adobe Reader 9 (9.1.3)
    When accessing a PDF document using IE8, the PDF will not display in an IE browser window.  Instead, the PDF opens in a new Adobe Reader window.
    When accessing the same PDF in Firefox or Chrome, the PDF appears in the browser window.
    I have tried repairing Adobe Reader using the Help>Repair Adobe Reader Installation menu, both by running Adobe Reader as an admin and not.  I have confirmed that Adobe Reader "Internet" preference "Display PDF in Browser" option is enabled (checked).  I have enabled/disabled this preference without affect.  The PDF document is always opened in it's own Adobe Reader window.
    I have tested this using different PDF documents served up by different servers.  The result is the same.  The PDF document is always opened in it's own Adobe Reader window.
    How can I get the PDF to open in an IE8 browser window?
    I look forward to any suggestions offered.

    Hi Carolyn,
    I am experiencing the same symptoms as gaijindragonslayer described above, and my Internet Plug-ins folder is empty. I would like to have Preview as my default pdf reader, but am unable to view a pdf in Safari at all right now -- I have to download the pdf and then open it with Preview separately in order to view it.
    What else might cause this?
    Thanks for your help.

  • My 8530 does not display images in the browser

    My bb 8530 a few weeks ago suddenly stopped displaying images in the browser. Browser options are set to "display images". I've power cycled many times, even reset and wiped, but still no images in browser. How can I fix this? Thanks.

    hi i have noticed the same problem. also with Chrome and FP ver 11.5.31.2and Firefox and Safari with FP 11.5.502.110
    it seems that MovieClipLoader class not returning onLoadInit event. I use to add a fadein function on loadInit to fade in the loaded images. with the latest Flash PLayer versions this is not activated so you cannot see the loaded images.
    I have tested this on 3 different systems and the problem is the same. I have not updated my FP for IE. There, the older FP still works well.
    test systems
    Mac OS LionSafari and FP 11.5.502.110 --- DOES NOT WORK WELL
    Windows 7 64 bit
    chrome 23.0.1271.95 with FP 11.5.31.2  - DOES NOT WORK WELL
    Firefox 16.02 with FP 11.5.502.110  - DOES NOT WORK WELL
    IE 9 with FP version 11.4.402.287  - WORKS
    Windows XP SP3
    Firefox 16.02 with FP 11.5.502.110 - DOES NOT WORK WELL
    IE 8 wth FP 11.4.402.287  - WORKS
    chrome 23.0.1271.95 with FP 11.5.31.2  - DOES NOT WORK WELL

  • How to change the web icon in the browser window

    i have created my site and cant find how to change the icon in the browser window (like they have done at the top of this page with the Adobe icon before the  Adobe Forums: text )would anyone be kind enough to give me some help??

    Do you mean the favicon?
    I only just recently learned about favicons myself - so if you google the word you'll get lots of resources for it. Bascially it's a little icon file that sits at the root directory of your site that the browsers find and display for you. As long as the file is there (*named favicon.ico*) it will show up automatically if I'm correct in what I've read.
    Is this the thing you're looking for? (edit: it also shows up in your bookmarks list in firefox - if this is the one you want that's the favicon file)

  • How to create an MenuBar that stays at the top of the browser windows?

    We are trying to develop a screen in WDA. It has a menu (UI element MenuBar) at the top. Based on the menu selection it calls a WDA to display below the menu. The requirement is to have the menu bar be stationary. The bottom container (TransparentContainer) with the WDA object is allowed to scroll, but the menu on top should not move. The scrolling should be dynamic based on the browser window. The bottom WDA can have more data then can fit on the screen.
    How can we make the menu stationary and the called WDA scrollable? The scroll bars should automatically update due to different browser window sizes.

    Hi,
    Thanks for your response. Our system is functioning on SAP Ver. 7.00, Service Pack 16. I do not know when or if we will be getting the upgrade to 7.01 or 7.02.
    As far as separating the menu and the actual view, each menu selection leads to the loading of a different WDA view inside the TransparentContainer by dynamically linking the ViewContainerUIElement to different WDA views. The trouble here is that when the View becomes too large, we will have to scroll off to the right or down to see additional content. This results in the menu not being accessible unless we scroll back. The requirement is to have the menu stay at the top of the page no matter how the user scrolls through the secondary view container below the MenuBar element.
    So far our best solution was to place an arbitrary pixel size to the TransparentContainer of the view, generating in-window scroll bars for the menu-controlled view. The MenuBar always stays visible because it is on top of the scrollable container. However, with varying screen sizes, set-pixel-size is not an ideal solution. I am hoping that there is a more elegant solution than set pixel size since % does not work with height size setting.
    Are there any ways to achieve this via 7.00 layout settings? Or perhaps a method to detect browser window size? Any ideas are greatly appreciated.

  • What metadata is saved within the Quicktime file from the Browser window?

    I'm wondering if anybody could provide a list which contains the metadata that's saved in relation to the available columns in the browser window in Final Cut.
    For example, I know if I change a clip's Reel name, that information is saved into the actual Quicktime file so if I bring that file into a new project, FCP's Reel column will automatically display the new Reel name.
    On the flipside, information such as "Angle" doesn't seem to be saved. Curious as to what's saved and what isn't.

    If you rename the clip in the Browser, that does not affect the captured file. But, if you change the reel name, it is. However, any log notes or things you add in the columns after you capture won't be included in the clip if you import that from the raw file. HOWEVER, it will be attached if you drag the clip from one project to the new one.
    Shane

  • Want to play WOW-how do i make the browser windows fill whole screen??

    Have been a pc user all my life and just got a MacBook Pro. When i used to connect to the internet the browser window would fill the whole screen. This may seem like a stupid question but how do i make this happen on the mac? And to do the same for things like iMovie maker etc. My son says world of warcraft needs to be played on the whole screen and not just in a small box.
    Have tried adjusting the display etc but that makes things look distorted. Is there another way? Help!
    Thanks to anyone who helps!

    Press Cmd+M if you want to play it in full screen mode. If you want a bigger window for windowed mode just drag the little thngy at the bottom right of your WoW window and you will be able to resize it. Hope this helps

  • Download blob as pdf. Display inline in new browser window

    I am using the standard functionality of loading blob data, using a browse/upload item, and retrieving blob data using a report on a blob column. One of the settings when setting up upload and retrieval column attributes is called "CONTENT DISPOSITION". If I set it to "INLINE" the file downloads when clicking the "DOWNLOAD" link and displays in the appropriate viewer, e.g. for PDFs it's the browser window. How do I get the PDF file to display in a NEW browser window so the user does not have to leave apex?
    Paul P

    Alternatively, do pdf's already render in the browser window?
    http://www.mydigitallife.info/2007/06/17/disable-pdf-from-opening-in-web-browser-ie-firefox-opera-safari/
    Trent

  • Link That Displays Item In New Browser Window

    Hi,
    We use Oracle Portal Version: 10.1.4.0.0 (Build: 594).
    We've found that the following setting doesn't seem to work.
    Link That Displays Item In New Browser Window
    Even with that set on items, items ALWAYS open up in the same window,..not a new one.
    Has anyone else experienced this or is it just us?
    thanks

    Hi, this is a "bug". You need patch 5026969 to solve it.
    More info is in note 358722.1 - Items Are Opened In The Same Browser Window Even Though The Option 'Link That Displays Item In New Browser Window' Is Set.
    Regards, JW

  • Changing the Title of the Browser window dynamically in WDA

    Hello All,
    I have a window created in WDA where I am looking at the possibility of changing dynamically the title displayed on the Browser window. I am aware that this title is derived from the description of the application created for the WD component.
    Is there any way to modify this title/description at any point in the flow?
    Thanks & Regards,
    Sharat.

    >
    Hagen Eck  wrote:
    > Hi Sharat,
    >
    > if you're on NW 7.02 or 7.20 you can use method SET_WINDOW_TITLE of interface IF_WD_APPLICATION. In a View's method this looks like:
    >
    >  
    DATA: lr_appl TYPE REF TO if_wd_application.
    >
    >   lr_appl = wd_comp_controller->wd_get_api( )->get_application( ).
    >   lr_appl->set_window_title( 'This is an overwritten title text.' ).
    > Hth,
    > Hagen
    Important to note to people who aren't SAP employees using this forum that NW 7.02 and 7.20 are not available yet. They are still within internal development at SAP. Ramp-Up for these releases are not scheduled to begin until Q4 2009 at the earliest.

  • Scrolling issues within the browser window

    How do I stop my screen from being able to scroll all the way to the right once the site is published?
    Not sure If that explains it very well, I have just published my site using the business catalyst and everything displays correctly, the only problem I have is that the bottom horizontal scoll bar on the browser window allows me to scroll all the way of the page to the right?
    Hope this makes sense!
    Thanks
    Mark

    Could you please check if you have some object (may be transparent object) outside the pge on the right? It might either be on the page or on Master page.
    Could you please provide us the Website URL where you are facing the isue. It will help us understand the issue better.
    Regards,
    Sachin

Maybe you are looking for

  • Adobe Photoshop Elements 12 won't update

    Hi! I installed Adobe Photoshop Elements 12 and Premiere Elements 12 from DVD to my new iMac that is running OS X Maverics. Elements Organizer is crashing quite often and I found out that at least in some older versions the ElementsAutoAnalyzer might

  • Is there a limit on the size of the input for the Solve Linear Equations block?

    Hello, I'm trying to figure out why the Solve Linear Equations block will properly function with some sets of data and why it won't with others. What my program is doing is taking a signal and comparing it with a batch of sine and cosine waves to try

  • How to setup Cost Centres driven purchasing approval Hierarchy

    Hi Guys, My client has a Cost Centre set as a segment of their Key Flexfield Every Approver has cost centre limited approval limit attached Eg: Approver AAA can approve upto 100$ for cost centre 1111 only Approver BBB can approve upto 200$ for cost c

  • Keeping 2 Report Footers Together on Condition

    Hi, I have a layout with two report footers. report footer b has the "print at bottom of page" propetry checked. 1. Can i keep together 2 different report footers? 2. If not, can i create a rule so that if there is enough room for both report footers

  • CFCHART no longer works

    No CFCHARTS are rendering since updating to 7.0.2. I've tried a couple related hotfixes to no avail and am pretty much stuck. It doesn't matter what browser (tried IE & Firefox) but it DOES create the temporary swf in the charting cache. Here's my se