I had a simple service setup using an .svc file and it was hosting both http and net.tcp.
I then added a serviceactivation section in my web.config file, set my relativeaddress to a .svc file of the same name and the service to my namespace.service name.
Http still works file, but net.tcp throws this exception.
Could not connect to net.tcp://<machineanddomainname>/MyService/MyService.svc. The connection attempt lasted for a time span of 00:00:21.0232025. TCP error code 10060: A connection attempt failed because the connected party did not properly respond
after a period of time, or established connection failed because connected host has failed to respond 2001:0:cc9:ff0a:8d:2319:ba7b:5ae0:808.
If I add a service reference to the service (the .svc file) it still gives me a net.tcp address but I believe that when you go back to file-less activation, doesn't that move you back to http only?
STom