There are three sections in the WCF configuration for a service client: Look at bindings => clientBaseAddress
Why do we need to provide a callback address? Is this field required? Why can't .NET determine the client address? Does this mean that I can indicate the client endpoint located on some other machine?
<configuration> <system.serviceModel> <client> <endpoint address= </client> <bindings> <wsDualHttpBinding> <binding name= clientBaseAddress= maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647" </binding> </wsDualHttpBinding> </bindings> <behaviors> <endpointBehaviors> <behavior name=> </behavior> </endpointBehaviors> </behaviors> </system.serviceModel>
source share