But it didn't work for me. So I asked a question on SO (here), and asked the Google. The latter approach finally worked. I got a working example with code from here. The discussion in the docs for the NSConnection class helped too (see
initWithReceivePort:sendPort:
. If you set it up with nil for the sendPort, it uses the same port for both sending and receiving, which is what you want.)[UPDATE: On reflection, it does seem a bit weird, because a Mach port is supposed to be a one-way channel, yet these are clearly two way. I guess they are probably complex objects built from multiple NSMacPorts. ]
Server:
Note: if you're not just killing the Server (as I did) you should do invalidate on the connection (and I guess the ports too?).
Client
listen.py
is on my laptop:Output:
It works!