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>


     

  • 相关阅读:
    我从来没有想要去
    微信公众号开发系列-发展模式,创建自己的自定义菜单
    iOS6之后 NSAttributedString 福利
    iOS 面试题:OC标题的基本概念&lt;延续&gt;
    逻辑、认识论和本体论“三统一”
    C++中的头文件和源文件
    extern与头文件(*.h)的区别和联系
    Predicate Format String Syntax 与字面量
    编码、格式与网络通信
    充分条件和必要条件的联系和区别是什么
  • 原文地址:https://www.cnblogs.com/aiwz/p/6154627.html
Copyright © 2011-2022 走看看