Wrox Programmer Forums
Go Back   Wrox Programmer Forums > ASP.NET and ASP > ASP.NET 4 > BOOK: Beginning ASP.NET 4 : in C# and VB
|
BOOK: Beginning ASP.NET 4 : in C# and VB
This is the forum to discuss the Wrox book Beginning ASP.NET 4: in C# and VB by Imar Spaanjaars; ISBN: 9780470502211
Welcome to the p2p.wrox.com Forums.

You are currently viewing the BOOK: Beginning ASP.NET 4 : in C# and VB section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old September 16th, 2013, 12:58 PM
Friend of Wrox
 
Join Date: Mar 2011
Posts: 126
Thanks: 39
Thanked 2 Times in 2 Posts
Default Chapter 16 - Membership, Role, and Profile Web Services

Hi Imar,

I've been reviewing the different chapters to get a better understanding of how things work and focusing on the "How it works" sections.

I had a question in related to how the Membership, Role, and Profile web services are used?

For example, the Membership web application service is used by using the login controls. The login controls talk to the db via the configured membership provider using the membership service (I hope I'm saying this correctly).

So this made me wonder how the Role Mangager (Role Service) is used. Is it correct to say that the Role Service is used by using the WSAT, <Location> element in Web.config, LoginViewControl, and Role API - do all of these somehow talk to the Sql server db via the configured role provider?

Thank you.

Tulsi
 
Old September 17th, 2013, 03:00 PM
Imar's Avatar
Wrox Author
 
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
Default

Hi there,

Quote:
The login controls talk to the db via the configured membership provider using the membership service (I hope I'm saying this correctly).
Yes, that's correct. The Membership service has a fixed API that uses a configured provider under the hood. That way, you can swap providers (through configuration) and everything continues to work.

Quote:
Is it correct to say that the Role Service is used by using the WSAT, <Location> element in Web.config, LoginViewControl, and Role API - do all of these somehow talk to the Sql server db via the configured role provider?
Not entirely. Roles are retrieved at login and then stored in a cookie (when cacheRolesInCookie is true) or retrieved on each request. They are then associated with the current user that is associated with the current request. Other .NET functionality, such as URL Authorization (which uses the <location /> element) can then use these roles without ever knowing about the Role Manager.

The WSAT uses the Role API (and thus the configured role provider under the hood) extensively to manage the roles in the database.

Hope this helps,

Imar
__________________
Imar Spaanjaars
http://Imar.Spaanjaars.Com
Follow me on Twitter

Author of Beginning ASP.NET 4.5 : in C# and VB, Beginning ASP.NET Web Pages with WebMatrix
and Beginning ASP.NET 4 : in C# and VB.
Did this post help you? Click the button below this post to show your appreciation!
The Following User Says Thank You to Imar For This Useful Post:
Tulsi (September 23rd, 2013)
 
Old September 23rd, 2013, 11:04 AM
Friend of Wrox
 
Join Date: Mar 2011
Posts: 126
Thanks: 39
Thanked 2 Times in 2 Posts
Default

Thank you for the explanation. Truly very helpful!

Tulsi





Similar Threads
Thread Thread Starter Forum Replies Last Post
Membership and Role Providers thinster BOOK: ASP.NET 3.5 Enterprise Application Development with Visual Studio 2008: Problem Design Solutio 7 October 26th, 2009 06:23 PM
Chapter 16 Profile Problem Will BOOK: Beginning ASP.NET 3.5 : in C# and VB BOOK ISBN: 978-0-470-18759-3 3 April 28th, 2009 04:40 PM
Membership and Role Management Challange Prolifik4life ASP.NET 2.0 Professional 1 March 4th, 2009 08:18 AM
cache membership/role values Maxxim ASP.NET 2.0 Professional 0 October 7th, 2007 05:09 AM
Membership and Role Management frosty ASP.NET 2.0 Basics 1 July 18th, 2006 12:46 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.