1
vote
0answers
17 views

Monitor available threads in threadpool within an asp.net application

I want to find a way to realise how many threads are available in a threadpool of an ASP.net application. I've found this link http://msdn.microsoft.com/en-us/library/ff650682.aspx which example ...
4
votes
2answers
97 views

E-mail with no content when using the System.Threading.ThreadPool

I'm experiencing a strange behavior trying to send email using Threading.ThreadPool. This has worked for over a year now but recently it has stated to intermittently send emails with no content. The ...
1
vote
1answer
87 views

Availability of threads in a thread pool?

How to find 60%(Or N%) availability of threads from a thread pool? What is the logic behind this? Parent thread spawning multiple urls using thread pool threads and waiting for the completion of all ...
2
votes
2answers
168 views

ASP.Net ThreadPool Delegate Callback — JavaScript Not Firing On Callback Thread

I have searched for several days now, and have tried about every solution that I could find. I know this is something I am not doing correctly, however, I am not sure what the correct way is. I ...
0
votes
0answers
73 views

ASP.Net ThreadPool Inconsistent Behaviour

We use ThreadPool in our asp.net c# application for asynchronous call. The scenario is the user provides information to create an Entity and we gather the information and place it in an XML file and ...
2
votes
1answer
58 views

Async programming against non-async services

This past year we've been working on a new web app that calls into our company's existing service layer. We made the decision to wrap up all of our service oriented calls into our own service layer ...
3
votes
2answers
195 views

More appropriate for my task: background worker or thread pool?

I have a simple web application module which basically accepts requests to save a zip file on PageLoad from a mobile client app. Now, What I want to do is to unzip the file and read the file inside ...
0
votes
0answers
32 views

Where to store current status of a thread process

I have a long running process that I need to execute and forget which the user will excute via a page method. I then need to return to the user that the process as started. The browser will then use ...
0
votes
0answers
72 views

Monitor ThreadPool in Asp.Net Framework

Can anyone kindly give me a tool or sample code to monitor Asp.Net Thread Pool? I want to know below features of thread pool if there exists any possibility. The number of threads which are ...
0
votes
0answers
97 views

How to handle/moniter multiple asynchronous ProcessStartInfo objects (C#)?

The objective here is to create a dashboard in asp.net where in user can trigger a particular job in a remote machine via PSEXEC. User will have list of machine ip's along with predefined jobs in two ...
0
votes
0answers
90 views

Aspnet PageAsyncTask with asp.net controls

In my asp.net web application I am using PageAsyncTask to send thousands of emails.When every successful mail sent i get a result in end event handler and i add a successful message in gridview.But ...
0
votes
1answer
140 views

Does Thread Agility occur in ASP.Net MVC?

In ASP.Net a request can migrate from one thread to another (thread agility) : http://piers7.blogspot.fr/2005/11/threadstatic-callcontext-and_02.html Can we see a request migrating from a thread to ...
0
votes
2answers
85 views

Handle ASP.Net internal thread pool which process the requests

My undersatnding on ASP.Net is when a request comes, ASP.Net uses a internal thread from thread pool to do the work and respond. Correct me if I am wrong. If that is the case, will I able to get a ...
0
votes
1answer
633 views

background worker(threadpool) in asp.net

I have a asp.net webform which writes about 25-30 items(has info required when user makes follow up request from the form) into a custom cache. Currently all this happens synchronously on the main ...
4
votes
1answer
421 views

How do I properly execute an Async Method in ASP.net MVC?

How do I execute an asynchronous method from within a controller method and return an HttpStatusCodeResult(200), without the async delegate prematurely terminating its execution? I am working on an ...
5
votes
1answer
310 views

What is the meaning of thread-agility in ASP.Net?

I am reading an article about HttpContext and CallContext and see thread-agility. What is it's mean?
0
votes
2answers
114 views

Wait for ASPX page to render before releasing thread?

I am writing a library which writes something into the database for temporary use (use only once) and then gets removed (its strange, but there is a certain implementation necessary for this ). For ...
0
votes
1answer
386 views

Speeding up Azure Storage API with NET4 and .NET 4.5 Parallel Extensions

The .NET 4 and 4.5 whitepapers have comments about how the parallel library can speed up performance of IO access. (example of a buffered serial queue below) Question: Has anyone successfully ...
5
votes
1answer
2k views

Server 2008 RC2, IIS 7.5, ASP.NET and Requests Queued Poor Performance

I already know the answer to this, but wanted to share with the community since it is NOT documented from Microsoft. The scenario: A surge of traffic hits your IIS 7.5 ASP.NET website, and you notice ...
0
votes
2answers
214 views

Website is not responding when a handler is processing

In my web site I have a handler (GetFile.ashx) which, when executed, lets you download a file at a given download rate. The handler needs to be executing until the user finishes download. The problem ...
5
votes
1answer
469 views

ThreadPool.QueueUserWorkItem in Web Service for “Fire and Forget” task

This is ASP.NET ASMX Web Service / .NET Framework 4.0. In web service, I want to execute one method on another thread something like “Fire and Forget” so that Web Service returns some value in ...
3
votes
1answer
148 views

ThreadPool.QueueUserWorkItem NullReferenceException

Why I'm getting this error. My variables get the names from request, and also i tried "data.qext" but visual studio give me error. I got "test.pdf" file in my WebsiteRoot/uploads/files/test.pdf, but ...
1
vote
2answers
121 views

ThreadPool and Memory (BTStackServer) exception - .NET

In continuation with my problem here, I created a test app that uses ThreadPool threads to send emails. Here's the code I am using. protected void btnSend_Click(object sender, EventArgs e) ...
9
votes
6answers
461 views

Partial work being done twice (ThreadPool.QueueUserWorkItem)

I have created a newsletter system that allows me to specify which members should receive the newsletter. I then loop through the list of members that meet the criteria and for each member, I generate ...
1
vote
1answer
275 views

Does ThreadPool.GetMaxThreads get the value based on processModel tag in machine.config?

I have set the maxIoThreads and maxWorkerThreads in machine.config to 100. <processModel autoConfig="false" maxWorkerThreads="100" maxIoThreads="100"/> However when i am debugging the ...
1
vote
2answers
265 views

Is there a way to log usage of IIS thread-pool threads?

I want to see when exactly a thread from the pool is brought into play and when it is freed. What I want is to explore the behaviour of a third party library in order to decide whether I should ...
5
votes
6answers
2k views

Using Task or async/await in IHttpAsyncHandler

Since the very begining of writing ASP.NET applications when I wanted to add a threading there are 3 simple ways I can accomplish threading within my ASP.NET application : Using the ...
2
votes
1answer
1k views

w3wp.exe exceeding max threads

we have requirement to handle 10000 concurrent user. Let me explain the system. Machine has two processors. ProcessModel in machine.config is set as autoconfig = true. so that makes maxWorkerThreads ...
5
votes
1answer
2k views

Long-running background process in ASP.NET - Application_Start or separate process?

I'm developing a .NET 4 application that requires a backend worker thread to be running. This thread consists mostly of the following code: while (true) { //Check stuff in database //Do stuff ...
0
votes
1answer
527 views

Using ThreadPool.QueueUserWorkItem to open a TcpClient connection and read data in ASP.NET and SignalR

I've read a couple of posts on SignalR and thought for a fun test project that I could create a web application to poll my onkyo receiver for status and display the results in a browser. For an ...
3
votes
2answers
482 views

Is using thread local storage safe for this operation?

I have a ASP.NET web application that allows end users to upload a file. Once the file is on the server, I spawn a thread to process the file. The thread is passed data regarding the specific ...
2
votes
2answers
375 views

How to retain executing thread's context during call to QueueUserWorkItem in ASP.Net?

We have an ASP.NET application that queues some of its long-running operations (generating reports, for example) into the ThreadPool using System.Threading.ThreadPool.QueueUserWorkItem. We have two ...
6
votes
1answer
462 views

When do I use System.Threading.ThreadPool and when do I use one of the many custom thread pools?

I'm working on creating an asynch handler for asp.net that will execute a slow stored procedure. I think I understand that to gain additional throughput on a mix load of slow and fast pages, that the ...
1
vote
3answers
1k views

Understanding ASP.NET asynchronous processing

Every article on async programming in ASP.NET i've read so far states that while we make a request to a database (or other IO) the request thread is returned to ThreadPool ...
0
votes
1answer
122 views

Code executed infinite times in threadpool because of exception

I've heard its bad to use ThreadPool in asp.net, however I've used it for the purpose of educating myself. My goal was to determine if the Application_Error event got fired (which is handled in the ...
3
votes
1answer
433 views

ASP.NET, IIS /CLR Thread & request in relation to synchronous v.s asynchronous programming

I'm just trying to clear up some concepts here. If anyone is willing to share their expertise on this matter, it's greatly appreciated it. The following is my understanding of how IIS works in ...
0
votes
0answers
134 views

set asp.net impersonation in thread state

I have an asp.net application that is running in impersonation state in IIS7, this application is starting a new thread and according to MSDN: "When impersonation is required on the new thread, your ...
2
votes
3answers
161 views

Sustaining parameter values in multi threads that are created dynamically? (C#)

I can't say i fully understood the concept of threads even i read so many articles over it, i'm a bit thick and what i want is thread safe parameters. I'm sending string arguments to a thread that i'm ...
1
vote
1answer
148 views

ASP.Net AJAX and ThreadPool

Do ASP.Net based AJAX requests use the same ThreadPool that ASP.Net requests use? ASP.Net asynchronous programming uses a different thread, returning the thread used for processing ASP.Net requests ...
1
vote
1answer
645 views

ASP.NET Application variables set to null after being used in a Threadpool

I have a static class in my ASP.NET app that I use to hold an application wide data processing class used to manage long running batch operations sent in by users. This should be a singleton object ...
0
votes
1answer
366 views

wait for a process to finish inside an ThreadPool.UnsafeQueueUserWorkItem() function

Im doing a web application that will play a media. I have a class A that contains a method ,say MyMethod: public void MyMethod() { ..... Process proc = .... ...
6
votes
2answers
2k views

How does ASP.NET determine whether to queue a request or not?

When ASP.NET receives a request, how does it determine whether to serve it or to queue it? I ask because I'm monitoring performance counters on a server and the CPU is not maxed out and there are a ...
0
votes
1answer
299 views

ASP.Net and listening to event through open connection - is it possible to raise number of concurrently executing threads?

I am trying to use IIS to host an event-driven web-application. Lets say I want to use it for a chat-type application. Instead of polling once every second or so (delay) I want to leave an open ...
0
votes
2answers
431 views

Ordering of Asynchronous method calls

I am working on a class library that logs audit details of a web application in several types of datasources(file, xml, database) based on policies defined in the web configuration file. My Audit log ...
1
vote
1answer
302 views

How do I setup ASP.NET MVC to process uploaded data independent of a request?

I'm just starting to learn ASP.NET MVC. The website I'm working on requires the user to upload XML files which are loaded into a SQL database through NHibernate. This is working ok now with a small ...
9
votes
2answers
10k views

How to increase thread-pool threads on IIS 7.0

Environment: Windows Server 2008 Enterprise, IIS 7.0, ASP.NET 2.0 (CLR), .NET 4.0 I have an ASP.NET application with no page and no session(HttpHandler). It a streaming server. I use two threads for ...
4
votes
2answers
890 views

ThreadPools vs Own Threads for long running processes

We've got some long running business processes that are being initiated through WCF Services running in IIS (integrated mode) on WS 2008 R2. These business processes typically involve lots of ...
2
votes
2answers
1k views

ThreadPool with multiple threads creating FTP requests times out

I'm trying to create a collection of FTP web requests to download a collection of files. Was working correctly doing this in a single thread but am trying to do with multiple threads now but am ...
3
votes
1answer
656 views

ThreadPool.QueueUserWorkItem Causes App to Hang Until Finished

This may be due to a lack of understanding of what's going on under the hood or simply a lack of understanding of threading in general. When a user logins I need to run some tasks that call web ...
0
votes
1answer
116 views

Directory Access using Threadpool (.NET, IIS6)

I have a large process to take place in the background of a web application and it was timing out on the main thread, so I've decided to take the Threadpool route. Unfortunately, part of this process ...

1 2