如何仅查询SERVICE-NOW中的记录数

时间:2013-08-28 16:04:47

标签: python web-services soap suds servicenow

我想查询只获取记录数而不是所有对象。

我这样做:

    """<?xml version="1.0" encoding="UTF-8"?>
    <SOAP-ENV:Envelope xmlns:ns0="http://www.service-now.com/incident" 
        xmlns:ns1="http://schemas.xmlsoap.org/soap/envelope/" 
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
        xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
    <SOAP-ENV:Header/>
        <ns1:Body>
            <ns0:getRecords>
                <ns0:__limit>100</ns0:__limit>
            </ns0:getRecords>
        </ns1:Body>
    </SOAP-ENV:Envelope>

但它返回所有限制100的对象并保持缓慢,为了获得更好的性能,我认为如果只返回记录数量就会变得更好。

有什么办法吗?

2 个答案:

答案 0 :(得分:1)

有一个名为Aggregate Web Service的插件,允许您使用聚合函数(例如SUM,COUNT,AVG,...)进行查询。 有关更多信息,请参阅以下链接: http://wiki.servicenow.com/index.php?title=Direct_Web_Service_API_Functions#aggregate

以下是使用COUNT聚合函数的示例SOAP请求:

<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/encoding/"
   xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
   xmlns:m="http://www.service-now.com"
   xmlns:tns="http://www.service-now.com/map"
   xmlns:xsd="http://www.w3.org/2001/XMLSchema"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <SOAP-ENV:Body>
        <aggregate>
            <COUNT>number</COUNT>
            <active>true</active>
        </aggregate>
    </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

答案 1 :(得分:-1)

您也可以使用没有查询过滤器的getKeys方法,它将返回所有记录,只需从响应中获取count属性。