Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
2k views

Best way to do interprocess communication on Mac OS X

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 ...
4
votes
1answer
67 views

How to find the connection for a particular distributed objects method invocation?

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 ...
4
votes
3answers
438 views

Cost of creating a new NSConnection on iPhone

Does anybody know how expensive a tcp connection 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 NSConnection requests ...
3
votes
1answer
218 views

common NSConnection for various data proccessing from web server in iphone

How to have common NSConnection for various data proccessing from web server in iphone. if possible can i have code for it Regards, sathish
2
votes
1answer
233 views

Detecting/Repairing NSConnection failure

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. How can I ...
1
vote
1answer
133 views

Make NSConnection stall until connection for registered name is found

Is there any way to have NSConnection search for a connection with a registered name on, say a separate thread, or scheduled in the run loop, with a callback when a connection is made? Currently I am ...
0
votes
1answer
102 views

How to set NSMutableRequest timeout less than 240 seconds after setting body?

I'm creating NSMutableRequest and adding data to body. Heres example how I do it: NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:stringURL] ...
0
votes
2answers
318 views

How to set real timeout for NSURLConnection request?

Please look to the following code: NSMutableURLRequest* request = [NSMutableURLRequest requestWithURL:<...> cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:3.0]; <...> ...
0
votes
1answer
127 views

upload image using objective-c

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 for ...
0
votes
1answer
139 views

How could connectionDidFinishLoading: run if no file is found on server?

This is bizarre; I have an async connection like so: NSString *url=[NSString stringWithFormat:@"http://www.whatever.com/file"]; NSURL *url2=[NSURL URLWithString:url]; NSURLRequest ...
0
votes
1answer
187 views

Creating NSDistantObject

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 'B' , I ...
0
votes
1answer
407 views

error while soap request call

I am trying to make a soap call. Its a very basic call wit Welcome User output. The return value is in xml format. and i am getting the following error. can anyone plz tell me what this error means. ...
-1
votes
1answer
64 views

Multiple simultaneous NSConnections for web query

When using async download methods and delegates, is it possible to start multiple simultaneous nsconnections and handle them separately as each query completes? Or, will the system not automatically ...