active questions tagged debugging - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T00:03:40Z http://stackoverflow.com/feeds/tag/debugging http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1916329/opengl-texture-loading-issue 0 OpenGL texture loading issue Andrei Krotkov 2009-12-16T17:37:19Z 2009-12-16T22:44:46Z <p>This is a very vague problem, so please feel free to clarify anything about this project.</p> <p>I'm working on a very large application, and recently a very perplexing bug has cropped up regarding the texturing. Some of the textures that we are loading are being loaded - I've stepped through the code, and it runs - but all OpenGL renders for those textures is a weird Pink/White striped texture. </p> <p>What would you suggest to even begin debugging this situation? </p> <ul> <li>The project is multithreaded, but a mutex makes sure all OpenGL calls are not interrupted by anything else. </li> <li>Some textures are being loaded, some are not. They're all loaded in the exact same way.</li> <li>I've made sure that all textures exist</li> <li>The "pink/white" textures are definitely loaded in memory - they become visible shortly after I load any other texture into OpenGL.</li> </ul> <p>I'm perplexed, and have no idea what else can be wrong. Is there an OpenGL command that can be called after glTexImage that would force the texture to become useable?</p> <p>Edit: It's not about the commands failing, it's mainly a timing issue. The pink/white textures show up for a while, until more textures are loaded. It's almost as if the textures are queued up, and the queue just pauses at some time.</p> <p>Next Edit: I got the glIntercept log working correctly, and this is what it outputted (before the entire program crashed)</p> <p><a href="http://freetexthost.com/1kdkksabdg" rel="nofollow">http://freetexthost.com/1kdkksabdg</a></p> <p>Next Edit: I know for a fact the textures are loaded in OpenGL memory, but for some reason they're not rendering in the program themselves. </p> http://stackoverflow.com/questions/1895291/what-could-be-wrong-with-this 0 What could be wrong with this? BCS 2009-12-13T01:28:23Z 2009-12-16T21:56:11Z <p>BTW: I found the problem: (See my answer below)</p> <p><hr></p> <p>When I build my program at home it works fine, but when I use my universities system is crashing on me. When I go at it with GDB I get this:</p> <pre> (gdb) r t.c- Starting program: /home/shro8822/p5/c- t.c- *--Code Gen Function: main *--in function 'main' variable offsets start at 2 Program received signal SIGSEGV, Segmentation fault. 0x08084410 in ObjectCode::ResolveRef (this=0xbfb3dd20) at CodeOutput.cpp:44 </pre> <pre><code>44 p-&gt;Resolve(this); </code></pre> <pre> (gdb) list </pre> <pre><code>39 { 40 std::list&lt;Patch*&gt;::iterator pos; 41 for(pos = Patchups.begin(); pos != Patchups.end(); ++pos) 42 { 43 Patch* p = *pos; 44 p-&gt;Resolve(this); 45 //delete p; 46 } 47 48 } </code></pre> <pre> (gdb) p p $1 = (class ObjectCode::Patch *) 0x2064696c (gdb) p this $2 = (ObjectCode * const) 0xbfb3dd20 </pre> <p>It crashes from a SEG-V on a line with a virtual function call involving 2 variable and neither is NULL. I don't think there is anywhere else that stuff from this list is deleted.</p> <p>Tossing it a Valgrind gives one error:</p> <pre> ==5714== Invalid read of size 4 ==5714== at 0x8084410: ObjectCode::ResolveRef() (CodeOutput.cpp:44) ==5714== by 0x8086E00: ObjectCode::Finish() (CodeOutput.cpp:196) ==5714== by 0x807EC97: WalkGlobal::Finish() (CodeGen_G.cpp:211) ==5714== by 0x808D53C: Compile::RunV() (cs445.cpp:120) ==5714== by 0x808D7C2: ProcessFile::Run() (cs445.cpp:49) ==5714== by 0x808CCD9: main (cs445.cpp:234) ==5714== Address 0x2064696C is not stack'd, malloc'd or (recently) free'd Seg fault </pre> <p><em>Any idea were to start looking?</em></p> <p><hr></p> <p>BTW: I populate the list using only statements like this: <code>Patchups.push_back(new PatchType());</code></p> <pre> shro8822 p5 $ grep Patchups *.cpp *.h -n CodeOutput.cpp:41: for(pos = Patchups.begin(); pos != Patchups.end(); ++pos) CodeOutput_Slot.cpp:124: { Stream->Patchups.push_back(new FunctionPatch(it,GetSlotBefor(),at)); } CodeOutput_Slot.cpp:126: { Stream->Patchups.push_back(new GotoPatch(target,GetSlotBefor(),at,"goto")); } CodeOutput_Slot.cpp:128: { Stream->Patchups.push_back(new GotoPatch(target,GetSlotBefor(),at,c)); } CodeOutput_Slot.cpp:130: { Stream->Patchups.push_back(new BranchPatch(target,GetSlotBefor(),type,from,at,c)); } CodeOutput.h:222: std::list Patchups; </pre> <p><hr></p> <p><strong>Yet more:</strong> It happens that the home and school systems are both x86 (RHEL 3 and 5 respectively) so I ran the binary I compiled at home on the system at school and it runs fine.</p> http://stackoverflow.com/questions/1917189/how-do-i-use-stackshot-to-debug-my-application 0 How do I use stackshot to debug my application? fbrereto 2009-12-16T19:49:42Z 2009-12-16T20:36:40Z <p>I've recently been told about a useful debugging tool on Mac OS X called <code>stackshot</code>, however I don't know how to invoke it. My understanding from <a href="http://developer.apple.com/mac/library/documentation/Darwin/Reference/ManPages/man1/stackshot.1.html" rel="nofollow">the documentation</a> is that it runs as a daemon, but the man page also reads as if it can be invoked from the command line. How would I go about leveraging stackshot for my currently-running application?</p> http://stackoverflow.com/questions/1776007/how-does-tdd-work-with-exceptions-and-parameter-validation 0 How does TDD work with Exceptions and parameter validation? John Baker 2009-11-21T16:51:56Z 2009-12-16T19:50:26Z <p>I have come to something of a crossroads. I recently wrote a 10,000 line application with no TDD (a mistake I know). I definitely ran into a very large amount of errors but now I want to retrofit the project. Here is the problem I ran into though. Lets take a example of a function that does division:</p> <pre><code>public int divide (int var1, int var2){ if (var1 == 0 || var2 == 0) throw new RuntimeException("One of the parameters is zero"); return var1 / var2; } </code></pre> <p>In this situation I'm throwing a runtime error so that I can fail and at least find out that my code is broke somewhere. The question is 2 fold. First, am I making the correct use of the exceptions here? Secondly how do I write a test to work with this exception? Obviously I want it to pass the test but in this case it's going to throw an exception. Not too sure how one would work that out. Is there a different way that this is generally handled with TDD?</p> <p>Thanks</p> http://stackoverflow.com/questions/1915639/debugging-websites-in-various-browsers 0 Debugging Websites in Various Browsers Jason 2009-12-16T16:03:44Z 2009-12-16T17:30:48Z <p>I am having my first foray into website design and I am learning a lot. I am also now seeing why web developers are not a huge fan of developing for Internet Explorer. Nothing seems to work how I expect. However, since the website has to work cross-browser, I am spending time looking at it in Firefox, Chrome, and IE. Something that is very non-obvious to me, however, is how to tell where problems lie in the website.</p> <p>For example, the layout of one of my pages forces a footer to the bottom of the page. It looks great in Chrome and Firefox, but there's something broken in IE that make the footer align to the right (and cause a horizontal scroll to appear). I have played around with the code, but nothing really is responding to how I want in IE (even though it does in other browsers).</p> <p>Are there any tools that can help "debug" the problems on a web site so fixing it is more than just a trial-and-error approach? Thanks.</p> http://stackoverflow.com/questions/1887216/which-tools-do-you-use-to-debug-html-js-in-your-browser 1 Which tools do you use to debug HTML/JS in your browser? Aaron Digulla 2009-12-11T10:37:00Z 2009-12-16T16:11:07Z <p>I'd like to collect the best debugging aids for all browsers out there. So that would probably be <a href="https://addons.mozilla.org/de/firefox/addon/1843" rel="nofollow">Firebug</a> for Firefox but what do you use for IE? Safari? Opera? Opera Mini? What else is out there? Are there tools that work well for IE 6? IE 5?</p> http://stackoverflow.com/questions/1915453/calling-methods-from-xcode-debugger 1 Calling methods from Xcode Debugger ? Mr.Gando 2009-12-16T15:40:16Z 2009-12-16T15:49:56Z <p>Hello, what's the correct way to call a method from the Xcode debugger command line ?</p> <p>For example if I'm inside the sort: method of my class A (using the debugger), how can I call debugSort: method that belongs to class A too ? </p> <p>( My code is Objective-C btw )</p> http://stackoverflow.com/questions/969761/vbscript-asp-classic-stop-statement-not-breaking-into-debugger 2 VBScript/ASP-Classic "Stop" Statement Not Breaking Into Debugger Daniel Silveira 2009-06-09T12:23:17Z 2009-12-16T13:45:22Z <p>I've used to put a "<code>stop</code>" statement in my VBScript/ASP-Classic code to break into debugger (Microsoft Script Editor, that comes with Microsoft Office).</p> <p>But now it isn't breaking anymore. The "<code>stop</code>" is ignored and nothing happpens.</p> <p>The server-side debugging flag is already enabled in IIS</p> <p>How to solve this?</p> <p><hr /></p> <p>Sample Code, <code>hello.asp</code></p> <pre><code>stop Response.Write "Hello W." </code></pre> http://stackoverflow.com/questions/1914226/how-to-step-into-system-web-mvc 1 how to step into system.web.mvc Paul Spencer 2009-12-16T11:54:42Z 2009-12-16T13:41:43Z <p>Hi,</p> <p>Please don't focus on the examples, I have a bad habit of using examples to clarify my questions resulting in people answering my examples not my questions.</p> <p>The Question: Does anyone have know how I can step into system.web.mvc?</p> <p>The Background (you can skip this to avoid confusion): A couple of weeks ago I had a problem where MVC was throwing up a YSOD, but I could not step into the code to find the problem because the issue was I was doing something wrong, that was not being picked up until it was in the framework (in this case, by thrashing around blindly for a day I found it was that I didn't have a default empty constructor on one of the classes within my viewmodel). Now I am getting a different error (Cannot create an abstract class) that is buried in the System.Web.Mvc.DefaultModelBinder.CreateModel method, but I don't know what part of my code is causing the error in the framework. </p> <p>I would like to step into the code, to find out. I was advised that I could download the sourcecode from codeplex, (actually microsoft.com/downloads as I am using 1.0), build in Debug and then step through. I tried, unfortunately the system.web.mvc was installed in GAC, thus causing an ambiguous call, and gacutil would not allow me to uninstall, so tried by hand removing from the registry (HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Installer\Global\system.web.mvc). when I ran my program it was still reporting an ambiguous call. </p> http://stackoverflow.com/questions/1914296/how-to-debug-windows-service-which-fails-in-init-method 0 How to debug windows service which fails in Init() method Nikhil Vaghela 2009-12-16T12:13:12Z 2009-12-16T12:20:35Z <p>I have a windows service which fails in Init() method and throws some exception , so only way for me to check what the error is by looking at the event log. I want to debug the windows service, but the problem is that i can attach debugger only when service is rnning, in my case it fails in Init() method only. Any idea ?</p> http://stackoverflow.com/questions/1913539/debuging-issue-with-maven-jetty-and-idea 0 Debuging issue with maven, jetty and IDEA peter_budo 2009-12-16T09:52:58Z 2009-12-16T12:03:52Z <p>I have problem with running jetty in debug and attaching IntelliJ IDEA to listening port.</p> <p><code>mvnDebug jetty:run-exploded</code></p> <p>will start jetty as I can see following message</p> <blockquote> <p>Preparing to Execute Maven in Debug Mode Listening for transport dt_socket at address: 8000</p> </blockquote> <p>However when I try to to connect IDEA to port 8000 I will get message in IDE saying connected and immediately followed by disconnected. Where jetty will kick following error</p> <blockquote> <p>Exception in thread "main" java.lang.NoClassDefFoundError: org/codehaus/classworlds/Launcher Caused by: java.lang.ClassNotFoundException: org.codehaus.classworlds.Launcher at java.net.URLClassLoader$1.run(URLClassLoader.java:200) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:188) at java.lang.ClassLoader.loadClass(ClassLoader.java:307) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301) at java.lang.ClassLoader.loadClass(ClassLoader.java:252) at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320) Could not find the main class: org.codehaus.classworlds.Launcher. Program will exit.</p> </blockquote> <p>I'm little confused by this as there is no problem in running project under jetty with</p> <p><code>mvn jetty:run-exploded</code></p> <p>also my colleague have no problem with debugging under IDEA, only difference between his and my setup is that I have 64bit machine and he is on 32bit</p> http://stackoverflow.com/questions/1724709/ubuntu-9-10-monodevelop-debug-nunit 2 Ubuntu 9.10 + MonoDevelop + Debug + NUnit W3Max 2009-11-12T19:24:05Z 2009-12-16T08:21:56Z <p>I am a Linux noob and I would like to debug a unit test.</p> <p>If I run my test in MonoDevelop it goes green but if I try to debug everything freeze and I have to stop the debugger. My breakpoint on first line of code is never hit. There is no stack trace or information of what could have failed.</p> <p>Edit 1: Should I install OpenSuse (since it is Novell and they are behind Mono) instead of Ubuntu ?</p> http://stackoverflow.com/questions/1906652/opening-32-bit-process-crash-dumps-in-64-bit-windows-so-wow-process-in-visual-s 0 Opening 32-bit process crash dumps in 64-bit Windows (so Wow process) in Visual Studio 2010 halivingston 2009-12-15T10:55:38Z 2009-12-16T06:16:39Z <p>CpupSyscallStub is what I See for all threads, in Windbg I can switch to 32-bit mode and get the real threads.</p> <p>How do I do this in VS2010?</p> http://stackoverflow.com/questions/1912537/br-bparse-error-b-syntax-error-unexpected-end-in-be-xampp-htdocs-o 0 <br /> <b>Parse error</b>: syntax error, unexpected $end in <b>E:\xampp\htdocs\online\viewhistory.php</b> on line <b>43</b><br /> Steven 2009-12-16T05:38:22Z 2009-12-16T05:52:18Z <p>Below is the code of viewhistory.php.</p> <pre><code> &lt;?php foreach($_POST as $value){ if (empty($value)) { echo 1; exit(); } } //come code; //SQL query; while($row=mysql_fetch_assoc($result)) { //some code; if (!empty($reference)) { $referencetxt=&lt;&lt;&lt;html | Referenced Solution ID:$reference html; } else { $referencetxt=" "; } $item+=&lt;&lt;&lt;htm &lt;hr&gt; &lt;span&gt;Solution ID:$productid $referencetxt&lt;/span&gt; &lt;xmp&gt;$text&lt;/xmp&gt; &lt;img src=$imagepath /&gt; &lt;div align="right"&gt;$username $moment&lt;/div&gt; htm; } echo $item; ?&gt; </code></pre> <p>However, I get an error</p> <blockquote> <pre><code>&lt;br /&gt; &lt;b&gt;Parse error&lt;/b&gt;: syntax error, unexpected $end in </code></pre> <p><b>E:\xampp\htdocs\online\viewhistory.php</b> on line <b>43</b><br /></p> </blockquote> <p>when I run it. What is wrong? Is a half bracket missing? But It seems all brackets are paired.</p> http://stackoverflow.com/questions/1911988/attaching-a-debugger-to-a-running-process-on-vista-or-windows-7-using-debugger-br 1 Attaching a debugger to a running process on Vista or Windows 7 using Debugger.Break() Ben Fulton 2009-12-16T03:03:53Z 2009-12-16T03:07:04Z <p>When encountering a Debugger.Break() statement on Vista, you will get this message instead:</p> <p>"SomeProcess.exe has encountered a user-defined breakpoint."</p> <p>If you click options in the right order, you might be able to attach your debugger. if you don't, you won't. How do you force Windows to give you the Attach dialog every time?</p> http://stackoverflow.com/questions/1911112/remote-c-debugging-with-rse 0 Remote C++ Debugging with RSE theactiveactor 2009-12-15T23:07:19Z 2009-12-15T23:07:19Z <p>I'm stuck after step 3 in trying to setup remote cross-debugging with Eclipse/RSE:</p> <ol> <li>Installed RSE 3.1 on Eclipse 3.5</li> <li>Setup a SSH connection profile to my remote device</li> <li>built binaries using a cross-compiler</li> </ol> <p>Now I can't find the Eclipse option to transfer the binaries to my device and debug using gdb. Under Debug Configurations, I can't find find a "Remote CDT Launch" or " C/C++ Remote Application" referenced by other tutorials. </p> <p>The only Debug Configuration options I see are the standard "C/C++ Application", "C/C++ Attach", "C/C++ PostMoterm", and "Launch Group".</p> <p>What should I do next?</p> http://stackoverflow.com/questions/1911015/how-to-debug-node-js-applications 0 How to debug node.js applications Fabian Jakobs 2009-12-15T22:50:07Z 2009-12-15T23:03:33Z <p>How do I debug a node.js server application? Right now I'm mostly using <em>alert debugging</em> with print statements like this:</p> <pre><code>sys.puts(sys.inspect(someVariable)); </code></pre> <p>There must be a better way to debug. I know that google Chrome has a command line debugger. Is this debugger available for node.js as well?</p> http://stackoverflow.com/questions/1776431/what-tool-do-you-use-for-debugging-javascript 2 What tool do you use for debugging Javascript? Juanjo Conti 2009-11-21T19:14:46Z 2009-12-15T21:52:56Z <p>I've notices I'm not capable to debug correctly js. I'm only using alert() as a spread sentences technique but I need something better. So... which tool do you use?</p> http://stackoverflow.com/questions/1909885/unterminated-string-constant-error 0 Unterminated string constant error laconicdev 2009-12-15T19:44:44Z 2009-12-15T20:40:37Z <p>We just dicovered a bug in our app that returns this error. When going to a certain page in our ASP.NET 2.0 app. When I press "Yes" to debug, the source of the page is displayed, but the line that is referenced has NO Java script on it. I am trying to figure what maybe causing the issue and how to debug it. This is IE only application. The bug is happening in IE7 and 8. Any pointers appreciated.</p> <p>Thanks.</p> http://stackoverflow.com/questions/104224/how-do-you-troubleshoot-wpf-ui-problems 4 How do you troubleshoot WPF UI problems? palehorse 2008-09-19T18:17:20Z 2009-12-15T15:41:06Z <p>I'm working on a WPF application that sometimes exhibits odd problems and appears to <em>hang</em> in the UI. It is inconsistent, it happens in different pages, but it happens often enough that it is a big problem. I should mention that it is not a true hang as described below.</p> <p>My first thought was that the animations of some buttons was the problem since they are used on most pages, but after removing them the hangs still occur, although seemingly a bit less often. I have tried to break into the debugger when the hang occurs; however there is never any code to view. No code of mine is running. I have also noticed that the "hang" is not complete. I have code that lets me drag the form around (it has no border or title) which continues to work. I also have my won close button which functions when I click it. Clicking on buttons appears to actually work as my code runs, but the UI simply never updates to show a new page.</p> <p>I'm looking for any advice, tools or techniques to track down this odd problem, so if you have any thoughts at all, I will greatly appreciate it.</p> <p>EDIT: It just happened again, so this time when I tried to break into the debugger I chose to "show disassembly". It brings me to MS.Win32.UnsafeNativeMethods.GetMessageW. The stack trace follows:</p> <pre><code>[Managed to Native Transition] </code></pre> <blockquote> <p>WindowsBase.dll!MS.Win32.UnsafeNativeMethods.GetMessageW(ref System.Windows.Interop.MSG msg, System.Runtime.InteropServices.HandleRef hWnd, int uMsgFilterMin, int uMsgFilterMax) + 0x15 bytes WindowsBase.dll!System.Windows.Threading.Dispatcher.GetMessage(ref System.Windows.Interop.MSG msg, System.IntPtr hwnd, int minMessage, int maxMessage) + 0x48 bytes WindowsBase.dll!System.Windows.Threading.Dispatcher.PushFrameImpl(System.Windows.Threading.DispatcherFrame frame = {System.Windows.Threading.DispatcherFrame}) + 0x8b bytes WindowsBase.dll!System.Windows.Threading.Dispatcher.PushFrame(System.Windows.Threading.DispatcherFrame frame) + 0x49 bytes WindowsBase.dll!System.Windows.Threading.Dispatcher.Run() + 0x4c bytes PresentationFramework.dll!System.Windows.Application.RunDispatcher(object ignore) + 0x1e bytes PresentationFramework.dll!System.Windows.Application.RunInternal(System.Windows.Window window) + 0x6f bytes PresentationFramework.dll!System.Windows.Application.Run(System.Windows.Window window) + 0x26 bytes PresentationFramework.dll!System.Windows.Application.Run() + 0x19 bytes WinterGreen.exe!WinterGreen.App.Main() + 0x5e bytes C# [Native to Managed Transition] [Managed to Native Transition] mscorlib.dll!System.AppDomain.nExecuteAssembly(System.Reflection.Assembly assembly, string[] args) + 0x19 bytes mscorlib.dll!System.Runtime.Hosting.ManifestRunner.Run(bool checkAptModel) + 0x6e bytes mscorlib.dll!System.Runtime.Hosting.ManifestRunner.ExecuteAsAssembly() + 0x84 bytes mscorlib.dll!System.Runtime.Hosting.ApplicationActivator.CreateInstance(System.ActivationContext activationContext, string[] activationCustomData) + 0x65 bytes mscorlib.dll!System.Runtime.Hosting.ApplicationActivator.CreateInstance(System.ActivationContext activationContext) + 0xa bytes mscorlib.dll!System.Activator.CreateInstance(System.ActivationContext activationContext) + 0x3e bytes Microsoft.VisualStudio.HostingProcess.Utilities.dll!Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssemblyDebugInZone() + 0x23 bytes mscorlib.dll!System.Threading.ThreadHelper.ThreadStart_Context(object state) + 0x66 bytes mscorlib.dll!System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, object state) + 0x6f bytes mscorlib.dll!System.Threading.ThreadHelper.ThreadStart() + 0x44 bytes </p> </blockquote> http://stackoverflow.com/questions/1907983/why-is-evaluation-of-lambda-expressions-is-not-valid-in-the-debugger 2 Why is "Evaluation of lambda expressions is not valid in the debugger"? Sung Meister 2009-12-15T14:54:29Z 2009-12-15T15:03:20Z <p>I have a seemingly innocent code snippet, which I typed into Visual Studio 2008 <em>Immediate Window</em>.</p> <pre><code>? results.Join(lstDocs, Function(docID) docID) Evaluation of lambda expressions is not valid in the debugger. </code></pre> <p>As the message says, it's not possible to call a lambda expression in the debugger. <br /> <strong>Why is it not allowed?</strong></p> http://stackoverflow.com/questions/1907072/visualstudio-c-how-to-make-debuginfo-reliable-in-releasemode 0 VisualStudio C++ how to make debuginfo reliable in releasemode Mat 2009-12-15T12:22:11Z 2009-12-15T14:02:15Z <p>Hi!</p> <p>I've got a little problem. my application runs without problems in Debug mode, but crashes in release mode. I can't track down the problem, because in release mode all the Debuginfo appears to be nonsense. However - sometimes in other projects the Debug output is also valid in release mode. What projectsettings do I have to change such that the Debug output is valid in release?</p> <p>thanks!</p> http://stackoverflow.com/questions/1468921/sharepoint-unknown-error-debugging-but-cant-turn-on-callstack 0 Sharepoint "Unknown Error" debugging - but can't turn on CallStack... ?? Steve Eisner 2009-09-23T22:49:14Z 2009-12-15T13:39:59Z <p>On one dev machine, the standard method for enabling SharePoint debugging is not working. From <strong>c:\inetpub\wwwroot\wss\VirtualDirectories\80\web.config</strong>:</p> <pre><code>&lt;SharePoint&gt; &lt;SafeMode MaxControls="200" CallStack="true" DirectFileDependencies="10" TotalFileDependencies="50" AllowPageLevelTrace="false"&gt;...&lt;/SafeMode&gt; ... &lt;/Sharepoint&gt; &lt;system.web&gt; &lt;customErrors mode="Off" /&gt; &lt;compilation batch="true" debug="true"&gt;...&lt;/compilation&gt; ... &lt;/system.web&gt; </code></pre> <p>But I still get the standard completely useless SharePoint errors:</p> <pre><code>Unknown Error Troubleshoot issues with Windows SharePoint Services. </code></pre> <p>I know the error is an Exception being thrown by a custom web part I'm writing, but I can't find anywhere that logs the stack trace. Enabling call stacks is my only hope right now and I'm completely lost. Is it possible that there's another setting or overriding web.config entry I need to set?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1906227/does-log4net-support-including-the-call-stack-in-a-log-message 1 Does log4net support including the call stack in a log message Ian Ringrose 2009-12-15T09:30:29Z 2009-12-15T11:56:42Z <p>I wish to include the call stack (e.g. the methods that called me) in a log4net message. Is there a standard way of doing this?</p> <p>(I know this will be slow, but I only need to do it on some errors)</p> http://stackoverflow.com/questions/1906154/custom-windows-error-reporting-on-windows-xp 0 Custom windows error reporting on Windows XP Thomas Schwere 2009-12-15T09:10:06Z 2009-12-15T09:15:05Z <p>Is there a way to customize the data used in windows error reporting on Windows XP SP3? I have a managed application (CLR2.0) and I'd like to create a custom minidump (containing some additional user information) in case of a unhandled exception. This minidump shall then be sent as part of the WER.</p> <p>Thanks,<br> Thomas</p> http://stackoverflow.com/questions/1900857/how-to-see-the-values-of-a-table-variable-at-debug-time-in-t-sql 0 How to see the values of a table variable at debug time in T-SQL? Faiz 2009-12-14T13:14:20Z 2009-12-15T08:22:13Z <p>Can we see the values (rows and cells) in a table valued variable in SQL Server Management Studio (SSMS) during debug time? If yes, how?</p> http://stackoverflow.com/questions/900358/resolving-nameerrors-getting-nameerror-on-railsend-in-railsend-rb-when-using 0 Resolving NameErrors -- Getting NameError on RAILS_END in rails_end.rb When using desert plugin and Community_Engine dr 2009-05-22T23:00:55Z 2009-12-15T05:00:03Z <p>What's an effective approach to debug NameErrors in Rails? </p> <p>I'm trying to use the desert plugin (0.5.0) and the edge version of Community_Engine. I've started from scratch and gone through the installation instructions. When I attempt to start my server, I get this error: "Constant RAILS_END from rails_end.rb not found (NameError)". Problem is I cannot find rails_end.rb, nor can I find a google reference to this file or error.</p> <p>I've verified that the required gems are installed and current. I've dug around google and desert, but haven't found any reference to this constant.</p> <p>Any ideas? Thanks</p> <p>Here's my stack trace:</p> <pre><code>=&gt; Booting Mongrel =&gt; Rails 2.3.2 application starting on http://0.0.0.0:3000 /opt/local/lib/ruby/gems/1.8/gems/desert-0.5.0/lib/desert/rails/ dependencies.rb:15:in `load_missing_constant': Constant RAILS_END from rails_end.rb not found (NameError) from /Users/dmr/.gem/ruby/1.8/gems/activesupport-2.3.2/lib/ active_support/dependencies.rb:80:in `const_missing' from /Users/dmr/.gem/ruby/1.8/gems/activesupport-2.3.2/lib/ active_support/dependencies.rb:92:in `const_missing' from /Users/dmr/dev/lionfold/config/environment.rb:32 from /Users/dmr/.gem/ruby/1.8/gems/rails-2.3.2/lib/ initializer.rb:111:in `run' from /Users/dmr/dev/myapp/config/environment.rb:31 from /opt/local/lib/ruby/vendor_ruby/1.8/rubygems/ custom_require.rb:31:in `gem_original_require' from /opt/local/lib/ruby/vendor_ruby/1.8/rubygems/ custom_require.rb:31:in `require' from /Users/dmr/.gem/ruby/1.8/gems/activesupport-2.3.2/lib/ active_support/dependencies.rb:156:in `require' from /Users/dmr/.gem/ruby/1.8/gems/activesupport-2.3.2/lib/ active_support/dependencies.rb:521:in `new_constants_in' from /Users/dmr/.gem/ruby/1.8/gems/activesupport-2.3.2/lib/ active_support/dependencies.rb:156:in `require' from /Users/dmr/.gem/ruby/1.8/gems/rails-2.3.2/lib/commands/ server.rb:84 from /opt/local/lib/ruby/vendor_ruby/1.8/rubygems/ custom_require.rb:31:in `gem_original_require' from /opt/local/lib/ruby/vendor_ruby/1.8/rubygems/ custom_require.rb:31:in `require' from script/server:3 </code></pre> http://stackoverflow.com/questions/1879454/scrum-how-to-handle-bugs-in-the-sprint-and-how-to-time-estimate-bugs 3 Scrum, how to handle bugs in the sprint and how to time estimate bugs Henrik 2009-12-10T08:26:11Z 2009-12-15T04:21:25Z <p>I'm working in a Scrum project writing firmware code in C for an ASIC. </p> <p>Every so often we have really hard to find bugs. But how do I time estimate these bugs? </p> <p>I always tell the Scrum master I do not have the competence to estimate them because I really hate time-estimation of bugs.</p> <p>How do you guys handle this in your Scrum projects?</p> http://stackoverflow.com/questions/16363/how-do-you-configure-vs2008-to-only-open-one-webserver-in-a-solution-with-multipl 3 How do you configure VS2008 to only open one webserver in a solution with multiple projects? Kevin Goff 2008-08-19T15:09:30Z 2009-12-15T00:52:16Z <p>Starting with 2005, VS started this behavior of when starting debugging session it spawns up a webserver for every project in a solution. I have a solution with 15 projects so it takes a while and is a waste of resources. Is there a way to configure it differently besides just using IIS?</p> http://stackoverflow.com/questions/1567072/visual-studio-debugging-is-not-attaching-to-webdev-webserver-exe 2 Visual Studio Debugging is not attaching to WebDev.WebServer.EXE Aaron Daniels 2009-10-14T15:26:13Z 2009-12-14T22:24:11Z <p>I have a solution with many projects. On Debug, I have three web projects that I want to start up on their own Cassini ASP.NET Web Development servers. In the Solution Properties - Common Properties - Startup Project, I have Multiple startup projects chosen with the three web applications' Action set to Start. All three web development servers start, and all three web pages load.</p> <p>However, Visual Studio is only attaching to two of the <code>WebDev.WebServer.EXE</code> processes. I have to manually go attach to the third process in order to debug it with the debugger.</p> <p>This behavior just started happening, and I'm at a loss as to how to troubleshoot this. Any help is appreciated.</p> <p><strong>EDIT:</strong></p> <p>Also to note, I have stopped and restarted the development servers several times with no change in behavior. Also, when attaching to the process manually, I see that the Type property of the two automatically attached <code>WebDev.WebServer.EXE</code> processes is <strong>Managed</strong>, while the Type property of the unattached <code>WebDev.WebServer.EXE</code> process is <strong>TSQL, Managed, x86</strong>. When looking at the project's properties, however, I am targeting AnyCPU, and do NOT have SQL Server debugging enabled.</p> <p><strong>EDIT:</strong></p> <p>Also to note, the two projects that attach correctly are <a href="http://www.mztools.com/articles/2008/MZ2008017.aspx" rel="nofollow">C# web applications</a>.</p> <pre><code>&lt;ProjectTypeGuids&gt;{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}&lt;/ProjectTypeGuids&gt; </code></pre> <p>The project that is not attaching correctly is a <a href="http://www.mztools.com/articles/2008/MZ2008017.aspx" rel="nofollow">VB.NET web application</a>.</p> <pre><code>&lt;ProjectTypeGuids&gt;{349c5851-65df-11da-9384-00065b846f21};{F184B08F-C81C-45F6-A57F-5ABD9991F28F}&lt;/ProjectTypeGuids&gt; </code></pre> <p><strong>EDIT:</strong></p> <p>Also to note, the behavior is the same on another workstation. So <em>odds are</em> that it's not a machine specific problem.</p>