Tagged Questions
The windowservice tag has no wiki summary.
3
votes
2answers
169 views
Creating installer for a c++ windows service Dynamically
I have created a windows service which checks for the status of the printer.
The user can download this service from a website. I need to query for the status of printers used by this user. So when ...
3
votes
1answer
556 views
Parameterise Service start option in WiX installer
I have a ServiceInstall component in a WiX installer where I have a requirement to either start auto or demand depending on parameters passed into the MSI.
So the Xml element in question is
...
2
votes
3answers
116 views
stop / start service or close the sql server process / service on a remote computer
I am trying to shutdown and start the sql server on a remote computer (on the same network), i have used this code
ConnectionOptions options = new ConnectionOptions();
options.Username = ...
2
votes
3answers
60 views
Is there a difference between ASP.NET N-Layered / DDD architecture and a Window service software architecture? [closed]
I am reading a lot of architecture (N-Layered and DDD) yet most of the articles are about web site architecture and develop mostly windows services.
Can the architecture be used the same way?
1
vote
1answer
62 views
Add basic authentication to WCF Service hosted in a Windows service
How can I add basic authentication to a WCF service hosted in a Windows service?
I added a security tag to my binding, but I don't get an authentication window when I call the service url in the ...
1
vote
1answer
111 views
Data synchronization between two databases
I need to synchronize between two data sources:
I have a web service running on then net. It continuously gathers data from the net and stores it on the database. It also provides the data to the ...
1
vote
1answer
77 views
.NET - Child Processes and Configuration Files
I'm designing a windows service which is capable of starting up an arbitrary number of processes, each of which handle data processing on a different set of databases; sandboxes mirroring our live ...
1
vote
3answers
623 views
how to delay shutdown and run a process in window service
I have to run a process ie a application on windows shutdown, is there any method to delay the windows shutdown and run the application in windows service...
protected override void OnShutdown()
{
...
1
vote
2answers
347 views
Threading: Calling back to main thread in a .NET Windows Service using C#
I've inherited a multi-threaded Windows Service (C#, .NET) with no support for unhandled exceptions. The service is using mulitple threads to collect data from telemetry devices for analysis. A thread ...
1
vote
2answers
296 views
C++ Service Error While Starting : Could not Start the Service on Local Compueter
I have created a Win32 Service using C++ and installed to the Services Successfully.
Now While I try Starting the service from Services.msc , I am getting the Error:
Could not start the Service on ...
1
vote
3answers
45 views
Windowservice error
Hi i made some changes in windowservice coding side(some class files related to that),,means i did coding to fetch version value from registry,,After stopping the service i copied the exe from
the ...
0
votes
1answer
15 views
Changing hosting mechanism for scheduler
I have one scheduler which is running on Windows Service. For each new event it creates new thread. Each thread then load DLL using AddIn Framework and execute the task.
It is working fine but now ...
0
votes
1answer
53 views
Object reference not set to an instance of an object exception when Kinect device is attached or removed
I am developing a window service application which detectes the kinect devices attached with system and renders the data. I am using Microsfot's SDK for kinect. As far as device is already attached ...
0
votes
1answer
51 views
WCF service in Windows service on Amazon EC2
I'm fairly new to EC2, hopefully someone can point me into the correct direction. I have a WCF Service hosted in Windows Service and would like to run this on EC2. I set up an EC2 account with ...
0
votes
1answer
19 views
i have multiple Content Servers and i want to check the Size of Drives Regularly using c#
i have Multiple Content Servers on different machines
i need to check the status of every server like disk size,priority etc
one solution i have till now is Install a Window Service on each ...
0
votes
1answer
64 views
Windows service not starting
I created a windows service using Windows SC.exe and following this , I am facing following issues:
I am unable to start the service it gives error (Error 1053: The service did not respond to the ...
0
votes
2answers
45 views
Building a Windows Service in VS.NET 2008
I am new Windows Service in VS.Net 2008.
I need to Build a Windows Service Application.When I right click the Solution in Solution Explorer,an UI opens named Solution 'MySyncService'.Here I can see ...
0
votes
2answers
54 views
Can I manage downloaded files with a windows service? Is WMI what I need?
I am trying to create a Windows Service which I can use to manage downloads from the internet. Is this possible or not? If this is possible,
should I use WMI for this purpose?
Are there better ...
0
votes
1answer
1k views
System.Security.SecurityException: The source was not found, but some or all event logs could not be searched. Inaccessible logs: Security
I am trying to create a Windows Service, but when I try and install it, it rolls back giving me this error:
System.Security.SecurityException: The
source was not found, but some or all
event ...
0
votes
0answers
34 views
service is not running while it is start mode
I have created the windows service,which it has to run continuously but some time it is not working properly, as it in start mode only, to start the service we have restart the service again.we don't ...
0
votes
1answer
217 views
Python Script works when run from command line but not when run from windows service
I have created a windwos service utilising the following code:
import win32service
import win32serviceutil
import win32api
import win32con
import win32event
import win32evtlogutil
import os, sys, ...
0
votes
1answer
91 views
converting html to image under window service
we are trying to convert html to image using this link
http://www.codeproject.com/KB/graphics/html2image.aspx
codeproject
under window service, and it needs to be statThread.
I have created a stat ...
0
votes
2answers
122 views
using netNamedPipe on a network?
we are building a windowService that start/ stop other process.
and the communication between the UI and the service is with NetNamedPipe.
every process have a host that can get shutdown call (still ...
0
votes
2answers
285 views
How Can I install the service using installutil.exe
Please help me how can I install the web service using installutil.exe..?
I get a windows service start failure error everytime I start.
Thanks
0
votes
1answer
84 views
Hosting Workflow-Foundation in Windows Services
I am in the process to implement a Windows Service which is hosting a "Sequential Workflow" (Windows Workflow-Foundation).
The sequential workflow is quite simple and, basically, is nested in a while ...
0
votes
1answer
524 views
RabbitMQ consumer question
I have a Windows Service that retrieves messages from a RabbitMQ queue. The service works locally on a Windows 7 machine. When I install the service on a Windows 2008 server it does not work (and ...
0
votes
0answers
434 views
Restarting windows service (hosting WCF service) after it reaches particular memory limit
I would like to restart Windows Service after memory consumption of it reaches certain limit.
Scenario:
I have WCF Service hosted on Windows Service. WCF service keeps on increasing in memory ...
0
votes
3answers
207 views
SQL Server named instance
Is it possible to mimic the way SQL Server installation works? With SQL Server you could have multiple "named instances" installed on the same machine. I believe it is one single executable but they ...
0
votes
1answer
651 views
Capturing KeyPress Event in WIndow Service
I am trying to create a window service to create a small keylogger application. I am new to window service and sole purpose is to learn.
How all the events that are available in winforms can be ...
0
votes
2answers
199 views
Accessing a windows application form from an ASPX page
I have an aspx page and I want to access an application on the client after seeking user permission. Both the windows application and the website are to be made in VB.NET. Does any one have any idea ...
0
votes
1answer
54 views
Resilience for WCF service hosted as windows service
We have got WCF services one hosted as windows service (it uses MSMQ binding) and other hosted in IIS.
To have resilience we have got 7 servers where WCF is hosted on IIS, and the 3rd party tool ...
0
votes
3answers
58 views
restarting windowservice problem
Hi i made some changes in windowservice coding side(some class files related to that),,means i did coding to fetch version value from registry in that class files,,,,After
0
votes
1answer
19 views
0
votes
1answer
102 views
WCF service running as WindowsService and somehow goes into FaultedState
WCF Service hosted as windows service
Using netmsmq binding
MSMQ is transactional
Windows 2003 server to host
MSMQ 3.0
Due to some reason exceptions are raised and so it puts the message back in ...
-1
votes
1answer
323 views
How to disable task-manager while running exe from a window service [closed]
I have a window application in C, in the application I have edited the registry to disable/enable task manager, change password, etc. which works well in running the project and I have made an exe of ...
-1
votes
1answer
77 views
project requirement
in my project i have a requirement like "**Set the version to something like 0.0.0.0 if the method cannot get the version from the environment variable**"
and the coding where i need to look is like ...
-4
votes
1answer
77 views
how to modify this single thread into multithreading in c# .net
hi here am using single threading in c#.net, let me explain you how it is working now if suppose job A is running in a long process until unless it job A was completed it will not go for job B, but ...