Questions tagged [timer-jobs]

Timer Jobs are recurring background processes that are managed by a Scheduler. A timer job would consist of three parts: Timer Job Definitions, Timer Job Instances, and Timer Job Schedules.

Timer Jobs are recurring background processes that are managed by a

A timer job would consist of three parts: Timer Job Definitions, Timer Job Instances, and Timer Job Schedules.

118 questions
0
votes
1 answer

What is the best way to refresh the simple Android Home Widget with data from Remote Service?

I am trying to create a LinearLayout based Widget which will refresh itself with stock ticker symbol and Price after every few minutes ( configurable by users in Configuration Activity ). Here are the steps I follow : 1) Create the Remote Service in…
Andy
  • 2,493
  • 6
  • 37
  • 63
0
votes
1 answer

WCF: The InnerException message was 'Maximum number of items that can be > serialized or deserialized in an object graph is '65536'

I know many have posted the solutions about this, I have tried all of solutions that were posted on the internet but those didn't work for me. In this scenario, I want to consume WCF service from a SharePoint timer job. I am constantly getting the…
Geek
  • 255
  • 1
  • 3
  • 9
0
votes
0 answers

java - TimerTask - why my code behaves like that?

I wrote the following code: private void Button_StartMouseClicked(java.awt.event.MouseEvent evt) { java.util.Timer().schedule( new java.util.TimerTask() { …
Frank
  • 2,083
  • 8
  • 34
  • 52
0
votes
2 answers

SPJobDefinition.Execute running but not showing it ran in Central Admin

I'm using SPJobDefinition.Execute to explicitly force a timer job to run for a bit of testing. The job runs but the time it last ran hasn't changed in either 'Timer job status' or 'Timer job definitions'. As this hasn't run before, forcing it…
Daniel Revell
  • 8,338
  • 14
  • 57
  • 95
0
votes
3 answers

What are the best technology to replace EJB and EJB Timerservice?

we have a application developed using EJB 2.0. we used stateless session beans with ejb timer service. we planned to remove completely ejb but we need the timer service. i come to know JMS provide the timer service, but looking for robust…
Bhadra
  • 21
  • 6
0
votes
1 answer

Is it possible to create multiple timers in node.js for multiple independent tasks?

I have a node.js server accepting requests from a web page. Upon receiving a "START" request, I want to be able to spawn a timer that executes a task in the background every n seconds endlessly. Is this doable? and what would be a good example? A…
Ram Iyer
  • 1,404
  • 2
  • 20
  • 27
0
votes
1 answer

Application is halting when using MethodInvoker in custom timer

Background: I need a high resolution timer for an embedded system solution, so I decide to use MicroTimer from The Code Project... BTW, I've developed a Windows Forms application to test its efficiency in such applications and for avoiding…
0
votes
2 answers

Timer Synchronization issue in CPP?

I have a timer class..This timer will be started from various portions of my code blocks..I have another class to manage this timer namely CTimerManager...This is a static class ..So the issue i face here is when i de-initialize my application all…
Techy
  • 315
  • 1
  • 5
  • 14
0
votes
2 answers

Sharepoint Timer Job debuggging unable to set the Breakpoint

I have a little problem. I'm trying to add a timer job following this tutorial : http://dotnetfinder.wordpress.com/2010/07/24/creatingcustomsharepointtimerjob2010/ I came to the point where my timer job is enabled and is launching every five…
Thoma Biguères
  • 1,136
  • 4
  • 18
  • 42
0
votes
1 answer

Random Quotes Script on a timer?

Hi I have this basic random quote script, but I would like it to output pages in an array, i.e. instead of "echo $quote", do some sort of array with "include('text.php, text2.php, text3.php');" etc. not quite sure how to do it. Any ideas? I would…
GibsonFX
  • 1,000
  • 2
  • 10
  • 33
-2
votes
1 answer

How to insert or delete query with jobs in SQL Server?

I want to insert or update or delete in database automatically after cross a time e.g 8 hours. Is it with jobs in SQL Server? Thanks.
-2
votes
3 answers

Access to the database every 1 hour C#

I have a problem, I'm trying to create a service to connect to an API that I have created. This service has to connect to a database in Mysql every hour, and see if there is a certain value. For example every time I'll see if the field x has the…
-4
votes
1 answer

Running background services in iOS 8

i need methods or solutions that allow my iOS app to meet my Android app to do this list of services 1- Background service that run every 30 sec to fetch new content from API and never to die ( on android i use Activity service that run on boot…
1 2 3 4 5 6 7
8