Search results for

“We are unable to process your request”

73,585 results found

Post

Replies

Boosts

Views

Activity

Reply to iOS 18.2 ImageIO Crash
I sent a feedback with complete crash stack information, I am unable to reproduce this issue, through analysis it should occur when the user is playing a GIF, and we use CGImageSourceCreateImageAtIndex to process it. Feedback
Topic: UI Frameworks SubTopic: UIKit Tags:
Dec ’24
Reply to How to prevent that our XPC service is getting contantly preempted?
The only solution we found was the same one that also jdv85 shared on StackOverflow. When the app is calling a method of the XPC service for processing, the priority of that XPC service is raised so that the request can quickly be performed as the main app may have to wait for the result of that call. Once processing is over, which is indicated by calling the callback block of the request, the priority level will drop again after a while. By never answering the request, the system believes that the XPC service is still processing it and that way the priority stays up. This also keeps sudden termination disabled automatically for the XPC service as the system will not terminate an XPC process while it believes it is still actively processing data, so we don't need to disable it manually anymore. While this solution works, it's still just a workaround that may break one day in the future, e.g. when Apple decides that there is a time limit f
Mar ’22
Reply to Yet Another Notarization Process Strangeness
This could be the case you're describing precisely in the post you linked to.But I still see 2 issues with having the notarization process requiring changes to the Apple Developer Program License Agreement being accepted:- from what I observed, it was still possible to codesign things. So why should the notarization process be impacted? (N.B. This is not a request to break the codesigning requests too).- changes to the Apple Developer Program License Agreement can not be anticipated by 3rd party developers. So, blocking the notarization process (until the changes are accepted) will block/break automatic processes that make notarization requests. Without reasonable prior notice.
Topic: Code Signing SubTopic: General Tags:
Jan ’20
Reply to Ordering of Transparent Proxy Providers
Our currently sitituation is that when our product is NETransparentProxyProvider Two and another vendor is NETransparentProxyProvider One, we are unable to identify the originating process of the flow content. We curerntly use the flow.metadata to identify the originating process as a browser. However, we do not have that ability being NETransparentProxyProvider Two as flow.metadata reflects process information of NETransparentProxyProvider One. Is there anyway of being NETransparentProxyProvider Two and knowing the originating process information that was intercepted by NETransparentProxyProvider One?
Apr ’21
Network request queue
I want to create a network task queue that will persist to disk so that if the app crashed or was shut down during processing the requests I could restart the app and continue processing the outstanding requests. I'm considering saving the network details to a db table or serializing an object to disk and then using NSOperations to process them.I could restore the objects on startup or read the table to recreate the tasks. Does anyone have any good advice or suggestions for this approach?
1
0
988
May ’17
Reply to Ad Hoc .ipa for iOS 12.5.8
@ChristianBr if you are unable to resolve this problem by updating your certificates, please consider filing a bug report and opening a code level support request. If you open a support request, include the url of this forums thread and the feedback number so the request can be assigned to my attention. https://developer.apple.com/support/technical/ Bug Reporting: How and Why? has tips on creating your bug report.
Topic: Business & Education SubTopic: General Tags:
Feb ’26
lldb fails to launch process: "Not allowed to attach to process"
Xcode 12.4 on Big Sur, a very basic attempt to launch and debug a process. Little-Net:host-osx minfrin$ lldb ./tmp_firefox/Library/Google/Chrome/NativeMessagingHosts/chrome-token-signing.app/Contents/MacOS/chrome-token-signing (lldb) target create ./tmp_firefox/Library/Google/Chrome/NativeMessagingHosts/chrome-token-signing.app/Contents/MacOS/chrome-token-signing Current executable set to '/Users/minfrin/src/redwax/open-eid/chrome-token-signing-trunk/host-osx/tmp_firefox/Library/Google/Chrome/NativeMessagingHosts/chrome-token-signing.app/Contents/MacOS/chrome-token-signing' (x86_64). (lldb) process launch -i cert.native error: process exited with status -1 (attach failed (Not allowed to attach to process. Look in the console messages (Console.app), near the debugserver entries when the attached failed. The subsystem that denied the attach permission will likely have logged an informative message about why it was denied.)) Why would lldb, running as my local user, be unable
6
0
10k
Mar ’21
Reply to Please help me Error 422 "There was an error processing your request. Please try again later"
Issue Submitting Builds for Beta Review - Beta Contract is Missing We are currently facing an issue when trying to submit new builds for review for external Beta testing. Each time we attempt to submit a build in the What to Test dialog, we receive the following error message: There was an error processing your request. Please try again later. Upon inspecting the browser response when clicking Submit for Review in the What to Test dialog, we found the following details: code: ENTITY_UNPROCESSABLE.BETA_CONTRACT_MISSING detail: Beta Contract is missing. id: 4ed15cb2-2732-4100-a660-0899dcb0e25a status: 422 title: Beta contract is missing for the app. However, after checking the Developer Console, we are unable to locate any missing information or steps that need to be addressed. We would greatly appreciate your assistance in resolving this issue as soon as possible, as we are currently unable to push any new builds for testing.
Oct ’24
Reply to iTunes Connect having issues with screenshot uploads
Same problem, random problem Unable to Submit for Review The items below are required to start the review process: There are still screenshot uploads in progress.
Replies
Boosts
Views
Activity
Sep ’21
Reply to iOS 18.2 ImageIO Crash
I sent a feedback with complete crash stack information, I am unable to reproduce this issue, through analysis it should occur when the user is playing a GIF, and we use CGImageSourceCreateImageAtIndex to process it. Feedback
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Dec ’24
Reply to Unable to enroll into the Apple Developer Program
i hate apple this is totally shit they cant process payment i tried with 5-6 cards even from developer app, tried to add payment method in m apple account, and also tried to enroll through web but same they cant process payment and even not providing any response what reason they are unable to process payment ...
Replies
Boosts
Views
Activity
Dec ’23
Reply to How to prevent that our XPC service is getting contantly preempted?
The only solution we found was the same one that also jdv85 shared on StackOverflow. When the app is calling a method of the XPC service for processing, the priority of that XPC service is raised so that the request can quickly be performed as the main app may have to wait for the result of that call. Once processing is over, which is indicated by calling the callback block of the request, the priority level will drop again after a while. By never answering the request, the system believes that the XPC service is still processing it and that way the priority stays up. This also keeps sudden termination disabled automatically for the XPC service as the system will not terminate an XPC process while it believes it is still actively processing data, so we don't need to disable it manually anymore. While this solution works, it's still just a workaround that may break one day in the future, e.g. when Apple decides that there is a time limit f
Replies
Boosts
Views
Activity
Mar ’22
Reply to NSBundleResourceRequest could not connect to its helper daemon
Apple engineer requested logs from any device where this happens... but we cannot provide that as it happens only in the wild. We've been unable to reproduce the issue on our test devices.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Jul ’17
Reply to Yet Another Notarization Process Strangeness
This could be the case you're describing precisely in the post you linked to.But I still see 2 issues with having the notarization process requiring changes to the Apple Developer Program License Agreement being accepted:- from what I observed, it was still possible to codesign things. So why should the notarization process be impacted? (N.B. This is not a request to break the codesigning requests too).- changes to the Apple Developer Program License Agreement can not be anticipated by 3rd party developers. So, blocking the notarization process (until the changes are accepted) will block/break automatic processes that make notarization requests. Without reasonable prior notice.
Topic: Code Signing SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jan ’20
Reply to Unable to Submit for Review
I am getting the same issue Unable to Submit for Review The items below are required to start the review process: An error has occurred. Try again later. Could anyone help ?
Replies
Boosts
Views
Activity
Oct ’21
Reply to Ordering of Transparent Proxy Providers
Our currently sitituation is that when our product is NETransparentProxyProvider Two and another vendor is NETransparentProxyProvider One, we are unable to identify the originating process of the flow content. We curerntly use the flow.metadata to identify the originating process as a browser. However, we do not have that ability being NETransparentProxyProvider Two as flow.metadata reflects process information of NETransparentProxyProvider One. Is there anyway of being NETransparentProxyProvider Two and knowing the originating process information that was intercepted by NETransparentProxyProvider One?
Replies
Boosts
Views
Activity
Apr ’21
Network request queue
I want to create a network task queue that will persist to disk so that if the app crashed or was shut down during processing the requests I could restart the app and continue processing the outstanding requests. I'm considering saving the network details to a db table or serializing an object to disk and then using NSOperations to process them.I could restore the objects on startup or read the table to recreate the tasks. Does anyone have any good advice or suggestions for this approach?
Replies
1
Boosts
0
Views
988
Activity
May ’17
Reply to Instruments can't open a saved trace
This has been very repeatable and so far I have been unable to open a saved trace in Instruments. I submitted a bug report using Feedback Assistance and attached the requested files. Ticket: FB13819533
Replies
Boosts
Views
Activity
Jun ’24
Unable to register as an Apple Developer
I never registered before, but the Developer App keeps telling me Your request could not be processed. What should i do ?
Replies
2
Boosts
0
Views
502
Activity
Oct ’21
Reply to Ad Hoc .ipa for iOS 12.5.8
@ChristianBr if you are unable to resolve this problem by updating your certificates, please consider filing a bug report and opening a code level support request. If you open a support request, include the url of this forums thread and the feedback number so the request can be assigned to my attention. https://developer.apple.com/support/technical/ Bug Reporting: How and Why? has tips on creating your bug report.
Topic: Business & Education SubTopic: General Tags:
Replies
Boosts
Views
Activity
Feb ’26
lldb fails to launch process: "Not allowed to attach to process"
Xcode 12.4 on Big Sur, a very basic attempt to launch and debug a process. Little-Net:host-osx minfrin$ lldb ./tmp_firefox/Library/Google/Chrome/NativeMessagingHosts/chrome-token-signing.app/Contents/MacOS/chrome-token-signing (lldb) target create ./tmp_firefox/Library/Google/Chrome/NativeMessagingHosts/chrome-token-signing.app/Contents/MacOS/chrome-token-signing Current executable set to '/Users/minfrin/src/redwax/open-eid/chrome-token-signing-trunk/host-osx/tmp_firefox/Library/Google/Chrome/NativeMessagingHosts/chrome-token-signing.app/Contents/MacOS/chrome-token-signing' (x86_64). (lldb) process launch -i cert.native error: process exited with status -1 (attach failed (Not allowed to attach to process. Look in the console messages (Console.app), near the debugserver entries when the attached failed. The subsystem that denied the attach permission will likely have logged an informative message about why it was denied.)) Why would lldb, running as my local user, be unable
Replies
6
Boosts
0
Views
10k
Activity
Mar ’21
Unable to Submit for Review
I am getting this error when I try to submit a new version for review with in-app purchases enabled and selected my InAppPurchase monthly subscription plan. But nowhere appears what is wrong. Error message follows: Unable to Submit for Review The items below are required to start the review process: An error has occurred. Try again later.
Replies
0
Boosts
0
Views
459
Activity
Apr ’21
Reply to Please help me Error 422 "There was an error processing your request. Please try again later"
Issue Submitting Builds for Beta Review - Beta Contract is Missing We are currently facing an issue when trying to submit new builds for review for external Beta testing. Each time we attempt to submit a build in the What to Test dialog, we receive the following error message: There was an error processing your request. Please try again later. Upon inspecting the browser response when clicking Submit for Review in the What to Test dialog, we found the following details: code: ENTITY_UNPROCESSABLE.BETA_CONTRACT_MISSING detail: Beta Contract is missing. id: 4ed15cb2-2732-4100-a660-0899dcb0e25a status: 422 title: Beta contract is missing for the app. However, after checking the Developer Console, we are unable to locate any missing information or steps that need to be addressed. We would greatly appreciate your assistance in resolving this issue as soon as possible, as we are currently unable to push any new builds for testing.
Replies
Boosts
Views
Activity
Oct ’24