Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Creating a new background thread on web server
Message
From
11/03/2003 06:42:15
 
 
To
All
General information
Forum:
ASP.NET
Category:
Other
Title:
Creating a new background thread on web server
Miscellaneous
Thread ID:
00764110
Message ID:
00764110
Views:
75
I use the following to create a new thread on the web server to perform some processes:


myThread = new System.Threading.Thread(new ThreadStart(CreateTextFile));

myThread.Priority = ThreadPriority.Highest;

myThread.Start();

Response.Redirect("CheckOut.aspx?OrderID=" + orderId,false);




It works great on my localhost but the thread does not execute on the prod. server. No error is returned or written to the log? Any help on where I can troubleshoot this? Does the user that runs aspnet_wp.exe need any other permissions? i already added permissions through dcomcnfg. Please let me know where to look. thanks
Next
Reply
Map
View

Click here to load this message in the networking platform