I have a C# Console app in VS C# Express 2008. The program needs to read a few files at runtime, which I would like to place in the same directory as the .EXE for convenience. But of course there are two .EXEs, one debug and one release, and I don't want to copies of everything. What's the best way to manage this?
...
I have a WCF service defined, it accepts JSON and maps that JSON to an object at which point I can then begin debugging code.
Sometimes, the object fails to create. Most recently my service had a BodyStyle of Wrapped but should have been Bare. In this case I would have liked to watch the request come in and see what happens to it as it ...
hi
i want to test my application which involves one server and a few clients.
it is necessary that 2 clients at least will be connected to the server in order to test it's functionality.
i succeeded to run one client and the server on the same machine and debug it.
is it possible to run 2 clients at the same times?
the problem is that th...
Is the 5 Why analysis a better better approach to find root cause of a problem?
while doing it,will it become like blaming game?
...
When an assert fails or there is a segmentation fault, it would be very convenient that one of the following happens:
Program ask whether to run a debugger.
Program waits with crashing until debugger is attached.
Program leaves something (core dump?) that we can resume execution from this point and investigate.
The question is quite ...
What tips and tricks do you have for debugging AppleScript? Is there a debugger? If not, what is the best way to insert "prints" to display the value of variables? Is there a way to "pretty print" more complicated data structures?
...
I am fairly new to remote debugging in Visual Studio, and by new I mean I have never done it before. Here are the steps I have taken to try to remotely debug an application on one of the servers in our network:
open a website in VS2008 "\\server\website"
Start the msvsmon service on "server" with "no authentication" and "allow any use...
Are there any differences between add to watch and add to quick watch?
...
I am debugging an issue, where there is a thread which continues to run after the main thread has exited. It is stuck in a loop where it is waiting for another thread to change a variable.
I am trying to understand in what situations a process will continue running after the main thread has exited. I am using
32 bit linux
g++
pthreads...
I am building the debug version of my app, with full symbols. I set a breakpoint on the following line:
throw std::range_error( "invalid utf32" );
When the breakpoint hits, my stack looks normal. I can see all my routines. But if I run, and let the exception get thrown, I see a worthless stack. it has MyApp.exe!_threadstartex() towards...
I am working on creating a windows mobile application and I have a quick question. I have looked around for the answer and cant find anything. Is it possible to run a windows mobile application on a physical hardware device from visual studio? I don't need to be able to debug really, I just would like to be able to select my device and h...
I have remote debugger setup on both my client and remote machine. I'm just looking for how to use it to debug an ASP.NET website. All Google searches have failed to answer my specific question. Basically, I have open the website in Visual Studio... so where do I go from there?
...
Sometimes I get the message that the breakpoint will not be hit, and no symbols will be loaded.
The red icon in vs.net changes color, and the debug mode just doesn't work.
what is the reason for this?
...
On one dev machine, the standard method for enabling SharePoint debugging is not working. From c:\inetpub\wwwroot\wss\VirtualDirectories\80\web.config:
<SharePoint>
<SafeMode MaxControls="200" CallStack="true" DirectFileDependencies="10" TotalFileDependencies="50" AllowPageLevelTrace="false">...</SafeMode>
...
</Sharepoint>
<syste...
We've all had them, errors or bugs that have lost us lots of time. I've seen it time and time again, the first 90% of the coding work for a given project takes 10% of the total time. It's that last 90% of the time you spend looking for that rogue bug that's really only about 10% of the coding work. That one thing that just doesn't wan...
Hi, all.
Does anyone know of any tools out there that will let me run and debug a VXML application visually? There are a ton of VXML development tools, but they all require you to build your application within them.
I have an existing application that uses JSPs to generate VXML, and I'm looking for a way to navigate through and debug ...
I have a servlet hosted in the glassfish server. i want to communicate with it using telnet to understand what is going on behind the scenes when using html form get method.
What should i give in the Host field of the HTTP request?
Get /WebApplication1/NServlet HTTP/1.1
Host: localhost
If i want to send custom properties in the HTTP ...
Hello,
I'm learning C++ and using VS C++ 2008 Express.
I have a simple project with 2 code files.
One is for my Class and the other is "_tmain()".
My class file is using: template <typename T> code.
The program seems to run fine, but I can't step into my class file code in c++ view. I have to look at the assembly code.
I can step in...
Hi.
The problem is: my HTC Touch Dual does not support debugging normally? (And all other HTC Touch Dual PDAs have the same problem too)
Sometimes I can start debugging with "step over/into", but can't use breakpoints. And "steps" will cause control miss soon. Sometimes when I run application from visual studio it can show exception on...
I'm having trouble tracking down a bug which is causing a button to get disabled.
Is there a way to have firebug break if the button state is touched in javascript?
...