仅当参数正确时,对 j_security_check 的请求才返回 408 错误

发布于 2024-10-30 08:40:29 字数 351 浏览 1 评论 0原文

我想从 servlet 向 j_security_check 发送请求并从响应中获取身份验证 cookie。代码:

String url = "http://someserver:8080/j_security_check?j_username=user&j_password=qwerty";
HttpURLConnection connection = (HttpURLConnection) new URL(url).openConnection();

如果我输入了错误的身份验证参数,那么在响应中我会得到一个默认的错误登录页面,但如果我输入了正确的身份验证参数,我会得到服务器代码 408。出了什么问题?

I want to send request to j_security_check from servlet and get auth cookie from response. Code:

String url = "http://someserver:8080/j_security_check?j_username=user&j_password=qwerty";
HttpURLConnection connection = (HttpURLConnection) new URL(url).openConnection();

If I put wrong auth parameters then on response I get a default wrong-login page, but if I put right auth parameters I got server code 408. What's wrong?

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

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

发布评论

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

评论(1

所有深爱都是秘密 2024-11-06 08:40:29

要使用 j_security_check auth 获取 tomcat 服务器上的某些资源,需要执行三个步骤:

  1. 将 GET 请求发送到所需的私有资源,作为响应,您将获得一个 cookie(标头“Set cookie”。
  2. 使用 cookie 发送请求(来自步骤 1)到 j_security_check 时,您应该收到代码 302 - “暂时移动”。
  3. 现在您可以使用相同的 cookie 重复请求私有资源,您将获得所需的资源数据。

To get some resource on the tomcat server with j_security_check auth it is necessary to implement three steps:

  1. Send GET request to the needed private resource, in response you get a cookie (Header "Set cookie".
  2. Send request with cookie (from step 1) to the j_security_check. On response you should get code 302 - "Moved Temporarily".
  3. Now you can repeat request to the private resource with same cookie, on responce you get needed resource data.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文