WCF错误:ChannelFactory.Endpoint上的地址属性为null

时间:2012-09-27 18:15:12

标签: .net wcf

我创建了一个用作WCF客户端的控制台应用程序。 app.config包含以下内容:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <system.serviceModel>
        <bindings>
            <customBinding>
                <binding name="WebHttpBinding_IWebContentService">
                    <textMessageEncoding maxReadPoolSize="64" maxWritePoolSize="16"
                        messageVersion="Soap12" writeEncoding="utf-8">
                        <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
                            maxBytesPerRead="4096" maxNameTableCharCount="16384" />
                    </textMessageEncoding>
                </binding>
            </customBinding>
        </bindings>
        <client>
            <endpoint address="http://localhost:1252/SomeService.svc" binding="customBinding" bindingConfiguration="WebHttpBinding_IWebContentService"
                contract="WebContentClient.IWebContentService" name="WebHttpBinding_IWebContentService" />

        </client>


    </system.serviceModel>
</configuration>

当我运行它时,我收到以下错误:

The address property on ChannelFactory.Endpoint was null 

端点元素有一个地址属性,但我不确定我要分配该属性。我在localhost上运行我的Web服务。

更新1:

我添加了地址,我更新了原始代码。但我收到错误回复说没有端点侦听address =“http:// localhost:1252 / SomeService.svc”。如果我访问wcf网址,我可以看到网络服务。

2 个答案:

答案 0 :(得分:2)

自定义绑定的配置不正确。您应该指定一个像httptransport这样的传输元素。

以下是有效配置的示例:

<customBinding>
    <binding name="myCustomHttpBinding">
        <textMessageEncoding />
        <httpTransport / >
    </binding >    
</customBinding >

为什么使用自定义绑定?根据服务的不同,有许多绑定(basicHttpBinding,webHttpBinding,...)更易于使用。

注意:由于异常,我认为您的客户端代码也不正确。

答案 1 :(得分:0)

您需要将其分配给Web服务的地址。如果它是localhost上的WCF Web服务,则可能是以下形式:

http://localhost[:port]/<path>/SomeService.svc