Ektron 用户更改密码吗?

发布于 2024-07-21 07:49:53 字数 130 浏览 3 评论 0原文

我有一个安装了 Ektron 的 Ektron 客户端。 他们希望添加将密码更改为他们想要的内容的功能。 我需要关心 ektron 部分还是直接进行编辑?

有没有简单的方法可以做到这一点? 任何信息链接将不胜感激。

I have a Ektron client with Ektron installed. They would like to add the functionality to change a password to something they want. Do I need to be concerned with the ektron part or just go ahead and make my edit?

Is there an easy way to do that? Any links to information would be greatly appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

椵侞 2024-07-28 07:49:53

如果您谈论的是 Ektron CMS400 会员用户,您可以使用 Web 服务方法:

User.ResetMembershipUserPassword

如果您尝试为普通 CMS400 用户设置它,那么您就不走运了。 管理员需要重置其密码(如果他们忘记了),用户需要重新登录到工作区并在那里更改密码。

更新

该方法将密码重置为随机值。 要将密码设置为所需的值,您必须使用:

Ektron.Cms.BusinessApi.dll

Ektron.Cms.UserAPI.ResetMembershipUserPassword(string Username, 
                                               string oldPassword, 
                                               string newPassword)

If you're talking about Ektron CMS400 Membership Users, you can use the Web Service Method:

User.ResetMembershipUserPassword

If you're trying to set it for regular CMS400 users, you're out of luck. The administrator will need to reset their password (if they've forgotten it) and the user will need to log back in to the workarea and change their password there.

UPDATE

That method resets the password to a random value. To set the password to a desired value, you'll have to use:

Ektron.Cms.BusinessApi.dll

Ektron.Cms.UserAPI.ResetMembershipUserPassword(string Username, 
                                               string oldPassword, 
                                               string newPassword)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文