jodde

Members
  • Content count

    5
  • Joined

  • Last visited

Posts posted by jodde


  1. My webapp with fusioncharts works well in Firefox, but not in Internet Explorer. The problem isn't that I can't get the XML data (the Pragma and Chach-Control header, when you get a "Error in loading data") because I can load a Excel file with html data. I get a Movie not loaded error instead, like if that IE can't load the swf file.

     

     

     

    I tested the application on another computer with https on IE and that doesn't work, but it do work on regular http in IE.


  2. Can the problem be that I can't load the swf file in IE on https?

     

     

     

    Because It looks like the browser never reads form the XML page. When I try a system.println before and after the headers I get nothing. Like if the flash component never even starts reading the xml file. This works well in firefox and I get the both printlines.

     

     

     

    Anyone that knows what the problem is?


  3. I have read the article about FusionCharts over SSL, http://www.fusioncharts.com/KB/article.aspx?id=10091

     

     

     

    but I still can't get it right.

     

     

     

    I've changed my headers to:

     

    Cache-Control: cache, must-revalidate

     

    Pragma: public

     

     

     

    like this:

     

     

     

    response.setContentType("text/xml");

     

    response.setHeader("Cache-Control", "cache, must-revalidate");

     

    response.setHeader("Pragma", "public");

     

     

     

    in my jsp page that prints out the xml data. I get access to the page in Internet Explorer but I cannot get the javascript code (with the dataUrl method) to read and download the xml.

     

     

     

    I get a "movie not loaded" error instead. It works well in other browsers like Firefox.