码迷,mamicode.com
首页 > 其他好文 > 详细

在 ServiceModel 客户端配置部分中,找不到引用协定“XXX”的默认终结点元素

时间:2017-04-21 22:46:31      阅读:3771      评论:0      收藏:0      [点我收藏+]

标签:oss   .com   文件   nbsp   system   解决方法   asm   config文件   services   

一、问题

在调用远程web services接口时出现了以下问题:

技术分享

 

二、可能的原因和解决方法

网站根目录里的web.config文件缺少了相应的配置信息

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <system.serviceModel>
    <bindings>
      <basicHttpBinding>
        <binding name="OSSysServiceSoap" />
      </basicHttpBinding>
    </bindings>
    <client>
      <endpoint address="http://127.0.0.1/vsappgdhr/gdhr/webservices/OSSysService.asmx"
          binding="basicHttpBinding" bindingConfiguration="OSSysServiceSoap"
          contract="OSSysService.OSSysServiceSoap" name="OSSysServiceSoap" />
    </client>
  </system.serviceModel>
</configuration>

 

在 ServiceModel 客户端配置部分中,找不到引用协定“XXX”的默认终结点元素

标签:oss   .com   文件   nbsp   system   解决方法   asm   config文件   services   

原文地址:http://www.cnblogs.com/jronny/p/6746237.html

(2)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!