如何使用 Zend 调试器和 PDT 在 Eclipse 中调试 https:// 站点

发布于 2024-10-02 15:09:18 字数 130 浏览 0 评论 0原文

我已经使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

山田美奈子 2024-10-09 15:09:18

如果您想查看应用程序发送/接收的内容,但 HTTPS 隐藏了它,那么您可以使用带有 stunel 的普通 HTTP 查询,它将 SSL“添加”到套接字传输。我用它来监视我的 axis2 应用程序: 如何查看 Axis2 发送的内容以及接收?

编辑:

stunnel 文档中有一个客户端无法使用 SSL 的示例:http://www.stunnel.org/examples/https_client.html

在您的情况下,您可以配置 stunnel 如下:

[https]
; https://www.mylocalsecuresite.com:443/myapp/AppService
accept  = 88
connect = www.mylocalsecuresite.com:443

然后在 Eclipse 对话框中使用 URL:

localhost:88

之间的通信Eclipse 和 stunnel 将采用纯文本形式,但 stunnelwww.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.html

In your case you can configure stunnel like:

[https]
; https://www.mylocalsecuresite.com:443/myapp/AppService
accept  = 88
connect = www.mylocalsecuresite.com:443

Then in Eclipse dialog with URL use:

localhost:88

Communication between Eclipse and stunnel will be in plain text, but between stunnel and www.mylocalsecuresite.com:443 will be encrypted.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文