深入浅出Nintex——判断当前用户的角色

基本思路:使用SharePoint提供的WebService来获取流程发起人的角色(Web Url/_vti_bin/usergroup.asmx?WSDL)。 

1 调用usergroup web Service中的方法GetGroupCollectionFromUser,传入参数流程发起人的AD账号字符串,输出XML文件。

2 使用XSLT解析XML文件,得到流程发起人的role集合。

图示:

执行过程详解

使用Send Notification查看输出地XML文件

代码
 
   
< xml >
< GetGroupCollectionFromUser xmlns ="http://schemas.microsoft.com/sharepoint/soap/directory/" >
< Groups >
< Group ID ="4" Name ="Absence Requests Owners" Description ="Use this group to give people full control permissions to the SharePoint site: Absence Requests" OwnerID ="4" OwnerIsUser ="False" />
</ Groups >
</ GetGroupCollectionFromUser >
</ xml >

 

XSLT的详细代码如下所示

代码
 
   
< xsl:stylesheet version ="1.0" xmlns:xsl ="http://www.w3.org/1999/XSL/Transform" xmlns:h ="http://schemas.microsoft.com/sharepoint/soap/directory/" >
< xsl:template match ="/" >
< xsl:for-each select ="xml/h:GetGroupCollectionFromUser/h:Groups/h:Group" >
< xsl:value-of select ="@Name" /> ; </ xsl:for-each >
</ xsl:template >
</ xsl:stylesheet >

解析role集合使用“;”隔开每个数组元素并输出的字符串如下所示: 

Absence Requests Owners;

如果发起人用户所属多个用户,则如下所示:Absence Requests Owners;HR;Payroll;

流程文件下载:download

转载于:https://www.cnblogs.com/mingle/archive/2010/11/27/Nintex_GetGroupCollectionFromUser.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值