zoukankan      html  css  js  c++  java
  • 启用 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>


     

  • 相关阅读:
    BigPipe_高性能流水线页面技术
    高并发大流量网站 10 个解决方法
    崇高不是比惨
    utf-8无bom格式编码
    go.php
    微信+QQ跳转
    java 设计模式-单例
    HTML连载88-今天把努比亚界面仿真写完了(完结连载)
    Android连载10-动态添加页面、创建一个新闻app
    JavaScript连载9-三目运算符、综合复习
  • 原文地址:https://www.cnblogs.com/aiwz/p/6154627.html
Copyright © 2011-2022 走看看