引用WCF服务经验分享

WCF服务的引用是一个比较简单的方式。我们可以通过两种方式来实现引用WCF服务。在这里,就向大家详细讲解引用WCF服务的方法。#t#

我们提供的服务有:成都网站设计、成都网站建设、外贸网站建设、微信公众号开发、网站优化、网站认证、江宁ssl等。为近1000家企事业单位解决了网站和推广的问题。提供周到的售前咨询和贴心的售后服务,是有科学管理、有技术的江宁网站制作公司

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

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

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

 
 
 
  1. view plaincopy to clipboardprint?  
  2. var client = new 
    ServiceReference1.Service1Client();   
  3. var client = new 
    ServiceReference1.Service1Client(); 

引用WCF服务2:在CS文件中,直接定义WCF服务,代码如下:

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

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

分享标题:引用WCF服务经验分享
转载注明:http://www.csdahua.cn/qtweb/news32/505832.html

网站建设、网络推广公司-快上网,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 快上网