0
votes
2answers
53 views

make sptimerjob run on correct list

I followed the code example at How to: Create a Web Application-Scoped Timer Job. It creates a timer job that runs on a list in the root of the web application. However, I need to make the timer job ...
1
vote
1answer
35 views

How do to update custom SPTimerjob?

I have created & deployed a custom Jobdefinition via feature activation. During feature deactivation I use... Foreach(SPJobDefinition job in WebApp.JobDefinitions){ ...
1
vote
2answers
55 views

Value retain when redeploy of SharePoint Timer Job

I have a very simple question on SharePoint 2010 Timer Job, I build by reference from here. Basically upon execute of the Timer Job, I add an entry to SharePoint Custom List as following: public ...
0
votes
0answers
24 views

Problem in Invoking SQL Server Reporting Services by SharePoint Timer Job

I'm facing some problem with the Render of some Reports during my SharePoint Timer Job. The same code running in a Console Application works correctly but in SharePoint Timer job stops working without ...
2
votes
1answer
64 views

Unable to update list item - Additions to this web site have been blocked

I am developing a SharePoint job. In the public override void Execute(Guid targetInstanceId) method, my code goes: SPSecurity.RunWithElevatedPrivileges(delegate() { int count = ...
0
votes
1answer
45 views

Accessing Entity Framework from Timer Job: connection string problem

I had a DB that normally I access from my SharePoint (2010) custom feature by Entity Framework. The connection string is stored in the web.config. If I do something like that from outside TimerJob: ...
0
votes
0answers
114 views

Custom Timer Job does not execute on production server

I have a custom job. It works fine on staging server, after moving to production it is not working. It shows in Central Administration "Job Definitions" I can open it and click "Run now" but it has no ...
2
votes
1answer
28 views

Users get subscribed to the same list more than once

I have developed a timerjob for MOSS 2007 which loops through a variety of subsites and then loops through all users on each site. Code can be seen here The issue at hand is that some of the users ...
1
vote
1answer
169 views

Timer Job - targets to specific application server

Below is our server topology 3 WFEs 2 App Servers 1 DB server Now, I would like to write a custom timer job that should run only on the specific application server("APP1"). SPJobdefinition does not ...
0
votes
1answer
797 views

“Access Denied” while Activating Custom Timer Job

When i tried to Activate Feature of Timer Job It returns error : Access Denied Scope of Feature is "Site".. private static void CreateJob(SPSite site) { try { ...
1
vote
1answer
96 views

Timer Jobs auto provisioning?

I want to create a timer job that will be on all of SharePoint's web applications. It's not a problem - but I'm thinking of the situation when a new web application is created. Will my timer job be ...
0
votes
1answer
685 views

Object reference not set to an instance of an object when Updating a Timer JOB?

This is really weird. The exception is thrown in the FeatureActivated event exactly in the line job.Update(). There is no way to debug any further because that method is from the framework. Maybe I ...
2
votes
3answers
992 views

Problem Activating Custom Timer Job

Right now I'm trying to create a SharePoint 2010 Custom Timer Job in Visual Basic 2010, which doesn't want to register itself in the SharePoint Timer (it appears to add ok and everything, but doesn't ...