active questions tagged roles - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T08:07:28Z http://stackoverflow.com/feeds/tag/roles http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1500954/how-to-implement-a-custom-roleprovider 0 How to Implement a Custom RoleProvider? Dave 2009-09-30T22:20:36Z 2009-11-27T06:00:03Z <p>Hi Guys</p> <p>I'm trying to implement a custom RoleProvider in my ASP.NET MVC application.</p> <p>I've created a custom MembershipProvider and it works, in that I'm able to successfully validate the user. The next step is to implement the RoleProvider to restrict access to certian Controllers to Admin users only. </p> <p>Can anyone provide me with a quick outline of the steps I need to take?</p> <p>The point that I'm at now is I have my controller with the Authorize filter, like so:</p> <pre><code>[Authorize(Roles="Admin")] public class AdminOnlyController : Controller { // stuff } </code></pre> <p>and I have my CustomRoleProvider class, with the following method along with a load of not-implemented Methods:</p> <pre><code>public override string[] GetRolesForUser(string username) { if (username == "dave") { return new string[] { "Admin" }; } } </code></pre> <p>I think I need to add the user to the Role somehow but I don't know how to do that. Ideally the end result would be a scenario where unauthorized users can't access certain controllers, and I in my Views I could determine whether to show links with something like:</p> <p>if (User.IsInRole("Admin")) { // show links to Admin Controllers }</p> <p>Can anyone point me in the right direction?</p> <p>Thanks</p> <p>Dave </p> http://stackoverflow.com/questions/1800517/help-with-roles-in-rails 0 Help with roles in rails NachoF 2009-11-25T22:53:15Z 2009-11-25T22:58:22Z <p>Im trying to use <a href="http://metautonomo.us/2008/09/30/easy-role-based-authorization/" rel="nofollow">this</a> approach.</p> <p>My app is a cms. I have admins, editors, and subscribers. for a blog with categories... its an experimental project so I cant use wordpress or whatever. Admins should be able to do anything, editors should allow be allowed to create/edit/delete content for the category they belong to and suscribers are just allowdwed to view posts.</p> <p>With that role apporach.. what else should I do now? Im lost with this thing... I cant think of many ways to get it done but Im not sure if they would be appropriate... where should the authroization logic be?? do i have to create a databse entry for each method of each of my contollers?.. please heeeeeelp</p> http://stackoverflow.com/questions/1767456/set-property-value-on-master-page-from-content-page 0 Set Property Value on Master Page from Content Page Merk 2009-11-19T23:54:13Z 2009-11-20T00:05:46Z <p>Hello,</p> <p>I tried following the advice posted here: <a href="http://stackoverflow.com/questions/1071920/set-property-value-on-master-page-from-content-page">http://stackoverflow.com/questions/1071920/set-property-value-on-master-page-from-content-page</a>.</p> <p>Specifically the last post about creating a class. However, visual studio keeps giving me an error on my default.aspx.cs page when i try to set the value:</p> <pre><code>using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class _Default : BasePage { protected override int NavHighlight { get { return new{0} ; } } protected void Page_Load(object sender, EventArgs e) { } } </code></pre> <p>It throws an error on <code>new</code>, the error being: <code>cannot inplicity convert anonymoustype#1 to int</code></p> <p>Can someone tell me what i might have done wrong here?</p> <p>Here's what my class looks like:</p> <pre><code>using System; using System.Collections.Generic; using System.Linq; using System.Web; /// &lt;summary&gt; /// Summary description for BasePage /// &lt;/summary&gt; public abstract class BasePage : System.Web.UI.Page { protected abstract int NavHighlight { get; } protected override void OnLoad(EventArgs e) { base.OnLoad(e); if (this.Master != null) { //value assignment } } public BasePage() { // // TODO: Add constructor logic here // } } </code></pre> <p>Thanks.</p> http://stackoverflow.com/questions/1766639/changing-user-roles-through-a-form 1 Changing user roles through a form Eric K 2009-11-19T21:16:59Z 2009-11-19T21:39:56Z <p>I'm trying to create a Rails form that allows an admin user to change the assigned roles of other users. The form I've created registers changes to the user (such as password or login changes), but doesn't register changes to the user's role, which is a separate model. </p> <p>I'm using Acl9 for role-based authentication, which uses a User model, a Role model, and a Roles_user model which links the two.</p> <p>Here's the code I have in my form:</p> <pre><code>&lt;h1&gt;Edit User&lt;/h1&gt; &lt;% form_for(@user) do |form| %&gt; &lt;%= error_messages_for :user %&gt; Login: &lt;%= form.text_field :login %&gt;&lt;br /&gt; Password: &lt;%= form.password_field :password %&gt;&lt;br /&gt; Password Confirmation: &lt;%= form.password_field :password_confirmation %&gt;&lt;br /&gt; &lt;% if current_user &amp;&amp; current_user.has_role?(:admin) %&gt; &lt;%= error_messages_for :roles %&gt; &lt;% fields_for :roles do |role| %&gt; &lt;%= @roles = Role.find(:all, :order =&gt; "name").map {|u| [u.name, u.id] } role.select(:id, @roles ) %&gt; &lt;% end %&gt; &lt;% end %&gt; &lt;%= form.submit "Update" %&gt; &lt;% end %&gt; &lt;br /&gt; &lt;%= link_to "My Profile", account_path %&gt; &lt;%= link_to "Logout", user_session_path, :method =&gt; :delete, :confirm =&gt; "Are you sure you want to logout?" %&gt; </code></pre> <p>I don't get any errors when loading the page, but the selected role doesn't get associated to the user. Any help would be appreciated. Thanks!</p> http://stackoverflow.com/questions/1758884/how-can-i-access-the-meta-class-of-the-module-my-moose-role-is-being-applied-to 4 How can I access the meta class of the module my Moose role is being applied to? Ether 2009-11-18T20:36:18Z 2009-11-19T00:54:08Z <p>I'm using <a href="http://search.cpan.org/dist/Moose/" rel="nofollow">Moose</a> <a href="http://search.cpan.org/~drolsky/Moose-0.92/lib/Moose/Manual/Roles.pod" rel="nofollow">roles</a> to apply some wrapper behaviour around some accessor methods in a class. I want to apply this role to a number of modules, each of which have a different set of attributes whose accessors I want to wrap. Is there a way to access the meta class of the module being applied to, from within the role? i.e. something like this:</p> <pre><code>package My::Foo; use Moose; with 'My::Role::X'; has [ qw(attr1 attr2) ] =&gt; ( is =&gt; 'rw', # ... ); has 'fields' =&gt; ( is =&gt; 'bare', isa =&gt; 'ArrayRef[Str]', default =&gt; sub { [qw(attr1 attr2) ] }, ); 1; package My::Role::X; use Moose::Role; # this should be a Moose::Meta::Class object my $target_meta = '????'; # get Class::MOP::Attribute object out of the metaclass my $fields_attr = $target_meta-&gt;find_attribute_by_name('fields'); # extract the value of this attribute - should be a coderef my $fields_to_modify = $fields_attr-&gt;default; # evaluate the coderef to get the arrayref $fields_to_modify = &amp;$fields_to_modify if ref $fields_to_modify eq 'CODE'; around $_ =&gt; sub { # ... } for @$fields_to_modify; 1; </code></pre> http://stackoverflow.com/questions/1736733/how-to-configure-roles-without-an-app-config 0 How to configure Roles without an app.config? Nestor 2009-11-15T05:56:39Z 2009-11-18T16:27:18Z <p>Can I configure Roles and Membership programmatically? Without an app.config (or web.config) ?</p> http://stackoverflow.com/questions/875595/what-are-some-good-role-authorization-solutions-used-with-authlogic 2 What are some good role authorization solutions used with Authlogic? taelor 2009-05-17T21:59:13Z 2009-11-17T09:12:44Z <p>I am looking for a good role based authorization solution to use alongside Authlogic. Anyone have any good suggestions? Please list some pros and cons from your experience if possible please. </p> http://stackoverflow.com/questions/1705165/drupal6-administer-menu-gone 0 Drupal6: Administer Menu Gone Rosarch 2009-11-10T01:44:48Z 2009-11-16T17:26:36Z <p>In Drupal 6, the administer menu is gone. The super user (<code>uid = 1</code>) can see it, but the Admin role, that has the correct permission, does not. If a user with the Admin role were to go to the pages, they could access them (like <code>nodes/add/content_type</code> or something), but there is no menu. (So hypothetically, the site could be administered by Admins by going direcly to URLs instead of using menus.)</p> <p>Why could this be happening? I've flushed the caches.</p> <p>The Admin role has the <code>Menu Module &gt;&gt; Administer Menu</code> permission. The Authenticated user has this role, too (as a test), but it still doesn't work.</p> <p><strong>UPDATE:</strong> Clarification of above: if an Admin navigates to <code>/admin</code>, he will get an <code>Access Denied</code> error.</p> <p>This is what <code>print_r(debug_backtace());</code> yields:</p> <pre><code>Array ( [0] =&gt; Array ( [file] =&gt; /home/sitename/public_html/subdir/index.php [line] =&gt; 27 [function] =&gt; drupal_access_denied [args] =&gt; Array ( ) ) ) </code></pre> http://stackoverflow.com/questions/1447002/authlogic-and-roles 1 Authlogic and Roles sfusion 2009-09-18T21:56:14Z 2009-11-16T08:37:52Z <p>I am developing an application which users authlogic for authentication.</p> <p>I would like some way of giving users roles so that I can authorize certain actions to certain roles.</p> <p>Is there an 'out of the box' gem or plugin that suits this or would I be better build it from scratch.</p> <p>What would you recommend?</p> http://stackoverflow.com/questions/1727960/how-to-keep-roleprovider-from-overriding-custom-roles 0 How to keep RoleProvider from overriding custom roles? Andrew Arnott 2009-11-13T08:46:22Z 2009-11-13T09:09:42Z <p>I have an custom role provider that gets the roles a user belongs to from a database. I also have a custom authentication module registered in my web.config's httpModules which sniffs incoming HTTP requests and (if it's an OAuth signed request) sets the HttpContext.Current.User property to impersonate the user, and the IPrincipal that it sets includes all the user's roles, plus an extra one called "delegated". </p> <p>The trouble is, after I set my custom IPrincipal, apparently ASP.NET still calls my custom role provider, and then resets the IPrincipal with one that has only the standard roles for that user.</p> <p>If I set <code>&lt;roleManager enabled="false" ...&gt;</code> in my web.config file, the authentication module's assigned roles stick. Obviously though, I want the best of both worlds. How can I use the role provider, but "cancel" the role provider's effect when my authentication module decides to?</p> http://stackoverflow.com/questions/1627744/getting-a-list-of-tasks-that-belong-to-a-role-from-azman 1 Getting a list of Tasks that belong to a Role from Azman Steven 2009-10-26T22:38:42Z 2009-11-12T17:55:23Z <p>I'm using the AZROLESLib which is from the COM references "azroles 1.0 Type Library" and I am trying to create a list of the designated tasks for each role that I have currently set in my authorization manager but when I loop through the tasks for the role, I get the role name.</p> <p>I've looked all around but couldn't find anything that would help.</p> <p>Here's what I got currently (It's not super pretty but i'm just trying to get it working at the moment).</p> <pre><code>AzAuthorizationStoreClass AzManStore = new AzAuthorizationStoreClass(); AzManStore.Initialize(0, ConfigurationManager.ConnectionStrings["AzManStore"].ConnectionString, null); IAzApplication azApp = AzManStore.OpenApplication("StoreName", null); StringBuilder output = new StringBuilder(); Array tasks = null; foreach (IAzRole currentRole in azApp.Roles) { output.Append(currentRole.Name + "&lt;br /&gt;"); tasks = (Array)currentRole.Tasks; foreach (object ob in tasks) { output.Append("&amp;nbsp;&amp;nbsp; -" + ob.ToString() + "&lt;br /&gt;"); } } return output.ToString(); </code></pre> <p><strong>What comes out is</strong>:</p> <ul> <li><p>Administrator -Administrator</p></li> <li><p>Account Manager -Account Manager</p></li> <li><p>Corporate Marketing Specialist -Corporate Marketing Specialist</p></li> <li><p>General Employee -General Employee</p></li> <li><p>Marketing Manager -Marketing Manager</p></li> <li><p>Regional Marketing Specialist -Regional Marketing Specialist</p></li> <li><p>Sales Manager -Sales Manager</p></li> <li><p>Webmaster -Webmaster</p></li> </ul> <p><strong>but what should come out is something like:</strong></p> <ul> <li>Webmaster <ul> <li>Websites Maintain</li> <li>News Maintain</li> <li>Events Maintain</li> <li>Reports Read</li> </ul></li> </ul> <p><hr /></p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1696878/is-this-a-good-data-model-to-implement-strongly-typed-roles 0 Is this a good data model to implement strongly-typed roles? Ragesh 2009-11-08T15:33:17Z 2009-11-08T16:12:34Z <p>Yes, this has been asked before <a href="http://stackoverflow.com/questions/226931/how-to-map-classes-in-nhibernate-using-roles-or-composition">here</a> and <a href="http://stackoverflow.com/questions/1363733/nhibernate-mapping-for-user-roles-and-privileges">here</a>. I'm curious as to whether the approach I'm considering is architecturally sound.</p> <p>Let me start off by trying to describe what I'd like to be able to do with my object model:</p> <pre><code>class Person { ISet&lt;Roles&gt; Roles { get; set; } } class RoleDefinition { string Name { get; set; } } class RoleAssignment { RoleDefinition Definition { get; set; } Person Person { get; set; } } class UserRole : RoleAssignment { public virtual string Login { get; set; } public virtual string Password { get; set; } } </code></pre> <p>With the intent being to be able to work with roles in the following manner:</p> <pre><code>// Find all "users" with a matching login from user in userRolesRepository.FindAll(u =&gt; u.Login.StartsWith("abc")) select user.Person; </code></pre> <p>To do this, I'm considering the following data model</p> <pre><code>Person table (Id, Name) RoleDefinition table (Id, Name) RoleAssignment table (Id, DefId, PersonId) UserRole table (RoleAssignmentId, Login, Password) AdminRole table (RoleAssignmentId, ...) </code></pre> <p>I'll map UserRole and AdminRole as joined-sublass to RoleAssignment in NHibernate.</p> <p>So, that's a 1:1 between Person and UserRole and AdminRole, a 1:1 between UserRole and RoleAssignment, and an n:1 between RoleAssignment and RoleDefinition.</p> <p>My question is this: Is this really a good model? </p> <p>Are there better ways to model this without losing the ability for each role to have strongly typed, queryable properties? How well will it scale, considering I will be adding even more roles to the system as we move along?</p> http://stackoverflow.com/questions/1687887/sql-server-database-roles-via-smo 0 SQL Server Database Roles via SMO Simon Ward 2009-11-06T14:16:38Z 2009-11-06T14:16:38Z <p>I am trying to add new roles to a SQL 2005 database via the SMO assemblies. The Roles.Add method just does not seem to add the new role. I have my user account set as securityadmin and sysadmin.</p> <p>Below is the code extract that I am trying to use to set the new role: [assuming d has been set to a database object]</p> <pre><code> Dim dr As New DatabaseRole dr.Name = r dr.Parent = d dr.Owner = d.Name d.Roles.Add(dr) 'Error here "&lt;role name = r&gt; does not exist in the current database."' dr.AddMember("dbo") </code></pre> http://stackoverflow.com/questions/1672007/user-roles-why-not-store-in-session 4 User roles - why not store in session? Phil 2009-11-04T06:27:55Z 2009-11-05T15:55:08Z <p>I'm porting an ASP.NET application to MVC and need to store two items relating to an authenitcated user: a list of roles and a list of visible item IDs, to determine what the user can or cannot see. </p> <p>We've used WSE with a web service in the past and this made things unbelievably complex and impossible to debug properly. Now we're ditching the web service I was looking foward to drastically simplifying the solution simply to store these things in the session. A colleague suggested using the roles and membership providers but on looking into this I've found a number of problems:</p> <p>a) It suffers from similar but different problems to WSE in that it has to be used in a very constrained way maing it tricky even to write tests;</p> <p>b) The only caching option for the RolesProvider is based on cookies which we've rejected on security grounds;</p> <p>c) It introduces no end of complications and extra unwanted baggage;</p> <p>All we want to do, in a nutshell, is store two string variables in a user's session or something equivalent in a secure way and refer to them when we need to. What seems to be a ten minute job has so far taken several days of investigation and to compound the problem we have now discovered that session IDs can apparently be faked, see </p> <p><a href="http://blogs.sans.org/appsecstreetfighter/2009/06/14/session-attacks-and-aspnet-part-1/" rel="nofollow">http://blogs.sans.org/appsecstreetfighter/2009/06/14/session-attacks-and-aspnet-part-1/</a></p> <p>I'm left thinking there is no easy way to do this very simple job, but I find that impossible to believe.</p> <p>Could anyone:</p> <p>a) provide simple information on how to make ASP.NET MVC sessions secure as I always believed they were? </p> <p>b) suggest another simple way to store these two string variables for a logged in user's roles etc. without having to replace one complex nightmare with another as described above?</p> <p>Thank you.</p> http://stackoverflow.com/questions/1679771/adding-roles-to-the-createuserwizard 1 Adding roles to the 'CreateUserWizard' Mike 2009-11-05T10:54:30Z 2009-11-05T15:36:07Z <p>Hi (I'm pretty new to this),</p> <p>Is it possible to add roles to the 'CreateUserWizard' tool so that you tick boxes (or view roles in a drop down menu) and once one or more have been chosen, this information is added to the asp.net configuration automatically?</p> <p>I have the following code:</p> <pre><code>&lt;asp:CreateUserWizard ID="CreateUserWizard1" runat="server" BackColor="#F7F6F3" BorderColor="#E6E2D8" BorderStyle="Solid" BorderWidth="1px" Font-Names="Verdana" Font-Size="0.8em" Height="260px" Width="568px"&gt; &lt;WizardSteps&gt; &lt;asp:CreateUserWizardStep ID="CreateUserWizardStep1" runat="server"&gt; &lt;ContentTemplate&gt; &lt;table border="0" style="font-size: 100%; width: 568px; font-family: Verdana; height: 260px"&gt; &lt;tr&gt; &lt;td align="center" colspan="2" style="font-weight: bold; color: white; background-color: #5d7b9d"&gt; Create a New Account&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td align="right"&gt; &lt;asp:Label ID="UserNameLabel" runat="server" AssociatedControlID="UserName"&gt;Username:&lt;/asp:Label&gt;&lt;/td&gt; &lt;td&gt; &lt;asp:TextBox ID="UserName" runat="server"&gt;&lt;/asp:TextBox&gt; &lt;asp:RequiredFieldValidator ID="UserNameRequired" runat="server" ControlToValidate="UserName" ErrorMessage="User Name is required." ToolTip="User Name is required." ValidationGroup="CreateUserWizard1"&gt;*&lt;/asp:RequiredFieldValidator&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td align="right"&gt; &lt;asp:Label ID="PasswordLabel" runat="server" AssociatedControlID="Password"&gt;Password:&lt;/asp:Label&gt;&lt;/td&gt; &lt;td&gt; &lt;asp:TextBox ID="Password" runat="server" TextMode="Password"&gt;&lt;/asp:TextBox&gt; &lt;asp:RequiredFieldValidator ID="PasswordRequired" runat="server" ControlToValidate="Password" ErrorMessage="Password is required." ToolTip="Password is required." ValidationGroup="CreateUserWizard1"&gt;*&lt;/asp:RequiredFieldValidator&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td align="right"&gt; &lt;asp:Label ID="ConfirmPasswordLabel" runat="server" AssociatedControlID="ConfirmPassword"&gt;Confirm Password:&lt;/asp:Label&gt;&lt;/td&gt; &lt;td&gt; &lt;asp:TextBox ID="ConfirmPassword" runat="server" TextMode="Password"&gt;&lt;/asp:TextBox&gt; &lt;asp:RequiredFieldValidator ID="ConfirmPasswordRequired" runat="server" ControlToValidate="ConfirmPassword" ErrorMessage="Confirm Password is required." ToolTip="Confirm Password is required." ValidationGroup="CreateUserWizard1"&gt;*&lt;/asp:RequiredFieldValidator&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td align="right"&gt; &lt;asp:Label ID="EmailLabel" runat="server" AssociatedControlID="Email"&gt;E-mail:&lt;/asp:Label&gt;&lt;/td&gt; &lt;td&gt; &lt;asp:TextBox ID="Email" runat="server"&gt;&lt;/asp:TextBox&gt; &lt;asp:RequiredFieldValidator ID="EmailRequired" runat="server" ControlToValidate="Email" ErrorMessage="E-mail is required." ToolTip="E-mail is required." ValidationGroup="CreateUserWizard1"&gt;*&lt;/asp:RequiredFieldValidator&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td align="right"&gt; &lt;asp:Label ID="QuestionLabel" runat="server" AssociatedControlID="Question"&gt;Security Question:&lt;/asp:Label&gt;&lt;/td&gt; &lt;td&gt; &lt;asp:TextBox ID="Question" runat="server"&gt;&lt;/asp:TextBox&gt; &lt;asp:RequiredFieldValidator ID="QuestionRequired" runat="server" ControlToValidate="Question" ErrorMessage="Security question is required." ToolTip="Security question is required." ValidationGroup="CreateUserWizard1"&gt;*&lt;/asp:RequiredFieldValidator&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td align="right"&gt; &lt;asp:Label ID="AnswerLabel" runat="server" AssociatedControlID="Answer"&gt;Security Answer:&lt;/asp:Label&gt;&lt;/td&gt; &lt;td&gt; &lt;asp:TextBox ID="Answer" runat="server"&gt;&lt;/asp:TextBox&gt; &lt;asp:RequiredFieldValidator ID="AnswerRequired" runat="server" ControlToValidate="Answer" ErrorMessage="Security answer is required." ToolTip="Security answer is required." ValidationGroup="CreateUserWizard1"&gt;*&lt;/asp:RequiredFieldValidator&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td align="center" colspan="2"&gt; &lt;asp:CompareValidator ID="PasswordCompare" runat="server" ControlToCompare="Password" ControlToValidate="ConfirmPassword" Display="Dynamic" ErrorMessage="The Password and Confirmation Password must match." ValidationGroup="CreateUserWizard1"&gt;&lt;/asp:CompareValidator&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td align="center" colspan="2" style="color: red"&gt; &lt;asp:Literal ID="ErrorMessage" runat="server" EnableViewState="False"&gt;&lt;/asp:Literal&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/ContentTemplate&gt; &lt;/asp:CreateUserWizardStep&gt; &lt;asp:CompleteWizardStep ID="CompleteWizardStep1" runat="server"&gt; &lt;ContentTemplate&gt; &lt;table border="0" style="font-size: 100%; width: 568px; font-family: Verdana; height: 260px"&gt; &lt;tr&gt; &lt;td align="center" colspan="2" style="font-weight: bold; color: white; background-color: #5d7b9d"&gt; Complete&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td style="text-align: left"&gt; &amp;nbsp; Your account has been successfully created&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td align="right" colspan="2" style="text-align: right"&gt; &lt;asp:Button ID="ContinueButton" runat="server" BackColor="#FFFBFF" BorderColor="#CCCCCC" BorderStyle="Solid" BorderWidth="1px" CausesValidation="False" CommandName="Continue" Font-Names="Verdana" ForeColor="#284775" PostBackUrl="~/Default.aspx" Text="Continue" ValidationGroup="CreateUserWizard1" Width="105px" /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/ContentTemplate&gt; &lt;/asp:CompleteWizardStep&gt; &lt;/WizardSteps&gt; &lt;SideBarStyle BackColor="#5D7B9D" BorderWidth="0px" Font-Size="0.9em" VerticalAlign="Top" /&gt; &lt;SideBarButtonStyle BorderWidth="0px" Font-Names="Verdana" ForeColor="White" /&gt; &lt;ContinueButtonStyle BackColor="#FFFBFF" BorderColor="#CCCCCC" BorderStyle="Solid" BorderWidth="1px" Font-Names="Verdana" ForeColor="#284775" /&gt; &lt;NavigationButtonStyle BackColor="#FFFBFF" BorderColor="#CCCCCC" BorderStyle="Solid" BorderWidth="1px" Font-Names="Verdana" ForeColor="#284775" /&gt; &lt;HeaderStyle BackColor="#5D7B9D" BorderStyle="Solid" Font-Bold="True" Font-Size="0.9em" ForeColor="White" HorizontalAlign="Center" /&gt; &lt;CreateUserButtonStyle BackColor="#FFFBFF" BorderColor="#CCCCCC" BorderStyle="Solid" BorderWidth="1px" Font-Names="Verdana" ForeColor="#284775" /&gt; &lt;TitleTextStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" /&gt; &lt;StepStyle BorderWidth="0px" /&gt; &lt;/asp:CreateUserWizard&gt; </code></pre> <p>Thanks.</p> http://stackoverflow.com/questions/324752/authenticate-and-getroles-of-activedirectory-users-in-a-disconnected-wpf-applicat 3 Authenticate and GetRoles of ActiveDirectory users in a disconnected WPF application via MembershipProvider Devtron 2008-11-27T22:29:32Z 2009-11-03T04:11:02Z <p>Hello,</p> <p>I have a project requirement where I need to authenticate against ActiveDirectory in a remote/disconnected WPF application.</p> <p>There is probably several ways to attempt to do this, but what would be the best approach using ActiveDirectory's MembershipProvider?</p> <p>I need to:</p> <ol> <li>Authenticate that the user exists.</li> <li>obtain the AD user's groups and roles.</li> </ol> <p>This needs to happen from a remote location, outside of the network Active Directory resides on.</p> http://stackoverflow.com/questions/1660684/role-caching-strategies-in-asp-net-mvc 2 Role Caching Strategies in ASP.NET MVC Chris Arnold 2009-11-02T11:17:59Z 2009-11-02T20:25:05Z <p>We have an ASP.NET MVC application for which we have developed our own custom RoleProvider class. Without caching it will access the datastore for every request - bad. The only caching option we can find is (in web.config) via cookies stored on the clients' machines. My two questions are:</p> <ol> <li>Is this secure (even with encryption enabled)?</li> <li>Will the cookie information be transmitted with every web request - thus, potentially, slowing the application more than accessing the datastore every time?</li> </ol> <p>Does anyone have an alternative route? I understand that caching this information in the Session is also bad?</p> http://stackoverflow.com/questions/1071920/set-property-value-on-master-page-from-content-page 0 Set Property Value on Master Page from Content Page WedTM 2009-07-02T00:06:32Z 2009-11-02T00:00:01Z <p>I need to pass data to a variable in my master page each time a page is loaded.</p> <p>I have a string[] of RequiredRoles that I set on each content page defining what roles are required to access that page.</p> <p>On my master page, I have a method that takes this array, and checks to see if the current user is in one or more of those roles.</p> <p>How would I go about managing this? I basically want each page to have a String[] RequiredRoles defined, and the master page will load this on each call and check to see if the users are in those roles.</p> http://stackoverflow.com/questions/1656575/asp-net-mvc-hierarhical-roles-custom-authorization 0 ASP.NET MVC: Hierarhical roles, custom authorization valya 2009-11-01T07:04:07Z 2009-11-01T07:11:42Z <p>Is there a way to organize the roles in my app like a tree? You know, User can do several things, Moderator is just like user but can do little more, Administator have even more abilitities, etc. I've found nothing in the "Web Site Administration Tool".</p> http://stackoverflow.com/questions/1645186/forms-authentication-with-sitemap-and-aspmenu-control 0 Forms Authentication with Sitemap and asp:Menu control cdonner 2009-10-29T17:04:27Z 2009-10-30T08:59:17Z <p>I have a site with 2 sections - one for customers and one for admins, in essence. Each section is in its own directory with its own web.config and sitemap. Security and access works fine.</p> <p>When I am logged in as admin, I want to see menu items that link to the other section, however. I added links to the sitemap, e.g.:</p> <pre><code>&lt;siteMapNode url="~/Customer/Default.aspx?3" title="Customer Site" description="Switch to customer site" roles="Administrator"/&gt; </code></pre> <p>This seems to have no effect, since I still see the menu item when logged in as a customer. When I turn on security trimming, as in</p> <pre><code>&lt;siteMap enabled="true"&gt; &lt;providers&gt; &lt;add name="InternalSiteMap" type="System.Web.XmlSiteMapProvider" siteMapFile="~/Internal/Internal.sitemap" /&gt; &lt;add name="CustomerSiteMap" type="System.Web.XmlSiteMapProvider" siteMapFile="~/Customer/Customer.sitemap" securityTrimmingEnabled="true" /&gt; &lt;/providers&gt; &lt;/siteMap&gt; </code></pre> <p>all menu items are gone. </p> <p>I actually have web.configs in both the Internal and the Customer folders, e.g. for the customer:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;configuration&gt; &lt;system.web&gt; &lt;authorization&gt; &lt;allow roles="Customer" /&gt; &lt;deny users="*" /&gt; &lt;/authorization&gt; &lt;/system.web&gt; &lt;/configuration&gt; </code></pre> <p>and the administrator:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;configuration&gt; &lt;system.web&gt; &lt;authorization&gt; &lt;allow roles="Administrator" /&gt; &lt;deny users="*" /&gt; &lt;/authorization&gt; &lt;/system.web&gt; &lt;/configuration&gt; </code></pre> <p>Again, authorization works, and when I am logged in as a Customer and I click on the internal site link in the menu, I am being redirected to the login page. As an admin, I can click through to the admin site. As soon as I turn on security trimming for the sitemap provider, which is supposed to take the links that I am not authorized for off the menu, the entire menu disappears. What am I missing? Do I need to configure the asp.menu control to work together with this?</p> http://stackoverflow.com/questions/1487278/asp-net-semi-authenticated-user 0 Asp.net semi-authenticated user? spender 2009-09-28T14:14:55Z 2009-10-24T21:47:18Z <p>We've got an asp.net mvc website that is currently in a private beta state. As such we are sending out invite codes that must be supplied as part of the registration process for registration to succeed. We'd like to reduce the bar of entry such that users only have to supply the code to gain access rather than going through a more laborious registration process. We do have anonymousIdentification enabled, and as such, I assume that these users would remain anonymous.</p> <p>Is it possible to somehow differentiate between a plain-old anonymous user and one that has supplied the correct code? For instance, can anonymous users be added to a role? Any other suggestions?</p> http://stackoverflow.com/questions/1569546/asp-net-authentication-against-active-directory-and-roles-via-asp-net-role-provi 1 ASP .NET authentication against Active Directory and Roles via ASP.NET role provider davandries 2009-10-14T23:23:19Z 2009-10-15T00:01:59Z <p>Hello,</p> <p>In my current project, we need to authenticate users of an ASP.NET application against Active Directory. I think it can be achieved using the membership provider without too much problems. but we need also to manage user roles that will be kept in the ASP roles management tool.</p> <p>Did anyone implement this configuration? Does it look feasible? Any tip for one or the other point?</p> <p>Thanks. David</p> http://stackoverflow.com/questions/1554295/asp-net-membership-adding-a-role 1 ASP.net Membership - adding a role test 2009-10-12T12:27:56Z 2009-10-13T15:35:21Z <p>I need some advice whether it is recommended to add a membership role to a web application after the web application has been deployed and is in use. </p> <p>The problem with this is that the role is created through the ASP.NET web site admin tool and automatically updates the <code>ASPNETDB</code> database. </p> <p>The <code>ASPNETDB</code> database in the live environment will then have to be manually updated to reflect the updated roles. So as part of deployment while the website is offline I will need to update the security database with the extra role and add the database in again.</p> <p>Is this the correct way to updates roles in a web application after it has been deployed?</p> http://stackoverflow.com/questions/1555629/trying-to-find-getadminstatus-method 0 Trying to find getAdminStatus method test 2009-10-12T16:39:34Z 2009-10-12T16:46:10Z <p>Hi,</p> <p>The SuperAdmin page in my web application has a method call to getAdminStatus() but I cannot find any occurences of this method when searching the entire solution. Is this method part of the .net 2.0 framework. </p> <pre><code> &lt;ItemTemplate&gt; &lt;asp:Label runat="server" ID="admin" Text="&lt;%= getAdminStatus() %&gt;"&gt;&lt;/asp:Label&gt; &lt;/ItemTemplate&gt; </code></pre> <p>Thanks,</p> http://stackoverflow.com/questions/1304603/asp-net-mvc-roles-without-database-and-without-role-provider 1 ASP.NET MVC Roles without database (and without role provider) Junto 2009-08-20T07:49:28Z 2009-10-09T15:31:10Z <p>I have a super simple ASP.NET MVC application that uses RpxNow (OpenID) to allow users to login. I now want to let users edit their own account and provide administrator access to edit anyone's account.</p> <p>I have two separate "Edit Account" views:</p> <ul> <li>~/account/edit/</li> <li>~/account/edit/1</li> </ul> <p>The first loads the account details based on the logged in user. The second loads the account details using the supplied AccountId. The first would be for standard users, and the second for an administrator.</p> <p>Firstly I need to define the roles (User, Admin) and then I need to assign a user account (or multiple) to that role.</p> <p>Then I need to check the role in the controller. I like this concept:</p> <p><a href="http://schotime.net/blog/index.php/2009/02/17/custom-authorization-with-aspnet-mvc/" rel="nofollow">http://schotime.net/blog/index.php/2009/02/17/custom-authorization-with-aspnet-mvc/</a></p> <p>So, down to the questions:</p> <ol> <li>Is there a simple way to define a list of roles in the web.config?</li> <li>Is there a simple way to define which users are in which roles in the web.config?</li> <li>Is there a way to do this WITHOUT using Membership / Role providers?</li> <li>Am I approaching this from the wrong perspective? Should I be partioning the application into two branches and securing them based on folder authorisation?</li> </ol> http://stackoverflow.com/questions/1520970/unable-to-delete-asp-net-role 1 Unable to delete ASP.NET role Jason Kealey 2009-10-05T16:09:13Z 2009-10-05T18:12:19Z <p>I have a set of four ASP.NET roles that I have been trying to delete - they never want to die. </p> <p>Simply put, I've deleted them successfully by using the website administrator tool and by running the stored procedure: </p> <pre><code>exec aspnet_Roles_deleteRole '/', 'CameraOwner', 1; </code></pre> <p>My application name is '/'. I see the records getting deleted from the database. No one is using it. I refresh my role management page - it is gone. However, the next time my application restarts - and sometimes after a page refresh, the deleted roles get re-inserted. </p> <p>Added: If I delete the roles and do an iisreset: the roles are still deleted. As soon as I hit my application (even with a wget that doesn't have any pre-existing cookies) the roles get re-inserted. </p> <p>Has anyone experienced this before?</p> <p>UPDATE: Found my problem. Yet Another Forum.NET had linked Roles. Everytime you reloaded the application, it recreated the missing linked roles. </p> http://stackoverflow.com/questions/1521472/problem-with-role-requirement-and-restful-authentication 0 Problem with role requirement and restful authentication ChrisH 2009-10-05T17:55:09Z 2009-10-05T17:55:09Z <p>Our site uses role requirement and restful authentication plugins for rails. We are seeing most users able to access the site (login) just fine but a handful of logins are failing after being successfully authenticated and forwarded to the member's controller. It seems like the require roles line isn't finding the appropriate role and is redirecting them back to the login page as if they aren't logged in. </p> <p>It seems to be a browser specific problem, which makes me think a problem with cookies and how they are handled. But I haven't been able to confirm that yet</p> <p>Any thoughts?</p> <p>The production log looks like:</p> <pre><code>Processing SessionsController#create (for XX.XX.XXX.XXX at 2009-10-04 07:07:20) [POST] Parameters: {"authenticity_token"=&gt;"cLsuqHxaa+ICk+R9DsHEusR7uLBMLGwabt+BvQzsS5g=", "login"=&gt;"XXXXXXXX", "password"=&gt;"XXXXXX"} Redirected to http://www..com/home Completed in 12ms (DB: 4) | 302 Found [http://www..com/session] Processing HomeController#index (for XX.XX.XXX.XXX at 2009-10-04 07:07:20) [GET] Redirected to http://www..com/session/new Filter chain halted as [:check_roles] rendered_or_redirected. Completed in 4ms (DB: 0) | 302 Found [http://www..com/home] Processing SessionsController#new (for XX.XX.XXX.XXX at 2009-10-04 07:07:20) [GET] Rendering template within layouts/public-generic Rendering sessions/new Completed in 12ms (View: 12, DB: 0) | 200 OK [http://www..com/session/new] </code></pre> http://stackoverflow.com/questions/1509300/how-to-redirect-role-based-security-exceptions-to-custom-page-asp-net 2 How to redirect role-based security exceptions to custom page (ASP.NET) Habaabiai 2009-10-02T12:46:12Z 2009-10-02T15:09:51Z <p>I have very simple:</p> <pre><code>[PrincipalPermission(SecurityAction.Demand, Role = "Administrator")] public partial class _Default : System.Web.UI.Page </code></pre> <p>This works - it denies access if role is not administrator. But when it denies access, I simply get a white page (all unhandled exceptions are picked up in Global file and emailed/logged). How do I tell it where to direct on failure? So I can show a security exception page.</p> http://stackoverflow.com/questions/700166/allow-multiple-roles-to-access-controller-action 1 allow multiple roles to access controller action codette 2009-03-31T05:49:03Z 2009-10-01T13:14:00Z <p>Right now I decorate a method like this to allow "members" to access my controller action</p> <pre><code>[Authorize(Roles="members")] </code></pre> <p>How do I allow more than one role? For example the following does not work but it shows what I am trying to do (allow "members" and "admin" access):</p> <pre><code>[Authorize(Roles="members", "admin")] </code></pre> http://stackoverflow.com/questions/1197236/create-or-replace-role 0 Create or replace role? Dave Jarvis 2009-07-28T23:12:08Z 2009-09-30T18:28:38Z <p><strong>Initial Question</strong></p> <p>How do you create or replace a role (that might or might not exist) in Oracle? For example, the following does not work:</p> <pre><code>CREATE OR REPLACE ROLE role_name; GRANT SELECT ON SCM1_VIEW_OBJECT_VW TO role_name; </code></pre> <p>Any way to do this without PL/SQL?</p> <p><strong>Update #1</strong></p> <p>The following does not compile:</p> <pre><code>CREATE OR REPLACE FUNCTION create_role( role_name IN VARCHAR2 ) RETURN BOOLEAN IS BEGIN CREATE ROLE role_name; EXCEPTION WHEN OTHERS THEN -- ORA-01921: The role name already exists, so ignore the error. IF SQLCODE = -01921 THEN RETURN TRUE; ELSE RAISE; END IF; RETURN FALSE; END create_role; </code></pre> <p>Error: PLS-00103: Encountered the symbol "CREATE" ... Line: 3 Text: CREATE ROLE role_name;</p>