Viewing PDF in Browser.

Hi,
I'm in a bit of a hurdle here. I have a PDF file on the server which I want to display in the browser immediately after the user enters the page.
When the I go to the page I get the following error: "Acrobat could not open '_home_appsamba_kkristoff_KKR_TEST_2010-09-01[2].pdf' because it is either not a supported file type or because the file has been damaged. ...".
If I copy the pdf file from the server and opens it on my own machine it works fine. o_O
Some facts:
JDeveloper 9i RUP7
XML Publisher 6.5.3
APPS 11.5.10 CU2
OS: Linux
File path on linux: /home/appsamba/kkristoff
I hope someone can assist me.
Thank you in advance.
Kenneth
The code:
package bksv.oracle.apps.bkfnd.bkrepgw.webui;
import oracle.apps.fnd.common.VersionInfo;
import oracle.apps.fnd.framework.webui.OAControllerImpl;
import oracle.apps.fnd.framework.webui.OAPageContext;
import oracle.apps.fnd.framework.webui.beans.OAWebBean;
import oracle.apps.fnd.framework.OAApplicationModule;
import oracle.apps.fnd.common.AppsContext;
import oracle.apps.fnd.framework.server.OADBTransactionImpl;
import java.io.InputStream;
import java.io.FileInputStream;
import java.util.Calendar;
import java.text.SimpleDateFormat;
import javax.servlet.http.HttpServletResponse;
import oracle.cabo.ui.data.DataObject;
* Controller for ...
public class ReportGenerationCO extends OAControllerImpl
  public static final String RCS_ID="$Header: ReportGenerationCO.java 115.1.1 2010/08/31 13:22:00 kkristoff $";
  public static final boolean RCS_ID_RECORDED =
        VersionInfo.recordClassVersion(RCS_ID, "%packagename%");
   * Layout and page setup logic for a region.
   * @param pageContext the current OA page context
   * @param webBean the web bean corresponding to the region
  public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    DataObject sessionDictionary = (DataObject)pageContext.getNamedDataObject("_SessionParameters");
    HttpServletResponse response = (HttpServletResponse)sessionDictionary.selectValue(null,"HttpServletResponse");
    //Get application context
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    AppsContext appsContext = ((OADBTransactionImpl)am.getOADBTransaction()).getAppsContext();
        //Initilization//   
    try {
      InputStream inputStream = new FileInputStream("/home/appsamba/kkristoff/KKR_TEST_2010-09-01.pdf");
      String sByteArray = inputStream.toString();     
      byte[] outputBytes = sByteArray.getBytes();
      String contentDisposition = "attachment;filename=/home/appsamba/kkristoff/KKR_TEST_2010-09-01.pdf";
      response.setHeader("Content-Disposition",contentDisposition);
      response.setContentType("application/pdf");
      response.setContentLength(outputBytes.length);
      response.getOutputStream().write(outputBytes, 0, outputBytes.length);
      response.getOutputStream().flush();
      response.getOutputStream().close();
     } catch (Exception e)
        //throw new OAException("An Error has occured master: " + e.getStackTrace().toString(), OAException.ERROR);
   * Procedure to handle form submissions for form elements in
   * a region.
   * @param pageContext the current OA page context
   * @param webBean the web bean corresponding to the region
  public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
}

Hi,
Thank you for that reply. It turned out that it WAS the conversion to bytes.
The following code works:
package bksv.oracle.apps.bkfnd.bkrepgw.webui;
import oracle.apps.fnd.common.VersionInfo;
import oracle.apps.fnd.framework.webui.OAControllerImpl;
import oracle.apps.fnd.framework.webui.OAPageContext;
import oracle.apps.fnd.framework.webui.beans.OAWebBean;
import oracle.apps.fnd.framework.OAApplicationModule;
import oracle.apps.fnd.common.AppsContext;
import oracle.apps.fnd.framework.server.OADBTransactionImpl;
import java.io.InputStream;
import java.io.FileInputStream;
import java.util.Calendar;
import java.text.SimpleDateFormat;
import javax.servlet.http.HttpServletResponse;
import oracle.cabo.ui.data.DataObject;
*bold*import java.io.ByteArrayOutputStream;*bold*
* Controller for ...
public class ReportGenerationCO extends OAControllerImpl
  public static final String RCS_ID="$Header: ReportGenerationCO.java 115.1.1 2010/08/31 13:22:00 kkristoff $";
  public static final boolean RCS_ID_RECORDED =
        VersionInfo.recordClassVersion(RCS_ID, "%packagename%");
   * Layout and page setup logic for a region.
   * @param pageContext the current OA page context
   * @param webBean the web bean corresponding to the region
  public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    DataObject sessionDictionary = (DataObject)pageContext.getNamedDataObject("_SessionParameters");
    HttpServletResponse response = (HttpServletResponse)sessionDictionary.selectValue(null,"HttpServletResponse");
    //Get application context
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    AppsContext appsContext = ((OADBTransactionImpl)am.getOADBTransaction()).getAppsContext();
        //Initilization//   
    try {
      InputStream inputStream = new FileInputStream("/home/appsamba/kkristoff/KKR_TEST_2010-09-01.pdf");
      *bold*ByteArrayOutputStream localOutputStream = new ByteArrayOutputStream();*bold*
      *bold*int localByte = 0;*bold*
      *bold*while((localByte = inputStream.read()) != -1) {*bold*
          *bold*localOutputStream.write((char)localByte);*bold*
      *bold*}*bold*
      *bold*byte[] localByteArray;*bold*
      --strike--String sByteArray = inputStream.toString();--strike--     
      --strike--byte[] outputBytes = sByteArray.getBytes();--strike--
      String contentDisposition = "attachment;filename=/home/appsamba/kkristoff/KKR_TEST_2010-09-01.pdf";
      response.setHeader("Content-Disposition",contentDisposition);
      response.setContentType("application/pdf");
      --strike--response.setContentLength(outputBytes.length);--strike--
      *bold*response.setContentLength(localByteArray.length);*bold*
      --strike--response.getOutputStream().write(outputBytes, 0, outputBytes.length);--strike--
      *bold*response.getOutputStream().write(localByteArray, 0, localByteArray.length);*bold*
      response.getOutputStream().flush();
      response.getOutputStream().close();
     } catch (Exception e)
        //throw new OAException("An Error has occured master: " + e.getStackTrace().toString(), OAException.ERROR);
   * Procedure to handle form submissions for form elements in
   * a region.
   * @param pageContext the current OA page context
   * @param webBean the web bean corresponding to the region
  public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
}

Similar Messages

  • Problem with LTKRN11N.dll after enabling "View PDF in Browser" option

    Good afternoon,
    I'm trying to install an internal business application on one of our office PC's but keep getting errors during the install.  The two errors I receive are:
    The ordinal 267 could not be located in the dynamic link library LTKRN11n.dll
    The ordinal 173 could not be located in the dynamic link library LTDIS11n.dll
    I've narrowed the problem down and can repeat it...it seems to be the result of enabling the option "View PDF in Browser" in the preferences of Adobe Reader 9.3.  Simply unchecking the option does not fix the problem and neither does uninstalling Adobe or the other application.  So far, the only answer has been to re-image the machine without the option, install the other application and then enable the option (if needed) however, once the option has been enabled, any further attempts to install the application, will fail, reuquiring a re-image.
    Any help with how Adobe uses these dlls or what might remedy the problem would be greatly appreciated.
    Thanks,
    Matt

    It looks like the 2 DLLs you mentioned, are getting corrupted or modified due to some operation that might have been performed on them. Can you please try the below mentioned instructions and see if that gets your application to install without any errors:
    1. Try installing your business app.
    2. When you see the error message as stated, try running the below mentioned commands: (Start | Run | Type cmd and hit Enter)
        regsvr32 LTKRN11n.dll /i /s
        regsvr32 LTKRN11n.dll /s
        regsvr32 LTDIS11n.dll /i /s
        regsvr32 LTDIS11n.dll /s
    3. The above commands should fix the issues in the mentioned DLLs and allow normal installation of your business app.
    Hope this gets your app to work and install properly.

  • Updating to 7.10 disabled viewing pdf in browser

    updating to 7.10 disabled viewing pdf in web browser which is working normally in 7.09 no matter settings in preference, internet, are all marked to view pdf in browser and allow fast web view etc, every pdf links are opened in a new acrobat window which is something I DON'T WANT.
    how is it possible to return it to a normal state to view pdf in browser ?

    <[email protected]> wrote in message <br />news:[email protected]..<br />> ...<br />> Is it possible to do this? (i.e configure the reader only to show<br />> the content without toolbar/option bar)?<br />> ...<br /><br />Since you are producing the PDF, take a look at the ViewerPreferences <br />dictionary in the PDF Reference Manual; for PDF 1.4 it's section 8.1.<br /><br />> ...<br />> Now, I'd like to prevent the users to be able to save the<br />> displayed PDF, because they should be allowed only to read them.<br />> ...<br /><br />However (a) that's only a preference, the viewer may honor it or not, (b) F8 <br />is still there to put the bar back, and last but not least (c) it won't <br />prevent making a copy of the file, but I'm sure it will irritate a lot of <br />your clients (lack of navigation/ zoom/ etc buttons, for one thing).

  • Can't view PDF in browser

    Running FireFox 3.6.8 - Can't view PDF files in browser. Get a messgae that basically says "Can't not display PDF file in browser. Exit Reader and your browser and try again."

    I think this message should go to all who contacted me, and for that I thank you.
    It seems I have found the problem, or at least I can now view PDF files. I disabled the FireFox Plug-in "Adobe Acrobat 9.3.4.218" which is described as "Adobe Acrobat Plug-In for FireFox and Netscape 9.3.4".
    Not being a genius at computers, I really don't know what has happened. I just know that I went into the "Tools/Addons/Plug-ins" section of FireFox and disabled the above plug-in and the next thing I know I could view PDF files.
    Again, thanks to all for trying to help

  • Viewing pdf in browser window

    I know this problem has been addressed in NUMEROUS other threads, but I've read through at least 20 of them now, including threads elsewhere on the web, and NONE of them solve my problems. Neither Safari 3.1.2 or Firefox 3.0.1 will open pdfs within a browser window on my machine (OS 10.4.11, PowerBook G4, pre-Intel chip). I have Adobe Reader 9.0.0 installed, but both the "display pdf in browser using" and "allow fast web view" options are turned off. I have also removed any Adobe pdf plugins from my user/Library/Internet Plug-Ins and /Library/Internet Plug-Ins folders. In an attempt to get things to work, I downloaded and installed PDF Browser Plugin 2.2.3. This plugin is in both folders, and both browsers recognize that the plugin is installed. But both still insist on opening pdf through Adobe Reader. I can get both browsers to open pdfs using the plugin if I use the "open with" option on a pdf and request either Safari or Firefox. In these cases, the pdf will open seemlessly within the browser window. But any time I try to open a pdf through a website, Safari immediately saves to disk and Firefox asks me what I want to do with it (save or open in Reader). There's kind of a workaround in Firefox: if I specify that pdfs be opened by Firefox instead of Reader, they will open automatically in Firefox when I click on them, but they actually get downloaded to my desktop and then opened in a new browser window, so they're not really being opened within the browser--and my desktop ends up cluttered with pdfs that I don't want.
    I'm at the end of my rope here, so if anyone has any ideas I'd appreciate hearing them.
    Thanks,
    jd

    First off, thanks for the help. It appears that things are working now, for the most part--the odd behavior was specific to the particular online pdf file that I happened to be using to test things. I wasn't control clicking on that one, and it still insisted on downloading. But all other pdfs appear to behave normally. Which really does solve my problem, since the right-click option in Safari to "view in Preview" gives me all the functionality that I get with Reader, only quicker.
    But just to convince you I'm not crazy for expecting pdf-viewing menus in my browser window, this is from Safari Help:
    "When you click a link for a PDF file, Safari displays it in your browser window and provides a toolbar to help you view the file... To view the toolbar, put the mouse pointer in the middle of the PDF page, near the bottom. If you move the pointer away from the toolbar, it disappears after a moment. The toolbar has four icons. Point to each icon to see a label."
    I don't get the toolbar. I still have some control through the ctrl-click menu, but no toolbar. The same goes for the google pdf browser plugin. This is from Schubert IT:
    "The Schubert|it PDF Browser Plugin perfectly integrates into your web browser and with its great Mac look & feel it looks like it always belonged into it. Easy to use and intuitive toolbar buttons give you quick access to the most common features, and a standard Action menu lets you access everything else – even while the toolbar is hidden in cases when you need the maximum screen real estate."
    I can't find the toolbar anywhere.
    As for OSX being superior to Windows in every regard, I am pretty much inclined to agree with you. Generally Mac deals with pdfs much more smoothly, which is why I was frustrated with my problem. I still think that the Windows browsers play better with Adobe Reader--the integration of Reader into the browser window seems pretty nice on my PC at work. But I'm happy with the solution you've given me, and I'll stay away from Reader in the future. And once I realize how much better life is without Reader, I'll have yet another reason to hate going to work.

  • Viewing PDFs in browser on a Mac with Firefox 16

    I have Firefox 16.0.2 because it's the latest version compatible with with Mac OS 10.5. I'm not willing to upgrade my Mac right now because it works perfectly fine (aside from not being compatible with stuff), and I don't feel like paying or going through the hassle. I'm so far behind right now that I would have to update my operating system at least three times to get up to date. I used to have some sort of plug-in or extension that allowed me to view PDFs in my browser. It was buggy, but it was working up through yesterday. Then I was having some issues, no idea what they were, and ended up having to reset Firefox. I lost all my add-ons. I have been unsuccessful in finding whatever it was I had before. Is there ANY possible way I can view PDFs in my browser? This is driving me absolutely nuts.

    Not really interested in switching my operating system at the moment. The only real problem with it is back compatibility of certain things (like updated versions of Firefox, for example), but for my everyday use it doesn't cause a problem. The only real thing that's annoying me at the moment is the fact that the PDFs open in Adobe instead of in Firefox, but that's not really worth the hassle of installing a new operating system for.

  • Cannot view pdf in browser

    can no longer view pdf in safari or firefox browser. Pdf's on hard drive can be viewed.

    Then you should have no problem. Provide a link to a pdf you can't view.

  • Problem viewing PDFs on Browser in 10.1.3

    I can't download or preview PDFs on browser since installing Adobe Reader 10.1.3 on my MacBookPro OS 10.7.2. The Internet option in the Adobe Reader preferences does not allow me to click on the Display PDF in Browser. The box is shadowed. Not sure how to proceed to fix this problem. I use Firefox 6.0.

    Taken from: http://helpx.adobe.com/content/dam/help/attachments/Acrobat_Reader_ReleaseNote_10.1.3.pdf
    Dropped support for:
    • All versions of Firefox prior to 10.0.

  • Problems with links/email addresses when viewing PDF in browser ONLY

    Hi,
    I have just sent a pdf document with an email address in.  There appears to be a strange issue: if that pdf file is downloaded and viewed in Adobe Reader the mailto links behind the text email addresses work as normal ([email protected]).  However, when that pdf is viewed directly in the browser (Chrome on Windows 7) using the built in pdf viewer all the double letters in the mailto are removed (eg. [email protected]), however the text itself is unchanged.
    There are two examples of this in two situations, both double letters. 
    I've just tried a test with '[email protected]' as the test address.  Again, the mailto link shows as "mailto: [email protected]".  Removing the first double letter, but keeping the second!
    Any suggestions?
    Thanks,
    Matthew

    Sorry, you will have to complain to Google about this; Adobe has nothing to do with the Chrome PDF viewer.
    Or configure Chrome to use the Adobe Reader plugin: http://helpx.adobe.com/acrobat/kb/pdf-browser-plugin-configuration.html

  • IE11 on 2012r2 crashes when viewing PDFs in browser

    Hi
    I'm trying to deploy Foxit Reader Enterprise 6.1.2.1224 on our terminal services running 2012 R2 with IE11, but every time I try to view a PDF in the browser it just crashed with an access violation c0000005 in Foxitreaderbrowserax.dll (2.2.3.1216). I've also
    checked each setting in Foxit to see if that made any difference. I get to see the ATL 3.0 FoxItCtl message in the browser just before it crashes.
    Also I found the logs from event viewer regarding Foxit PDF Reader.
    Faulting application name: IEXPLORE.EXE, version: 11.0.9600.16518, time stamp: 0x52f347b2
    Faulting module name: FoxitReaderBrowserAx.dll, version: 2.2.3.1216, time stamp: 0x52ae9eae
    Exception code: 0xc0000005
    Fault offset: 0x0001024b
    Faulting process id: 0x1dfc
    Faulting application start time: 0x01cf2ca70d91ae99
    Faulting application path: C:\Program Files (x86)\Internet Explorer\IEXPLORE.EXE
    Faulting module path: D:\Foxit Reader\plugins\FoxitReaderBrowserAx.dll
    Report Id: 4b751280-989a-11e3-80cf-00155d425d08
    Faulting package full name:
    Faulting package-relative application ID:
    Do anyone have a clue to how to fix this?
    Thanks in Advance.
    /Harish R.

    Found the solution!
    You Just need to untick "enable protected mode" checkbox in IE settings, security tab.
    There is a registry you can edit: 
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\3]
    "2500"=dword:00000003
    3 = turn off. 0 = turn on.
    If you don't want to be bugged by pop-up window that says something like "you computer is at risk, turn the mode on", there's a registry for that too:
    [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main]
    "NoProtectedModeBanner"=dword:00000001
    1 = turn of banner. 0 = turn on banner 
    If it helps, vote my reply :)
    Hi,<o:p></o:p>
    What i can to do if in the register haven´t this [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet
    Settings\Zones\3]
    "2500"=dword:00000003 
    and 
    [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main]
    "NoProtectedModeBanner"=dword:00000001<o:p></o:p>
    When I disabled all IE policy get FoxitReader
    Control running task. After run control PDF open fine. Then I enable policy´s again and make gpupdate. Log off - log on computer and try open PDF with IE 11, works. How explain this?
    <o:p></o:p>

  • Unable to View PDF in Browser from a Servlet.

    Hi,
    I am facing a problem while trying to dynamically generate PDF from a Servlet and display it in the browser(IE 6.0 sp2)
    The scenario is as follows:
    i have a link which on clicking (using javascript) moves to a Servlet(say Dispatcher Servlet).This servlet forwards the control to another Servlet(say PDF Renderer Servlet) which generates the PDF and tries to display the results to the browser.
    The PDF does get generated.
    However in the pop-up i get a alert message to either open or save the PDF.But when i try to do so the message i get is that IE failed to communicate with the server.
    The code i am using to display the PDF is as follows
    ByteArrayOutputStream outfile = pdfTransformer.transform(xmlString,container);
    byte[] content = outfile.toByteArray();
    response.setContentType("application/pdf");
    response.setContentLength(content.length);
    response.setHeader("Content-Disposition", "inline; filename=\"" + pdfName + "\"");
    ServletOutputStream out= response.getOutputStream();
    out.write(content);
    out.flush();
    out.close();
    Any suggestions would be a great help.
    Thanks

    Hi,
    I have the same code as Viv above and I am generating pdf using fdf file format. the code works upto the point where it generates pdf. I am not setting the header to open the file in the same browser or new window:
    (not in my code)
    response.setHeader("Content-Disposition", "inline; filename=\"" + pdfName + "\"");it was working fine last week and now it starts to give a pop up box with only one option of saving the pdf file, there is no option to open it. when I save it the data in the file is lost, its just a fblank form. I am using IE 6.0.2900
    any suggestions?
    Ali

  • Before viewing PDF documents in this browser you must first launch Adobe Reader and accept the End User License Agreement, then Quit and relaunch the browser.

    Using Google Chrome, when attempting to open a PDF document, the following message appears:
    Before viewing PDF documents in this browser you must first launch Adobe Reader and accept the End User License Agreement, then Quit and relaunch the browser.
    On my Mac, there is no way to just open Adobe Reader and accept the ELUA.

    Hi Wade Perkins,
    Please refer cant view pdf in browser.
    Thanks.

  • Browser Crashing when opening PDF inside Browser

    I have a Windows XP Pro SP 3 with IE 7 , Acrobat Pro 9.
    My issue is that whenever I open a PDF inside the browser I get a error message stating that the browser crashed / stopped responding and needs to close.  The work around that we have been using was simply inside Adobe going to  edit> preferences> internet> unchecking view PDF in browser.
    We are launching a new application that requires a PDF to be displayed inside a browser.  Any help would be greatly appreaciated.
    This issue also happens with Firefox, and I have removed and reinstalled adobe several times.
    Thanks,
    Adam

    To clarify what you posted:
    When opening the PDF document, your browser closes. When pressing the control key and opening the document, you get a dialog window (with the choices of open or save). What happens when you select open?
    This is browser behavior, nothing to do with this being a PDF file. Which browser and which platform? If you are using IE7, popup blocker is automatically enabled, and if you are viewing this on a 2003 server, you have server security settings to override. Pressing the control key allows popups.

  • AdobeAcrobat/Reader that is running can not be used to view PDF Files in Web Browser...what do I need to do to fix this..

    I just got Windows 7 and have been having problems since loading it. Most of my drivers only go to Vista and don't recognize 7.
    I have trying to download some manuals from their website
    and keep getting this message; Adobe Acrobat/reader that is running can not be used to view PDF files in Web Browser.

    Could I suggest a workaround for PDFs until a solution is posted? Open them directly in the Adobe application rather than in a browser tab.
    In your Adobe application(s), go to:
    Edit > Preferences > Internet
    Then uncheck "Display PDF in browser"
    (There are very few sites where having PDF integrated is really beneficial.)

  • Chrome - Adobe-Acrobat/Reader can not be used to view PDF files in a web browser.

    I can't view PDF files via Chrome (it works on Internet Explorer but I prefer Chrome)  -  the error below has arisen recently on Chrome, though I can't see what has changed.
    "Acrobat plug-in
    The Adobe-Acrobat/Reader that is running can not be used to view PDF files in a web browser. Please exit  Adobe Acrobat/Reader and exit your Web Browser and try again."
    I have looked through Forum articles on similar errors and have tried the following(text copied from other Forum entries)
    Repair Adobe Acrobat (from Acrobat)
    Repair Adobe Acrobat (from Control Panel
    Configure Acrobat  as a helper application: Choose Edit > Preferences., Select Internet on the left., Deselect Display PDF In Browser Using [Acrobat application], and then click OK.Quit Acrobat or Reader
    Create a registry item for Acrobat: with Regedit: If the registry item doesn't exist on the system, do the following: Go to Edit > New > Key and create the missing HKEY_CLASSES_ROOT\Software\Adobe\Acrobat\Exe.Go to Edit > New > String Value and name this key (Default).Select (Default), and then go to Edit > Modify. Type the Adobe Acrobat path in the "Value data" for your product.,restart your computer
    Repair the HKCR\AcroExch.Document registry key: Navigate to HKEY_CLASSES_ROOT\AcroExch.Document., Right-click AcroExch.Document and select Delete; make sure that you have the correct key, and click Yes on any prompts, Right-click AcroExch.Document.7 and select Delete; make sure that you have the correct key, and click Yes on any prompts. Repair your Acrobat  installation
    None has solved the problem. However it still works ok with IE. But I want to stick with Chrome because I find IE is so slow!
    I am using Vista, with Adobe Acrobat standard 9.5.2 and Google Chrome version 23.0.1271.64 m which is marked on Chrome as 'up to date'
    Does anyone know why I might be getting this error on Chrome but not IE?

    I think I have discovered the answer to my own question!
    I have disabled Adobe Reader plug-in, and can now see PDFs in Chrome.
    (Steps: Chrome Menu, Settings option, Click Advanced Settings link, then Content Settings button, then select Disable Individual Plug-Ins, and a list of plug-ins is offered to enable or disable).
    I then get a different result depending on whether or not Chrome PDF viewer is enabled - with it enabled I see the PDF document in Chrome, or with it disabled then the option is offered to download it, but either way I can get it it via Chrome without having to run Internet explorer in another browser window.

Maybe you are looking for

  • Near last question, need to know bout best way to do this...

    Thanks for the replies...this is all coming into focus now, and I cannot thank you enough for all your previous replies. Just to nail this down, and try to avoid confusing myself as ive seem to be quit apt to do on this subject matter. I have had ano

  • Binary decoration in Extend client

    Is it possible to somehow intercept a simple put() operation at the client and to decorate the Binary objects produced by POF serialization? The goal here is to pass metadata that is not a part of the cached state and yet is available to be processed

  • Dimensional Reuse and Discoverer

    Is there any sample code around anywhere for this? My requirement (a common one, I believe) is to use multiple date roles on top of a single physical calendar. Incidentally, the OWB metadata will end up in Discoverer. Obviously, that will translate t

  • Opening Multiple Windows in Preview

    Does anyone know how I can open a bunch of photos in different individual windows without opening each picture individually? When you double click a bunch of highlighted photos all at one time you end up with one picture in one preview window and all

  • Website images not displaying whe uploaded

    Hi, i created a very simple website using dreamwaver, everything looks fine when i preview it but when i upload it the images are not there.                        Here's the link http://peeweet.com/, however when i upload it to a different folder li