Archives

All Posts Tagged Tag: ‘wcf’

WCF inside Windows Service: HTTP could not register URL http://+:8000

Following the  usual-subject kind of MSDN tutorials to make a Windows Service able to communicate with a WPF application (that is have a WCF service hosted inside your Windows Service) I ended with this kind of app.config section: <services> <service name=”ConSense.Sensors.Service.ConSenseSensorsWcfService” behaviorConfiguration=”ConSenseSensorsWcfServiceBehavior”> <host> <baseAddresses> <add baseAddress=”http://localhost:8000/ConSense/service”/> </baseAddresses> </host> <!– this endpoint is exposed at the base address provided by host: …

Read More