First-chance exception at <addr> in <myapp>: 0x000006BA: The RPC server is unavailable

1

What does it mean: "First-chance exception at in : 0x000006BA: The RPC server is unavailable" ?

this debug message appears in Debug output of visual studio debugger when I using socket connection, but I don't know what operation initiates this message...

exception
sockets
asked on Stack Overflow Oct 15, 2008 by zakker

3 Answers

5

"First-chance exception" occurs when the exception is thrown, before anyone catches it. Usually, these are benign, and can be ignored (because someone is going to catch it).

You can get the debugger to break when the exception is thrown, whether or not someone later catches it.

In Visual Studio, this is done by choosing Debug / Exceptions and putting a check in the "Thrown" column for the exceptions you're interested in. Then, when the exception is thrown, the debugger will break at the relevant place.

Note that you might end up in the middle of nowhere (i.e. in disassembly), so make sure that you've got your debugging symbols configured correctly.

Also note that some exceptions aren't in the list by default, so you'll have to click the "Add..." button in that dialog.

answered on Stack Overflow Oct 15, 2008 by Roger Lipscombe
3

This is most likely a bug (see these threads: 1 and 2).

I get this when debugging a C# application that calls into a COM object written in C++ when the COM object calls WNetOpenEnum (which succeeds, by the way). My system is Windows 7 x64 SP1 and fully patched, Visual Studio 2010. It happens regardless if VS is started as elevated process or normally.

answered on Stack Overflow Jan 24, 2012 by Helge Klein
0

The debugger reports you likely have not enabled remote debuggimg.

Check if you have Remote Procedure Call service enabled and running (MMD.exe process). This service is required by remote debugging feature.

You may try to follow How to turn on remote debugging

answered on Stack Overflow Dec 14, 2009 by mloskot

User contributions licensed under CC BY-SA 3.0