What tools will come in handy to debug and monitor SaaS services built on WCF in production environment ?
FYI - No access to the actual server whatsoever. No remoting in, and no access to the file system.
...
One of the awesome things I remember in Visual Basic 6 from years ago that you could just load up an ActiveX exe project into the IDE, set a breakpoint, press Run and whenever someone (either an EXE or a project in a different IDE) called that DLL, your breakpoint would hit.
Is something like this possible with Visual Studio 2008? Can ...
I have an ASP.NET MVC web application which integrates a C# managed library of ours that loads unmanaged plugins to do some file processing. These unmanaged plugins in-turn rely on a few 3rd party libraries to do their dirty work; some of which are causing IIS to crash.
We use the exact same library in a desktop application which is abl...
I have a core java app running on a computer on my network. Can I attach a debugger (netbeans preferred) to this from another computer on the same network?
Please advise how to do this if it is possible, or point me to an article I've had a terrible time googling for it. I don't see why it shouldn't be possible.
Thanks
...
Hi,
I'm debugging a project for iOS 4.0 (simulator) in XCode 3.2.3, and all of a sudden the debugger just stopped working on me. It will hit the first breakpoint and freeze. It will not respond to single stepping, continuing, pausing, etc.
I know I'm not the first person to complain about the XCode debugger, so does anyone have any sor...
EDIT
// open output file for writing
if ( ( outfilefd = fopen( file_name, "w+t" ) ) == NULL )
{
fprintf(stderr, "Unable to create file\n");
exit(1);
}
Write to the file, then need to zip it.
Opening a .z file and then calling def()
FILE *zipFile;
if ( ( zipFile = fopen( "C:\\LOGS\\test.txt.z", "w+t" ) ...
Is there a one-liner I could execute in a javascript console to download and execute a javascript script from a remote source?
I was looking to see if there was a nice way to download this script and use it for experimenting interactively on random pages which may not have say, jQuery loaded.
[edit: I'm aware I could dynamically cre...
What can be done to skip through the parts of code when stepping through code? I find this particularly annoying when the debugger jumps to property gets and sets. Is there way to avoid this?
...
Im trying out some iPhone scroll view tests, but when i load the view, the app just blows up.
I get no debugging information in Xcode, no EXC_BAD_ACCESS, no errors, just
[Session started at 2010-07-16 10:35:21 +0100.]
and
Debugging terminated in the bottom of the debugger window.
I have set Generate Debug Symbols in the target prefer...
I have an in-place vector class that's defined like so:
template<class T>
class svectorbase
{
// ...
protected:
union
{
char* m_char;
T* m_t;
} m_elems;
size_t m_maxsize;
int m_elemCount;
};
template<class T, size_t maxsize>
class svector : public svectorbase<T>
{
protected:
char m_elems[siz...
I've inherited a project consisting of three levels of code. The lowest layer is native C++ that interacts with hardware. This is mature, stable and well-tested. The intermediate level code is C++/CLI, which interacts with top-level C# code that contains the UI elements and some additional functionality. This C# code is incomplete and wa...
I can find information to do what I want in VC++ 6.0 at codeproject.com, but the options it suggests (e.g. /mapinfo:lines) are not supported in VC++ 2005.
...
I just finished (mostly) a major application that I've been working on for a little over a year (off and on). It is around 86k lines of code, 50k of those is from Visual Studio's auto-generated dataset. It's largely a GUI to interacting with the database, generating reports, etc. It deals with money and manages contracts so it is importa...
I'm following these instructions, How to: Launch the Debugger Automatically, and I am able to have debugger being launched, but with a twist: I'm working on a x64 box, trying to debug a Word MANAGED plugin, but since Winword.exe is UNMANAGED and on x64 Visual Studio doesn't support mixed debugging, I'm trapped :-)
Any tip, other than wo...
I have an executable which has to be elevated to succeed (but the debug build has no manifest).
Now, I want to debug it with Visual Studio 2008 and actually it fails due to not beeing elevated. I don't want to run VS as Administrator.
Is there an option in VS or does anybody know another (easy) solution?
...
I'm creating a WinForms application in Visual Studio 2008.
I want to run my application in the debugger and I want the application to run as a user other than the user running Visual Studio. What is the best way to do this?
...
I recently read in a magazine that there is a new commercial developer tool for Windows which monitors a C++ program's execution and creates traces for visual inspection. I, however, cannot remember the tool's name (it is not Insure++ and also not BugTrapper). In the resulting trace, you see every code line that was visited, you can see ...
What's the best way to find the function that's calling the function?
For example, if I have
function first(){
doSomething();
}
// Lots of code
function doSomething(){
alert('Somehow, I know that' + ________ + 'function called me...');
alert('Boink, hit an error, but now you know what function called me');
}
Is there any way ...
I have installed Visual Studio 2008 and am running it as a non-Administrator user.
I have a Web Application project I am developing and would like to debug it using Visual Studio. I can compile and also debug with "Visual Studio Development Server" without problems. But, when I select "Use Local IIS Web server" in my project propertie...
before I upgraded to latest iphone sdk I was able to mouse over variables in the debugger and see their values. Nothing happens now when I mouse over the var. I've tried using "po" statements in the debugger console but i only get a message "No symbol 'myobj' in current context". Is there some debugger setting that I have inadvertentl...