I have an asp.net application that works on the development server. On the production server, it is failing though. If I set the connection string in web.config to point to the production database, it still works, so does this mean that it is a server issue that is causing the problems and if so, what are some techniques for debugging ...
I have a Windows service written using Topshelf. I'm trying to configure it to run using a Windows account with restricted privileges rather than using LocalSystem. That's also necessary as I'd like to connect to a database using integrated authentication.
The service works when run as LocalSystem (albeit with a database connection stri...
I'm not very experienced with SQL Server Profiler (2005, 2008). I'd like to print some info to a trace from a stored procedure. PRINT statements don't seem to output to my trace. How can I easily get the PRINT statements to output to the trace?
If that's not what trace (or PRINT) is really meant for, what's a quick easy alternative?
...
Is it possible to use the CherrPy server as a blocking/non-threading server (for easier debugging?)
...
I came across this method to produce a Javascript stack trace (to fix an IE specific bug): http://pastie.org/253058.txt which sounds really useful, but when I call it, the stack trace I get is for the code of the script itself?!
Probably a simple for someone who knows javascipt, but I don't!
Or if you can suggest a better way to get a ...
I am trying to debug my application with Pydev 1.5
I have done almost everything that's mentioned in the docs to start the debugger.
I get this error when I try to start the debugging:
pydev debugger: warning: psyco not available for speedups (the debugger will still work correctly, but a bit slower)
pydev debugger: starting
Traceback...
While debugging the crash on customer's machine we noticed that our application runs under verifier.dll. e.g each thread stack starts with verifier.dll and every system function is intercepted with verifier.dll stub.
Common sense and running Google search for "verifier.dll" clearly indicates that this dll belongs to Application Verifier...
I've been working for some time on an application written entirely in C# that targets Oracle databases. The idea is to provide everything that Oracle SQL Developer does, but faster, with a smaller memory footprint.
So far, I'd say I'm 90% there. But I've got one small problem, and it's annoying the $#@!$@ out of me!
I'm using ADO.NET ...
Hello! I'm having trouble using software breakpoints in WinDbg in order to break in a given address.
It's a Visual C++ 6.0 MFC executable without symbols (belive me, I just can not generate the symbols).
Suppose my executable image is named image00400000. Using Software Breakpoints (bp):
0:000> bp image00400000 + 0x003ba1eb
...
I would like to run a GTK+/C program line by line with some debugger. I have never debugged a Linux program so where can I find instructions to a very beginner on how to debug code? I have just an idea that I have to download the sources from net, compile the project with debug symbols and run sources through DDD or GDB. So can anyone gi...
Under Linux you can use Kdump to reliably capture the state of the system at the time of an OOPS ( kernel crash ) . Does Kdump work the same when the kernel is running under VMWare? I'm using VmWare Server 2.0.
...
We used to use Dr. Watson logfiles and dumps for crash analysis in our production environment, but Dr. Watson is no longer part of server 2k8 and our infrastructure team has had issues getting it running on 2008.
Are there alternatives that can be used in a similar way? In particular, we'd need the faulting module and address causing t...
In java debugging a hung application is easy. You can take the memory dump of the application and use and use eclipse jvm dump analyser to see the status of the threads and where each threads were blocked?
Does something like this exists for C++?
...
I'm receiving a script error in IE:
Line: 59
Char: 71
Error: Expected identifier, string, or number
Code: 0
Line 59, character 71 don't seem to actually correspond to my code. It doesn't even say what file, but I've looked at my main javascript file, viewing the page source, etc.
This has happened to me before and I've looked aroun...
Hey all,
Can I debug a 10.6 project into a 10.5? I have computers at school that are still 10.5 and I need to downgrade it so I can run my program on their computers.
Thanks,,
Kevin
...
I am trying to debug a junit test in eclipse but my breakpoints are not firing (unless they are on the first or second line).
I've tried deleting and recreating all breakpoints in the workspace, cleaning the project, creating a new debug configuration, and running the test method individually and as part of a test class with other metho...
Eclipse is not suspending on an uncaught runtime exception during debugging of a Junit test. I've tried:
JRE 1.6 update 15 and 16
Eclipse 3.5.0 and Eclipse 3.4.2
Checked "Suspend on uncaught exception" for the exception and all runtime exceptions
Checked "Keep JUnit running after a test run when debugging"
Debugging when running only t...
How can I determine for any Java .class file if that was compiled with debug info or not?
How can I tell exactly what -g{source|lines|vars} option was used?
...
How do I see what files/registry keys are being accessed by my application in Windows?
...
There are some nice debugging tools available for windows like
Process Explorer
Process Monitor
Spy++ ( There is some variant of Spy++ like tool also available but I forgot name.. :( )
All above tools are really handy to debug windows application...
Do you any other such tools(Windows or 3rd party) which can be used to make debugging...