如何使用 Zend 调试器和 PDT 在 Eclipse 中调试 https:// 站点
我已经使用 Eclipse 3.4.1 以及 Zend Debugger 和 PDT 成功调试了多个项目。我现在有一个使用 https:// 在本地运行的网站。无法在 Eclipse 中设置到达那里的调试配置。有什么想法吗?非常感谢,玛丽·伊迪丝
I have been successfully debugging several projects using Eclipse 3.4.1 with Zend Debugger and PDT. I now have a site running locally using https://. Have not been able to set a Debug Configuration in Eclipse that gets there. any ideas? Many thanks, Mary Edith
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想查看应用程序发送/接收的内容,但 HTTPS 隐藏了它,那么您可以使用带有 stunel 的普通 HTTP 查询,它将 SSL“添加”到套接字传输。我用它来监视我的 axis2 应用程序: 如何查看 Axis2 发送的内容以及接收?
编辑:
stunnel
文档中有一个客户端无法使用 SSL 的示例:http://www.stunnel.org/examples/https_client.html在您的情况下,您可以配置
stunnel
如下:然后在 Eclipse 对话框中使用 URL:
之间的通信Eclipse 和
stunnel
将采用纯文本形式,但stunnel
和www.mylocalsecuresite.com:443
之间将进行加密。If you want to see what is send/received by your application, but HTTPS hides it, then you can use normal HTTP query with stunel which "adds" SSL to socket transmission. I use it to monitor my axis2 application: How to see what Axis2 sends and receives?
EDIT:
There is example in
stunnel
doc where client cannot use SSL: http://www.stunnel.org/examples/https_client.htmlIn your case you can configure
stunnel
like:Then in Eclipse dialog with URL use:
Communication between Eclipse and
stunnel
will be in plain text, but betweenstunnel
andwww.mylocalsecuresite.com:443
will be encrypted.