1
vote
2answers
60 views

Windows Service: The calling thread cannot access this object because a different thread owns it

Trying to convert XML files using XSL and printing the output. However, receiving the following message: The calling thread cannot access this object because a different thread owns it. To set an ...
1
vote
1answer
87 views

Android Java Service and Timer/Thread Sleep

Basically, what I need to code is simple, but as I'm a beginner, I am still confused about Service, IntentService, creating a new Thread separate from the main Activity/UI thread, etc. I'll explain ...
1
vote
1answer
31 views

Using android alarms vs timer tasks? [closed]

I have a requirement where I need to read only 100 entries per day from an excel file. The file can have thousands of records. I wish to create the system in android where a scheduled service will ...
0
votes
0answers
15 views

programm is not running in the background

I want that my program work with service.But at second entry my program display errors My program is timer which every second substract 1 second package com.example.timerproject; import ...
0
votes
1answer
102 views

Timer function in Service (kind of chronometer)

My intention is to create an timer which starts from 00:00:00 and hangs together with a recording function. This recording is done in a service so, the timer is also in the same service. If the app ...
0
votes
3answers
90 views

Call a method when timer counts down to 0

I'm writing a C# service and its main function is to pull photos from a database and save them to a directory twice a day. This operation takes about 15 minutes typically (there are a lot of photos). ...
0
votes
1answer
152 views

windows service timer set to weekly

I have a windows service running with several timed functions: _timer = new Timer(1 * 60 * 1000); // every 1 minute _timer.Elapsed += new System.Timers.ElapsedEventHandler(timer_Elapsed); ...
0
votes
0answers
44 views

How to detect that ViewPager's current item displaying how much?

How to detect that ViewPager's current item displaying how much? I can't do that thing: i have a viewpager and start service which play corresponding sound to currently selected item.It works well,but ...
3
votes
1answer
356 views

Restarting a windows service after a fixed time interval

I am developing a windows service that sends automated e-mail in every 15 minutes. I am using a timer to use the service again after a fixed time interval (15 minutes) but its not working. namespace ...
0
votes
2answers
49 views

timer application on android, threading

I have to write a simple stopper aplication on android. The problem is that it should keep working even when application is in background (closed activity). Where should I keep timer's thread ? I ...
0
votes
4answers
95 views

How to execute two task in timers separately?

Last time my problem is :"java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare()". After that, I modify and used HandlerThread to call the location update ...
0
votes
0answers
45 views

i created beep service in visual studio window service template .it is istalled and started successfully but not produce beep sound.

the code is Imports System.Timers Imports System.Threading Imports System.ServiceProcess Imports System.Diagnostics Imports Microsoft.VisualBasic.Interaction Public Class Service1 Inherits ...
0
votes
1answer
225 views

Android TimerTask only runs once, but sometimes a bit more often

my TimerTask in Android runs most of the time just once, sometimes it starts a bit more often and stops then. Basically I want an App to track the sensor-data of the device. I have a MainActivity ...
1
vote
4answers
683 views

Timer Task stops running after indefinite time in android

I am a newbie in android. I am developing an app in which a particular piece of code executes after every 5 seconds in background.To achieve this I am using a service with timer with a timer task in ...
0
votes
1answer
57 views

Service Stops at an unknown time in android?

I am a newbie in android. I am making an app in which some task has to be repeated after every specified time say 15 seconds. I am using a service for this. It works fine for sometime but my problem ...
1
vote
2answers
1k views

How to use System.Threading.Timer with asp.net web service

Background: I have a .NET 4.0 web service running on Windows Server 2008 written in C#. I would like to run a timer inside the asp.net web service that runs code once a day. I have heard of some ...
0
votes
3answers
775 views

How to use thread / timer in android service and update UI?

I am developing an android application which will start a service.The service will execute some code after every fixed interval of time and end the result to the activity.The activity should display ...
1
vote
2answers
361 views

Exception in Timer - java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare() - Android

I'm using a Service for update a db4o file each 3 hours: @Override public IBinder onBind(Intent intent) { // TODO Auto-generated method stub return null; } @Override public void ...
0
votes
2answers
144 views

How to set a Timer to a Service?

In my app I have a Service that runs when i open my app (through onCreate method) and it just displays a simple notification, so I want the Service to close and re-open ( stopService > startService ...
0
votes
1answer
70 views

C# Service Timed to Fetch Data

I need to create a service to install on a local PC that is going to look to a file path on my server periodically and copy and paste it's contents to a destination on a local PC. I want to set it to ...
0
votes
1answer
78 views

Robot legs- timer is service or model?

in robotlegs can a Timer be inside a model or should it be encpsulated in a service. Example: lets say i'm implementing a digital clock in robot legs. Should the Timer that updates the clock be a ...
0
votes
2answers
698 views

delphi service application stop after 15 second, timer not executing

I want to make service application in Delphi that run and copy some files everyday at 02:00 PM. So i have used timer. but control not going to timer event and Service terminate within 15 second. I ...
-1
votes
1answer
161 views

Run Android services Untill App Destroyed

Actually i have to perform some technique in which some particular method will be called after specified time until app destroyed.I Google it and have found services.Using services this work can be ...
1
vote
3answers
98 views

Console Application to Service - do I have to note something?

I'm coding a console application that is reading and writing some stuff at different intervals during the day. I want this later (if its "final") as a service. For now a simple console application is ...
0
votes
2answers
3k views

Using a timer in a Windows service - elapsed event handler keeps firing even when the timer is disabled

I've read a lot of the posts related to Windows services and the use of timers, but I haven't found any reason why my event handler is still being triggered. Could anyone point me in the right ...
1
vote
1answer
66 views

Change ImageView Resource when alarmManager wakes up

I have an ImageView in my activity that shows an "active" symbol when a service is activated. After the Service has been executed the ImageView should go back to the "inactive" Symbol. AlarManager ...
1
vote
1answer
100 views

InvalidOperationException with service_timer

I'm developing a windows service in C# and it accesses the database several times when files are dropped into a specific directory. Furthermore, I have a service_timer that runs every 5 minutes that ...
1
vote
1answer
311 views

Android: Update / Refresh a running service

I want to update my running service so I can for example, when the current day of the week is "Monday", it do a notification in a certain time that it's "Monday", and when it's "Tuesday" it do a ...
1
vote
0answers
152 views

Using Programmatic Timer Service (@Timeout) throws “Internal Exception: java.sql.SQLException”

I'm using Programmatic Timer Service (@Timeout) and using Glassfish, and I keep getting the following error: Internal Exception: java.sql.SQLException: An SQL data change is not permitted for a ...
0
votes
3answers
1k views

How to Stop Timer Android

following is my code. In MainActivity.class private OnCheckedChangeListener alert_on_off_listener = new OnCheckedChangeListener(){ public void onCheckedChanged(RadioGroup groupname, int ...
0
votes
1answer
146 views

Android boolean timer schedule

I need help / advice for a problem..I created a service and in this I need to run an action when two integers or two strings are equals..what is the best way? I tried with a timer: ...
0
votes
1answer
321 views

Android: Which is the best way to repeat an action through a service without repeating alarm manager?

I'd like to know Which is the best way to repeat an action through a service without a repeating alarm manager. I start a service with alarm manager ("not repeating" alarm manager) because I need ...
0
votes
1answer
130 views

Start a timer in a service

How can I start a chronometer in a service? I ask this because you can't associate an XML file to a service Chronometer mChronometer = (Chronometer) findViewById(R.id.chronometer); My goal is to ...
1
vote
1answer
1k views

Unable to start the timer in a service in android

I dont know whats wrong going on... I am not able to start a timer in my service. Following the code public class BkgService extends Service{ private Timer ServUpdTimer = new Timer(); private ...
1
vote
1answer
233 views

Which one to choose for background task - a timer with repeated task or service with loop?

I have a repeated task(Task A) to do when I receive a broadcast in my application. I need to know which one is better between these options to do the repeated task? A Timer in a standalone class and ...
2
votes
1answer
191 views

Android - Service, setup time

How to setup service to something (api request) everyday at particular time. I dont know. Right now I thing about two options: 1. Setup timer and every hour check the time and if it right, do a ...
3
votes
3answers
423 views

Service should load data every hour

Question I'm creating a service for my app, but there's probably pritty simple thing I can't realize. Better I say I don't know how to do this probably. I'd like that my Service refreshs the data ...
0
votes
1answer
311 views

Stop a service after time

I want to stop my Service after a user defined time (choosen in a activity). Now I want to start the timer in the service, but I cant use static timer because I have to stop the service ...
0
votes
0answers
213 views

c# / windows service / array of system timers / is this safe

Please forgive this question if it is dumb. I have been doing things this way for awhile but it hasn't been under load so I just want a second opinion. I have a service that performs a task on 1-n ...
2
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 ...
0
votes
4answers
1k views

errors using timer in C#

I am using Microsoft Visual C# 2010 Express. I did not have access to a Windows Services template so I downloaded one online. I am trying to implement a timer into my project and I am getting the ...
4
votes
1answer
7k views

Background service need to send GPS location on server

I have problem with my Android application. I need an application that will send in background GPS location every 10 minutes to the server (here i have WCF service that work). Application need to send ...
1
vote
1answer
404 views

transmission of call logs in the background using a service

I am trying to implement a background service to transmit logs from a calllog database to a server and I have tried out a lot of things ... timer, a thread Looping infinitely... but it seems nothing ...
3
votes
3answers
265 views

Adjustable service timer in C#

I'm trying to write a Windows service that runs indefinitely. Windows forms and background programs for Linux don't seem too bad but maybe I'm just horribly inept at Windows Services. Unlike some ...
0
votes
1answer
402 views

Creating wifi scanning as a android service

Currently writing a wifi positioning program and i need to scan the surrounding for active APs so as to calculate the current position of the user. However, user can set the time (0-10 secs) at which ...
2
votes
2answers
456 views

How to modify a java timer interval after scheduling it for a fixed rate in android?

I have a service which has one Timer. I call timer.scheduleAtFixedRate() in the onStart() callback method. But I have to alter the timer interval depending on the value of a variable. I found no ...
-2
votes
1answer
425 views

Windows service with sql [closed]

partial class TestService : ServiceBase { FileStream fs; StreamWriter sw; public TestService() { InitializeComponent(); fs = new FileStream(@"C:\SampleLast.txt", ...
1
vote
2answers
1k views

Optimization of service running with a continuously executing TimerTask

I need a service that should always be running till its stopped explicitly by my activity and should start again even if it is stopped due to some issue (START_STICKY flag). This service should ...
1
vote
2answers
814 views

Timer inside a WCF Singleton hosted in a Windows Service (over webHttpBinding) dies unexpectedly

I have a WCF service hosted in a Windows Service (running under Local System). I am running a System.Timer inside it. The Operation o1, that initializes the Timer, is declared over a http endpoint ...
1
vote
1answer
599 views

Delayed actions and BroadcastReceiver

I have a case in which I have to start some non-UI action N seconds after power has been connected to the device. That action could be also started by user via UI. I have a BroadcastReceiver defined ...

1 2