Search results for

We are unable to process your request

69,803 results found

Post

Replies

Boosts

Views

Activity

Spawning interactive process
Following on my question at https://forums.swift.org/t/how-to-allow-process-to-receive-user-input-when-run-as-part-of-an-executable-e-g-to-enabled-sudo-commands/34357 I am trying to spawn an interactive process using a swift executable, specifically `sudo`.I've tried a few things but nothing is working so I think I'm missing something fundemental.I tried using `openpty` but I believe the issue is that I need to pass input to `amaster`, which I'm unsure how to do:public func runOpenpty(_ command: [String]) throws { var amaster: Int32 = 0 var aslave: Int32 = 0 if openpty(&amaster, &aslave, nil, nil, nil) == -1 { print(Failed to open pty) } let masterHandle = FileHandle(fileDescriptor: amaster, closeOnDealloc: true) let slaveHandle = FileHandle(fileDescriptor: aslave, closeOnDealloc: true) let process = Process() process.launchPath = /usr/bin/env process.arguments = command process.standardInput = FileHandle.standardInput process.standardOutput = FileHandle.standardOut
1
0
2.0k
Mar ’20
Unable to Start PacketTunnel Provider
While generating the Xcode build with Address Sanitizer enabled, I am unable to launch the PacketTunnelProvider provider. The process is getting killed by the Operating System with the below exception Thread 1: EXC_RESOURCE RESOURCE_TYPE_MEMORY (limit=50 MB, unused=0x0) I understood that since Packettunnel Provider extension has only a memory limit of 50 MB, Operating System is killing the process. Is there any other way, we can overcome this limitation and perform Address Sanitizer testing ?
1
0
1.3k
Jan ’22
Unable to Install <App Name>
Trying to build our app with the new XCode 9.0 Beta 2 for iOS 11 devices, attempting to install on both real device and Simulator.When the app attempts to be launched, XCode throws an error saying This app was unable to be installed , and on the device / simulator, the application is there, but greyed out. And when you click on it, the device throws an error saying Unable to Install <App Name> This app could not be installed.Our app does support 64 bit, and Build Target is iOS 9.0.
6
0
13k
Jul ’17
Reply to Create and Encrypt Secret Key in iOS
I am encrypting my request & response in iOS to send it to server end , I am not aware of creating The secret Key that is a random key to be generated while sending the requests and the request(Dictionary) will be encrypted with the Secret Key and then the Secret key has to be encrypted with the Server side Public Key which I have received as Server Public Key MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCBdWolKbgXt3O5I33yETJvrmOlphJ5bM/8VmvYdJhUKN++xpwSzGZvgunqdWqu63yHVg/eznwTUi3fniWQ+nu6S1peU0JLh9FhfIcqpD4YbXJkGnFwLhNoKpB0moDbwS5X0Zr3ib+6YzhMtQoswP6qPZqOUgk3Xkd8DaWpyYXqNQIDAQAB Request Format { encryptionFlag: ENABLE, encryptedText: Encrypted request, encryptedSecretKeyString: Encrypted secret key } Response Format { encryptedResponse:Encrypted respone encryptedResponseSecretKey: Encrypted secret key } Encrypted Request is a Dictionary.. I hope I am Clear this time ... Decryption Process I am clear with as helped by OOPer, Encryption process
Topic: Programming Languages SubTopic: Swift Tags:
Jul ’20
Unable to submit new build
I have accomplished all requirements needed before submission but when I try to submit for review, I am getting the error message Unable to Submit for Review The items below are required to start the review process: There are still screenshot uploads in progress. What is the cause of this? Has anybody got a solution for me?
0
0
219
Jan ’21
Reply to Search Ads attribution API: where to find the specification of response object (version 3.1)
I from China.And now I Test This Search Api,The Apple return Me nil and Error is `Request Search Ads attributes failed with error: Error Domain=ADCientErrorDomain Code=0 Unable to retrieve attribution details UserInfo={NSLocalizedDescription=Unable to retrieve attribution details}` . Now I cannot get Detail Data.Who can help Me?(I have added iAd.framework to my project.)Thankx.
Topic: App & System Services SubTopic: General Tags:
Oct ’16
Unable to Update XCode 8
Hi,I am updating XCode 8(for IOS10.0 SDK) as i need to connect with my Xamarin. But, it gives an error in the middle of the Downloading process at the App Store and i did it several times but unable to get it work.How to get XCode 8 or IOS10.0 SDKThanksSourav
1
0
455
Sep ’16