Tagged Questions

27
votes
3answers
5k views

How to automatically start your service after install?

How do you automatically start a service after running an install from a Visual Studio Setup Project? I just figured this one out and thought I would share the answer for the general good. Answer to ...
21
votes
20answers
11k views

Printing a PDF from a .NET Service

It's the "printing question guy" again. Looking for a third-party solution to print PDFs, preferable from a service. I have seen some arguments against it, but due to our use case, this really is ...
12
votes
2answers
1k views

Install Windows Service with Recovery action to Restart

I'm installing a Windows Service using the ServiceProcessInstaller and ServiceInstaller classes. I've used the ServiceProcessInstaller to set the start type, name, etc. But how do I set the recovery ...
12
votes
7answers
8k views

Using Process.Start() to start a process as a different user from within a Windows Service

I'd like to periodically run an arbitrary .NET exe under a specified user account from a Windows Service. So far I've got my windows service running with logic to decide what the target process is, ...
8
votes
3answers
2k views

Injecting data to a WCF service

I have WCF services structured like suggested by Miguel Castro. This means that I have set everything up manually, and have a console application hosting my services using ServiceHost objects. I ...
8
votes
7answers
20k views

C# Service cannot execute batch file?

I have a service that call a batch file sometime. The batch file take 5-10 seconds to be executed. The code to launch the batch file is : System.Diagnostics.Process proc = new ...
7
votes
3answers
2k views

.NET Windows Service - multiple services in one project

Currently, I have a project with a Windows Service. I also created another "Setup Project" which installs the Windows Service. My question is this: Can I add another Windows Service to the same ...
6
votes
1answer
902 views

Multiple SessionFactories in Windows Service with NHibernate

I have a Webapp which connects to 2 DBs (one core, the other is a logging DB). I must now create a Windows service which will use the same business logic/Data access DLLs. However when I try to ...
6
votes
1answer
2k views

ServiceRoute + WebServiceHostFactory kills WSDL generation? How to create extensionless WCF service with ?wsdl

I'm trying to use extenionless / .svc-less WCF services. Can anyone else confirm or deny the issue I'm experiencing? I use routing in code, and do this in Application_Start of global.asax.cs: ...
6
votes
6answers
6k views

Set 'Start Parameters' on Service Installation with .Net ServiceInstaller?

I am currently writing a little windows service application and I can successfully in/uninstall it etc via something like this: serviceProcessInstaller = new ServiceProcessInstaller(); ...
6
votes
2answers
641 views

Fastest method of communication with a Windows service

We are running a service that requires fast communication with another process. Currently we are using WCF NetNamedPipeBinding in buffered mode to invoke methods in the service, which seems to offer ...
6
votes
7answers
6k views

How to communicate with a windows service from an application that interacts with the desktop?

With .Net what is the best way to interact with a service (i.e. how do most tray-apps communicate with their servers). It would be preferred if this method would be cross-platform as well (working in ...
5
votes
3answers
237 views

Exposing a .NET class library (which primarily defines CRUD operations) as a service

What is the best, efficient and fastest way to expose an existing (class) library (which primarily defines CRUD operations ) as a service (WCF Service or WCF Data Service), so that it can be used with ...
5
votes
2answers
234 views

Exposing a .Net Service

I have written a Windows Service in .Net and I want to expose the classes to be called by other .Net code. Specifically, I have an API that I want to expose via a DLL that will be placed in the GAC, ...
5
votes
3answers
4k views

Message pump in .NET Windows service

I have a Windows Service written in C# that handles all of our external hardware I/O for a kiosk application. One of our new devices is a USB device that comes with an API in a native DLL. I have a ...
5
votes
2answers
67 views

Hosting .NET service in IIS (No Interface)

I've written a small application that simply has a timer that polls a database on a tick. When specific entries are found, it does a bit of processing. Currently this is written in C# and hosted in ...
5
votes
5answers
273 views

How do you secure and meter the web services you share with your business partners?

I'm looking for ideas on how to restrict access to and log calls for an API we're delivering for business partners to interface with our Customer Care application. Should we create usernames and ...
5
votes
5answers
4k views

C#/.NET: Detect whether program is being run as a service or a console application

I have a C#/.NET program that can run both as a console application and as a service. Currently I give it a command-line option to start as a console application, but I would like to avoid that. Is ...
4
votes
3answers
188 views

Sharing memory between Windows Service and Application, what is easiest?

I need my Service to update fields in shared memory for a client application to read and display. I've found my current solution to be ineffective because of Session 0 Isolation. I've renamed the ...
4
votes
4answers
589 views

Use of Timer in Windows Service

I have a windows service where in I want to create a file every 10 seconds. I got many reviews that Timer in Windows service would be the best option. How can I do that?
4
votes
2answers
581 views

Modify Installation Path for .NET Service Installer

I have two projects: a Service project and a Service Installer project. The Service project has assembly info that is appropriate for my product. It includes the company information and the proper ...
4
votes
1answer
624 views

problems with Reporting Services 2005 to .NET 4 framework on web server

We have had custom ASP.NET 3.5 website running for a long time along with a Reporting Services 2005 implementation. So, that is, on our IIS box (Win 2003 Server, IIS 6), we have our custom .net ...
4
votes
3answers
693 views

Windows Service needs to wait, Thread.Sleep?

I have a c# windows service that needs to execute a database query every 60 seconds (or whatever interval is set in the config file). I'm using Thread.sleep(60) in a while loop to accomplish this. Is ...
4
votes
2answers
2k views

Why does System.Threading.Timer stop on its own?

I'm doing a small test project before I use System.Threading.Timer in a Windows Service project. It's working wonderfully, however the timer stops on its own after a minute or two. The full source ...
4
votes
3answers
389 views

Permissions problem when starting .NET app from .NET service as a different user?

I'm trying to start a .NET application under a different user from a .NET service. The idea is to create a sandboxed hosting application in windows. In the service, I programatically created the user ...
4
votes
3answers
79 views

dynamically configuring .NET client via socket

Anyone have a pointer to a C# configuration class that a .NET service can use to do configurations via an admin socket or other control port? I'd rather do this than a filewatcher on the app.config ...
4
votes
8answers
17k views

Batch Script to Install or Uninstall a .NET Windows Service

I have no experience writing batch scripts, but I was wondering if there was a way to install a .NET Windows service using installutil.exe using such a script, or uninstall the service if it is ...
4
votes
3answers
3k views

Why won't .NET deserialize my primitive array from a web service?

Help! I have an Axis web service that is being consumed by a C# application. Everything works great, except that arrays of long values always come across as [0,0,0,0] - the right length, but the ...
3
votes
3answers
64 views

How to Create a WCF Service with 100% Availability Even Upon Update?

I need to create a service that will expose data and contain business logic that different clients will use. The problem is that if I develop it as a single WCF service I will need to shutdown it ...
3
votes
13answers
144 views

What's the easiest way to schedule a function to run at a specific time using C#

If I had a lot of messages in a database that I wanted to send, and each row specified a date and time to send the message, and a flag for if it has been sent. These won't always be at fixed ...
3
votes
2answers
93 views

Communicating between SERVICE and web/desktop application

Whats the recommended way to communicate between a service and a desktop app or webpage ? I want the service to do all the work, but admin/management/reporting to be possible via web or desktop. (It ...
3
votes
2answers
286 views

How can Teamviewer share images by using direct port behind a firewall

I found this: How does teamviewer find my computer but I could not understand and the answers are not what I am looking for. I'm looking for a solution in .net. If I have an image-Sender-app and how ...
3
votes
4answers
1k views

How to get the command-line arguments of a windows service?

I'm looking for a way to figure out the command-line arguments of any windows service. For a non-service process, the command-line arguments can be found in the Windows Task Manager, or ...
3
votes
1answer
122 views

WCF as Service: Modifying app.config file

I have a WCF running as a Windows service. I deployed it to a server (after quite a bit of banging my head against the keyboard). Last issue: When making changes to the app.config ...
3
votes
3answers
284 views

C# service - OnStart() v Constructor

I'm trying to understand the difference between OnStart() and the constructor in a ServiceBase derived class. From reading around it seems that the first time you start a service (after turning on ...
3
votes
1answer
58 views

How to send attribute information back to client proxy?

I need information on how to send attribute information to a client proxy. For example, I have a public class customer object which contains an ID and a Name. I add attributes to the ID and Name ...
3
votes
1answer
117 views

DLL loading sequence on Service startup

How can we trace the assembly loading sequence on windows service startup? For example. When we start a service it loads all the reference assemblies and their dependencies; what i want to do is that ...
3
votes
2answers
411 views

Service reference not generating client types

I am trying to consume a WCF service in a class library by adding a service reference to it. In one of the class libraries it gets consumed properly and I can access the client types in order to ...
3
votes
2answers
357 views

starting a process from a .NET windows service

I am trying to start a console application from a .NET Windows Service. The service is running on a Windows 2008 server. I use Process.Start to run the console application and it runs( I can see it ...
3
votes
2answers
459 views

WCF Best Practice for “Overloaded” methods

What is the best practice for emulating overloaded methods over WCF? Typically I might write an interface like this interface IInterface { MyType ReadMyType(int id); ...
3
votes
1answer
571 views

servicecontroller permissions

I have written a service which a website can execute a command on remotely using the ExecuteCommand method. I have noticed that if the website is not running under a user that is an admin on the ...
3
votes
2answers
387 views

Building an installer that can install the same package multiple times (to different folders) with multiple configurations

We have a bit of an odd setup, which comes from the fact we provide hosted installations of our software to our clients, and each client may be on a different version of our software and be running ...
3
votes
3answers
2k views

How to stop a service within the OnStart method?

I'm writing a windows service in .net 2.0. What should I do within the OnStart method if for some reason I don't want it to start? Can I simply call the Stop() method of the base class (ServiceBase)? ...
3
votes
3answers
1k views

Signalling Initialization Failure from Service.OnStart

We have a case where during Service startup (OnStart), a worker thread is started. The worker thread connects to a SQL database. If the database is unavailable, the worker thread can signal the main ...
3
votes
5answers
2k views

Print a tiff file from a .Net Windows Service

We have built an application that receives several files in different formats, pdf, tiff, jpeg, doc, etc. After received, they are converted to tiff files using a third party printing driver which is ...
2
votes
3answers
88 views

Starting application from service running as SYSTEM that can interact with the user

I currently have a single application that needs to be started from a windows service that i am coding in .net 3.5. This application is currently running as the user who ran the service, in my case ...
2
votes
1answer
30 views

windows service - installing 2 copies

I have a windows service running on my server. Now I want to install a modified version of it for testing, but without uninstalling the original one. I've created a separate folder for the new ...
2
votes
2answers
58 views

How to identify if code runs inside the webservice?

I have a WCF service contract implementation which can be either used as a plain dll or as a web service. Is there any way to identify (from within its code) how is it used. More specifically, I need ...
2
votes
2answers
52 views

Interactive “screen” for WCF hosted in service

I have a WCF Service that I already mention in another question here. As I have read here host WCF in Windows service is the best solution for all reasons. So that's why I select this option. But ...
2
votes
1answer
632 views

C# Windows Service - Started and then Stopped Automatically

I am creating this windows service by following the instructions at MSDN Walkthrough: Creating a Windows Service and after successful installation, I go to Services.msc to Start the Windows service ...

1 2 3 4 5 6