onexión @Mac (o c ++) a WCF binario

Tengo un servicio WCF alojado utilizando TCP / IP (netTcpBinding):

var baseWcfAddress = getWcfBaseUri();
host = new ServiceHost(wcfSingleton, baseWcfAddress);

var throttlingBehavior = new System.ServiceModel.Description.ServiceThrottlingBehavior();
throttlingBehavior.MaxConcurrentCalls = Int32.MaxValue;
throttlingBehavior.MaxConcurrentInstances = Int32.MaxValue;
throttlingBehavior.MaxConcurrentSessions = Int32.MaxValue;
host.Description.Behaviors.Add(throttlingBehavior);

host.Open();

Me gustaría escribir un cliente Mac en Objective C o C ++. ¿Hay clases existentes que puedan facilitar la conexión a mi servicio WCF? Si no, ¿cuáles son mis pasos y opciones para que esto suceda?

Respuestas a la pregunta(2)

Su respuesta a la pregunta