- A user Clicks Settings > Add A Page
- The "Create Default Wiki Pages" Dialog Appears
- The User Gets an "Access Required - Sorry, this site hasn't been shared with you." Error Dialog
Event # | HttpApplication Event Name | OK to use SPContext.Current |
1 | BeginRequest | NO |
2 | AuthenticateRequest | NO |
3 | PostAuthenticateRequest | NO |
4 | AuthorizeRequest | NO |
5 | PostAuthorizeRequest | NO |
6 | ResolveRequestCache | NO |
7 | PostResolveRequestCache | NO |
8 | PostMapRequestHandler | NO |
9 | AcquireRequestState | NO |
10 | PostAcquireRequestState | NO |
11 | PreRequestHandlerExecute | YES |
12 | PostRequestHandlerExecute | YES |
13 | ReleaseRequestState | YES |
14 | PostReleaseRequestState | YES |
15 | UpdateRequestCache | YES |
16 | PostUpdateRequestCache | YES |
17 | LogRequest | YES |
18 | PostLogRequest | YES |
19 | EndRequest | YES |
The following code in an HttpModule will cause your "Add Pages" functionality in SharePoint 2013 to fail as well:
public class SecurityModule : IHttpModule, IRequiresSessionState { private void context_PostAcquireRequestState(object sender, EventArgs e) { if (SPContext.Current == null) { //Do nothing - this call to SPContext.Current too early in the Http Processing Pipeline will cause "Add Pages" in SP2013 to fail. //This is because the SiteAssets and SitePages Collections in SPWeb are not initialized properly for later calls in the pipeline. } } }
Using Reflector, you can see that internally, the "Add Page" Dialog uses the SPWeb.SitePagesLibrary internal property.
If I step through Microsoft's SharePoint code with Reflector VS PRO, I see that some properties are not initialized when I use SPContext in my custom code before the PreRequestHandlerExecute event.
Lesson Learned (and something to watch out for as the problem is hard to detect) - even if you CAN access the SPContext.Current before PreRequestHandlerExecute, DON'T DO IT. Otherwise, it causes instability in objects initialized by your SPContext later in the request pipeline.
This includes SharePoint itself. You have been warned!
DDK
1 comment:
Thank you David, this post saved my day!
I was getting weird issues with Upload page after our httpmodule kicked in in adquirerequeststate.
I couldn't figure out the issue, just knowed that it was created after we used the SPContext to get the current user's identity.
Great advice!
Post a Comment