onexão @Mac (ou c ++) ao WCF binário

Eu tenho um serviço WCF sendo hospedado usando 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();

Eu gostaria de escrever um cliente Mac em Objective C ou C ++. Existem classes existentes que podem facilitar a conexão com o meu serviço WCF? Caso contrário, quais são as minhas etapas e opções para que isso aconteça?

questionAnswers(2)

yourAnswerToTheQuestion