You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
testing connection information... Error: src/Ice/SSL/SecureTransportUtil.cpp:1010 ::Ice::FeatureNotSupportedException IceSSL on iOS does not support encodeCertificate
The encodeCertificate call in Connection.mm throws an exception:
auto sslInfo = std::dynamic_pointer_cast<Ice::SSL::ConnectionInfo>(infoPtr);
if (sslInfo)
{
std::string encoded;
if (sslInfo->peerCertificate)
{
encoded = Ice::SSL::encodeCertificate(sslInfo->peerCertificate);
}
return [factory createSSLConnectionInfo:underlying peerCertificate:toNSString(encoded)];
}
For now I'm going to ifdef out this section of code for iOS. Could/should we just provide the native certificate instead of this PEM encoded form?
The text was updated successfully, but these errors were encountered:
swift/Ice/info
currently fails on iOSThe
encodeCertificate
call inConnection.mm
throws an exception:For now I'm going to
ifdef
out this section of code for iOS. Could/should we just provide the native certificate instead of this PEM encoded form?The text was updated successfully, but these errors were encountered: