WCF配置心得。本站提示廣大學習愛好者:(WCF配置心得)文章只能為提供參考,不一定能成為您想要的結果。以下是WCF配置心得正文
依據蔣金楠教師的博文所說的, WCF的終結點有三個要素組成,辨別是地址(Address)、綁定(Binding)和契約(Contract),簡記可寫成Endpoint = ABC。
地址:地址決議了服務的地位,處理了服務尋址的問題。
綁定:綁定完成了通訊的一切細節,包括網絡傳輸、音訊編碼,以及其他為完成某種功用抵消息停止的相應處置。綁定的類型包括BasicHttpBinding、WsHttpBinding、NetTcpBinding等。
契約:契約是對服務操作的籠統,也是抵消息交流形式以及音訊構造的定義。
以上這些內容摘抄自蔣教師的博文。了解的這些對配置WCF很有協助。
那上面就一步步來配置一個WCF。
首先是服務端,
一個WCF的中心是終結點,那麼先把終結點寫列出來,
<services>
<service name="BLL.Logic" behaviorConfiguration="te">
<host>
<baseAddresses>
<add baseAddress="http://localhost:9091/logicService"/>
</baseAddresses>
</host>
<endpoint address="" binding="ws2007HttpBinding" contract="BLL.ILogic" bindingConfiguration="transportWS2007HttpBinding" />
</service>
</services>
從<endpoint>幾個屬性address(地址) binding(綁定),Contract(契約),這幾個屬性正是下面所說的"ABC" 留意一下 binding裡填的是BasicHttpBinding、WsHttpBinding、NetTcpBinding這些值,而確切運用哪一個binding呢,就需求在bindingConfiguration中設置,值是運用的<binding>的name值。contract項目中contract的契約接口的完全限定名,這裡關於binding的配置接上去會引見。address沒填值,這裡在<host>中曾經給定了一個地址了。
引見完<endpoint>,再看看<endpoint>裡面的。<endpoint>包括在<services>的<service>下,這裡的<serivces>是一個集合,外面可以包括多個服務,每個服務都會有特定的命名(name),而name則是項目外頭完成契約(Contract)的服務(Service)的類的完全限定名。這裡對servicebehavior停止了一些設置,詳細的內容在名為te的<servicebehavior>中。
既然下面有配置有觸及到binding和behavior,上面則辨別對兩者停止配置。
<bindings>
<ws2007HttpBinding>
<binding name="transportWS2007HttpBinding" maxReceivedMessageSize="2147483647" maxBufferPoolSize="2147483647">
<readerQuotas maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxDepth="2147483647" maxNameTableCharCount="2147483647" maxStringContentLength="2147483647"/>
<security mode="Message">
<transport clientCredentialType="None"/>
</security>
</binding>
</ws2007HttpBinding>
<basicHttpBinding>
<binding name="newBinding" maxBufferPoolSize="21474835647" maxReceivedMessageSize="2147483647" messageEncoding="Text">
<readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647"/>
</binding>
</basicHttpBinding>
</bindings>
bindings這局部和services一樣,也是一個集合,外面包括著各品種型的binding,例如在<ws2007HttpBinding>外面的<binding>才是確切的某一個binding, <endpoint>運用時,bindingConfiguration的稱號要寫對外,binding的類型也不能錯。<binding>外面的子節點和屬性就不再逐個引見了,若是要經過WCF傳輸比擬大的數據時,要在binding的屬性和<readerQuotas>設置一下。
<behaviors>
<serviceBehaviors>
<behavior name="te">
<serviceMetadata httpGetEnabled="true"/>
</behavior>
</serviceBehaviors>
</behaviors>
最後到behaviors了。同理,behaviors也是一個集合,外面有兩品種型,一種是serviceBehaviors,用於配置service的;另一種是endpointBehaviors,用於配置endpoint的。這兩品種型都是一個集合,子節點<behavior>是它們的子項,以name來區分各個behavior,至於外面有什麼屬性和子項也不多說了,運用時在相應的service或endpoint的behaviorConfiguration屬性填上behavior的name值就行了。
服務端的配置就唠叨到這裡,上面到客戶端的。
<client>
<endpoint address="http://localhost:9091/logicService" binding="ws2007HttpBinding"
bindingConfiguration="WS2007HttpBinding_ILogic" contract="Proxy.ILogic"
name="WS2007HttpBinding_ILogic">
</endpoint>
</client>
首先也是是終結點,客戶端的終結點放在client裡,外面也是有"ABC",這裡的address一定要與服務端配置的一樣,否則找不到相應的服務的。binding的類型也要與服務端的一樣,contract則是用svcutil或其他工具生成的代碼裡的那個類的完全限定名。
<ws2007HttpBinding>
<binding name="WS2007HttpBinding_ILogic" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
maxBufferPoolSize="524288" maxReceivedMessageSize="2147483647"
messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
allowCookies="false">
<readerQuotas maxDepth="32" maxStringContentLength="1024" maxArrayLength="2147483647"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<reliableSession ordered="true" inactivityTimeout="00:10:00"
enabled="false" />
</binding>
</ws2007HttpBinding>
另一個還要提的是這個binding,客戶端的binding比服務端的要配置多一點東西closeTimeout,openTimeout,receiveTimeout 大致與服務端一樣。
另外若要傳輸比擬的大數據時,可以按我這樣來配,其實這個配置曾經適用於傳輸幾M的圖片。由於是個入門者,很多東西的了解還不夠透徹,以上有說錯的還請各位批判指出。謝謝!