Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
2answers
637 views

Thread abort leaves zombie transactions and broken SqlConnection

I feel like this behavior should not be happening. Here's the scenario: Start a long-running sql transaction. The thread that ran the sql command gets aborted (not by our code!) When the thread ...
6
votes
5answers
6k views

When an ASP.NET System.Web.HttpResponse.End() is called, the current thread is aborted?

when a System.Web.HttpResponse.End() is called a System.Thread.Abort is being fired, which i'm guessing is (or fires) an exception? I've got some logging and this is being listed in the log file... A ...
5
votes
4answers
233 views

How do I abort multiple threads?

In this code, when button1 is clicked twice, it creates 2 separate threads. On one click, it creates a new thread on the heap and field t1 points to the new thread on the heap. When I click button2, ...
4
votes
8answers
3k views

How do I suppress a thread.abort() error C#?

I am showing a splash screen on a background thread while my program loads. Once it loads I am aborting the Thread as it's only purpose was to show a Now Loading splash form. My problem is that ...
4
votes
2answers
8k views

SqlClient calls causing “Thread was being aborted at SNINativeMethodWrapper.SNIPacketGetConnection(IntPtr packet)”

I would really appreciate any suggestions, no matter how simple or complex, to help me get this issue isolated and resolved. I have a bit of code that generates small report files. For each file in ...
2
votes
0answers
83 views

Aborting a thread-pool thread

The answer to the question - Implement C# Generic Timeout provides a solution which involves aborting a thread-pool thread. I know the consequences of aborting an explicitly created thread. I guess, ...
2
votes
2answers
384 views

How can I wake a sleeping thread in C#?

Before people suggest it: I am not using Thread.sleep for anything except trying to find a way to work around it. I am trying to handle other people's future code which may not be .Sleep() free. I ...
2
votes
2answers
449 views

Thread.Abort doesn't seem to throw a ThreadAbortException because of AcceptSocket

I am calling ChannelServer.ListeningThread.Abort on the following thread, however nothing seems to happen. I would like to be more specific, but I can't think of anything more. There seems to be no ...
1
vote
1answer
109 views

Thread.abort hangs forever

Code to launch a wmi query on remote computers. This code runs in several threads at the same time. oquery = New ManagementObjectSearcher("select * from Win32_Computersystem") ...
1
vote
1answer
68 views

WaitDialog when GUI is taking a while

I have an application that can take a long time to perform some GUI updates. I can't run this in a background thread because the long processing is associated with updating GUI components which can ...
1
vote
1answer
115 views

Handling unexpected end of requests in servlets

I am currently developing a REST web service with Jersey / Tomcat (but a generic Servlet/Container answer is welcome). If the client does some GET requests on services that return large amount of ...
0
votes
3answers
70 views

Thread.Abort causing deadlock in catch{} statement

I have a set of threaded classes that print different types of documents. The classes use inheritance to share common code. The class constructor requires file name and printer name arguments. A ...
0
votes
1answer
17 views

Abort WCF server task if client is disconnected

We have a WCF service hosted under Windows service. The client of this service has set up closeTimeout, receiveTimeout, openTimeout, sentTimeout set to 5 minutes. Service also has the same. In certain ...
0
votes
1answer
21 views

Thread abort and ThreadExit not working visualstudio2008 c++

I'm using threads in c++ visualstudio2008, when my form closes the thread still stays active so I tried thread::abort when form is closing, but after calling about the thread is still alive. so I put ...
0
votes
1answer
109 views

C# Thread method reset problem

I have a thread array in which each thread gets a search task from a thread search manager - using a producer/consumer module - and when it finishes it, it waits until the next signal from the search ...
0
votes
3answers
120 views

What does resetAbort do?

Hi I have following test code: class Program { static void Main(string[] args) { Thread t = new Thread(Work); t.Start(); Thread.Sleep(1000); t.Abort(); ...
0
votes
2answers
487 views

.NET threading: how can I capture an abort on an unstarted thread?

edit: this seems to be a sticking point, so I'll just get it out of the way: I'm not using this for synchronization. Simply to kill long-running tasks when they no longer become necessary / ...
0
votes
1answer
210 views

In .NET when Aborting Thread, can this piece of code get corrupted?

Little intro: In complex multithreaded aplication (enterprise service bus ESB), I need to use Thread.Abort, because this ESB accepts user written modules which communicates with hardware security ...
0
votes
1answer
101 views

Problem with the nonresponding threads

I have a web application which runs multiple threads on button click each thread making IO call on different ipAddresses ie(login windows account and then making file operations). There is a treshold ...