coldfusion flash integration:
We are running 7.0.2 (multiserver) on Solaris with Apache 2.0.55.
Our flash forms were working without problem under a non-secure apache
instance. I've made changes to move this to a secure (SSL) connection but now
get the error: Error generating Flash Movie from form definition whenever I try
to call up a flash form. I see the error in both Firefox and IE.
Other CF code runs in this secure instance without problem. (I also have other
SSL sites running without problem under 7.0.2 (standalone) with Flash forms and
Apache 2.0.55. )
Any idea of what I need to set or change to see our flash forms under SSL and
7.0.2 (multiserver)?
What I've done so far is:
1. Used the keytool to have CF accept the SSL certificate:
% keytool -import -keystore cacerts -file {ssl.cert.home}/public.crt
-storepass changeit
When I use: keytool -list -kystore cacerts -storepass changeit
I do see the certificate listed.
2. Modified Apache's httpd.conf (changes/additions in bold to:
<IfModule mod_jrun20.c>
JRunConfig Verbose flase
JRunConfig Apialloc false
JRun Ssl true
...
</IfModule>
The instance is set up on the same IP as the certificate, just using a
different port. The virtual host config looks like:
NameVirtualHost *:8301
<VirtualHost *:8301>
SSLEngine On
SSLCertificateFile {ssl.cert.home}/public.crt
SSLCertificateKeyFile {ssl.cert.home}/private.key
ServerAdmin webmaster@myserver....
...
</VirtualHost>
3. Modified {cfinstance.home}/SERVER-INF/jrun.xml in the section
and uncommented the indicated lines for keystore, keystorePassword, and
trustStore
4. Restarted CF and Apache.
Thanks in advance for any help!