Java 小程序身份验证
我有 Java Applet(J2EE),我想通过使用用户名和密码对他们进行身份验证,使其仅可供特定用户组访问。执行此操作的最佳方法是什么?
I have Java Applet(J2EE), I want to make it accessible only to a certain set of users,by authenticating them using username and password.What is the the best way of doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个基于表单的身份验证的指南可能会有所帮助。
This guide to form-based authentication could be helpful.
确保这一点的方式取决于服务器端的内容?
小程序需要用户名和密码。调用服务器上的某些身份验证服务来对用户进行身份验证。
下一个挑战是维持此身份验证状态。解决方案完全取决于您如何从小程序进行通信。
The way you secure this will depend on what you have on server side?
Applet takes username and password. Calls some auth service on the server to authenticate the user.
Next challenge would be to maintain this authentication state. Solution would totally depend on how you are communicating back from your applet.