In the "Default NetTcpBinding" section on WCF on MSDN is the following example.
<endpoint address=""
binding="netTcpBinding"
contract="Microsoft.ServiceModel.Samples.ICalculator" />
There seems to be no information on what the effective address is if set to null.
Elsewhere I received advice to set it to:
net.tcp://localhost:8000/myservice
But if I do that how to I ensure myservice is visible to localhost:8000?
Lastly, is it possible to learn WCF from MSDN alone?