In Sharepoint, when I need that a code access to a places where the user hasn't privileges, i use:

SPSecurity.RunWithElevatedPrivileges(delegate() 
 {
// DO SOMETHING WITH PRIVILEGES 
});

but now I need to execute some code in javascript with elevated privileges

var context = new SP.ClientContext.get_current();
context.executeQueryAsync(); // NEED PRIVILEGES TO WORK

is it possible?

link|improve this question

feedback

2 Answers

up vote 8 down vote accepted

No, that isn't possible.

The user would be able to manipulate the JavaScript which would open a huge security gap. You just can do this on the server-side. If you need something like this it must all take place at the server.

link|improve this answer
2  
Agreed, this is the entire concept behind the purpose of sandboxed enviroments. You can not elevate permissions, in face elevating permissions be considered last resort as a best practice. – brian brinley May 17 '11 at 10:29
Ok, moving all javascript code to server. FML. Thanks – user674887 May 17 '11 at 11:40
feedback

Agreed that you can't do this from JavaScript and it would be foolish if you could. One scenario that could help you is to look into Designer no-code workflows. New in SP2010 is the ability to have chunks of the workflow execute as the person who designed the workflow rather than the person who has started the workflow instance. This could be used to get around your permissions problem.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.