I have two WCF Services combined in a single App.Config file. I can\'t get the thing to run (the application compiles but fails at initialization of the se
The service name must be the fully qualified name of your service class, including the namespace, e.g.
<service name="YourServiceNamespace.YourService">
It can't be just anything - the name of the service class is used by ServiceHost to find the right service configuration.
ServiceHost