I have a WCF service library which contains multiple services. I test them using WCF service host Not all services have endpoints configured, so only some of them are started by WCF Service host.
Those that are configured are using wsHttpBindng, basicHttpBinding and tcp binding.
WCF Service Host starts all configured services properly, but after starting last one it display a strange error message, as below:
Microsoft WCF Service Host
An error occurred while trying to set the ready event named '939cef3c-8931-41b8-ba9b-aa701a474f70'. Check if the event name is correct, and you have the right to access it.
Additional information: No handle of the given name exists.
OK
After that, VS starts WCF Test client ok and I can test all services (and they are working ok as far as I can tell)
If I leave only one service configured, WCF Service Host does not show any error
Had anyone encountered this kind of error? What could cause it?
Thanks