Hi all,
Let me summarize the solution for Tomcat + SSL + IE issue when using FusionCharts:
Tomcat Version 5.0:
Please add the following lines in tomcat's server.xml between <Host>... </Host> tags :
<Context path="/FusionChartsSSLTest" docBase="FusionChartsSSLTest"
debug="5" reloadable="true" crossContext="true">
<Valve className="org.apache.catalina.authenticator.FormAuthenticator"
disableProxyCaching="false" />
</Context>
Change the path and docBase to suit your context.
Tomcat Version 6.0:
Please add the following lines in tomcat's tomcat_home/conf/context.xml between <context>... </context> tags :
<Valve className="org.apache.catalina.authenticator.FormAuthenticator"
disableProxyCaching="false" />
Note that if you're not using Form authentication, then substitue the class name of the authenticator you're using.
Please see http://www.mail-archive.com/tomcat-user@jakarta.apache.org/msg151294.html which talks about the same issue.
Hope this helps. :)
Srividya