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
2 answers

Sharepoint 2010 timer job is not executed

Lately, when I run a command of upgrading or uninstalling a .wsp, a job is created and scheduled to run in the same minute instead of executing the actual command. If I try to start the job manually it does not start, simply reschedules itself for…
Diana
  • 287
  • 2
  • 6
  • 18
0
votes
2 answers

Looking for a simpler JavaScript timer

Right now i have a text-based game that deals with turns, but i want to upgrade it to a timer system so that when the timer hits 0 then you gain 1 or 2 of whatever action you were doing. Also if you know how to make it randomly pick whether u get 1…
Mason
  • 81
  • 2
  • 8
0
votes
4 answers

Repeat action with Cron

I'm using my cpanel to lunch a cron action thats open a file a write Hello every minute. But that task is not working. This is my code :
VisaMasterCard
  • 1,666
  • 4
  • 18
  • 22
0
votes
0 answers

Sending push notification every 20 seconds with PHP and check for response

When I get sendRequestToMembers request from the App, in server side, I've to send push notification to group of members in queue. For example for a group of 15, I've to send notifications to the first five, wait for 20 seconds, and if no member…
Hadi Sharghi
  • 903
  • 16
  • 33
0
votes
0 answers

How to set the path for reference DLLs in console application (Visual Studio)?

I have created a solution which has multiple project (i.e. Business Layer, Database Layer etc..). This solution also has one console application and I've added the reference of another projects dll (business layer and database layer). Now, I am…
Hemant Kabra
  • 870
  • 9
  • 29
0
votes
0 answers

Timer/thread colaescing

I have a small project which needs to track stock price % movement for specified time intervals. E.g. It should be able to track AAPL price % move for the last 30sec, 1min, 3min, 5min, 10min. All stocks share the same time intervals. Program will be…
Nemo
  • 3,285
  • 1
  • 28
  • 22
0
votes
0 answers

Schedule the same task for different time interval

Is it possible to schedule one task for different time intervals? Here is the fixed interval example: Timer gTimer = new Timer(); Calendar startDate = Calendar.getInstance(); startDate.set(Calendar.HOUR_OF_DAY,…
Ben Ao
  • 1
  • 2
0
votes
1 answer

TimerJob sharepoint server 2013

In sharepoint all list having Status column(Datatype is Dropdown) & Duedate Column. Duedate column exceed the todays date Status Column should be changed Closed automatically using Timerjob.I used this code but is not working please someone modify…
kavitha
  • 101
  • 3
0
votes
0 answers

Invoking a Powershell script in c#

I am new to scripting. I created a ps1 file that I want to deploy to Sharepoint Central Admin to create a Timer Job. I created a Timer Job script using C#, how can I go about calling the ps1 file within my C# program? How would I execute my script…
Shark Tank
  • 25
  • 5
0
votes
3 answers

Run function at set interval only at certain time of the day

I am currently running a function at regular interval round the clock. setInterval( function(){ do_this(); } , 1000*60); Unfortunately, this is not exactly what I want. I would like this function to be run at set regular interval from morning…
guagay_wk
  • 26,337
  • 54
  • 186
  • 295
0
votes
1 answer

Is it possible to make a Yearly SharePoint timer job programmatically?

Even though I created a SharePoint timer job to run yearly. Once the timer job is executed manually through the central admin(After deploying it), the Schedule type changes to "Hourly". Then it gets executed hourly thereafter. Is it a bug in…
yala_cat
  • 309
  • 4
  • 21
0
votes
0 answers

How to monitor SharePoint list?

I have a SharePoint list with the following fields. 1.Event Name 2. Hit Count I want to monitor this list by the hit count for events on a yearly basis. What is the best approach I could take? Options: Create views for each year. EDIT: Adding a…
yala_cat
  • 309
  • 4
  • 21
0
votes
0 answers

After creating a timer job i can't see it in the SharePoint administration panel

I've developed a timer job for one of my SharePoint web applications. I have written my job from SPJobdefinition class: public class EraseUsersJob : SPJobDefinition { #region constants public struct Constantes { …
ERed
  • 628
  • 4
  • 18
0
votes
1 answer

sql server saves only null values for some columns

I have a table with some nvarchar(max), varchar(100) and bit type columns. I am inserting values to it programmatically using SQLCommand.ExecuteNonQuery(). I am providing string values to all the nvarchar and varchar columns and 0 or 1 to bit column…
Mac
  • 6,991
  • 8
  • 35
  • 67
0
votes
0 answers

Using EJB 3 TimerService with JBoss AS 7.1.1.Final?

I am writing an application to allow end-users to schedule various administrative tasks. The server platform I'm on is JBoss AS 7.1.1 Final and EJB 3 Timers would seem to be a nearly ideal solution, except that this question, while old, indicates…
user1944491
  • 559
  • 1
  • 8
  • 24