I would like to host internet based net-tcp WCF service through window service rather than IIS?
What I want to know is, is it possible for the end point URI to be something other than non-localhost domain based URI.
So for e.g. I would like to access the service at <http://dev1/myservice> rather than a standard <http://localhost:90/myservice> which is what almost all the documented examples mention.
Is what I’m trying to do even possible with hosting using a window service in mind (obviously with IIS hosting, I know it’s possible)
I would like to host internet based net-tcp WCF service through window service rather
Share
It’s possible. I made a windows service with WCF service self hosted and it’s running in production enviroment.
This is my service onfiguration section
It is working fine. Your client app must resolve your server name.