-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ignore SSL on SignalR #107
Comments
Hi I had the same issue very recently, because UIWebView / UKWebview wasn't able to do the self signing with SSL certificates or the SSL certificates were not trusted. the workaround was add the exception domains in the info.plist under NSAppTransportSecurity : Check these link https://cocoacasts.com/how-to-add-app-transport-security-exception-domains |
Same here. Unable to make connections to selfsigned SSL cert servers. NSAppTransportSecurity is not an option any more. NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9813) Any known workarounds? |
You could install your own root certificate and trust it via Settings > General > About > Certificate Trust Settings. https://developer.apple.com/library/content/qa/qa1948/_index.html |
When I implement server without https everything works fine.
But, when I try to connect with a server through https IOS shows error -1202 (Error during negotiation).
At Android I've bypassed ssl and everything works, but in IOS I do not found anything at SignalR class to access NSURLConnection and bypass this scenario.
Could you please help me ?
Thanks
The text was updated successfully, but these errors were encountered: