I'm trying to implement the attach side of the debug engine but keep getting:
Unable to connect to '192.168.178.18:5555'.
Where 192.168.178.18:5555 is the qualifier/port name. I've implemented
PortSupplier: IDebugPortSupplier2, IDebugPortSupplierDescription2, enum returns a list of
DebugPort: IDebugPort2, IDebugPortEx2, IDebugPortNotify2, IConnectionPointContainer; enumProcesses returns a list of
DebugProcess: IDebugProcess2, IDebugProcessEx2
DebugProgram: IDebugProgram2
if i implement IDebugPRocess2.EnumPrograms it ends up calling my debugprogram, where I return the debug engine guid. But then I get the above message. If i don'tt return any programs, I do get a proper list of processes but can't attach.
WHat could cause the cannot connect error?
Carlo Kok