深入淺出Nintex 獲得某群組的使用者集合

2022-01-31 01:45:21 字數 2191 閱讀 9906

基本原理:使用sharepoint提供的webservice getusercollectionfromgroup

,根據指定的群組名稱來獲取群組中的使用者集合。

處理過程:

輸出的xml片段為

xslt片段為:

**

<

xsl:stylesheet

version

="1.0"

xmlns:xsl

=""xmlns:h

="">

<

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

>

輸出地結果為:

lui, mingle(microsoft);mingle, lu(microsoft);

如果xslt使用如下

<

xsl:stylesheet

version

="1.0"

xmlns:xsl

=""xmlns:h

="">

<

xsl:template

match

="/"

>

<

xsl:value-of

select

="xml/h:getusercollectionfromgroup/h:users/h:user/@name"

/>

xsl:template

>

xsl:stylesheet

>

則輸出結果為xml元素user的第一條記錄:

lui, mingle(microsoft)

**

<

xml>

<

getusercollectionfromgroup

xmlns

="">

<

users

>

<

user

id="14"

sid="s-1-5-21-1178368992-402679808-390482200-577565"

name

="lui, mingle(microsoft)"

loginname

="microsoft\00168"

email

="[email protected]"

notes

=""issiteadmin

="true"

isdomaingroup

="false"

/>

<

user

id="10"

sid="s-1-5-21-1178368992-402679808-390482200-423316"

name

="mingle.lu(microsoft)"

loginname

="microsoft\00169"

email

="[email protected]"

notes

=""issiteadmin

="true"

isdomaingroup

="false"

/>

users

>

getusercollectionfromgroup

>

xml>

深入淺出sizeof

int佔 位元組,short佔 位元組 1.0 回答下列問題 答案在文章末尾 1.sizeof char 2.sizeof a 3.sizeof a 4.strlen a 如果你答對了全部四道題,那麼你可以不用細看下面關於sizeof的論述。如果你答錯了部分題目,那麼就跟著我來一起 關於sizeof...

深入淺出ShellExecute

ipconfig c log.txt應如何處理?二樓的朋友,開啟拔號網路這樣 shellexecute null,open c windows rundll32.exe shell32.dll,control rundll c windows system telephon.cpl null,sw ...

深入淺出ShellExecute

深入淺出shellexecute譯者 徐景周 原作 nishant s q 如何開啟乙個應用程式?shellexecute this m hwnd,open calc.exe sw show 或shellexecute this m hwnd,open notepad.exe c mylog.log...