I've created a simple WCF service which is hosted within a windows service. WCF service is automatically started on windows service start, but when I connect to the WCF service from a client for the first time it takes a couple of seconds (as any other WCF service).
I'm aware on how to avoid this delay when the service is hosted on IIS, but not when it's hosted within anything else.
To be exact:
Is there a way to wake-up the WCF service which is hosted within a windows service without a client reqest being made to it? Possibly from the windows service code?