无法在Web API中向SAP添加服务引用

时间:2015-01-24 12:29:54

标签: asp.net web-services visual-studio

我正在使用SAP服务将数据导入Web API,然后将该Web API用于sharepoint客户端。问题是当我在控制台应用程序中使用SAP服务时,我获得了数据,但是当我使用Web API时,它显示以下错误 '无法在ServiceModel客户端配置部分中找到引用合同“AddonWCFService.SAPService”的默认端点元素。这可能是因为没有为您的应用程序找到配置文件,或者因为在客户端元素中找不到与此合同匹配的端点元素。'。 但是在web.config中我定义了终点标记。我的web.config有以下代码

  <service name="RCWindsSvc.Service1" behaviorConfiguration="RCWindsSvc.Service1Behavior">
      <endpoint address="http://....../SAPService.aspx"
          binding="webHttpBinding"
          contract="RCWindsSvc.IService1"
          behaviorConfiguration="ServiceAspNetAjaxBehavior"
          name="RCWindsSvcEndpoint"/>
      <!-- behaviorConfiguration="WebBehaviour" /> -->
    </service>

0 个答案:

没有答案