473,396 Members | 1,734 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

how to make SqlRoleProvider.ApplicationName thread safe

Hi

I'm currently working on a new portal for an online university, and we need
write code that manages roles for multiple applications. To tell the
SqlRoleProvider which Application we are currently managing I am using the
SqlRoleProvider.ApplicationName Property which is not thread safe. My
question is how do I make this property thread safe? Here's a sample of the
code.

....

Roles.Provider.ApplicationName = "Chemistry101";
Roles.AddUsersToRoles("Bob, Peter", "Student");
Roles.CreateRole("TeacherAssistant");
Roles.Provider.ApplicationName = "Chemistry239";
Roles.AddUsersToRoles("Josh, Sam", "Teacher");
Roles.AddUsersToRoles("Frank, Hui", "Student");
Roles.DeleteRole("LabMonitor");

....

Also could anyone tell me if the following class would make the
ApplicationName Property thread safe?

public class EconcordiaRoleProvider : SqlRoleProvider
{
private static Object mutex = new Object();

public EconcordiaRoleProvider() : base()
{

}

public override string ApplicationName
{
get
{
lock(EconcordiaRoleProvider.mutex)
{
return base.ApplicationName;
}
}
set
{
lock (EconcordiaRoleProvider.mutex)
{
base.ApplicationName = value;
}
}
}
}

Thank you for the time you have given this post, and I hope to hear from you
in the near future. If you have any advice or suggestions, please don't
hesitate to reply to this post.

Cheers
Francis
Apr 7 '06 #1
2 1358
Two things:
1.) Looks like you're going to be doing a lot more reads than writes,
use a readerwriterlock
2.) You should be using an instance variable to lock in your case (
lock(this)), not a static variable since you're synchronizing a
non-static resource.

Apr 7 '06 #2
On Fri, 7 Apr 2006 11:01:00 -0400, Francis Reed wrote:
Hi

I'm currently working on a new portal for an online university, and we need
write code that manages roles for multiple applications. To tell the
SqlRoleProvider which Application we are currently managing I am using the
SqlRoleProvider.ApplicationName Property which is not thread safe. My
question is how do I make this property thread safe?


Why do you need it to be thread safe? Do you realize the merely having
muliple web users using it doesn't violate thread consistency? The only
reason you would need it to be thread safe is if you are launching
background threads within your pages, which frankly is a difficult thing to
track and manage anyways, and generally shouldn't be done unless you really
know what you are doing.
Apr 8 '06 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Jonathan Burd | last post by:
Greetings everyone, Here is a random string generator I wrote for an application and I'm wondering about the thread-safety of this function. I was told using static and global variables cause...
3
by: BoloBaby | last post by:
All, I believe I am having a threading problem. Class "BELights" is part of a larger DLL that is used by my main application. A user control (of type BESeat) within the main application raises...
2
by: Aaron Cutlip | last post by:
I have been looking all over and have seen many possible ways to create a Syncronized Shared Function in VB.NET, but I would like some advice that will make my life easier. Given the following...
6
by: Samuel R. Neff | last post by:
I'm having weird results with a form that is already displayed modally (via ShowDialog) displaying a second form via ShowDialog. The last form is not modal even though it's called with ShowDialog....
7
by: Alexander Walker | last post by:
Hello I want to get the value of a property of a control from a thread other than the thread the control was created on, as far as I can see this is not the same as invoking an operation on a...
0
by: Francis Reed | last post by:
Hi I'm currently working on a project that uses roles and membership, and I decided to derived from the SqlRoleProvider as shown below. public class EconcordiaSqlRoleProvider : SqlRoleProvider...
13
by: arun.darra | last post by:
Are the following thread safe: 1. Assuming Object is any simple object Object* fn() { Object *p = new Object(); return p; } 2. is return by value thread safe?
1
by: Max2006 | last post by:
Hi, Can I use ActiveDirectoryMembershipProvider and SqlRoleProvider at the same time? I need to store the list of all my user/passwords in AD and users' roles in SQL Server. How is it possible?...
82
by: Bill David | last post by:
SUBJECT: How to make this program more efficient? In my program, a thread will check update from server periodically and generate a stl::map for other part of this program to read data from....
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.