Sign in to follow this  
srividya_sharma

FusionChart not rendering in IE but works fine on FF, also work fine on my development box but not on the webserver

Recommended Posts

I create a FusionChart that works fine on my working box, but not on a web server over ssl. The same code works fine on the WebServer in FireFox. I am using dataXML and not dataURL

Share this post


Link to post
Share on other sites

Hi,

 

 

 

There are issues with SSL in IE or loading the chart as well.

 

 

 

 

 

FusionCharts can work over HTTPS (Secure Sockets Layer too) in the same way as HTTP.

 

 

 

However, if you're using the dataURL method, you need to set a few headers. Loading XML files in Flash over an SSL Connection in Internet Explorer fails if the Pragma:no-cache or Cache-control:no-cache HTTP headers are set on the XML file or the XML data provider file. The "Cache: no cache" header causes IE to actually return ERROR_INTERNET_UNABLE_TO_CACHE_FILE HTTPS as

 

the content instead of the XML data.

 

 

 

So, if you're using dataURL method on Internet Explorer, you need to make sure that the server does not send no-cache headers for the XML data. To do so, set the following headers for your XML Data provider page:

 

 

 

Cache-Control: cache, must-revalidate

 

Pragma: public

Share this post


Link to post
Share on other sites

ok sorry for the earlier post, twas a bit scant on details.

Heres the break down.  I am using the dataXML method for graphing, drawing data from a coldfusion server (CF 8).

The issue is that the graph draws fine in the following:

IE (non-SSL)

Firefox(both SSL and non-SSL)

It for some reason draws just a white screen (although the div and JS make it to the page content...just no graph) when using IE over SSL.  Very confused at this point.  Any suggestions would be most helpful.

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this