IBM MobileFirst V7.0.0.00.20151006-0901
IBM 8.5.5.5.5 IBM 7
我们安装了MFP服务器,为了配置SSL,我们获得了.p12格式的SSL证书。
我更新了server.xml
<ssl id="SSL" keyStoreRef="SSLKeyStore" clientAuthenticationSupported="false" sslProtocol="TLSV1.2" />
<keystore id="SSLKeyStore" location="C:/IBM/SSLConfig/appkeystore.p12" type="PKCS12" password="mypassword" />要支持iOS9,不确定是否需要包括"enabledCiphers“?如果是这样,那么如何获得那些受支持的密码列表,这是一个通配符证书。
在SSL配置之后,我可以从IBM AppCenter下载iOS8设备中的应用程序,但是iOS9
连接failed.Check您的连接详细信息(发生了SSL错误,无法建立到服务器的安全连接)。
我没看到任何原木。当我启用安装程序选项,然后我可以直接下载应用程序在iOS9和应用程序工作良好。搞不懂我在这里错过了什么。请建议一下。
发布于 2015-10-29 09:35:34
server.xml中的SSL配置看起来不正确。它应该是
<ssl id="defaultSSLConfig" keyStoreRef="SSLKeyStore" clientAuthenticationSupported="false" sslProtocol="TLSV1.2" /> 或
<sslDefault sslRef="SSL" />
<ssl id="SSL" keyStoreRef="SSLKeyStore" clientAuthenticationSupported="false" sslProtocol="TLSV1.2" /> https://stackoverflow.com/questions/33409487
复制相似问题