views:

139

answers:

1

Hi

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?

+2  A: 

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
Kusek
78lro