Windows services are background service processes run by the Service Control Manager on Windows NT based operating systems, similar to daemons or UNIX services.
3
votes
0answers
204 views
C++ CreateProcessAsUser memory leak
I have a service that runs the following code.
Every time that CreateProcessAsUser is hit, the memory is increased in 4K (I can see it in the Task Manager). That's not happening when I use in ...
3
votes
0answers
146 views
Custom bootstrapper executed from windows-service, can't find endpoint
We have a solution consisting of an windows-service and a console application which acts as a bootstrapper calling a WCF service for work items.
All of this works fine except for when the solution is ...
3
votes
0answers
346 views
Localizing Windows Service
I have been searching for a long time but the topic seems to be quite special. I didn't come up with anything. Maybe the specialists arounf here can help me.
I run a Windows Service which accesses ...
3
votes
0answers
479 views
Windows Server 2008 and jstatd as a service
I have a JBoss server installed as a service on Windows Server 2008 with Local System as the Log On user.
I want to be able to run visualgc on the JBoss server, and prior to Server 2008 I was able to ...
3
votes
0answers
117 views
installutil bindingRedirect
I have a windows service that depends on a 3:rd party API
The API is already installed in the GAC on the client computer
There are several versions of the API (1.0.0.0, 1.1.0.0 etc)
My service ...
3
votes
0answers
3k views
How do I self-host a TCP-based WCF service inside a Windows Service?
I am trying to self-host a TCP-based WFC service inside a Windows Service. The Windows Service is a wrapper for performing 2 jobs:
hosting a TCP-based WCF service (note the Windows Service is a ...
2
votes
0answers
61 views
Is it a bad practice to do WebRequests from ASP.NET MVC app?
I'm doing a web application (ASP.NET MVC) running/deployed in Windows Azure.
Is it a bad practice if I do a lot of WebRequests from this application?, that is:
ActionResult SomeAction()
{
...
2
votes
0answers
40 views
Make windows service REALLY stop
A WCF service is hosted in a windows service. For smoother development, the service is stopped by net stop [Service] in a pre-build task and then unistalled, installed and started in a post-build ...
2
votes
0answers
51 views
Accessing shared memory from WCF app running under VS2010 and IIS7 Express
I'm developing a WCF app that needs to communicate with a custom Windows service through shared memory. My development environment is Windows 7 Professional with IIS7, IIS7 Express and Visual Studio ...
2
votes
0answers
25 views
Windows Service not Retrieving data due to Activator.CreateInstance()
I have an issue in my Windows Service Application, I have a scenario where I need to fetch a file path using a DLL(provided by the Client). For the purpose of faster debugging I have created a Console ...
2
votes
0answers
181 views
Windows Service hosting MSMQ WCF service via ServiceHost is unable to write to Event Log or write files to system, but can move files around
We have currently written a MSMQ WCF service hosted in a Windows Service that acts as an email queuing service. The idea is that all of our client applications, which can be accessed by multiple ...
2
votes
0answers
81 views
How to run multiple service instances in different AppDomains?
I have implemented a windows service.
How should I run multiple instances of the service, each in its own AppDomain ?
2
votes
0answers
218 views
Writing Windows C++ server as service or console application
This requires discussion for best practices related to server development using C++ on Windows 7 32-bit
The typical requirements:
A program that acts like a "server", running in Windows in the ...
2
votes
0answers
99 views
Error : “Impossible to find object or property”, when loading a private certificate in a Windows service running as LocalSystem
I am developing a Windows service middleware that uses security certificates to perform authentication when it wants to initialize a secure communication channel with remote applications.
The Windows ...
2
votes
0answers
62 views
Issue migrating WSE 2.0 to 3.0
I am trying to migrating WSE 2.0 to 3.0 (This is a windows service that will consume WSDL)
For that I created a Custom policy PolicyAssertion, but in 'ProcessMessage' envelope I am not getting any ...
2
votes
0answers
43 views
Deployment of Microsoft stack apps without reinventing the wheel
We have the following three things we need to deploy to a Windows Server 2008 farm:
ASP.NET MVC 4 web applications (x3)
.NET Windows services (x2)
I have inherited the deploy process and would ...
2
votes
0answers
103 views
DataSnap Server as Windows Service and Debug
Good Morning,
We are just about to start a Multi-Tier project using DataSnap as our Server Application and Delphi Prism.
I made a little research and accepted the recomendation of creating the ...
2
votes
0answers
279 views
Playing wav/mp3 from Windows 7 service
I need to play a sound file (wav or mp3 is fine) from a service in Windows 7/2008... the way we did it in WinXP doesn't work anymore. I've followed this question Play wave file from a Windows Service ...
2
votes
0answers
66 views
Service not starting with Debugger.Break c# windows service
With following code, by service does start but when I uncomment Debugger.Break() it doesn't. What's wrong.
protected override void OnStart(string[] args)
{
#if DEBUG
...
2
votes
0answers
134 views
Socket Communication - Website to Windows Service
I recently started working on an application that consists of three tiers. The front end is a website hosted on a godaddy server that my companies customers use to pay their bills. the second tier is ...
2
votes
0answers
363 views
LPR command to print pcl-file from windows service not working(Now a tray application)
I've been looking around for a while for a possible solution and explanation, but I can't find anything really.
The following command is being run from a windows service. The same command does ...
2
votes
0answers
117 views
Infinite loop in windows service
I have a strange problem that my microphone mutes itself every now and then. So I decided to write a windows service that will unmute if it is muted. Here is all the code:
import ...
2
votes
0answers
452 views
Windows Kernel Driver signing and service creation
Having a bit of trouble signing my kernel mode driver and creating a service for it.
So, I've created a self-signed certificate using makecert:
makecert -r -pe -n "CN=XXX" -ss "XXX" -sr ...
2
votes
0answers
279 views
CreateProcessAsUser fails in Windows 7 after 7 invocations
My service spawns a process for each core on the target machine using CreateProcessAsUser. The process is a MFC program which has been modified to run using commandline parameters rather than GUI ...
2
votes
0answers
58 views
Different runtime between Windows accounts
I have a problem on running a windows service on some computers, not all.
It's written by VS2008, and needs VC Runtime. I installed the VC Runtime first, then installed the service by Administrator.
...
2
votes
0answers
139 views
How do I check if current user has the right restart a windows service?
How do I check if the user has permission to start/stop a specific windows service, without actually stopping or starting it?
The question is not about granting the right to restart the service to ...
2
votes
0answers
1k views
Starting remote Windows services with ServiceController and impersonation
I have a .NET MVC3 application that needs to be able to turn a remote service on and off. In order to do this I am impersonating a specific user account via WindowsIdentity.Impersonate(). To test the ...
2
votes
0answers
182 views
Exposing a C# COM interface via a C# Windows Service
I'm looking to tie up a legacy app with a newer C# component which runs as a Windows service. The legacy app uses COM to call out to retrieve some diagnostics data from an interface we have in other ...
2
votes
0answers
130 views
Auto Start Windows Services through Installer in VS.Net 2008
I have installed Windows Services using Setup and Deployment Wizard. I have successfully installed Services with the help of link
http://msdn.microsoft.com/en-us/library/zt39148a%28v=VS.90%29.aspx
...
2
votes
0answers
626 views
System.AccessViolationException: Attempted to read or write protected memory
I have a windows service created with .net framework 3.5 in visual studio 2008.
When i run my service on the 32 bit windows XP machine, the service runs properly.
However, when i install the same ...
2
votes
0answers
971 views
Entity Framework in a Windows Service Connection String
I've been using a DAL Class Library for a ASP.NET MVC Site. The DAL Library has a repository for the queries.
It was all working fine until I tried to use the DAL library for a windows service, the ...
2
votes
0answers
858 views
Using Quartz.Net embedded into a Windows Service
I Am trying to use Quartz.Net so as to Schedule Jobs Within a Windows Service that I developped.
I included the following code on the Onstart Method, scheduler is a Class attribute
private readonly ...
2
votes
0answers
180 views
service load fails through createprocess?
I have a windows service.
I can install it through cmd with "c:\serviceName -install"
when I do createProcess and pass command line -install it does not appear in the Service Control manager. The ...
2
votes
0answers
199 views
WCF + SmtpClient: only works in a Windows 2008 environment
Continuing the discussion started in another post: I used windows service to host a WCF mail sender. The service itself is quite simple: it uses a DataContract to get the basic ...
2
votes
0answers
612 views
Amazon EC2 for WCF Windows Service
I have a Sync Services built using .Net WCF, .net 4.0,SQL Server 2008 and hosted in a windows service.
Following are some custom implementation we have done;
Custom DB Connection Pooling, filled ...
2
votes
0answers
324 views
C# Worker process garden framework
Here is the situation, I have a worker process that is automating Internet Explorer (via AxSHDocVw). This worker process is launched via a custom Windows service on the OS shell. I need to run ...
2
votes
0answers
553 views
How to get rid of appname.vshost.exe file?
I have created a windows service following basically these instructions: http://www.codeproject.com/KB/dotnet/simplewindowsservice.aspx
I install it with my installer and my problem is that when I ...
2
votes
0answers
1k views
Accessing WCF service with Integrated Windows Authentication from Windows Service using local SYSTEM account
We have WCF service using Integrated windows authentication deployed on a dedicated server.
There will be Windows Service on Client machines[windows service uses Local System Account].We get an error ...
1
vote
0answers
69 views
Window Service Getting Hanged on Starting
I have written a Windows service which is logging user activities of the Windows system and makes a REST API request to the server for preserving data..
But I am facing the issue that when the ...
1
vote
0answers
12 views
Running Redmon with a Service
I am trying to use Redmon 1.7 on my windows XP SP2 desktop machine. I process the data provided by Redmon to MyProgram.exe and then write it out to stdout which Redmon sends to printer port.
But ...
1
vote
0answers
87 views
Install Windows Service and Console Application using a single setup and deployment in c++
I have created a console application that works as background app in c++. Am trying to run this application through windows service to start automatically if the app crashed.
What i cant able to do ...
1
vote
0answers
98 views
Windows Service start then stops immediately
I've created a windows service that creates a Form in which a tool strip icon is created to manage a socket. I'm able to install through an installer created in Visual Studio, but when I go to ...
1
vote
0answers
50 views
Windows Installer (MSI 5.0) fails with ERROR 1939 during “MsiConfigureServices” action
When trying to install a setup package using the new MSI 5.0 features of Windows Service Configuration (using Tables: MsiServiceConfig / MsiServiceConfigFailureActions)
the service config fails and ...
1
vote
0answers
41 views
Why is system error 7030 logged when my Windows service is installed?
Each time my Windows service (developed in C#, Visual Studio 2010) is installed on a system running Windows 7 or Windows Server 2008 R2, the system error 7030 is logged. The service is not configured ...
1
vote
0answers
53 views
Issue with window service
I am currently working on hosting the wcf service in window service. The wcf service provides clients to access the database using entity framework. I got them all working. There are two conditions I ...
1
vote
0answers
37 views
Check session state OnStart
When developing a Windows Service in VB.NET you have the ability to track changes in the current session (like Logon, Logoff or ConsoleConnect). The code below gives you an example of this. This ...
1
vote
0answers
59 views
timeout for SCM to kill a service that won't stop
I'm trying to figure out what happens if the SCM sends a stop request to a service but the service does not stop within a specific interval. I've seen passing references in blogs and forums to a 30 ...
1
vote
0answers
50 views
Emebed my service installer into another app installer and install silently
I developed a windows service in C# and created MSI installer for it. Now what I want is to install my service silently when installing my another application written in c#. Is there any possibility ...
1
vote
0answers
154 views
System.Speech throws “No voice installed on the system or none available with the current security setting” exception in Windows Service
Long time reader, first time poster.
I'm developing a Windows Service in C# .Net 3.5 to perform Text to Speech operations.
I'm using System.Speech (Microsoft Speech API 3.x).
I deployed the service ...
1
vote
0answers
188 views
Exitcode 6 using PsExec in Windows Service
I am using PsExec to defrag machines remotely on my network. This works fine in my c# code, but because it also does a bunch of other tasks and I want it to run continuously I have converted it into ...

