vote up 1 vote down star
1

I am doing some asynchronous work on a separate thread using:

ThreadPool.QueueUserWorkItem(...)

and in this separate thread, I need to call HttpContext.Current so that I can access:

HttpContext.Current.Cache
HttpContext.Current.Server
HttpContext.Current.Request

however, HttpContext.Current is null when I create this separate thread.

My question is, how do I create a new thread so that HttpContext.Current is not null,

or if that is not possible, is there another way I can access the Cache, Server, and Request objects?

Thanks.

flag

57% accept rate

4 Answers

vote up 5 vote down check

I'll try not to hold a reference on an object which depends of the ASP.NET stack like the HttpContext. If you need to do some work in a different thread it's because you don't want to wait in the ASP.NET one that your task is finished ? And maybe the Request/Context/Session is terminated when your thread is not.

You should pass an object with the data needed for your thread.

link|flag
vote up 9 vote down

You can access the ASP.NET cache with HttpRuntime.Cache even when you don't have a HttpContext, but unfortunately you cannot access Server or Request.

If you think about it, this make sense - you are not serving any page so you don't have a request.

link|flag
vote up 0 vote down

If the separate thread is trying to access those objects, then yes they will be null. Those objects are scoped at the thread level. If you want to use them in a new thread you will have to pass them into the method/class where you need them.

Typically ASP.Net doesn't allow you to spawn new threads... Here is a post on the subject.

Here is a nice write up on threading in ASP.NET from MSDN.

link|flag
The post on not creating threads in ASP.Net says nothing of the sort. It simply states you shouldn't use the ThreadPool to create your threads, and that you should manager them yourself. – Kibbee Feb 9 at 18:56
vote up 0 vote down

For HttpContext.Server services you can use HttpServerUtility class. For the Cache you can use HttpRuntime.Cache, as it has been said above. For the request object you can pass the data from the Request to the thread when it is created. Things like Request.QueryString or Request.Form... or whatever.

link|flag
1  
To initiate an instance of HttpServerUtility outside of a web request, use: new HttpApplication().Server (via britishinside.com/archive/2005/…) Some features won't work though. For example, Server.MapPath doesn't. But as a workaround use System.Web.Hosting.HostingEnvironment.MapPath instead. – Mufasa Sep 19 at 1:47

Your Answer

Get an OpenID
or

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