您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關WCF services如何配置節,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
在WCF的快速發展,它的性能也隨之增長,但是有很多人都對配置文件很頭疼,現在就教教大家吧。在WCF services配置節中可以定義多個服務,每一個服務都被放到service配置節中,WCF的宿主程序可以通過配置文件找到這些定義的服務并發布這些服務。WCF services配置節包含name和behaviorConfiguration屬性。其中,name配置了實現ServiceContract的類型名。類型名必須是完整地包含了命名空間和類型名。
而behaviorConfiguration的配置值則與其后的behaviors配置節的內容有關。endpoint是service配置節的主體,其中,endpoint配置節包含了endpoint的三個組成部分:Address、Binding和Contract。由于具體的binding配置是在bindings配置節中完成,因而,在endpoint中配置了bindingConfiguration屬性,指向具體的binding配置。如下所示:
services servicename="BruceZhang.MyService"behaviorConfiguration="MyBehavior" endpointaddress="" binding="netTcpBinding" bindingConfiguration="DuplexBinding" contract="BruceZhang.IHello"/ /service /services
我們也可以定義多個endpoint,例如:
services service name="Microsoft.ServiceModel.Samples.CalculatorService" behaviorConfiguration="CalculatorServiceBehavior" endpointaddress="" binding="wsHttpBinding" contract="Microsoft.ServiceModel.Samples.ICalculator"/ endpointaddress="mex" binding="mexHttpBinding" contract="Microsoft.ServiceModel.Samples.IMetadataExchange"/ /service /services
如果address值為空,那么endpoint的地址就是默認的基地址(BaseAddress)。例如ICalculator服務的地址就是http://localhost/servicemodelsamples/service.svc,而IMetadataExchange服務的地址則為http://localhost/servicemodelsamples/service.svc/mex。這里所謂的基地址可以在WCF services配置節中通過配置host來定義:
service name="Microsoft.ServiceModel.Samples.CalculatorService" behaviorConfiguration="CalculatorServiceBehavior" host baseAddresses addbaseAddress= "http://localhost/ServiceModelSamples/service.svc"/ /baseAddresses /host endpoint…/ /service
關于“WCF services如何配置節”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。