WCF分布式开发常见错误(5)Could not find a base address that matches scheme

来源:互联网 发布:java注解类 编辑:程序博客网 时间:2024/05/17 13:44
Posted on 2009-03-18 00:29 Frank Xu Lei 阅读(448) 评论(0)  编辑 收藏 网摘 所属分类: WCF分布式开发常见错误

WCF分布式应用开发,托管宿主配置终结点错误:找不到匹配式样http的基地址,

Could not find a base address that matches scheme http for the endpoint with binding MetadataExchangeHttpBinding. Registered base address schemes are [].

如图:

解决办法:打开托管宿主配置文件,添加基地址节点,与配置文件里终结点地址一致即可。

          <host>
          <baseAddresses>
            <add baseAddress="http://localhost:8001/"/>
            <add baseAddress="net.tcp://localhost:8002/"/>
          </baseAddresses>
        </host>

 


 

 

【老徐的博客】

【作者】:Frank Xu Lei

【地址】:http://www.cnblogs.com/frank_xl/archive/2009/03/18/1415007.html