Frage

Ich habe mir Kopfschmerzen gegeben, um herauszufinden, wie man diese verteilte Objekt -Demo ausführt. Ich kann es lokal auf derselben Maschine gut ausführen.

Hier ist die Situation. Ich habe eine Server -App, die eine Client -App [mit OpenGlView] auf einem Remote -Computer hervorbringt.

Ich kann das mit AppleScript einfach machen.

Die Client -App scheint das OpenGlview -Fenster zu übertragen, OK:

clientPort = [[NSSocketPort alloc] initWithTCPPort:SERVER_PORT];
if(clientPort == nil) continue; else NSLog(@"Port OK");

clientConnection = [NSConnection connectionWithReceivePort:clientPort sendPort:nil];
if(clientConnection == nil) continue; else NSLog(@"Conn OK");

[[NSSocketPortNameServer sharedInstance] registerPort:clientPort name:@"DOTest3_0"];

//Vend Object
@try {
[clientConnection setRootObject:object];
NSLog([NSString stringWithFormat:@"Port %d: Vend OK", (SERVER_PORT + i)]);
return;
} @catch (...) {
NSLog([NSString stringWithFormat:@"Port %d: Vend Next", (SERVER_PORT + i)]);
}

Die Server -App findet den Port und die Verbindung, erhöht jedoch eine Ausnahme von Zeitüberschreitungen:

// Create temporary Pointer to kGLView Object.
  id <NSCoding, kGLViewProtocol> openGLView;

      // Setup Port, Connection, & Proxy
      portTest = (NSSocketPort *)[[NSSocketPortNameServer sharedInstance] portForName:@"DOTest3_0" host:@"*"];
      if (portTest == nil ) continue ; else NSLog(@"Port OK");

      connTest = [NSConnection  connectionWithReceivePort:nil sendPort:portTest];
      if (connTest == nil ) continue ; else NSLog(@"Conn OK");

      openGLView = [[connTest rootProxy] retain];
      if (openGLView == nil ) continue ; else NSLog(@"OpenGL OK");

      [openGLView drawWithRotation: rotationAngle];

  }

Und ich kann nicht für mein Leben von mir herausfinden, warum.

Ich komme in die Konsole des Client -PC: "Port OK" "Conn OK" "Port 8081: Vend OK"

Ich komme in die Konsole des Server -PC: "Port OK" "Conn OK", 18.11.09, 14:05:36 Uhr DOTEST3 [15278] [NSportCoder SendBeForetime: SendReplyport:] Timed Out (10280263936.092180 280263936.092642)

Auch wenn die Zeitüberschreitungen beide auf 60 Sekunden eingestellt sind.

Hilfe!

-Stphen


Server: MacMini OS X 10.5 Client: MacPro OS X 10.6 Remote -Anmeldung, Verwaltung usw. sind alle aktiviert.


Bearbeiten: Nehmen Sie den Vorschlag von NSResponder, ich habe den Controller gedacht, aber er funktioniert immer noch nicht.

Kunde/Verkäufer:

-(void)vend:(id)object {
  port = [[[NSSocketPort alloc] initWithTCPPort:[self tcpPort]] 
          retain];

  conn = [[NSConnection connectionWithReceivePort:port sendPort:nil] 
          retain];

  for (int i = 0; i < 10; i++) {
    [[NSSocketPortNameServer sharedInstance] registerPort:port
                                                     name:[[self portName] stringByAppendingFormat:@"_%d", i]];
    @try {
      [conn setRootObject:object];
      return;
    } @catch (...) {
      NSLog(@"Vend Next");
      continue;
    }
  }
  NSLog(@"Vend Failed");
}

Client -Controller:

-(id)init {
  self = [super init];

  [self setRotationAngle:0.0f];

  clientObj = [[Client alloc] initWithName:@"DOTest4" 
                                   Address:@"10.10.5.104" // mini
                                      Port:48557];

  [clientObj vend:self];

  return self;
}

Servercontroller:

-(IBAction)rotateClient:(id)sender {
  NSArray *vendedObjects = [serverObj getVendedObjects];
  id <NSCoding, ClientController_Protocol> proxy;

  if (vendedObjects != nil) {
    for (int i = 0; i < [vendedObjects count]; i++) {
      proxy = [vendedObjects objectAtIndex:i];
      [proxy rotate];
    }
  }
    // release
  [vendedObjects release];
}

Server/(greifen Sie liegende Objekte)

-(NSArray *)getVendedObjects {

  NSArray *vendedObjects = [[[NSArray alloc] init] retain];
  NSSocketPort *port;
  NSConnection *conn;

  for (int i = 0; i< 10; i++) {
    // Get Port Object
    port = (NSSocketPort *)[[NSSocketPortNameServer sharedInstance] 
                           portForName:[[self portName] stringByAppendingFormat:@"_%d", i]
                           host:[self addressRemote]];
    if (port == nil) continue;
    // Create Connection with Timeouts
    conn = [NSConnection connectionWithReceivePort:nil sendPort:port];
    if (conn == nil) continue;

    [conn setReplyTimeout:(NSTimeInterval)60.0];
    [conn setRequestTimeout:(NSTimeInterval)60.0];

    // Get VendedObject of Connection
    vendedObjects = [[vendedObjects arrayByAddingObject:[conn rootProxy]] retain];
  }

  return vendedObjects;
}

Seufz ... Ich bin sicher, ich übersuche hier nur etwas wirklich Cocoa-Basic.

-S!

War es hilfreich?

Lösung

Ich habe noch nie jemanden gesehen, der versucht hat, eine Ansicht oder ein Fenster über einen Do -Link abzugeben, und ich bin überrascht, dass es auch auf dem örtlichen Gastgeber funktioniert hat. Jedes Mal, wenn ich es verwendet habe, stammt es von Objekten in der Controller -Ebene des Servers bis zu einem entsprechenden Controller im Client.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top