Search results for

“Request failed with http status code 503”

200,991 results found

Post

Replies

Boosts

Views

Activity

Reply to Safari 18+ network bug - randomly - The network connection was lost
According to https://datatracker.ietf.org/doc/html/rfc7231#section-6.5.7 6.5.7. 408 Request Timeout The 408 (Request Timeout) status code indicates that the server did not receive a complete request message within the time that it was prepared to wait. A server SHOULD send the close connection option (Section 6.1 of [RFC7230]) in the response, since 408 implies that the server has decided to close the connection rather than continue waiting. If the client has an outstanding request in transit, the client MAY repeat that request on a new connection. The client MAY repeat the request (I believe it does not have to be idempotent actually)! Because when safari tried to reuse a connection that determined to be closed during transit (in the server) but the client(safari) doesn't know yet (delay of microseconds) the transmission of data fails (socket is not open afterall the connection was closed), and so the request w
Topic: Safari & Web SubTopic: General Tags:
Sep ’25
xcrun notarytool store-credentials -> HTTP status code: 401. Invalid credentials error
Hi, I am getting following error from following command, although I am 100% sure that I am entering the right credentials: Command: xcrun notarytool store-credentials MY_PROFILE --apple-id “xxx” --team-id yyy --password zzz Error: Error: HTTP status code: 401. Invalid credentials. Username or password is incorrect. Use the app-specific password generated at appleid.apple.com. Ensure that all authentication arguments are correct. xxx->https://appleid.apple.com/account/manage/email and phone number -> apple id email (email address used for developer account) yyy->https://developer.apple.com/account#MembershipDetailsCard/Team ID -> 10 digit nummer zzz->https://appleid.apple.com/account/manage/App-Specific Passwords created and used I just copy pasted every single item from the defined locations above. I would appreciate for an answer. Best Regards
3
0
1.3k
Jul ’24
Self-Signed Certificates & HTTPS Requests 10.3
I've been testing some code against the 10.3 betas and am seeing HTTPS requests using a self-signed certificate are failing. When testing against 10.2 code these requests are working fine. I do have the self-signed certificate and root certificate installed via a profile on both simulators. Testing against the 10.3 results in the following:When Enabling the ATS / allowing arbitrary loads the returning data is:2017-02-23 17:37:06.095 CasperAlly[30906:2156584] NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9813)Removing the ATS / arbitrary loads results in:2017-02-23 17:32:30.410 CasperAlly[30684:2146777] NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9802)If I test against a different URL with a commercial certificate the code works as expected. If it is any help the code being used is on my github repo: https://github.com/rsaeks/CasperAlly Tha
3
0
1.5k
Feb ’17
CFHTTPMessageAddAuthentication fails to add authentication data to request
I'm trying extend SocketRocket library which is using CFNetwor freamwork with authentication feature.I need Digest authentication for web socket.I've wrote sucjh code which creates a request afrer response with authentication chellenge has been recived:- (CFHTTPMessageRef)createAuthenticationHandShakeRequest: (CFHTTPMessageRef)chalengeMessage { CFHTTPMessageRef request = [self createHandshakeRequest]; BOOL result = CFHTTPMessageAddAuthentication(request, chalengeMessage, (__bridge CFStringRef)self.credentials.user, (__bridge CFStringRef)self.credentials.password, NULL, / use strongest supplied authentication */ NO / for proxy */); if (!result) { NSString *chalengeDescription = [[NSString alloc] initWithData: CFBridgingRelease(CFHTTPMessageCopySerializedMessage(chalengeMessage)) encoding: NSUTF8StringEncoding]; NSString *requestDescription = [[NSString alloc] initWithData: CFBridgingRelease(CFHTTPMessageCopySerializedMessage(request)) encoding: NSUTF8StringEncoding]
1
0
387
Jun ’15
VPP License Management 2.0.0+ New notification type subscription request for Event Status
Problem Description: We are associating 1000 devices to 25 apps using Associate Assets API - https://vpp.itunes.apple.com/mdm/v2/assets/associate We find the association completion state by two ways. Method 1: Using Event Status API - https://vpp.itunes.apple.com/mdm/v2/status We test the success state of event by continuously polling event status API - until it provides COMPLETE/FAILURE in eventStatus. For the above association, the time taken for event Status to give COMPLETE/FAILURE status for the above API is 30 seconds. Improvement Needed: A new type of notification type can be introduced so that on association event completion, the notification request could return the event status response to MDM server without the need to poll the Event Status API from MDM. Method 2: By Subscribing ASSET_MANAGEMENT notification On subscribing ASSET_MANAGEMENT notification in clientConfig API - https://vpp.itunes.apple.co
0
0
2k
Feb ’23
Reply to If you restart Mac after allow LNP, the LNP of APP will not working
It’s better if you reply in as a reply rather than in the comments. See Quinn’s Top Ten DevForums Tips for more on that, and for lots of other hints and tips. My application is a GUI application, and my packaging adopts the Direct Distribution mode of Xcode. This is working for me. Here’s what I did: Using Xcode 16.1, I created a new project from the macOS > App template template. In Signing & Capabilities, I enabled App Sandbox > Outgoing Connections (client). I modified the content view to issue a request to a server on my local network. The exact code is below. I ran this on my main Mac and confirmed that it worked there. I chose Product > Archive. In the Xcode organiser, I clicked Distribute App and followed the Custom > Direct Distribution > Export workflow. I copied the app a ‘clean’ VM running macOS 15.1. On that VM, I launched the app from the Finder. I clicked Test. The system presented the Local Network alert. I clicked Allow. Back in the app, the status
Nov ’24
21007 Status Code being returned by Sandbox Verify Receipt Endpoint
We have an issue with validating in-app purchases which just seemed to start occurring today. When you send a sandbox receipt to the production endpoint (https://buy.itunes.apple.com/verifyReceipt), it returns the status code 21007 with the message. This receipt is from the test environment, but it was sent to the production environment for verification. This is documented here: https://developer.apple.com/documentation/appstorereceipts/status It is then advised to attempt this receipt on the sandbox endpoint (https://sandbox.itunes.apple.com/verifyReceipt) due to the status code returned. We have used this successfully for about a year now. We check the status code and if it is 21007, we then try the sandbox endpoint. As of today, we started seeing that the sandbox endpoint is returning a 21007 status code which does not make sense and threw our API into a recursive loop since it kept seeing that status
34
0
19k
Mar ’21
Failed to parse signedTransactionInfo in the notification payload. status=VERIFICATION_FAILURE
We are currently using App Store Server Notifications V2 in a production environment, but occasionally encounter the error Failed to parse signedTransactionInfo in the notification payload. status=VERIFICATION_FAILURE. What could be the cause of this error? Also, is there a way to resolve this error? After the notification from Apple was received on the server side, it was passed to the Apple library and an error occurred in the Apple library when decryption was performed.
1
0
206
Oct ’25
HTTP Status cod 403 with client certificate authentication
Hi,I would like to ask one question in regards to HTTP status code 403 request with client certificate authentication challenge.So, I was implementing a solution that requires mutusl TLS which will set the delegate responded to the client identity authentication challenge, and experienced the issue when the request fails with 403, the iOS SDK returns the error NSURLErrorClientCertificateRequired rather than the error that was actually returned from the server side.I found the thread in the forum that explains the exactly the same issue, but would like to clarify few more things here.From my experiment, what I found is that this behaviour only happens for the first 5 or 10 minutes of NSURLSession's session.For example, I will get the NSURLErrorClientCertificateRequired only for the first five or ten minutes, and after that, I am receiving the expected error message from the server side.This reminds me of TLS caching issue back in iOS 9 or below with NSURLCo
3
0
5.8k
Oct ’17
Reply to HTTP load failed (error code:
I am also facing the same issue please provide some solution for it.Following output i am getting2018-03-29 20:59:07.733425+0530 MyApp[617:181515] TIC Read Status [28:0x1c436a140]: 1:602018-03-29 20:59:07.733994+0530 MyApp[617:181515] Task <7224DF11-4CDB-480D-907D-ADEBC425ABAB>.<0> HTTP load failed (error code: -1001 [1:60])2018-03-29 20:59:07.734178+0530 MyApp[617:181702] NSURLConnection finished with error - code -10012018-03-29 20:59:22.418536+0530 MyApp[617:181627] TIC Read Status [19:0x1c0362c40]: 1:602018-03-29 20:59:22.420972+0530 MyApp[617:181627] Task <311A377E-1CD9-4BF3-8074-3C0FBA087A97>.<0> HTTP load failed (error code: -1001 [1:60])2018-03-29 20:59:22.422615+0530 MyApp[617:181517] NSURLConnection finished with error - code -10012018-03-29 20:59:28.955711+0530 MyApp[617:181517] TIC Read Status [30:0x1c036c6c0]: 1:602018-03-29 20:59:28.958396+0530 MyApp[617:181517] Task <B17
Mar ’18
Reply to Using electron-forge, app signed with codesign fails to verify with spctl
Nothing like a public question to un-wedge the debugging muscle. Debugging this some more, I found that I had not run with DEBUG=electron-notarizer, and turning that on, shows the following output: 2021-12-23T19:09:25.522Z electron-notarize notarizing using the legacy notarization system, this will be slow An unhandled rejection has occurred inside Forge: Error: Failed to upload app to Apple's notarization servers *** Error: Notarization failed for '/var/folders/w8/hsj6918d0fsb8hxb127hqgp00000gn/T/electron-notarize-JveOtm/CloudInstance.zip'. *** Error: Unable to upload your app for notarization. Failed to get authorization for username 'jwatte@observeinc.com' and password. ( Error Domain=NSCocoaErrorDomain Code=0 Status code: 0 UserInfo={NSLocalizedDescription=Status code: 0, NSLocalizedFailureReason=The auth server returned a bad status code.} ) (-1011) { NSLocalizedDescription = Unable to upload your app for notarizati
Topic: Code Signing SubTopic: General Tags:
Dec ’21
xcodebuild failure: xcodebuild failed with code 70
webdriver: Request failed with status 500 due to An unknown server-side error occurred while processing the command. Original error: Unable to launch WebDriverAgent because of xcodebuild failure: xcodebuild failed with code 70 [0-0] xcodebuild error message: [0-0] . Make sure you follow the tutorial at https://github.com/appium/appium-xcuitest-driver/blob/master/docs/real-device-config.md. Try to remove the WebDriverAgentRunner application from the device if it is installed and reboot the device. I'm using macOs 13.6 xcode 14.3 Iphone Os 16.7.2 running with webdriverIO still getting this error can anyone help me in this please.
0
0
1.9k
Nov ’23
Reply to Safari 18+ network bug - randomly - The network connection was lost
According to https://datatracker.ietf.org/doc/html/rfc7231#section-6.5.7 6.5.7. 408 Request Timeout The 408 (Request Timeout) status code indicates that the server did not receive a complete request message within the time that it was prepared to wait. A server SHOULD send the close connection option (Section 6.1 of [RFC7230]) in the response, since 408 implies that the server has decided to close the connection rather than continue waiting. If the client has an outstanding request in transit, the client MAY repeat that request on a new connection. The client MAY repeat the request (I believe it does not have to be idempotent actually)! Because when safari tried to reuse a connection that determined to be closed during transit (in the server) but the client(safari) doesn't know yet (delay of microseconds) the transmission of data fails (socket is not open afterall the connection was closed), and so the request w
Topic: Safari & Web SubTopic: General Tags:
Replies
Boosts
Views
Activity
Sep ’25
xcrun notarytool store-credentials -> HTTP status code: 401. Invalid credentials error
Hi, I am getting following error from following command, although I am 100% sure that I am entering the right credentials: Command: xcrun notarytool store-credentials MY_PROFILE --apple-id “xxx” --team-id yyy --password zzz Error: Error: HTTP status code: 401. Invalid credentials. Username or password is incorrect. Use the app-specific password generated at appleid.apple.com. Ensure that all authentication arguments are correct. xxx->https://appleid.apple.com/account/manage/email and phone number -> apple id email (email address used for developer account) yyy->https://developer.apple.com/account#MembershipDetailsCard/Team ID -> 10 digit nummer zzz->https://appleid.apple.com/account/manage/App-Specific Passwords created and used I just copy pasted every single item from the defined locations above. I would appreciate for an answer. Best Regards
Replies
3
Boosts
0
Views
1.3k
Activity
Jul ’24
Self-Signed Certificates & HTTPS Requests 10.3
I've been testing some code against the 10.3 betas and am seeing HTTPS requests using a self-signed certificate are failing. When testing against 10.2 code these requests are working fine. I do have the self-signed certificate and root certificate installed via a profile on both simulators. Testing against the 10.3 results in the following:When Enabling the ATS / allowing arbitrary loads the returning data is:2017-02-23 17:37:06.095 CasperAlly[30906:2156584] NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9813)Removing the ATS / arbitrary loads results in:2017-02-23 17:32:30.410 CasperAlly[30684:2146777] NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9802)If I test against a different URL with a commercial certificate the code works as expected. If it is any help the code being used is on my github repo: https://github.com/rsaeks/CasperAlly Tha
Replies
3
Boosts
0
Views
1.5k
Activity
Feb ’17
CFHTTPMessageAddAuthentication fails to add authentication data to request
I'm trying extend SocketRocket library which is using CFNetwor freamwork with authentication feature.I need Digest authentication for web socket.I've wrote sucjh code which creates a request afrer response with authentication chellenge has been recived:- (CFHTTPMessageRef)createAuthenticationHandShakeRequest: (CFHTTPMessageRef)chalengeMessage { CFHTTPMessageRef request = [self createHandshakeRequest]; BOOL result = CFHTTPMessageAddAuthentication(request, chalengeMessage, (__bridge CFStringRef)self.credentials.user, (__bridge CFStringRef)self.credentials.password, NULL, / use strongest supplied authentication */ NO / for proxy */); if (!result) { NSString *chalengeDescription = [[NSString alloc] initWithData: CFBridgingRelease(CFHTTPMessageCopySerializedMessage(chalengeMessage)) encoding: NSUTF8StringEncoding]; NSString *requestDescription = [[NSString alloc] initWithData: CFBridgingRelease(CFHTTPMessageCopySerializedMessage(request)) encoding: NSUTF8StringEncoding]
Replies
1
Boosts
0
Views
387
Activity
Jun ’15
VPP License Management 2.0.0+ New notification type subscription request for Event Status
Problem Description: We are associating 1000 devices to 25 apps using Associate Assets API - https://vpp.itunes.apple.com/mdm/v2/assets/associate We find the association completion state by two ways. Method 1: Using Event Status API - https://vpp.itunes.apple.com/mdm/v2/status We test the success state of event by continuously polling event status API - until it provides COMPLETE/FAILURE in eventStatus. For the above association, the time taken for event Status to give COMPLETE/FAILURE status for the above API is 30 seconds. Improvement Needed: A new type of notification type can be introduced so that on association event completion, the notification request could return the event status response to MDM server without the need to poll the Event Status API from MDM. Method 2: By Subscribing ASSET_MANAGEMENT notification On subscribing ASSET_MANAGEMENT notification in clientConfig API - https://vpp.itunes.apple.co
Replies
0
Boosts
0
Views
2k
Activity
Feb ’23
POST customerReviewResponses response 405 status code
We receive status code 405 Not allowed when call POST https://api.appstoreconnect.apple.com/v1/customerReviewResponses Same answer for DELETE response. GET methods works fine. I tried team key, individual key with Customer Support role, individual key with Admin role results are same.
Replies
2
Boosts
0
Views
457
Activity
Dec ’24
Reply to If you restart Mac after allow LNP, the LNP of APP will not working
It’s better if you reply in as a reply rather than in the comments. See Quinn’s Top Ten DevForums Tips for more on that, and for lots of other hints and tips. My application is a GUI application, and my packaging adopts the Direct Distribution mode of Xcode. This is working for me. Here’s what I did: Using Xcode 16.1, I created a new project from the macOS > App template template. In Signing & Capabilities, I enabled App Sandbox > Outgoing Connections (client). I modified the content view to issue a request to a server on my local network. The exact code is below. I ran this on my main Mac and confirmed that it worked there. I chose Product > Archive. In the Xcode organiser, I clicked Distribute App and followed the Custom > Direct Distribution > Export workflow. I copied the app a ‘clean’ VM running macOS 15.1. On that VM, I launched the app from the Finder. I clicked Test. The system presented the Local Network alert. I clicked Allow. Back in the app, the status
Replies
Boosts
Views
Activity
Nov ’24
How to check status of fall detection entitlement request ?
Hello there, I applied for a fall detection entitlement request a few days back but didn't receive any update from Apple yet. If anyone can tell me the duration of time taken by Apple to give an update regarding this request, please reply to this question. Thanks
Replies
2
Boosts
0
Views
2.4k
Activity
Feb ’22
21007 Status Code being returned by Sandbox Verify Receipt Endpoint
We have an issue with validating in-app purchases which just seemed to start occurring today. When you send a sandbox receipt to the production endpoint (https://buy.itunes.apple.com/verifyReceipt), it returns the status code 21007 with the message. This receipt is from the test environment, but it was sent to the production environment for verification. This is documented here: https://developer.apple.com/documentation/appstorereceipts/status It is then advised to attempt this receipt on the sandbox endpoint (https://sandbox.itunes.apple.com/verifyReceipt) due to the status code returned. We have used this successfully for about a year now. We check the status code and if it is 21007, we then try the sandbox endpoint. As of today, we started seeing that the sandbox endpoint is returning a 21007 status code which does not make sense and threw our API into a recursive loop since it kept seeing that status
Replies
34
Boosts
0
Views
19k
Activity
Mar ’21
Failed to parse signedTransactionInfo in the notification payload. status=VERIFICATION_FAILURE
We are currently using App Store Server Notifications V2 in a production environment, but occasionally encounter the error Failed to parse signedTransactionInfo in the notification payload. status=VERIFICATION_FAILURE. What could be the cause of this error? Also, is there a way to resolve this error? After the notification from Apple was received on the server side, it was passed to the Apple library and an error occurred in the Apple library when decryption was performed.
Replies
1
Boosts
0
Views
206
Activity
Oct ’25
HTTP Status cod 403 with client certificate authentication
Hi,I would like to ask one question in regards to HTTP status code 403 request with client certificate authentication challenge.So, I was implementing a solution that requires mutusl TLS which will set the delegate responded to the client identity authentication challenge, and experienced the issue when the request fails with 403, the iOS SDK returns the error NSURLErrorClientCertificateRequired rather than the error that was actually returned from the server side.I found the thread in the forum that explains the exactly the same issue, but would like to clarify few more things here.From my experiment, what I found is that this behaviour only happens for the first 5 or 10 minutes of NSURLSession's session.For example, I will get the NSURLErrorClientCertificateRequired only for the first five or ten minutes, and after that, I am receiving the expected error message from the server side.This reminds me of TLS caching issue back in iOS 9 or below with NSURLCo
Replies
3
Boosts
0
Views
5.8k
Activity
Oct ’17
Reply to HTTP load failed (error code:
I am also facing the same issue please provide some solution for it.Following output i am getting2018-03-29 20:59:07.733425+0530 MyApp[617:181515] TIC Read Status [28:0x1c436a140]: 1:602018-03-29 20:59:07.733994+0530 MyApp[617:181515] Task <7224DF11-4CDB-480D-907D-ADEBC425ABAB>.<0> HTTP load failed (error code: -1001 [1:60])2018-03-29 20:59:07.734178+0530 MyApp[617:181702] NSURLConnection finished with error - code -10012018-03-29 20:59:22.418536+0530 MyApp[617:181627] TIC Read Status [19:0x1c0362c40]: 1:602018-03-29 20:59:22.420972+0530 MyApp[617:181627] Task <311A377E-1CD9-4BF3-8074-3C0FBA087A97>.<0> HTTP load failed (error code: -1001 [1:60])2018-03-29 20:59:22.422615+0530 MyApp[617:181517] NSURLConnection finished with error - code -10012018-03-29 20:59:28.955711+0530 MyApp[617:181517] TIC Read Status [30:0x1c036c6c0]: 1:602018-03-29 20:59:28.958396+0530 MyApp[617:181517] Task <B17
Replies
Boosts
Views
Activity
Mar ’18
Reply to Using electron-forge, app signed with codesign fails to verify with spctl
Nothing like a public question to un-wedge the debugging muscle. Debugging this some more, I found that I had not run with DEBUG=electron-notarizer, and turning that on, shows the following output: 2021-12-23T19:09:25.522Z electron-notarize notarizing using the legacy notarization system, this will be slow An unhandled rejection has occurred inside Forge: Error: Failed to upload app to Apple's notarization servers *** Error: Notarization failed for '/var/folders/w8/hsj6918d0fsb8hxb127hqgp00000gn/T/electron-notarize-JveOtm/CloudInstance.zip'. *** Error: Unable to upload your app for notarization. Failed to get authorization for username 'jwatte@observeinc.com' and password. ( Error Domain=NSCocoaErrorDomain Code=0 Status code: 0 UserInfo={NSLocalizedDescription=Status code: 0, NSLocalizedFailureReason=The auth server returned a bad status code.} ) (-1011) { NSLocalizedDescription = Unable to upload your app for notarizati
Topic: Code Signing SubTopic: General Tags:
Replies
Boosts
Views
Activity
Dec ’21
xcodebuild failure: xcodebuild failed with code 70
webdriver: Request failed with status 500 due to An unknown server-side error occurred while processing the command. Original error: Unable to launch WebDriverAgent because of xcodebuild failure: xcodebuild failed with code 70 [0-0] xcodebuild error message: [0-0] . Make sure you follow the tutorial at https://github.com/appium/appium-xcuitest-driver/blob/master/docs/real-device-config.md. Try to remove the WebDriverAgentRunner application from the device if it is installed and reboot the device. I'm using macOs 13.6 xcode 14.3 Iphone Os 16.7.2 running with webdriverIO still getting this error can anyone help me in this please.
Replies
0
Boosts
0
Views
1.9k
Activity
Nov ’23
What do mean IOS Bluetooth disconnection status codes?
Please help find a meaning of status codes 708, 719. May be somewhere exists a full list of these status codes? I have had a following in IOS log: C Feb 17 04:37:55 bluetoothd[82] Notice: _GATT_LE_DisconnectedCB on handle 0x000000010F7042B0 with reason STATUS 708 Thank you in advance.
Replies
2
Boosts
0
Views
2.2k
Activity
Feb ’21