仅当参数正确时,对 j_security_check 的请求才返回 408 错误
我想从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要使用 j_security_check auth 获取 tomcat 服务器上的某些资源,需要执行三个步骤:
To get some resource on the tomcat server with j_security_check auth it is necessary to implement three steps: