I'm having trouble getting my rendezvous enabled app to work. Here's the situation:
It works great at home over airport between my G4 and my iBook (both with 10.0.1.x IPs), but I can't seem to get it to work at work. The computers I am trying it on are on the same subnet and they seem to see each other as the rendezvous code is returning the names of the remote machines and it says it has resolved the addresses. The problem is that the addresses they resolve don't seem to be correct or the remote machines can't be found with the resolved adress or they won't respond. Is there something simple I might be missing here? I'm not quite sure how to get the resolved addresses to print out in a human readable format. I tried this:
Code:
NSData * address = [[[discoveredServices objectAtIndex:index] addresses] objectAtIndex:0];
NSLog(@"address=%@",[address description]);
but the address that it prints isn't an IP which is what I was expecting.
kman