Search results for

“Request failed with http status code 503”

201,093 results found

Post

Replies

Boosts

Views

Activity

NSURLConnection/CFURLConnection HTTP load failed
Hello everyone,In my application I'm trying to download data from Amazon server.In all devices expect iphone 4s (ios 8.4.1) everything works fine but with iphone4s I'm getting the following error:NSURLConnection/CFURLConnection HTTLP load failed kCFStreamErrorDomainSSl -9807(following the way I'm trying to download data, I also have the -9802 error code)The 2 download way I've tried so far was:- load data into NSData with NSData dataWithContentsOfURL (not really a good way to do it but file size is just 200 kb)- AWSS3TransferUtility with Cognito CredentialIn my info.plist, I've already set App Transport Security Setting with AllowArbitrary Loads set to true and set Exception Domains following AWS settingbut so far no luck for iphone 4s.Is there any known bug for this device?Could you please tell me if there is a way to fix this issue?I really thank you in advance for your help.
3
0
1.7k
Sep ’16
Metallib failed with exit code 11
Xcode 7.1 is now out.We are still seeing Metal shaders which do not fail at compile time, but do fail at link time. They fail in an essentially mysterious way, which makes it impossible to reason about how to fix them. Does anyone have any insights into working around this problem?
0
0
374
Oct ’15
Reply to Not receiving response from APN server while sending push notifications
If you are intermittently not getting any responses from APNs, this is likely a network issue in between. You would want to start by finding what the failure is. Have you checked your networking or TCP logs? While it is possible to check why a specific push request may have failed at APNs side, if there is no response to the HTTP/2 request, it is unlikely that the request actually made it.
Sep ’23
Reply to How to listen for Privacy & Security > Automation > System Events status changes in MacOS Swift
Thanks for your response! I tried using AEDeterminePermissionToAutomateTarget but got no response on Xcode Version 15.2 (15C500b) and MacOS 13.5. I think my app has a similar issue to this thread https://developer.apple.com/forums/thread/666528. I would like to check permission before running Apple Script from my app so I use my Bundle.main.bundleIdentifier in determinePermission() function. Here is my code, check() function and request() function does not return anything : protocol AppAccess { typealias Status = AppAccessStatus func check() -> Status func request() -> Status } enum AppAccessStatus { case granted, denied, requiresConsent, notRunning, unknown(Int) } class AppAccessImpl: AppAccess { func check() -> Status { guard #available(OSX 10.14, *) else { return .granted } return determinePermission(ask: false) } func request() -> Status { guard #available(OSX 10.14, *) else { return .granted } return det
Topic: Programming Languages SubTopic: Swift Tags:
Mar ’24
Promo codes not working with "Pending Developer Release" status
The version 1.16 of my app has been approved by Apple and has Pending Developer Release status. The previous version (currently available on App Store) is 1.13. I created some promo codes for version 1.16. When I use a promo code, the App Store on the device says that the app is downloading but it never appears on my device. If I go to My purchases on the iPhone, the app appears with a cloud icon. I can then download it but the downloaded version is the old one (1.13) ! I am 100% sure that the promo codes were created for the 1.16 version. Why are my promo codes pointing to the previous version (1.13) instead of the new one (1.16) ? Thank you in advance
0
0
325
Jan ’22
Code signing fails trough ssh
I have ssh-ed from my machine to my machine to test a script wich builds my app.I give xcodebuild the following code sign identity:CODE_SIGN_IDENTITY=iPhone DeveloperThe xcodebuild does work if I don't use ssh. But when I use ssh it fails: No signing certificate iOS Development found: No iOS Development signing certificate matching team ID team_id with a private key was found. Code signing is required for product type 'Application' in SDK 'iOS 10.1' I tried unlocking my login keychain which did not help, as I read that when ssh-ing to your pc doesn't unlock it automaticly as when login trough the GUI.
1
0
3.8k
Dec ’16
Reply to testmanagerd crashing intermittently in CI builds via Jenkins & Fastlane. Why?
I am also seeing this error REDACTED[90541:220165864] [default] Failed to open URL REDACTED://company/1035: Error Domain=FBSOpenApplicationServiceErrorDomain Code=1 The request to open com.REDACTED.REDACTED failed. UserInfo={BSErrorCodeDescription=RequestDenied, NSUnderlyingError=0x600001036640 {Error Domain=FBSOpenApplicationErrorDomain Code=6 App has outstanding termination assertions UserInfo={BSErrorCodeDescription=Busy, NSLocalizedFailureReason=App has outstanding termination assertions}}, NSLocalizedDescription=The request to open com.REDACTED.REDACTED failed., FBSOpenApplicationRequestID=0xbafe, NSLocalizedFailureReason=The request was denied by service delegate (SBMainWorkspace) for reason: Busy (App has outstanding termination assertions).} @O_G, Did you find a fix for this?
Feb ’21
Reply to Cannot download
Same here, also had a lot of builds fail because Xcode Cloud encountered HTTP 403 errors while downloading SPM dependencies. Apple Developer Service Status is all green, but I think they must be doing some background work, it should be back to normal soon.
Apr ’25
Reply to Face becomes white with ARKit and TrueDepth camera
Hello,I changed the view to be drawn from ARSCNView to MTKView (MetalKit).So I had to write much more code for pipeline, buffers, render encoder … 🙂Then the image became what I expected!Both fragment shaders are the same, just transform YCbCr to RGB.Before : https://twitter.com/yt/status/1087230742017454080After : https://twitter.com/yt/status/1089768732023390208Thanks.
Topic: Spatial Computing SubTopic: ARKit Tags:
Jan ’19
Reply to How to get the access control list from SecKey?
Yes Quinn, as! cast causes the crash EXC_BAD_INSTRUCTION (code=EXC_I386_INVOP, subcode=0x0).It looks like only this typecasting from SecKey to SecKeychainItem has issue else following code (to typecast CFTypeRef to SecKeychainItem) works fine and give SecACL just fine: var status = SecItemCopyMatching(getquery as CFDictionary, &item) //let dict = item as! CFDictionary guard status == errSecSuccess else { DLog(message: Keychain lookup failed error : (SecCopyErrorMessageString(status, nil)! as String)) return nil } let key = item as! SecKeychainItem var secAccess : SecAccess? status = SecKeychainItemCopyAccess(key, &secAccess) guard status == errSecSuccess, secAccess != nil else { DLog(message: Could not get SecAccess : (SecCopyErrorMessageString(status, nil)! as String)) return nil }Also, would it be possible to update the ACL of this keychain item by the owner of the key i.e. daemon? When we call SecKeychainItemSetAccess
Topic: Privacy & Security SubTopic: General Tags:
Nov ’18
NSURLConnection/CFURLConnection HTTP load failed
Hello everyone,In my application I'm trying to download data from Amazon server.In all devices expect iphone 4s (ios 8.4.1) everything works fine but with iphone4s I'm getting the following error:NSURLConnection/CFURLConnection HTTLP load failed kCFStreamErrorDomainSSl -9807(following the way I'm trying to download data, I also have the -9802 error code)The 2 download way I've tried so far was:- load data into NSData with NSData dataWithContentsOfURL (not really a good way to do it but file size is just 200 kb)- AWSS3TransferUtility with Cognito CredentialIn my info.plist, I've already set App Transport Security Setting with AllowArbitrary Loads set to true and set Exception Domains following AWS settingbut so far no luck for iphone 4s.Is there any known bug for this device?Could you please tell me if there is a way to fix this issue?I really thank you in advance for your help.
Replies
3
Boosts
0
Views
1.7k
Activity
Sep ’16
Metallib failed with exit code 11
Xcode 7.1 is now out.We are still seeing Metal shaders which do not fail at compile time, but do fail at link time. They fail in an essentially mysterious way, which makes it impossible to reason about how to fix them. Does anyone have any insights into working around this problem?
Replies
0
Boosts
0
Views
374
Activity
Oct ’15
Reply to AppStoreConnect license agreement review page blank!
I am seeing the same issue. After succesful login I am being sent to https://appstoreconnect.apple.com/review_agree and seeing a blank page. WebObjects/iTunesConnect.woa/ra/ui/log:1 Failed to load resource: the server responded with a status of 401 ()
Replies
Boosts
Views
Activity
Jan ’23
Reply to Not receiving response from APN server while sending push notifications
If you are intermittently not getting any responses from APNs, this is likely a network issue in between. You would want to start by finding what the failure is. Have you checked your networking or TCP logs? While it is possible to check why a specific push request may have failed at APNs side, if there is no response to the HTTP/2 request, it is unlikely that the request actually made it.
Replies
Boosts
Views
Activity
Sep ’23
Reply to How to listen for Privacy & Security > Automation > System Events status changes in MacOS Swift
Thanks for your response! I tried using AEDeterminePermissionToAutomateTarget but got no response on Xcode Version 15.2 (15C500b) and MacOS 13.5. I think my app has a similar issue to this thread https://developer.apple.com/forums/thread/666528. I would like to check permission before running Apple Script from my app so I use my Bundle.main.bundleIdentifier in determinePermission() function. Here is my code, check() function and request() function does not return anything : protocol AppAccess { typealias Status = AppAccessStatus func check() -> Status func request() -> Status } enum AppAccessStatus { case granted, denied, requiresConsent, notRunning, unknown(Int) } class AppAccessImpl: AppAccess { func check() -> Status { guard #available(OSX 10.14, *) else { return .granted } return determinePermission(ask: false) } func request() -> Status { guard #available(OSX 10.14, *) else { return .granted } return det
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Mar ’24
Promo codes not working with "Pending Developer Release" status
The version 1.16 of my app has been approved by Apple and has Pending Developer Release status. The previous version (currently available on App Store) is 1.13. I created some promo codes for version 1.16. When I use a promo code, the App Store on the device says that the app is downloading but it never appears on my device. If I go to My purchases on the iPhone, the app appears with a cloud icon. I can then download it but the downloaded version is the old one (1.13) ! I am 100% sure that the promo codes were created for the 1.16 version. Why are my promo codes pointing to the previous version (1.13) instead of the new one (1.16) ? Thank you in advance
Replies
0
Boosts
0
Views
325
Activity
Jan ’22
linker command failed with exit code 1
In order to support ipadmini6, Xcode was upgraded to 13.1, but ld: Assertion failed: (memberIndex != 0), function makeObjectFileForMember, file archive_file.cpp, line 387. clang: error: linker command failed with exit code 1 (use -v to see invocation)
Replies
2
Boosts
0
Views
2.2k
Activity
Nov ’21
Reply to Responding to app store server-server notification
Hello, thank you for reaching out. So when you receive the notification, your server then responds with an HTTP 200 status code. That is the response we are expecting there.
Replies
Boosts
Views
Activity
Jun ’24
Code signing fails trough ssh
I have ssh-ed from my machine to my machine to test a script wich builds my app.I give xcodebuild the following code sign identity:CODE_SIGN_IDENTITY=iPhone DeveloperThe xcodebuild does work if I don't use ssh. But when I use ssh it fails: No signing certificate iOS Development found: No iOS Development signing certificate matching team ID team_id with a private key was found. Code signing is required for product type 'Application' in SDK 'iOS 10.1' I tried unlocking my login keychain which did not help, as I read that when ssh-ing to your pc doesn't unlock it automaticly as when login trough the GUI.
Replies
1
Boosts
0
Views
3.8k
Activity
Dec ’16
Reply to HTTP 503 on init.sandbox.push.apple.com
now the host init.sandbox.push.apple.com is not resolved by DNS. That might explain why Charles returns a 503
Replies
Boosts
Views
Activity
Jan ’20
fail code (-6722) on HomePod
does anyone know what this code means?
Replies
1
Boosts
0
Views
1.4k
Activity
Feb ’18
Reply to testmanagerd crashing intermittently in CI builds via Jenkins & Fastlane. Why?
I am also seeing this error REDACTED[90541:220165864] [default] Failed to open URL REDACTED://company/1035: Error Domain=FBSOpenApplicationServiceErrorDomain Code=1 The request to open com.REDACTED.REDACTED failed. UserInfo={BSErrorCodeDescription=RequestDenied, NSUnderlyingError=0x600001036640 {Error Domain=FBSOpenApplicationErrorDomain Code=6 App has outstanding termination assertions UserInfo={BSErrorCodeDescription=Busy, NSLocalizedFailureReason=App has outstanding termination assertions}}, NSLocalizedDescription=The request to open com.REDACTED.REDACTED failed., FBSOpenApplicationRequestID=0xbafe, NSLocalizedFailureReason=The request was denied by service delegate (SBMainWorkspace) for reason: Busy (App has outstanding termination assertions).} @O_G, Did you find a fix for this?
Replies
Boosts
Views
Activity
Feb ’21
Reply to Cannot download
Same here, also had a lot of builds fail because Xcode Cloud encountered HTTP 403 errors while downloading SPM dependencies. Apple Developer Service Status is all green, but I think they must be doing some background work, it should be back to normal soon.
Replies
Boosts
Views
Activity
Apr ’25
Reply to Face becomes white with ARKit and TrueDepth camera
Hello,I changed the view to be drawn from ARSCNView to MTKView (MetalKit).So I had to write much more code for pipeline, buffers, render encoder … 🙂Then the image became what I expected!Both fragment shaders are the same, just transform YCbCr to RGB.Before : https://twitter.com/yt/status/1087230742017454080After : https://twitter.com/yt/status/1089768732023390208Thanks.
Topic: Spatial Computing SubTopic: ARKit Tags:
Replies
Boosts
Views
Activity
Jan ’19
Reply to How to get the access control list from SecKey?
Yes Quinn, as! cast causes the crash EXC_BAD_INSTRUCTION (code=EXC_I386_INVOP, subcode=0x0).It looks like only this typecasting from SecKey to SecKeychainItem has issue else following code (to typecast CFTypeRef to SecKeychainItem) works fine and give SecACL just fine: var status = SecItemCopyMatching(getquery as CFDictionary, &item) //let dict = item as! CFDictionary guard status == errSecSuccess else { DLog(message: Keychain lookup failed error : (SecCopyErrorMessageString(status, nil)! as String)) return nil } let key = item as! SecKeychainItem var secAccess : SecAccess? status = SecKeychainItemCopyAccess(key, &secAccess) guard status == errSecSuccess, secAccess != nil else { DLog(message: Could not get SecAccess : (SecCopyErrorMessageString(status, nil)! as String)) return nil }Also, would it be possible to update the ACL of this keychain item by the owner of the key i.e. daemon? When we call SecKeychainItemSetAccess
Topic: Privacy & Security SubTopic: General Tags:
Replies
Boosts
Views
Activity
Nov ’18