Gwt 如何从源自http的页面通过https调用servlet/rpc

发布于 2024-08-29 05:09:19 字数 101 浏览 6 评论 0原文

有没有办法调用 servlet 或从 gwt 客户端进行 gwt-rpc 调用并获取响应。或者仅出于登录目的通过 https 调用 RPC。
请提出任何方法或解决方法来实现上述任务

is there any way to call servlet or make a gwt-rpc call from gwt client and get back the response. Or to call RPC over https only for login purpose.
Please suggest any method or workaround to implement the above task

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

寂寞清仓 2024-09-05 05:09:19

正如我在上一个问题中提到,这违反了同源政策。你做不到。

您可以 POST(使用 FormPanel)到 https 网站,但无法读回数据。即使这样的方法也是不安全的,因为有人可以轻松欺骗帖子 URL。

确保安全的唯一方法是通过 https 提供所有内容。

As I mentioned in your previous question, its a violation of same origin policy. You can't do it.

You can POST (using a FormPanel) to a https website, but you can't read the data back. Even such an approach is unsecure, because someone can easily spoof the post url.

The only way to stay secure is to serve all content via https.

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