我正在设计一个执行计算的服务,这对我的设备来说太重了。为了获得最佳性能,我想使用netTcpBinding。 MFSvcUtil工具从提供的WSDL成功生成代码文件。但我没有看到任何使用netTcpBinding实例化代理的方法。
唯一可用的绑定是WS2007HttpBinding
和CustomBinding
。使用WS2007HttpBinding看起来像这样(根据this blog):
WS2007HttpBinding binding = new WS2007HttpBinding (new HttpTransportBindingConfig(new Uri("url to svc")));
m_proxy = new ProxyClass (binding, new ProtocolVersion11());
但我不想使用HTTP。我应该使用哪种装订?