I\'m creating NSMutableRequest and adding data to body. Heres example how I do it: NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:stringURL]
I\'m writing an iPhone app for a web service and I need to upload image to the service. In the web version, it\'s using AJAX. But I know little about that. I find the following code on the web page fo
This question already has an answer here: Closed 10 years ago. Possible Duplicate: Testing use of NSURLConnection with HTTP response error statuses
I have a Cocoa client and server application that communicate using distributed objects implemented via NSSocketPorts and NSConnections in the standard way. The server vends a single object to the cli
I have two applications \'A\' and \'B\' and need to do some ipc. Process \'A\' launches process \'B\' if it is not already running.In process \'A\' I create NSConnection and registerName:. In process
Does anybody know how expensive a tcp connec开发者_如何转开发tion is on iPhone? For example, if I have to download 8-10 small files (2-6 kB) from a web server does it make sense to create 8-10 NSConn
How to h开发者_C百科ave common NSConnection for various data processing from web server in iPhone. If possible can I have code for itI wrote some blog posts about NSURLConnection.
I am trying to make a soap call. It\'s a very basic call with \"Welcome User\" output. The return value is in xml format, and I am getting the following error. However I am not sure what this error me
I\'m looking at building a Cocoa application on the Mac with a back-end daemon process (really just a mostly-headless Cocoa app, probably), along with 0 or more \"client\" applications running locally
I would like to use NSConnection/NSDistributedObject for interprocess communication. I would like the client to be able to handle the case where the server is only occasionally reachable.