Story Details for tools

SecurityGuard - NuGet package for ASP.NET Membership

kahanu
Author:
Version:
1.0.9
Views:
211016
Date Posted:
8/25/2011 7:09:56 PM
Date Updated:
8/25/2011 7:09:56 PM
Rating:
4.45/53 votes
Framework:
ASP.NET MVC 3, ASP.NET MVC 4
Platform:
Windows
Programming Language:
C#
Technologies:
jQuery, ASP.NET Membership, ASP.NET MVC 3, MvcInstaller, SecurityGuard, ASP.NET MVC 4
Tags:
asp.net membership, asp.net mvc 3, jquery, management system, mvcinstaller, securityguard, t4mvc, asp.net mvc 4
Demo site:
Home Page:
https://github.com/kahanu/Security-Guard
Share:

SecurityGuard - NuGet Package for the ASP.NET Membership system

December 1, 2014 Update!

There are some minor fixes to Mvc4 and Mvc5.  It's probably easier to do these manually.  Information can be found here.

New!!! SecurityGuard.Mvc5 information here.
SecurityGuard is a complete ASP.NET MVC 3 and MVC 4 application installable via NuGet.  If you need a complete way to manage your ASP.NET Membership system for your MVC application, this is the NuGet package to use.

Don't forget to watch the screencast on how to quickly install it and use it.

If you don't know what NuGet is, it's a free online resource that contains components that can easily be installed into your applications for various needs.  Go to NuGet.org for more information.

Update for MVC 5
March 24, 2014

If you are installing SecurityGuard.MVC4 in an MVC 5 application via Visual Studio 2013, you will initially get an error when navigating to SecurityGuard.  It has to do with the newer version of the System.Web.WebPages.Razor assemblies used in MVC 5.

The error will be something along the lines of:

assembly's manifest definition does not match the assembly reference

Until I have time to create a new version, you can easily fix this by changing the version yourself.

Go into the /Areas/SecurityGuard/Views/web.config and in the config sections, change the Razor version from 2.0.0.0 to 3.0.0.0.  That will fix the issue.

On a related note: for SecurityGuard to work, you must be using the database schema that works with the System.Web.Providers assemblies.  MVC 5 initially works with the Microsoft Identity system and does not have any Membership config sections in the web.config, so you need to make sure you add those sections for SecurityGuard to work.

MvcInstaller can do that for you.  Check my other article on how to use MvcInstaller.

SecurityGuard does NOT work with the Microsoft Identity providers!  See this article for more information on the Future of SecurityGuard.




AN IMPORTANT NOTE: SecurityGuard is built on the .Net 4.0 framework so it's only available with ASP.NET MVC 3 or 4!

Pre-requisites:
  • .Net 4.0 Framework
  • ASP.NET MVC 3 or 4 host application
  • ASP.NET Membership is installed based on the System.Web.Providers namespace (not the SimpleMembershipProvider yet)

==== Update for Version 1.0.10 ====

  • FIXED: The BeginForm was blank on the EnterSecretAnswer.aspx view, when it should have been pointing to SGAccount/ForgotPassword.  Thanks to Paul Randall for catching this.

==== Update for Version 1.0.9 ====

  • FIXED: ReturnUrl was null in Login Action. Special thanks to Behrooz for pointing this out.

==== Update for Version 1.0.8 ====

  •  FIXED: ForgotPassword feature when RequiresQuestionAndAnswer equals true. It no longer returns an error.

==== Update for Version 1.0.8 ====

  • FIXED: updated the web.config.transform - changed the forms element/loginUrl to point to the new ~/SGAccount/Login, not LogOn. This is to match the change made in the SGAccountController.

==== Update for Version 1.0.6 ====

  • FIXED: broken mailer in 1.0.5.  Replaced mailer function to use MvcMailer for the ForgotPassword process.

==== Update for Version 1.0.5 ====

  • Changed the name LogOn to Login to match the default method name. 
  • Added ValidateAntiForgeryToken attributes to ChangePassword, ForgotPassword, Login and LogOff action methods. 
  • Changed the AcceptVerbs on the LogOff action to accept both Get and Post methods. 
  • Added the Html.AntiForgeryToken() extension to the ChangePassword, ForgotPassword, Login and Register views. 
  • Updated the Compare attributes on the ChangePassword and Register ViewModels to be fully qualified to the System.Web.Mvc namespace.

==== Update for ASP.NET MVC 4 Beta - 5/25/2012 ====

A new NuGet package is now available for MVC 4 Beta!

In your Package Manager Console, just enter:

PM> install-package SecurityGuard.MVC4

Here is all that was done to make this work.

MVC 4 changes
So to be clear, you do not need to do anything but install the MVC 4 version in order to make it work.

Thanks to Leniel Macaferi for pointing this out.  https://github.com/leniel

If you have any problems, create an issue in github.  https://github.com/kahanu/Security-Guard

==== End Update ====

What SecurityGuard does not do

SecurityGuard does NOT install the required ASP.NET Membership system.  You need to have that installed prior to installing SecurityGuard.  SecurityGuard is the UI components for you to manage your membership system. There are many ways you can install the ASP.NET Membership system, but the easiest way is with my other NuGet package called MvcInstaller.  Check it out at NuGet.org, and take a look at my other article as part of this series on what the MvcInstaller NuGet package is and how it works.

After the ASP.NET Membership system is installed, simply install the NuGet package for SecurityGuard and it's 99.9% done.  You will have to do a few things to tailor it to your application and for configuration, but they are mostly minor view modifications.

INSTALLATION

To install and configure SecurityGuard correctly will depend on what version of Visual Studio you are using.  At the moment it is intended to be used with VS 2010 and VS 2012.  It has not been thoroughly tested with VS 2008.

I will cover both installation versions so it's as painless as possible to get up and running.

Install SecurityGuard in an ASP.NET MVC 4 Application in Visual Studio 2010

This is the easiest of the two IDE's to install and configure SecurityGuard.

Step-by-step Installation and Configuration

  1. ConnectionString - set your connection string to point to your database
  2. Membership Sections - make sure your Membership sections are included in the web.config file and that they are using the System.Web.Providers namespace. (These first two steps are done automatically for you with MvcInstaller)
  3. Install SecurityGuard - in Visual Studio, open your Package Manager and enter: install-package securityguard.mvc4, and press Enter.  This will install all the necessary files and configuration for the application.
  4. Remove Forms element - in the web.config, in the system.web/authentication element, there are now two "forms" elements.  You need to delete the element that has "~/Account/LogOn" for the loginUrl value.  The leaves the one with "~/SGAccount/Login" as the loginUrl value.
  5. Remove SGAccount views - in the Views folder of the MVC application, open the SGAccount folder.  You will see all the views needed in both WebForms (ASPX) and Razor (cshtml) files.  You need to delete the version of the files that you are not using.
  6. Configure SMTP element - this is necessary in order to use the ForgotPassword feature which will email the newly created password to the user.

There is more details on these steps below.


You can use the Package Manager Console or the GUI.  I'll demonstrate how to install using the console.

tools menu for the package manager link

Step 3

Now you will see the console where you enter the following:

PM> install-package SecurityGuard.Mvc4

After you hit Enter, you'll notice many files being copied into your application.  These are all the files necessary to run the application.  Controllers and other C# classes are also being added with your applications namespace so they are assured to work.

Also, a new Area is created called SecurityGuard.  This contains all the controllers, models and views for the application.  CSS and images have also been included in the Content folder.

solution explorer

Step 4

The next change is in the web.config file.  It places a duplicate forms authentication node in the file and the default node needs to be removed.

This is the authentication section after SecurityGuard has been installed.

1.<authentication mode="Forms">
2.  <forms loginUrl="~/Account/LogOn" timeout="2880" />
3.  <forms loginUrl="~/SGAccount/LogOn" timeout="2880" />
4.</authentication>

Now you need to remove the forms node on line 2 so it leaves the one you want which points to the SGAccount controller.

Step 5

In the SGAccount folder in the Views folder, you'll see a large set of views for the operations needed.

SGAccount folder views

SecurityGuard can only work with a single set of views, so you need to delete the set of views that do not match the view type you are working with. 

For example, I like to work with the Razor views, so I'm going to select all the WebForms views to delete them.

SGAccount view selected

Now I simply click the Delete button and all those views go away.

SGAccount views cleaned up

Now my application will not throw any exceptions.  If you fail to do this step you will see an exception since the view engine is looking for a particular type of MasterPage.  (See the Troubleshooting section at the bottom of this article for more information.)

Step 6

Next, the smtp section should be updated with your SMTP server information.  This is used for the Forgot Password component.  It will email the new password to the user.

1.<system.net>
2.  <mailSettings>
3.    <smtp deliveryMethod="Network" from="[your support email address]">
4.      <network enableSsl="true" host="[smtp server name]" userName="[email address]" password="[email password]" port="587" />
5.    </smtp>
6.  </mailSettings>
7.</system.net>

One quick note about this section, if you set the enableSsl="true", then it's up to you to make sure you have a working port for your secure SMTP server.  If you don't, the operation will timeout and fail. 

Install SecurityGuard in an ASP.NET MVC 4 Application in Visual Studio 2012

The first thing you need to be aware of is that SecurityGuard CANNOT be used with ASP.NET MVC 4.5 applications that are already configured to use the SimpleMembershipProvider.  This is because SecurityGuard has not been built around the SimpleMembershipProvider yet, and it has a completely different schema and framework.

SecurityGuard CAN be used with applications created  in VS 2012 from scratch or applications that have not yet incorporated any Membership system.

SecurityGuard uses the System.Web.Providers namespace for the membership system.  I think this new provider rocks!  If you don't care if you aren't going to use the SimpleMembershipProvider, then you can safely install and use SecurityGuard in VS2012 and .Net 4.5.

The steps to install SecurityGuard are pretty much the same as for the VS2010 installation, but there are a couple things you need to do since there are differences.

No Providers in Web.config

If you are creating a brand new MVC 4 application in VS2012, you'll notice something after the application is finished being created in Visual Studio.  The web.config file has no membership providers sections.  This is because it's using the new SimpleMembershipProvider and those providers are included in the machine.config file.

So in order to use SecurityGuard in this application, which uses the System.Web.Providers namespace, that assembly needs to be included in the application references AND all the membership sections need to be added to the web.config.

To do this there are a couple ways of doing this, and both are pretty easy:
  1. Manually
  2. Use MvcInstaller

The reason to use the Manual method to include the assembly and configuration sections is mostly because you already have a database created with a full working schema, so all you need are these sections and the updated connectionStrings configuration in order to connect your application to your database.

The easy way to do this is via NuGet.  In Package Manager, enter:

PM> install-package system.web.providers

... and hit Enter.  It will install the assembly reference as well as place all the membership sections in the web.config file.  All you need to do is update the connectionStrings key to point to your database and then update the membership sections for the connectionStringName.  If you create an application name, then you'll need to update that value in those sections also.

The reason to use the MvcInstaller method is if you are creating the application from scratch but you have a database schema in SQL Server.  MvcInstaller will read the schema and update your web.config for you.  It will also add the necessary reference to the System.Web.Providers assembly. For more information on MvcInstaller I urge you to read the companion article and watch the video.

Common Configuration

NOTE: the appSettings key, SecurityGuardEmailFrom is deprecated.  It's not really something you have to worry about. It was used to set the From value in the outgoing email when the ForgotPassword command is executed.  Now the value comes from the smtp element in the web.config.

The rest of the information below are common configuration changes that you can make to your application, but they aren't required.  It's entirely up to you how you make this changes.

LoginPartial Updates

Now you'll need to make a few little changes.  The first you'll make is to the _LoginPartial.cshtml view.  You will change the controller names to point to the new SecurityGuard Account controller.

01.@if (Request.IsAuthenticated) {
02.    <text>
03.        Hello, @User.Identity.Name!
04.        @using (Html.BeginForm("LogOff", "SGAccount", FormMethod.Post, new { id = "logoutForm" })) {
05.            @Html.AntiForgeryToken()
06.            <a href="javascript:document.getElementById('logoutForm').submit()">Log off</a>
07.        }
08.    </text>
09.} else {
10.    <ul>
11.        <li>@Html.ActionLink("Register", "Register", "SGAccount", routeValues: null, htmlAttributes: new { id = "registerLink" })</li>
12.        <li>@Html.ActionLink("Log in", "Login", "SGAccount", routeValues: null, htmlAttributes: new { id = "loginLink" })</li>
13.    </ul>
14.}

NOTE: this has been updated for the new version of SecurityGuard v.1.0.5 to include the @Html.AntiForgeryToken() extension method, which will match the VS 2012 procedures.

You can see on lines 3, 4, 11, and 12 that I've changed the default "Account" controller name to "SGAccount".  Now I want to make a change to my global menu navigation for the application.  This is different for every application, so there's no way for me to build something into the NuGet package to do this for you.

01.<nav>
02.    <ul id="menu">
03.        <li>@Html.ActionLink("Home", "Index", "Home")</li>
04.        <li>@Html.ActionLink("About", "About", "Home")</li>
05.        @if (User.Identity.IsAuthenticated)
06.        {
07.            <li>@Html.ActionLink("Change Password", "ChangePassword", "SGAccount")</li>
08.        }
09.        @if (User.IsInRole("SecurityGuard"))
10.        {
11.            <li>@Html.ActionLink("Security Guard", "Index", "Dashboard", new { area = "SecurityGuard" }, null)</li>
12.        }               
13.    </ul>
14.</nav>

You can see I've added a "Change Password" link and a link to the "Security Guard" area.  But you'll also notice that I've wrapped them in conditional statements.  For the Change Password link, the user needs to be logged on to see this.  For the Security Guard link the user needs to be logged on and in the "SecurityGuard" role.

Now that that's done, you are ready to use the application.

Ready To Go

Now you can run your application and you should see your site come up as usual.  For the rest of this we will assume that I've already installed and configured the ASP.NET Membership system on this server, or local development machine and I've created a user and assigned it to the SecurityGuard role.

To log in as the SecurityGuard role, you just need to log on with those credentials that are assigned to that role.  The application will check the credentials in order to give you access to the SecurityGuard Area.  A user who logs in that has either no association with a Role or has a less privileged Role, will not gain access to the SecurityGuard Area.

When I log into the site, I should see something like this.

site home with security guard link

When I click on the "Security Guard" link, I'll be taken to the SecurityGuard MVC Area and I'll see this.

dashboard home

It's a simple, clean web-interface that allows you to easily manage the membership system.  Let's go through the application.

Roles

When I click on the "Manage Roles" link, I'll see this page.

manage roles

This allows you to enter and delete roles on the left side, and see the users in a particular role on the right side.

Selecting a role to see what users are in that role, looks like this.

users in roles
You can click on the user name and be taken to the details for that user.

Validation is built in.  You can see it working if you try to Add a role without a name entered.

role name validation

When you enter a role, you will see a success message and it will be added to the Roles list and the Users In Roles list via jQuery Ajax.

role successfully created

Deleting roles is just as easy, but the ASP.NET Membership system has a "check" for users granted to the deleted role.  By default, if you try to delete a role that contains users, then it will complain and not let you do it.  But it you really want to do it, you can tell the system to go ahead and delete the role and any associated users by checking the box "Delete role if it has users?".  This tells the system to go ahead and delete everything.

Manage Users

Managing users is also just as simple.  To get back to the Dashboard home page, I just need to click the "Dashboard" link in the top breadcrumb.  Then I click on the "Manage Users" link and I'll see this page.

manage users list
There's a lot happening on this page.  First, the drop down list has three selections, "View All", "UserName", and "Email".  These are the different filtering methods you can use to manage users.
  • View All - this setting doesn't allow you to enter a value in the search box since you are viewing all users.
  • UserName - this filter setting allows you to enter a value into the "Starts with:" field.  Enter any set of characters that the username would start with.
  • Email - this filter setting allows you to enter a value into the "Starts with:" field.  Enter any set of characters that the email would start with.
Which ever method you use, you will see a list like the one above.  It shows some quick details and you can view all the details for the user by clicking the user name link.

The radio button is a quick way to jump to the "Grant Roles to User" view.  Simply select a radio button for a user and the "Grant Roles To User" link above becomes enabled and if you click on it, you will be taken to that view for the selected user.  It looks like this.

grant roles to user
This shows the roles that are already granted to the user and what roles are still available to be granted.  To Grant or Revoke a role, simply select the role in the list box and click the appropriate button.  The command is executed instantly via Ajax.

role granted to user

User Details

Viewing user details is one of the views you will most likely visit often.  It's a clean interface and allows you to do manage certain details in a friendly Ajaxified manner.

user details

The Update button in the lower right only updates the values from the email and comment fields.  You can easily Approve or Deny a user by clicking the link next to that value.  It will execute the command via Ajax.  The same goes for the Locked out value.  If the user is locked out, a link will appear that allows you to quickly unlock them.

Also, at the bottom of the page, you can click the "Edit" link next to "Roles for [user name]", and you'll go back to the "Grant Roles to User" view.

Create User

It's just as easy to create a new user.  From the main Dashboard view, click the "Create User" link.

create user view

There are a few nice things built into this view.  Much of this view displays attributes from the web.config/membership section.  It shows the number of characters that the username should be, and it will also display how many characters non-Alphanumeric characters should be if they are not zero.

It will also dynamically display the Secret Question and Answer fields if the web.config has that set to True.

This view also has Ajax-validation built in. If you try to submit it without any values in the fields, it will display messages nicely.

create user with validation

Once the user is created, you can instantly view it's details.

Conclusion

That's SecurityGuard.  A very nice User Interface for managing your ASP.NET Membership database.  It's easy to install and just as easy to configure.

Do forget to view my other article in this series on the MvcInstaller NuGet package.  This package installs the ASP.NET Membership system for you based on your specifications.

Updates

  • November 11, 2011 - Version 1.0.51.575 - made modifications to several files so SecurityGuard will work with or without T4MVC.  T4MVC threw some namespace collision exceptions on the RegisterViewModel being using inside the Areas.SecurityGuard.Models folder and when calling SGAccountController and the register view.

Troubleshooting Issues

  • The required anti-forgery form field "__RequestVerificationToken" is not present. - in version 1.0.5 I've updated the SGAccountController to verify the AntiForgeryTokens for Login, Logoff, ChangePassword and some others, so you'll need to include the @HTML.AntiForgeryToken() extension method in your HTML inside a form for LogOff and others.  See the LoginPartial Updates chapter above for information.
  • The file "/Views/Shared/Site.Master" does not exist. - if you see this error it simply means that you are most likely using the Razor views and you forgot to delete the WebForms (ASPX) views in the SGAccount folder in the Views folder.  Just delete those files and the application will work.
    SiteMaster error
  • The element <forms> may only appear once in this section. - the problem is clearly shown in the exception.  It means that you forgot to remove the old forms element that points to "~/Account/Login".  Just delete that element and the application will work.
    Duplicate Forms element error
  • To call this method, the "Membership.Provider" property must be an instance of "ExtendedMembershipProvider".  - If you get this error it's most likely because you clicked on the Manage link in a VS 2012 MVC application.  This link points to the original AccountController and not the SGAccountController.  This Manage command is specific to the default MVC template that comes with VS2012 and has nothing to do with SecurityGuard.  In other words, ignore it.  The primary command that it contains that you would want is the ChangePassword command.  SecurityGuard has that command already, so simply remove all references to any default commands and just use the SecurityGuard commands.
  • The "Manage" view or controller action doesn't exist in SGAccountController - this is by design.  As I mention in the previous bullet point, this "Manage" command is built into the default MVC template in Visual Studio 2012.  It has nothing to do with SecurityGuard.  The Manage view contains some commands that work with the External login options this template gives you, such as Facebook, Google, etc.  It provides a way of setting your local account to the external account, changing your password, etc.  I have not yet implemented any means of synching up to external logins, so there is no need for the Manage command in existing version as of 1.0.9.  So for now, just ignore this and use the commands in SecurityGuard.

Comments

  • ola.niniola@yahoo.com
    Posted By: ola
    On: 9/28/2011 5:50:26 AM

    Hi kahanu,

    This is an excellent addition to the MVC stack,its safe my time as i have been contemplating of developing a user management system similar to what you have done,great work keep it up.

    I run into one issue after following your instruction on how to install and use Security Guard NuGet package,the issue is as follows:

    1. Error    1    The type or namespace name 'Pagination' does not exist in the namespace 'SecurityGuard.Core' (are you missing an assembly reference?)   

    2. Error    2    The type or namespace name 'PaginatedList' could not be found (are you missing a using directive or an assembly reference?)   

    I know this a trivial issue,but please could you verify

  • info@kingwilder.com
    Posted By: King Wilder
    On: 9/28/2011 8:22:06 AM

    @ola, oops!  Sorry about that.  I pushed the latest SecurityGuard.dll that has the necessary components.  I haven't been able to test it since I'm out of town, but it should work.  Please let me know if this version works.  I want to stay on top of this.  Thanks for the catch.

    King Wilder

  • jamesabolton@gmail.com
    Posted By: boltojam
    On: 11/15/2011 12:37:25 PM

    I love the work you have done! So far everything is working and working well! 

    I had one error while testing. I am using gmail for my email server and it requires SSL. The package you are using for emailing doesn't take the port for SSL. I had to change your code to use a custom function for sending emails. Let me know if you want the code I used.

    Thanks again for the great work

  • info@kingwilder.com
    Posted By: King Wilder
    On: 11/15/2011 12:46:23 PM

    @boltojam, I'm glad you like it.  I actually have not tested it against an SSL server, but have you tried adding the port to the web.config/system.net/mailSettings/smtp/network element?  You should just be able to point to your secure mail server and include the SSL port there and it should all work without any code modification. 

    I'll test it out when I have a moment.  What code did you modify?

    Let me know if this works.

  • bob.yuan@yahoo.com
    Posted By: bob
    On: 2/6/2012 1:16:02 PM
    Thanks for a good job! But I have one question, on the Role management, when a new role is added, or the existing role is deleted, the page or part of the page does not refresh so the result is not shown until the page refreshes, is this the way that it was designed? Is it possible to get the role list updated after adding or deleting (with jquery)?
  • info@kingwilder.com
    Posted By: King Wilder
    On: 2/8/2012 1:42:36 PM

    bob, yes I've noticed that.  It seems to update the list on the first addition, but after that, it doesn't.  It's a bug, not a huge one, but a bug.  I will fix that at some point.  I'm in the middle of a large project right now and can't but it is on my list of TODO's.

    Thanks.

  • bob.yuan@yahoo.com
    Posted By: bob
    On: 2/8/2012 1:46:52 PM
    Thanks so much for prompt reply. Much appreciated!
  • mfrimu@gmail.com
    Posted By: mfrimu
    On: 2/20/2012 3:27:39 PM
    I can't locate SecurityGuard in my VS2010 Ultimate Extension manager with latest NuGet... Weird.
  • info@kingwilder.com
    Posted By: King Wilder
    On: 2/20/2012 3:46:56 PM
    Make sure you have selected "Online" from the left hand menu items and not "Installed".  Try that.
  • hdoyon@oiq.qc.ca
    Posted By: Hugo
    On: 3/16/2012 11:40:19 AM

    Hello Kahanu,

    I have successufully install and tested your application ... But there is a bug with the "Forgot Password ?" features ... SGAccountController.cs line 238 :

       if (membershipService.RequiresQuestionAndAnswer)
       {
         newPassword = user.ResetPassword(model.PasswordAnswer);
       }

    Value cannot be null.

    Here is my web.config setup, did it make something wrong ? :

        <membership>
          <providers>
            <clear/>
            <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="LocalSqlServer"
                 enablePasswordRetrieval="true" enablePasswordReset="true" requiresQuestionAndAnswer="true" requiresUniqueEmail="true"
                  maxInvalidPasswordAttempts="5" minRequiredPasswordLength="4" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10"
                  passwordFormat="Clear"
                 applicationName="/" />
          </providers>
         
        </membership>

    Thank you

    Hugo

  • info@kingwilder.com
    Posted By: King Wilder
    On: 3/16/2012 11:55:46 AM

    Hugo, I'll check it out when I have a moment.  Thanks for the report.  Did you get this error even if you entered your password?

    Thanks,

    King Wilder

  • hdoyon@oiq.qc.ca
    Posted By: Hugo
    On: 3/16/2012 1:29:02 PM

    I just fill the forgot password form with my email and click the reset password button ... It's the only field on this form ... 

    Thanks you !

    Hugo

  • info@kingwilder.com
    Posted By: King Wilder
    On: 3/16/2012 1:50:02 PM

    Hugo, ok, I'll check it when I have a moment.

    Thanks,

    King Wilder

  • gujral.vaibhav@hotmail.com
    Posted By: vabgujral
    On: 3/21/2012 3:37:10 AM

    Hi,

    Any updates on the bug where  the roles list gets updated on the first addition, but after that, it doesn't. 

    Thanks!!

  • info@kingwilder.com
    Posted By: King Wilder
    On: 3/21/2012 11:57:48 AM

    vabgujral,

    Sorry, no I haven't had time.  I'm building my 4th web application for a client just this year and haven't had a free moment.  I will try to take a look at it this weekend.

    Thanks,

    King Wilder

  • info@kingwilder.com
    Posted By: King Wilder
    On: 3/21/2012 11:57:48 AM

    Hugo, I could not reproduce the error you are getting with the password reset issue.  I assume you have the SMTP settings in the web.config entered correctly.  Let me know if it's still occuring.

    Thanks,

    King Wilder

  • info@kingwilder.com
    Posted By: King Wilder
    On: 3/21/2012 11:57:48 AM

    Hugo, it looks like you may have setup your ASP.NET Membership system initially without requiring a Security Question and Answer, and then changed it afterward.  Is that possible?  If so, then the security question and answer columns may be empty for the password you are trying to reset.  If that's the case then you need to add them.

    At this point the easiest way to do that is to add them manually using the ASP.NET Configuration in your web app project.  This allows you to manage your users and roles.  Try that and see if it works.

    Thanks,

    King Wilder

  • gujral.vaibhav@hotmail.com
    Posted By: vabgujral
    On: 3/27/2012 7:24:44 AM

    Hi King Wilder,

    Did you got an opportunity to work on the bug where roles list not gets updated from second time.

    Thanks!!

  • info@kingwilder.com
    Posted By: King Wilder
    On: 3/27/2012 12:28:49 PM

    vabgujral, yes I had time to update it this weekend.

    It was a simple change that you really don't need a complete update for.  You can make the change yourself in the code if you want.

    In Area --> SecurityGuard --> Views --> Role -- Index.cshtml...

    ... in the $("#add-role") jQuery function, just add a new "cache: false" property to the $.ajax call.

    $("#add-role").click(function () {
        var roleName = $("#RoleName").val();

        if (roleName == "") {
     ShowMessage("Please enter a role name.");
     return;
        }

        $.ajax({
     url: '@Url.Action("CreateRole", "Role")',
     dataType: 'json',
     type: 'POST',
     cache: false,           <-- new property
     data: { roleName: roleName },
     success: OnCreateRoleSuccess,
     error: OnCreateRoleError
        });
    });

    I hope this helps.

  • sheven55555@yahoo.com
    Posted By: sheven
    On: 4/10/2012 4:14:31 AM
    Hi, i just installed SecurityGuard today, but the problem is i did not het SecuritGuard layout page on Shared folder and also when i register a new username and password i can not see the SecurityGuard menu. help please?
  • sheven55555@yahooo.com
    Posted By: sheven
    On: 4/10/2012 4:52:12 AM
    i exactly follwed your instruction, is ther any username and password for entering as superadmin ?
  • info@kingwilder.com
    Posted By: King Wilder
    On: 4/10/2012 12:18:30 PM

    Sheven, for the Layout page, you are looking in /Areas/SecurityGuard/Views/Shared/ and not the Root/Views/Shared/ folder, correct?

    If it still isn't there, you can try to uninstall SecurityGuard and then re-install it.

    Regarding the SecurityGuard menu item, you have to create that manually.  You should watch my screencast.  Every developer creates navigation differently so there is no way for me to anticipate that and create the menu for you.

    I hope that helps.

    King Wilder

  • info@kingwilder.com
    Posted By: King Wilder
    On: 4/10/2012 12:18:30 PM

    Sheven,

    Sorry you are having these problems.

    SecurityGuard is simply a way to manage your ASP.NET Membership system for your MVC application.  It does NOT install and configure the ASP.NET Membership system.  For that you can use my other NuGet package called, MvcInstaller.MVC3. 

    With MvcInstaller.MVC3, it will install your database schema and the ASP.NET Membership system for you and have it configured based on the settings you create in the Installer.Config file. 

    You should watch the videos again for both MvcInstaller and SecurityGuard and see if you've missed something.  I've made them so they can actually work together.  I use them in every MVC application I build and they work without issues.

    I hope this helps. Let me know if you still have more issue.

    King Wilder

  • vinayj4u@gmail.com
    Posted By: vinay
    On: 4/13/2012 7:16:35 AM

    Hi kahanu,

    I have followed all the steps as mentioned above. I am able to get security guard and change password tabs in my screen. After log on as admin if i click on security tab it is again asking to log on and still in the top it is showing welcome admin, but it is not happening for change password. Can you please help.

    Thanks,

    Vinay

  • info@kingwilder.com
    Posted By: King Wilder
    On: 4/16/2012 11:40:21 AM

    Vinay,

    I'm not sure what the problem is here, but it sounds like it might be an issue with either an Authorize attribute on a controller that has a Role that is not authorized, or it could be that your link is pointing to the wrong controller.

    You should probably double check your controllers and see what Roles you have set in your Authorize attribute to see if that's the issue.

    The reason you can get to Change Password, is because it doesn't have any Role restrictions on it.

    I hope that helps.

    King Wilder

  • leniel@gmail.com
    Posted By: Leniel Macaferi
    On: 5/17/2012 6:17:39 PM

    Dear King Wilder,

    I'm really happy right now because I found this awesome NuGet package... I'll help you spreading the word about it. I started answering this question at StackOverflow: http://stackoverflow.com/q/4974703/114029

    I'm trying SecurityGuard in a new app built with ASP.NET MVC 4. I had to make minor changes to make it work. Until now I had to

    1 - Add a new dependent assembly binding redirect in the MVC 4 app Web.config as per this answer at StackOverflow http://stackoverflow.com/a/10556822/114029:

     <dependentAssembly>
            <assemblyIdentity name="System.Web.WebPages.Razor"
               publicKeyToken="31bf3856ad364e35" />
            <bindingRedirect oldVersion="1.0.0.0" newVersion="2.0.0.0"/>
          </dependentAssembly>

    2 - Changed @Html.TextBox("searchterm", Model.SearchTerm, null) to @Html.TextBox("searchterm", Model.SearchTerm, null, null) inside \Areas\SecurityGuard\Views\Membership\Index.cshtml

    Let's see what else I'll have to change. Haven't explored much yet but read this Story (I confess I'm excited with it)...

    So, keep evolving this great addition to any ASP.NET MVC app... :D

    All the best,

    Leniel

  • info@kingwilder.com
    Posted By: King Wilder
    On: 5/17/2012 6:47:24 PM

    Leniel, thanks for finding a temporary fix until I get time to make a new version of SecurityGuard for MVC 4. 

    As far as you can see, there are no other MVC 4 C# related changes that are necessary?

    When I have a moment, hopefully this weekend, I'll look at the MVC 4 bits and work on creating a new version.

    Thanks again and I'm glad you like it.

  • Vinayj4u@gmail.com
    Posted By: Vinay
    On: 5/25/2012 1:17:16 AM

     

    Hi  King Wilder,

    I have followed all the steps as mentioned above. I am able to get security guard and change password tabs in my screen which works and looks very good.

    In my project properties --> Signing tab we have checked "Sign the assembly" checkbox which is a requirement for our project.
    When i build the project i am getting the below 2 errors.

    Error 1 Assembly generation failed -- Referenced assembly 'MVCCentral.Framework' does not have a strong name. 

    Error 2 Assembly generation failed -- Referenced assembly 'SecurityGuard' does not have a strong name. 

    I understood that since these two assemblies does not contain strong name and are added in reference I am getting these errors.

    Is it possible for you to provide dlls that have strong name or is it possible for you to shared these 2 dlls code.

    Is there any other way through which we can resolve this issue.

    Thanks,

    Vinay

  • info@kingwilder.com
    Posted By: King Wilder
    On: 5/25/2012 12:49:41 PM

    @Vinay, is there some reason you have to sign your application?

    If you want the MVCCentral.Framework code, you can download it at http://www.kingwilder.com/downloads/MVCCentral.Framework.zip.

    You can download SecurityGuard at github.  https://github.com/kahanu/Security-Guard

    I never considered strong-naming these assemblies.  Good luck.

  • jason@questmetrics.com
    Posted By: Jsobell
    On: 6/8/2012 2:13:16 AM

    Great job!

    Minor bug on the Manage Users screen. The url link to associate roles gets appended again and again due to this section:

    var href = anchor.attr("href");
    // Concatenate the existing href value with the username
    var newHref = href + "/" + userName;

    I replaced as follows:

    Declared this at the top level:

    var basehref;

    Added to sginit:

    basehref = anchor.attr("href");

    Replaced problem lines with:

    var newHref = basehref + "/" + userName;

    Cheers,

     Jason

  • info@kingwilder.com
    Posted By: King Wilder
    On: 6/8/2012 2:21:55 PM

    @Jsobell, thanks for the information on the fix.  You are the second person to find this.  I'll be fixing it this weekend.

    Thanks again.

  • tuvinhdong@yahoo.ca
    Posted By: tdong
    On: 7/11/2012 2:31:33 PM

    Thanks :) Awesome work

  • tuvinhdong@yahoo.ca
    Posted By: tdong
    On: 7/12/2012 10:55:36 AM

    for the person who ask about the resetpassword. you need to enable false to true for requiresquestionandaswer in web.config.  then you need to modify SGAccountController.cs to handle PasswordAnswer.  if you are using it without the try catch you will get error if user answer is wrong you need to redirect.

    if (membershipService.RequiresQuestionAndAnswer)
                {
                    try
                    {
                        newPassword = user.ResetPassword(model.PasswordAnswer);
                    }
                    catch
                    {

                        return RedirectToAction("ForgotPasswordFailed");
                    }
                }

  • wizardx@gmx.at
    Posted By: Michael
    On: 8/12/2012 7:58:13 AM

    Hey, great software module... :)

    BUT I get an error if I press the INSTALL button. 

    This text is viewed:

    Bezeichner (beginnend mit 'X ...........g..............���................................0....../.........~.~.�.�.�.�.�.�.�.�.�.�.�.�.�.�.�.�.�.�.') ist zu lang. Die maximal zulässige Länge beträgt 128. Falsche Syntax in der Nähe von 'ӚC'. '.........0..<' ist ein ungültiger Name, da er ein NULL-Zeichen oder ein ungültiges Unicode-Zeichen enthält. Bezeichner (beginnend mit '.........�?......�?).........�?......�?,.........�?......�?..........�?......�?1.........�?..�?..�?3.........�') ist zu lang. Die maximal zulässige Länge beträgt 128. Bezeichner (beginnend mit '5�A..�@........................................................................................................................') ist zu lang. Die maximal zulässige Länge beträgt 128. '.f.i.l.e.g.u.i.d.6............f.i.l.e.i.d.6............f.i.l.e.i.d.6...........' ist ein ungültiger Name, da er ein NULL-Zeichen oder ein

  • wizardx@gmx.at
    Posted By: Michael
    On: 8/12/2012 7:58:13 AM
    sorry, the above comment should be published at mvcinstaller.mvc3 ;)
  • jackwebb22002@hotmail.com
    Posted By: jackwebb22002
    On: 8/20/2012 1:17:23 PM

    When clicking "Security Guard" I get the error below.  I thought i followed the video to the letter, but I obviously did something wrong.  Can you point me in a direction?


    The view 'Index' or its master was not found or no view engine supports the searched locations. The following locations were searched:
    ~/Views/Dashboard/Index.aspx
    ~/Views/Dashboard/Index.ascx
    ~/Views/Shared/Index.aspx
    ~/Views/Shared/Index.ascx
    ~/Views/Dashboard/Index.cshtml
    ~/Views/Dashboard/Index.vbhtml
    ~/Views/Shared/Index.cshtml
    ~/Views/Shared/Index.vbhtml
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

    Exception Details: System.InvalidOperationException: The view 'Index' or its master was not found or no view engine supports the searched locations. The following locations were searched:
    ~/Views/Dashboard/Index.aspx
    ~/Views/Dashboard/Index.ascx
    ~/Views/Shared/Index.aspx
    ~/Views/Shared/Index.ascx
    ~/Views/Dashboard/Index.cshtml
    ~/Views/Dashboard/Index.vbhtml
    ~/Views/Shared/Index.cshtml
    ~/Views/Shared/Index.vbhtml

    Source Error:

     


    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.


    Stack Trace:

     

     

    [InvalidOperationException: The view 'Index' or its master was not found or no view engine supports the searched locations. The following locations were searched:
    ~/Views/Dashboard/Index.aspx
    ~/Views/Dashboard/Index.ascx
    ~/Views/Shared/Index.aspx
    ~/Views/Shared/Index.ascx
    ~/Views/Dashboard/Index.cshtml
    ~/Views/Dashboard/Index.vbhtml
    ~/Views/Shared/Index.cshtml
    ~/Views/Shared/Index.vbhtml]
       System.Web.Mvc.ViewResult.FindView(ControllerContext context) +285778
       System.Web.Mvc.ViewResultBase.ExecuteResult(ControllerContext context) +121
       System.Web.Mvc.ControllerActionInvoker.InvokeActionResult(ControllerContext controllerContext, ActionResult actionResult) +13
       System.Web.Mvc.<>c__DisplayClass1c.<InvokeActionResultWithFilters>b__19() +23
       System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter(IResultFilter filter, ResultExecutingContext preContext, Func`1 continuation) +242
       System.Web.Mvc.<>c__DisplayClass1e.<InvokeActionResultWithFilters>b__1b() +21
       System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(ControllerContext controllerContext, IList`1 filters, ActionResult actionResult) +177
       System.Web.Mvc.ControllerActionInvoker.InvokeAction(ControllerContext controllerContext, String actionName) +324
       System.Web.Mvc.Controller.ExecuteCore() +106
       System.Web.Mvc.ControllerBase.Execute(RequestContext requestContext) +91
       System.Web.Mvc.ControllerBase.System.Web.Mvc.IController.Execute(RequestContext requestContext) +10
       System.Web.Mvc.<>c__DisplayClassb.<BeginProcessRequest>b__5() +34
       System.Web.Mvc.Async.<>c__DisplayClass1.<MakeVoidDelegate>b__0() +19
       System.Web.Mvc.Async.<>c__DisplayClass8`1.<BeginSynchronous>b__7(IAsyncResult _) +10
       System.Web.Mvc.Async.WrappedAsyncResult`1.End() +62
       System.Web.Mvc.<>c__DisplayClasse.<EndProcessRequest>b__d() +48
       System.Web.Mvc.SecurityUtil.<GetCallInAppTrustThunk>b__0(Action f) +7
       System.Web.Mvc.SecurityUtil.ProcessInApplicationTrust(Action action) +22
       System.Web.Mvc.MvcHandler.EndProcessRequest(IAsyncResult asyncResult) +60
       System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest(IAsyncResult result) +9
       System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +9615056
       System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +155
     

  • info@kingwilder.com
    Posted By: King Wilder
    On: 8/20/2012 2:52:13 PM
    @Jack - I sent you a response via email, but confirm for me that the SecurityGuard Area is fully installed in your MVC application.
  • muhammadhameen@gmail.com
    Posted By: Ameen
    On: 8/29/2012 11:45:14 PM
    Great work . Thamk you
  • a-means@hotmail.com
    Posted By: Jamiu
    On: 8/30/2012 12:17:16 AM
    Hi.. I have intall and using it.. a great work u done thak you very much.. Im using it in a CourtCase application and Now I need to expand the current access controle. which I need is different section and different employee has access to cases. Is their any easy option to expand. pls help..Thanks
  • info@kingwilder.com
    Posted By: King Wilder
    On: 8/30/2012 12:22:06 PM
    @Ameen - thanks, I'm glad you like it.
  • info@kingwilder.com
    Posted By: King Wilder
    On: 8/30/2012 12:22:06 PM

    @Jamiu - do you mean you need to create different permissions for different users?  If so, then you can simply create new Roles and then assign users to those roles.  Then apply those roles to either the Controllers and/or Controller actions so only those users in those roles are allowed to access those resources.  Does this make sense?

    The other option is to create your own Membership Provider based on the default ASP.NET Membership providers.  There are many MSDN articles on how to do this.  http://www.asp.net/web-forms/videos/how-do-i/how-do-i-create-a-custom-membership-provider

  • lhicks@kumc.edu
    Posted By: lwh
    On: 9/26/2012 9:05:37 AM

    You have probably observed that MVC4 uses EF for membership, with a different db structure.

    Any plans to update SecurityGuard to work with the new scheme?

  • info@kingwilder.com
    Posted By: King Wilder
    On: 9/26/2012 11:02:18 AM

    @lwh, yes I have seen that the MVC 4 framework uses EF for Membership with the new DB schema.  I do plan on updating SecurityGuard with the new providers but I'm trying to find out from the ASP.NET team if there is a similar method of creating the database schema as with the System.Web.Security namespace.

    I will make an announcement when I'm able to use that.

    Thanks.

  • icehockeyguy99@hotmail.com
    Posted By: James Smith
    On: 9/30/2012 1:43:30 PM

    Getting the same error as a previous user.  Didn't see a response here.  What is the fix?  I see that the Dashboard view files are missing, although the NuGet install seems to have worked fine.

    Server Error in '/' Application.
    The view 'Index' or its master was not found or no view engine supports the searched locations. The following locations were searched:
    ~/Views/Dashboard/Index.aspx
    ~/Views/Dashboard/Index.ascx
    ~/Views/Shared/Index.aspx
    ~/Views/Shared/Index.ascx
    ~/Views/Dashboard/Index.cshtml
    ~/Views/Dashboard/Index.vbhtml
    ~/Views/Shared/Index.cshtml
    ~/Views/Shared/Index.vbhtml
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.


    Exception Details: System.InvalidOperationException: The view 'Index' or its master was not found or no view engine supports the searched locations. The following locations were searched:
    ~/Views/Dashboard/Index.aspx
    ~/Views/Dashboard/Index.ascx
    ~/Views/Shared/Index.aspx
    ~/Views/Shared/Index.ascx
    ~/Views/Dashboard/Index.cshtml
    ~/Views/Dashboard/Index.vbhtml
    ~/Views/Shared/Index.cshtml
    ~/Views/Shared/Index.vbhtml


    Source Error:


    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.


    Stack Trace:


    [InvalidOperationException: The view 'Index' or its master was not found or no view engine supports the searched locations. The following locations were searched:
    ~/Views/Dashboard/Index.aspx
    ~/Views/Dashboard/Index.ascx
    ~/Views/Shared/Index.aspx
    ~/Views/Shared/Index.ascx
    ~/Views/Dashboard/Index.cshtml
    ~/Views/Dashboard/Index.vbhtml
    ~/Views/Shared/Index.cshtml
    ~/Views/Shared/Index.vbhtml]
       System.Web.Mvc.ViewResult.FindView(ControllerContext context) +318674
       System.Web.Mvc.ViewResultBase.ExecuteResult(ControllerContext context) +129
       System.Web.Mvc.ControllerActionInvoker.InvokeActionResult(ControllerContext controllerContext, ActionResult actionResult) +13
       System.Web.Mvc.<>c__DisplayClass1c.<InvokeActionResultWithFilters>b__19() +23
       System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter(IResultFilter filter, ResultExecutingContext preContext, Func`1 continuation) +260
       System.Web.Mvc.<>c__DisplayClass1e.<InvokeActionResultWithFilters>b__1b() +19
       System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(ControllerContext controllerContext, IList`1 filters, ActionResult actionResult) +177
       System.Web.Mvc.ControllerActionInvoker.InvokeAction(ControllerContext controllerContext, String actionName) +343
       System.Web.Mvc.Controller.ExecuteCore() +116
       System.Web.Mvc.ControllerBase.Execute(RequestContext requestContext) +97
       System.Web.Mvc.ControllerBase.System.Web.Mvc.IController.Execute(RequestContext requestContext) +10
       System.Web.Mvc.<>c__DisplayClassb.<BeginProcessRequest>b__5() +37
       System.Web.Mvc.Async.<>c__DisplayClass1.<MakeVoidDelegate>b__0() +21
       System.Web.Mvc.Async.<>c__DisplayClass8`1.<BeginSynchronous>b__7(IAsyncResult _) +12
       System.Web.Mvc.Async.WrappedAsyncResult`1.End() +62
       System.Web.Mvc.<>c__DisplayClasse.<EndProcessRequest>b__d() +50
       System.Web.Mvc.SecurityUtil.<GetCallInAppTrustThunk>b__0(Action f) +7
       System.Web.Mvc.SecurityUtil.ProcessInApplicationTrust(Action action) +22
       System.Web.Mvc.MvcHandler.EndProcessRequest(IAsyncResult asyncResult) +60
       System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest(IAsyncResult result) +9
       System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +8970061
       System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +184

  • info@kingwilder.com
    Posted By: King Wilderr
    On: 10/1/2012 11:54:47 AM

    @James Smith - if the Dashboard views are missing then the package installation didn't occur properly.  Uninstall SecurityGuard and re-install it.  That should do it.

    Let me know the outcome. 

    Thanks.

  • krishnakantpandey23@gmail.com
    Posted By: krishna
    On: 10/5/2012 6:57:53 AM

    using System;
    using System.Collections;
    using System.Configuration;
    using System.Data;
    using System.Linq;
    using System.Web;
    using System.Web.Security;
    using System.Web.UI;
    using System.Web.UI.HtmlControls;
    using System.Web.UI.WebControls;
    using System.Web.UI.WebControls.WebParts;
    using System.Xml.Linq;





    namespace Online_Assignment_Submission.Membership
    {
        public partial class WebForm1 : System.Web.UI.Page
        {
            const string passwordQuestion = "What is your favorite color";
            protected void Page_Load(object sender, EventArgs e)
            {
                if (!Page.IsPostBack)
                    SecurityQuestion.Text = passwordQuestion;

            }

    protected void CreateAccountButton_Click(object sender, EventArgs e)
            {
                MembershipCreateStatus createStatus;
                MembershipUser newUser = Membership.CreateUser(Username.Text, Password.Text, Email.Text, passwordQuestion, SecurityAnswer.Text, true, out createStatus);
                switch (createStatus)
                {
                    case MembershipCreateStatus.Success:
                        CreateAccountResults.Text = "The user account was successfully created!";
                        break;

                    case MembershipCreateStatus.DuplicateUserName:
                        CreateAccountResults.Text = "There already exists a user with this username.";
                        break;

                    case MembershipCreateStatus.DuplicateEmail:
                        CreateAccountResults.Text = "There already exists a user with this email address.";
                        break;

                    case MembershipCreateStatus.InvalidEmail:
                        CreateAccountResults.Text = "There email address you provided in invalid.";
                        break;

                    case MembershipCreateStatus.InvalidAnswer:
                        CreateAccountResults.Text = "There security answer was invalid.";
                        break;

                    case MembershipCreateStatus.InvalidPassword:
                        CreateAccountResults.Text = "The password you provided is invalid. It must be seven characters long and have at least one non-alphanumeric character.";
                        break;

                    default:
                        CreateAccountResults.Text = "There was an unknown error; the user account was NOT created.";
                        break;
                }
            }

    ERROR :- Error    1    The type or namespace name 'CreateUser' does not exist in the namespace 'Online_Assignment_Submission.Membership' (are you missing an assembly reference?)    D:\NEW PROJECT\Online Assignment Submission\Membership\WebForm1.aspx.cs    62    49    Online Assignment Submission

    how to solve this error used the MVC and normal Project


  • info@kingwilder.com
    Posted By: King Wilder
    On: 10/5/2012 11:49:29 AM

    @krishna - there are a couple things wrong with what I see here:

    1. Error message - you are getting this error message because you named the namespace as "Online_Assignment_Submission.Membership".  The application is looking for the "CreateUser" method on the Membership class of the Online_Assignment_Submission" namespace, which doesn't exist.  This won't work for a number of reasons, I'll get to those in a second.
    2. WebForms - it looks like you are using SecurityGuard in a WebForms application, not an MVC application.  SecurityGuard is meant for MVC applications and is not intended for anything but MVC applications, so this won't work.

    So the bottom line is you can't use SecurityGuard in anything but and MVC 3 or higher web application.  The other thing is NOT to name your namespace with the word "Membership" as you will encounter this naming collision.  The option with this would be to fully qualify the Membership.Create() method as System.Web.Security.Membership.Create().

    And looking at this again, it doesn't look like you are using SecurityGuard anywhere in this example, so this is not a SecurityGuard issue.

    I hope this helps.

  • kipkorirsang@gmail.com
    Posted By: ksang
    On: 10/18/2012 9:49:55 AM
    I have installed SecurityGuard on an MVC3 application and it is running well. However when I input a username such as xxx/2012, I cannot edit it. It throws an error of resource not found. Please help..
  • info@kingwilder.com
    Posted By: King Wilder
    On: 10/18/2012 11:33:10 AM

    @ksang - can you give me more information? 

    1. Are you creating the user in the SecurityGuard Dashboard?
    2. Does the username really have a slash in it?

    This may not be a SecurityGuard issue but rather an ASP.NET Membership system rule.  SecurityGuard simply has classes built on top of the membership classes and they don't modify them.  It might be a rule that usernames cannot contain characters like slashes.

    Try creating a username with a dash (-) and see if you can edit it.  Also try creating another username with a slash just to see if that is an issue.

    The only way I can think of to fix it is to go into the database and manually modify the username and remove the slash, then see if you can edit it in SecurityGuard.

    I hope this helps.

  • kipkorirsang@gmail.com
    Posted By: ksang
    On: 10/19/2012 10:53:23 AM

    Thank you for the reply.

    I can create usernames containing the forward slash like 123/2010 using securityguard dashboard and ASP.net Membership accepts it.. This is our naming convention. The usernames I create without the forward slash are editable at the dashboard but those with the slash cannot be editted. What could be the problem? Try with your database and see if it accepts because it will be difficult for us to avoid that naming convention.

  • info@kingwilder.com
    Posted By: King Wilder
    On: 10/19/2012 11:28:38 AM

    @ksang - the forward slash in the username doesn't work with an MVC application because the routing engine assumes it's part of the routing mechanism.  This has nothing to do with SecurityGuard, it's just an MVC convention. 

    I tried it and I can create the User (123/2012) but I can't edit it because of the slash in the URL.

    http://localhost:51602/SecurityGuard/Membership/Update/123/2012

    See how it looks in the address bar of the browser?  You should really find another naming convention that will be used with MVC applications.

    I hope this helps.

  • iliali16@gmail.com
    Posted By: iliali16
    On: 10/28/2012 7:10:35 AM

    Hi I have installed the Security Guard MVC4 and everything is working perfectly but one thing. Everywhere in the Security Guard there is a LogOn link while MVC 4 creates a LogIn link and i have an error when I press the Log In button on the default website. I can register a user but I cannot Log In it gives me the following error: 

    Server Error in '/' Application.

    The resource cannot be found.

    Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable.  Please review the following URL and make sure that it is spelled correctly. 

    Requested URL: /SGAccount/Login


    Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.272


    Please hel me to solve it!
  • iliali16@gmail.com
    Posted By: iliali16
    On: 10/28/2012 7:30:33 AM

    I am not sure but I might have solved the issue. In _LoginPartial.cshtml I changed all the strings Log in to Log on and I have been able to Login now. But when I try to LogOff this is what I get:

    Server Error in '/' Application.

    The resource cannot be found.

    Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable.  Please review the following URL and make sure that it is spelled correctly. 

    Requested URL: /SGAccount/LogOff


    Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.272

    Basicly the same thing but now I cannot find where to fix the issue these are my settings in _LoginPartial.cshtml:

    @if (Request.IsAuthenticated) {

        <text>
            Hello, @Html.ActionLink(User.Identity.Name, "Manage", "SGAccount", routeValues: null, htmlAttributes: new { @class = "username", title = "Manage" })!
            @using (Html.BeginForm("LogOff", "SGAccount", FormMethod.Post, new { id = "logoutForm" })) {
                @Html.AntiForgeryToken()
                <a href="javascript:document.getElementById('logoutForm').submit()">Log off</a>
            }
        </text>
    } else {
        <ul>
            <li>@Html.ActionLink("Register", "Register", "SGAccount", routeValues: null, htmlAttributes: new { id = "registerLink" })</li>
            <li>@Html.ActionLink("Log on", "Logon", "SGAccount", routeValues: null, htmlAttributes: new { id = "logonLink" })</li>
        </ul>
    }

  • info@kingwilder.com
    Posted By: King Wilder
    On: 10/28/2012 11:43:14 AM

    @iliali16 - yes, the Log on methods on the Membershp are different, one is LogOn and the other is Login.  Originally I matched their method but then they changed it.  I'll update this in a new update, but in the meantime you just need to change "Login" to "LogOn".

    Regarding your "LogOff" issue, VS 2012 MVC4 projects have changed the way LogOff is handled.  It changed some things such as the HTTP method (change HttpGet to HttpPost) and added the ValidateAntiForgeryToken() attribute to the LogOff action.

    I'll update this in the next release.

  • philhey@hotmail.com
    Posted By: phil
    On: 11/11/2012 4:05:08 PM

    Hi,

    Great code, I like it a lot, I have a small problem, everything is working fine but when I try to LogOff I get the following error.....

    The required anti-forgery form field "__RequestVerificationToken" is not present.

    Is this perhaps a cookie which is not being set?

    Many thanks

    Phil

  • info@kingwilder.com
    Posted By: King Wilder
    On: 11/11/2012 4:56:49 PM
    @phil - for Logging Off outside of the SecurityGuard Area, you must modify the _LoginPartial.cshtml to include the @Html.AntiForgeryToken() in an HTML Form.  Take a look at the _SecurityGuardLayoutPage.cshtml in the SecurityGuard/Views/Shared folder for an example.  I'll update the article to point out that you need to include this in your code.
  • philhey@hotmail.com
    Posted By: Phil
    On: 11/11/2012 5:15:31 PM

    Thanks for the quick response working fine now.

    Phil

  • t_parsnick@yahoo.com
    Posted By: TParsnick
    On: 11/12/2012 8:10:53 PM

    Hi,

    Thanks for making this! I was able to get most everything to work except for the manage user.  When I click on a logged in user I got the error

    The resource cannot be found.

    Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable.  Please review the following URL and make sure that it is spelled correctly.

    Requested URL: /SGAccount/Manage


    I had already updated _LoginPartial.aspx as explained above using SGAccount like so

    <% if (Request.IsAuthenticated) { %>
        Hello, <%: Html.ActionLink(User.Identity.Name, "Manage", "SGAccount", routeValues: null, htmlAttributes: new { @class = "username", title = "Manage" }) %>!

    However, when I look in Views/SGAccount there is no Manage file.   Shouldn't there be one there?  I do see one in Views/Account.

    Thanks,

    Todd



  • info@kingwilder.com
    Posted By: King Wilder
    On: 11/12/2012 8:27:37 PM

    @TParsnick - sorry you are having this problem, I see what the problem is.  There is no "Manage" controller action on the SGAccount controller.   This controller is just for the basic Membership commands, like Login, Logoff, ChangePassword, ForgotPassword, etc.  This controller is not for managing Users.

    If you are looking to manage your users accounts, then you should point the link to the "SecurityGuard/Index" action.  This will take you to the main dashboard for SecurityGuard.  Then you have access to all the commands in SecurityGuard.

    Take a look at the "Login Partial Updates" section in this article and I show how you can make a link in your public site to point to the SecurityGuard application.

    You can always look in the SecurityGuard controllers to see what controller actions are available.  :^)

    Does this answer your question?

  • info@kingwilder.com
    Posted By: King Wilder
    On: 11/12/2012 8:27:37 PM
    @TParsnick - one more thing, the SecurityGuard application is meant for Administrators of the site ONLY!  It is not meant for your users of your application.  I just wanted to be clear about that.
  • mglowik@yahoo.com
    Posted By: mglowik
    On: 11/13/2012 2:41:05 AM

    hi king,

    do you support the new simplemembership and mvc4? i had some difficulty getting it working and just wanted to make sure.

    it works great with mvc3 and the regular membership.

    thanks,

    michael

  • info@kingwilder.com
    Posted By: King Wilder
    On: 11/13/2012 10:13:43 AM
    @mglowik - sorry no, not yet.  I've attempted to build a version to work with the SimpleMembershipProvider but I've had no luck in making it sleek and efficient.  I hope to figure it out soon, but at the moment SecurityGuard uses the new System.Web.Providers namespace instead of the original System.Web.Security namespace.
  • t_parsnick@yahoo.com
    Posted By: TParsnick
    On: 11/14/2012 1:54:38 AM

    King,

    Thanks for answering my question about the "Manage" controller.  I will use the SecurityGuard/Index action.

    I hope to see your SimpleMembershipProvider soon as this would make for a nice out of the box solution for the MVC4 template.

    Cheers,

    TParsnick

  • jassen.tawil@gmail.com
    Posted By: jtawil
    On: 11/24/2012 5:28:35 PM
    How do I prevent new users from registering from the system?  Is the preferred method to just remove the controller?  Or is there a configuration setting that will stop new users from being automatically activated?  
  • info@kingwilder.com
    Posted By: King Wilderr
    On: 11/24/2012 6:29:51 PM

    @jtawil - you don't want to remove the controller, because then no one could Login. 

    If you don't want users to register themselves into your application, the first thing would be to remove all links to a Register page.  Then the easiest thing to do next would be to simply add the "SecurityGuard" role to the Register action of the SGAccountController.  This will prevent unauthorized users from registering.

    [Authorize(Roles="SecurityGuard")]
    public ActionResult Register(){

    }

    That should work.

    If that's not what you mean, if you want them to Register, just not be activated automatically, then simply change the "isApproved" parameter to "false", in the Register POST action.

    Change this:

    membershipService.CreateUser(model.UserName, model.Password, model.Email, model.SecretQuestion, model.SecretAnswer, true, out createStatus);

    ... to this:

    membershipService.CreateUser(model.UserName, model.Password, model.Email, model.SecretQuestion, model.SecretAnswer, false, out createStatus);

    Then users will be able to register, but you will have to activate them in the SecurityGuard Dashboard.

    I hope this answers your question.

  • mike@5starserv.com
    Posted By: fivestar
    On: 12/7/2012 6:04:03 AM

    I am having the same issue as Hugo above - MVC4 app, the ForgotPassword form only has 1 field for email address, it doesn't show the Question, nor does it have a place to type the Answer.  The result is that you get an error - 'Value cannot be null  Parameter name: passwordAnswer'.

    I have gone into the user account using ASP.NET Configuration in VS and made sure the Question and Answer are set.

    Any help would be appreciated.  Great work on the app by the way!  I really enjoy using it!

    Mike

  • info@kingwilder.com
    Posted By: King Wilder
    On: 12/8/2012 10:47:37 AM

    @Mike and @Hugo, Ok, I see what you guys are talking about.  Yes, that's my faux pas.  I'll look at that and fix it soon.  Thanks for the catch.

  • samarhtc@gmail.com
    Posted By: samhtc
    On: 12/9/2012 4:06:22 PM

    Thanks for your application is very useful, however your tutorial and installation/configuration instructions are out of date, they do not provide correct instruction and this is very frustrating and a waste of time of your users. You should show some respect towards your users, and make sure that the installation and configuration instructions are up to date. 

    No offense. But I have wasted my time trying to figure out how to install and configure this application in order to make it work. 

  • info@kingwilder.com
    Posted By: King Wilder
    On: 12/9/2012 7:35:36 PM
    @samhtc - you are right, since I've built a version for VS 2012 and ASP.NET MVC 4, the installation instructions are a little different.  Not radically, but a little.  Sorry you've had trouble getting it configured.  I'll update this article as soon as I get a moment.
  • lisachan@live.com
    Posted By: mollypepperpot
    On: 12/9/2012 10:42:25 PM

    This is amazing work, I was actually trying to implement this exact same thing using the new simplemembership user and stumbled across your solution -I cannot thank you enough for saving me so much time and work!!  Thanks again :)

  • samarhtc@gmail.com
    Posted By: samhtc
    On: 12/10/2012 12:44:03 AM

    Thansk for your understanding

    As a beginning you may very well start by telling users how to login as an administrator, I cannot see this anywhere on the tutorial or within the code. 

    Thanks. 

  • karthik@inubesolutions.com
    Posted By: Karthik
    On: 12/10/2012 1:56:51 AM

    Articel is amazing.

    I want to implement hierarchical role. Means if i login with Admin all roles has to display(which is happening by default) . Now if  I login with Manager only specific role has to displayed and he should not have any rights to delete any roles nor create roles.

    How this can be acheived ? 

    Or is there is any priority in roles?

  • info@kingwilder.com
    Posted By: King Wilder
    On: 12/10/2012 11:57:34 AM
    @mollypepperpot - why don't you clone the github source and if you get it working then I can create a new version with your code.  Just a thought.
  • info@kingwilder.com
    Posted By: King Wilder
    On: 12/10/2012 11:57:34 AM

    @samhtc - I understand how an unfamiliar application can be a little confusing.  I'll work on the article documentation so it's clearer.

    Regarding your inquiry about how to login as an administrator, sorry that this wasn't clear.  There is no special thing to do in order to log in as an Administrator (I'm assuming you also mean under the SecurityGuard Role).  You simply log in with your administrator credentials and you will have access to SecurityGuard, as long as you haven't changed any roles in the Authorize attributes on the controllers in the SecurityGuard Area.

    I show how you can create public site navigation to conditionally display a link to SecurityGuard if you log in as that Role.  Logged on users who are NOT in the SecurityGuard Role will not have access to SecurityGuard.

    This means that whenever anyone logs into the application, your application will pick up the Role they are associated with and respond accordingly. 

    I hope this answers your question.

  • info@kingwilder.com
    Posted By: King Wilder
    On: 12/10/2012 11:57:34 AM

    @Karthik -

    • Is there any priority in roles? - No

    I think you are asking if different roles apart from the SecurityGuard Role can have access to SecurityGuard in order to manage users, a quick answer might be, "yes", but this hasn't been tested or implemented.

    SecurityGuard was meant for a single role (SecurityGuard) that would have complete access to the entire operations of SecurityGuard.  This area is meant for an Administrator to handle all user functions, not to delegate certain functions to other roles.

    I'm not saying that what you want to do isn't possible, but you would have to make modifications to make it work, such as decorating some controllers with less-privileged roles in order to allow that Role to handle those operations.

    I hope this answers your questions.

  • karthik@inubesolutions.com
    Posted By: Karthik
    On: 12/10/2012 8:53:37 PM

    Thank you very much :)

    Already changed few lines of codes for two levels. There are 5 levels of roles, felt bit pain in adjusting the code . So posted.

  • info@kingwilder.com
    Posted By: King Wilder
    On: 12/10/2012 9:11:01 PM

    @Karthik - I did what I could in building SecurityGuard that would allow you to make modifications directly in your application without having to go into the original SecurityGuard assembly.  This allows for flexibility so you can make a change to one application and not be stuck with having those changes in all future applications.

    Yeah, unfortunately if something needs to be tailored to your liking, you will need to put in a little work.  :^)

  • info@kingwilder.com
    Posted By: King Wilder
    On: 12/10/2012 9:11:01 PM

    To all, I've posted the fixed to the ForgotPassword issue when the RequiresQuestionAndAnswer is set to "true".  This is version 1.0.8 and has been posted to NuGet and I've also updated the github repository.

    Any future issues you find can also be posted on the github repository.

    Thanks again for bringing this to my attention.

  • jamesabolton@gmail.com
    Posted By: JamesB
    On: 12/19/2012 1:36:44 PM

    Hey King, I've been using SG for a long time - love it. I upgraded my application from MVC3 to MVC4 recently and everything was working fine after the upgrade. Today I upgraded SG from 1.0.4 to the latest version via nuget. The installer created a new SQL connection in my web.config and applied that to all of the membership settings (well commented out my membership stuff and made new ones); it was easy enough to go in and replace all of the membership settings with the correct SQL connection. After that I made changes to use LoginPartial instead of LogonPartial. Now when I try to login I am getting an exception in the SGAccountCOntroller.cs at line 76:

    if (authenticationService.LogOn(model.UserName, model.Password, model.RememberMe))

    The exception mentioned several columns in the Users table are not valid/found: [UserId], [ApplicationId], [IsAnonymous], [LastActivityDate]. I confirmed these are missing from my database table Users. 

    Was there an update to the membership database tables from Microsoft that I missed? My membership tables are from when I created my original MVC3 application. 

    Here is the SQL that I got from SQL Profiler that caused the exception:

    SELECT TOP (1) 
    [Extent1].[PasswordFormat] AS [PasswordFormat], 
    [Extent2].[UserId] AS [UserId], 
    [Extent2].[ApplicationId] AS [ApplicationId], 
    [Extent2].[UserName] AS [UserName], 
    [Extent2].[IsAnonymous] AS [IsAnonymous], 
    [Extent2].[LastActivityDate] AS [LastActivityDate], 
    [Extent1].[UserId] AS [UserId1], 
    [Extent1].[ApplicationId] AS [ApplicationId1], 
    [Extent1].[Password] AS [Password], 
    [Extent1].[PasswordSalt] AS [PasswordSalt], 
    [Extent1].[Email] AS [Email], 
    [Extent1].[PasswordQuestion] AS [PasswordQuestion], 
    [Extent1].[PasswordAnswer] AS [PasswordAnswer], 
    [Extent1].[IsApproved] AS [IsApproved], 
    [Extent1].[IsLockedOut] AS [IsLockedOut], 
    [Extent1].[CreateDate] AS [CreateDate], 
    [Extent1].[LastLoginDate] AS [LastLoginDate], 
    [Extent1].[LastPasswordChangedDate] AS [LastPasswordChangedDate], 
    [Extent1].[LastLockoutDate] AS [LastLockoutDate], 
    [Extent1].[FailedPasswordAttemptCount] AS [FailedPasswordAttemptCount], 
    [Extent1].[FailedPasswordAttemptWindowStart] AS [FailedPasswordAttemptWindowStart], 
    [Extent1].[FailedPasswordAnswerAttemptCount] AS [FailedPasswordAnswerAttemptCount], 
    [Extent1].[FailedPasswordAnswerAttemptWindowsStart] AS [FailedPasswordAnswerAttemptWindowsStart], 
    [Extent1].[Comment] AS [Comment]
    FROM   [dbo].[Memberships] AS [Extent1]
    INNER JOIN [dbo].[Users] AS [Extent2] ON [Extent1].[UserId] = [Extent2].[UserId]
    INNER JOIN [dbo].[Applications] AS [Extent3] ON [Extent2].[ApplicationId] = [Extent3].[ApplicationId]
    WHERE ((LOWER([Extent3].[ApplicationName])) = (LOWER(N'DatabaseName'))) AND ((LOWER([Extent2].[UserName])) = (LOWER(N'UserName')))

  • jamesabolton@gmail.com
    Posted By: JamesB
    On: 12/19/2012 1:36:44 PM

    Well looks like the web.config changes might have been due to some updates from MS:

    http://weblogs.asp.net/jgalloway/archive/2012/08/29/simplemembership-membership-providers-universal-providers-and-the-new-asp-net-4-5-web-forms-and-asp-net-mvc-4-templates.aspx

    I'm still researching changes to the database schema. I would like to know what "version" of the membership schema you are using (a link to what it should look like would be great).

  • jamesabolton@gmail.com
    Posted By: JamesB
    On: 12/19/2012 3:02:39 PM
    Found the problem. The membership stuff was all messed up. I needed to still use AspNetSqlMembershipProvider. I think it would be helpful if the manual install guide mentioned that and showed an example web.config snippet of the membership, profile, roleManager sections
  • info@kingwilder.com
    Posted By: King Wilder
    On: 12/19/2012 5:53:42 PM

    @JamesB - sorry about the problem upgrading.  For MVC 4 applications, I've moved to the new System.Web.Providers assemblies instead of the original System.Web.Security namespace.  I do mention that the newer versions of SecurityGuard are using the System.Web.Providers namespace, but I'll update the article to point out that it has changed from the previous version of the providers.

    Regarding the membership sections in the web.config file, the main difference is the providers that are used.  I talk a little more about this change in my other article on my MvcInstaller package for VS 2012.  That might help you understand the primary differences between the two providers.

    I will update my article to point out what to do for those developers who are upgrading SecurityGuard on an application that still uses the System.Web.Security namespace.

  • abhrcome@gmail.com
    Posted By: Behrooz
    On: 12/29/2012 2:24:46 AM

    to install package i faced to following error :

    Install-Package : Could not connect to the feed specified at 'https://nuget.org/api/v2/curated-feeds/windows8-packages/'. Please verify that the package 

  • abhrcome@gamil.com
    Posted By: Behrooz
    On: 12/29/2012 6:29:13 AM

    in fact i installed these type in my vs on windows 8 and it works well but when i wanted to install this in windows 7 on vs2012 it showed that error code 

    and i want just know that it only works on windows 8 or not ?

  • info@kingwilder.com
    Posted By: King Wilder
    On: 12/29/2012 12:00:49 PM
    @Behrooz - your error refers to NuGet, not SecurityGuard.  You should check and make sure you are connecting to the correct NuGet feed.
  • info@kingwilder.com
    Posted By: King Wilder
    On: 12/29/2012 12:00:49 PM
    @Behrooz - I have not tested this on Windows 8, only on Windows 7, and it does work on Windows 7.  It seems you are having trouble with NuGet and not SecurityGuard.  Are you able to install any other packages on Windows 7?  This might narrow down problems you are having.  I hope this helps.
  • abhrcome@gmail.com
    Posted By: Behrooz
    On: 12/30/2012 12:17:41 AM
    thanks king . about the nuget i can install all nuget comonent and i supose there must not any problem . and this  is so strainge for me it dose not install on windows 7 . ? and lots of thanks for your answer
  • abhrcome@gamil.com
    Posted By: Behrooz
    On: 12/30/2012 1:18:51 AM

    thanks king i`v solved . i changed a setting in nuget and it installed well.

    and a problem when  user request a page that is must authenticate after login login url is null and it return to home page ?

  • info@kingwilder.com
    Posted By: King Wilder
    On: 1/4/2013 11:53:14 AM
    @Behrooz - if you are talking about the ReturnUrl feature, that should be working.  I'll check.
  • Abhrcome@gmail.com
    Posted By: Behrooz
    On: 1/6/2013 2:44:40 AM
    hi king ! i checked again and it still retrun null value and return to home/index page if you have sample project send it to me please
  • info@kingwilder.com
    Posted By: King Wilder
    On: 1/6/2013 10:24:33 PM

    @Behrooz - you are right, it is broken.  I just fixed it and updated the github repository and the NuGet feeds.  You don't need to update via NuGet to make this work.  Simply open the Login.cshtml (or the WebForms version if that's what you are using), and make the Html.BeginForm() look like this:

    @using (Html.BeginForm((string)ViewBag.FormAction, "SGAccount", new { returnUrl = Request.QueryString["ReturnUrl"] }))

    Thanks for pointing this out.

  • abhrcome@gmail.com
    Posted By: Behrooz
    On: 1/7/2013 2:12:02 AM

    Thanksssssssssssssssssssssssssssssssss! it works properly OK

    I Love you king

  • info@kingwilder.com
    Posted By: King Wilder
    On: 1/7/2013 10:26:53 AM
    @Behrooz - I'm suuure it's just platonic.  :^)
  • adamo_90@vp.pl
    Posted By: Adam
    On: 1/7/2013 4:22:58 PM

    Dear King Wilder,

    First of all I would like to thank you for the SecurityGuard and the effort you put to create it. I haven't been using it long time but I really like it, especially the fact I don't have to invent the wheel again :) However, I have encountered one problem using your package -- I'm Polish and I tend to write applications in my native language so if I want to use the SecurityGuard I've got two options: leave it in English or translate every single label. I was wondering if you could take into consider putting all strings such as labels in views, custom error messages in models etc. in a resource file. I think it would be great improvement for the people writing multilingual applications.

    Secondly, I don't know whether you've updated something recently, but when installing SecurityGuard package via NuGet, additional Area is being added called SGMembership and I suppose it contains duplicated Views, also ViewModels are duplicated. As a result I cannot build my solution because following errors occur: The namespace 'SecurityGuard.ViewModels' already constains a definition for '[ViewModelName]'. When I deleted SGMembership Area and the duplicated view models, my solution has been build successfully.

    Lastly I would like to about the licence -- can I use the SecurityGuard in commercial use or it's only for personal use?

    Regards,

    Adam

  • info@kingwilder.com
    Posted By: King Wilder
    On: 1/8/2013 11:20:01 AM

    @Adam - I'm glad you like the application.  My responses follow:

    • Multilingual application - I have thought about this but I haven't had time to implement anything like this.  I will consider it though.
    • SGMembership Area - yes, sorry this should have been removed.  It's removed in the Mvc 4 version.
    • Commercial License - at the moment I haven't thought about offering it for commercial use.  I would imagine I would ask for a fee for this.  You can email me at: info at kingwilder.com to discuss this further if you'd like.

    Thanks.

  • adamo_90@vp.pl
    Posted By: Adam
    On: 1/8/2013 12:49:52 PM
    So, you're saying that I can't legally install SecurityGuard package in my Visual Studio solution and sell the application?
  • info@kingwilder.com
    Posted By: King Wilder
    On: 1/8/2013 12:58:27 PM
    @Adam - you can legally use SecurityGuard in any application as long as you are not selling your application (with SecurityGuard installed in it) to end users.  If you want to do that, then I would need compensation for the use of SecurityGuard in your application.
  • hamsaya@gmail.com
    Posted By: Hamsaya
    On: 1/9/2013 10:10:37 AM

    I should say wonderful job

    I have one little question how did you create your user that you assigned to the SecurityGuard role.

    Thanks

  • hamsaya@gmail.com
    Posted By: hamsaya
    On: 1/9/2013 10:42:52 AM
    Oh I should say that I have installed your MVCinstaller.MVC4 and tried admin.. on long in I get only change password option in the menu and no security guard menu and  plus I can not access it even manually.
  • hamsaya@gmail.com
    Posted By: hamsaya
    On: 1/9/2013 10:56:31 AM
    I changed _Layout.cshtml so the Administrator role have the ability to view the secutity guard menu and can click but it keeps asking for password.
  • hamsaya@gmail.com
    Posted By: hamsaya
    On: 1/9/2013 11:04:48 AM
     @if (User.IsInRole("Administrator"))
            {
                <li>@Html.ActionLink("Security Guard", "Index", "Dashboard", new { area = "SecurityGuard" }, null)</li>
            } 
  • info@kingwilder.com
    Posted By: King Wilder
    On: 1/9/2013 11:02:31 AM

    @hamsaya - I'll answer your questions:

    1. User for SecurityGuard - that was created using my other NuGet package called MvcInstaller
    2. Menu items - SecurityGuard does not create any menu navigation items.  You have to create these yourself.  Read the article on SecurityGuard for more information on this.
    3. Access to SecurityGuard - read the article.  You need the SecurityGuard Role to access the SecurityGuard Area, not the Administrator Role.

    Once you apply these things, you should have no problems.  Enjoy.

  • hamsaya@gmail.com
    Posted By: hamsaya
    On: 1/9/2013 11:42:13 AM

    Thanks for your response, I actually did come up with another solution.

    What I did was I authorized Administrator to access the controllers SecurityGuard had access to.. in MVC installer I had only 2 roles Administrator and Manager...

    I thank you for this great work... and I will recommend this to all my fellow developers.

  • info@kingwilder.com
    Posted By: King Wilder
    On: 1/9/2013 11:52:54 AM

    @hamsaya - in MvcInstaller you have the ability to add any number of Roles that you need for your application, including the SecurityGuard Role.  But since you didn't, that's ok, you have it working now.  But I would not include the Administrator Role on the SecurityGuard controllers.

    Here's what I would do for better security:

    1. Create SecurityGuard User - Log into SecurityGuard and create a user and apply the SecurityGuard Role to that user.  This user can have any other roles only, but this should be the only user assigned to the SecurityGuard Role. In my opinion it should be a single user such as the admin user.  This user would have complete control over the entire application as well as the Membership system (SecurityGuard).
    2. Remove Administrator from SecurityGuard - now that this user is created, remove the Administrator Role from the SecurityGuard controllers so that the SecurityGuard Role is the only role on them.  This provides more security so other users who have Administrator priviledges don't have access to Membership when they shouldn't.

    That's my suggestion.  Have fun!

  • hamsaya@gmail.com
    Posted By: hamsaya
    On: 1/9/2013 2:16:04 PM

    I was thinking of something on the same line as you mentioned. You have done a fantastic job of creating this interface. If I happened to come up with something to contribute I will definately let you know ...

    Thanks a bunch !

  • abhrcome@gmail.com
    Posted By: Behrooz
    On: 1/14/2013 2:46:15 AM

    hi king 

    in another try  i installed securityguard without change just change in connection string and i`m sure that connection string is correct

    after run i faced to this problem : The provider did not return a ProviderManifestToken string  in this method Register(viewModels.RegisterViewModel model)

    or any other method dose same as this error . i mention again that i installed security guard orginaly and just change is in connection string which i`m sure it is correct becuase i coyed connection from another program

  • abhrcome@gmail.com
    Posted By: Behrooz
    On: 1/14/2013 4:34:07 AM

     king if it be needed i can send my web.config file to you 

  • twuncher@hotmail.com
    Posted By: twun
    On: 1/14/2013 6:06:56 AM

    Hi,

    i have managed to get this installed and working, but have an issue when adding usernames with . or @ signs in, seems as i was wanting to use the email address as the username, i am having issues, it lets me create the users but when i try to edit or update/ or add to role i get a 404 error page.

    kind regards

  • info@kingwilder.com
    Posted By: King Wilder
    On: 1/14/2013 11:24:07 AM
    @Behrooz - I have never seen this error before.  Can you send me this sample application that reproduces this error?  You can email it to info at kingwilder.com.  I'll take a look.
  • hamsaya@gmail.com
    Posted By: hamsaya
    On: 1/15/2013 3:52:01 PM

    On account Manage I get this error ... Account/Manage ..  I get the following error..

    To call this method, the "Membership.Provider" property must be an instance of "ExtendedMembershipProvider".

    I noted others having the same problem. I re installed the MVC 4 didn't work :(

    It was working fine all of a sudden just stopped working ..

  • johan.ca.willems@gmail.com
    Posted By: johwil
    On: 1/15/2013 2:48:46 PM

    Hi,

    I installed SecurityGuard (for MVC3) but when I do all the configuration and try to logon, the logon page is empty. Any idea what goes wrong?

    Kind regards.

  • info@kingwilder.com
    Posted By: King Wilder
    On: 1/15/2013 8:16:02 PM
    @hamsaya - I've updated the article and the Troubleshooting section that contains information about this error you are getting.  FYI, it is not an error in SecurityGuard.  Read the section and it should answer your question.
  • info@kingwilder.com
    Posted By: King Wilder
    On: 1/15/2013 8:16:02 PM

    @johwil - sorry I don't know why the Logon page is empty.  Have you looked at the page to see if it contains any code?  Can you give me more information? 

    1. For you MVC3 application you did install SecurityGuard for Mvc3 and not Mvc4 correct?
    2. What is the Url of the Login link?
    3. Can you log into the SecurityGuard Area?

    You can always try to uninstall the package and re-install it.

  • johan.ca.willems@gmail.com
    Posted By: johwil
    On: 1/16/2013 4:34:22 AM

    I installed SecurityGuard for MVC3

    The url for the logonlink is SGAccount/Logon. The page is realy empty (checked with FireBug). It contains only the basic html tags like <html><head></head><body></body></html>

    I installed and reinstalled SecurityGuard multiple times. I found one problme with the installation (in an existing project). The installation installs ALL the controlers twice. One in Area/SecurityGuard/Controllers and once in Controllers. In order to make the application build, I have to remove aal the SG controllers from the Controllers folder. If I do not modify the _partial_login.cshtml page, to point to SGAccount (keep Account), I can login to the application and the SecurityGuard dashboard is available. Most of the functionality also works fine (except listing the roles). If I continue debugging, working with roles works as expected.

    Kind regards

  • info@kingwilder.com
    Posted By: King Wilder
    On: 1/16/2013 10:45:40 AM

    @johwil - this is new!  Is this a brand new project you are building in VS 2010, or are you adding SecurityGuard to an existing application?  If it is brand new, where you haven't started writing any code yet, I would simply delete everything and start again.  You should not be having these problems.

    Upon installation, everything is installed in the location that they should be, so the SGAccount Controller SHOULD be in the /Controllers folder, not in the SecurityGuard Area, if that's what you are thinking.

    Also, don't check the Logon page with Firebug, actually look in the /Views/SGAccount folder and open the file to see if it has any markup.  It should.

    Have you watched the video showing me install and use SecurityGuard?  If not, take a look and see if you are doing something wrong.  I use it on every application I build and I'm literally up and running in minutes.

    You will most likely be able to use the Account Controller to log into the SecurityGuard Area as long as the SecurityGuard Role is created.  But the SGAccount Controller has modified the commands for account management to make them work in a more enhanced manner than the default Account Controller, so you should use that for authentication and account management.

    I suggest you do this as a test:

    1. Create a new VS 2010 Mvc3 application
    2. Modify the web.config/connectionStrings section to point to your SQL Server instance
    3. Install SecurityGuard
    4. Make the minor configuration changes necessary and run it

    This should give you a nice clean application with SecurityGuard successfully installed.  This whole process should take you no more than 5 minutes.  Once you see how this application is working, you should be able to go back and make adjustments to your other application.

    Let me know how it goes.

  • johan.ca.willems@gmail.com
    Posted By: johwil
    On: 1/16/2013 11:43:34 AM

    Hi,

    On quick update (I did not have access to the computer with the project while writing above update). It is not the controllers that are created twice, but the Models.

  • johan.ca.willems@gmail.com
    Posted By: johwil
    On: 1/16/2013 11:43:34 AM

    Hi,

    Installing SecurityGuard in a new project gives this output:

    PM> install-package securityguard
    Successfully installed 'SecurityGuard 1.0.53.586'.
    'Views\SGAccount\Register.cshtml' already exists. Skipping...
    'Views\SGAccount\Register.aspx' already exists. Skipping...
    'Areas\SecurityGuard\Views\Membership\CreateUser.cshtml' already exists. Skipping...
    'Areas\SecurityGuard\Models\RegisterViewModel.cs' already exists. Skipping...
    Successfully added 'SecurityGuard 1.0.53.586' to MvcApplication3.

    PM>

    And again, the installation process creates all the models twice, once in <Project>/Area/SecurityGuard/Model and once in <Project>/Model

    Which one should I delete

  • info@kingwilder.com
    Posted By: King Wilder
    On: 1/16/2013 12:38:19 PM

    @johwil - ok I just looked at the NuGet package for Mvc3 installations, and you are right.  I goofed!  I'll fix that real quick.

    Here's how you can easily fix it in the meantime.

    • In Root/Models - you should only have LogOnViewModel.cs.  You can also have AccountModels.cs but it won't be used.
    • In Root/Areas/SecurityGuard/Models - delete the LogOnViewModel.cs file that is there

    Build the application and it should work fine now.  Sorry about that.  Let me know how it turns out.

  • johan.ca.willems@gmail.com
    Posted By: johwil
    On: 1/16/2013 1:53:05 PM

    Hi,

    I installed SecurityGuard (new version ;-)  ) in a copy of the original application and the installation went fine (no more errors, no more doubles) thankyou for this.

    When I do the necessary setup (delete the one line in weg.config), delete the .aspx pages and change Account to SGAccount in _LogOnPartial.cshtml, I still don't get a logon page (the url is:http://localhost:28197/SGAccount/LogOn?ReturnUrl=%2fSGAccount%2fLogOn)

  • info@kingwilder.com
    Posted By: King Wilder
    On: 1/16/2013 2:34:45 PM

    @johwil - I don't know why this is happening.  If you click on the "LogOn" link, doesn't it take you to the Logon page?  It seems you have something else going on here.  Do you have any "location" sections in the web.config file?  Is there anything that is restricting ALL unauthenticated resources?  If you have the entire application restricted to only authenticated users, then you might need to allow anonymous users to access the /Views/SGAccount folder.

    Otherwise, I don't know why this is occurring.

  • jhoan.ca.willems@gmail.com
    Posted By: johwil
    On: 1/16/2013 3:26:26 PM

    Thank you, Anonimous acces to the SGAccountController did it.

    Thank you very much for your patience.

  • info@kingwilder.com
    Posted By: King Wilder
    On: 1/16/2013 6:30:24 PM
    @johwil - I'm glad that fixed things for you.
  • abhrcome@gmail.com
    Posted By: Behrooz
    On: 1/18/2013 11:17:14 PM

    hi king if you remember i`v sent an email to you to discover my problem ?

  • info@kingwilder.com
    Posted By: King Wilder
    On: 1/19/2013 10:44:38 AM
    @Behrooz - I sent an email back to you.
  • info@kingwilder.com
    Posted By: King Wilder
    On: 1/19/2013 11:43:06 AM

    @twun - sorry for the delay, I completely missed your post.  Regarding your problem updating users with usernames as email addresses, what version of Mvc and SecurityGuard are you using?

    I was able to successfully create a user with the username as an email address, and then instantly assign the user to a role without issues.  I was also able to update the user's information, and then revoke the user from the role. 

    I did this with an Mvc4 project using SecurityGuard 1.0.8.  Let me know.

  • abhrcome@gmail.com
    Posted By: Behrooz
    On: 1/19/2013 11:17:39 PM

    hi king  and thanks a lots for your response i think my problem must be in web.config  this is web.config content that work withs security guard  and it works very well after change some option such as : type in membership tag and roles please take attention with those  

    <configuration>
      <configSections>
        <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
        <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
      </configSections>
      <connectionStrings>
        <add name="DefaultConnection" providerName="System.Data.SqlClient"
             connectionString="Data Source=B-AMIRINEJAD\SQLSERVER2012SC;User ID=abhrcome;Password=123456;Initial Catalog=MVCDB;Integrated Security=true" />
      </connectionStrings>
      <appSettings>
        <add key="webpages:Version" value="2.0.0.0" />
        <add key="webpages:Enabled" value="false" />
        <add key="PreserveLoginUrl" value="true" />
        <add key="ClientValidationEnabled" value="true" />
        <add key="UnobtrusiveJavaScriptEnabled" value="true" />
        <add key="MvcMailer.BaseURL" value="" />
        <add key="SecurityGuardEmailFrom" value="info@email.net" />
        <add key="SecurityGuardEmailSubject" value="Your Password has been reset." />
        <add key="SecurityGuardEmailTemplatePath" value="~/MailerTemplates/ResetPassword.html" />
        <add key="AppInstalled" value="false" />
      </appSettings>
      <system.web>
        <httpRuntime targetFramework="4.5" />
        <compilation debug="true" targetFramework="4.5" />
        <pages>
          <namespaces>
            <add namespace="System.Web.Helpers" />
            <add namespace="System.Web.Mvc" />
            <add namespace="System.Web.Mvc.Ajax" />
            <add namespace="System.Web.Mvc.Html" />
            <add namespace="System.Web.Routing" />
            <add namespace="System.Web.WebPages" />
          </namespaces>
        </pages>
        <authentication mode="Forms">
          <forms loginUrl="~/SGAccount/Login" timeout="2880" />
        </authentication>
        <profile defaultProvider="AspNetSqlProfileProvide" enabled="true">
          <providers>
            <add name="AspNetSqlProfileProvide" 
                 type="System.Web.Security.SqlProfileProvider" 
                 connectionStringName="DefaultConnection" 
                 applicationName="/" />
          </providers>
        </profile>
        <!--<membership>
          <providers>
            <clear />
            <add name="DefaultMembershipProvider" 
                 type="System.Web.Providers.SqlMembershipProvider" 
                 connectionStringName="DefaultConnection" 
                 enablePasswordRetrieval="false" 
                 enablePasswordReset="true" 
                 requiresQuestionAndAnswer="false" 
                 requiresUniqueEmail="false" 
                 maxInvalidPasswordAttempts="5" 
                 minRequiredPasswordLength="6" 
                 minRequiredNonalphanumericCharacters="0"
                 passwordAttemptWindow="10" 
                 applicationName="/" />
          </providers>
        </membership>
        <roleManager enabled="true" defaultProvider="DefaultRoleProvider">
          <providers>
            <clear />
            <add name="AspNetSqlRoleProvider"
            type="System.Web.Security.SqlRoleProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
            connectionStringName="DefaultConnection"
            applicationName="/" />
            <add applicationName="/" name="AspNetWindowsTokenRoleProvider"
                 type="System.Web.Security.WindowsTokenRoleProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
          </providers>
        </roleManager>-->


        <membership>
          <providers>
            <clear/>
            <add name="AspNetSqlMemberShipProvider"
                 type="System.Web.Security.SqlMembershipProvider"
                 connectionStringName="DefaultConnection"
                 requiresQuestionAndAnswer="false"
                 applicationName="/"
                 minRequiredPasswordLength="5"
                 minRequiredNonalphanumericCharacters="0"
                 enablePasswordReset="false"
                 requiresUniqueEmail="false"
            />
          </providers>


        </membership>
        <roleManager enabled="true" defaultProvider="AspNetSqlRoleProvider">
          <providers>
            <clear />
            <add name="AspNetSqlRoleProvider"
                 type="System.Web.Security.SqlRoleProvider"
                 connectionStringName="DefaultConnection"
                 applicationName="/" />
           
          </providers>
        </roleManager>
        <!--
                If you are deploying to a cloud environment that has multiple web server instances,
                you should change session state mode from "InProc" to "Custom". In addition,
                change the connection string named "DefaultConnection" to connect to an instance
                of SQL Server (including SQL Azure and SQL  Compact) instead of to SQL Server Express.
          -->
        <sessionState mode="InProc" customProvider="DefaultSessionProvider">
          <providers>
            <add name="DefaultSessionProvider" type="System.Web.Providers.DefaultSessionStateProvider, System.Web.Providers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" connectionStringName="DefaultConnection" />
          </providers>
        </sessionState>
      </system.web>
      <system.webServer>
        <validation validateIntegratedModeConfiguration="false" />
        <handlers>
          <remove name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" />
          <remove name="ExtensionlessUrlHandler-ISAPI-4.0_64bit" />
          <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
          <add name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" />
          <add name="ExtensionlessUrlHandler-ISAPI-4.0_64bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness64" responseBufferLimit="0" />
          <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
        </handlers>
      </system.webServer>
      <entityFramework>
        <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
      </entityFramework>
      <system.net>
        <mailSettings>
          <!-- Method#1: Configure smtp server credentials -->
          <smtp from="some-email@gmail.com">
            <network enableSsl="true" host="smtp.gmail.com" port="587" userName="some-email@gmail.com" password="valid-password" />
          </smtp>
          <!-- Method#2: Dump emails to a local directory -->
          <!--
    <smtp from="some-email@gmail.com" deliveryMethod="SpecifiedPickupDirectory">
    <network host="localhost" />
    <specifiedPickupDirectory pickupDirectoryLocation="c:\temp\"/>
    </smtp>
    -->
        </mailSettings>
      </system.net>
      <runtime>
        <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
          <dependentAssembly>
            <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" culture="neutral" />
            <bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0" />
          </dependentAssembly>
        </assemblyBinding>
      </runtime>
    </configuration>

  • info@kingwilder.com
    Posted By: King Wilder
    On: 1/20/2013 12:26:57 AM

    @Behrooz - I see the problem, look at the article again.  I mention in the "Pre-requisites" that SecurityGuard uses the System.Web.Providers assembly, not the prior System.Web.Security assembly.

    Probably the easiest way to get the site configured is to install MvcInstaller.Mvc4.  It will place the correct Membership sections in the web.config for you.

    I would suggest you completely delete all of the Membership sections from the web.config and then install the MvcInstaller.Mvc4 NuGet package.  You'll see that it will install all the necessary configuration for you.  But it will probably also install a second connectionStrings section.  So you might get two "DefaultConnection" connection string elements.  Delete one of them and run your application.  It should all work then.

    Also pay attention to the ApplicationName in the various membership sections.  They need to match the application name in your database.  If it doesn't you won't be able to log in.

    Give that a try.

  • abhrcome@gmail.com
    Posted By: Behrooz
    On: 1/22/2013 7:15:21 AM

    hi king and sorry again  i hosted my application under IIS and on browse  time it shows me an error 

    The anti-forgery token could not be decrypted. If this application is hosted by a Web Farm or cluster, ensure that all machines are running the same version of ASP.NET Web Pages and that the <machineKey> configuration specifies explicit encryption and validation keys. AutoGenerate cannot be used in a cluster.

  • info@kingwilder.com
    Posted By: King Wilder
    On: 1/22/2013 12:11:25 PM

    @behrooz - I'm not sure what this message means. 

    1. Were you able to install the application successfully on the server?
    2. How did you deploy it to the server?
    3. Did you use MvcInstaller?

  • abhrcome@gmail.com
    Posted By: Behrooz
    On: 1/23/2013 12:14:53 AM
    hi king . i deployed my application under my iis in my local machine  after deploy that showd me that error but the mail thing i didn`t installed MvcInstaller and i used manual install from nuget . is that necessry option to install mvcinstaller?
  • info@kingwilder.com
    Posted By: King Wilder
    On: 1/23/2013 12:17:09 PM
    @Behrooz - I still don't know what is causing that error.  My suggestion is that you watch this video: http://www.mvccentral.net/s/46, and see how you can use MvcInstaller with SecurityGuard to quickly and effortlessly get your application installed and have the Membership system installed.
  • twuncher@hotmail.com
    Posted By: twun
    On: 1/28/2013 5:41:30 AM

    Hi King,

    i was using 1.0.9 and MVC4,

    twun

  • twuncher@hotmail.com
    Posted By: twun
    On: 1/28/2013 5:41:30 AM

    i had another look and resolved this myself, it wasn't a problem with securityguard, it was to do with having . (period) in the url.

    i had to add a handler to deal with this in the webconfig, so it gets treated as a MVC URL.

    <handlers>
    <add
    name="UrlRoutingHandler"type="System.Web.Routing.UrlRoutingHandler, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"path="/SecurityGuard/*"verb="GET"/>
    </handlers>

  • twuncher@hotmail.com
    Posted By: twun
    On: 1/28/2013 5:41:30 AM
    sorry make it

    verb="*"/>

    so that it catches the posts too.

  • info@kingwilder.com
    Posted By: King Wilder
    On: 1/28/2013 12:20:52 PM
    @twun - I'm glad you got it working for you, but I still don't have a problem entering an email address as the username when creating a new user in SecurityGuard.
  • kkurukkal@gmail.com
    Posted By: kkurukkal
    On: 1/28/2013 10:52:44 PM

    Hi King,

    Thank you for creating this wonderful membership management system. I was able to follow the instructions and installed them on my sample application. I really like it. However, I found an issue with the system and wanted to bring this to your attention. When I clicked on my name to manage the profile, I got an error message. Please see the error message below. I checked the SGAccountController and could not find this action, "Manage". Please let me know.

    Server Error in '/' Application.


    The resource cannot be found.

    Description:
    HTTP 404. The resource you are looking for (or one of its dependencies)
    could have been removed, had its name changed, or is temporarily unavailable.
    Please review the following URL and make sure that it is spelled correctly.

    Requested URL: /SGAccount/Manage


    Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET
    Version:4.0.30319.17929

    Thanks,

    Kiri- 

  • info@kingwilder.com
    Posted By: King Wilder
    On: 1/29/2013 12:31:09 AM

    @kiri - you are getting this message because the Manage action is not part of SecurityGuard.  It's part of the default AccountController that is installed with the Mvc template in Visual Studio.

    You would need to change the _LoginPartial.cshtml to remove that link, or have it point to the SecurityGuard Area instead.

    If you look in the Manage View and Manage Action of the controller, you'll see what it does.  In essence it's trying to be a mini-Administrative page.  It's giving you the ability to Change the Password, and a couple other things.  The important things like ChangePassword are included in SecurityGuard so you can completely remove this and just use the commands in SecurityGuard.

    I hope this answers you question.

  • kkurukkal@gmail.com
    Posted By: kkurukkal
    On: 1/29/2013 5:38:28 AM

    Hi King,

    Thank you for the quick response. I have removed the line from the _LoginPartial.cshtml for now. I will go through the code again to understand what it does exactly later. Once again, thank you for the wonderful membership management system. This is what exactly I was looking for.

    PS: May be you may want to update your help document to reflect this. I was basically following your instructions for installing it. Later I found the video as well. Very nice tutorial like the one from Bob Tabor and Scott Hassleman.

    Cheers!

    Kiri-

  • temirlan1990@gmail.com
    Posted By: Temirlan
    On: 2/7/2013 3:38:03 AM

    Hello, King Wilder!

    I have a problem.
    For example, on this page SecurityGuard/Membership/Update/bizuser superadmin can set a new email address, comment.
    I need to superadmin could give the new password to the user whithout old password.
    I know this violates the whole security policy, but it should be.

    How need add new textbox, and input for this textbox new password?

  • temirlan1990@gmail.com
    Posted By: Temirlan
    On: 2/7/2013 4:08:53 AM

    But have a resetPassword() method...

    Maybe work with this method, but I don't work yet.

  • info@kingwilder.com
    Posted By: King Wilder
    On: 2/7/2013 11:08:46 AM

    @Temirlan - I have not built any functions like this into SecurityGuard yet.  The source code is available to you in the meantime if you want to add that feature yourself.

    I would not include this feature in the details page for the user, I would create a new page just for this purpose.  This way you aren't modifying any existing functionality, you are just adding to it.  The ResetPassword method could be added to this new functionality.

    I may get around to adding this feature if I think the community would like it.

  • temirlan1990@gmail.com
    Posted By: Temirlan
    On: 2/7/2013 10:13:38 PM

    Hello, I do next...

    In MembershipController at method UpdateUser I'm add a code user.ChangePassword(user.ResetPassword(), "testPassword") before try...catch block.

    And now If superadmin click to button "Update" in Manage User panel, to DB send new password "testPassword"

    Now I work, give random password, and display into a Update.cshtml file.

    I hope finished it

  • temirlan1990@gmail.com
    Posted By: Temirlan
    On: 2/8/2013 12:43:39 AM

    Create in MembershipController random password generator before try...catch block.

    UserViewModel model = new UserViewModel();

    model.RandomPassword = Membership.GeneratePassword(12, 1);

    user.ChangePassword(user.ResetPassword(), model.RandomPassword);

    And in UserViewModel new property public string RandomPassword { get; set; }

    And I cannot, display my new random password at Update.cshtml @Model.RandomPassword don't show the random password

  • temirlan1990@gmail.com
    Posted By: Temirlan
    On: 2/8/2013 5:38:15 AM

    I solved this problem.

    In MembershipController add this code

    #region Random Password
            [HttpGet]
            public ActionResult RandomPassword()
            {
                return View();
            }

            [HttpPost]
            [MultiButtonFormSubmit(ActionName = "UpdateDeleteCancel", SubmitButton = "RandomPassword")]
            public ActionResult RandomPassword(string UserName)
            {
                MembershipUser user = membershipService.GetUser(UserName);
                string newPassword = Membership.GeneratePassword(8, 0);
                newPassword = Regex.Replace(newPassword, @"[^a-zA-Z0-9]", m => "9");           
                ViewData["randomPass"] = newPassword;
                user.ChangePassword(user.ResetPassword(), newPassword);
                return View();
            }
            #endregion

    Create new View. To Update.cshtml add next <input type="submit" value="New password" name="RandomPassword" />&nbsp; in 170+ line of code

    King Wilder, I never upload code to github before, please give instruction and I add this functional.

  • info@kingwilder.com
    Posted By: King Wilder
    On: 2/8/2013 11:52:13 AM

    @Temirlan - your code looks ok, but I think you are re-inventing the wheel.  If you wanted to allow Administrators to either Reset the users password, or change it to something prescribed in the SecurityGuard Dashboard, you do either of the following:

    1)  ResetPassword

    MembershipUser user = membershipService.GetUser(userName);
    string newPassword = user.ResetPassword();

    2)  ChangePassword

    MembershipUser currentUser = Membership.GetUser([enter the user name here], true /* userIsOnline */);
    bool changePasswordSucceeded = currentUser.ChangePassword(model.OldPassword, model.NewPassword);

    Again, I would probably create a new view for this so I'm not altering any existing functionality.  It makes upgrades easier.

    This should be fairly easy to apply.  I might even add it to the next version.  Thanks for bringing this idea to me.  You will get credit.

  • mike@5starserv.com
    Posted By: fivestar
    On: 2/11/2013 8:03:10 AM

    Has anyone added the external logins to the securityguard interface ie facebook, google, etc.?  I was wondering what steps you took to make that work.  Is it just a matter of adding the section to the SGAccount login view and copying the accountController methods to the SGAccountController?

    Thanks,

    Mike

  • info@kingwilder.com
    Posted By: King Wilder
    On: 2/11/2013 11:07:33 AM
    @fivestar - Mike, I haven't even thought of incorporating those external logins into SecurityGuard, but it's not a bad idea.  I'll put it on my TODO list.  But in the meantime, yes, you can proabably copy some of the external login actions from the Account Controller to the SGAccount Controller, make a few modifications and it should work.  When I have a moment, I'll look into this.
  • jivan.maharaj@gmail.com
    Posted By: Jivan Maharaj
    On: 2/19/2013 11:31:15 AM
    I can't find the link to the screencast.
  • info@kingwilder.com
    Posted By: King Wilder
    On: 2/19/2013 11:44:41 AM
    @Jivan - the link is at the top of the article in the yellow box with the title "Story Series Collection".  It's the Security Guard video for the NuGet Package.
  • ygulec@gmail.com
    Posted By: yigu
    On: 2/21/2013 7:19:01 AM

    Hi King,

    I am kinda new to MVC. I have installed MVC4 and downloaded SecurityGuard. Everything looks fine in the begining, I am able to login. When I try to manage users or create user through dashboard, I am getting strange exception. Somehow, it is trying to load MVC 3 library.

    Could not load file or assembly 'System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)

    This happens only for "Manage Users" and "Create User". Do you have any idea? I have checked all the config files but there is no MVC 3.0.0.0 is loaded for any application.

    Thanks in advance for your support.

    Yildirim.

  • info@kingwilder.com
    Posted By: King Wilder
    On: 2/21/2013 10:49:02 AM

    @yigu - I don't know why you are getting this error.  Try this, open your project in Visual Studio and open References and right-click on the System.Web.Mvc assembly and check the Properties.  See what version is says it is.

    Did you install the SecurityGuard.Mvc4 NuGet package?

  • patrickmelia82@gmail.com
    Posted By: PMelia
    On: 2/23/2013 4:54:51 AM
    I am create a project planner for my final yr project, and I am just wondering how can I alter this to the requirement that I need??
  • info@kingwilder.com
    Posted By: King Wilder
    On: 2/23/2013 11:57:46 AM
    @PMelia - it depends.  When you install the NuGet package the code for the SGAccount controller and the SecurityGuard Area are all there for you.  You can modify the code as much as you want.  If you want to modify the actual SecurityGuard code, just go to the github repository and download the source.  The link is at the top of the page in the details box next to the "Home Page" label.  Enjoy.
  • patrickmelia82@gmail.com
    Posted By: PMelia
    On: 2/23/2013 1:01:03 PM
    @King

    Thats is great thanks :D
  • temirlan1990@gmail.com
    Posted By: Temirlan
    On: 2/28/2013 12:46:20 AM
    Good day you have access to the rights specified in [Authorize (Roles = "SecurityGuard")]. In controller

    I want to do that throw display on the GUI. If it possible? If yes tell me please, what direction I need to chose
  • info@kingwilder.com
    Posted By: King Wilder
    On: 2/28/2013 1:51:23 AM
    @Temirlan - sorry, you need to be clearer, I don't know what you are asking.
  • info@kingwilder.com
    Posted By: King Wilder
    On: 2/28/2013 1:51:23 AM
    @PMelia - thanks, I'm glad you find it useful.
  • temirlan1990@gmail.com
    Posted By: Temirlan
    On: 2/28/2013 4:30:06 AM
    Нou have the permissions are in the controller [Authorize (Roles = "SecurityGuard")] for example.

    Can I do this not through the code in the controller. Can I do this through GUI?
  • nehali@gmx.com
    Posted By: Nehali
    On: 2/28/2013 12:46:07 AM

    Hello,

    Thank you for such a nice SecurityGuard implementation.

    I am using SecurityGuard in my application. I have created one user with "SecurityGuard" role rights but when I try to login to the application using that User I am getting following error,


    Server Error in '/' Application.
    --------------------------------------------------------------------------------


    The view 'index' or its master was not found or no view engine supports the searched locations. The following locations were searched:
    ~/Views/Dashboard/index.aspx
    ~/Views/Dashboard/index.ascx
    ~/Views/Shared/index.aspx
    ~/Views/Shared/index.ascx
    ~/Views/Dashboard/index.cshtml
    ~/Views/Dashboard/index.vbhtml
    ~/Views/Shared/index.cshtml
    ~/Views/Shared/index.vbhtml
      Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

     Exception Details: System.InvalidOperationException: The view 'index' or its master was not found or no view engine supports the searched locations. The following locations were searched:
    ~/Views/Dashboard/index.aspx
    ~/Views/Dashboard/index.ascx
    ~/Views/Shared/index.aspx
    ~/Views/Shared/index.ascx
    ~/Views/Dashboard/index.cshtml
    ~/Views/Dashboard/index.vbhtml
    ~/Views/Shared/index.cshtml
    ~/Views/Shared/index.vbhtml

    Source Error:


     An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. 

    Stack Trace:

     

    [InvalidOperationException: The view 'index' or its master was not found or no view engine supports the searched locations. The following locations were searched:
    ~/Views/Dashboard/index.aspx
    ~/Views/Dashboard/index.ascx
    ~/Views/Shared/index.aspx
    ~/Views/Shared/index.ascx
    ~/Views/Dashboard/index.cshtml
    ~/Views/Dashboard/index.vbhtml
    ~/Views/Shared/index.cshtml
    ~/Views/Shared/index.vbhtml]
       System.Web.Mvc.ViewResult.FindView(ControllerContext context) +506
       System.Web.Mvc.ViewResultBase.ExecuteResult(ControllerContext context) +230
       System.Web.Mvc.ControllerActionInvoker.InvokeActionResult(ControllerContext controllerContext, ActionResult actionResult) +39
       System.Web.Mvc.<>c__DisplayClass1a.<InvokeActionResultWithFilters>b__17() +74
       System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter(IResultFilter filter, ResultExecutingContext preContext, Func`1 continuation) +388
       System.Web.Mvc.<>c__DisplayClass1c.<InvokeActionResultWithFilters>b__19() +72
       System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(ControllerContext controllerContext, IList`1 filters, ActionResult actionResult) +303
       System.Web.Mvc.Async.<>c__DisplayClass2a.<BeginInvokeAction>b__20() +155
       System.Web.Mvc.Async.<>c__DisplayClass25.<BeginInvokeAction>b__22(IAsyncResult asyncResult) +184
       System.Web.Mvc.Async.WrappedAsyncResult`1.End() +136
       System.Web.Mvc.Async.AsyncResultWrapper.End(IAsyncResult asyncResult, Object tag) +56
       System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction(IAsyncResult asyncResult) +66
       System.Web.Mvc.<>c__DisplayClass1d.<BeginExecuteCore>b__18(IAsyncResult asyncResult) +40
       System.Web.Mvc.Async.<>c__DisplayClass4.<MakeVoidDelegate>b__3(IAsyncResult ar) +47
       System.Web.Mvc.Async.WrappedAsyncResult`1.End() +151
       System.Web.Mvc.Async.AsyncResultWrapper.End(IAsyncResult asyncResult, Object tag) +59
       System.Web.Mvc.Async.AsyncResultWrapper.End(IAsyncResult asyncResult, Object tag) +40
       System.Web.Mvc.Controller.EndExecuteCore(IAsyncResult asyncResult) +68
       System.Web.Mvc.Async.<>c__DisplayClass4.<MakeVoidDelegate>b__3(IAsyncResult ar) +47
       System.Web.Mvc.Async.WrappedAsyncResult`1.End() +151
       System.Web.Mvc.Async.AsyncResultWrapper.End(IAsyncResult asyncResult, Object tag) +59
       System.Web.Mvc.Async.AsyncResultWrapper.End(IAsyncResult asyncResult, Object tag) +40
       System.Web.Mvc.Controller.EndExecute(IAsyncResult asyncResult) +65
       System.Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.EndExecute(IAsyncResult asyncResult) +39
       System.Web.Mvc.<>c__DisplayClass8.<BeginProcessRequest>b__3(IAsyncResult asyncResult) +45
       System.Web.Mvc.Async.<>c__DisplayClass4.<MakeVoidDelegate>b__3(IAsyncResult ar) +47
       System.Web.Mvc.Async.WrappedAsyncResult`1.End() +151
       System.Web.Mvc.Async.AsyncResultWrapper.End(IAsyncResult asyncResult, Object tag) +59
       System.Web.Mvc.Async.AsyncResultWrapper.End(IAsyncResult asyncResult, Object tag) +40
       System.Web.Mvc.MvcHandler.EndProcessRequest(IAsyncResult asyncResult) +66
       System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest(IAsyncResult result) +38
       System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +9629708
       System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +155

     


    --------------------------------------------------------------------------------
    Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.17929 

    Can you please help me to resolve this issue? As it is very urgent for me resolve this.

    Thanks,
    Nehali

  • nehali@gmx.com
    Posted By: nehali
    On: 2/28/2013 11:58:15 PM

    I uninstall and reinstall the SecurityGuard, but stiill facing the same problem. :(

  • nehali@gmx.com
    Posted By: Nehali
    On: 3/1/2013 2:37:43 AM

    Oh! It was my mistake. I was trying to navigate the application to wrong URL. Now it is working.

    Thank you so much for creating such a nice thing. It is really very helpful.

  • info@kingwilder.com
    Posted By: King Wilder
    On: 3/1/2013 10:23:26 AM
    @Nehali - I'm glad you got it worked out.
  • info@kingwilder.com
    Posted By: King Wilder
    On: 3/1/2013 10:23:26 AM
    @Temirlan - I still don't know what you are asking.  Are you asking if you can handle Role permissions in the view?  If so, then that's an ASP.NET MVC question and not a SecurityGuard question.  You should post that question in the ASP.net Forums or StackOverflow.
  • temirlan1990@gmail.com
    Posted By: Temirlan
    On: 3/3/2013 10:31:52 PM

    Yes that is I mean. =)

    Ok. Thank you

  • pro@pointesoft.com
    Posted By: Pointeman
    On: 3/14/2013 8:55:36 AM

    Very nice app, needs work!

    1. SecurityGuard MVC 3
        - Need same Views & Controllers as SecurityGuard.MVC4 (Dashboard, etc...)
        - Need database. (consider a person needs a quick security solution and no time to build a database. New LocalDb would be nice!)

    2. SecurityGuard MVC 4
        - Much nicer than previous MVC 3 version
        - Again, like the MVC 3 version, needs a database (LocalDb).

  • info@kingwilder.com
    Posted By: King Wilder
    On: 3/14/2013 11:44:02 AM

    @Pointeman - I'm glad you like it.  What views and controllers are you talking about specifically?  There is only one view that I have not yet included in the Mvc3 version and that's the EnterSecretAnswer.[extn].  But everything else is the same.

    Regarding the database, I do mention in the article that SecurityGuard does not install any database or database tables.  You should already have the ASP.NET Membership system installed in your database.  SecurityGuard was built simply as a quick way to provide a web interface so you can manage your already installed Membership database.

    To install the ASP.NET Membership system quickly and easily, you can look at my other NuGet package called MvcInstaller.  I've built these two packages to work together (or separately).  MvcInstaller can not only install the ASP.NET Membership system for you, but it can populate it with the users and roles for your Administrator so you immediately have access to manage it, and configure the application's web.config and connectionstring for you.  MvcInstaller, can also install your application's database schema for you.

    I don't really see the need to have a LocalDb created with SecurityGuard since you most likely will be using SecurityGuard to manage users for an application that has a database schema, and the Membership system can be installed in that database.

    If you prefer to have the Membership system as a separate database from the application's schema, MvcInstaller can do that for you also.

    I am open to feature suggestions and I do appreciate your comments.

    Thanks.

  • s_bornstein2@hotmail.com
    Posted By: SeanB
    On: 3/14/2013 4:07:21 PM
    Is there a way to use this without having to enter a password?   I want to utilize Windows Authentication and Impersonation in the MVC site then go up against the role tables to add, delete roles etc.   I still do want to register a new user but without a password entry.   This will be single sign-on later just using Windows Auth.
  • info@kingwilder.com
    Posted By: King Wilder
    On: 3/14/2013 6:25:03 PM
    @SeanB - I have not built SecurityGuard with Windows Authentication in mind, but that doesn't mean that it's impossible to do.  I haven't tried it.  You have full access to the source code so you could make modifications to it to use Windows Authentication.  You are the first to ask about Windows Authentication so it's not really on my feature request list, but feel free to play with the code to see if you can make it work.
  • dude@hotmail.com
    Posted By: dude
    On: 3/26/2013 7:16:56 AM

    Half the time, the passwords emailed are not correct and users cannot login.

    Are you properly escaping HTML characters in the emails?

  • info@kingwilder.com
    Posted By: King Wilder
    On: 3/26/2013 12:13:52 PM

    @dude - are you talking about getting the passwords using the "Forgot Password?" feature?  If so, I'm not doing anything out of the ordinary.  I just reset the password, using the default Membership methods, and then sending it off to the user.  The Membership provider can't decrypt the password and send it to the user, it just creates a new one and I send it to the user.  Look at the SGAccount controller, all the code is there for how the ForgotPassword function works. 

    Hopefully this answers your concerns.

  • juan.ctt@live.com
    Posted By: jctt
    On: 3/26/2013 9:26:30 PM

    Hello nice job!

    I'm trying to figure out if this Package with others databases as well like Azure and SQL Compact, if so what changes are neccesary in order to achieve the connection with your package and said databases

    Thanks in advance

  • juan.ctt@live.com
    Posted By: jctt
    On: 3/26/2013 9:26:30 PM

    Hello nice job!

    I'm trying to figure out if this Package can be used with others databases as well, like Azure and SQL Compact, if so what changes are neccesary in order to achieve the connection with your package and said databases

    Thanks in advance

  • info@kingwilder.com
    Posted By: King Wilder
    On: 3/26/2013 10:51:15 PM

    @jctt - I have not tested it with either Azure or SQL Compact.  I'm not sure how Membership is handled with Azure, but I don't think it's much different if at all. 

    For Azure I would make sure you have the Membership database created and SecurityGuard is installed in your application, and then publish it to Azure using your Azure connection string.  Of course update your web.config membership section with the Azure connection string, but in theory, that should work.

    One of these days, when I have time, I'll investigate seeing if it can work with Azure.

    As for SQL Compact, this should also be possible, but you would need to have the Membership database installed in the SQL Compact database.  Then again its just making sure you have the connection string in the Membership section pointing to the correct database, and it should work.

    If you try this, I'd like to hear what your results are.  I hope this helps.

  • juan.ctt@live.com
    Posted By: jctt
    On: 3/27/2013 5:08:53 AM

    Hi Wilder,

    Thank you very much, I managed to install Security Guard with SQL Compact! It was a matter of just changing the connection string.

    Since I started the project for the first time, creating and MVC4 with VS2010, I had to follow these steps

    1) in the PM run "install-package system.web.providers"
    2) Use ASP.Net Configuration tool, to create the Roles and Users.

    Without these steps I end up having the message To call this method, the "Membership.Provider" property must be an instance of "ExtendedMembershipProvider".

  • info@kingwilder.com
    Posted By: King Wilder
    On: 3/27/2013 10:09:09 AM

    @jctt - I'm glad you got it to work.

    If you have other MVC applications that you build that use SQL Server, rather than SQL Compact, you can use my other NuGet package called MvcInstaller to install your database schema and the ASP.NET Membership system, with your Roles and Users.  It's quick and clean.  Check out my other articles and video on MvcInstaller.  It also includes System.Web.Providers for you.

  • juan.ctt@live.com
    Posted By: jctt
    On: 3/27/2013 9:32:57 PM
    Thanks Wilder!

    I did checked the others articles and videos, it was nice reading thank you very much! it help me understand the Membership System Provider of ASP Net. Before this I knew nothing about it.

    I also though about connecting a new MVC4 Project with an existing MySQL Database, so I followed the same steps of this article. But I have to install the Microsoft ASP.NET Universal Providers Core Libraries with the "Install-Package Microsoft.AspNet.Providers.Core". just have to make sure to install the mysql libraries and modify the connection string like this

      <connectionStrings>
        <add name="MySQLConn" connectionString="Server=localhost;Database=dbname;Uid=username;Pwd=password;" />
      </connectionStrings>

    And when you run the above command, the package will make the neccesary changes to the membership sections of web config.

    In sum,
    1. Install MySQL.Data (6.6.4.0) and MySQL.Web (6.6.4.0)
    2. Run "Install-Package Microsoft.AspNet.Providers.Core" with PM
    3. Go to Project Menu -> ASP.Net Configuration, Go to Provider Tab, Make sure to select MySQL Membership Provider.
    4. Enjoy Security Guard!
    Note: I actually performed all these steps after installing Security Guard. I didn't test the other way around though. Also I ran into something I will expand in the next post.

    Anyway thanks a lot! That was a fantastic job.


  • juan.ctt@live.com
    Posted By: jctt
    On: 3/27/2013 10:01:45 PM

    The other thing, is that when I want to add a new role to the user, namely "SecurityGuard" and "Manager", sometimes It displays this message "There was a problem adding the user to the roles.", and sometimes it accepts the new settings after few retries.

    So I'm not sure it that is related with MySQL??

  • info@kingwilder.com
    Posted By: King Wilder
    On: 3/28/2013 1:19:52 AM

    @jctt - nice work getting it to work with MySql.  I never tested it with that database, I'm glad you figured this out.

    Regarding adding the Roles, I've never had a problem adding a role to a user.  This might be due to MySql.  If you actually have the ASP.NET Membership database inside the MySql database, there could be an issue, but I don't know what it could be.  This would be an ASP.NET Membership issue with MySql, not an issue with SecurityGuard.

    You might want to post a message in the asp.net Forums about this.

  • dofeldman@gmail.com
    Posted By: Dov
    On: 4/8/2013 4:56:59 AM

    first it is very nice and work fine but when i do log off i got error

    Server Error in '/' Application.

    The resource cannot be found.

    Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable.  Please review the following URL and make sure that it is spelled correctly.

    Requested URL: /SGAccount/LogOff


    Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.18034

    but if i go to address line and i press enter is

    do the logout , or if i not use the "  @Html.AntiForgeryToken() " but i use the same logoff in

    _SecurityGuardLayoutPage.cshtml the logoff work  Thamks

  • dofeldman@gmail.com
    Posted By: Dov
    On: 4/8/2013 5:36:06 AM

    hi

    i repkace the line "  <a href="javascript:document.getElementById('logoutForm').submit()">Log off</a>" withe the line " @Html.ActionLink("Log Off", "LogOff", "SGAccount", new { area = "" }, null)" and it is work ' there is problam with the replace?

  • dofeldman@gmail.com
    Posted By: Dov
    On: 4/8/2013 8:59:38 AM

    i resolve the problam with change this code in SGAccountController in the    public virtual ActionResult LogOff() function

    from

     [HttpGet]

      [HttpPost]
            public virtual ActionResult LogOff()
            {
                authenticationService.LogOff();

                return RedirectToAction("Index", "Home");
            }

  • info@kingwilder.com
    Posted By: King Wilder
    On: 4/8/2013 11:06:42 AM
    @Dov - if you installed the SecurityGuard.Mvc4 NuGet Package, it must be used with an MVC 4 application, then it is used with the AntiForgeryToken on various controller actions such as LogOff.  It seems like you are using the wrong SG version for the Mvc application you are working with.
  • dofeldman@gmail.com
    Posted By: Dov
    On: 4/8/2013 3:09:54 PM

    Thanks for your answer .

    as you can see i installed the right ver.

    but never minde now it is work.

  • dofeldman@gmail.com
    Posted By: Dov
    On: 4/8/2013 3:28:38 PM
    else i must change in function "
     function OnGetUsersInRoleSuccess(data) {
                ul.empty();
                if (data == "") {
                    ul.append("<li>No user(s).</li>");
                } else {
                    $.each(data, function (index, item) {
                        var ref = '/SecurityGuard/Membership/Update';
                        ref = ref + "/"
                        ul.append("<li><a href= " + ref + item + ">" + item + "</a></li>");
                    });
                }
            }"
    beacuse i did not get the app name  it work only with the enviroment but not in iis with the href.
  • dofeldman@gmail.com
    Posted By: Dov
    On: 4/8/2013 4:01:27 PM

    here the change that work

    function OnGetUsersInRoleSuccess(data) {
                ul.empty();
                if (data == "") {
                    ul.append("<li>No user(s).</li>");
                } else {
                    $.each(data, function (index, item) {
                        var ref = '@Url.Action("Update", "Membership")';
                        ref = ref + "/";
                        ul.append("<li><a href=\ " + '"' + ref + item + "\">" + item + "</a></li>");
                        // ul.append("<li><a href=\"/SecurityGuard/Membership/Update/" + item + "\">" + item + "</a></li>");
                    });
                }
            }

  • ivonecchi@gmail.com
    Posted By: Ivo
    On: 4/17/2013 6:47:38 PM

    'MvcInstaller.JsonResponse' does not contain a definition for 'CssClass' and no extension method 'CssClass' accepting a first argument of type 'MvcInstaller.JsonResponse' could be found (are you missing a using directive or an assembly reference?) \Areas\SecurityGuard\Controllers\RoleController.cs 54 26

    can u help me?

    In MvcINstaller.JsonResponse metadata, I have:

    #region Assembly MvcInstaller.MVC4.dll, v1.1.0.0
    // D:\xxx\xxx\packages\MvcInstaller.MVC4.1.1.1.0\lib\net40\MvcInstaller.MVC4.dll
    #endregion

    using System;


    namespace MvcInstaller
    {
        public class JsonResponse
        {
            public JsonResponse();


            public string Message { get; set; }
            public bool Success { get; set; }
        }
    }

  • info@kingwilder.com
    Posted By: King Wilder
    On: 4/18/2013 12:33:38 PM
    @Dov - I understand the change you made and it makes sense.  I will test the code and will update the source if it works.  Thanks.
  • info@kingwilder.com
    Posted By: King Wilder
    On: 4/18/2013 12:33:38 PM

    @Ivo - what you probably did was bring in the wrong "using" reference for the JsonResponse class.  If you have the following at the top of your RoleController class:

    using MvcInstaller;

    ... remove it and it will probably work.  You had a conflict with the JsonResponse classes that are in both assemblies.  Give that a try.

  • Frankzh2003@yahoo.ca
    Posted By: Frank
    On: 4/22/2013 10:22:24 PM

    Hi, King

    thank you for great job.

    when I install in MVC4. and point connection string to my exist database schema. it give me a warning !

    Application
    Name:
    MyCoolApplication
    Database settings

    The database and db user needs to be created prior to running the installer!

    Database:
    SchoolV1
    Data Source:
    .\SQLEXPRESS
    Trusted Connection:
    True
    Membership settings

    These are the Roles and Users to be created by the installer.

    Role:
    Administrator
    User in role:
    admin
    User in role:
    bizuser
    Role:
    Manager
    User in role:
    joemanager
    Database 'SchoolV1' already exists. Choose a different database name.

    my web.config

      <connectionStrings>
        <add name="MembershipConnection" connectionString="Data Source=.\SQLEXPRESS;Initial Catalog=SchoolV1;Integrated Security=True"
          providerName="System.Data.SqlClient" />
        <add name="MyCoolEntities" connectionString="metadata=res://*/MyCoolEntities.csdl|res://*/MyCoolEntities.ssdl|res://*/MyCoolEntities.msl;provider=System.Data.SqlClient;provider connection string=&quot;Data Source=.\SQLEXPRESS;Initial Catalog=SchoolV1;Integrated Security=True;MultipleActiveResultSets=True;Application Name=EntityFramework&quot;"
          providerName="System.Data.EntityClient" />
        <add name="MySampleConnection" connectionString="Data Source=.\SQLEXPRESS;Initial Catalog=SchoolV1;Integrated Security=True"
          providerName="System.Data.SqlClient" />
      </connectionStrings>
      <appSettings>
        <add key="webpages:Version" value="2.0.0.0" />
        <add key="webpages:Enabled" value="false" />
        <add key="PreserveLoginUrl" value="true" />
        <add key="ClientValidationEnabled" value="true" />
        <add key="UnobtrusiveJavaScriptEnabled" value="true" />
        <add key="AppInstalled" value="false" />
        <add key="MvcMailer.BaseURL" value="" />
        <add key="SecurityGuardEmailFrom" value="info@email.net" />
        <add key="SecurityGuardEmailSubject" value="Your Password has been reset." />
        <add key="SecurityGuardEmailTemplatePath" value="~/MailerTemplates/ResetPassword.html" />
      </appSettings>

    I stuck there. don't know what to do. Can you please point the problem?

  • info@kingwilder.com
    Posted By: King Wilder
    On: 4/23/2013 10:01:50 AM

    @Frank - firstly, this is an MvcInstaller question, not a SecurityGuard question, but I'll try to answer it anyway.  Everything looks like it should work, except I haven't tested it with SQLExpress in years, and to be honest I don't remember if there were issues with it.

    Can you use the Standard SQL Server database?  I'll give it a test later today and see if I have any issues.

  • Frankzh2003@yahoo.ca
    Posted By: Frank
    On: 4/24/2013 8:13:16 PM

    Hi, King Thanks for you response promptly. I watch your video on MVCInstaller. and redo the web.config .  Now it works fine.

    I use SQLEXPREES, VS2012, Mvcinstaller.MVC4, SecurityGuard.MVC4.

    thanks so much.

  • kemuel_sanchez@hotmail.com
    Posted By: KSanchez
    On: 4/29/2013 3:35:26 PM
    Hi King! After and exhaustive search in the net looking for a membership administration module, and almost deciding to write one myself I stumbled upon your project. It's exactly what i needed. You've done an EXCELLENT job!
  • info@kingwilder.com
    Posted By: King Wilder
    On: 4/30/2013 1:54:27 AM
    @KSanchez - Thank you, I'm glad you find it useful.  Pass the word!  :^)
  • mike@mikefrey.net
    Posted By: mcfrey
    On: 4/30/2013 12:07:35 PM

    Great System!!!

    Question about ForgotPassword - when i click on that link it just continually redirects me back to home page - Have I missed a setting that allows that page to not be trapped by authorization or should there be an explicit route set? Thanks!

  • info@kingwilder.com
    Posted By: King Wilder
    On: 4/30/2013 3:22:57 PM
    @mcfrey - the ForgotPassword link should go to the ForgotPassword view.  Check the link and make sure it's /SGAccount/ForgotPassword and not the original Account controller link.  Let me know what you find out.
  • sandeepbts@gmail.com
    Posted By: sandeepkoushik
    On: 5/9/2013 7:54:28 PM

    Server Error in '/' Application.

    Could not load type 'SecurityGuard.Services.MembershipService' from assembly 'SecurityGuard, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'.

    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Line 37:             this.authenticationService = new AuthenticationService(membershipService, new FormsAuthenticationService());
    Line 38:             this.formsAuthenticationService = new FormsAuthenticationService();
    Line 39:         }
    Line 40: 
    Line 41:         #endregion

    Source File: c:\Projects\CSI\SecurityGuard\SecurityGuard\Controllers\SGAccountController.cs Line: 39            
  • sandeepbts@gmail.com
    Posted By: sandeepkoushik
    On: 5/9/2013 7:54:28 PM
    Please some one help with to get rid of the above error
  • info@kingwilder.com
    Posted By: King Wilder
    On: 5/10/2013 1:12:20 AM

    @sandeepkoushik - I've never seen this error before.  You can try uninstalling the package and re-installing it and see if that fixes the problem.

    I assume you do have the ASP.NET Membership providers installed in your application, correct?  If not, you need to install them.

    What version of MVC are you using?  What version of SecurityGuard are you using?

  • sandeepbts@gmail.com
    Posted By: sandeepkoushik
    On: 5/10/2013 10:46:26 AM

    Hi I am using MVC 4, MVC installer 4 and Security Guard 4. How to install ASP.Net Membership providers ?

    Thanks,
    Sandeep

  • sandeepbts@gmail.com
    Posted By: sandeepkoushik
    On: 5/10/2013 10:46:26 AM
    Fixed it. Thanks.
  • Lailamazen1995@hotmail.com
    Posted By: Laila Maz
    On: 5/13/2013 2:58:22 PM
    Thanks for the great work


    I'm new to learning programming


    I can update mail address and comments to a user, can I/Administrator change the password to the users? 
    can you help me? Users can update email address?
  • info@kingwilder.com
    Posted By: King Wilder
    On: 5/13/2013 3:20:38 PM

    @LailaMaz - At the moment, the Administrator cannot change the password to the user.  The user can do that after they log in using the Change Password feature. 

    Users have to notify the Administrator to change the email address.  Users should NOT have access to SecurityGuard.  SG is for Administrators.

    If you want other capabilities, you have all the source code so you can create them yourself.

    I hope this helps.

  • lailamazen1995@hotmail.com
    Posted By: Laila Maz
    On: 5/13/2013 3:38:58 PM
    thanks for the help
  • vipul30@gmail.com
    Posted By: Vipul Bhavsar
    On: 5/14/2013 6:40:09 PM
    Does your program provide the UI ability to create a new Role and assign it actions?  I want the ability for the administrator of the site to be able to create a new role and assign permissions to this role to different methods within the controller.  I'm not sure if I saw that functionality.
  • info@kingwilder.com
    Posted By: King Wilder
    On: 5/14/2013 7:17:55 PM

    @Vipul Bhavsar - SecurityGuard simply provides a means to manage your Users and Roles through a web interface.  When you create a Role, it's no different than the standard ASP.NET Membership providers, you still have to provide the mechanism where that Role means something in your application, by either attaching it to the controllers, and/or actions manually.

    So in other words, there is no built-in way of assigning roles to actions or controllers.  That's still up to you.

    I hope this helps.

  • vipul30@gmail.com
    Posted By: Vipul Bhavsar
    On: 5/15/2013 4:12:12 PM

    What would I have to do different to make your code work if this is an Intranet based application?  Also, I guess I didn't phrase my question properly previously.  I am looking for a web interface to allow the user of the website to create a role and assign multiple "actions" to it.  For example,

    [Authorize(Roles="Data Entry, Administrator")]
            public ActionResult Index()
            {}


    Currently, I would have to hard code the roles in my code.  I want the user to have the ability to create multiple roles and then allow them to associate that with the method (actions).  I would pre-define the actions that they can pick, but the user would have the ability to assign as many actions they want to a particular role.  Do you have any code that will do that?

  • info@kingwilder.com
    Posted By: King Wilder
    On: 5/15/2013 8:22:01 PM

    @Vipul Bhavsar - re: intranet based application - this is not tested.  You can try it by changing the "forms" element in the web.config to "Windows" Authentication from "Forms" authentication, and point the connection string to the Active Directory.

    Re: Roles - first of all it seems weird to allow users to create Roles.  To me that should be an Administrator only function, but that's my two cents.  The bottom line answer to your question is, No, SecurityGuard doesn't do what you want, out of the box.  You have the source code so you can make whatever modifications you want to make it work.

    Again I don't really understand what you want to achieve, but it seems more logical to have specific Roles already created by you (the Administrator), and then assign them to the actions.  Then assign Roles to specific Users.  Then these Users will only have access to the Roles they've been assigned to,  and therefore only to the controller actions that they are assigned to.

    If you really need what you are asking, then you'll have to come up with a manner in which to make it work.

    SecurityGuard was built as a quick way to put an interface on the Membership system, and that's all.  Anything else is left up to the developer.

    I hope this helps.

  • marcelethan2013@gmail.com
    Posted By: Marcel
    On: 6/4/2013 8:43:13 AM
    This is awesome!! really helpful for me. Thanks for sharing with us. Following links also helped me to complete my task. 


    http://www.mindstick.com/Articles/f769698f-fed6-43eb-8e61-d7baaf713819/


    http://msdn.microsoft.com/en-us/library/ff398049(v=vs.100).aspx
  • info@kingwilder.com
    Posted By: King Wilder
    On: 6/4/2013 5:49:50 PM
    @Marcel - thanks for the kind words.
  • Kevin.Russell@it-creatives.com
    Posted By: parkstech
    On: 6/11/2013 1:31:30 PM
    Deleted the files per your instructions, still get the error

    The file '/Views/Shared/Site.Master' does not exist.

    <%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<SecurityGuard.ViewModels.LogOnViewModel>" %>

    If I have to debug it, then it is no longer SecurityGuard.
  • info@kingwilder.com
    Posted By: King Wilder
    On: 6/11/2013 2:46:20 PM

    @parkstech - sorry you are having problems.  I just want to be sure you did the correct thing, the code you show is for .ASPX views.  This means you should have a Site.Master in your Shared folder that you are using for your site, correct?  And I assume you deleted all the Razor views.  If this is the case, then I don't know why you are having this problem. 

    I suggest doing one of two things:

    1. Make sure you have a Site.Master.aspx file in the Shared folder
    2. If that doesn't work, then uninstall SecurityGuard, and re-install it

    This is really not a SecurityGuard issue, your application simply cannot find the required Site.Master.aspx file.  Let me know how it turns out.

  • yushi.mushi@yummy.com
    Posted By: yushi mushi
    On: 7/13/2013 1:13:27 AM

    Dear: You have done an awsome job

  • vipul30@gmail.com
    Posted By: vipul30
    On: 7/18/2013 11:57:14 AM

    Do you have any other suggestions on how to get this to work on an Intranet site?  I changed the authentication part in the web.config file to this:

      <authentication mode="Windows">
          <forms loginUrl="~/SGAccount/Login" timeout="2880" />
        </authentication>

    I just created a blank mvc 4 Intranet project using visual studio 2012

    And I get this error:

    HTTP Error 500.19 - Internal Server Error

    The requested page cannot be accessed because the related configuration data for the page is invalid.

    Detailed Error Information:

    Module   IIS Web Core
    Notification   Unknown
    Handler   Not yet determined
    Error Code   0x800700b7
    Config Error   Config section 'system.web/authentication' already defined. Sections must only appear once per config file. See the help topic <location> for exceptions
    Config File   \\?\C:\WebApps\MVCTemplate\MVCTemplate\web.config
    Requested URL   http://localhost:57893/
    Physical Path   
    Logon Method   Not yet determined
    Logon User   Not yet determined
    Request Tracing Directory   C:\Users\vipul bhavsar\Documents\IISExpress\TraceLogFiles\

    Config Source:

       39:     </pages>
       40:     <authentication mode="Windows">
       41:       <forms loginUrl="~/SGAccount/Login" timeout="2880" />
    


  • info@kingwilder.com
    Posted By: King Wilder
    On: 7/18/2013 1:47:02 PM

    @vipul30 - two things - 1) this error tells you the problem.  You should only have one system.web/authentication section.  If you do only have one, make sure you have the section tag closed properly, 2) SecurityGuard was never built for Windows Authentication.

    Windows Authentication works with Active Directory, and SecurityGuard wasn't built for that datastore.  You may need to find a different alternative than SecurityGuard for your web-interface for Windows Authentication.

  • michael@mikeworks.net
    Posted By: mikeworks
    On: 7/23/2013 5:23:46 PM

    I. Love. You!

    I cannot begin to express how much you just made my work so much easier. Thank you for this work and for staying active with the project. It is truly priceless.

    Michael Fouquette

  • info@kingwilder.com
    Posted By: King Wilder
    On: 7/23/2013 8:51:20 PM
    @mikeworks - er, thank you?  :^)  I'm glad you like it.
  • juliustetteh@gmail.com
    Posted By: TeeJay
    On: 8/9/2013 11:47:38 PM
    Great work!!! Thanks so much 
  • nnash@binkleybarfield.com
    Posted By: nnash
    On: 8/13/2013 11:50:36 AM
    Hi Thank you for your work!  Do you have a working example for latest 2012 express version, or for 2013 preview?  Specifically using a sql server database file, not a sqlexpress server.  I am having difficulty making this work, is it because i using too new of a version?
  • info@kingwilder.com
    Posted By: King Wilder
    On: 8/13/2013 12:17:06 PM

    @nnash - Hi, unfortunately I don't have any examples using the Express versions of Visual Studio, or the 2013 preview version.  I ALWAYS use SQL Server standard, and never SqlExpress in my demos.

    What problems are you having specifically?

  • RSpence@WebTechCorp.com
    Posted By: Rick
    On: 8/26/2013 2:20:10 PM

    Hey,

    Have it all installed and working. You might want to change you installation instructions slightly as if you are using VS 2010 with MVC4 you need to follow the VS 2012 instructions (which work in VS 2010 with MVC4). Also, it wasn't entirely clear how to create the SuperAdmin user / Security Guard role. I used WSAT in the end.

    There's an issue when you require unique email addresses, and you create a user from the SuperAdmin account (part of the SecurityGuard role).

    This code:

    public virtual ActionResult CreateUser(viewModels.RegisterViewModel model)

    {

    MembershipUser user;

    MembershipCreateStatus status;

    user = membershipService.CreateUser(model.UserName, model.Password, model.Email, model.SecretQuestion, model.SecretAnswer, model.Approve,

    out status);

    return routeHelpers.Actions.GrantRolesToUser(user.UserName);

    }

    returns a null user, and status has an error code. I think you need to check status here and display some error if there's a problem.Thanks

  • info@kingwilder.com
    Posted By: King Wilder
    On: 8/26/2013 3:02:22 PM

    @Rick - thanks for your response.  Can you tell me specifically needs to be changed in the instructions for VS2010?  Both of these versions use the System.Web.Providers framework.

    SecurityGuard is just a web-interface for the ASP.NET Membership system, it won't intially create admin users for you.  You'll need to use WSAT (like you did) or use my MvcInstaller application which will do that for you.  I've built these two NuGet packages to work together, one sets up the Membership system with users and roles, and the other one allows you to manage the users.

    Re: unique email address issue - I'll check that out.  I haven't had a problem before but I'll look into it.

  • RSpence@WebtechCorp.com
    Posted By: Rick
    On: 8/26/2013 5:28:40 PM

    Maybe I have an updated MVC4? I had to change per your LoginPartial Update section if I rememebr correct. There's definitely a bug in that code - user is returned as null, and Status has a value indicating that  the email address was not unique. Because user is null the following line fails onviously.

    Note this was done when adding users when logged in as the SuperAdmin - I didn't test it yet with a user requesting their own account.

    I'm not stuck on getting the email to send for a new password.

    You have this:

    public virtual ActionResult ForgotPassword(ForgotPasswordViewModel model)

    {

    SmtpSection smtp = (SmtpSection)ConfigurationManager.GetSection("system.net/mailSettings/smtp"

    // Set the MailerModel properties that will be passed to the MvcMailer object.

    // Feel free to modify the properties as you need.

    MailerModel m = new MailerModel();

    m.UserName = user.UserName;

    m.Password = newPassword;

    m.FromEmail = smtp.From;

    m.Subject =

    ConfigSettings.SecurityGuardEmailSubject;

    m.ToEmail = model.Email;

    Mailer.PasswordReset(m).Send(); I don't see how that SMTP object ever gets used to send email. Also, my SMTP server requires authentication to send - how would I set this up? Thanks

  • RSpence@WebtechCorp.com
    Posted By: Rick
    On: 8/26/2013 5:28:40 PM

    Sorry for typos in previous post- I meant I cannot get the email to work. For the reord, when I create an MVC4 internet app. in VS 2010 I get this

    @

    if (Request.IsAuthenticated) {

    <text>

    Hello, @Html.ActionLink(User.Identity.Name,

    "Manage", "Account", routeValues: null, htmlAttributes: new { @class = "username", title = "Manage" })!

    @

    using (Html.BeginForm("LogOff", "Account", FormMethod.Post, new { id = "logoutForm" })) {

    @Html.AntiForgeryToken()

    <a href="javascript:document.getElementById('logoutForm').submit()">Log off</a>

    }

    </text>

    }

    else {

    <ul>

    <li>@Html.ActionLink("Register", "Register", "Account", routeValues: null, htmlAttributes: new { id = "registerLink" })</li>

    <li>@Html.ActionLink("Log in", "Login", "Account", routeValues: null, htmlAttributes: new { id = "loginLink" })</li>

    </ul>

    }

  • info@kingwilder.com
    Posted By: King Wilder
    On: 8/26/2013 6:10:07 PM

    @Rick - I'll try to answer each post...

    1. Login Partial - this partial MUST be modified to work with SecurityGuard.  In this article, the "Login Partials Updates" heading explains the changes that are necessary to make to the default code that is provided by the VS template.  Essentially you need to change "Account" controller to "SGAccount".
    2. Creating new user with unique email bug - I haven't had time to test this. 
    3. MvcMailer and ForgotPassword - the MvcMailer component is a NuGet package that wraps the email functionality.  It grabs the SMTP information from the system.net/mailSettings/smtp section of the web.config.  You need to make sure the settings for this section is correct for your mail server.  To require authentication, simply provide the email address and password of a valid account.  The Port is important, if you get it wrong, the process won't work, so if you are using SSL, you need to provide the correct Port number.  You shouldn't have to modify anything in the C# code for this to work, just the web.config settings.
    4. In your second post - you need to change the route controller values to "SGAccount" from "Account", then it will work.  And there is no Manage command.  That's included with the default template from Visual Studio, but SecurityGuard doesn't use that.  There is no need for that with my package, so just remove that code.  The article explains that.

    When I get a moment, I'll test creating a new user when "unique email" is enabled and see if I get any issues.

    Thanks.

  • info@kingwilder.com
    Posted By: King Wilder
    On: 8/26/2013 6:10:07 PM

    @Rick - I just read over my post and some of it sounds a little harsh, but that's not the way it was intended.  I'm just typing faster than my head can keep up.  :^)

    I appreciate your comments and there's always a chance that I've missed testing something.  I will post a response to the unique email issue after I've tested it.

    Thanks.

  • RSpence@WebtechCorp.com
    Posted By: Rick
    On: 8/26/2013 7:31:52 PM

    Hey,

    Nothing harsh noticed..I think we're just mis-understanding each other. I have the system working - no worries - you asked me what I had changed for VS2010 and it must have been me being stoopid missing the login partial. Second post was just showing you what I got by default using VS 2010 and MVC4 - am past that stage following your instructions.

    I can fix the unique email bug if you like - or I'll just wait for you lol...

    I can't get email to work for password reset - I have the same account set up in Outlook and it sends using the same details - so I thought it was the authentication issue. I'll play with it some more. Can I suggest a little change to this code:

    public virtual ActionResult ForgotPassword(ForgotPasswordViewModel model) You havea try / catch in there and the catch doesn't do anything - so you are not reporting any errors from the email send and just supressing the error. Best Rick

  • info@kingwilder.com
    Posted By: King Wilder
    On: 8/26/2013 9:26:06 PM

    @Rick - if you have a fix for the email bug, you can go ahead and make the changes for now.  I'm not sure when I can get to this and I don't want you waiting for me.  I'm on a project that has a deadline and can't devote time to this at the moment.  I will get to it as soon as I get a break.

    When I'm able to test this, whatever changes I make will be reflected in my changelogs.

    Thanks.

  • info@kingwilder.com
    Posted By: King Wilder
    On: 8/27/2013 5:13:49 PM

    @Rick - here's some results:

    1. Unique Email and user creation - I didn't have any problem creating a new user when the RequiresUniqueEmail = true.
    2. ForgotPassword problem - I didn't have any problems resetting the password on one of my live sites.  I did however, have a problem when testing from my localhost.  But it worked fine on the production server.  Not sure why, but it did.  I will work on getting better error logging and messaging in the Forgotpassword try/catch block.  Initially it was there to just prevent the application from erroring out with the yellow screen of death.  Then I forgot to go back and finish that bit.  BTW, my mail server also requires authentication, so this does work with that requirement.

    What error do you get with the Unique Email issue?  I get nothing.

  • branislavk@gmail.com
    Posted By: Branislav
    On: 8/31/2013 6:28:47 AM

    Love your work!

    Still, I don't know how to check user's role(s) within action in cotroller. Because I'm using SecurityGuard, I cannot use the "User" instance and write:

    foreach (string rolesForUser in Roles.GetRolesForUser(User.Identity.Name))
    {
          if (User.IsInRole(rolesForUser))
         {

          }
    }

    This is what I got on "User":

    An object reference is required for the non-static field, method, or property 'System.Web.Mvc.Controller.User.get'

    Also, I tried with:  

    MembershipUser oCurrentUser = Membership.GetUser();

    but there is not method to get user's roles.

    Please for help. Thanks!


  • info@kingwilder.com
    Posted By: King Wilder
    On: 8/31/2013 11:47:36 AM

    @Branislav - Hi, I'm not sure what you are trying to do, but these features are already built into SecurityGuard.

    • Users in Role - In the UI, when you click on Roles, on the right side you can view the Users in a Role
    • Roles for User - and when you click Manage Users --> (select user), at the bottom you can see (and Manage) the roles for a user

    There's no need to re-invent the wheel here.  I hope this helps.

  • branislavk@gmail.com
    Posted By: Branislav
    On: 8/31/2013 5:45:33 PM

    Hi! Thanks for reply.

    I not thought to UI. Let me redefine my question.

    I have INDEX action in some controller, and within it, I'am trying to write some code which will check all user's roles. Then, if the user is "admin" my INDEX action will do something, but if the user is "coordinator" too or only the "coordinator" then my index action will do something different.

    The question is: How to programmatically (in code) check if the user is "admin" or has some other role?

  • branislavk@gmail.com
    Posted By: Branislav
    On: 8/31/2013 5:45:33 PM

    (Continuation of previous post: Posted By: Branislav On: 8/31/2013 5:45:33 PM

    I'am asking this because the default membership provider is changed to SecurityGuard (web.config) and I lost the ability to use User.IsInRole("admin"). Am I right? If not please let me show how to check user's role(s). Thanks!

  • info@kingwilder.com
    Posted By: King Wilder
    On: 8/31/2013 7:13:05 PM

    @Branislav - SecurityGuard has not changed any functionality that is available in the default Membership providers.  You can view the controller code in the SecurityGuard Area to see this.  Every function that you need is available.

    Regarding your second post, you are not right.  SecurityGuard has not replaced the Default Membership providers, unless you have written a custom provider and set that as the default provider, but the default provider should still be System.Web.Providers.DefaultMembershipProvider, System.Web.Providers.  All the functions are still there.

    Understand that SecurityGuard is just a means of managing the Membership system in the UI, it has not changed any of the default functionality of the Membership system, so you still have all the resources available to you.

    To answer your question about getting information on a User, this would be in the realm of the Membership system itself, and has nothing to do with SecurityGuard, but I'll answer it anyway.  :^)

    You can get access to the user as you normally would:

    if (User.IsInRole("admin"))
    {
       // do something for the admin
    }else if(User.IsInRole("coordinator"))
       // do something for the coordinator
    }else{
       // do something for any other role
    }

    The User Principal is still available in these controllers and you can do whatever you want.  If you are writing your own controllers, you need to make sure you have the correct reference to using System.Web.Mvc;, then you have access to that IPrincipal object.

    I hope this answers your question.

  • branislavk@gmail.com
    Posted By: Branislav
    On: 9/1/2013 8:47:31 AM

    Yes. Thanks! 

    My mistake! I called "User" instance from STATIC method I used in controller and it's not possible. Now I fix this (by removind static method property).

    Many thanks for your patience.

  • n.prosper@gmail.com
    Posted By: prosperva
    On: 9/5/2013 11:34:37 AM

    This is a great tool. I tried installing for a project I am working on but I am getting this error:

    An error occurred during the execution of the SQL file 'InstallCommon.sql'. The SQL error number is 5110 and the SqlException message is: The file "\\path.MDF" is on a network path that is not supported for database files.
    CREATE DATABASE failed. Some file names listed could not be created. Check related errors.
    Creating the ASPNETDB_bd20aefaba9f4830b2ea2f5e412f04a9 database...

    Any ideas why this is happening? Thanks

  • n.prosper@gmail.com
    Posted By: prosperva
    On: 9/5/2013 11:34:37 AM

    This is a great tool. I tried installing for a project I am working on but I am getting this error:

    An error occurred during the execution of the SQL file 'InstallCommon.sql'. The SQL error number is 5110 and the SqlException message is: The file "\\path.MDF" is on a network path that is not supported for database files.
    CREATE DATABASE failed. Some file names listed could not be created. Check related errors.
    Creating the ASPNETDB_bd20aefaba9f4830b2ea2f5e412f04a9 database...

    Any ideas why this is happening? Thanks

  • n.prosper@gmail,com
    Posted By: prosperva
    On: 9/5/2013 1:12:56 PM
    It was a database setup issue so I used your mvcinstaller and it worked though now I am getting this error: 

    Could not load type 'SecurityGuard.Services.MembershipService' from assembly 'SecurityGuard, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'.

    Thanks for the wonderful tool.

  • n.prosper@gmail.com
    Posted By: prosperva
    On: 9/5/2013 2:59:07 PM
    The web.config file had an error. Thanks for the wonderful tool.
  • info@kingwilder.com
    Posted By: King Wilder
    On: 9/5/2013 4:45:13 PM

    @prosperva - I'm glad you fixed your problem. The error wasn't a SecurityGuard error anyway.

    Cheers.

  • n.prosper@gmail.com
    Posted By: prosperva
    On: 9/5/2013 5:28:00 PM
    How can I access the approve variable?
  • info@kingwilder.com
    Posted By: King Wilder
    On: 9/5/2013 8:20:58 PM
    @prosperva - do you mean in the Dashboard when creating a new user? Look in the Membership controller and the Create action.
  • n.prosper@gmail.com
    Posted By: prosperva
    On: 9/6/2013 10:52:51 AM
    Sort of. I see that the username is accessed as User.Identity.Name and I was wondering how the Approve can be accessed in a view.
  • info@kingwilder.com
    Posted By: King Wilder
    On: 9/6/2013 11:12:56 AM
    @properva - you should check MSDN for that kind of information.
  • info@kingwilder.com
    Posted By: King Wilder
    On: 9/6/2013 11:12:56 AM
    @prosperva - or Stackoverflow
  • n.prosper@gmail
    Posted By: prosperva
    On: 9/6/2013 11:18:48 AM
    Thanks. I resorted to extend your library to suit the needs of the project I am working on. I need extra fields when creating users such as their first name.
  • n.prosper@gmail.com
    Posted By: prosperva
    On: 9/6/2013 11:44:38 AM
    Is it possible for you to provide the DLL?
  • n.prosper@gmail.com
    Posted By: prosperva
    On: 9/6/2013 12:10:24 PM

    Sorry I meant the DLL source code.

    Thanks

  • info@kingwilder.com
    Posted By: King Wilder
    On: 9/6/2013 12:30:19 PM
    @prosperva - in the header of this article is the link to the github repository with all the source code. :)
  • n.prosper@gmail.com
    Posted By: prosperva
    On: 9/9/2013 10:30:28 AM

    I would like to extend this method: MembershipUser CreateUser(string username, string password, string email, string passwordQuestion, string passwordAnswer, bool isApproved, out MembershipCreateStatus status); so that it has extra variables like First Name, Last Name etc. So having the DLL source I can add it and then recompile. 

    Thanks

  • info@kingwilder.com
    Posted By: King Wilder
    On: 9/9/2013 12:05:08 PM

    @prosperva - hi, did you see my last response?  I told you where the source code is, it's in github.  Look at the top of this article for the link called "Home Page".

    Also, it sounds like to you want to create a profile for a user.  I would suggest that you don't modify the CreateUser() method, but instead create either a Profile using the Profiles table found in the Membership database, or create your own User table and simply store user information there.

    You really shouldn't modify the CreateUser method because that is meant to simply and easily store information about the user credentials in the database, not profile information about the user.

    I hope this helps.

  • n.prosper@gmail.com
    Posted By: prosperva
    On: 9/9/2013 12:27:47 PM
    I had not refreshed my browser. Thanks. I want to create all user information in one click. I have started reading this: http://msdn.microsoft.com/en-us/library/ms366730(v=vs.100).aspx
  • info@kingwilder.com
    Posted By: King Wilder
    On: 9/9/2013 2:35:46 PM

    @prosperva - you still can.  Just create the new functionality inside the Create action of the controller, after the code that creates the User.

    If you extend the Membership provider, then you'll also have to modify the Membership database table.  It's up to you, but the other way, is the easier way and more flexible.

  • n.prosper@gmail.com
    Posted By: prosperva
    On: 9/9/2013 3:11:10 PM

    Yes I resorted to creating the functionality  inside the Create action of the controller; indeed it is much easier.

    Thank you very much

  • n.prosper@gmail.com
    Posted By: prosperva
    On: 9/19/2013 4:45:52 PM

    Hi,

    It has been so fun using your code. I had a small question, does security guard support ldap?

    Thanks

  • info@kingwilder.com
    Posted By: King Wilder
    On: 9/19/2013 5:02:31 PM
    @prosperva - SecurityGuard is just a wrapper around the ASP.NET Membership system.  If that does, then you can use it, otherwise, no.
  • najetareqz@gmail.com
    Posted By: Tareq
    On: 9/19/2013 9:25:29 PM
    I need help with external logins.
  • yonghan79@gmail.com
    Posted By: handoyo
    On: 9/24/2013 2:26:08 AM

    Hi,thanks for the module,i want to ask if i want to implement the securityguard is better using blank mvc4 template or internet template?And regarding the connection string,i try to use like following : 

     <connectionStrings>
        <add name="DefaultConnection" connectionString="Data Source=.\SQLExpress;Initial Catalog=blog;Integrated Security=TRUE;" providerName="System.Data.SqlClient" />
      </connectionStrings>

    When i run the application,it doesn't create the blog database,instead it creates ASPNETDB.mdf and putted in App_Data,where should i change it?I'm trying by using the internet template.Thanks

  • dineromike@yahoo.com
    Posted By: Michael McGee
    On: 9/23/2013 5:21:57 PM
    Thanks for all you do. I got it installed and working on a new project. Now I have to make it work for my exisitng project. I am not going to use the Role feature much and try to make this work with Claims. Do you have any advice on that? I will be posting my findings or concerns as I step through my needs. I appreciate what you do and will try to make a donation in the very near future.. you probably have saved me a tremendous amount of time, money and effort.
  • info@kingwilder.com
    Posted By: King Wilder
    On: 9/24/2013 1:06:11 PM

    @Tareq - I have not created a version of SecurityGuard that uses the external logins such as Facebook, Google, etc.  You should be able to incorporate them into your application by following the default Internet MVC 4 Template that is created in VS 2012.  You will have to copy and paste them in and do some testing, but it should work.

    If I find a moment, I have put this on my TODO list for SecurityGuard.

  • info@kingwilder.com
    Posted By: King Wilder
    On: 9/24/2013 1:06:11 PM

    @handoyo - in your connectionString, you have the Data Source set as ".\SqlExpress".  This will always default to the local .mdf database.  If you want to use your SQL Server Standard or above database, you just need to change the data source to point to your database.

    As a reminder, SecurityGuard does NOT create a new Membership database for you.  You need to have this created first, either through the VS tool, or through my other NuGet Package called MvcInstaller.  Then you will be able to point your connection string to your SQL Server database.

    Also it doesn't matter which VS template you use, what matters here is the connection string.  You are responsible for making sure it's pointing to the correct database.

    I hope this helps.

  • info@kingwilder.com
    Posted By: King Wilder
    On: 9/24/2013 1:06:11 PM

    @Michael McGee - if you want to use Claims, then you will most likely have some work to do to integrate that technology into SecurityGuard.  I've been thinking about creating a version using Claims, but I haven't had the time.

    If you are thinking of integrating Claims into SecurityGuard, you might want to fork my github repository (see the link at the top of the article) and create a new version.  I'm always open to collaboration.  :^)

  • nhok@gmx.net
    Posted By: Bernhard
    On: 9/25/2013 2:06:37 PM

    Thanks a lot for this mvc plugin, its really great. 

    Could this plugin also used with the SqlCompact database? As I am very new to the asp.net mvc I have no clue how to setup the Web.config, can you give me a hint, how I should set it up?

    best regards

      Bernhard

  • info@kingwilder.com
    Posted By: King Wilder
    On: 9/25/2013 4:49:33 PM

    @Bernhard - SecurityGuard can be used whereever the ASP.NET Membership system is installed.  You just need to setup your connectionStrings section correctly.

    The connectionStrings section should look something like this:

    <connectionStrings>
        <add name="YourEntityConnectionName" connectionString="Data Source=(LocalDb)\v11.0;AttachDBFilename=|DataDirectory|\YourSqlCompaceDatabase.mdf;Integrated Security=True" providerName="System.Data.SqlClient" />
    </connectionStrings>

    I hope this helps.

  • developernote@gmail.com
    Posted By: dev2709
    On: 9/26/2013 3:36:18 AM

    Hi,

    I'm currently using SecurityGuard in my MVC4 application. I've assume the encryption is using  HMACSHA256.

    My problem is - I have iOS client and want to validate their user name and password with membership table data.

    How do I calculate/generate password based on password salt?

    I have done similar thing on asp.net 2.0 with SHA1 algorithm. How do I solve this problem? 

    Regards,

    Dev2709

  • info@kingwilder.com
    Posted By: King Wilder
    On: 9/26/2013 11:05:17 AM

    @dev2709 - The encryption method is the default for ASP.NET.  You can use any of those provided to you by the system.

    Remember, SecurityGuard is simply a UI sitting on top of the ASP.NET Membership system.  I have not recreated any of the underlying technologies to make this work.  I simply used what is already there and put a UI on top of it.

    What is the problem with your iOS client?  The type of client makes no difference, it's all browser-based.  When you say validate, are you trying to log them into your application using SecurityGuard?  If so, then you can look at the login view and the Login action in the SGAccount controller to see the functionality.

    Regarding your password salt question, I also don't understand what you are asking.  In SecurityGuard you can create a new user with a password and the framework will do the rest for you, including create the password salt.  This is part of the membership system, and not SecurityGuard.

    If this doesn't answer your question, can you clarify?  Please understand that I can really only answer questions confidently on SecurityGuard, and only generally on the ASP.NET Membership system.

  • developernote@gmail.com
    Posted By: dev2709
    On: 9/26/2013 10:49:40 PM

    @King Wilder

    Thank you for your answer.

    My iOS client is native program in C# (by using Xamarin) and I am using webservice to validate the login and password. 

    My webservice have passwordsalt and password. I have to manually regenerated password in iOS C# and compared against my webservice password. This is not working on MVC4. (It was work on .Net 2.0 membership because of SHA1. Now default hash algorithm is different and I cannot regenerated the same password. 

    I will try to do with SecurityGuard and SHA1.

    Thank you.

    Regards,

    dev2709

  • dineromike@yahoo.com
    Posted By: Michael C McGee
    On: 9/28/2013 10:33:41 AM

    When I go to http://localhost/CostManagementSG/dashboard I get an error 

    Value cannot be null.
    Parameter name: username

    I made sure all my users have a user name. one thing I did do was add a field to my users table (businessId). I also went back and updated the DB so everyone had a secret answer (though I am not requiring it)..  Any thoughts on this? 

    Thank you for all you do. This was free so I will never complain. You have already saved me a ton of time.


  • dineromike@yahoo.com
    Posted By: Michael C McGee
    On: 9/28/2013 11:49:00 AM
    I think I figured it out, since I am using claims I needed to set my Name Claim type. Thank you for all you do! We are putting together the funds for the donation..
  • info@kingwilder.com
    Posted By: King Wilder
    On: 9/28/2013 3:49:39 PM
    @Michael C McGee - I hope you worked out your Claims issue, and I always appreciate donations.  :^)
  • dineromike@yahoo.com
    Posted By: Michael McGee
    On: 9/28/2013 6:33:03 PM

    Is there a secret to getting your areas registered? I get this error when I try to assign roles?

    /CostManagementSG/SecurityGuard/Membership/GrantRolesToUser/bademail@mcodemedia.com

    The resource you are looking for has been removed, had its name changed, or is temporarily unavailable.

    I am actively look for the solution. But I figured I would ask firs

  • info@kingwilder.com
    Posted By: King Wilder
    On: 9/28/2013 8:20:36 PM

    @Michael McGee - no there is nothing out of the ordinary to use SecurityGuard.  You can literally install the NuGet package and it will work.  Have you modified anything in SecurityGuard after installation?

    Did you say you changed the ASP.NET Membership database schema for your application?  That could be the problem.

    From the path you show, it seems you have a CostManagementSG application, and then SecurityGuard inside that.  Usually SecurityGuard sits off the root.  Check and see if the HTML is using absolute paths to the root, instead of relative paths.  I'm out right now so I can't check it myself.  You should be able to change it and make it work.

  • info@kingwilder.com
    Posted By: King Wilder
    On: 9/29/2013 1:26:11 AM

    @Michael McGee - SecurityGuard is installed via NuGet in an Area in your MVC application, which would place it at the root of your website.

    http://www.yourdomain.com/SecurityGuard

    Based on your path that you displayed, SecurityGuard is not in this location, that is why you are getting this error.  Make sure you have your navigation items pointing to the correct location of SecurityGuard, and that you have not moved the location of SecurityGuard.

    I hope this helps.

  • dineromike@yahoo.com
    Posted By: Michael McGee
    On: 9/29/2013 6:23:14 AM
    Thanks for the info. That gives me another path to go down. When I used NuGet it put my Security Guard Folder Under a folder called Areas. So not at the root. Let me dig a little deeper to see if I can get it resolved. I have been coding long enough to know we shall find a fix like always..
  • dineromike@yahoo.com
    Posted By: Michael McGee
    On: 9/29/2013 6:23:14 AM

    Looking a little deeper, it might have something to do with my routing.. I am pretty sure my Area is set up correctly. I find if I do this http://localhost/CostManagementSG/SecurityGuard/Membership/GrantRolesToUser?userName=cookie@mcodemedia.com instead of this

    http://localhost/CostManagementSG/SecurityGuard/Membership/GrantRolesToUser/cookie@mcodemedia.com it will work. So I will look at my routing. Thank you sir for making me look harder. This is the part I love about coding, the thrill of tracking down a program

  • info@kingwilder.com
    Posted By: King Wilder
    On: 9/29/2013 10:24:32 AM

    @Michael McGee - re: Areas - the Areas folder is never referenced in the URL.  So something like:

    root/Areas/MyArea/controllers ...

    ... will be referenced in the Url as ...

    http://www.mydomain.com/MyArea ...

    ... not ...

    http://www.mydomain.com/Areas/MyArea

    This is standard for MVC routing, nothing unique with SecurityGuard.

    So you your application will probably work (if you haven't moved SecurityGuard), as:

    http://localhost/SecurityGuard/Membership/etc...

    The way the parameter is used is not the reason for your error.  It's that the ASP.NET framework cannot find the SecurityGuard controllers with the path you've shown.  So you need to have SecurityGuard at the root of your website application.

    I hope this helps.

    FYI, I build many applications for my clients and I use SecurityGuard will all of them using the default installation.  In the custom Admin Dashboard that I create for the website, I just create a navigation link that points to SecurityGuard, and everything works.

    <a href="@Url.Action("Index", "Dashboard", new { area = "SecurityGuard" }, null)">Users</a>

    I hope this helps.

  • dineromike@yahoo.com
    Posted By: Michael McGee
    On: 9/29/2013 12:14:23 PM
    Thanks for the help. There is something odd going on. This was an existing project. I started a whole new project and everything worked out the box the first time. So there is something odd about my solution. I will keep digging deeper!
  • dineromike@yahoo.com
    Posted By: Michael McGee
    On: 9/29/2013 12:44:59 PM
    Ok, I figured it out (I think). In our system we don't want the user having a user name that is not an email address. We don't want people forgeting their user name (they hopefully won't forget their email address). I believe the period in the email adress will throw the routing off. I changed one of our users so their username is not an email address and everything worked. So I will probably just change the code to send the user id if possible, not the name of the user.
  • dineromike@yahoo.com
    Posted By: Michael McGee
    On: 9/29/2013 7:51:10 PM

    The easy fix for the routing issue when you have periods in your user name (i.e. email ) is to change the JavaScript to the following when you set the HREF

     // Concatenate the existing href value with the username
                var newHref = href + "/" +  userName + "/"; <--------------- I added forward slash (see line 179 membership index.cshtml)

    For the time being I am going to go with this, but I am slightly concerned that we pass the username around as a parm. I would rather pass the userID, so my history on any computer does not have the users email in the url.. Not much of a security concern (or is it?)

  • info@kingwilder.com
    Posted By: King Wilder
    On: 9/29/2013 8:54:19 PM

    @Michael McGee - I'm sorry you are having problems with SecurityGuard.  It really does work right out of the box.  I'm not sure why you are having issues.

    Also, I've created new users using email addresses as usernames without any issues.  You shouldn't have to do anything for this to work.

    Also, SecurityGuard can be added to a project already built, or a new project, it has no affect on the primary application.

    You don't need to be concerned with passing the usernames as either part of the route, or as a parameter, because any application that uses SecurityGuard really should be using SSL to encrypt the traffic.  As for the history, unfortunately that's your issue.  You have to protect who gets access to your computer.  But a user just seeing the history url doesn't mean they can load that page unless they are in the SecurityGuard Role.  And if they are, then there is not problem with them seeing it.

  • info@kingwilder.com
    Posted By: King Wilder
    On: 9/29/2013 8:54:19 PM
    @Michael McGee - you can change the functionality of the Update user methods so it uses the UserId (guid) instead of the username by just modifying the view and controller. 
  • dineromike@yahoo.com
    Posted By: Michael McGee
    On: 9/30/2013 6:35:22 AM
    I want to commend you again for a fine product. You have saved me a tremendous amount of time. I also want to encourage you to continue to perfect your craft. When I was writing my comments I put a lot of thought into them so they would not seem like I was complaining, becasue trust me YOU SAVED ME A LOT OF TIME, and it was FREE! I looked at some other comments written by others that I thought were borderline nasty, I noticed you always answered them with grace and humility. We appreciate all that you do sir.
  • n.prosper@gmail.com
    Posted By: prosperva
    On: 9/30/2013 12:52:10 PM

    Hi,

    I have small question. I successfully used MVC Installer when on a DEV server. Then I wanted to deploy the app on PROD server but when I type the address http://prodserver/install, the browser keeps redirecting to the home page. Is there a setting that has to be changed?

    Thanks.

  • info@kingwilder.com
    Posted By: King Wilder
    On: 9/30/2013 2:20:55 PM

    @prosperva - you need to add a key back into the appSettings section of the web.config file for deployment.  (I'll add this info to the article to be more clear.)

    Add this key for deployment:

    <add key="AppInstalled" value="false" />

    This tells MvcInstaller that it has NOT run yet, or in other words, the database schema and membership has not been installed.  Then you will be able to see the /Install view and run it.

    Remember to have Write permissions set on your web application during this procedure since MvcInstaller updates the web.config membership sections with values from the Installer.config file.  You can revert the permissions back afterward.

    Also, FYI, remember to post an MvcInstaller question in the MvcInstaller article, not this SecurityGuard article.  :^)  This will helps other users if they are looking for answers.

  • joerichmond@gmail.com
    Posted By: joe
    On: 10/1/2013 10:18:46 AM

    I am new to MVC so I apoligize if this is a silly quesitons.  Any help would be greatly appreciated.  Thanks!

    I installed Security Guard and it was working fine.  Then I added an ADO.NET Entity Data Model and I am now getting the following errors:


    ...Membership' does not contain a definition for 'Provider' - File: MembershipController

    ...Membership' does not contain a definition for 'Provider'  - File: SGAccountController

    ...Membership' does not contain a definition for 'CreateUser'  - File:

    ...Membership' does not contain a definition for 'GetUser'  - File: SGAccountController

    ...Membership' does not contain a definition for 'Provider'  - File: DashboardController

  • info@kingwilder.com
    Posted By: King Wilder
    On: 10/1/2013 11:47:01 AM

    @joe - I have never seen this error before.  Can you confirm that the SecurityGuard Area is still installed and all the controllers and views are still there?  And the SGAccount controller, is it still there?

    If they are, something obviously happened when you installed the Entity Data Model.

    One thing you can try is to uninstall and re-install SecurityGuard using the Visual Studio Package Manager.  See if that works.

  • joerichmond@gmail.com
    Posted By: joe
    On: 10/1/2013 12:51:10 PM
    Looks like it was because I was pulling in my "Membership" table in the Entity Data Model.  Security Guard is pointed to the same database as Entity Data Model.  I pull in everything but that table and it works.  I should be good now.  Thanks.
  • dineromike@yahoo.com
    Posted By: Michael McGee
    On: 10/6/2013 7:56:15 AM

    I am trying to use the reset password feature, I am still looking for the solution.. but I figured I would start with you and my provider

    does mvcMailer.BaseUrl need to be set to something?

    <mailSettings>
    <!-- Method#1: Configure smtp server credentials -->
    <smtp deliveryMethod="Network" from="support1@profitdreamer.com">
    <network enableSsl="true"  host="mail.profitdreamer.com" port="465" userName="support1@profitdreamer.com" password="mypassword"/>
    </smtp>
    </mailSettings>

    that info is my outgoing mail server.

  • info@kingwilder.com
    Posted By: King Wilder
    On: 10/6/2013 10:47:37 AM

    @Michael McGee - Hi Michael, no MvcMailer.BaseUrl is not needed and deprecated.  I will remove it from future updates. 

    What you are experiencing is a mailSettings configuration issue, or maybe a firewall issue on your end.  This is a SMTP settings issue and not a SecurityGuard issue, FYI, since the mail feature is MvcMailer.

    I've encountered this from time to time for a couple reasons:

    1. Localhost - for some reason, it seems finicky when use from localhost, but when it's deployed on my production server, it works without issues.
    2. SSL - you need to make sure that your Port is correct for your SSL setting.  Each mail server can have a custom Port for SSL, so don't go with the standard SSL Port necessarily.
    3. Password - the password could be entered incorrectly, this should be the first thing to check.

    From localhost, I can use my non-SSL settings and it will work.  This way I know that there is nothing wrong with the MvcMailer component or my settings.  Then if SSL fails, then I know it's something else, usually one of the items I've listed above.

    Give that a try and see if those suggestions help.

  • dineromike@yahoo.com
    Posted By: Michael McGee
    On: 10/6/2013 12:08:47 PM
    Thanks You sir for responding on a Sunday Morning. I am working with my hosting provider to figure it out! I am hosting with Arvixe, I will try to see if I cn get it workig on local host! Thanks!!
  • dineromike@yahoo.com
    Posted By: Michael McGee
    On: 10/7/2013 9:51:30 AM

    I just wanted to update you that I did get my emails working if used port  587 and turned SSL off. I talked to my hosting provider and they told me that .NET does not support enabling SSL that way... Which I am still not sure I believe.. They said I had to use some old COM component or use an older version of System.Web.Dll 

    They sent me here

    http://blogs.msdn.com/b/vikas/archive/2010/07/23/system-net-mail-cannot-send-secured-email-using-smtp-over-ssl-aka-smtps-protocol.aspx

    http://stackoverflow.com/questions/1082216/gmail-smtp-via-c-sharp-net-errors-on-all-ports/3845907#3845907

    http://blogs.msdn.com/b/webdav_101/archive/2008/06/02/system-net-mail-with-ssl-to-authenticate-against-port-465.aspx

    I know you are a busy man, so I am not asking you to look into it , I am just providing this in case someone else runs into the problem. If I get it all figured out I will post again..  Thank you for all you do! You saved me a month of trying to implement security myself..

  • info@kingwilder.com
    Posted By: King Wilder
    On: 10/7/2013 11:21:32 AM

    @Michael McGee - this is good information.  I did not know this.  I will add this to the article.

    Thanks for the research on this.

    FYI, you can get it to work if your SMTP provides the protocol shown in the accompanying articles.  I have EnableSsl set to true on most of my clients applications and they are all working on the server.  I've just used alternate Ports from 465 and it seems to work.  I haven't had to use the older component.

  • dineromike@yahoo.com
    Posted By: Michael McGee
    On: 10/7/2013 2:01:17 PM
    I think it also has something to do with my provider using hMailServer as their web server. There seems to be a problem with that. Can you reccomend a good host (one that works with your code).. I am thinking about buying a VPS, but I need to make some money first!! 
  • info@kingwilder.com
    Posted By: King Wilder
    On: 10/7/2013 6:18:34 PM

    @Michael McGee - Michael, I run my own Microsoft-based hosting business.  Most of my customers are mid-sized tech companies.  Also, MVC Central is hosted here as well as some customers that are running WordPress and other PHP sites.  But if you are running an ASP.NET MVC site, it WILL work!  Since I build all my clients web applications in MVC 4, I configured my server to absolutely work with all the latest Microsoft updates and technologies.

    I might be a little more expensive that Arvixe, but I provide great customer service.  My base hosting plan starts at $9.95/month or $7.96/year if paid annually.

    My mail server is on a separate cloud server, and it's run by a company with insane customer service.  I've been a partner with them for about 5 years and haven't had any problems.

    If you want, you can go month-to-month at first to see if you like it, and if not, you can move.  I never prevent any customer from leaving if they want, but many of my customers I've had since the late 1990's.  If you are interested email me at info@gizmobeach.com.

  • info@kingwilder.com
    Posted By: King Wilder
    On: 10/7/2013 6:18:34 PM
    @Michael McGee - I should have my new site up in the next week or so.  A slight redesign.  :^)
  • dineromike@yahoo.com
    Posted By: Michael McGee
    On: 10/8/2013 7:13:36 AM

    Is there any functionality in your project to make them change the password when I have sent them that ugly password? I can implement mine own, but I just wanted to see what you had to say, before I got too deep into it. When they get a new password back like @)**)))[1@, I know they will forget that too, so I was going to set some flag and when they log in with that ugly password, redirect them to the change password function and not let them do anything until they change their password to something they will remember..  Don't do any work, just adivse if you think that is a good idea..

  • info@kingwilder.com
    Posted By: King Wilder
    On: 10/8/2013 10:35:50 AM

    @Michael McGee - no I don't have that functionality in place, because not all applications need or want that out of the box.  It would not be very hard to create.  You can just make a copy of the ChangePassword view and make the changes to that and point it to a new controller action.

    I guess I could add it to a future version and have the Admin choose to implement it or not.

  • dineromike@yahoo.com
    Posted By: Michael McGee
    On: 10/8/2013 11:13:37 AM

    Thanks for responding. Don't do any work. You provided the basic implementation and it is great. We developers need to modify it for our use.. and that is what I am going to do. Gives me a reason to get up in the morning and code..

  • aribharathi@gmail.com
    Posted By: Bharathi
    On: 10/14/2013 8:55:14 AM

    I want the coding for given concept in ASP.NET

        I have one old database for school,now some update occur in the scholl webpage like new persons join and somebody leave from the scholl,we need to compare the Staff details in the given webpage,if it is match it will show in different color

  • info@kingwilder.com
    Posted By: King Wilder
    On: 10/14/2013 12:47:08 PM

    @Bharathi - I'm not sure I understand what you are asking.  If you want SecurityGuard for ASP.NET WebForm and not MVC, then it's not available.  SecurityGuard was specifically built to be used with ASP.NET MVC, not WebForms.  If you want something like this for WebForms, you will need to build it yourself, or look online to see if someone has built something you need.

    And regarding your school database, again I'm not sure what you are asking, but it doesn't sound like it relates to SecurityGuard specifically.

  • aribharathi@gmail.com
    Posted By: Bharathi
    On: 10/15/2013 4:21:46 AM
       I want to know how to compare the database and webpage/site.For example we have Student database,using that Database we check the student name is there or not in the scholl webpage/site.
  • info@kingwilder.com
    Posted By: King Wilder
    On: 10/15/2013 5:42:15 PM
    @Bharathi - your question is more suited for the ASP.NET MVC Forums or Stackoverflow.com since it doesn't pertain to SecurityGuard.  Good luck!
  • aribharathi@gmail.com
    Posted By: Bharathi
    On: 10/16/2013 12:42:55 AM
    Thank you
  • sameersalim@gmail.com
    Posted By: sam
    On: 10/20/2013 9:40:02 PM

    Hi King,

    Good one and really helpful, Thanks !

    Do you support the new simplemembership and mvc4? I had some difficulty getting it working and just wanted to make sure. If possible can you share a sample project with the new simplemembership and mvc 4.

    Thanks
    Sam

  • info@kingwilder.com
    Posted By: King Wilder
    On: 10/21/2013 10:23:01 AM
    @sam - no, I have not yet implemented SecurityGuard to be used with the SimpleMembership providers. That will be the thing I work on.
  • info@softwarelogisticamagazzino.com
    Posted By: Servilio Amoliani
    On: 10/23/2013 6:20:54 AM

    I have installed SecurityGuard on my mVC4 project (VS 2010). When I run my web mvc application I have no problem on local machine but on my deploy server when I click the link that run this istruction ( @Html.ActionLink("Security Guard", "Index", "Dashboard", new { area = "SecurityGuard" }, null) ) I obtain "The page not found Error"; http://www.myserver.it/VirtualDirectory/SecurityGuard 

    The only difference is that on my deploy server I have one virtual directory


  • info@kingwilder.com
    Posted By: King Wilder
    On: 10/23/2013 10:48:29 AM
    @Servilio Amoliani - the virtual directory is the issue. SecurityGuard is meant to be in the root. You will have to move it back to the root. Or you can try to change the code in the view to include the virtual directory. See if that works.
  • jp.tissot@hotmail.com
    Posted By: Jp Tissot
    On: 10/23/2013 5:56:26 PM

    Hi,

    Did you take a look at the new Identity system that MS is releasing ? I probably will be using it in a future application and was wondering if you had plans to create some kind of Security Guard for it. 

    http://www.asp.net/identity

    Thanks 

  • info@kingwilder.com
    Posted By: King Wilder
    On: 10/23/2013 8:57:56 PM
    @Jp Tissot - I will look into it. I do plan on having various provider plugins at some point.
  • bkfofi@gmail.com
    Posted By: farideh995
    On: 11/1/2013 12:59:02 PM

    thank you very much

    sorry i have a question. im begginer in membership. i have 2 roles with same view and i donot know if i have to create 2 seperated view for each role or not.

    please help me tanks

  • info@kingwilder.com
    Posted By: King Wilder
    On: 11/1/2013 8:15:59 PM
    @farideh995 - sorry I don't understand your question.  There is only one view for Roles in SecurityGuard.  There is no need to create any other views.  SecurityGuard is already self containing and doesn't need to be enhanced to be used, but you are free to do so.  I hope that answers your question.
  • aribharathi@gmail.com
    Posted By: Bharathi
    On: 11/5/2013 12:32:38 AM
    Highlight words in webbrowser control
    Highlight words in webbrowser control
    Highlight words in webbrowser control

    Highlight the word on webbrowser

       i am using    

     IHTMLDocument2 doc2=Webbrowser1.Document.DomDocument as IHTMLDocument2;

    StringBuilder html=new String Builder(doc2.body.outerHTML);It will show Error  IHTMLDocument2 and body

    IHTMLDocument2 doc2 = webBrowser1.Document.DomDocument as IHTMLDocument2; StringBuilder html = new StringBuilder(doc2.body.outerHTML); - See more at: file:///E:/Bharathi/teacher/Highlight%20words%20in%20webbrowser%20control.htm#sthash.AzyBB79w.dpuf
    IHTMLDocument2 doc2 = webBrowser1.Document.DomDocument as IHTMLDocument2; StringBuilder html = new StringBuilder(doc2.body.outerHTML); - See more at: file:///E:/Bharathi/teacher/Highlight%20words%20in%20webbrowser%20control.htm#sthash.AzyBB79w.dpuf
  • info@kingwilder.com
    Posted By: King Wilder
    On: 11/5/2013 10:32:25 AM

    @Bharathi - I'm not sure what you are doing here, it looks like you are creating a browser instance inside a Windows Forms application, or something like that, and this is not what SecurityGuard was meant for.  If you have found an error with your code, thanks for pointing this out, but it is not a concern for me.

    SecurityGuard is strictly meant to be used in an ASP.NET MVC 3 or 4 application as an Area.  I hope this helps.

  • mcgeek@iisonline.co.uk
    Posted By: mcgeek
    On: 11/6/2013 4:10:30 PM

    Hi there. First of all, what a truly awesome implementation of a user management system.

    It does what it says and the code is logical enough to manage and adapt to suit my needs. One question though... do you have any examples of utalizing the profile service?

    Many thanks and great work

    McGeek

  • info@kingwilder.com
    Posted By: King Wilder
    On: 11/6/2013 5:00:53 PM
    @mcgeek - thanks for the kind words.  Sorry, no, I haven't built any example using the Profile service.  Since Profiles can be so varied in their customizability, it's hard to stub anything out for Profiles.
  • danrides@gmail.com
    Posted By: camrat
    On: 12/6/2013 12:15:48 AM

    Hey King:

    This is sweet.  I almost have it! but I cant get past Line 146 in the SGAccountController.cs file.  

    Method not found: 'System.Data.Objects.ObjectContext System.Data.Entity.Infrastructure.IObjectContextAdapter.get_ObjectContext()'.

    Im sure this is my error somewhere but any help would be appreciated.

  • symon01107
    Posted By: symon
    On: 12/19/2013 4:04:53 AM

    {"Specified method is not supported."}exception in below

    membershipService.CreateUser(model.UserName, model.Password, model.Email,
                        model.SecretQuestion,
                                                 model.SecretAnswer,
                                                 true, out createStatus);

  • info@kingwilder.com
    Posted By: King Wilder
    On: 12/19/2013 12:40:42 PM
    @camrat - sorry for the late response, I didn't get notified of your post.  Have you made some modifications to SecurityGuard after installation?  I've never gotten this error.  Line 146 is in the Register method at membershipService.CreateUser is this correct?  I assume you've installed the ASP.NET Membership system and you have your connection string configured correctly?  Can you give me some more information?
  • info@kingwilder.com
    Posted By: King Wilder
    On: 12/19/2013 12:40:42 PM
    @symon - this error message makes it seem like the necessary membership assemblies were not successfully installed into your application.  Try uninstalling SecurityGuard with NuGet and then re-installing it and see if that fixes it.  Let me know what happens.
  • n.prosper@gmail.com
    Posted By: prosperva
    On: 12/20/2013 5:42:28 PM

    Hi,

    How would you add users but make sure they are not approved?

    Thanks

  • info@kingwilder.com
    Posted By: King Wilder
    On: 12/21/2013 11:09:45 AM
    @prosperva - that's easy, on the Create User page of SecurityGuard, when you create a new user, simply do not check the Approve checkbox.  This way the user will be created but will not have immediate access to the application.  I hope this answers your question.
  • n.prosper@gmail.com
    Posted By: prosperva
    On: 12/22/2013 3:49:23 PM
    How about when you are using the bulk insert in the installer.config file.
  • info@kingwilder.com
    Posted By: King Wilder
    On: 12/22/2013 9:03:34 PM

    @prosperva - just as a reminder, this is an MvcInstaller question, not a SecurityGuard question... but I'll answer it with a short answer, don't!

    MvcInstaller is intended to install your database schema and create your Administrator accounts, and that's all!  It's not to be used to create non-Administrator users.  Your non-Admin users are to be created the normal way, either where they register themselves using the Register form, or where you create their account for them in SecurityGuard.

    I hope this answers your question.

  • n.prosper@gmail.com
    Posted By: prosperva
    On: 12/23/2013 10:42:14 AM
    Thank you. Happy holidays and thank you for your great work.
  • yasir.wafeeq@gmail.com
    Posted By: wafeeq
    On: 1/15/2014 5:31:18 PM

    Hello 

    After login as a "superadmin", when I click on the "Security Guard" action link, I get following runtime error. 

    System.InvalidCastException: [A]System.Web.WebPages.Razor.Configuration.HostSection cannot be cast to [B]System.Web.WebPages.Razor.Configuration.HostSection. Type A originates from 'System.Web.WebPages.Razor, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' in the context 'Default' at location 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.WebPages.Razor\v4.0_1.0.0.0__31bf3856ad364e35\System.Web.WebPages.Razor.dll'. Type B originates from 'System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' in the context 'Default' at location 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.WebPages.Razor\v4.0_2.0.0.0__31bf3856ad364e35\System.Web.WebPages.Razor.dll'.

  • info@kingwilder.com
    Posted By: King Wilder
    On: 1/15/2014 8:53:44 PM

    @wafeeq - sorry, I've never seen this exception. It looks like there's a difference in the version of Razor in your application.

    What's the version of the MVC application that you created?  And what's the version of SecurityGuard that you installed?

  • yasir.wafeeq@gmail.com
    Posted By: wafeeq
    On: 1/16/2014 4:36:10 PM

    Thanks King for Replying,

    I was already  working on an application and have developed some features. Now I wanted to make role management and forms authentication. 

    my application is asp.net MVC4. Version of SecurityGuard 1.0.51.580 was the latest one.  

    MVCInstaller Version is 2.0.2.0

  • info@kingwilder.com
    Posted By: King Wilder
    On: 1/16/2014 5:45:43 PM
    @wafeeq - have you gotten if resolved?  SecurityGuard just uses the Razor version 2.0.0.0.  You should find out where in your application it's set as Razor 1.0.0.0 and try changing it to 2.0.0.0.  It may work.
  • yasir.wafeeq@gmail.com
    Posted By: wafeeq
    On: 1/17/2014 3:42:11 AM

    Hello King,

    No, not yet I am still in problem. There is nobody talking about converting from  razor v2 to v1 or ever converting from mvc4 to mvc3. Do you  have any Idea to switch back? or just chaging the razor version?

  • yasir.wafeeq@gmail.com
    Posted By: wafeeq
    On: 1/17/2014 3:42:11 AM

    Hello King,

    No, not yet I am still in problem. There is nobody talking about converting from  razor v2 to v1 or ever converting from mvc4 to mvc3. Do you  have any Idea to switch back? or just chaging the razor version?

  • m.essaddek@gmail.com
    Posted By: medessad
    On: 3/21/2014 6:43:13 AM

    Hi,

    I ve installed the package, in my ASP .Net MVC Application, but when i try to access to the http://myhost/SecurityGuard/Dashboard/Index

    this error is caught by the server : 

    [A]System.Web.WebPages.Razor.Configuration.HostSection ne peut pas être converti en [B]System.Web.WebPages.Razor.Configuration.HostSection. Le type A provient de 'System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' dans le contexte 'Default' à l'emplacement 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.WebPages.Razor\v4.0_2.0.0.0__31bf3856ad364e35\System.Web.WebPages.Razor.dll'. Le type B provient de 'System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' dans le contexte 'Default' à l'emplacement 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\root\b7cbfd8b\16c09dde\assembly\dl3\33cc6da3\99bb9f81_f544cf01\System.Web.WebPages.Razor.dll'.

    Which mean that the type A could not be converted to type B.

    Any idea?

    Help please.

  • info@kingwilder.com
    Posted By: King Wilder
    On: 3/21/2014 9:38:37 PM
    @medessad - I haven't seen this error before with SecurityGuard.  What version of Visual Studio did you create your MVC project? 
  • m.essaddek@gmail.com
    Posted By: medessad
    On: 3/23/2014 6:32:31 AM
    I ve created it with VS 2013, 
  • saravanan.cse2010@gmail.com
    Posted By: saravanan123
    On: 3/24/2014 10:34:34 AM
    An error occurred creating the configuration section handler for system.web.webPages.razor/host: Could not load file or assembly 'System.Web.WebPages.Razor, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
  • saravanan.cse2010@gmail.com
    Posted By: ashok1234
    On: 3/24/2014 10:34:34 AM

    In VS 2013 I install securityguard while click SecurityGuard the following error is accour

     Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. 
    Line 4:    <configSections>
    Line 5:      <sectionGroup name="system.web.webPages.razor" type="System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup, System.Web.WebPages.Razor, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
    Line 6:        <section name="host" type="System.Web.WebPages.Razor.Configuration.HostSection, System.Web.WebPages.Razor, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
    Line 7:        <section name="pages" type="System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
    Line 8:      </sectionGroup>

  • info@kingwilder.com
    Posted By: King Wilder
    On: 3/24/2014 11:19:30 AM

    MVC 5 Fix

    To All who are installing SecurityGuard.MVC4 in an MVC 5 application, I am aware of the issue and I will create a new version shortly.

    In the meantime you can easily fix this by going into the /Areas/SecurityGuard/Views/web.config and modifying the three section group elements of the config file and change the version from 2.0.0.0 to 3.0.0.0.  This will fix the issue until I make a new version.

    I apologize for the inconvenience.

  • gderoiste@eircom.net
    Posted By: glenn
    On: 5/26/2014 4:32:12 AM

    Hi

    Should I be able to get this to work with Oracle ?

    Any tips appreciated

    thanks

    Glenn

  • suzziered@gmail.com
    Posted By: suzzie
    On: 5/28/2014 1:56:38 PM
    what i need to do to add two more security questions instead of just one when register?  thanks.
  • info@kingwilder.com
    Posted By: King Wilder
    On: 5/28/2014 2:21:27 PM

    @glenn, it has not been tested against Oracle. It most likely won't work because it uses the Membership providers that, I think are specific to SQL Server.

    Sorry.

  • info@kingwilder.com
    Posted By: King Wilder
    On: 5/28/2014 2:21:27 PM

    @glenn, it has not been tested against Oracle. It most likely won't work because it uses the Membership providers that, I think are specific to SQL Server.

    Sorry.

  • info@kingwilder.com
    Posted By: King Wilder
    On: 5/28/2014 2:21:27 PM
    @suzzie, you have full access to the SGAccount controller and the create action, so you can refactor the code any way you need.
  • nguyenngochoangit.tb@gmail.com
    Posted By: hoang nguyen
    On: 6/12/2014 2:08:50 AM

    Hey King Wilder!

    Im want ask something.

    Im using SECURITY GUARD for my website. Im want login use facebook and after save account facebook more and more.

    I can't do it.

    Guid me!

    Thanks you very much!

  • nguyenngochoangit.tb@gmail.com
    Posted By: hoang nguyen
    On: 6/13/2014 6:56:07 PM

    Hi King!

    Help me solve it!

  • info@kingwilder.com
    Posted By: King Wilder
    On: 6/13/2014 8:13:03 PM

    @hoang nguyen - at the moment, this version of SecurityGuard goes not contain this feature out of the box.  But you can add this feature yourself.  Just take the code from the Visual Studio template that uses the Social Media components for authentication, and then integrate it into your application.

    You have the source code for both SecurityGuard and the Social Media authentication functions, so you should be able to integrate them together.

    I hope this helps.

  • nguyenngochoangit.tb@gmail.com
    Posted By: hoang nguyen
    On: 6/13/2014 9:00:11 PM

    Hi King!

    I using social media default off membership. I shouldn't be able to integrate them together. 

    How can i add this feature? Could you help me. 

    OAuthWebSecurity.CreateOrUpdateAccount(result.Provider, result.ProviderUserId, User.Identity.Name);

    It error.

    And Password not empty when create new account.

    Sorry you, My English very bad

    Are you understand, you aren't

  • nguyenngochoangit.tb@gmail.com
    Posted By: hoang nguyen
    On: 6/13/2014 9:00:11 PM

    I just need add login use account facebook and after login save account into database.

    Could you help me. just help how is it do? -_-

  • nguyenngochoangit.tb@gmail.com
    Posted By: hoang nguyen
    On: 6/13/2014 9:00:11 PM

    I can login with account facebook but i can't save new account facebook into my database.

    different between table User and UserProfile. and membership and Security Guard.

  • info@kingwilder.com
    Posted By: King Wilder
    On: 6/15/2014 3:23:14 PM
    @hoang nguyen - sorry, but I can't help you, I have projects I am already working on.  Maybe at some point I'll work on a version of SecurityGuard that integrates the Social Media authentication.
  • malisoftyahoo.com
    Posted By: m ali
    On: 7/2/2014 1:58:37 AM
    I can login with account facebook but i can't save new account facebook into my database.
  • malisoft@yahoo.ocm
    Posted By: Mohammad Ali
    On: 7/2/2014 2:07:37 AM
  • info@kingwilder.com
    Posted By: King Wilder
    On: 7/2/2014 9:14:33 AM
    @mali - the current version of SecurityGuard does not interact with the social media authentication components.  You would have to hook them up yourself.  Sorry.  Maybe when I have some time I can look into making that a feature.
  • jimpri2008@hotmail.com
    Posted By: jp
    On: 7/22/2014 6:09:23 AM
    Excellent project. Congrats!
  • info@kingwilder.com
    Posted By: King Wilder
    On: 7/22/2014 9:04:10 AM
    @jp - I'm glad you found it useful.
  • joerichmond@gmail.com
    Posted By: joe
    On: 7/28/2014 6:50:28 PM
    I am running the mvc3 version of SecurityGuard.  I have been using the login portion and I am now trying to implement the other membership stuff so that I can manage users.  My problem is that I am getting System.NotImplementedException when I hover over this.roleService in debug.  I am then redirected to the login page.  I have implemented this same thing in the past just fine, so I'm not sure what this could be.  Any ideas?  Thanks.
  • info@kingwilder.com
    Posted By: King Wilder
    On: 7/29/2014 8:02:56 AM

    @joe - it's hard for me to diagnose this with what you have told me, but have you looked at the articles and videos on how it's used?    There aren't any used methods in SecurityGuard with the System.NotImplementedException exception.

    • What method has the NotImplementedException?
    • Did SecurityGuard install properly?
    • Can you navigate to http://localhost:[port]/SecurityGuard?
    • Is the SecurityGuard Area where you are getting the NotImplementedException?

    Let me know.

  • joerichmond@gmail.com
    Posted By: joe
    On: 7/30/2014 8:05:27 PM

    Method:

      public DashboardController()
            {
                this.roleService = new RoleService(Roles.Provider);
                this.membershipService = new MembershipService(Membership.Provider);
            }

    As far as I can tell, it installed properly.

    If I try to navigate to http://localhost:[port]/SecurityGuard it takes me to the above method and then to the login screen.

    I am getting the NotImplementedException in the SecurityGuard Area in the Dashboard Controller when I hover over roleService.

    I don't have role records in the Roles table.  Could this be causing it?

  • sakthic8@gmail.com
    Posted By: chinnaselvan
    On: 8/12/2014 10:34:14 PM
    Hai! Sir, memeberhip security guard working fine. really good hard work sir thanks. all the best for ur future development.
  • info@kingwilder.com
    Posted By: King Wilder
    On: 8/13/2014 8:14:41 AM
    @chinnaselvan - I'm glad you found it helpful.
  • info@kingwilder.com
    Posted By: King Wilder
    On: 8/13/2014 8:14:41 AM

    @joe - sorry for the late reply, but I still don't have any quick answers.  I assume you DO have roleManager section in your web.config set to "enabled=true", correct?  And all the type attributes are: type="System.Web.Providers.DefaultRoleProvider, System.Web.Providers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", correct?

    If you already have this part configured, I would just say that you should uninstall the package, and then reinstall it and see if it works then.  It won't affect any part of your code or database, it simply removes all references to the SecurityGuard installation and then reinstalls it.

    Try that.

  • cperez.cali@gmail.com
    Posted By: Claudio Pérez
    On: 8/22/2014 4:52:39 PM
    Hi everything works correctly, but I can not connect when I add a "key machine" in the web.config. It throws the following error: The user name or password provided is incorrect. Then I remove the "Machine Key" and I can login correctly. Sorry for my bad English, I speak only Spanish and use a translator. 


    Thank you 
    Claudio
  • info@kingwilder.com
    Posted By: King Wilder
    On: 8/22/2014 5:04:37 PM

    @Claudio Pérez - this behavior is specific to the ASP.NET Membership system, not SecurityGuard.  When you add a machine key to the web.config file, the Membership system will use it to encrypt credentials.  So if you already have some credentials created without the key, then you cannot add the key after that because the encryption will be different.

    If you want to use a machine key for encryption/decryption, you need to add it before creating any accounts.

    I hope this helps.

  • atraore@websolutionsci.net
    Posted By: Medo
    On: 9/30/2014 6:20:39 AM

    I use your security Guard on an existing project

    I have create user With dot (.) in username like "xxx.yyyy" . And then when I want to update user or give role this user i have thise Error,

    File or directory not found

    localhost:59000/SecurityGuard/Membership/Update/xxx.yyyy

  • info@kingwilder.com
    Posted By: King Wilder
    On: 10/1/2014 2:37:09 PM
    @Medo - the (.) dot notation is an ASP.NET MVC routing issue, not a SecurityGuard issue.  Consider using dashes instead of dots.
  • info@kingwilder.com
    Posted By: King Wilder
    On: 10/1/2014 5:15:42 PM
    @Medo - in case you are still interested, I was able to fix the issue, so this routing issue now works with SecurityGuard.Mvc4 and .Mvc5.
  • momynkul@gmail.com
    Posted By: david
    On: 11/2/2014 7:01:39 PM

    @ King Wilder, how did you fix the issue with (.) dot notation? I need help. Thank you.

  • info@kingwilder.com
    Posted By: King Wilder
    On: 11/3/2014 8:32:19 AM

    @david - this issue with SecurityGuard was fixed in the latest Mvc4 and Mvc5 releases.

    What issue are you having?  Creating a username with a dot?  Editing?

  • momynkul@gmail.com
    Posted By: @King Wilder
    On: 11/3/2014 8:42:06 PM

    I installer Security Guard MVC4 couple of days ago using NuGet (Install-Package SecurityGuard.MVC4 ), so I guess I have the latest update and still having issues with usernames with dot in them.

    Whenever I enter a username with dot and press create it gives me 404 error. But the user is created, and I can see the user in Manage users page.

    While the following links result in 404 error:

    /SecurityGuard/Membership/GrantRolesToUser/king.wilder

    /SecurityGuard/Membership/Update/king.wilder

  • afb@gmail.com
    Posted By: britto
    On: 1/22/2015 12:38:04 AM

     i am using visual stutio 2013  in  mvc5 application. 

    The entry 'MyCoolEntities' has already been added.


  • medessad@gmail.com
    Posted By: Medessad
    On: 2/25/2015 7:24:50 AM
    Hi, i am using a database schema, that match with the asp.net identity, and i would like to force securityguard to use this schema, (the default connexion string is already set in web.config .
  • info@kingwilder.com
    Posted By: King Wilder
    On: 2/25/2015 8:24:26 AM

    @britto - sorry this is so late, I didn't even know you had posted this comment.  Just to let you know, this is an MvcInstaller issue and not a SecurityGuard issue, but I'll answer it here.  This is a bug that I'm trying to find time to fix, but you can make it work by removing the connection string prior to opening the Install page.  MvcInstaller updates your web.config/connectionString setting for you based on your Installer.config configuration.

    You usually get this error when you are installing MvcInstaller into an appliation that you've already been working on, one that has a working connection string set, etc.  By removing the connection string element, saving the web.config file, and then refreshing the /Install page, it should work.

    On some versions you may get one other error, and this is when it tries to update the membership providers that are already set.  So until I can get time to fix this bug, this workaround should fix it and allow you to see the Install page to install your app.

    1. Remove the connection string - if a connection string exists with the same name, remove it (you can always copy it to notepad if you like)
    2. Remove all the Membership provider elements - MvcInstaller will update this for you, so you can remove these safely

    When both of these are removed, you should be able to see the Install page and install your application.  I hope this helps.  (You probably already figured out a workaround by now, sorry)

  • info@kingwilder.com
    Posted By: King Wilder
    On: 2/25/2015 8:24:26 AM
    @Medessad - sorry but SecurityGuard does not work with Microsoft Identity.  Please read my article on this subject. http://www.mvccentral.net/s/75
  • medessad@gmail.com
    Posted By: Medessad
    On: 3/3/2015 8:48:57 AM

    Hi King, Thanks for your answer, but, i need to store booth authentication and application data in the same database, how to perform that ? i have already created a database under sql server 2014 and the connectionstring is registered in the web.config file.

    Regards.

  • info@kingwilder.com
    Posted By: King Wilder
    On: 3/3/2015 8:58:09 AM

    @Medessad - if you are using Microsoft Identity, as I mentioned before, you can't use SecurityGuard.  If you want to use SecurityGuard using the security providers that it comes with, then you can do what you want.

    If you use MvcInstaller to install the ASP.NET Membership system into your database, along with your application's schema, then SecurityGuard just sits on top of that to give you a nice interface for managing your membership system.  Read the articles and watch the videos on MvcInstaller for more information.

    But again, Identity is not supported with SecurityGuard, at this time.

  • medessad@gmail.com
    Posted By: Medessad
    On: 3/3/2015 9:04:47 AM
    No, i don't use Identity, so i'll try to use mvc installer to perform the config.
  • app.apollo@gmail.com
    Posted By: app
    On: 5/27/2015 5:32:05 PM

    Hi ...

    Have the error when try to Register new user. Trying Uninstall/Install the package the error remains, but Login and Log Off works.

    Can you please help?

    -------------------------------------------------------

    http://localhost:51561/SGAccount/Register

    ------------------------------------------------------

    Server Error in '/' Application.


    Specified method is not supported.

    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Line 144:                // Attempt to register the user
    Line 145:                MembershipCreateStatus createStatus;
    Line 146:                membershipService.CreateUser(model.UserName, model.Password, model.Email, model.SecretQuestion, model.SecretAnswer, true, out createStatus);
    Line 147:
    Line 148:                if (createStatus == MembershipCreateStatus.Success)
    [NotSupportedException: Specified method is not supported.]
       WebMatrix.WebData.SimpleMembershipProvider.CreateUser(String username, String password, String email, String passwordQuestion, String passwordAnswer, Boolean isApproved, Object providerUserKey, MembershipCreateStatus& status) +143
       SecurityGuard.Services.MembershipService.CreateUser(String username, String password, String email, String passwordQuestion, String passwordAnswer, Boolean isApproved, MembershipCreateStatus& status) +78
       ams.Controllers.SGAccountController.Register(RegisterViewModel model) in d:\D7\AMS\Site\ams\ams\Controllers\SGAccountController.cs:146
       lambda_method(Closure , ControllerBase , Object[] ) +181
       System.Web.Mvc.ActionMethodDispatcher.Execute(ControllerBase controller, Object[] parameters) +59
       System.Web.Mvc.ReflectedActionDescriptor.Execute(ControllerContext controllerContext, IDictionary`2 parameters) +435
       System.Web.Mvc.ControllerActionInvoker.InvokeActionMethod(ControllerContext controllerContext, ActionDescriptor actionDescriptor, IDictionary`2 parameters) +60
    

  • app.apollo@gmail.com
    Posted By: app
    On: 5/27/2015 5:32:05 PM

    and same have on

    http://localhost:51561/Dashboard

    Server Error in '/' Application.

    Specified method is not supported.

    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Line 31:             int totalRecords;
    Line 32: 
    Line 33:             membershipService.GetAllUsers(0, 20, out totalRecords);
    Line 34:             viewModel.TotalUserCount = totalRecords.ToString();
    Line 35:             viewModel.TotalUsersOnlineCount = membershipService.GetNumberOfUsersOnline().ToString();
    [NotSupportedException: Specified method is not supported.]
       WebMatrix.WebData.SimpleMembershipProvider.GetAllUsers(Int32 pageIndex, Int32 pageSize, Int32& totalRecords) +126
       SecurityGuard.Services.MembershipService.GetAllUsers(Int32 pageIndex, Int32 pageSize, Int32& totalRecords) +62
    

  • info@kingwilder.com
    Posted By: King Wilder
    On: 5/27/2015 6:05:07 PM

    @app - the error message shows that it is trying to use the SimpleMembership provider.  SecurityGuard doesn't use this provider.  It looks like you are using WebMatrix, is that correct?  If so, I have not tested this with WebMatrix, but it looks like the membership providers are clashing.  For this to work you will have to remove the SimpleMembership providers.

    Actually I can't really tell you to do that because I don't know what the result will be.  My suggestion is to use Visual Studio if you can and create the application with the standard Web templates.  My lack of knowledge about WebMatrix won't help you in this situation.  Sorry.

  • info@kingwilder.com
    Posted By: King Wilder
    On: 5/27/2015 6:05:07 PM
    @app - you should look at your web.config file and see how the membership section is created.  If it contains providers for SimpleMembership instead of System.Web.Providers, then that's the problem.  You would have to replace the provider usage for this to work.
  • app.apollo@gmail.com
    Posted By: app
    On: 5/27/2015 6:16:54 PM

    Thank You!!! for your quick answer...

    Really my fault I have SimpleMembership and your code for Membership.

    You specify this on top, need read all carefully :)

    Pre-requisites:
    • .Net 4.0 Framework
    • ASP.NET MVC 3 or 4 host application
    • ASP.NET Membership is installed based on the System.Web.Providers namespace (not the SimpleMembershipProvider yet)

  • devman825@gmail.com
    Posted By: dcostelloe
    On: 6/17/2015 6:27:49 AM

    Hi,

    I just ran into this issue:

    0x800a01b6 - JavaScript runtime error: Object doesn't support property or method 'addBack'

    Jquery version 1.8 or above has the addback?

    I get an error with the script and then if I continue all is well. Using Visual Studio 2013

    Thanks

  • info@kingwilder.com
    Posted By: King Wilder
    On: 6/17/2015 9:11:30 AM
    @dcostelloe - Sorry you are having trouble.  Where in SecurityGuard are you getting this error?  What page are you loading and/or what command are you executing (button click) to get this error?
  • devmna825@gmail.com
    Posted By: dcostelloe
    On: 6/18/2015 8:28:09 AM

    Unhandled exception at line 19, column 2746 in http://localhost:16314/Scripts/jquery.validate.unobtrusive.min.js

    0x800a01b6 - JavaScript runtime error: Object doesn't support property or method 'addBack'

    When in the Dashboard and using

    Manage Users
    Creat User

    http://localhost:16314/SecurityGuard/Membership/CreateUser

    Hope this helps, this seems to be the only issue I have the work around I use is to register User and not use the Create User in the Dashboard.

    Thanks

    David

  • info@kingwilder.com
    Posted By: King Wilder
    On: 6/18/2015 10:07:07 AM
    @dcostelloe - yes, I see the JavaScript exception, but it doesn't prevent you from creating a new user.  I was able to create a user without any problems.  If you want to get rid of the exception until I have a time to look at it, you can probably update the jquery file since I'm using 1.6.1.  See if that works.
  • devman825@gmail.com
    Posted By: dcostelloe
    On: 6/24/2015 8:20:26 AM

    Hi,

    Thanks for the update, I tried updating the jQuery version to 1.8 but ran into a lot of problems. I will wait for the update as it works with my work around. My create user if I ignore the script error I can in fact create a user.

    Thanks

  • darretking@gmail.com
    Posted By: Darret King
    On: 6/25/2015 1:38:07 AM

    I have a customer registration controller I am creating.

    when I get to (membershipService.CreateUser(model.EmailAddress, model.Password, model.EmailAddress, null, null, true, out createStatus);) then I get

    Object reference not set to an instance of an object.

    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

    Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.


    public virtual ActionResult Index(RegistrationModel model)
            {
                if (!ModelState.IsValid)
                {
                    return View(model);
                }

                if (ModelState.IsValid)
                {

                    var createStatus = new MembershipCreateStatus();

                    membershipService.CreateUser(model.EmailAddress, model.Password, model.EmailAddress, null, null, true, out createStatus);



                   // MembershipCreateStatus createStatus = membershipService.CreateUser(model.EmailAddress, model.Password, model.EmailAddress );

                    //RVmodel.UserName = model.EmailAddress;

                    if (createStatus == MembershipCreateStatus.Success)
                    {
                        formsAuthenticationService.SetAuthCookie(model.EmailAddress, false /* createPersistentCookie */);


                        RoleService.AddUserToRole(model.EmailAddress, "Administrator");
                        RoleService.AddUserToRole(model.EmailAddress, "SecurityGuard");

                    
  • darretking@gmail.com
    Posted By: darret king
    On: 6/27/2015 7:08:54 AM

    Hi

    any reason that I should be aware of why my app works locally but will not register a user when deployed to azure?

    Thanks

  • ian@tiktaktoe.co.uk
    Posted By: goolag
    On: 11/15/2016 12:24:06 AM

    Hi

    I'm getting an error when trying to delete a user, invlaid table Profiles - any clues why this is happening? 

    thanks

  • info@kingwilder.com
    Posted By: King Wilder
    On: 11/15/2016 7:14:54 AM
    @goolag - firstly, what SecurityGuard version are you using? v5?  The error says, "Invalid table Profiles", that tells me that you may be missing that table in the database.  Can you confirm that it's there, along with all the other membership tables?
  • info@kingwilder.com
    Posted By: King Wilder
    On: 11/15/2016 7:14:54 AM

    @darretking - I apologize for not responding sooner, I didn't get a notice that you posted this comment.  You have probably figured it out by now, but if not, can you figure out where the null reference is coming from?

    BTW, you really don't have to create a custom Registration form, you can simply modify the existing Registration controller action to fit your needs.  I've done that on many occasions.

    Also, I've used it in Azure successfully, although you should have the Nuget package installed locally before publishing to Azure.  And you need to make sure the connection string is correct in case it's different from your application database connection.

  • ian@tiktaktoe.co.uk
    Posted By: goolag
    On: 11/15/2016 12:26:42 PM

    Hi

    Thanks - v1.0.53.580

    I put a sql profiler on the db but didnt see any statements for the delet, so not sure it's even getting that far?

    The error is: Invalid object name 'dbo.Profiles'.

       at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
       at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
       at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
       at System.Data.SqlClient.SqlDataReader.TryConsumeMetaData()
       at System.Data.SqlClient.SqlDataReader.get_MetaData()
       at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption)
       at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
       at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
       at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
       at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
       at System.Data.EntityClient.EntityCommandDefinition.ExecuteStoreCommands(EntityCommand entityCommand, CommandBehavior behavior)

    It's an inherited app, database schema as per below:

    Thanks for your help, appreciated

  • info@kingwilder.com
    Posted By: King Wilder
    On: 11/15/2016 1:15:56 PM
    @goolag - looking at your database, you don't have the Membership tables installed.  You must use the tables from the System.Web.Providers namespace.  The easiest way to get them installed in your application is by using my other NuGet package MvcInstaller.  Here's a link to the article/video for it.
  • info@kingwilder.com
    Posted By: King Wilder
    On: 11/15/2016 1:31:51 PM

    @goolag - this will not work for your database.  The Membership system already has an "Applications", and "Memberships" table, and so does your database.  So you have a few choices:

    1. Separate Membership database - create a new database for the Membership system.  This will create a new connection string just for your SecurityGuard membership system.  Make sure the SecurityGuard application gets this connection string.  This way you can keep your existing database as is without any changes or conflicts.
    2. Change the schema - you can add the membership system to your existing database, but you'll need to change the schema name on each of the tables.  So instead of prefixing each table with "dbo." it will begin with something like "sg." for SecurityGuard.  You can name it anything you want, but this way it will be considered separate.  It's not the method I would recommend though.

    I would go with the first option, creating a separate database for the membership system.

    Good luck.

  • pallavkumarjoshi@gmail.com
    Posted By: Pallav Joshi
    On: 8/28/2020 5:03:33 AM

    Hello ,

    I am using SecurityGuard.MVC4(1.0.10) in one of my application for memerhsip.I want to chnage "connection string" at runtime for membership and roles .how do i do that?

    Waiting for your response asap.

    Thanks,

    Pallav Joshi

 

User Name:
(Required)
Email:
(Required)