Hi,
There are three sections in WCF configuration for service client: Look at bindings => clientBaseAddress
Why do we need to specify callback address? Is this field required? Why .NET is unable to determine the address of client? Does it mean that i can specify client endpoint that is 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>