在 Restful Web 服务中如何以编程方式获取用户名或密码(基本身份验证)
我在 jboss 上运行的 Java EE 应用程序 (ejb3) 中有宁静的 Web 服务。并且不知道如何以编程方式获取用户名或密码,就像调用服务方法时一样,我希望能够获得与 jaxws 类似的用户主体,
webServiceContext.getUserPrincipal().getName()
否则
(httpServletRequest) <-- request.getUserPrincipal()
我很高兴听到解决方案,谢谢。
I have restful web services in a Java EE application (ejb3) running on jboss. And do not know how to get username or password programmatically, like when service method is called I want to be able to get this user principals as smilar to jaxws
webServiceContext.getUserPrincipal().getName()
or
(httpServletRequest) <-- request.getUserPrincipal()
I would be glad to hear the solutions, thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
[已解决]
我已经找到了解决方案,就在这里;
使用
或
[SOLVED]
I have found the solution, here it is;
Use
Or