Click here to Skip to main content
15,867,686 members
Articles / Web Development / HTML

Cool Privilege Control System Part 2 -- asp.net MVC with WCF

Rate me:
Please Sign up or sign in to vote.
5.00/5 (8 votes)
29 Feb 2016Ms-PL12 min read 27.5K   1K   23   2
Privilege Control System based on MVC and WCF.

Cool Privilege Control System Part 1 -- asp.net MVC

Cool Privilege Control System Part 2 -- asp.net MVC with WCF

Introduction

Cool Privilege Control is a standalone access right system. It resolves many complex access right problems. such as user with different access level problem, unlimited function hierarchy and easily add function type. And also contains many common mechanisms, such as support multilingual environment, support three type logs(error log, trace log, audit log). It helps you easily and quickly create asp.net mvc demo project with powerful privilege. For details please see my last artical. In here I want to take some times to thanks who vote 5 and ask questions. Thanks again. Today I want to go more deeply into system extension. What is this and how? Please follow my mind.

Background

WCF which full name is Windows Communication Foundation. It is a framework for building service-oriented applications. I known some smart guys had guessed. Yeah. you got it! In this artical I will seperate Cool Privilege Control System into two different part. One is MVC project which is responsible for UI maintenance (Send request to Service/Respond received from Service) , the other is WCF project(Hosted by IIS) which is responsible for executing operations (Receive and perform request from caller/Send response to caller). Let's go ahead I will to How and Why use WCF to perform system extension.

Design Pattern

First of all, I want to describe the mvc design pattern. Yeah. MVC design pattern. I known many guys have more ideas and experiences than me. I don't want to fool who go further than me. But I think the advanced is come from the cons. of original one and new requirements.

Figure 3.1 MVC-Diagram.gif

Image 1

There are many mvc image in google search engine. Which help me to reduce many times to draw the diagram. Thanks Google.
MVC composed of Controller, View and Model. MVC design pattern can be used in not only web application but also client application(P.S. I prefer use MVVM design pattern in client application development. I mean WPF application). But Cool Privilege Control is a web application, so I will focus on web application MVC. A web request send to the app server. A url router receive the request and select suitable controller to perform the request(P.S. I ignored many steps before url router received the reuqest. such as HttpHandler. Because my topic is not to overwrite MVC design pattern.). Controller is an intermedialy between model and view. It handles the requests, call model methods, bind data and return views. Model contains db operations, business logic. View is a presentation layer, present layout with data.

MVC Pros and Cons

  Pros:  
  1. Easy maintenance. Designer focus on design UI and Developer focus on business logic. That said designer no longer care about the business logic and db operation, on the other hand developer need not care about the UI layer. (P.S. You know, In real case, sometimes we are all in one.).
  2. Easily write unit test for business logic.
  3. Big advantage is remove web form's terrible post back logic which contains huge viewstate.
  Cons:  
  1. Cannot share business logic to different UI layer at the same time. such as WPF, Angular js website and other application written in different language. Which is the pros of the SO application(service-oriented application).
  2. Without WS/WCF, in Asp.net mvc project, All complied dll have to be stored in one server. If the hacker crack the server, he would find easy way to access db and do terriable things whatever you never think before.
  3. Without WS/WCF, if you design asp.net mvc application, you use either entity framework to perform db operation or enterprice liberary to perform db operation, Model in MVC is aware the db scheme. I thinks it is dangerous for hacker know about these.

Note: Above pros and cons is my personal opinions. If there are anything wrong. Please feel free and contact me.

Figure 3.2 MVC without and with WCF service flow

Image 2

As pervious diagram discribed, after Controller received the request from URL Router, Controller will call wcf service instead of Model modification method. Then WCF service receive request and call Model modification method. Model perform the action and return View Model to the caller. Controller receive the responded View Model and bind to the View.

MVC With WCF Pros and Cons

 

  Pros:  
  1. More Security. You can set at least one firewall before the service server and limit the caller. (i.e. specify one or two server can call the service server)
  2. Both View and Controller are not aware the Model. They are aware View Model only. Even if the hacker crack the web server which can be visited from outside, they don't know the database scheme and business logic.
  3. Support multi-UI layer.
    Figure 3.3 Support Multi-UI
    Image 3
  Cons:  
  1. Because the Web application and WCF application have not been hold by the same server. The connection between the web application and the WCF application maybe via internal network or internet. It will have network issue. The bandwidth determine the service response time. However, throughout many years development experiences, this issue does not have any impact. maybe one or two second delay. (P.S. Currently, Many new hardware technology reduce the risk. such as SSD,5G and so on.). Furthermore, you can use asynchronous method to prevent the main thread suspension and continute remaining process that help you to reduce the waiting time.
  2. It is easy to know, if you are developing a small project, developing and maintain too many tiers, It will increase the project complexity and maintenance time. On the other hand, If you are developing large system and contains many modules as I met, it will help you to recognize the whole view of system and assign different tier/part to corresponding colleauge.

After previous sections, as smart as you are, I guess you would like to use WCF to extend yours' products. Below sequence diagram illustrate the flow about "Get HR Info." in ASP.NET MVC, I hope this diagram give you some ideas when you design your complex system with cool privilege control.

Figure 3.4 Cool Privilege Control With WCF sequence diagram

Image 4

Description

 

1. Client user sent a request to get Employee Basic Info from HR Module.
1.1 HR Module redirect browser to login page.
1.1.1 Reponse login page to client.
2. Client user input login name and password, click submit button.
2.1 MVC controller invoke WCF authenticate method.
2.1.1 WCF execute validation method.
2.1.2 WCF Service issue token or return valication error to the caller.
2.1.3 Client side cache token for advance process.
3. Client user sent a request with token to get HR Info.
3.1 HR Module invoke WCF service with function key and token in order to check access right.
3.1.1 WCF execute validation method.
3.1.2 If it is successful, return success to HR Module.
3.1.2.1 HR Module return HR Info to client user.
3.1.3 If it is fail, return fail to HR Module.
3.1.3.1 HR Module return fail message to client user.

There was no doubting that you can replace the UI to different technology. I just give you an example, you can control the flow by yourself via call WCF service.

Settings

For MSSQL/MYSQL database user, I publish two versions to fulfill your case. If you use MSSQL as default, please download “CoolPrivilegeControl.Community.WCF.MSSQL.zip”, otherwise, please download “CoolPrivilegeControl.Community.WCF.MYSQL.zip”. And I list my development environment for your reference.

1. Microsoft Visual Studio 2013

2. .NET Framework 4.5.1

3. MSSQL Server 2012 or MYSQL 5.6.26

4. MVC 5.2.3

5. Entity Framwork 6.0

Mandatory Step: After opened solution, please right click solution and select “Enable NuGet Package Restore”.

Figure 4.0 Enable NuGet Package Restore

Image 5

Mandatory Step: Please right click solution and click "Properties", set projects "CoolPrivilegeControl" and "CoolPrivilegeServiceHost" as startup projects.

Image 6

4.1 EDIT WEB.CONFIG FILE

4.1.1 For MYSQL user

Figure 4.1.1.1 Hosting Service web.config(MySql with WCF Version)

Image 7

Please pay attention to the appSettings node, change DBSource/DBName/DBPort/LoginName/LoginPWD value based on mysql server settings.

Property Description
DBSource: IP address of the server host
DBName: Database name
DBPort: Server TCP/IP port
LoginName: DB user name
LoginPWD: DB user password
IsDebug: If you set true, More details tracer info. will be shown.
Figure 4.1.1.2 Asp.net MVC web.config(MySql with WCF Version)

Image 8

 

Property Description
IsDebug: If you set true, whatever exception will be show on the page, and vice versa.

4.1.2 For MSSQL user

Figure 4.1.2.1 Hosting Service web.config(MSSql with WCF Version)

Image 9

As the same as mysql user, change DBSource/DBName/LoginName/LoginPWD value based on mssql server settings, except DBPort. In mssql server, the port number can be specified after the server name or server ip address with comma. E.g.

WELLSCHEUNG\MSSQLSERVER2012,49287 49287 is the port.

 

Property Description
DBSource: IP address of the server host
With Port Format: server name or ip address,port
DBName: Database name
LoginName: DB user name
LoginPWD: DB user password
IsDebug: If you set true, More details tracer info. will be shown.

For UI web.config settings, Please refer to above section 4.1.1.2

4.1.3 Enable or Disable DB initializer

That is the feature of entity framework code first design pattern. And it is the most useful I ever heard before. When you executed the project, if database instance did not exist in the server and the flag is enabled, entity framework mechanism would help you to initialize it. For more information please refer to MSDN(https://msdn.microsoft.com/en-us/data/ee712907). If you do not want entity framework to initial database and cover your database, you can set the attribute named “disableDatabaseInitialization” on context element to true.

Figure 4.1.3 disableDatabaseInitialization flag

Image 10

Alternative, you can initialize DB via sql script or database backup. I prepare sql script for mysql user to execute and database backup for mssql user to restore.

MySql Script

MSSql Database Backup

4.2 Edit Log4Net.config file

We used log4net to help us record trace info and error info. About how to use log4net, I though most of you had more experiences than me, so I do not want to spend many times on repeat. I only specified that all functions in the system enable trace log as default (i.e. Include both input and output information). That is an easy way to trace error even if we cannot run visual studio debug when onsite support. In WCF version, we can config two log4net.config. The one is for asp.net mvc, the other is for wcf service.

It is easy to turn off or change another type of info you wanted to capture. There are seven levels type which is pre-set in log4net.

The following levels are defined in order of increasing priority:

  • ALL
  • DEBUG
  • INFO
  • WARN
  • ERROR
  • FATAL
  • OFF

You can replace the value of the attribute named “level” to what you wanted in log4net.config.

Figure 4.2.1 Log4Net.config

Image 11

SysLog: Log all info of the system.
ErrorLog: Only log exception of the system.

In mvc project, previous setting is a global setting. If you want to disable one or any functions to log information automated. You can mark the function you wanted as “[UnTracerAction]” function. After you do like that all info will not be log.

Figure 4.2.2 UnTracerAction Function
ASP.NET
[HttpPost]
[ValidateAntiForgeryToken]
[UnTracerAction]
public ActionResult Create(FunctionVM functionVM)
{
    //Message Box Title -- When Error occured, Message Box would be showed.
    string str_MsgBoxTitle = MultilingualHelper.GetStringFromResource(languageKey, "FManage_Create");

If you only want to log the main thread enter the function whether or not, except the detail information input or output. You can mark the function you wanted as “[TracerActionWithDetails(EnableTracer=false)]” function.

ASP.NET
[HttpPost]
[ValidateAntiForgeryToken]
[TracerActionWithDetails(EnableTracer=false)]
public ActionResult Create(FunctionVM functionVM)
{
    //Message Box Title -- When Error occured, Message Box would be showed.
    string str_MsgBoxTitle = MultilingualHelper.GetStringFromResource(languageKey, "FManage_Create");
Figure 4.2.4 The log of tracer action without details

Image 12

Figure 4.2.5 The log of tracer action with details

Image 13

After previously settings. System is ready for your use. Press “F5” in Visual Studio and double check if it has any compile errors or not. If any error came out, you can send the error to me for inspection or search solution in google by yourself.

Using the code

In coming section, I want to illustrate how to call wcf service in Cool Privilege Control.

UI Operation

Here is a full view of method Index in FTManageController. which will be called when user enter selection criteria and click search button in Function Type Management.

ASP.NET
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Index(FunctionTypeVM selectionCriteria)
{
    //Message Box Title -- When Error occured, Message Box would be showed.
    string str_MsgBoxTitle = MultilingualHelper.GetStringFromResource(languageKey, "FTManage");

    //Declare output variable(recordCount && entityList_Result)
    int recordCount = 0;

    List<FunctionTypeVM> entityList_Result = new List<FunctionTypeVM>();

    //Declare wcf output object;
    FTSerListResult entity_FTSerListResult = null;

    //Instantiate WebCommonHelper in order to call wcf service
    WebCommonHelper webCommonHelper = new WebCommonHelper();
    webCommonHelper.CallWCFHelper<IFunTypeMgtSer>(this, this.HttpContext, postOffice.FunTypeMgtSerPath, (entity_IFunTypeMgtSer, entity_WCFSessionVM) =>
{
    entity_FTSerListResult = entity_IFunTypeMgtSer.GetListWithPaging(entity_WCFSessionVM, selectionCriteria, 1, PageSize, null, null, CustomFilter(selectionCriteria));
});

    //Assign data to local variable
    if (entity_FTSerListResult != null)
    {
        recordCount = entity_FTSerListResult.Int_TotalRecordCount;
        entityList_Result = entity_FTSerListResult.EntityList_FunctionTypeVM;
    }

    //Set paging bar info (Total Record Count and Page Index)
    StorePageInfo(recordCount, 1);

    //Cache selection criteria
    StoreSelectionCriteria<FunctionTypeVM>(selectionCriteria);

    //Pass Error To UI
    string strError = "";
    if (entity_FTSerListResult.StrList_Error.Count() > 0)
        strError = string.Join("<br/>", entity_FTSerListResult.StrList_Error.ToArray());

    //Fail
    if (entity_FTSerListResult.StrList_Error.Count > 0)
    {
        MsgInfo errorMsgInfo = new MsgInfo();
        errorMsgInfo.MsgTitle = str_MsgBoxTitle;
        errorMsgInfo.MsgDesc = strError;
        errorMsgInfo.MsgType = MessageType.ValidationError;
        ViewBag.ActionMessage = errorMsgInfo;
    }

    //Success
    return View(entityList_Result);
}

Step by step code spec

  1. Set message box title.
    ASP.NET
    //Message Box Title -- When Error occured, Message Box would be showed.
    string str_MsgBoxTitle = MultilingualHelper.GetStringFromResource(languageKey, "FTManage");
    
  2. Declare variables recordCount and entityList_Result, which used to receive total record count and Function Type list after service call.
    ASP.NET
    //Declare output variable(recordCount && entityList_Result)
    int recordCount = 0;
    List<FunctionTypeVM> entityList_Result = new List<FunctionTypeVM>();
    
  3. Declare WCF output object
    ASP.NET
    //Declare wcf output object;
    FTSerListResult entity_FTSerListResult = null;
    
  4. Instantiate WebCommonHelper and call service.
    ASP.NET
        //Instantiate WebCommonHelper in order to call wcf service
        WebCommonHelper webCommonHelper = new WebCommonHelper();
        webCommonHelper.CallWCFHelper<IFunTypeMgtSer>(this, this.HttpContext, postOffice.FunTypeMgtSerPath, (entity_IFunTypeMgtSer, entity_WCFSessionVM) =>
        {
            entity_FTSerListResult = entity_IFunTypeMgtSer.GetListWithPaging(entity_WCFSessionVM, selectionCriteria, 1, PageSize, null, null, CustomFilter(selectionCriteria));
    });
  5. Assign data to local variableS
    ASP.NET
    //Assign data to local variable
    if (entity_FTSerListResult != null)
    {
        recordCount = entity_FTSerListResult.Int_TotalRecordCount;
        entityList_Result = entity_FTSerListResult.EntityList_FunctionTypeVM;
    }
    
  6. Cache paging info in order to set paging bar.
    ASP.NET
    //Set paging bar info (Total Record Count and Page Index)
    StorePageInfo(recordCount, 1);
    
  7. Cache selection criteria.
    ASP.NET
    //Cache selection criteria
    StoreSelectionCriteria<FunctionTypeVM>(selectionCriteria);
    
  8. Return error info to UI if error occured or bind entity list to the view.
    ASP.NET
    //Pass Error To UI
    string strError = "";
    if (entity_FTSerListResult.StrList_Error.Count() > 0)
        strError = string.Join("<br/>", entity_FTSerListResult.StrList_Error.ToArray());
    
    //Fail
    if (entity_FTSerListResult.StrList_Error.Count > 0)
    {
        MsgInfo errorMsgInfo = new MsgInfo();
        errorMsgInfo.MsgTitle = str_MsgBoxTitle;
        errorMsgInfo.MsgDesc = strError;
        errorMsgInfo.MsgType = MessageType.ValidationError;
        ViewBag.ActionMessage = errorMsgInfo;
    }
    
    //Success
    return View(entityList_Result);
    

Service Operation

In above code snip, I illustrated the operation of UI controller. In blew code snip, I will show you the process after wcf received a call.

Here is a full view of wcf method called by above controller

ASP.NET
public FTSerListResult GetListWithPaging(WCFSessionVM entity_WCFSessionVM, FunctionTypeVM entity_SearchCriteria, int int_CurrentPage, int int_PageSize, string str_SortColumn, string str_SortDir, List<string> str_CustomFilter)
{
    try
    {
        //Restore Server Session by token
        RetrieveServerSideSession(entity_WCFSessionVM);

        //Flag Success or Fail
        bool ret = false;

        //Define error list
        List<string> strList_Error = new List<string>();

        //Instantiate  FTSerListResult
        FTSerListResult returnResult = new FTSerListResult();

        CoolPrivilegeControlContext dbContext = CoolPrivilegeControlContext.CreateContext();

        FunctionTypeRespository entityRepos_FT = new FunctionTypeRespository(dbContext, entity_ServerSideSession.ID);

        #region [ Check Privilege ]
        ret = CheckAccPrivilege(entity_ServerSideSession.ID, entity_WCFSessionVM.RequestFunKey, entity_WCFSessionVM.RequestFunTypeKey, ref strList_Error);
        #endregion

        //Initialize FTSerListResult instance 
        returnResult.StrList_Error = strList_Error;
        returnResult.Int_TotalRecordCount = 0;
        returnResult.EntityList_FunctionTypeVM = new List<FunctionTypeVM>();

        //Success
        if (ret)
        {
            int recordCount = 0;

            List<FunctionTypeVM> vmList = entityRepos_FT.GetEntityListByPage(entity_SearchCriteria, int_CurrentPage, int_PageSize, str_SortColumn, str_SortDir, out recordCount, str_CustomFilter);

            //Assign data to FTSerListResult instance 
            returnResult.EntityList_FunctionTypeVM = vmList;
            returnResult.Int_TotalRecordCount = recordCount;
        }

        return returnResult;
    }
    catch (Exception ex)
    {
        throw new FaultException<WCFErrorContract>(new WCFErrorContract(ex), ex.Message);
    }
}

Step by step code spec

  1. Restore wcf session by token
    ASP.NET
    //Restore Server Session by token
    RetrieveServerSideSession(entity_WCFSessionVM);
    
  2. Define a flag and error list
    ASP.NET
    //Flag Success or Fail
    bool ret = false;
    //Define error list
    List<string> strList_Error = new List<string>();
    
  3. Instantiate FTSerListResult object which is used to reply the request.
    ASP.NET
    //Instantiate  FTSerListResult
    FTSerListResult returnResult = new FTSerListResult();
    
  4. Instantiate dbcontext object and function type respository that contains data access logic and is used to get data.
    ASP.NET
    CoolPrivilegeControlContext dbContext = CoolPrivilegeControlContext.CreateContext();
    
    FunctionTypeRespository entityRepos_FT = new FunctionTypeRespository(dbContext, entity_ServerSideSession.ID);
    
  5. Check Privilege based on Function Key, Function Type Key and current user id.
    ASP.NET
    #region [ Check Privilege ]
    ret = CheckAccPrivilege(entity_ServerSideSession.ID, entity_WCFSessionVM.RequestFunKey, entity_WCFSessionVM.RequestFunTypeKey, ref strList_Error);
    #endregion
    
  6. Initialize FTSerListResult instance
    ASP.NET
    //Initialize FTSerListResult instance 
    returnResult.StrList_Error = strList_Error;
    returnResult.Int_TotalRecordCount = 0;
    returnResult.EntityList_FunctionTypeVM = new List<FunctionTypeVM>();
    
  7. Get data from service and set it to the output object
    ASP.NET
    //Success
    if (ret)
    {
        int recordCount = 0;
    
        List<FunctionTypeVM> vmList = entityRepos_FT.GetEntityListByPage(entity_SearchCriteria, int_CurrentPage, int_PageSize, str_SortColumn, str_SortDir, out recordCount, str_CustomFilter);
    
        //Assign data to FTSerListResult instance 
        returnResult.EntityList_FunctionTypeVM = vmList;
        returnResult.Int_TotalRecordCount = recordCount;
    }
    return returnResult;
    

After previous recipes, assume you have basic knowledge of Cool Privilege Control. And it is hard for me to decribe all functions in the system. you can trace the program via set debug point. If you have any question about the project or find any bugs, feel free and contact me. I hope all of you can get ideas from my project which make our's world more and more beautiful.

Test-driven development

Cool Privilege Control System is using the test-driven development (TDD) approach. For many companys, TDD is a mandatory approach in repetition development cycle. Cool Privilege Control System contains 40 test cases in all Controllers, you can easily test all functions by clicking "Run All" in Test Explorer. Certainly, you can add new test case or add new conditions into the orignial test case based on your requriements. Cool Privilege Control System uses Xunit and Mock. Xunit is a test framework inject into Visual Studio, as the same as MSTest and Nunit. For more infos, you can visit the official site.

Figure 6.0.1 Test Explorer

Image 14

History

2016-02-21 Initial publication

2016-03-01 Add Testing Project

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)


Written By
Software Developer (Senior)
United States United States
ASP.NET Developer 3.5(Microsoft® Certified Professional Developer)
.NET Framework 3.5, ASP.NET Applications(Microsoft® Certified Technology Specialist)

Comments and Discussions

 
QuestionThe MSSQL sript link is invalid Pin
Member 124722078-Aug-17 18:05
Member 124722078-Aug-17 18:05 
QuestionWPF - Can you apply this Pin
Patrick Blackman24-Feb-16 4:26
professionalPatrick Blackman24-Feb-16 4:26 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.