Search results for

We are unable to process your request

69,922 results found

Post

Replies

Boosts

Views

Activity

Enrollment process
I have registered in the apple account and filled all the required details but we are still getting the status Your enrollment is being processed. I am not sure what information is not verified if you can tell me if any more information needed from my end to verify my profile please let me know. Looking forward to your response. Priority: High
1
0
430
Apr ’21
Zombie processes for terminal commands
Hello.We have encountered the following issue: we have a dynamic library that performs signature checks via codesign. The checks are performed using a pipe mechanism. The child runs execv(/usr/bin/codesign, -dv --versbose=2 {full_path_to_library}) and the parent reads the output of the execv command.When the library is loaded from an user level application, everything is working as expected: our library will run execv, a new codesign process will start and will finish its job successfully.When the library is loaded from a daemon process, our library will run execv, a new codesign process will start, will return success but it will not stop. The process will be marked as a zombie process. Tried to kill it programatically using 'kill( pid, SIGKILL)' and also via terminal using 'kill -9 pid'. We tried also with every available parameter of the kill command, still no success.The zombie processes will not stop, until machine restart. The issue is reproducing on
4
0
2k
Jun ’20
Reply to Safari and super slow after Big Sur update
I'm having this problem too on several Macs, but sporadically. I've noticed that when it occurs, that umount appears in the Activity Monitor spiked at 100% cpu. I am unable to kill the process even with force quit or kill -9. After the process eventually crashes, safari goes back to normal. If anyone else is still experiencing this issue, can you check your activity monitor to see if umount is running?
Topic: App & System Services SubTopic: Core OS Tags:
Jul ’21
Reply to Can we send Local Push Notifications from DeviceActivityMonitor extension?
Yes, you should be able to post user notifications from a DeviceActivity monitor extension. If you are unable to do so, please file a bug report using Feedback Assistant. No, a NotificationCenter can only deliver notifications within a single program; it does not allow you to post a notification to other processes or receive notifications from other processes (i.e. you cannot use it to post notifications between your monitor extension and your main app).
Mar ’23
Reply to how to stop in-app purchase thread
The process generally is to 1) get a request from the user of the app to consider a purchase, 2) the app submits a product request, 3) the app gets back a list of available products, 4) the app presents the products to the user and asks the user to select the product they want, 5) the user makes a selection, 6) the app submits a purchase request for that product 7) the app Store interacts with the user and completes the purchase 8) the app provides the purchased item to the user.After being requested to start the process at the conclusion of step 6, there is no way to programmatically affect what the app store does with the user in step 7 . But otherwiese, you can do anything you want in 1-6 and 8.
Topic: App & System Services SubTopic: StoreKit Tags:
Aug ’17
Reply to 4+ weeks of waiting for Family Controls Entitlement
I have been waiting on my Family Controls entitlement request to be processed for a little over two months now. Every week I contact apple support to request an update and every week I am told that there are no SLAs for processing requests for the Family Controls entitlement. You can see on this thread https://developer.apple.com/forums/thread/725036 that others are in the same boat. This has been a terrible developer experience - after investing months of work building an app I have now been completely blocked on getting it live for > 2 months. Very, very frustrating. I will post an update when the status of my application changes. Good luck to you
Topic: App & System Services SubTopic: General Tags:
Jan ’24
Questions about a refund process
hello. I need to confirm whether the content I know is correct. The user requests a refund. Then Apple sends consumptionRequest Notification to the server. Is it possible to approve/reject HTTP Code 200 or 403? When approval, we receive 'refund' notification from Apple. If you are approved, you will receive 'refund_denied' notification from Apple. I wonder if the above process is correct and the answer to number 3 is correct. Thank you for read my Question :)
1
0
653
Mar ’23
Kill request
I created a code that request information to webservice, the user typing the word and the app request the information, the webservice return a json. The code worked ok. But I use search bar and a schedule time, when the user stoped to type, the information is requested.The problem is, if the app request information and the user start typing again the app finish the first request and after request the second information. I need that, when the user request again, the app kill the first request and start second request. Is it possible?this is the example:var lastScheduledSearch: NSTimer? @IBOutlet weak var searchBar: UISearchBar! .. func searchBar(searchBar: UISearchBar, textDidChange searchText: String) { lastScheduledSearch?.invalidate() / lastScheduledSearch = NSTimer.scheduledTimerWithTimeInterval(1.5, target: self, selector: startSearching:, userInfo: searchText, repeats: false) } func startSearching(timer: NSTimer) { let searchText = t
4
0
1.3k
Oct ’15
VNCoreMLTransform - request failed
Keep getting error : I have tried Picker for File, Photo Library , both same results . Debugging the resize for 360x360 but still facing this error. The model I'm trying to implement is created with CreateMLComponents The process is from example of WWDC 2022 Banana Ripeness , I have used index for each .jpg . Prediction Failed: The VNCoreMLTransform request failed Is there some possible way to solve it or is error somewhere in training of model ?
1
0
431
Mar ’25
How to add Request Header for All Outgoing Request in WKWebview
Hi,I want to ask, how to add Request Header for All Request (specially ajax and sub link request) in WKWebview? because I need to add Authorization in Header to access the Web page.In UIWebview I can use Custom NSURLProtocol to handle it, but in WKWebview i cannot found how to do it.What have i tried?1. I already tried to set Authorization in setValue URLRequest (https://developer.apple.com/documentation/foundation/urlrequest/2011447-setvalue), but It only accept for 1 URL not all URL Request2. In function decidePolicyFor navigationAction (https://developer.apple.com/documentation/webkit/wknavigationdelegate/1455641-webview?language=objc) add Authorization in each outoging requests, but some javascript doesn't load, and cannot passing value for HTTP Method POST
Topic: UI Frameworks SubTopic: UIKit Tags:
1
0
2.9k
Jun ’20
Could I generate my own Certificate Signing Request?
Hey Apple team, I am working with multiple payment providers and it seems that if I use payment processing certificate from one provider, it will not allow me to use the data for other providers. In this case, should I create my own Certificate Signing Request? Is there anything I should follow on how to generate Certificate Signing Request? Besides this step, do I need to register my app with different payment providers? Thanks,
1
0
427
Aug ’21