MOSS SSP 和 asp.net 会员数据库

发布于 2024-08-04 07:33:57 字数 139 浏览 1 评论 0原文

我们已将 MOSS 配置为使用 asp.net 成员资格数据库,现在想要配置我们的共享服务提供程序以导入或使用我们的 aspnet 成员资格数据库中的信息。

不过,我们只将 LDAP 和 BDC 视为导入选项,有人可以建议如何最好地解决这个问题吗?

We have MOSS configured to use the asp.net membership database and now want to configure our Shared Services Provider to import or use the information in our aspnet membership database.

We only see LDAP and BDC as import options though, can anyone suggest how best to go about this?

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

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

发布评论

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

评论(1

゛清羽墨安 2024-08-11 07:33:57

SharePoint MOSS 开箱即用,仅支持 Active Directory 中的用户配置文件。如果用户详细信息位于单独的 FBA 数据库中,则必须编写自定义代码才能从数据库中提取信息。

在我们的一个项目中,我们一直在使用编码进行导入。

UserProfile profile = userProfileManager.CreateUserProfile("Provider name:username")

请参阅以下链接了解更多详细信息

  1. FBA 的完整详细信息
  2. 示例代码在代码中创建用户配置文件的片段

SharePoint MOSS, out of the box supports only the User Profiles from the Active Directory.In your case of user details in the separate FBA DB you will have to write a Custom Code to pull the information from the DB.

In one of our project we have been doing a import using the coding.

UserProfile profile = userProfileManager.CreateUserProfile("Provider name:username")

Refer the following links for more details

  1. Complete Details on FBA
  2. Example code snippet to create a User Profile in Code
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文