473,395 Members | 2,006 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,395 software developers and data experts.

PrincipalPermission & N-Tier application

I am writing a new application which uses Forms Authentication, and has been
seperated into layers (UI, Logic, Data Access). Right now all the layers are
self contained in my application...which may be broken out at a later date.
Also these layers have a seperate namespace as well such as
BusinessLogicLayer, DataAccessLayer, etc... On my methods within the
Business Logic and Data Access, I am wanting to use the Principal Permission
Attribute.

For example I have a class called State & StateCollection which holds U.S.
State information such as name and FIPS code. One method called GetStates()
demands that a user have a certain role.

''' <summary>
''' Gets all states and their associated information
''' </summary>
''' <returns>A collection of states</returns>
<PrincipalPermission(SecurityAction.Demand, Role:="modifyPropects")_
Public Shared Function GetStates() As StateCollection
Dim dbConn As DataAccessLayer.DataAccessBase =
DataAccessLayer.DataAccessBaseHelper.GetDataAccess Layer
Dim dt As Data.DataTable = dbConn.SelectStates()
Dim stCol As New StateCollection

For Each row As Data.DataRow In dt.Rows
stCol.Add(New State(row.Item("stateFIPS"), row.Item("state"),
row.Item("code")))
Next

Return stCol

End Function

When I try to call this method from the UI the principal permission
attribute specified in the business logic layer is ignored, and the states
list is displayed...It should give me a security exception. However if I do
this instead: If HttpContext.Current.User.IsInRole("modifyPropects" ) and
throw an exception manually it works. Thus, I know roles are getting
assigned as this type of check does work ok.

Can anyone tell me how to properly set up the global.asax file to allow the
principal permission attribute to function in an N-Tier type layout? I was
trying to follow:
http://www.leastprivilege.com/Contex...Principal.aspx but I
am not having any luck.

Jul 7 '06 #1
0 919

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

Similar topics

9
by: Collin VanDyck | last post by:
I have a basic understanding of this, so forgive me if I am overly simplistic in my explanation of my problem.. I am trying to get a Java/Xalan transform to pass through a numeric character...
1
by: DrTebi | last post by:
Hello, I have the following problem: I used to "encode" my email address within links, in order to avoid (most) email spiders. So I had a link like this: <a...
0
by: Thomas Scheffler | last post by:
Hi, I runned in trouble using XALAN for XSL-Transformation. The following snipplet show what I mean: <a href="http://blah.com/?test=test&amp;test2=test2">Test1&amp;</a> <a...
0
by: zhuang | last post by:
Hi, I have problem with below code: WindowsPrincipal principal ; principal = new WindowsPrincipal(WindowsIdentity.GetCurrent()); WindowsIdentity identity = (WindowsIdentity)...
8
by: Nathan Sokalski | last post by:
I add a JavaScript event handler to some of my Webcontrols using the Attributes.Add() method as follows: Dim jscode as String = "return (event.keyCode>=65&&event.keyCode<=90);"...
14
by: Arne | last post by:
A lot of Firefox users I know, says they have problems with validation where the ampersand sign has to be written as &amp; to be valid. I don't have Firefox my self and don't wont to install it only...
12
by: InvalidLastName | last post by:
We have been used XslTransform. .NET 1.1, for transform XML document, Dataset with xsl to HTML. Some of these html contents contain javascript and links. For example: // javascript if (a &gt; b)...
7
by: John Nagle | last post by:
I've been parsing existing HTML with BeautifulSoup, and occasionally hit content which has something like "Design & Advertising", that is, an "&" instead of an "&amp;". Is there some way I can get...
3
by: Jeroen | last post by:
Hi, Normally my programming style is as follows: /****************/ if ( SomeObject.CanYouDoThis() == true) SomeObject.DoStuff(); else MessageBox.Show("Nope, sowwy..."); /****************/
0
by: codefragment | last post by:
Hi On a machine called 'machineName', a user called userName is a member of the ora_dba group. I can see this in computer management. Why then does the below throw an exception? ...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
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...

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.