up vote 1 down vote favorite
share [g+] share [fb]

I'm trying to write an event receiver which uses the PortalSiteMapProvider. Without having HTTPContext or SPContext INSIDE the event receiver, how would one go about accessing the PortalSiteMapProvider?

link|improve this question

67% accept rate
I would be more interested in how you would use an event receiver without having a SPContext object. Please explain. – Magnus Johansson Oct 8 '09 at 15:33
You do not have SPContext inside an Event Receiver. – LB. Oct 8 '09 at 15:40
Which type of event are you using? – Magnus Johansson Oct 8 '09 at 15:45
Synchronous ItemUpdating. – LB. Oct 8 '09 at 15:45
You can determine both the web and list from SPItemEventProperties – Magnus Johansson Oct 8 '09 at 16:07
show 2 more comments
feedback

1 Answer

Try this in your event receiver:

var web = properties.Web;    

HttpRequest request = new HttpRequest(string.Empty, web.Url, string.Empty);

HttpResponse response = new HttpResponse(new System.IO.StreamWriter(new System.IO.MemoryStream()));

HttpContext impersonatedContext = new HttpContext(request, response);

impersonatedContext.Items["HttpHandlerSPWeb"] = web;

HttpContext.Current = impersonatedContext;

SPContext context = SPContext.GetContext(impersonatedContext);

You should be able to get your SPContext from that.

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.