html表单提交用java处理响应页面
我有一个 PayPal“立即付款”按钮。如果我点击它 - 一个 POST 请求将发送到 PayPal,并且我当前的视图将被重定向到我可以付款的 PayPal 网站。
在我的应用程序中,我想用一个按钮执行 2 个操作 - 所以我必须用纯 java 自己构建 paypal 按钮,并发送一个 post 请求 tp paypal。
现在我得到一个响应页面(html),但我不知道如何执行与单击按钮相同的重定向。我可以在我的网址下显示页面(这不是我想要的),但我无法执行与原始按钮相同的重定向。
所以我的问题是:
为什么这个重定向真的会发生以及如何在纯 java 中执行此操作(这是一个 JSF1.2 项目)
或者对于我的问题还有其他解决方案吗?
多谢!
k2
I have a PayPal "pay now" button. If I click it - a POST request is sent to paypal and my current view gets redirected to the paypal site where I can pay.
In my application I want to do 2 Actions with one button - so I have to build the paypal button on my own in plain java and send a post request tp paypal.
Now I get a response page (html) but I have no idea how I can do the same redirect as done by clicking the button. I could display the page under my url (wich is not what I want) but I can't do the same redirect as the original button.
So my questions are:
Why does this redirect really happen and how can I do this in plain java ( it's a JSF1.2 project)
or is there an other solution to my problem?
thanks a lot!
k2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的解决方案是,PayPal 提供通过电子邮件付款的服务。我使用此链接来解决此问题。
My solution was, that paypal offers payment via email. I took this link to work around this problem.