引用WCF服务正确实现方法介绍

开发 开发工具
我们今天将会通过这篇文章为大家详细讲解有关引用WCF服务的相关实现方法。主要包括我们介绍的两种方式来实现。

当我们在实际编程中需要对WCF服务进行引用的时候,需要两种方法来实现。那么今天我们就针对引用WCF服务的相关方法来进行一个详细介绍。希望这里介绍的内容可以解决朋友在实际应用中碰到的问题。

1.在项目的ServiceReferences.ClientConfig文件中加入WCF服务定义,如下:

  1. < configuration>   
  2. < system.serviceModel>   
  3. < bindings>   
  4. < basicHttpBinding>   
  5. < binding name="BasicHttpBinding_IService" 
    maxBufferSize="2147483647"   
  6. maxReceivedMessageSize="2147483647">   
  7. < security mode="None" />   
  8. < /binding>   
  9. < /basicHttpBinding>   
  10. < /bindings>   
  11. < client>   
  12. < endpoint address="http://localhost:2442/Service1.svc" 
    binding="basicHttpBinding"   
  13. bindingConfiguration="BasicHttpBinding_IService" 
    contract="ServiceReference1.IService1"   
  14. name="BasicHttpBinding_IService" />   
  15. < /client>   
  16. < /system.serviceModel>   
  17. < /configuration>   
  18. < configuration> 
  19. < system.serviceModel> 
  20. < bindings> 
  21. < basicHttpBinding> 
  22. < binding name="BasicHttpBinding_IService" 
    maxBufferSize="2147483647" 
  23. maxReceivedMessageSize="2147483647"> 
  24. < security mode="None" /> 
  25. < /binding> 
  26. < /basicHttpBinding> 
  27. < /bindings> 
  28. < client> 
  29. < endpoint address="http://localhost:2442/Service1.svc" 
    binding="basicHttpBinding" 
  30. bindingConfiguration="BasicHttpBinding_IService" 
    contract="ServiceReference1.IService1" 
  31. name="BasicHttpBinding_IService" /> 
  32. < /client> 
  33. < /system.serviceModel> 
  34. < /configuration> 

在CS文件中,使用如下代码引用WCF服务

  1. var client = new ServiceReference1.Service1Client();   
  2. var client = new ServiceReference1.Service1Client(); 

第二种方式:在CS文件中,直接定义引用WCF服务,代码如下:

  1. Binding binding = new BasicHttpBinding();   
  2. EndpointAddress endPoint = new EndpointAddress(   
  3. "http://localhost:2442/Service1.svc");   
  4. Service1Client client = new Service1Client(binding, endPoint);   
  5. Binding binding = new BasicHttpBinding();  
  6. EndpointAddress endPoint = new EndpointAddress(  
  7. "http://localhost:2442/Service1.svc");  
  8. Service1Client client = new Service1Client(binding, endPoint);  

以上两种方式都能引用WCF服务,比如***种方式,如果没有定义配置文件,则会报 找不到键值的错误提示.

【编辑推荐】

  1. 两个基本WCF应用技巧总结
  2. WCF扩展点在自定义运行时使用
  3. WCF客户端具体搭建方法解析
  4. WCF IDisposable接口应用功能详解
  5. WCF REST正确定义方法介绍
责任编辑:曹凯 来源: CSDN
相关推荐

2010-02-26 10:30:03

ASP.NET Aja

2010-03-01 17:44:39

Silverlight

2010-02-26 08:59:10

WCF服务宿主程序

2010-02-26 11:22:16

LitwareHR使用

2010-02-24 10:41:28

WCF服务保护

2010-02-25 13:48:23

WCF动态创建代码

2010-02-25 09:13:34

WCF异步调用

2010-03-04 11:12:02

Python AOP

2010-02-25 10:10:29

WCF使用Header

2010-03-01 10:26:40

WCF异步服务

2010-02-24 10:07:48

WCF跨越边界

2010-02-24 13:48:44

MSMQ使用WCF

2009-12-21 10:09:26

WCF创建客户端服务对

2010-03-04 15:12:33

Python算法

2010-01-26 17:18:13

Android读写文件

2010-01-14 17:52:54

VB.NET显示系统信

2010-02-23 17:05:38

2010-02-25 16:07:28

WCF REST

2010-03-02 16:58:11

AJAX WCF服务项

2010-02-22 14:28:35

WCF实现loadin
点赞
收藏

51CTO技术栈公众号