Servlet-client file serialization and Internet Explorer

I've written a servlet that serializes a multi-page tiff file to the requesting user-agent. The servlet works fine with Firefox and Netscape Navigator, opening a dialog to launch the default handler applicaton for the "image/tiff" MIME type, but Internet Explorer chokes on the output, popping up an error dialog that states the following:
Internet Explorer cannot download <icn>.tif from <hostname>
Internet Explorer was not able to open this Internet site. The requested site is either unavailable or cannot be found. Please try again later.
This is on top of a File Download dialog that shows the <icn>.tif being downloaded and a status of "Getting file information"
Here's my servlet code:
* Created on Apr 29, 2005
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
package eds.chico.ddm.web;
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.rmi.RemoteException;
import javax.ejb.CreateException;
import javax.ejb.RemoveException;
import javax.naming.Context;
import javax.naming.InitialContext;
import javax.naming.NamingException;
import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import eds.chico.ddm.interfaces.ClaimFinder;
import eds.chico.ddm.interfaces.ClaimFinderHome;
* Servlet Class
* @web.servlet              name="ImgSerialize"
*                           display-name="ImgSerialize"
*                           description="ImgSerialize Servlet"
* @web.servlet-mapping      url-pattern="/ImgSerialize"
* @web.servlet-init-param  description="Buffer size used for io during image serialization"
*                                    name="buffSize"
*                          value="512"
* @web.ejb-ref
*           name="ejb/ClaimFinderHome"
*           type="Session"
*           home="eds.chico.ddm.interfaces.ClaimFinderHome"
*           remote="eds.chico.ddm.interfaces.ClaimFinder"
*           description="Reference to the ClaimFinder EJB"
* @jboss.ejb-ref-jndi
*           ref-name = "ejb/ClaimFinderHome"
*           jndi-name = "ejb/ClaimFinderHome"
public class ImgSerialize extends HttpServlet {
     private static final long serialVersionUID = 1;
     private ClaimFinderHome cfHome;
     private ServletConfig cfg;
     public ImgSerialize() {
          super();
          // TODO Auto-generated constructor stub
     public void init(ServletConfig config) throws ServletException {
          super.init(config);
          this.cfg = config;
          try {
               Context ctx = new InitialContext();
               cfHome = (ClaimFinderHome)ctx.lookup("java:comp/env/ejb/ClaimFinderHome");
          } catch (NamingException e) {
               throw new ServletException("EJB Lookup failed", e);
     protected void doGet(HttpServletRequest req, HttpServletResponse resp)
          throws ServletException,
          IOException {
          processRequest(req, resp);
     protected void doPost(
          HttpServletRequest request,
          HttpServletResponse response) throws ServletException, IOException {
          processRequest(request, response);
     private void processRequest(HttpServletRequest req, HttpServletResponse resp) throws ServletException {
          String icn = req.getParameter("icn");
          ClaimFinder cf = null;
          String claimPath = null;
          try {
               cf = cfHome.create();
               claimPath = cf.getClaimPath(icn);
               cf.remove();
          } catch (CreateException e) {
               throw new ServletException("Unable to instantiate ClaimFinder EJB", e);
          } catch (RemoteException e) {
               throw new ServletException("ClaimFinder remote exception", e);
          } catch (RemoveException e) {
               // Hmmm... probably okay to do nothing
          if (claimPath == null) {
               throw new ServletException("claimPath is null after lookup");
          File imageFile = new File(claimPath);
          byte[] buff = new byte[new Integer(cfg.getInitParameter("buffSize"))];
          try {
               BufferedInputStream bis = new BufferedInputStream(new FileInputStream(imageFile));
               resp.setContentType("image/tiff");
               BufferedOutputStream bos = new BufferedOutputStream(resp.getOutputStream());
               while (bis.read(buff) != -1) {
                    bos.write(buff);
               bis.close();
               bos.close();
          } catch (IOException e) {
               throw new ServletException("java.io error", e);
}Unfortunately, the target users for this application will be using Internet Explorer, so I must find a way to make this code work with IE6. Anyone have any thoughts?
Greg Adams

// assume you have an object representing a file, mine is not coming from disk, but from a blob in the database.
     response.setContentLength( (int) file.getFileSize());
     response.setHeader("Content-Type", ResponseUtil.getContentType(file.getFileName()));
     // use inline or attachment depending upon whether you want the file to open within the browser,
     // or in a separate window.
     //response.setHeader("Content-Disposition","attachment; filename=\""+file.getFileName()+"\"");
     response.setHeader("Content-Disposition","inline; filename=\""+file.getFileName()+"\"");
        // Cache-control, some comments on different choices       
        //no cache header at all // works ok in IE and FireFox
        //response.setHeader("Cache-control", "no-cache"); // works in FireFox, but not IE       
        response.setHeader("Cache-control", "must-revalidate"); // works in IE and FireFox
        ServletOutputStream out = response.getOutputStream();
        out.write(file.getFileBytes());
   public static final String CONTENT_TYPE_GIF = "image/gif";
   public static final String CONTENT_TYPE_JPG = "image/jpeg";
   public static final String CONTENT_TYPE_TXT = "text/html";
   public static final String CONTENT_TYPE_XML = "text/xml";
   public static final String CONTENT_APPLICATION_OCTET_STREAM = "application/octet-stream";
    * By setting the response content type, we are advising the user's agent (browser)
    * which application to use to open the document, and whether or not the application
    * will run within the browser.
    * e.g., Our handling of xls files launches a dialog to open or save the xls file,
    * and the excel application is run independent of the browser.
   public static String getContentType(String filename)
      String responseContentType = CONTENT_APPLICATION_OCTET_STREAM;
      if (filename.toLowerCase().endsWith("html") || filename.toLowerCase().endsWith("htm"))
         responseContentType = CONTENT_TYPE_TXT;
      else if (filename.toLowerCase().endsWith("jpg") || filename.toLowerCase().endsWith("jpeg"))
         responseContentType = CONTENT_TYPE_JPG;
      else if (filename.toLowerCase().endsWith("gif"))
         responseContentType = CONTENT_TYPE_GIF;
      else if (filename.toLowerCase().endsWith("xml"))
         responseContentType = CONTENT_TYPE_XML;
      //TODO handle other file types
      return responseContentType;
   }

Similar Messages

  • Swf link not working in Firefox, Opera and Internet Explorer but works in Safari

    Hi,
    I'm sorry but Im a real newbie and really need help!!!
    On the homepage of my website I have put a swf file that I linked to another page in my website through the div a href link and it displays great on safari and links, however in other browsers, when i try to click on it, it comes up with the link at the bottom of the browser (where it sometimes says Done), however it doesnt actually link, it jsut stays on the homepage.
    Here is the coding i put in:
    <div id="products2">
              <p>
              <a href="Our_brands/index.html">
                <script type="text/javascript">
    AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','wid th','449','height','449','title','Products','src','Productions/boxes3','quality','high','p luginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=Shockwav eFlash','movie','Productions/boxes3' ); //end AC code
              </script>
                <noscript>
                <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="449" height="449" title="Products">
                  <param name="movie" value="Our_brands/boxesnew.swf" />
                  <param name="quality" value="high" /><param name="SCALE" value="noborder" />
                  <param name="allowScriptAccess" value="always"/>
                  <embed src="Our_brands/boxesnew.swf" width="449" height="449" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" allowScriptAccess="always" scale="noborder"></embed>
                  <br />
                  <br />
                </object>
                </noscript>
              </a>
              </p>
            </div>
    Could someone please tell me where I am going wrong?
    I would REALLY appreciate it.
    Thank you in advance!!

    I'm doing it for a client and they dont want it put up on the server yet, I wish I could put it up bc I have no idea what I'm doing!
    Basically I wanted a swf file from Flash to display a range of products (I have turned all the products into buttons) and then I put coding into all the buttons to on release getURL which work in the swf file, however when I put the swf file into dreamweaver, the buttons worked in hover state, but the action scripting didn't work to link the swf file to another page in the website (the index in Our_brands folder).
    So i decided to make it link to the index.html in Our_brands folder from wrapping the swf box in a div tag and linking the div tag <a href="Our_brands/index.html"> which links it great in Safari but wont link in Firefox, Opera and Internet Explorer.
    Does that make any sense?
    Sorry if it doesn't.
    Thanks for the quick reply as well!!!

  • SWF Object and Internet Explorer

    I am experiencing some strange behavior with a SWF Im including in the following web page:
    http://www.bostonredevelopmentauthority.org/
    The SWF displays properly on the first page visit in both Internet Explorer and Firefox.  If I navigate away to a child page, then back with the back button in the browser, the SWF no longer displays in IE.  Firefox does not exhibit this behavior.
    Any ideas what might be going on here?
    Thanks,
    Greg

    I'm doing it for a client and they dont want it put up on the server yet, I wish I could put it up bc I have no idea what I'm doing!
    Basically I wanted a swf file from Flash to display a range of products (I have turned all the products into buttons) and then I put coding into all the buttons to on release getURL which work in the swf file, however when I put the swf file into dreamweaver, the buttons worked in hover state, but the action scripting didn't work to link the swf file to another page in the website (the index in Our_brands folder).
    So i decided to make it link to the index.html in Our_brands folder from wrapping the swf box in a div tag and linking the div tag <a href="Our_brands/index.html"> which links it great in Safari but wont link in Firefox, Opera and Internet Explorer.
    Does that make any sense?
    Sorry if it doesn't.
    Thanks for the quick reply as well!!!

  • Problem with ExternalInterface.call and Internet Explorer

    Hi, I´m developing a site, (
    www.gen-studio.com/avelart2
    ), and I´m using a swf to display a set of thumbs that when
    clicked show an item and its description on the browser, those
    items might be images or video, everything works fine with the
    images.
    And actually it works fine with the videos too, when using
    Firefox, but when I test the page on Internet explorer it just
    doesn’t work!
    On principle let me describe how it´s supposed to work,
    a thumbnail when clicked sends an id number to javaScript using
    ExternalInterface.call(“myFunction”,myId); -I´m
    using AS3 for the swf´s-
    the javaScript file has already loaded (ever since$(
    document).ready) a XML file which uses to match the id with a file
    and the description, if the item to show it´s a video, then it
    creates a variable which holds a string with the proper html to
    embed a swf (a swf movie player that resides just next to the HTML
    file), when loaded, the swf movie player uses
    ExternalInterface.call() to ask for the source of the video that
    has to play, and that function is as follows:
    setVideo: function(){
    alert("hola");
    return comun.miVideo;
    (The alert(“hola”); is just to test that the
    function is being called), which it is, but it returns null as a
    value instead of the proper string, and this happens only on
    internet Explorer, but works correctly on Firefox.
    I´ve been reading all day about the subject and found a
    few interesting things, which though have made me narrow my
    problem, they haven´t just provided me with a solution, what I
    found so far:
    -I must have in account flash security issues: Checked (my
    actionScript follows:)
    import fl.video.*;
    import flash.external.ExternalInterface;
    flash.system.Security.allowDomain("*");
    var vid:FLVPlayback = this.miPlayer;
    vid.source =
    flash.external.ExternalInterface.call("comun.setVideo");
    -ExternalInterface and Internet explorer don´t work
    properly when tested locally: Checked (I have a server on my PC and
    I´m testing the site as well in the above direction).
    -The object tag holding the swf must have a proper id
    attribute: Checked.
    -It´s super important the way the object tag is formed:
    Checked, and I also tested the tag separately (I put it directly in
    the HTML instead of adding it via javaScript) and it worked as
    expected in both Firefox and Internet Explorer, which leads me to
    believe:
    -I read somewhere that if you add the object tag by using
    innerHTML or appendChild, returning values from javaScript to swf
    won´t work, but I couldn´t find an explanation nor a
    solution.
    Well, as I said now I´ve been looking all day for an
    answer, so I really hope you can help me or give me some advice on
    the subject, thank you so much for your time!

    Hi! it solved itself !! (nahh, I wish), but it indeed had a
    solution, it was something quite simple, and I don´t really
    understand why it was not working in the first place, but here is
    the thing:
    I´m learning jquery and this is the first proyect
    I´m officially using it, so I was using
    $('#myDIV').append("string"); to embed the swf, (and it was working
    perfectly on Firefox), so since I had narrowed my problem to those
    lines, I decided to try some good-old-fashioned-javaScript and
    changed it for: var myDiv =
    document.getElementById('thatParticularDiv'); myDiv.innerHTML =
    ('string'); and it worked both in Firefox and IE !!!!!! :)
    I´m quite happy about it, and if someone knows
    what´s the issue with my jquery approach I would love to hear
    it. THANKS !!

  • Firefox has suddenly gone wrong. I was successfully running both Firefox and Internet Explorer 8 on Windows 7. I auto-accept upgrades including the most recent Firefox upgrade and the suggested upgrade to Adobe Flash 10.1. But after this, Firefox stopped

    Firefox has suddenly gone wrong. I was successfully running both Firefox and Internet Explorer 8 on Windows 7. My laptop is new and has plenty of RAM and HDD. I auto-accept upgrades including the most recent Firefox upgrade and the suggested upgrade to Adobe Flash 10.1. But after this, Firefox stopped working and does not work when I re-load Firefox 3.6. Also IE8 now works very slowly and does not locate major websites like Microsoft without a 'can't find the website message' and having to pressing Return a second time. When I do get to the Mozilla website and click on the button to try to download Firefox 3.6.6, I get this message "Oops! Internet Explorer could not find mozilla3.snt.utwente.nl". Can you help with what has gone wrong? As it stands, I can't use Firefox at all. Note: because Firefox did not work after the upgrade, I've downloaded the IE8 version of the Adobe Flash 10.1. What I really want is to be able to use both Firefox and IE8. But is this possible if they use different versions of Adobe Flash?
    == This happened ==
    Every time Firefox opened
    == About 2-3 days ago ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0; .NET4.0C)

    I have been having the same problem as the original poster. After upgrading to Ffx 3.6.6, the program asks you to upgrade to Flash Player Plugin 10.1. I download and installed 10.1 only to find videos weren't loading.
    In my case, the problem is the previous installation of Flash Player (9.0.47) was somehow messing things up. To fix this, because I already had Flash plugin 10.1 installed I had to uninstall 10.1 using the uninstaller from adobe and then manually remove any files related the old flash player plugin 9.0.47
    Here is a run-down of my process:
    0. To check if you have a previous installation of the Flash Plugin lurking around, in Firefox go to Tools -> Add-ons -> Plugins (tab). At this point you may seen both Flash plugins.
    1. Proceed to uninstall Flash Plugin 10.1. Adobe provides an uninstaller here: http://kb2.adobe.com/cps/141/tn_14157.html
    ( you have to make sure you have nothing running when you execute the installer).
    2. On my Mac (sorry I don't know what it is in Windows) I searched the hard drive for any files/folders with "Shockwave". I found a folder called "Shockwave 10". It wasn't removed by Adobe's uninstaller. For safety I deleted it and then emptied the trash.
    3. I then went to My HD -> Library -> Internet Plugins.
    Remove the file and folder named "Flash player.old"
    4. Restarted; ran the Adobe Flash Player 10.1 installer. Restarted again.
    5. Opened up ffx and double checked the plugins list (see step 1). Version 10.1 is installed and available. Went to problem sites to test it out and Success!
    Hope this helps.

  • EntityEncodeStrings and Internet Explorer w/ CDATA in XML

    Hello.
    I'm makin a sort of content management system which fetches
    data from an XML file:
    (pages.xml)
    <pages>
    <page id="1">
    <title>Home</title>
    <link>#1</link>
    <content><![CDATA[<h3>Welcome"</h3><p>We're
    experimenting a lot with different stuff on this page, please bare
    with us.</p>]]></content>
    </page>
    <page id="2">
    <title>About</title>
    <link>#2</link>
    <content><![CDATA[<h3>about</h3>Woah,
    hold it there, punk.]]></content>
    </page>
    [etc...]
    </pages>
    My XHTML-file has this in the header:
    var nav = new Spry.Data.XMLDataSet("/pages.xml",
    "pages/page");
    nav.setColumnType("@id", "number");
    nav.setColumnType("content", "html"); // skips entity
    encoding \o/
    I want to display everything in the <content />-xml
    tree as (X)HTML
    With the code I have everything works perfectly in Firefox,
    but in Internet Explorer (7) I'm getting no data at all because of
    entityEncodeStrings not functioning correctly (or so it seems). If
    I remove this it displays in both Firefox and Internet Explorer
    (though with the entities encoded).
    It doesn't matter which way I do it, using the option
    entityEncodeStrings: false or -1 I get the same (non-)results.
    I'm very thankful for any help!

    http://labs.adobe.com/technologies/spry/samples/data_region/XMLDataSetStringHandlingSample .html

  • Quicktime grabs Vista file associations in Internet Explorer (TIFF etc.)

    Hi all,
    I have a problem with Quicktime 7.6 and Internet Explorer 8 on Windows Vista - maybe someone here knows a fix? I've tried everything I could think of ... to no avail... Many thanks in advance for any hints!
    Trouble is:
    After installing iTunes 8.1.1 including QuickTime, whenever opening a TIF image in Internet Explorer 8, QuickTime will display it. I don't want that, I need to set a different application to open TIF files or to have Internet Explorer ask me whether I want the file displayed or download it.
    This is extremely annoying, since our HTTP scan server (HP) sends its files as TIF directly to the browser, so there is now link to the file to right-click on and chose "save as". Before installing iTunes/QuickTime, Internet Explorer asked me where I wanted to have the file saved - now it just displays the image using the QuickTime plugin and I can't save it anymore.
    I tried to right-click the image in the QuickTime display, it tells me I would need to buy QT Pro to save a copy.
    I opened QuickTime's options and disabled TIF and TIFF both in file types and in MIME types.
    Result: nothing; still IE8 displays TIF with QuickTime.
    I right-clicked on a TIF file on the harddisk, chose properties and changed the program with which to open the file (first Acrobat, than tried Windows image viewer, then Photoshop...).
    Result: nothing; still IE8 displays TIF with QuickTime. (When I open a TIF from a folder on the harddisk, Vista opens it in the program I specified - but any TIF within IE8 is still displayed with QuickTime).
    I opened Vista's control panel and set the standards for file type TIF/TIFF to a different programm.
    Result: no change, within IE8 any TIF image is still displayed using the QT plugin.
    I used Internet Explorer's Add-On settings to disable the QuickTime plugin.
    Result: any TIF image is displayed as a red X, it doesn't ask me what to do with it or where to save it.
    What can I do?
    Any help would be much appreciated.
    Many thanks in advance!
    Best wishes
    Frank

    I used this link for tiff http://www.nrl.navy.mil/content.php?P=IMAGES
    QT was opening the tiff files. When going into the QT control panel Browser>Mime settings>Images-Still image files I was able to uncheck tiff, which held. I was also able to uncheck all the file types under File Types tab(Images-Still image files) in the QT control panel. However the preference would not hold. Went into Start>Set Program Access and Defaults that also was of no help.
    The only way I was able to get QT to release the tiff's from the website I posted was to go into the Folder Options control panel for File Types and change the tif & tiff from QT picture viewer to windows picture and fax viewer.
    So not sure why the QT control panel will not respond, there are other file types in the Folder options control panel on this computer other than tiff's that are still associated to QT, but didn't try changing them, perhaps that needs to be done?
    Good post I didn't realize this before reading your post, if I come across anything further I'll post back.

  • Local versus Hosted Websites and Internet Explorer 7

    I am working on a site that will be deployed over the internet and distributed on a DVD-ROM. There are many users that do not have access to the internet throughout the day as they are mobile. They have laptops and what to have access to the information on a DVD-ROM. The DVD is needed as the site is far larger than 700MB.
    When I upload the site, it renders well using Safari (Mac), Firefox (Mac), Safari (Windows), Firefox (Windows), and Internet Explorer (7.X Windows).
    When I create a DVD-ROM with a little autoexec.bat file to automatically load the browser and index file, it works great in all of the browsers I have listed above except, Internet Explorer. The javascript menu's are no where to be seen. I have spent time looking a the security issues, scripting permissions etc, and can't get it to work.
    Have body have any specific helpful ideas? I really would like this to work under IE, especially since it renders just fine while accessing the site via the internet. I just doesn't work on a local copy.

    I was having this problem too and found the Dreamweaver 8.0.2
    updater that corrects that problem. See
    http://www.adobe.com/support/documentation/en/dreamweaver/dw8/releasenotes.html

  • Flash Player 10.3 and Internet Explorer 9 update and workarounds

    Hello Flash Player community,
    We are tracking the issues being reported on Flash Player 10.3.181.14 and Internet Explorer 9 and actively investigating them.  Users are reporting that Flash content is being displayed in the upper left corner of the screen.  We want to give those who are encountering these issues an update.
    First, we apologize to everyone affected.  We know you count on Flash Player as an integral component of the web and we strive for high quality and performance in each release.  We are actively looking into the root cause of this issue.  Thanks to many of you submitting information via email and our online bug database, we now have some solid leads we are pursuing.
    Flash Player 10 and later can use your system’s graphics hardware to accelerate video decoding, and can also accelerate video presentation on some sites. Starting with Flash Player 10.2, Flash Player will also take advantage of hardware accelerated graphics in Internet Explorer 9, utilizing hardware rendering surfaces to improve graphics performance.
    With Flash Player 10.3.181.14, reports indicate that systems with Intel HD Graphics adapters running Internet Explorer 9 are the only systems impacted by this particular bug.  If you are encountering this issue and have a different configuration we'd love to hear from you.  Please review the instructions on this page for details on generating the information we'll need for further investigation.
    Solution #1
    Adobe has officially released Flash Player 10.3.181.16 for Internet Explorer to address the graphical issues introduced in 10.3.181.14.  You can get this release by visiting our official download page, directly downloading and running the installer file, or using the Flash Player auto update mechanism.
    After installing, we recommend you re-enable hardware acceleration if you had it previously disabled.  We also recommend you clear your browser cache and restart your system.
    If you continue to encounter issues, please create a new thread and we'll do our best to investigate further.
    Solution #2
    On some systems, you may be able to resolve this issue by updating the Intel HD Graphics drivers. It has been reported that driver versions 8.15.10.2361 and above do not exhibit this bug. Unfortunately, some systems might require updates directly from your system manufacturer. We’re working with system manufacturers to make sure they include the latest drivers in future releases.
    Solution #3
    You can disable hardware acceleration in Internet Explorer 9 using the instructions on this page. Please note that you should re-enable hardware acceleration once this problem has been resolved to enjoy the full benefits of hardware acceleration.
    Thank you,
    The Flash Player team
    Update 5/20/11 - We've temporarily disabled the automatic update notification for Flash Player 10.3 and Internet Explorer.  We're making progress on a fix and hope to have a new version available next week.
    Update 5/24/11 - Added link to the 10.3.181.15 test update
    Update 5/27/11 - Added instructions for post install of 10.3.181.15
    Update 5/31/11 - Updated thread with the official 10.3.181.16 announcement

    FOR THOSE RUNNING IE9 ON WINDOWS 7 AND HAVE INSTALLED THE AUTOMATIC UPDATE FOR ADOBE FLASH PLAYER 10.3 - TAKE THE FOLLOWING STEPS:
    Open IE9 Browser window > Click on "Tools" > Click on "Internet Options" > Selct the "Advanced" Tab > Turn on/Click the "Use software rendering instead of GPU rendering" > Click "Apply" > Click "OK" > Shut down and then restart your IE9 browser.
    THIS WILL BE A TEMPORARY FIX FOR ANY ISSUES YOU MAY HAVE WITH THE CONSTANT FLOOD OF FLASHING ADS AND THE LIKE UNTIL A PATCH IS MADE AVAILABLE FOR THIS UPDATE.
    OTHER QUICK FIXES WOULD INCLUDE:
    1) UN-INSTALLING 10.3 AND RE-DOWNLOADING AND INSTALLING 10.2 FOR THE TIME BEING. **BE SURE TO AVOID RE-INSTALLING THE AUTOMATIC UPDATE OF 10.3 AGAIN**
    2) DOWNLOADING AND INSTALLING "MOZILLA FIREFOX" AND USING IT AS YOUR WEB BROWSER!!

  • "About" Box, Robohelp 8, and Internet Explorer

    I am having an issue with the About box in our custom-built skin and (seemingly) all versions of Internet Explorer.  I have an About box configured that contains information such as our company name, copyrights, and a link to my email for questions.  Since we have several different versions of our online help, we decided to add the current help version to the box.  Unfortunately, one of our employees who uses IE 9 attempted to click on the About box and discovered that it was not there in the navigation bar. We use a graphic as the link, and the graphic was not beside the Search bar as it is in other browsers.   I use Firefox currently, but I know it used to show up in Internet Explorer.  We checked on my version (IE 7), and it was missing from there also.  I checked the Properties screen in WebHelp to ensure that the correct skin was configured and that I had Add About Box checked, and everything seemed to be fine.  The crazy thing is that I know the About box used to show up in IE 6 and when I first got IE 7. We really need to resolve this because most of our clients still have Internet Explorer.  While it is not as critical as some of the other Help, the About box still performs a service and is the most appropriate place to add the current Help version. 
    Has anyone else had this problem with RoboHelp 8's About box and Internet Explorer?  Does anyone know a method for making it show up in Internet Explorer (any version will do)?  When I tested it, I had the pop-up blocker turned off to eliminate that as a cause, but that would not explain the graphic appearing either. 
    Thank you,
    Leigh Steele

    I'm wondering if rather than the IE version, it is more about upgrading to RoboHelp 8. Do you keep copies of the old help outputs in a way that you can tell which version of RoboHelp created them? I'm hoping that you can open a RoboHelp 6 or 7 produced output and see how that works.
    Also you refer to a custom-built skin. Do you mean a supplied skin that you customised or you truly created you own skin somehow? Have you tried using a supplied skin to see if you still have the problem then?
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Netscape 6 and Internet Explorer 5

    Could some one tell me the highest and second highest versions of Java that Netscape 6 and Internet Explorer 5 support. And where do I find out the bugs for each of these browsers get with Java ????
    Thanks
    Ben Black

    "both support Java 2 SDK 1.3.1 and the beta 1.4 version. Earlier IE versions will not support anything above 1.1"
    You must remember I have very little experience with Java, that is why I'm looking for the best book to buy to help me with it. And to buy this book I need to know what versions of Java the popular browsers support. I'm at the moment going for NS6 and IE5. So could some one explain what this Java 2 SDK and other stuff is about... I find it more than confussing....
    What I basically want to do is create a game which has loads of moving grapics, chat, loading files from the users computers and the web server. (A bit like www.habbohotel.com which is a chat place where you as a graphic can move around a hotel and chat).
    And also what would YOU recommend as being the best version of Java and what sort of Java (i.e you talk about this Java 2??) for me to do the above ????
    Sorry for being an idoit and thanks for all your help
    Ben Black

  • I have 9 Soundcloud widgets on my web page, none of them work. They use HTML 5 which works on Google Chrome and Internet explorer. Do you have a fix for this ?

    I have 9 Soundcloud widgets on my web page, none of them work. They use HTML 5 which works on Google Chrome and Internet explorer. Do you have a fix for this ? I am using Firefox V 20.0.1

    Reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Press and hold Shift and left-click the Reload button.
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (MAC)
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • What is the difference between Firefox and Internet Explorer?

    I'm an older woman and it's hard for me to keep up with all the new technology these days. Can someone please explain the difference between Firefox and Internet Explorer? Which one is better to use? Many thanks for your help.

    Firefox, Chrome and Internet explorer are all types of Browser; for use (mainly) on the internet, other modern browsers are Safari & Opera.
    Just to confuse things slightly, Windows Explorer, is the name of the software that is usually used to look at content (files & folders) on Windows PCs.
    Maybe these articles will help
    * http://www.wisegeek.com/what-is-a-web-browser.htm <-- blue link is clickable --
    * http://en.wikipedia.org/wiki/Web_browser

  • Remote Panel and Internet Explorer

    Hello. I have a problem with a Remote Panel and Internet Explorer. I create a measurement system in LabVIEW. It�s composed of a main front panel and a few subVIs with independent front panels opened from main Front Panel when I press appropriate button. As a local system everything works ok but I try to create a web version of this system. I decide that I can use a Remote Panel. In Web Publishing Tool I was creating a web page for each of Front Panel. I try to have the same functionality as in local system, so when in Front Panel (opened in Internet Explorer window) I press appropriate button I want to open secondary Internet Explorer window with a subVI inside. And now I�m stuck because I can�t open this secondary window in a network w
    orkstation. Has anyone have an idea how can I do it?

    > Hello. I have a problem with a Remote Panel and Internet Explorer. I
    > create a measurement system in LabVIEW. It?s composed of a main front
    > panel and a few subVIs with independent front panels opened from main
    > Front Panel when I press appropriate button.
    I think you have two options. You can open most modal subVI panels
    directly on a remote machine. The popup panels won't be in a web page,
    but it will work with few changes.
    A second approach would be to change the app slightly. The buttons that
    launch the subVIs will turn into URL links. The links will open a web
    page with a different embedded panel.
    Greg McKaskle

  • Problem with ACE and Internet Explorer 8

    I have a problem with ACE (system A2(1.1)) and Internet Explorer 8.
    exactly:
    ACE is configured as end-to-end ssl with 2 rserver and with the sticky source address. When user is opening the virtual address from IEv7, the web portal (On Microsoft IIS) works fine.
    If user opens the same web portal but using IEv8, the session is suspended after 60 seconds.
    I think, that the reason is http keep-allive, which is sending every 60 seconds from the user's internet browser.
    Here is some information about this. http://en.wikipedia.org/wiki/HTTP_persistent_connection
    Do you have any idea how to resolve this problem: upgrade ACE, change the configuration on IIS or ACE ??
    Please help.

    Hi Kazik,
    Using a persistent connection or HTTP keepalives should not have any negative effect on the ACE, so, giving you a straight-forward answer to fix it is not going to be easy.
    I would recommend you to open a TAC case to have this investigated further. When you do, please, provide the following data:
    A showtech from the Admin context of the ACE
    A traffic capture taken on the TenGig interface connecting the switch with the ACE backplane while doing a test connection (preferably one with IE7 and one with IE8 to compare)
    If possible, a copy of the SSL private key. Being able to decrypt the traffic capture to look inside the HTTP flow would really make troubleshooting much easier.
    Regards
    Daniel

Maybe you are looking for

  • Machine will not charge batterys

    As my Macbook Pro is in for service I had to dust of my old Powerbook G4 Alu. But after a long sleep it will not charge any of the 2 batteries I have. The strange thing is that during the first 10-15 minutes when I start the computer, The battery is

  • Certification to become MCSA: Windows 7

    What certification do I need to require the title MCSA: Windows 7 (after 31th of January 2014)? Do I need to require 70-680 + 70-685 + 70-686

  • My appointments in my calendar disappeared overnight.  How do I get them back?

    I noticed this morning that my calendar appointments had disappeared.  they were there yesterday. How do I get them back?

  • Uncaught exception: Push ModalScreen called by a non-event thread

    I have this particular problem going on with my curve 9360. It appears randomly on phone, app not specified, sometimes appear after i use facebook, sometimes with maps, but whenever it comes up battery would drain in less than a minute if it is fully

  • Setting initial selection in ChoiceBox

    I know it is a simple request but I cannot fathom out from the API or the tutorial how to initialise the selected item in a ChoiceBox. Take the example in the ChoiceBox tutorial where there is a selection of 5 languages. The tutorial suggests that th