12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:bus="http://developer.cognos.com/schemas/bibus/3/" xmlns:rns1="http://developer.cognos.com/schemas/reportService/1">
- <SOAP-ENV:Header>
- <bus:biBusHeader xsi:type="bus:biBusHeader">
- {{? it.routingServerGroup }}
- <bus:routing xsi:type="bus:routingInfo">
- <routingServerGroup xsi:type="xsd:string">{{=it.routingServerGroup}}</routingServerGroup>
- </bus:routing>
- {{?}}
- <bus:CAF xsi:type="bus:CAF">
- <contextID xsi:type="xsd:string">{{=it.cafContextId}}</contextID>
- </bus:CAF>
- </bus:biBusHeader>
- </SOAP-ENV:Header>
- <SOAP-ENV:Body>
- <rns1:getParameters>
- <bus:objectPath xsi:type="bus:searchPathSingleObject">{{=it.objectPath}}</bus:objectPath>
- {{=it.parameterValues}}
- <bus:options SOAP-ENC:arrayType="bus:option[]" xsi:type="SOAP-ENC:Array">
- <item xsi:type="bus:asynchOptionInt">
- <bus:name xsi:type="bus:asynchOptionEnum">primaryWaitThreshold</bus:name>
- <bus:value xsi:type="xsd:int">0</bus:value>
- </item>
- <item xsi:type="bus:asynchOptionInt">
- <bus:name xsi:type="bus:asynchOptionEnum">secondaryWaitThreshold</bus:name>
- <bus:value xsi:type="xsd:int">0</bus:value>
- </item>
- <item xsi:type="bus:runOptionBoolean">
- <bus:name xsi:type="bus:runOptionEnum">layoutParameters</bus:name>
- <bus:value xsi:type="xsd:boolean">true</bus:value>
- </item>
- <item xsi:type="bus:runOptionBoolean">
- <bus:name xsi:type="bus:runOptionEnum">prompt</bus:name>
- <bus:value xsi:type="xsd:boolean">false</bus:value>
- </item>
- <item xsi:type="bus:runOptionAnyURI">
- <bus:name xsi:type="bus:runOptionEnum">xslURL</bus:name>
- <bus:value xsi:type="xsd:string">null.xsl</bus:value>
- </item>
- <item xsi:type="bus:asynchOptionEncoding">
- <bus:name xsi:type="bus:asynchOptionEnum">attachmentEncoding</bus:name>
- <bus:value xsi:type="bus:encodingEnum">base64</bus:value>
- </item>
- </bus:options>
- </rns1:getParameters>
- </SOAP-ENV:Body>
- </SOAP-ENV:Envelope>
|