Thursday, July 4, 2013

Access denied error while trying to activate a feature with timer job at site collection level

As explained at http://social.msdn.microsoft.com/Forums/sharepoint/en-US/fd1edf17-ffb4-4486-9fc4-8314d632c6ff/timer-job-access-denied-error
Add a function on the .cs file of timer job.
 protected override bool HasAdditionalUpdateAccess()
 {
            return true;
 }

No comments:

c# httpclient The remote certificate is invalid according to the validation procedure: RemoteCertificateNameMismatch

 If we get this error while trying to get http reponse using HttpClient object, it could mean that certificate validation fails for the remo...