zoukankan      html  css  js  c++  java
  • 深入浅出Nintex——使用Call WebService来查询Item ID

    基本思路:调用lists web service (web Url/_vti_bin/lists.asmx)中的方法GetListItems。

    如下图所示:

    代码
    <?xml version="1.0" encoding="utf-8"?>
    <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Body>
    <GetListItems xmlns="http://schemas.microsoft.com/sharepoint/soap/">
    <listName>Report for Manager</listName>
    <viewName></viewName>
    <query>
    <Query>
    <Where>
    <Eq>
    <FieldRef Name="Employee_x0020_Name" />
    <Value Type="Text">{ItemProperty:User_x0020_Name}</Value>
    </Eq>
    </Where>
    </Query>
    </query>
    <viewFields>
    </viewFields>
    <rowLimit></rowLimit>
    <queryOptions xmlns:SOAPSDK9= "http://schemas.microsoft.com/sharepoint/soap/">
    <QueryOptions/>
    </queryOptions>
    <webID></webID>
    </GetListItems>
    </soap:Body>
    </soap:Envelope>
    代码
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <xsl:stylesheet version="1.0"
    xmlns:xsl
    ="http://www.w3.org/1999/XSL/Transform" xmlns:s="uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882"
    xmlns:dt
    ="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
    xmlns:rs
    ="urn:schemas-microsoft-com:rowset"
    xmlns:z
    ="#RowsetSchema"
    xmlns:hh
    ="http://schemas.microsoft.com/sharepoint/soap/">

    <xsl:template match="/">
    <xsl:value-of select="xml/hh:listitems/rs:data/z:row/@ows_ID"/>
    </xsl:template>
    </xsl:stylesheet>
  • 相关阅读:
    用智慧明辨之
    做一个成功的软件架构师需要哪些素质?
    如何成为一名优秀的产品经理
    项目管理中的冲突管理
    .Net 缓存依赖详解
    从程序制作到构架制作
    如何做好一名软件团队的领导者
    需求变更的代价
    页面缓存的实现
    项目风险盘点
  • 原文地址:https://www.cnblogs.com/mingle/p/Nintex_GetListItems.html
Copyright © 2011-2022 走看看