zoukankan      html  css  js  c++  java
  • Silverlight在添加WCF服务引用时报错

    HTML 文档不包含 Web 服务发现信息。

    元数据包含无法解析的引用:“http://localhost:1399/WCF-Service/Service.svc”。
    服务 http://localhost:1399/WCF-Service/Service.svc 不支持内容类型 application/soap+xml; charset=utf-8。客户端和服务绑定可能不匹配。
    远程服务器返回错误: (415) Unsupported Media Type。
    如果该服务已在当前解决方案中定义,请尝试生成该解决方案,然后再次添加服务引用。

    ===========================

    解决办法

    Web.config文件中要有如下配置:

    <system.serviceModel>
            <behaviors>
                <serviceBehaviors>
                    <behavior name="ServiceBehavior">
                        <serviceMetadata httpGetEnabled="true" />
                        <serviceDebug includeExceptionDetailInFaults="false" />
                    </behavior>
                </serviceBehaviors>
            </behaviors>
            <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
          <!-- WCF服务新增节点-->
            <services>
              <service behaviorConfiguration="ServiceBehavior" name="Service">
                <endpoint address="" binding="basicHttpBinding" contract="IService">
                  <identity>
                    <dns value="localhost"/>
                  </identity>
                </endpoint>
                <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
              </service>
            </services>
        </system.serviceModel>

    在service节点中增加behaviorConfiguration属性,并命名ServiceBehavior,然后在behavior节点中指定name为ServiceBehavior(默认为空)

  • 相关阅读:
    How to interpret complex C/C++ declarations (ZT)
    The Managed Thread Pool
    How slow is dynamic_cast?
    Type Safety
    sBRDF空间双向反射分布函数完全解析
    近日工作与生活梗概
    简单的环绕散射 Simple Wrap Diffuse From GPU GEMS1
    屈辱史
    难以忽视的细节
    物理学与计算机图形学中的HDR
  • 原文地址:https://www.cnblogs.com/schyu/p/3666248.html
Copyright © 2011-2022 走看看