Alessandra Amosso
Alessandra Amosso

Reputation: 351

Sharepoint Timer Job succeeded but didn't execute the code

I have a custom Timer Job created in Sharepoint 2010. After it runs, the Status shows "succeeded", but it actually doesn't execute the code.

I have managed to debug it, and I saw that it enters in the "empty" constructor several times:

public MyTimerJob() : base(){}

and then it stops, without entering in the constructor with the parameters:

 public MyTimerJob(string name, SPWebApplication webApp,SPServer server, SPJobLockType lockType)
          : base(name, webApp, server, lockType) { }

and avoiding the Exectute method:

public override void Execute(Guid targetInstanceId)
{
  mycode();
}

Any suggestions?

I have already

Upvotes: 0

Views: 178

Answers (0)

Related Questions