Tagged Questions
0
votes
1answer
61 views
Get rid of a TimerJob/Feature which throws an exception
I created a TimerJob which is activated upon Feature activation. Because I didn't know better, I forgot to add an public default constructor and now I always get this exception: "Error occurred in ...
0
votes
1answer
808 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
{
...
0
votes
1answer
123 views
Copy an Item from one list to another list using custom timer job Creation?
How can i copy an item from one list to another list,I want to archive this item after 365 days of modified date of any item in the list.this i have to be do with Custom Timer job. can you please ...
0
votes
2answers
376 views
EnsureUser not working in Job
Background:
sharepoint 2010
custom membership provider
custom job to create users
Job is deployed by code and executed first time from some WinForms exe, executed by local Administrator. Users are ...
2
votes
4answers
2k views
Custom Timer Job/Solution Deployment Problems
I have a single solution that consists of the following:
Custom Timer Job (WebApplication scoped)
Custom Content Type and List (Web scoped)
Custom Logging Area (Web scoped)
These features are set ...
0
votes
1answer
690 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 ...