I have two base addresses defined in my WCF Service config file:
You defined a Net.TCP base address to be:
net.tcp://localhost:8001/TemplateReportService
Your endpoints with Net TCP are:
and
So their complete service address will be "netTcp base address" + "relative address as defined on the
element" - this gives:
net.tcp://localhost:8001/TemplateReportService/TemplateService
and
net.tcp://localhost:8001/TemplateReportService/ReportService
respectfully.
Can you use them at these addresses??
Also - you defined a "mex" (metadata exchange) endpoint for the HTTP protocol - that's why you can see something when you navigate to the HTTP address. But you did not specify a MEX endpoint for netTcp.