WCF的客户端处理方法是一个比较基础的应用操作,我们需要在实际编程中去不断的积累这方面的经验,来达到一种应用熟练的程度。今天我们就会为大家详细介绍一下WCF客户端处理的相关方法。#t#
WCF客户端处理的自动生成实例中 是从ClientBase<of T>.Channel属性开始的,最终要创建T的透明代理,然后调用。 以BasicHttpBinding为例,客户端请求的主要步骤如下:
1 根据传入的Binding和EndpointAddress生成ServiceEndpoint
2 再根据ServiceEndpoint的类型生成ServiceChannelFactory 类的实例。当前BasicHttpBinding 生成的应该是ServiceChannelFactoryOverRequest类的实例,对应的IChannelBinder是RequestChannelBinder
注:
basicHttpBinding.BuildChannelFactory<IRequestChannel>要对 basicHttpBinding所有的绑定元素进行遍历。默认情况下,不启用https,则传输元素使用HttpTransportBindingElement,该对象重写BuildChannelFactory<IRequestChannel>,返回值是HttpChannelFactory
RequestChannelBinder对象最重要的字段是channel,对应的值是HttpChannelFactory.CreateChannel(),返回的值是HttpChannelFactory.HttpRequestChannel
3 生成ServiceChannel,将ServiceChannelFactoryOverRequest和RequestChannelBinder做为参数传入ServiceChannel。构造函数为ServiceChannel(ServiceChannelFactory factory, IChannelBinder binder)
4. 生成T的透理代理ServiceChannelProxy,将ServiceChannel做为参数传入ServiceChannelProxy,构造
5.在调用透明代理相应的方法时,调用ServiceChannelProxy.Invoke(),如果是Service,调用ServiceChannel.Call(),此时实质是调用ServiceChannel封装的IChannelBinder(当前是RequestChannelBinder)的call,
6 调用RequestChannelBinder.Request(),注意步骤2***一句,此时channel是HttpChannelFactory.HttpRequestChannel HttpChannelFactory.HttpRequestChannel创建HttpChannelRequest的请求,然后调用HttpChannelRequest.SendRequest发送消息。其实质就是封装一个HttpWebRequest,将Message发送到服务器端address里,根,webservice的最终原理是一样的。因此,要抓住几个关系点,从总体上把握客户端请求的流程
(1 ServiceChannelFactory 类的实例是什么类型
(2 IChannelBinder接口的实现是什么类型
(3 IChannelBinder.Channel是什么
BindingElement.BuildChannelFactory<TChannel>
这个方法很有意思,默认的实现是通用BindingContext
将当前Binding对象中的所有元素(BindingElementCollection对象的实例),one by one 的进行遍历,每次移走一个,取出,然后再次调用BuildChannelFactory<TChannel>
举个例子
对于BasicHttpBinding对象来说,封装了
传输绑定元素
HttpsTransportBindingElement httpsTransport;
指定 HTTPS 传输以传输消息的绑定元素。
HttpTransportBindingElement httpTransport;
用于指定 HTTP 传输以传输消息的绑定元素
协议通道元素 (安全)
BasicHttpSecurity security;
配置 basicHttpBinding 绑定的安全设置。
消息编码绑定元素
MtomMessageEncodingBindingElement mtomEncoding;
指定消息传输优化机制 (MTOM) 消息所使用的编码和版本管理的绑定元素。
TextMessageEncodingBindingElement textEncoding;
指定用于基于文本的 SOAP 消息的字符编码与消息版本管理。此时,BindingElementCollection中有以上元素,先从集合中移出一个, 调用一次BuildChannelFactory<TChannel>
HttpTransportBindingElement httpTransport 重写了BuildChannelFactory<TChannel> 返回 HttpChannelFactory。其它的绑定元素基本上调BindingElement的,是直接跳到下一个,所以,
BasicHttpBinding.BuildChannelFactory<IRequestChannel>()返回的是HttpChannelFactory。
以上就是我们为大家介绍的WCF客户端处理的相关方法。