Tagged Questions
0
votes
2answers
59 views
Using a timer in a long running windows service
I am trying to use a timer in a windows service. The service is able to start and stop and I write something to the event log when this happens, this works. My problem is that I also want to use a ...
-2
votes
4answers
105 views
Can my use of System.Threading.Timer be more efficient
I´m looking for some advice about making my code more efficient. What I would like to do is to have a System.Threading.Timer that runs some job every hour or so, the job is not going to be very heavy ...
1
vote
2answers
135 views
System.Threading.Timer callback not being hit
I have a windows service which, among other things, needs to do some database maintenance every 24 hours. (SQL express, so can't schedule it inside the database)
For this I have created a Timer with ...
0
votes
2answers
101 views
.net3.5 System.Timers.Timer.Elapsed Twice
I am coding for a windows service project, i use a System.Timers.Timer for some work.
I set the interval 2000 milliseconds.
But i found that the timer will raise the Elapsed event 1 time in the ...
0
votes
1answer
65 views
Using ManualResetEvent to check if service has finished processing
I have a web service which I need to ensure will finish processing then exit when onstop() is called. Currently when onstop() is called the service immediately stops. I've been told to look at ...
0
votes
1answer
196 views
Timer in windows service stops triggering after day or two, GC or faulty logic?
I have small windows service which should write some data to web service from time of day to time of day, in regular interval which user sets up.
For ex. from 8:00 till 22:00 every 20 minutes
But ...
0
votes
4answers
53 views
Timer is not processing
I create a windows service to run a piece of code and implemented timer in it to run it periodically.
My timer class is :
class TimerClass
{
private static System.Timers.Timer aTimer;
...
1
vote
1answer
456 views
System.Timers.Timer Elapsed event fired more than once time in Windows Service
I'm working on a Windows Service with a timer to schedule a job each interval of time.
It seems that the timer elapsed event is fired more than one time.
Here a code sample:
private static ...
-1
votes
1answer
632 views
C# Windows Service Timer app config change in runtime
I'm making some Windows Services in c# and i need to read some variables from a config file like files and paths. I also have a variable that controls (it should) the timer interval. The problem is, ...
0
votes
3answers
6k views
Windows service with timer
I have created a windows service with timer in c#.net. it works fine while i debug/build the project in visual studio but it does not perform its operation after installation.
What might be the ...
0
votes
4answers
477 views
Windows Service that executes special function at specific time
I have a Windows Service that Monitors a Network folder for a file and on Creation moves that File and does some transfiguration. This works great.
My question is, if a file has not been saved to ...
0
votes
4answers
459 views
C# - from time to time check if a file exists and read from it
I creating an windows service which will from time to time check if a certain exists and if it does, then reads from it, sends data to a server and move a file to another folder. A file's size is ...
0
votes
2answers
989 views
Multiple threads in windows service
I have windows project and one form which have timer for each 5 seconds.
It calls and processes methods from request named table time wise and condition wise.
But I have some methods types which ...
0
votes
1answer
118 views
Windows Service and timers
I am learning creating windows services and threading. I am using a library provided by fellow worker that aids in building threaded service but this is not giving me the knowledge at the basic level. ...
0
votes
2answers
128 views
Rename file extensions in a sequential order
Windows Service - C# - VS2010
I have multiple instances of a FileWatcher Service. Each one looks for a different extension in the directory. I have a separate Router service that monitors the ...
0
votes
1answer
861 views
windows service running at specfic time does run next day
i have a windows service set to run at certain times, it runs first time but i cant seem to work out how to tell it to run the next day when it gets to end of times..
this is what i am trying...
...
1
vote
3answers
75 views
Can I use Timer with no Timer Component?
I'm working with a windows service and they are so hard to test, so would like to leave it as a empty as possible only importing classes.
I need to use a Timer to trigger and event every 5 minutes, ...
2
votes
5answers
492 views
How do i know if my windows service is working?
I have built a windows service to populate a database with my email inbox every 5 minutes.
I used a class inside my windows service the class gets my emails and writes them to my database, the class ...
0
votes
1answer
455 views
Windows service not connecting to database
I have a windows service. It connects and checks my database every 18seconds before sending out a soap message to an external client.
I have successfully installed the service on my computer but it ...
1
vote
3answers
745 views
using timer within windows service
I would like to use a timer instead of sleep within a windows service that should perform an action at a constant interval.
Lets say that I have the following class.
class MailManagerClient
{
...
3
votes
1answer
832 views
Multiple Timers on Windows Service Not Firing Correctly
I have inherited a Windows service to enhance at my company. Currently, the service prints a report daily of specific records in a database at a designated start time. I am adding a condition to set ...
-1
votes
2answers
258 views
Is timer a thread? [closed]
can I consider the timer to be a special type of thread?, what's the difference if they are worker "sub-processes" runing asynchronously?
I'm working on a c# Windows Service, specifically c#'s ...
3
votes
2answers
875 views
Why doesn't Windows Service work properly with System.Timers.Timer or System.Windows.Forms.Timer
I have been recently challenged with writing a Windows Service. I needed to periodically request a URL and check its availability. For this I decided to initialize a timer in OnStart method of the ...
4
votes
4answers
560 views
Timer behavior when execution takes longer than span?
I'm writing windows service which will process "something" every couple minutes.
Here is some code:
public Service()
{
this.InitializeComponent();
this.ServiceName = ...
0
votes
0answers
163 views
Windows service not working on server?
I have created a windows service with timer set as:
timer.Elapsed += new ElapsedEventHandler(MigrateOrders);
timer.Interval = 10000;
//enabling the timer
...
3
votes
5answers
4k views
Windows Service System.Timers.Timer not firing
I have a Windows service written in C# which is meant to perform a task every few minutes. I'm using a System.Timers.Timer for this but it doesn't ever appear to fire. I've looked at many different ...
3
votes
4answers
841 views
Reentrant Timer in Windows Service
I want to build a windows Service, which should execute different methods at different times. Its not about accuracy at all.
Im using a system.timers.timer, and regulate the different methods to be ...
1
vote
4answers
558 views
Timer within Thread within Windows Service
I cant figure out how to proceed the best way with this problem.
Right now I have a windows service which only task is to gather data from a database with a specific DSN and then send out an email if ...
1
vote
2answers
252 views
How to fire System.Timers.Timer only once
I am creating a WindowsService which has a Timer bound to an EventHandler which has an infinite loop; I want to be able to fire this Timer once in the service's OnStart() method, then stop the Timer ...
2
votes
3answers
962 views
Windows Service with multiple timers
I have been given a windows service written by a previous intern at my current internship that monitors an archive and alerts specific people through emails and pop-ups should one of the recorded ...
0
votes
1answer
65 views
Reading messages from multiple mailboxes using windows service
I've a requirement to read mails from different POP mail servers using a windows service. Since I don't have much experience on windows services I'm looking for a good strategy to implement this. The ...
1
vote
1answer
2k views
Windows service with FileSystemWatcher and Timer - making sure everything gets disposed
I have created a C# Windows Service application that starts a FileSystemWatcher to monitor a directory for the creation of a file. When the file is found I instantiate a custom class that parses the ...
0
votes
3answers
169 views
Why does my counter variable not come back to 0 in a multithreaded scenario?
I'm building a Windows Service base class to manages the polling off a schedule's table of any pending task and the running them.
The Windows service is using the System.Timers.Timer to start the ...
2
votes
2answers
3k views
System.threading.timer not working in Windows Service
I am using System.threading.timer in Windows Service.
But the timer is not successfully executed.Below is the code.
protected override void OnStart(string[] args)
{
try
{
...
1
vote
1answer
362 views
Timers in Windows Service
I want to use timers in my service.
But I heard that timers cause deadlock issues.
Suppose If I set my timer to start every 10 mins.
My service takes 5 mins to finish its current execution.
But in ...
-2
votes
1answer
432 views
Windows service with sql [closed]
partial class TestService : ServiceBase
{
FileStream fs;
StreamWriter sw;
public TestService()
{
InitializeComponent();
fs = new FileStream(@"C:\SampleLast.txt", ...
0
votes
1answer
378 views
Timer in Windows service requires restart
I created a windows service with a timer in it, where I need to set set the interval after each Elapsed timer event. For example, I'd like it to fire on the hour every hour.
In Program.cs:
...
0
votes
1answer
96 views
Creating database driven System.Timers.Timer for Windows Service
I'm trying to create System.Timers.Timer dynamically based on paramters in the database. For example, if the table has 5 rows. I need to created 5 timers. There paramters like start time & ...
0
votes
1answer
348 views
How to read Windows Service Default Timer value from app.config
Please let me know how to read the TimerFrequency from the following app.config
<configSections>
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, ...
0
votes
1answer
912 views
Periodic operations in a Self-Hosted WCF Service using Timers
I know that it is not a good idea to have timers inside a WCF service class that is hosted inside IIS since these are meant to have short lifetimes. And from the advice here it also sounds like having ...
0
votes
1answer
381 views
windows service email with timer
I am creating a windows service project which sends bulk email in particular time interval(Just say in every 30 Mins). I am having the email data stored in the data base. I am having a function to ...
0
votes
0answers
193 views
Problem Firing Timer On Windows Service
I am having a problem get code to run through a system timer on a service , well actually no the timer IS firing , however the code below it will not run.
protected override void ...
1
vote
3answers
450 views
Checking the status of a thread that is controlling a timer
I'm running a thread in a Windows Service periodically using a Threading.Timer like so:
private Timer _timer;
public void Start()
{
_timer = new Timer(MainLoop, null, 0, Timeout.Infinite);
}
...
1
vote
2answers
5k views
Adding a System.Threading.Timer to a windows service in VS 2010
This is my first time working with windows service, and I am learning as I go.
I am using VS 2010, Windows 7 to create a windows service that will have a timer. I have googled and browsed this site as ...
2
votes
5answers
1k views
System.Threading.Timer call drifts a couple seconds every day
I have a service that is always running, it has a timer to perform a particular action every day at 2AM.
TimeSpan runTime = new TimeSpan(2, 0, 0); // 2 AM
TimeSpan timeToFirstRun = runTime - ...
0
votes
0answers
507 views
Timers under window service stop working after couple of days
Did anyone notice or is it happened to him that EDIT: a system.Timers.Timer under windows service stop invoking after couple of days when the service is running ?
is there some protocol that need to ...
3
votes
3answers
2k views
Fire timer_elapsed immediately from OnStart in windows service
I'm using a System.Timers.Timer and I've got code like the following in my OnStart method in a c# windows service.
timer = new Timer();
timer.Elapsed += timer_Elapsed;
timer.Enabled = true;
...
9
votes
5answers
6k 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 achieve this?
0
votes
3answers
308 views
How can I effectively set the system.timer to run my windows service quarterly (once in 12 weeks)?
How can I run my windows service once in 12 weeks? I implemented it using timers, and I am assigning the timer interval as (12*7*24*60*60*1000 milliseconds). Is there any issue if i use the timer for ...
0
votes
1answer
229 views
Task/Method scheduling from within a timer
From within a Windows service I would like to cast a method once an hour. A polling timer exists which I would like to use rather than adding a "Windows Task".
In the timer callback, I am checking ...

