演示WCF契约查询ConsoleApplication应用实例

开发 后端
打开其程序代码添加一个ConsoleApplication应用程序,新建程序,WCF契约查询代码见文章详细介绍。

WCF还是比较常用的,于是我研究了一下WCF契约查询,在这里拿出来和大家分享一下,希望对大家有用。当我们拿到一个服务地址的时候该如何知道这个服务所提供的服务呢?如果是您自己开发的Service,这一点或许不需要兴师动众,但是如果是别人开发的服务,那么了解服务中的Endpoint将显得格外重要,本文将利用对[WCF]继承中所构建的服务代码进行分析。

熟悉Web Service开发的程序员对添加服务引用应该并不陌生。在创建某个服务的客户端程序时,并不需要从头开始编写客户端的底层通信和交互代码,可以通过输入服务地址来添加服务来让Visual Studio生成客户端代理,这样访问服务就像访问本地组件一样,而不需要去关心通信的细节。如果创建的客户端程序项目和服务程序项目处在同一个解决方案里(很多开发者在开发服务时,也会同步开发客户端程序),还可以通过Visual Studio来帮助我们“发现(Discovery)”服务,并添加服务引用。

打开其程序代码添加一个WCF契约查询ConsoleApplication应用程序,新建程序,WCF契约查询代码如下:

  1. using System;   
  2. using System.ServiceModel.Description;   
  3. namespace ContractQueriesClient   
  4. {   
  5. class Program   
  6. {   
  7. static void Main(string[] args)   
  8. {   
  9. // ?WSDL   
  10. //string mexAddress = "http://localhost:8080/ScientificCalculatorService?WSDL";   
  11. //MetadataExchangeClient MEXClient = new MetadataExchangeClient(new Uri(mexAddress), MetadataExchangeClientMode.HttpGet);   
  12. // /MEX string mexAddress = "http://localhost:8080/ScientificCalculatorService/mex";   
  13. MetadataExchangeClient MEXClient = new MetadataExchangeClient(new Uri(mexAddress), MetadataExchangeClientMode.MetadataExchange);   
  14. MetadataSet metadata = MEXClient.GetMetadata();   
  15. MetadataImporter importer = new WsdlImporter(metadata);   
  16. ServiceEndpointCollection endpoints = importer.ImportAllEndpoints();   
  17. int endpointCounter = 0;   
  18. foreach (ServiceEndpoint endpoint in endpoints)   
  19. { Console.WriteLine("endpoints[{0}].Name = {1}", endpointCounter, endpoint.Name);   
  20. Console.WriteLine("endpoints[{0}].Contract.Namespace = {1}", endpointCounter, endpoint.Contract.Namespace);   
  21. Console.WriteLine("endpoints[{0}].Contract.Name = {1}", endpointCounter, endpoint.Contract.Name); endpointCounter++; } 
    System.Collections.ObjectModel.Collection
    <ContractDescription> contracts = importer.ImportAllContracts();   
  22. int contractCounter = 0; foreach (ContractDescription contract in contracts)   
  23. { Console.WriteLine("contracts[{0}].Namespace = {1}", contractCounter, contract.Namespace);   
  24. Console.WriteLine("contracts[{0}].Name = {1}", contractCounter, contract.Name); contractCounter++; } } } } 

这个项目我们不需要Add ServiceReference,因为我们只需分析那个“地址”所提供给我们的究竟是什么样的服务,而不是要去使用服务中的WCF契约查询

责任编辑:田树 来源: 博客
相关推荐

2009-11-06 09:39:40

WCF契约

2010-03-02 13:43:01

WCF事务演示

2010-03-01 16:04:31

WCF服务契约

2010-03-01 18:11:40

WCF数据契约变更

2009-11-09 09:23:10

WCF数据契约

2010-02-22 15:27:05

WCF数据契约

2010-02-22 13:56:35

WCF服务契约

2010-02-24 16:58:14

WCF Session

2023-09-28 11:42:15

2009-11-05 13:54:07

WCF Service

2010-05-18 09:02:55

MySQL条件查询

2010-02-23 13:46:37

WCF数据契约

2009-11-09 14:46:09

WCF集合契约等价

2009-12-22 09:11:31

WCF双向通信

2009-11-05 16:27:51

WCF数据契约

2010-07-21 09:50:12

SQL Server子

2009-11-09 13:12:14

WCF事物操作

2009-11-06 09:30:35

WCF服务框架

2011-05-10 09:26:45

BESBlackBerry

2009-12-21 14:05:18

WCF契约
点赞
收藏

51CTO技术栈公众号