WCF IIS8 WebService 加载元数据时出错_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > WCF IIS8 WebService 加载元数据时出错

WCF IIS8 WebService 加载元数据时出错

 2013/7/17 10:15:04  hean  博客园  我要评论(0)
  • 摘要:服务器为WindowsServer2012,端口号为8080,防火墙打开端口,客户端可以访问到svc文件,在客户端使用svcutil.exe或在VS2012中添加服务引用时出错。查阅各方神圣的资料及手记,解决方法如下:修改Web.config文件的serviceBehaviors内容如下:<behaviors><serviceBehaviors><behaviorname=<behaviorName>><
  • 标签:Web Service iiS Webservice 数据 WCF

服务器为 Windows Server 2012,端口号为8080,防火墙打开端口,客户端可以访问到svc文件,在客户端使用 svcutil.exe 或在 VS2012 中添加服务引用时出错。

查阅各方神圣的资料及手记,解决方法如下:

修改 Web.config 文件的 serviceBehaviors 内容如下:

 

<behaviors>

  <serviceBehaviors>

    <behavior name=<behaviorName>>

      <useRequestHeadersForMetadataAddress>

        <defaultPorts> 

          <add scheme="http" port="portNumber"/>

          <add scheme = "https" port = "portNumber"/>

        </defaultPorts>

      </useRequestHeadersForMetadataAddress>

      <!--behavior的其它内容--!>

    </behavior>

  </serviceBehaviors>  

</behaviors>

<!--配置文件其它内容--!>

 <services>

  <service behaviorConfiguration= <behaviorName>>

    <endpoint binding=<binding> contract=<contract> />

  </service>

</services>

 

重点是要添加红色文本部分内容,增加元数据访问端口,使客户端可以正常下载元数据。其中 behaviorName 为占位符,程序中应为具体的 behavior 名。同理,portNumber应为具体的端口号,我的程序中为8080,binding, contract依次类推。

 

 

发表评论
用户名: 匿名