Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CFNetwork internal error : URLConnectionLoader.cpp:289

When I open my application after a while, I received log:

440: CFNetwork internal error (0xc01a:/BuildRoot/Library/Caches/com.apple.xbs/Sources/CFNetwork/CFNetwork-758.4.3/Loading/URLConnectionLoader.cpp:289)

It has never been out in the past. My project uses a network library AFNetworking and CocoaAsyncSocket.

Why does it occur and how to fix it?

like image 758
pepsikirk Avatar asked Jun 27 '16 09:06

pepsikirk


2 Answers

I solved my situation, it is not AFNetwork's issue, I use a invalid SSL certification and SDWebImage, when use the option 'SDWebImageAllowInvalidSSLCertificates' in SDWebImage and get a http image (not https image), you will get this error. the protocol (http or https) not being recognized automaticly by SDWebImage.

my solution: I not change SDWebImage’s code, I just write a wrapper for recognized protocol (http or https). I use '0' option for http images and 'SDWebImageAllowInvalidSSLCertificates' option for https images (my https certification is self signed or invalid). If yours cer is valid , I think SDWebImage works well.

like image 64
kun wang Avatar answered Nov 14 '22 10:11

kun wang


I resolved this issue by adding using below attributes in your info.plist

<key>NSAppTransportSecurity</key>
<dict>
    <key>NSExceptionDomains</key>
    <dict>
        <key>http://mydomain</key>
        <dict>
            <key>NSExceptionRequiresForwardSecrecy</key>
            <false/>
            <key>NSExceptionAllowsInsecureHTTPLoads</key>
            <true/>
            <key>NSIncludesSubdomains</key>
            <true/>
        </dict>
    </dict>
    <key>NSAllowsArbitraryLoads</key>
    <true/>
</dict>
like image 1
WonderX Avatar answered Nov 14 '22 08:11

WonderX