Search results for

“We are unable to process your request”

73,585 results found

Post

Replies

Boosts

Views

Activity

Reply to Unable to validate app
I am still unable to validate the app. Validation continues to fail with the message:iTunes Store operation failed.Unable to process validateProductSoftwareAttributes request at this time due to a general error.The app has been in the Mac App Store for a while, and the build settings haven't changed. The version that generates the error is built with Xcode 7.3 and am planning to roll back to a previous version to see if that is the culprit.-sjs
Apr ’16
Reply to About SKProduct.discounts (new in iOS 12.2)
Hi, I'm try to implement this new feature of the storekit framework,I followed the guide on: https://developer.apple.com/documentation/storekit/in-app_purchase/implementing_subscription_offers_in_your_app. I create the SKPaymentDiscount, after this I send the payment request in sandbox mode, but I receive during the purchase process an error: Unable to Purchase. I can't understand what the problem may be, I hope someone can help me. I attach a screen => https://www.tuunes.org/screen.png
Topic: App & System Services SubTopic: StoreKit Tags:
Apr ’19
Unable to display real time Process() output to NSTextView in release mode
I wanted to display output from Process() to NSTextView in real time. Below are my code snippets: func displayOutput (_ task:Process) { let outputPipe = Pipe() setvbuf(stdout, nil, _IONBF, 0) dup2(outputPipe.fileHandleForWriting.fileDescriptor, STDOUT_FILENO) task.standardOutput = outputPipe outputPipe.fileHandleForReading.readabilityHandler = { pipe in if let outputString = String(data: pipe.availableData, encoding: String.Encoding.utf8) { if outputString.count > 0 { DispatchQueue.main.async(execute: { print(outputString, separator: n, to: &self.outputTextView.string) let range = NSRange(location:self.outputTextView.string.count,length:0) tself.outputTextView.scrollRangeToVisible(range) } } } } } The above code snippets only works in debug mode. Nothing displays on the NSTextView besides the initial text when it's in release mode.
1
0
541
Oct ’20
Refreshing fetch request when background process (share extension) updates it
Hi all, I have a share extension which is adding data to a CoreData database via an instance of DataManager. However when testing and outputting the content of fetch request using a button in the main app, I see that the fetch request does not have the new results after they are added by the share extension until I force close the app and reopen it. I have tried refreshing the data using the refresh method defined below as well but without luck. DataManager import Foundation class DataManager: ObservableObject { let container: NSPersistentContainer static var preview: DataManager = { let controller = DataManager(inMemory: false) return controller }() init(inMemory: Bool = false) { container = NSPersistentContainer(name: DataModel) if inMemory { container.persistentStoreDescriptions.first!.url = URL(fileURLWithPath: /dev/null) } else { let storeURL = URL.storeURL(for: group.Highlightly, databaseName: DataModel) let storeDescription = NSPersistentStoreDescription(url: storeURL) container.persi
0
0
1k
May ’23
NSUnderlyingError on MDM managed devices
Our iOS devices are managed by our AirWatch Workspace ONE UEM. Recently we have encountered a problem where the VMware Hub application is unable to process installation requests for approved public iOS applications. Below is the error observed with the exclusion of the URL link information... 2021-04-12 15:08:39:347 3682687 [E] [Error] GET 'WorkSpace ONE Access URL' [2577.4581 s] Error Domain=NSURLErrorDomain Code=-1001 The request timed out. UserInfo={NSUnderlyingError=0x28013c9f0 {Error Domain=kCFErrorDomainCFNetwork Code=-1001 (null) UserInfo={_kCFStreamErrorCodeKey=-2102, _kCFStreamErrorDomainKey=4}}, NSErrorFailingURLStringKey='WorkSpace ONE Access URL, NSErrorFailingURLKey='WorkSpace ONE Access URL, _kCFStreamErrorDomainKey=4, _kCFStreamErrorCodeKey=-2102, NSLocalizedDescription=The request timed out.} [com.air-watch.agent NetworkLogger:95] 2021-04-12 15:08:39:347 3682668 [I] Saved samples of type AWDataSampler.DataSamplerDataUsageModule [com.air-watch.sdk.dataSampler
0
0
1.7k
Apr ’21
Forbidden request when using API in Codemagic( Unable to find a team with the given Content Provider ID )
Failed to fetch certificates: This request is forbidden for security reasons - Unable to find a team with the given Content Provider ID '72df6041-c291-4d95-b690-2a3b75ff72f6' to which you belong. Please contact Apple Developer Program Support. https://developer.apple.com/support I have already confirmed that: All API keys were generated correctly. All required roles and permissions have been assigned in App Store Connect. To confirm my doubt, I requested api key from a fellow developer, and that worked in CodeMagic without throwing an error. Could you please help me figure out why the given Content Provider ID is not being recognized? Thank you.
3
0
454
Sep ’25
Unrecoverable error. SecurityAgent was unable to create requested mechanism
I'm writing an Authorization Plugin (herein called Othello) following the old and new documentation as best I can. It is meant to be run at Login after FileVault opens up as a mechanism in system.login.console but I am testing it by adding its own right in the Authorization database and a command line test app that attempts to obtain this temporary right. The error message that pops up is the same though: Relevant console log entries are attached. Auth Plugin Loading Unrecoverable Error Console.log There are a few interesting hints in the log, but I can't find much toward resolving any of them: Do Auth Plugins have to be signed by the same team as SecurityAgentHelper? (Can't be...) How is the MechanismCreate function even being called if the bundle can't be loaded? Why is MechanismCreate's AuthorizationPluginRef inPlugin parameter apparently some sort of String instead of an AuthorizationPluginRef? Here is the temporary right definition I installed with security authorizationdb write othello.login: Othello.lo
1
0
1.2k
Jul ’22
Reply to MacBook Air M4 - Battery Drain During Sleep
I've tried to optimise everything - reducing tcpkeepalive, special feature flags, etc. Still my macbook wakes up every 10 minutes~ averaging 45 times a night (not limited to night!). $ pmset -g stats Sleep Count:42 Dark Wake Count:42 User Wake Count:1 This is the list of process / info strings I've got from pmset -g log for this night (unique): [*process=dasd request=SleepService info=com.apple.dasd:0:com.apple.bluetooth.CBMetrics] [*process=dasd request=SleepService info=com.apple.dasd:0:com.apple.CoreAnalytics.2Hours] [*process=dasd request=SleepService info=com.apple.dasd:0:com.apple.MobileAccessoryUpdater.deviceIdleCheck] [*process=dasd request=SleepService info=com.apple.dasd:501:com.apple.duetexpertd.apppredictionupdate] [*process=dasd request=SleepService info=com.apple.dasd:501:com.apple.intelligenceplatform.IntelligencePlatformCore.ViewEvery2Hours] [*process=dasd request=SleepService i
Topic: Community SubTopic: Apple Developers Tags:
Aug ’25
Reply to Error Analyzing App Version
I experience same issues, looks like it has something to do with multiple accounts connected with xCode, and build processing prior to export. I also have similar issues with xcode build automation this morning, when trying to export Error Domain=ITunesSoftwareServiceErrorDomain Code=-19211 The request rate limit has been reached.: We’ve received too many API requests for this API key in the past 60 seconds. Please wait and try again. UserInfo={status=429, code=RATE_LIMIT_EXCEEDED, title=The request rate limit has been reached., detail=We’ve received too many API requests for this API key in the past 60 seconds. Please wait and try again., NSLocalizedDescription=The request rate limit has been reached.: We’ve received too many API requests for this API key in the past 60 seconds. Please wait and try again., NSLocalizedFailureReason=Unable to perform upload.}
May ’22
Reply to iTunes Connect Localizations Broken -> cannot submit new app versions!
Thanks for the post, because we have a similar problem. When we click one of our apps in iTunes Connect it says 'Unable to Process Request'. We have already been in contact with Apple Support, but did know about this problem until know and I can share that with Apple support too. I also just found out that our apps were not visible in the app store as well. We have this problem since July 28, before the iTunes Connect down time.
Jul ’15
Reply to Export Certificate from Keychain in .p12 file format
thank you for your input, eskimo. We dont create the certificate signing requests ourselves. From our partners Dashboard we get two files: the first pair of the Payment Processing Certificate and the Merchant Identity Certificate. These files are then uploaded to our Apple Developer Account and then give us the final certificates to download: apple_pay.cer and merchant_id.cer Both of these files are added to the Keychain but we are still unable to export it in .p12 Shouldnt the private key already be included in the csr?
Jan ’22
Reply to Unable to validate app
I am still unable to validate the app. Validation continues to fail with the message:iTunes Store operation failed.Unable to process validateProductSoftwareAttributes request at this time due to a general error.The app has been in the Mac App Store for a while, and the build settings haven't changed. The version that generates the error is built with Xcode 7.3 and am planning to roll back to a previous version to see if that is the culprit.-sjs
Replies
Boosts
Views
Activity
Apr ’16
Unable to process app at this time due to a general error
It is 8:50 am Seoul,Korea time. Is this the App Store's fault? What should I do?
Replies
1
Boosts
0
Views
623
Activity
Oct ’21
Reply to About SKProduct.discounts (new in iOS 12.2)
Hi, I'm try to implement this new feature of the storekit framework,I followed the guide on: https://developer.apple.com/documentation/storekit/in-app_purchase/implementing_subscription_offers_in_your_app. I create the SKPaymentDiscount, after this I send the payment request in sandbox mode, but I receive during the purchase process an error: Unable to Purchase. I can't understand what the problem may be, I hope someone can help me. I attach a screen => https://www.tuunes.org/screen.png
Topic: App & System Services SubTopic: StoreKit Tags:
Replies
Boosts
Views
Activity
Apr ’19
Unable to display real time Process() output to NSTextView in release mode
I wanted to display output from Process() to NSTextView in real time. Below are my code snippets: func displayOutput (_ task:Process) { let outputPipe = Pipe() setvbuf(stdout, nil, _IONBF, 0) dup2(outputPipe.fileHandleForWriting.fileDescriptor, STDOUT_FILENO) task.standardOutput = outputPipe outputPipe.fileHandleForReading.readabilityHandler = { pipe in if let outputString = String(data: pipe.availableData, encoding: String.Encoding.utf8) { if outputString.count > 0 { DispatchQueue.main.async(execute: { print(outputString, separator: n, to: &self.outputTextView.string) let range = NSRange(location:self.outputTextView.string.count,length:0) tself.outputTextView.scrollRangeToVisible(range) } } } } } The above code snippets only works in debug mode. Nothing displays on the NSTextView besides the initial text when it's in release mode.
Replies
1
Boosts
0
Views
541
Activity
Oct ’20
Reply to App Clips and Shortcuts enhancement?
Thanks for the feature request. So we can track it, please file a feedback report with the request and post the number here. We're unable to track feature requests made in the forums.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Aug ’20
Refreshing fetch request when background process (share extension) updates it
Hi all, I have a share extension which is adding data to a CoreData database via an instance of DataManager. However when testing and outputting the content of fetch request using a button in the main app, I see that the fetch request does not have the new results after they are added by the share extension until I force close the app and reopen it. I have tried refreshing the data using the refresh method defined below as well but without luck. DataManager import Foundation class DataManager: ObservableObject { let container: NSPersistentContainer static var preview: DataManager = { let controller = DataManager(inMemory: false) return controller }() init(inMemory: Bool = false) { container = NSPersistentContainer(name: DataModel) if inMemory { container.persistentStoreDescriptions.first!.url = URL(fileURLWithPath: /dev/null) } else { let storeURL = URL.storeURL(for: group.Highlightly, databaseName: DataModel) let storeDescription = NSPersistentStoreDescription(url: storeURL) container.persi
Replies
0
Boosts
0
Views
1k
Activity
May ’23
NSUnderlyingError on MDM managed devices
Our iOS devices are managed by our AirWatch Workspace ONE UEM. Recently we have encountered a problem where the VMware Hub application is unable to process installation requests for approved public iOS applications. Below is the error observed with the exclusion of the URL link information... 2021-04-12 15:08:39:347 3682687 [E] [Error] GET 'WorkSpace ONE Access URL' [2577.4581 s] Error Domain=NSURLErrorDomain Code=-1001 The request timed out. UserInfo={NSUnderlyingError=0x28013c9f0 {Error Domain=kCFErrorDomainCFNetwork Code=-1001 (null) UserInfo={_kCFStreamErrorCodeKey=-2102, _kCFStreamErrorDomainKey=4}}, NSErrorFailingURLStringKey='WorkSpace ONE Access URL, NSErrorFailingURLKey='WorkSpace ONE Access URL, _kCFStreamErrorDomainKey=4, _kCFStreamErrorCodeKey=-2102, NSLocalizedDescription=The request timed out.} [com.air-watch.agent NetworkLogger:95] 2021-04-12 15:08:39:347 3682668 [I] Saved samples of type AWDataSampler.DataSamplerDataUsageModule [com.air-watch.sdk.dataSampler
Replies
0
Boosts
0
Views
1.7k
Activity
Apr ’21
There was an error processing your request. while adding build to test group
When I was adding build to test group, this error keeps pop up, I filled all the blanks, how this come?
Replies
1
Boosts
0
Views
399
Activity
Jun ’23
error: There was an error processing your request. Please try again later.
I tried submitting and reviewing but the application keeps reporting an error, please help me find a way to fix it?
Replies
1
Boosts
0
Views
767
Activity
Apr ’24
Forbidden request when using API in Codemagic( Unable to find a team with the given Content Provider ID )
Failed to fetch certificates: This request is forbidden for security reasons - Unable to find a team with the given Content Provider ID '72df6041-c291-4d95-b690-2a3b75ff72f6' to which you belong. Please contact Apple Developer Program Support. https://developer.apple.com/support I have already confirmed that: All API keys were generated correctly. All required roles and permissions have been assigned in App Store Connect. To confirm my doubt, I requested api key from a fellow developer, and that worked in CodeMagic without throwing an error. Could you please help me figure out why the given Content Provider ID is not being recognized? Thank you.
Replies
3
Boosts
0
Views
454
Activity
Sep ’25
Unrecoverable error. SecurityAgent was unable to create requested mechanism
I'm writing an Authorization Plugin (herein called Othello) following the old and new documentation as best I can. It is meant to be run at Login after FileVault opens up as a mechanism in system.login.console but I am testing it by adding its own right in the Authorization database and a command line test app that attempts to obtain this temporary right. The error message that pops up is the same though: Relevant console log entries are attached. Auth Plugin Loading Unrecoverable Error Console.log There are a few interesting hints in the log, but I can't find much toward resolving any of them: Do Auth Plugins have to be signed by the same team as SecurityAgentHelper? (Can't be...) How is the MechanismCreate function even being called if the bundle can't be loaded? Why is MechanismCreate's AuthorizationPluginRef inPlugin parameter apparently some sort of String instead of an AuthorizationPluginRef? Here is the temporary right definition I installed with security authorizationdb write othello.login: Othello.lo
Replies
1
Boosts
0
Views
1.2k
Activity
Jul ’22
Reply to MacBook Air M4 - Battery Drain During Sleep
I've tried to optimise everything - reducing tcpkeepalive, special feature flags, etc. Still my macbook wakes up every 10 minutes~ averaging 45 times a night (not limited to night!). $ pmset -g stats Sleep Count:42 Dark Wake Count:42 User Wake Count:1 This is the list of process / info strings I've got from pmset -g log for this night (unique): [*process=dasd request=SleepService info=com.apple.dasd:0:com.apple.bluetooth.CBMetrics] [*process=dasd request=SleepService info=com.apple.dasd:0:com.apple.CoreAnalytics.2Hours] [*process=dasd request=SleepService info=com.apple.dasd:0:com.apple.MobileAccessoryUpdater.deviceIdleCheck] [*process=dasd request=SleepService info=com.apple.dasd:501:com.apple.duetexpertd.apppredictionupdate] [*process=dasd request=SleepService info=com.apple.dasd:501:com.apple.intelligenceplatform.IntelligencePlatformCore.ViewEvery2Hours] [*process=dasd request=SleepService i
Topic: Community SubTopic: Apple Developers Tags:
Replies
Boosts
Views
Activity
Aug ’25
Reply to Error Analyzing App Version
I experience same issues, looks like it has something to do with multiple accounts connected with xCode, and build processing prior to export. I also have similar issues with xcode build automation this morning, when trying to export Error Domain=ITunesSoftwareServiceErrorDomain Code=-19211 The request rate limit has been reached.: We’ve received too many API requests for this API key in the past 60 seconds. Please wait and try again. UserInfo={status=429, code=RATE_LIMIT_EXCEEDED, title=The request rate limit has been reached., detail=We’ve received too many API requests for this API key in the past 60 seconds. Please wait and try again., NSLocalizedDescription=The request rate limit has been reached.: We’ve received too many API requests for this API key in the past 60 seconds. Please wait and try again., NSLocalizedFailureReason=Unable to perform upload.}
Replies
Boosts
Views
Activity
May ’22
Reply to iTunes Connect Localizations Broken -> cannot submit new app versions!
Thanks for the post, because we have a similar problem. When we click one of our apps in iTunes Connect it says 'Unable to Process Request'. We have already been in contact with Apple Support, but did know about this problem until know and I can share that with Apple support too. I also just found out that our apps were not visible in the app store as well. We have this problem since July 28, before the iTunes Connect down time.
Replies
Boosts
Views
Activity
Jul ’15
Reply to Export Certificate from Keychain in .p12 file format
thank you for your input, eskimo. We dont create the certificate signing requests ourselves. From our partners Dashboard we get two files: the first pair of the Payment Processing Certificate and the Merchant Identity Certificate. These files are then uploaded to our Apple Developer Account and then give us the final certificates to download: apple_pay.cer and merchant_id.cer Both of these files are added to the Keychain but we are still unable to export it in .p12 Shouldnt the private key already be included in the csr?
Replies
Boosts
Views
Activity
Jan ’22