Search results for

Request failed with http status code 503

190,814 results found

Post

Replies

Boosts

Views

Activity

Reply to Account Holder LOCKED OUT - NO SUPPORT
Thanks for the post. We appreciate your interest in participating in the forums! These forums are for questions about developing software and accessories for Apple platforms. Your question seems related to the Apple Developer Program. For your question, please contact the Apple Developer Program Support Team. https://developer.apple.com/help/account/ We hope this information is helpful to you. Albert Pascual
  Worldwide Developer Relations.
4d
DriverKit. Data Integrity issue.
Dear Apple engineers and DriverKit developers, We have developed a DriverKit (DEXT) driver for an HBA RAID controller. The RAID controller is connected to hosts through Thunderbolt (PCIe port of the Thunderbolt controller). We use an IO script to verify the developed driver. The test fails after a few (10-12) hours of running with an error: “BUG IN CLIENT OF LIBDISPATCH: dispatch_sync called on queue already owned by current thread”. We inspected the stack trace of the crash report. This error happens in the interrupt handler. Thread 5 Crashed: 0 libdispatch.dylib 0x19671aa8c __DISPATCH_WAIT_FOR_QUEUE__ + 484 1 libdispatch.dylib 0x19671a5d0 _dispatch_sync_f_slow + 152 2 DriverKit 0x195d3fc1c IODispatchQueue::DispatchSync_f(void*, void (*)(void*)) + 296 3 DriverKit 0x195d40860 IOInterruptDispatchSourceThread(void*) + 380 4 libsystem_pthread.dylib 0x1968a3738 _pthread_start + 140 5 libsystem_pthread.dylib 0x1968ac6c8 thread_start + 8 On our side we created 5 DispatchQueue(s) for the interrupt processin
7
0
197
4d
Reply to Should UserSendCBD work on UAS interfaces?
I can see in the IORegistry that my sentinelProperty is applied to the interface, but bInterfaceProtocol is not. ... I expect that tweaking the bInterfaceProtocol value on the IOUSBHostInterface at driver match time doesn't make any difference. That's unfortunate. So, looking at our code, it turns out that AppleUSBHostMergeProperties will actually only work in one of two ways: If a property is absent, it will add that property. If a property already exists AND that property is a dictionary, then it will merge/modify your dictionary into the KEXT dictionary. I hadn't looked closely at this today, but, ironically, that's almost certainly why many properties at the root get merged into a dictionary by the nub layer, as it then allows those properties to be modified. In this particular case, that modification point would be the USB Device Info dictionary of IOUSBMassStorageDriverNub. The good news here is that I think a codeless DEXT might still work for this. I haven't had a chance to test this, but my
Topic: App & System Services SubTopic: Drivers Tags:
4d
Balancing implicit startAccessingSecurityScopedResource
If I'm reading this guide correctly, macOS will automatically/implicitly startAccessingSecurityScopedResource for files opened via drag to Dock icon or NSOpenPanel. And I'm expected to call stopAccessingSecurityScopedResource to balance it once I'm done. Does that mean that if I don't, I'm leaking kernel resources as per the docs? If you fail to relinquish your access to file-system resources when you no longer need them, your app leaks kernel resources. If sufficient kernel resources leak, your app loses its ability to add file-system locations to its sandbox, such as with Powerbox or security-scoped bookmarks, until relaunched. What is this limit in practice for macOS and iOS? I've seen number ranging from 1000-2500. From my testing, iOS does not provide the same implicit startAccessingSecurityScopedResource when using UIDocumentPickerViewController. Is this a correct observation/per design? Now, in the cases where I'm creating an NSURL by resolving a saved bookmark, I'm expected to explicitly star
4
0
67
4d
Reply to Balancing implicit startAccessingSecurityScopedResource
OK, I had a conversation with a Foundation framework engineer and my colleague Kevin Elliott, and would like to confirm that the behavior the guide describes is right: On iOS (and its variants), you need to call startAccessingSecurityScopedResource before accessing a URL from a file picker, and match with a stopAccessingSecurityScopedResource call when you are done with the file. On macOS, you can access a URL from a file picker without calling startAccessingSecurityScopedResource beforehand, but need to call stopAccessingSecurityScopedResource when you are done with the file. This is so that existing code written before sandboxing being introduced can still consume URLs from a picker. Failing to call stopAccessingSecurityScopedResource will leak a security scope resource. With this in mind, now to your questions: From my testing, iOS does not provide the same implicit startAccessingSecurityScopedResource when using UIDocumentPickerViewController. Is this a correct observation/per design? Co
Topic: App & System Services SubTopic: Core OS Tags:
4d
A problem with the Account Holder ID
Hello, I'm trying to renew my Appstore Connect subscription but unfortunately I'm facing problems. Our Account Holder ID is locked and when he tries to log in an error message keeps showing up saying This Apple ID has been Locked. Contact your Administrator or Manager to reset your password and unlock your account. whose the admin or manager in this case? I contacted the support multiple times and they referred me to this link. https://support.apple.com/en-us/HT201487 We tried these steps but sadly no luck. whenever he tries to change the password an error message keep popping up saying Need to reset your password? Contact your organization’s Administrator or Manager and ask them to reset the password for your Managed Apple ID
1
0
728
4d
Reply to Background script in the form of a service worker cannot be debugged
Our engineering teams need to investigate this issue, as resolution may involve changes to Apple's software. Please file a bug report, include a small Xcode project and some directions that can be used to reproduce the problem, and post the Feedback number here once you do. If you post the Feedback number here I'll check the status next time I do a sweep of forums posts where I've suggested bug reports. Bug Reporting: How and Why? has tips on creating your bug report.
Topic: Safari & Web SubTopic: General Tags:
4d
Reply to PushToTalk
So, let me start here: But there are problems with clicking on recorded audio on Bluetooth devices (all noise or no sound during playback). The thing to keep in mind here is that Bluetooth has two entirely separate audio mechanisms, which have very different levels of audio quality and behavior: A2DP -> Playback only, higher quality, modeled as music player. HFP -> Play and record, lower quality audio, modeled as a phone. Switching between those modes isn't immediate, so manipulating the audio session configuration can change how audio sounds and/or cause odd glitches. These issues will also be worse in the background, where your app no longer has direct/less control over the audio session state. In terms of your code, there are a few different issues: (1) AVAudioPlayer should not be used for exactly the same reasons you should not use AVAudioRecorder. All your playback and recording should be going through AVAudioEngine. (2) This code here is wrong and doesn't really work, at least no
Topic: Media Technologies SubTopic: Audio Tags:
4d
tensorflow-metal fails with tensorflow > 2.18.1
Also submitted as feedback (ID: FB20612561). Tensorflow-metal fails on tensorflow versions above 2.18.1, but works fine on tensorflow 2.18.1 In a new python 3.12 virtual environment: pip install tensorflow pip install tensor flow-metal python -c import tensorflow as tf Prints error: Traceback (most recent call last): File , line 1, in File /Users//pt/venv/lib/python3.12/site-packages/tensorflow/init.py, line 438, in _ll.load_library(_plugin_dir) File /Users//pt/venv/lib/python3.12/site-packages/tensorflow/python/framework/load_library.py, line 151, in load_library py_tf.TF_LoadLibrary(lib) tensorflow.python.framework.errors_impl.NotFoundError: dlopen(/Users//pt/venv/lib/python3.12/site-packages/tensorflow-plugins/libmetal_plugin.dylib, 0x0006): Library not loaded: @rpath/_pywrap_tensorflow_internal.so Referenced from: <8B62586B-B082-3113-93AB-FD766A9960AE> /Users//pt/venv/lib/python3.12/site-packages/tensorflow-plugins/libmetal_plugin.dylib Reason: tried: '/Users//pt/venv/lib/python3.12/site-pa
3
0
1.1k
4d
Reply to List rows disappearing when scrolling
Should I be doing as I currently am, where I create modelData as a global let so I can access it everywhere, or should I pass it through the view hierarchy as an Environment variable, like @Environment(ModelData.self) var modelData: ModelData? Bear in mind that some functions are outside of the view hierarchy and cannot access modelData if I do this. Various things like controllers that need access to values in modelData cannot get to it. Since It's an observable object, make it a State at the App level and pass that down your view hierarchy using environment modifier. You can also have a singleton instance of ModelData if you only ever need a single instance of the object. We’ll need more information to fully understand the issue. If you encounter the same problem with the relevant code in a small test project, please share a link to it. This will help us better comprehend the situation. If you’re not familiar with creating a test project, refer to Creating a test project.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
4d
Reply to IOS app on MacOS 15 local network access
It's a Mac app built using Mac Catalyst based on our iOS app code. Customer complaints are only for our Mac app, not our iOS app. It seems like (our guess) macOS uses some set of app data (e.g. app name, location, entitlements, etc) to determine if macOS should create a new entry in the Settings > Privacy & Security > Local Network list. Could some difference between a prior version of our app and our latest version of our app be causing the multiple entries in the Local Network list? Why would our app not actually have Local Network access even though all of the switches are turned on? Any thoughts?
4d
DEXT receives zero-filled buffer from DMA, despite firmware confirming data write
Hello everyone, I am migrating a KEXT for a SCSI PCI RAID controller (LSI 3108 RoC) to DriverKit (DEXT). While the DEXT loads successfully, I'm facing a DMA issue: an INQUIRY command results in a 0-byte disk because the data buffer received by the DEXT is all zeros, despite our firmware logs confirming that the correct data was prepared and sent. We have gathered detailed forensic evidence and would appreciate any insights from the community. Detailed Trace of a Failing INQUIRY Command: 1, DEXT Dispatches the Command: Our UserProcessParallelTask implementation correctly receives the INQUIRY task. Logs show the requested transfer size is 6 bytes, and the DEXT obtains the IOVA (0x801c0000) to pass to the hardware. DEXT Log: [UserProcessParallelTask_Impl] --- FORENSIC ANALYSIS --- [UserProcessParallelTask_Impl] fBufferIOVMAddr = 0x801c0000 [UserProcessParallelTask_Impl] fRequestedTransferCount = 6 2, Firmware Receives IOVA and Prepares Correct Data: A probe in our firmware confirms that the har
5
0
162
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
171
4d