JApplet:getAppletContext().showDocument() 与 POST 数据?

发布于 2024-10-16 22:06:32 字数 377 浏览 3 评论 0原文

我必须开发一个重定向到另一个网页的java小程序。通常我使用“showDocument(URL ul)”方法来做到这一点。但在这种情况下,我必须向此页面发送大量数据。所以我需要通过 POST 来完成。但 showDocument 只允许 GET 方法。

我的问题:是否可以从 japplet 内重定向到另一个网页并在同一请求中发送 POST 数据(如 showDocument() 但带有 POST 数据)? - 我知道我可以从小程序内执行 POST 请求 - 但这将在小程序的上下文中发生。

这有点复杂,因为调用小程序的脚本在受客户端身份验证保护的服务器上运行。所以我需要使用浏览器执行请求(因为他将被验证) - 如果我从小程序内执行这些请求,小程序必须再次进行身份验证...

谢谢 丹尼尔

i have to develop a java-applet which redirects to another webpage. Normaly i use the "showDocument(URL ul)"-method to do that. But in this case i have to send a lot of data to this page. So i need to do it via POST. But showDocument just allows GET-method.

My question: Is it possible to do a redirect to another webpage from within a japplet AND to send POST Data in the same request (like showDocument() but with POST data)? - I know that i can do a POST request from within the applet - but this will happen in the applet's context.

It's a bit complicated because the script from which the applet is called, runs on a client-auth protected server. So i need to do the requests with the browser (because he will be authenticated) - if i do these requests from within the applet, the applet have to authenticate again...

thanx
daniel

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

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

发布评论

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

评论(1

巨坚强 2024-10-23 22:06:32

直接使用 Java Applet API 这是不可能的 - showDocument 是您唯一拥有的东西,并且它仅支持 GET。您也许可以使用 JavaScript 桥做类似的事情(即从小程序调用 javascript 函数,然后像浏览器一样将 POST 请求发送到服务器(并在新的浏览器窗口中显示结果),但我从来没有用过这个。

Directly with the Java Applet API this is not possible - showDocument is the only thing you have, and it supports only GET. You may be able to do something like this with the JavaScript bridge (i.e. call javascript functions from the applet, which then send the POST request to the server like the browser would (and show the result in a new browser window), but I never used this.

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