Re: OsX - HTTP resource load blocked

2015-07-24 Thread Marc Danguy
Thank you It’s work for my help file (not for Sparkle but it’s less important) I never search in iOS doc… Merci Marc Le 24 juil. 2015 à 01:31, Charles Srstka cocoa...@charlessoft.com a écrit : On Jul 23, 2015, at 4:57 PM, Jens Alfke j...@mooseyard.com wrote: On Jul 23, 2015, at

Re: OsX - HTTP resource load blocked

2015-07-23 Thread Charles Srstka
On Jul 23, 2015, at 4:57 PM, Jens Alfke j...@mooseyard.com wrote: On Jul 23, 2015, at 12:41 PM, Marc Danguy mdan...@free.fr wrote: keyNSTemporaryExceptionAllowInsecureHTTPLoads/key true/ This key (and several others) are incorrect. The correct

Re: OsX - HTTP resource load blocked

2015-07-23 Thread Marc Danguy
Yes, my I think my info.plist seems conform to WWDC session 703_privacy_and_your_app.pdf I have try some variants, without success. keyNSAppTransportSecurity/key dict keyNSExceptionDomains/key dict

Re: OsX - HTTP resource load blocked

2015-07-23 Thread Jens Alfke
On Jul 23, 2015, at 12:41 PM, Marc Danguy mdan...@free.fr wrote: keyNSTemporaryExceptionAllowInsecureHTTPLoads/key true/ This key (and several others) are incorrect. The correct key is NSExceptionAllowsInsecureHTTPLoads. The full list is in the

Re: OsX - HTTP resource load blocked

2015-07-21 Thread Jens Alfke
On Jul 20, 2015, at 10:43 PM, Marc Danguy mdan...@free.fr wrote: But I cannot load my http resource… Did you fix your Info.plist, as I pointed out in my message yesterday? —Jens ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do

Re: OsX - HTTP resource load blocked

2015-07-20 Thread Uli Kusterer
On 19 Jul 2015, at 10:47, Marc Danguy mdan...@free.fr wrote: a strange one : Code Signature Invalid Do you maybe have a shell script build phase that modifies the bundle after it has been signed ? ___ Cocoa-dev mailing list

Re: OsX - HTTP resource load blocked

2015-07-20 Thread Marc Danguy
It’s a classic build, without script After reboot, crash disappears : El Capitan is beta But I cannot load my http resource… Le 20 juil. 2015 à 15:51, Uli Kusterer witness.of.teacht...@gmx.net a écrit : On 19 Jul 2015, at 10:47, Marc Danguy mdan...@free.fr mailto:mdan...@free.fr wrote:

Re: OsX - HTTP resource load blocked

2015-07-19 Thread Marc Danguy
a strange one : Code Signature Invalid Process: LibeComptaLion [69071] Path: /Users/USER/Library/Developer/Xcode/DerivedData/LC2015-chvxjytjmhlxrkalkksbtlcuygwg/Build/Products/Debug/LibeComptaLion.app/Contents/MacOS/LibeComptaLion Identifier:

Re: OsX - HTTP resource load blocked

2015-07-19 Thread Mike Abdullah
Have you tried a clean build? This kinda suggests that somehow Xcode has modified the bundle, but not then re-signed it. (I’m trusting you didn’t go an modify the build product directly yourself!) On 19 Jul 2015, at 09:47, Marc Danguy mdan...@free.fr wrote: a strange one : Code Signature

OsX - HTTP resource load blocked

2015-07-19 Thread Marc Danguy
With El Capitan, ATS disallows insecure (cleartext) HTTP loads until you declare your app’s needed HTTP behavior I need to access an inline help file so I got this message : App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions

Re: OsX - HTTP resource load blocked

2015-07-19 Thread Roland King
On 19 Jul 2015, at 15:20, Marc Danguy mdan...@free.fr wrote: With El Capitan, ATS disallows insecure (cleartext) HTTP loads until you declare your app’s needed HTTP behavior I need to access an inline help file so I got this message : App Transport Security has blocked a cleartext HTTP

Re: OsX - HTTP resource load blocked

2015-07-19 Thread Marc Danguy
Clean build don’t change anything, but after reboot, the crash disappears Now, I have a more complete error message 2015-07-19 23:17:10.544 LibeComptaLion[679:46589] ***storageTaskManagerExistsWithIdentifier:withIdentifier failed: Error Domain=NSCocoaErrorDomain Code=4099 Impossible de

Re: OsX - HTTP resource load blocked

2015-07-19 Thread Jens Alfke
On Jul 19, 2015, at 12:20 AM, Marc Danguy mdan...@free.fr wrote: I add dict keyNSExceptionDomains/key dict … That has to go inside an NSAppTransportSecurity dictionary — that’s the top level key in the Info.plist. —Jens ___

Re: OsX - HTTP resource load blocked

2015-07-19 Thread Marc Danguy
Yes, I do If I remove the NSExceptionDomains definition in my Info.plist, my application run without crash Le 19 juil. 2015 à 11:07, Mike Abdullah mabdul...@karelia.com a écrit : Have you tried a clean build? This kinda suggests that somehow Xcode has modified the bundle, but not then

Re: OsX - HTTP resource load blocked

2015-07-19 Thread Mike Abdullah
On 19 Jul 2015, at 17:04, Marc Danguy mdan...@free.fr wrote: Yes, I do If I remove the NSExceptionDomains definition in my Info.plist, my application run without crash By a clean build, I mean telling Xcode to do a clean, and then building afterwards.