如何在 GWT-RPC 应用程序中从 Window Authentication 获取用户名?
正如问题所述,我可以在 GWT-RPC 应用程序中获取 Windows 用户名吗?
编辑:注意:System.getProperty("user.name");
在 GWT-RPC 中抛出错误
方法 getProperty(String) 对于类型 System 未定义
As the question say, can I get Windows Username in a GWT-RPC application?
Edit : NOTE: System.getProperty("user.name");
throws error in GWT-RPC
The method getProperty(String) is undefined for the type System
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
System.getProperty("user.name");
将返回用户名。编辑:我发现的是Apache华夫饼。 WAFFLE - Windows 身份验证功能框架(精简版)是一个本机 C# 和 Java 库,可完成 Windows 身份验证的所有操作(协商、NTLM 和 Kerberos)。
这是其中之一符合您要求的示例。
Use
System.getProperty("user.name");
that will return the username.EDIT : What I found is Apache waffle. WAFFLE - Windows Authentication Functional Framework (Light Edition) is a native C# and Java library that does everything Windows authentication (Negotiate, NTLM and Kerberos).
This is one of the example which matches your requirement.
您可以通过以下方式获取 Windows 用户名
然后您可以将其包装在 GWT-RPC 应用程序中。
You can get windows user name by
Then you can wrap it in your GWT-RPC app.