Tagged Questions

Topshelf is a service hosting framework for building Windows services using .NET.

learn more… | top users | synonyms

4
votes
1answer
319 views

Blank responses using Nancy self host + TopShelf

I am trying to use Nancy (using the Self Hosting with Razor views nuget packages) inside of a Topshelf service. I am hosting it on http://localhost:8585/, and it works just fine while I'm in debug ...
4
votes
1answer
362 views

Getting started with the stact framework

I have been looking through the Topshelf code, and notice that it is using an assembly called 'stact.dll'. There does not seem to be a lot of information around on this. It seems to be a library for ...
3
votes
3answers
68 views

Console.WriteLine() inside a Windows Service?

I am currently using TopShelf with a Console Application to create a Windows Service. When I run the code as a console application I use a few Console.WriteLine() to output results. Once the code does ...
3
votes
1answer
169 views

TopShelf - Type or namespace name Topshelf cannot be found

I am attempting to play with TopShelf to host a Console application as a Windows Service, but I am running into problems... I have referenced the TopShelf dll, along with the log4net dll from my ...
3
votes
1answer
695 views

Topshelf hosting application debugging in VS2010

I'm trying to use the Topshelf hosting application Topshelf.Host.exe to execute my .NET Class Library as a Windows service. http://topshelf-project.com/documentation/shelving/ I'm having trouble ...
3
votes
1answer
468 views

How to configure TopShelf to run a service as ServiceAccount.NetworkService?

How to configure TopShelf to run a service as ServiceAccount.NetworkService? https://github.com/Topshelf/Topshelf
3
votes
2answers
2k views

When installing a Generic Host as a service in NServiceBus, how do I provide valid credentials?

Imagine I create a .bat file in the following directory: \trunk\Samples\PubSub\ @ECHO OFF ECHO installing Subscriber 1 Subscriber1\bin\Debug\NServiceBus.Host.exe /install pause ECHO installing ...
2
votes
3answers
394 views

Installing the Console Application as Windows Service

I write simple Windows Service. I use TopShelf. How install my application as service? I trying: SpyService.exe install, but is not helping me. What is the difference between these two ways of ...
2
votes
1answer
730 views

WCF service hosted in Topshelf takes long time to shut down

I'm using Topshelf to host a WCF Service as a Windows Service. Even when just running on the console, it takes an exceptionally long time to shut down after I send it a Ctrl-C, and this is mirrored ...
2
votes
1answer
434 views

Running Topshelf service using ConfigureServiceInIsolation - Generic Host

I am developing a very simple Generic Host solution that will allow us to host assemblies as windows services (ala NServiceBus). I'm coming across the following exception (similar to the comments ...
2
votes
2answers
361 views

Topshelf exception

I'm using topshelf and I'm getting this exception when I try to use the "-i" option to install as a service...please help me.. Unable to cast object of type 'Magnum.CommandLineParser.SwitchElement' ...
2
votes
3answers
823 views

Debugging Topshelf service that won't run under restrictive account

I have a Windows service written using Topshelf. I'm trying to configure it to run using a Windows account with restricted privileges rather than using LocalSystem. That's also necessary as I'd like ...
2
votes
2answers
2k views

How can I enable logging for an NServiceBus Generic Host

I didn't want to make the title too long but this question specifically refers to running an NServiceBus Generic Host as a Windows Service (thanks to TopShelf) configured to run as Local System (on a ...
1
vote
2answers
47 views

running TopShelf on an MVC web application

I need to do some background tasks for a web application i'm building. I like the look of using Topshelf to run a service on the server. I was wondering the best way of initialising the service. I was ...
1
vote
2answers
58 views

Making async request with stact

Apologies if this seems like I want my problem saved for me, but I had stumbled upon stact sometime ago and it seems it would be a handy library to get familiar with, and I think it would work well ...
1
vote
1answer
93 views

How do I get Topshelf to run as a domain user

How do I get TopShelf to run as a specific domain user account? I have in the configuration x.RunAs("domain\username", "password"); I have in the code a console statement that prints out the ...
1
vote
1answer
205 views

Why doesn't my Topshelf service start?

I have a problem with a shelved Topshelf service that doesn't start when it's supposed to: even though the shelf folder changes, and Topshelf notices this, the service is not started. No error ...
1
vote
1answer
341 views

Using TopShelf to create a simple MQ windows service

I am using Topshelf for creating a simple MQ reading service. Since the documentation available is sparse - I have run into some probably simple questions that I hope get answered here: 1) Generally ...
1
vote
1answer
145 views

TopShelf- difference between ConfigureServiceInIsolation and ConfigureService

Can someone help me understand this topshelf project...mainly the difference between ConfigureServiceinIsolation and ConfigureService. http://topshelf-project.com/documentation/getting-started/ It ...
0
votes
0answers
15 views

Log4net UDP Appender in Windows Service

I have a very simple Windows service developed using TopShelf. I'm using log4net and have a UDP Appender configured. I'm using an app called Log2Console to view the UDP logs. Everything works fine ...
0
votes
0answers
15 views

A windows service starts with Automatic(Delayed Start) but not with Automatic

I have written a very simply WCF service which I am hosting using TopShelf. When I install the service on a Windows 2008 Server R2 box and set the startup type of the service to "Automatic" the ...
0
votes
2answers
57 views

Topshelf - handling loops

Generally with services, the task you want to complete is repeated, maybe in a loop or maybe a trigger or maybe something else. I'm using Topshelf (http://topshelf-project.com/) to complete a ...
0
votes
2answers
137 views

Working with TopShelf, I'm running into an error around “Topshelf.HostConfigurators.WindowsServiceDescription service has not been installed yet.”

Has anyone had experience with TopShelf when building Windows Services? I keep running into this error when trying to start the service, "Topshelf.HostConfigurators.WindowsServiceDescription ...
0
votes
1answer
91 views

Top Shelf giving an error Sequence contains more than one element

I am trying to host a console application as window service using top shelf here is the code : RunConfiguration cfg = RunnerConfigurator.New(x => { x.ConfigureService<Certegy>(s => ...
0
votes
3answers
396 views

Why isn't NServiceBus.Host.exe running my code in place?

I'm building an NServiceBus service, and when I start it (either in debug through Visual Studio, or from the command line) NServiceBus.Host.exe appears to be relocating the DLLs that it's running to ...