Tagged Questions

0
votes
2answers
21 views

IIS 6.0 hangs when serving a web-service

Hi guys I am having issues with one of our web-services. It works fine on my development machine (win XP) whether I host it as a seperate application or using cassini from Visual s …
0
votes
3answers
171 views

Why does this python code hang on import/compile but work in the shell?

I'm trying to use python to sftp a file, and the code works great in the interactive shell -- even pasting it in all at once. When I try to import the file (just to compile it), t …
0
votes
1answer
157 views

javascript hangs browser

xmlDoc.load("cd_catalog.xml") var cd=xmlDoc.getElementsByTagName("CD"); var id_set=1; var id=xmlDoc.getElementsByTagName("ID"+id_set); i=0; function next() { if (i<id.length- …
0
votes
2answers
246 views

Command Line Windows Hanging in RDP Windows

We regularly access the build machine through RDP and it there are lots of command line windows that open. Sometimes these windows hang like someone switched focus to them and pre …
1
vote
5answers
353 views

Windows: Under what circumstances might SetEvent() not return immediately?

I have a thread that, when its function exits its loop (the exit is triggered by an event), it does some cleanup and then sets a different event to let a master thread know that it …
4
votes
3answers
1k views

PHP sleep() silently hogs CPU

I'm running Apache on Linux within VMWare. One of the PHP pages I'm requesting does a sleep(), and I find that if I attempt to request a second page whilst the first page is sleep( …
0
votes
1answer
86 views

Visaul C++ 2005 hangs during qt builds

At my shop, the main product app is a mongrel built on MFC, QT and other random things devs have thrown in over the years. In the current stack, Qt toolkit is on the way out, but s …
2
votes
2answers
137 views

How to find out what Eclipse is doing in backround?

OS X 10.5.6. My Eclipse 3.4 is going crazy lately. After innocent operations like typing text or moving some files in Navigator view or saving, it sometimes starts "waiting on b …
1
vote
2answers
161 views

glGetError hangs for several seconds

I am developing an OpenGL application and I am seeing some strange things happen. The machine I am testing with is equipped with an NVidia Quadro FX 4600 and it is running RHEL WS …
0
votes
0answers
177 views

Excel web query times out

I have an excel page that runs a series of web queries that call reporting services reports and thencut-n-paste that into powerpoint. from time to time, the query hangs and brings …
0
votes
1answer
557 views

Java applet: IE Browser hangs after opening a file dialog. Workaround?

This is a registered bug (Bug ID: 6515708) but does anyone have a workaround for it? Scenario javascript calls OpenDialog() method in applet applet starts new thread which opens …
2
votes
2answers
1k views

ProcessStartInfo hanging on “WaitForExit”? Why?

I have the following code: info = new System.Diagnostics.ProcessStartInfo("TheProgram.exe", String.Join(" ", args)); info.CreateNoWindow = true; info.Windo …
2
votes
1answer
166 views

Detecting appilcation hangs with ActiveX controls in .Net

I am working on upgrades to a screen scraping application. We are using an ActiveX control to scrape screens out of an IBM mainframe. The mainframe program often hangs and crashes …
1
vote
4answers
884 views

DELETE Statement hangs on SQL Server for no apparent reason

Edit: Solved, there was a trigger with a loop on the table (read my own answer further below). We have a simple delete statement that looks like this: DELETE FROM tablename WHE …