bug*_*ixr 7 c++ wcf objective-c c#-4.0
我有一个使用TCP/IP托管的WCF服务(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();
Run Code Online (Sandbox Code Playgroud)
我想用Objective C或C++编写一个Mac客户端.是否有任何现有的类可以促进与我的WCF服务的连接?如果没有,我的步骤和选择是什么?