martialarts Posted July 25, 2006 Posted July 25, 2006 Hi. I have 2 web applications that share users. Only one of the apps is currently .NET 2.0 and I need the .NET 1.1 app to add users to the aspnetdb tables for the .NET 2.0 app to read. The Membership and Roles classes both have a scope of the app they are called from within, so the application you want to add the users to is not a parameter. I can call the stored procedure dbo.aspnet_Membership_CreateUser directly but am wondering if there is a cleaner solution such as another class I'm not aware of. Thanks! Quote
Administrators PlausiblyDamp Posted July 26, 2006 Administrators Posted July 26, 2006 It might be easiest to create a .Net web service that deals with the .Net 2 Membership / Role providers and then just call this service from your .Net 1.1 application. Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.