MonoDevelop远程调试可以在Windows上使用吗
我正在使用 mono-2.6.7 和 monodevelop-2.4,我的操作系统是 Windows 7。
我正在尝试为我自己的运行时实现一个远程调试器(基于 mono,mono 嵌入其中,使用 lang - C#) Novell 为《Moonlight》采用了这种方式。
不幸的是,没有成功...
在 MonoDevelop 中单击“调试”后:
- IDE 进入调试状态,
- 我的运行时启动,
- 成功将 DWP-Handshake 发送到侦听 IDE
- ,然后连接终止,调试结束。
由于某些原因(我绝对不清楚)IDE 在从运行时收到握手后不会发送握手,而只是终止连接。
我使用的代码在另一个问题中: 无法使用 Mono Soft Debugger 远程调试,因为“调试器代理:DWP 握手失败”错误
smb 是否知道是否可以按照 Moonlight 的保存方式来完成?或者说这是不可能的?也许还有另一种解决方案?
I'm using mono-2.6.7 and monodevelop-2.4, my OS is Windows 7.
I'm trying to implement a remote debugger for my own runtime (based on mono, mono is embedded in it, used lang - C#) in a way it's done by Novell for Moonlight.
Unfortunately, no success...
After clicking "Debug" in MonoDevelop:
- IDE is put into debug state,
- my runtime starts,
- successfully sends DWP-Handshake to listening IDE
- and then connection terminates and Debugging ends.
For some reasons (absolutely not clear for me) IDE doesn't send a handshake after recieving it from my runtime but simply terminates a connection.
The code i use is in another question: Can't use Mono Soft Debugger Remote Debugging because 'debugger-agent: DWP handshake failed' error
Does smb know if it can be done the save way it's done for Moonlight? Or it's it's impossible? Maybe there is another solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
证明!有用。问题出在 Mono.Debugger.Soft 中 VirtualMachineManager.ListenInternal(2) 方法引发的未处理异常中。更多详细信息请参见此处 - 无法使用Mono Soft Debugger 远程调试,因为“调试器代理:DWP 握手失败”错误
Prooved! It works. The problem was in unhandled exception thrown by VirtualMachineManager.ListenInternal(2) method in Mono.Debugger.Soft. More details here - Can't use Mono Soft Debugger Remote Debugging because 'debugger-agent: DWP handshake failed' error