您好,登錄后才能下訂單哦!
這篇文章主要講解了“WCF服務(wù)元數(shù)據(jù)交換編程怎么實(shí)現(xiàn)”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“WCF服務(wù)元數(shù)據(jù)交換編程怎么實(shí)現(xiàn)”吧!
前者配置簡單、快捷,后者相對(duì)復(fù)雜。但是編程方式允許代碼運(yùn)行時(shí)控制或者設(shè)置元數(shù)據(jù)交換的信息。因而更加靈活。下面我們就來看看如何通過代碼實(shí)現(xiàn)剛才的服務(wù)原數(shù)據(jù)交換的配置。
WCF服務(wù)元數(shù)據(jù)交換HTTP-GET編程實(shí)現(xiàn):
必須添加對(duì)命名空間的引用, using System.ServiceModel.Description;我們對(duì)服務(wù)元數(shù)據(jù)操作的類和接口信息定義在此命名空間里,具體的實(shí)現(xiàn)HTTP-GET的代碼如下:
ServiceMetadataBehavior metadataBehavior; //定義服務(wù)行為變量, metadataBehavior = host.Description.Behaviors.Find<ServiceMetadataBehavior>(); //獲取宿主的行為列表 if (metadataBehavior == null) //如果沒有服務(wù)原數(shù)據(jù)交換的行為,實(shí)例化添加服務(wù)原數(shù)據(jù)交換行為 { metadataBehavior = new ServiceMetadataBehavior(); Uri httpAddress = new Uri("http://localhost:8001/"); metadataBehavior.HttpGetUrl =httpAddress; metadataBehavior.HttpGetEnabled = true;//設(shè)置HTTP方式 host.Description.Behaviors.Add(metadataBehavior); }
首先是獲得服務(wù)行為的列表信息,如果沒有設(shè)置,我們就進(jìn)行實(shí)例化服務(wù)原數(shù)據(jù)交換行為,并設(shè)置http方式可用。 host.Description.Behaviors.Add(metadataBehavior);添加宿主服務(wù)的行為。
WCF服務(wù)元數(shù)據(jù)交換WS-*編程實(shí)現(xiàn):
這里分別實(shí)現(xiàn)了HTTP、TCP、IPC三種方式的的元數(shù)據(jù)交換的代碼。和http-get方式略有不同,我們需要實(shí)例化自己綁定元素和綁定,***作為參數(shù)傳遞給host宿主實(shí)例。具體實(shí)現(xiàn)代碼如下:
//2編程方式實(shí)現(xiàn)ws*原數(shù)據(jù)交換 //生命三個(gè)綁定節(jié)點(diǎn)類 BindingElement tcpBindingElement = new TcpTransportBindingElement(); BindingElement httpBindingElement = new HttpsTransportBindingElement(); BindingElement pipeBindingElement = new NamedPipeTransportBindingElement(); //實(shí)例化通用綁定類的實(shí)例 Binding tcpBinding = new CustomBinding(tcpBindingElement); Binding httpBinding = new CustomBinding(httpBindingElement); Binding pipeBinding = new CustomBinding(pipeBindingElement); // Uri tcpBaseAddress = new Uri("net.tcp://localhost:9001/"); Uri httpBaseAddress = new Uri("http://localhost:9002/"); Uri pipeBaseAddress = new Uri("net.pipe://localhost/"); host.AddServiceEndpoint(typeof(WCFService.IWCFService), new NetTcpBinding(), tcpBaseAddress); host.AddServiceEndpoint(typeof(WCFService.IWCFService), new WSHttpBinding(), httpBaseAddress); host.AddServiceEndpoint(typeof(WCFService.IWCFService), new NetNamedPipeBinding(), pipeBaseAddress); //ServiceMetadataBehavior metadataBehavior;//定義服務(wù)行為變量, metadataBehavior = host.Description.Behaviors.Find<ServiceMetadataBehavior>(); //獲取宿主的行為列表 if (metadataBehavior == null)//如果沒有服務(wù)原數(shù)據(jù)交換的行為,實(shí)例化添加服務(wù)原數(shù)據(jù)交換行為 { metadataBehavior = new ServiceMetadataBehavior(); host.Description.Behaviors.Add(metadataBehavior); } //如果沒有可用的mex節(jié)點(diǎn),可以使用一下代碼判斷,添加mex節(jié)點(diǎn) host.AddServiceEndpoint(typeof(IMetadataExchange), tcpBinding, "mex"); host.AddServiceEndpoint(typeof(IMetadataExchange), httpBinding, "mex"); host.AddServiceEndpoint(typeof(IMetadataExchange), pipeBinding, "mex");
感謝各位的閱讀,以上就是“WCF服務(wù)元數(shù)據(jù)交換編程怎么實(shí)現(xiàn)”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對(duì)WCF服務(wù)元數(shù)據(jù)交換編程怎么實(shí)現(xiàn)這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。