Coldfusion:带SSL的RMI频道

对于我的Flex < – > ColdFusion-App,我想切换到SSL。 在ColdFusionpipe理员中,我有以下选项:

Lets you use Secure Socket Layer (SSL) encryption for the RMI communication between Flex and ColdFusion. This is not required unless you are transmitting authentication information or confidential data between Flex and ColdFusion over an unsecured network. You must provide a keystore file and keystore password. For instructions on how to create a keystore file, see the online Help. 

在线帮助不帮助我。 我已经用openssl和没有密码创build了证书。 我需要重新创build证书并使用CSR的密码吗? 那么我会有任何问题与Apache(如果证书需要密码?)

谢谢你的帮助!

我终于find一个工作解决scheme。

当我使用openssl创build证书时,我必须将它们转换为DER格式:

 openssl pkcs8 -topk8 -nocrypt -in key.pem -inform PEM -out key.der -outform DER openssl x509 -in cert.pem -inform PEM -out cert.der -outform DER 

然后,我使用这个伟大的小Java应用程序来创build密钥库和密码: http ://www.agentbob.info/agentbob/79-AB.html