[WCF Errors] : Could not find a base address that matches scheme net.tcp for the endpoint with binding NetTcpBinding

So, you decided to migrate some of your WCF Services into a new Server.

However after this migration the WCF Services are not working and you start seeing the below Error:
"Could not find a base address that matches scheme net.tcp for the endpoint with binding NetTcpBinding. Registered base address schemes are [http]. "

Frustrating, right?

However the solution for this error is pretty simple, so don worry, basically all you have to do is that you probably forgot to install or activate the feature that enables you to host your WCF Services on IIS.

Regarding the steps to install or activate the feature for enable you to host WCF, you can follow the below article:
How to: Install and Configure WCF Activation Components

So, pretty much straightforward.

Hope that helps