Tagged Questions
2
votes
4answers
156 views
Visual feedback for a self-hosting WCF service
I have a windows service that is hosting a WCF service on a server. I am using InstanceContextMode.PerSession attribute. The services function well per my requirements.
I would now like to implement ...
3
votes
2answers
256 views
Service can't be started: can't load assembly
I'm trying to put together a Windows Service, which hosts a WCF service.
My project structure is as follows:
Service
Service.Contracts
Service.Host
Service.Setup
The Service.Host project contains ...
1
vote
1answer
925 views
Hosting WCF service as Windows Service?
I have manage to move my complexed WCF service into a Windows Service. The binding looks like this :
<service behaviorConfiguration="MyAppClientService.CustomValidator_Behavior" ...
1
vote
3answers
635 views
New MVC 4 Beta Web API is not serving requests when ran as a Windows Service
I'm trying to run a self hosted executable as a Windows service. I'm using the MVC 4 beta Web API. First I used Derik Whittaker's blog for setting up the basic console application and tested it with ...
0
votes
2answers
1k views
WCF Service Self Hosting Trouble
I'm trying to host a WCF Service inside a Windows Service which I am starting through a console app. Each service is its own project as is the console app. I've copied the app.config from the WCF ...
5
votes
2answers
4k views
Want to host WCF Webservice as Windows Service as against to Hosting in IIS
I want to expose few web services but thinking of hosting those as Windows Service as against hosting in IIS.
Is it a good practice?
If yes? How do I make it secured?
I want to authenticate the ...