Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
61 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 ...
3
votes
4answers
222 views

How to Handle Singleton Classes in Distributed Environment

When an Application is Distributed across multiple JVMS my single ton class will have multiple instances at each JVM. I have to generate a Unique ID for this purpose i have to use a singleton pattern ...
3
votes
3answers
681 views

Cocoa Distributed Objects, Long Polling, launchd and “Not Responding” in Activity Monitor

Scenario: I have a Distributed-objects-based IPC between a mac application and a launchd daemon (written with Foundation classes). Since I had issues before regarding asynchronous messaging (e.g. I ...
3
votes
4answers
2k views

Examples of Cocoa/Objective-C and Distributed Objects?

I am learning Cocoa and Objective-C (well, and C) to make a few Mac apps I've had floating around. I need to use Distributed Objects, but am having trouble finding simple, concise examples. Does ...
2
votes
1answer
86 views

Distributed Database Communication

I am a junior software engineer,I like this site and people in it.So,I want to ask my problems to see your answers and suggestions.Then,please don't mad at me for asking without searching. My problem ...
2
votes
1answer
483 views

How should I implement bi-directional networking between an iPhone application and an Objective-C server-side application?

I'm looking for advice on the best way to implement some kind of bi-directional communication between a "server-side" application, written in Objective-C and running on a mac, and a client application ...
2
votes
2answers
519 views

Obj-C server with multiple clients

I'm a fairly novice obj-c developer and have a question on how to set up a client-server relationship. I'm designing (mostly as a hobby) a board game to be played over the internet with friends and ...
2
votes
1answer
591 views

Cocoa Distributed Objects, GC client, non-GC server

I have a setup where there are two Cocoa processes, communicating with Distributed Objects (DO). The client is using garbage collection, the server is not. It seems that the client hangs on to the ...
1
vote
0answers
34 views

Distributed Objects, Threading, Objective-C

I have a working server/client app using Distributed Objects in objective-c. What I am struggling with right now is making the app multi-threaded. So that more users can access the server at the same ...
1
vote
1answer
42 views

How to determine the calling object when using Distributed Objects (DO) in Objective-C?

I am using Distributed Objects (DO) in Objective-C. I have a "server" object that I have vended on the network. Other objects on the network have a proxy to my server object and can thus call methods ...
1
vote
1answer
67 views

Is Distributed RMI Possible without a HTTP server if classes are distributed with client?

I've been doing some research on using RMI and in pretty much every case they say you are expected to use a web, http, or ftp server to allow the class loader to load the classes needed. In this ...
1
vote
1answer
122 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 ...
1
vote
0answers
197 views

Distributed Object on the iPhone?

Is there a way to use distributed objects on the iPhone? I think you need the NSConnection object which is absent in iPhone's version of Foundation. I know that it is not in a public framework but I ...
1
vote
2answers
456 views

Memory management with Objective-C Distributed Objects: my temporary instances live forever!

I'm playing with Objective-C Distributed Objects and I'm having some problems understanding how memory management works under the system. The example given below illustrates my problem: Protocol.h ...
1
vote
1answer
751 views

Synchronous Distributed Objects Over NSConnection Issue

I have an application that pulls data from the web, parses them, and compiles the results in a search interface. Since the data are not co-dependant, it made sense to multi-thread the application to ...
1
vote
1answer
360 views

Vending an Object with Distributed Objects and Synchronizing access

I'm using Distributed Objects in my application to provide communication between a tiny authentication agent program and the main application. The main application spawns NSTask's, which in turn will ...
0
votes
0answers
24 views

Distributed Objects in Objective C

server.m #import <Foundation/Foundation.h> @interface Transactions: NSObject { NSString *account; } - (void)setAccount:(NSString *)name; - (NSString *)account; @end @implementation ...
0
votes
1answer
118 views

Implementing distributed objects in cocoa

I have two Cocoa applications out of which one is a launchd daemon (Foundation tool). I need to call some of the methods in the main application from the daemon. How do I use Distributed Objects here? ...
0
votes
1answer
93 views

looking for clustering message framework for python

i'm looking for a messaging framework to build up a cluster in python. (something similar to apache tribes) are there any such frameworks in python? thanks a lot for any reply :)
0
votes
0answers
92 views

Distributed Objects across network not working

I have a simple working example of using Distributed Objects following this: // gcc talk.m -o test -framework Foundation #import <Foundation/Foundation.h> @interface VendedObject:NSObject {} ...
0
votes
1answer
142 views

Missing something for Cocoa/PyObjC Distributed Objects

I'm trying to make a simple example using Distributed Objects with PyObjC. On the server side I have (in Xcode): class VendedObject(NSObject): @objc.signature('@24@0:') def speak(self): ...
0
votes
1answer
143 views

Objective-C: How to pass a tree of objects to a remote distributed object?

I have a class called Node which contains a set of parameters and an NSMutableArray called subNodes. One process creates one Node object as a root of the tree and uses the subNodes arrays to create a ...
0
votes
2answers
500 views

Cocoa Distributed Object exception when manually creating remote NSSocketPort

This is really doing my head in, I hope someone can solve my issue. I'm trying to learn distributed object, bonjour, etc with Cocoa. I can get things up and running but there's just one case ...
0
votes
1answer
250 views

Could a Distributed Hash Table (DHT) be used for a dynamic web application? Another P2P design?

Could a Distributed Hash Table be used for a two-way web app with a pub/sub type application? I'm investigating building a forum type application but with a DHT architecture and P2P (although a ...
0
votes
1answer
561 views

Cocoa Distributed Objects

I've given myself a headache trying to figure out how to run this Distributed Objects demo. I can run it just fine locally on the same machine. Here's the situation. I have a Server App that spawns ...