首页 > Web开发 > 详细

Asp.Net中WebServices的调用方式

时间:2015-07-18 23:58:51      阅读:431      评论:0      收藏:0      [点我收藏+]

  在web.config中这样配置要引用的WebServices

  <system.serviceModel>
    <bindings>
      <basicHttpBinding>
        <binding name="VoteSoap" />
      </basicHttpBinding>
    </bindings>
    <client>
      <endpoint address="http://localhost:1234/Vote.asmx" binding="basicHttpBinding"
        bindingConfiguration="VoteSoap" contract="Vote.VoteSoap" name="VoteSoap" />
    </client>
  </system.serviceModel>

     中间还有一些操作。。。

  然后在需要应用的类中引入命名空间,然后就可以调用这个webservices,并用它提供的方法了。

Asp.Net中WebServices的调用方式

原文:http://www.cnblogs.com/ithuo/p/4657829.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!