从 FROM 发送到银行时出现 ssl_error_rx_record_too_long
我正在尝试向银行发送包含付款详细信息的信息。 银行告诉我,我必须使用 ssl 向他们的 URL 发送带有操作的 POST:
...(所有隐藏值)
我想做的是发送带有标头的所有信息(位置:'https://www.bankurl.com?var1=111&var2=222&var3=333&...') 这与 POST FORM 的工作原理相同吗?
我得到的只是这个错误 ssl_error_rx_record_too_long,我该如何解决这个问题?是我服务器的问题吗?或者银行服务器?
我的服务器上没有 SSL,但银行告诉我不需要它。
有人知道答案吗? 谢谢分配!
i am trying to send a to the bank with the details of the payment.
The bank tells me that i have to make a POST with action to their URL with ssl:
... (all hidden values)
what im trying to do is send all the info with a header(location: 'https://www.bankurl.com?var1=111&var2=222&var3=333&... ')
those this work the same as a POST FORM?
All i get is this error ssl_error_rx_record_too_long, how can i fix this? is it problem of my server? or the banks server?
On my server i havent got SSL, but the bank has told me i dont need it.
Any body knows the answer?
thank allot!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我用表单和java自动提交来做到这一点。
一切顺利。
i did it with the form and an auto submit with java.
all worked well.