DD段落中的认证类型混淆
谁能告诉我为什么以下段落不正确:
如果您的部署描述符 正确声明身份验证 BASIC 类型,容器 自动请求用户名并 每当用户开始新的操作时输入密码 会议。
Could anyone please tell me why the following paragraph is incorrect:
If your deployment descriptor
correctly declares an authentication
type of BASIC, the container
automatically requests a user name and
password whenever a user starts a new
session.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因为当用户尝试访问受保护资源(如描述符中定义)时,容器只会请求(如“向浏览器发送身份验证质询”)用户名/密码;不是在创建用户会话时。
详细信息请参见 JavaEE 教程
Because container would only request (as in "send an authentication challenge to browser") user name / password when user attempts to access a protected resource (as defined in descriptor); not when user session is created.
Details are in JavaEE tutorial