1234567891011121314151617181920212223242526272829303132333435363738 |
- <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">
- <bus:tracking xsi:type="bus:tracking">
- {{=it.conversationContext}}
- </bus:tracking>
- <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:getPromptValues>
- <bus:conversation xsi:type="bus:asynchRequest">
- {{=it.conversation}}
- </bus:conversation>
- {{=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: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:getPromptValues>
- </SOAP-ENV:Body>
- </SOAP-ENV:Envelope>
|