码迷,mamicode.com
首页 > 其他好文 > 详细

设置TDSAuthenticationManager属性对DataSnap服务端的接口授权

时间:2015-04-08 21:14:10      阅读:366      评论:0      收藏:0      [点我收藏+]

标签:

先实现TDSAuthenticationManager的OnUserAuthticate事件对客户端认证:

procedure TServerContainer1.DSAuthenticationManager1UserAuthenticate(
  Sender: TObject; const Protocol, Context, User, Password: string;
  var valid: Boolean; UserRoles: TStrings);
begin
  { TODO : Validate the client user and password.
    If role-based authorization is needed, add role names to the UserRoles parameter  }

  if (User = Admin) and (Password = 123456) then
  begin
    valid := True ;
    UserRoles.Add(AdminGroup); //加入到AdminGroup组别
  end else
  if (User = Guest) and (Password = 123456) then
  begin
    valid := True ;
    UserRoles.Add(GuestGroup); //加入到GuestGroup组别
  end else
  valid := False ;
end;

现在设置接口授权,只要对TDSAuthenticationManager的Roles属性进行设置即可:

技术分享

技术分享

技术分享

我们分别对自带的2个方法分配了权限,设置完成编译即可!

 

编译环境:Delphi XE7

加入DataSnap高级交流群439992010,即可下载本DEMO

 

设置TDSAuthenticationManager属性对DataSnap服务端的接口授权

标签:

原文地址:http://www.cnblogs.com/Kim53622744/p/4403563.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!