1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- BI and PM: CM
- (C) Copyright IBM Corp. 2009
- US Government Users Restricted Rights - Use, duplication or disclosure
- restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <requests xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
- <request name="repositoryRulesQuery">
- <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bus="http://developer.cognos.com/schemas/bibus/3/">
- <SOAP-ENV:Header>${HEADER}</SOAP-ENV:Header>
- <SOAP-ENV:Body>
- <cm1:queryMultipleCache xmlns:cm1="http://developer.cognos.com/schemas/contentManagerService/1" xmlns:cm="http://developer.cognos.com/schemas/bibus/3/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
- <requests xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:queryRequest[]">
- <item xsi:type="bus:queryRequest">
- <search>${SEARCHPATH}</search>
- <properties>${PROPERTIES}</properties>
- <options>${OPTIONS}</options>
- <sortBy>${SORTBY}</sortBy>
- </item>
- </requests>
- <options xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:queryMultipleOptions[]">
- <cacheValidator xsi:type="xsd:string">${QUERY_VALIDATOR}</cacheValidator>
- </options>
- </cm1:queryMultipleCache>
- </SOAP-ENV:Body>
- </SOAP-ENV:Envelope>
- </request>
- <request name="repositoryRulesSignonQuery">
- <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bus="http://developer.cognos.com/schemas/bibus/3/">
- <SOAP-ENV:Header>${HEADER}</SOAP-ENV:Header>
- <SOAP-ENV:Body>
- <cm1:queryMultipleCache xmlns:cm1="http://developer.cognos.com/schemas/contentManagerService/1" xmlns:cm="http://developer.cognos.com/schemas/bibus/3/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
- <requests xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:queryRequest[]">
- <item xsi:type="bus:queryRequest">
- <search>${DATASOURCE_SEARCHPATH}</search>
- <properties>${PROPERTIES}</properties>
- <options>${OPTIONS}</options>
- <sortBy>${SORTBY}</sortBy>
- </item>
- </requests>
- <options xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:queryMultipleOptions[]">
- <cacheValidator xsi:type="xsd:string">${DATASOURCE_VALIDATOR}</cacheValidator>
- </options>
- </cm1:queryMultipleCache>
- </SOAP-ENV:Body>
- </SOAP-ENV:Envelope>
- </request>
- </requests>
|