Search results for

Request failed with http status code 503

190,762 results found

Post

Replies

Boosts

Views

Activity

Reply to Notarization Stuck "In Progress"
[quote='804847021, Breakfast, /thread/804847, /profile/Breakfast'] This issue has been occurring since Friday, October 17th. [/quote] I’d like to clarify the failure you’re seeing: Is this a single request that’s been stuck since 2025-10-17? Or is it that this request and all subsequent requests are stuck? Or is it that requests are going through, they’re just taking a long time? Also, please post: The UUID of an example ‘bad’ request, that is, a request that was most affected by this issue. And a rough timeline for that request, that is, when you submitted it and, if it completed, when it completed. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: Code Signing SubTopic: Notarization Tags:
3d
Reply to Use two NFC entitlement in the same App
[quote='804844021, jpderyck, /thread/804844, /profile/jpderyck'] I would like to avoid if possible to create a second application … ? [/quote] I don’t see how that’d be possible. You want to ship two different variants of your app: One with the EU entitlement, only in the EU, authored by your EU-based organisation. Another with the non-EU entitlement, in various countries outside the EU, authored by your US-based organisation. App Store Connect doesn’t support that. In ASC: A given app record is ‘owned’ by a specific team, whereas you want to associate it with multiple teams. And you can only add a single binary to that an app record [1], whereas you want to add multiple binaries. So, you’ll need multiple app records in App Store Connect, each with its own App ID. Of course these two apps will share a lot of same source code. Usually I’d set this up by duplicating the app target in Xcode and then tweaking the build settings, most critically the bundle ID, on that second target. Share and Enjoy — Quin
3d
APDU Command Execution Issues with Core Bluetooth and Secure Element Communication
I'm experiencing intermittent failures when executing APDU (Application Protocol Data Unit) commands through Core Bluetooth to communicate with external secure elements. The communication flow involves establishing a BLE connection, discovering services and characteristics, and then sending structured APDU commands for card management operations. While the initial connection and characteristic discovery work reliably, I'm encountering inconsistent behavior during APDU command execution where commands either timeout, return unexpected response codes, or fail to complete the expected transaction sequences. The issue appears to be more prevalent when sending multiple APDU commands in rapid succession or when the commands involve cryptographic operations. I've implemented proper error handling and retry mechanisms, but the failures seem to occur at the Core Bluetooth level rather than in my application logic. The peripheral device responds correctly to the same commands when tested with other pl
0
0
11
4d
Chances of App Rejection for B2B Rug Cleaning App (with or without IAP)
Hi everyone, I am developing a mobile application designed for rug cleaning businesses. The app allows businesses to register, subscribe, and use various tools to manage their daily operations — such as job tracking, rug status updates, and team coordination. Essentially, our platform provides a SaaS solution specifically for professional rug cleaning companies, not for general consumers. I have a couple of questions: Since the app is meant only for registered businesses, and users must have a valid business account to access the core features — what are the chances of the app being rejected during App Store review? If I integrate Apple In-App Purchase (IAP) for subscription instead of using an external payment method (like Stripe), would that reduce the chances of rejection, or could there still be issues since it’s a B2B app? Any guidance or real experiences with similar business-use apps would be greatly appreciated. Thank you, Dinesh
2
0
170
4d
How to display a toast view above both main content and FullScreenCover in SwiftUI?
I'm using a ZStack with viewA() and a toast viewB(). I present a FullScreenView() using .fullScreenCover(isPresented:). ZStack { viewA() viewB() // toast view } .fullScreenCover(isPresented: $isPresented) { FullScreenView() } I want viewB (the toast) to appear above both viewA and the FullScreenView. I only found this approach works but it has duplicate code. ZStack { viewA() viewB() // toast view } .fullScreenCover(isPresented: $isPresented) { ZStack { FullScreenModalView() viewB() // toast view } } What are all possible approaches to achieve this in SwiftUI? Any advice or code samples would be appreciated!
Topic: UI Frameworks SubTopic: SwiftUI
1
0
57
4d
Reply to Multiple Apple Pay relationships with differing apple-developer-merchantid-domain-association files
Hi @Hunt_Welch, The Apple Pay Web Merchant Registration API is intended for payment platforms and e-commerce providers, to register and manage a portfolio of merchants via REST API. Please see the following post to answer your questions about configuring multiple providers, payment gateways, and merchants with this API: Apple Pay Web and Ecommerce site hosting Multiple Merchants on a Single Domain Site https://developer.apple.com/forums/thread/61538?answerId=829805022#829805022 Cheers, Paris X Pinkney |  WWDR | DTS Engineer
4d
Reply to registering apple pay as a psp
Hi @aobifuze, For more information about onboarding as a payment platform, please download the Platform Integration Guide PDF listed on the following page: Apple Pay: Resources https://developer.apple.com/apple-pay/resources/ Once you've configured your environment, you may submit a request to access the Apple Pay Web Merchant Registration API. Please follow the steps outlined in the documentation below: Applying to use the registration API and configuring IDs https://developer.apple.com/documentation/applepaywebmerchantregistrationapi/applying-to-use-the-registration-api-and-configuring-ids In your request, please explain your intent to be a PSP or payment platform and the Apple Pay team will explain the rest of the process. Cheers, Paris X Pinkney |  WWDR | DTS Engineer
4d
Reply to Should UserSendCBD work on UAS interfaces?
I tried making a codeless dext which matches to my IOUSBHostInterface. It has a plist that looks like this: CFBundleIdentifierKernel = com.apple.kpi.iokit // not sure if this is required IOClass = AppleUSBHostMergeProperties // uses IOProviderMergeProperties IOMatchCategory = $(PRODUCT_BUNDLE_IDENTIFIER) // makes its matching unique IOProviderClass = IOUSBHostInterface // what I want to match against IOUserClass = force_alt0 // not sure I need this, because we don't need a user-space process at all // required properties for matching to a IOUSBHostInterface, // see https://developer.apple.com/library/archive/qa/qa1076/_index.html idProduct = x // my product's usb product ID, as a Number idVendor = y // my product's usb vendor ID, as a Number bInterfaceNumber = 0 bConfigurationValue = 1 IOProviderMergeProperties = { bInterfaceProtocol = 80 // 0x50 sentinelProperty = I am just a string } I can see in the IORegistry that my sentinelProperty is applied to the interface, but bInterfaceProtocol is not. If
Topic: App & System Services SubTopic: Drivers Tags:
4d
Missing DeveloperDiskImages for iPad Pro M5 iPad17,2
Trying to setup a new iPad Pro M5 device for development returns the The developer disk image could not be mounted on this device. message. The /Library/Developer/DeveloperDiskImages/iOS_DDI/Restore/BuildManifest.plist is missing any iPad17,* entries. ... iPad14,6 iPad14,8 iPad14,9 iPad15,3 iPad15,4 iPad15,5 iPad15,6 iPad15,7 iPad15,8 iPad16,1 iPad16,2 iPad16,3 iPad16,4 iPad16,5 iPad16,6 --> iPad5,1 ... What is the process for getting updated developer device support for Xcode 16.4? I am not sure Xcode 26.0.1 has them either. Domain: com.apple.dt.CoreDeviceError Code: 12040 Failure Reason: Error mounting image: 0xe800010f (kAMDMobileImageMounterPersonalizedBundleMissingVariantError: The bundle image is missing the requested variant for this device.) User Info: { DDIBuildUpdate = 17A321 (developerTools); DDIPath = /Library/Developer/DeveloperDiskImages/iOS_DDI; DVTErrorCreationDateKey = 2025-10-23 18:54:11 +0000; DeviceFusing = prod; DeviceIdentifier = ....; NSURL = file:///Library/Develop
1
0
68
4d
Reply to Apple Pay Merchant Identity Certificate - renewal problems
Hi @team65, The error you received is provided by the Apple Pay Web Merchant Registration API, which is intended for payment platforms and e-commerce providers. Please see the following post to answer your questions about configuring multiple providers, payment gateways, and merchants with this API: Apple Pay Web and Ecommerce site hosting Multiple Merchants on a Single Domain Site https://developer.apple.com/forums/thread/61538?answerId=829805022#829805022 If you do not manage a portfolio of merchants, please follow the steps outlined in the documentation below to configure your merchant in the Developer portal: Configuring Your Environment https://developer.apple.com/documentation/applepayontheweb/configuring-your-environment Cheers, Paris X Pinkney |  WWDR | DTS Engineer
4d
Reply to Close All
Hi. Welcome to these forums, which are for developers to communicate with other developers (some of whom may work for Apple) about issues with developing software for Apple platforms. You're not going to get much traction here. Your issue seems to be a feature suggestion for Apple software. Apple have a web address where you can submit such feedback: https://www.apple.com/feedback/ It helps if you clearly identify what platform (macOS, iOS, iPadOS, watchOS, tvOS...) you are referring to, and clearly describe what feature you think is missing (close all what?). If you believe you have found a bug in Apple software, you can use this address: https://feedbackassistant.apple.com or the Feedback Assistant app.
4d
Reply to the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
This has often happened to me with code which is incorrect but not glaringly so. I've found that using an LLM is useful here. Just ask it why can't the Swift compiler type check this in reasonable time: and append the code. An LLM isn't as hard-nosed as a compiler; it can spot common errors like extra or missing commas. It might be worth suggesting this as an Xcode feature. Just as the compiler constantly runs in the background as you type, an LLM could constantly examine your code and point out oddities - things that might even compile, but are likely unintended, or possible reasons for compiler error messages.
Topic: Programming Languages SubTopic: Swift Tags:
4d