• 启用 Master Data Services 的 Web Service


    概述

    • 本地计算机上必须安装了 Master Data Services 配置管理器。
    • 本地主数据管理器 Web 应用程序必须存在。
    • 本地或远程 Master Data Services 数据库必须存在。

    启用 Web 服务

    • 打开 Master Data Services 配置管理器。
    • 在左窗格中单击“Web 配置”
    • “Web 配置”页的“Web 应用程序”下,从“网站”列表中选择包含您的主数据管理器 Web 应用程序的网站。
    • “Web 应用程序”框中,选择承载主数据管理器的 Web 应用程序。
    • “Web 服务”下,选择“为此 Web 应用程序启用 Web 服务”,然后单击“应用”
    • 在文本编辑器中打开 Master Data Services Web.config 文件。此文件位于 Master Data Services 安装路径的 WebApplication 文件夹中。
    • 找到 <serviceBehaviors> 下的 mdsWsHttpBehavior 部分。对于 <serviceMetadata> 元素,将 httpGetEnabled 设置为 true
    <system.serviceModel> 
         <behaviors> 
              <serviceBehaviors> 
                   <behavior name="mdsWsHttpBehavior"> 
                        <!-- Enable to allow clients to retrieve metadata (WSDL) about the service endpoints. --> 
                        <!-- If not using SSL (httpGetEnabled="true" httpsGetEnabled="false") to expose service metadata.—>  
                        <!-- If SSL is being used (httpGetEnabled="false" httpsGetEnabled="true") to expose service metadata.--> 
                        <serviceMetadata httpGetEnabled="true" httpsGetEnabled="false" /> 
    
                        <!-- Enable to allow clients to see service exception details --> 
                        <serviceDebug includeExceptionDetailInFaults="true" /> 
    
                        <serviceThrottling maxConcurrentSessions="400"/> 
    
                       <dataContractSerializer maxItemsInObjectGraph="999999999"/> 
                   </behavior> 
              </serviceBehaviors> 
         </behaviors> 
    … 
    </system.serviceModel>


     

  • 相关阅读:
    MyBatis框架(一)
    开始约定编程——Spring AOP
    Spring Boot快速入门
    全注解下的Spring IoC
    Java泛型
    Java异常
    windows监控web程序连接数
    winform导出excel报'object' does not contain a definition for 'get_Range'的问题
    git基本操作
    .net core中使用HttpClient碰到的问题:This instance has already started one or more requests. Properties can only be modified before sending the first request
  • 原文地址:https://www.cnblogs.com/aiwz/p/6154627.html
Copyright © 2020-2023  润新知