get_report.xml 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <SOAP-ENV:Envelope
  3. xmlns:SOAP-ENV='http://schemas.xmlsoap.org/soap/envelope/'
  4. xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
  5. SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
  6. xmlns:SOAP-ENC='http://schemas.xmlsoap.org/soap/encoding/'
  7. xmlns:xsd='http://www.w3.org/2001/XMLSchema'
  8. xmlns:xs="http://www.w3.org/2001/XMLSchema"
  9. xmlns:bus='http://developer.cognos.com/schemas/bibus/3/'
  10. xmlns:rns1='http://developer.cognos.com/schemas/reportService/1'>
  11. <SOAP-ENV:Header>
  12. <bus:biBusHeader xsi:type="bus:biBusHeader">
  13. <bus:CAM xsi:type="bus:CAM">
  14. <authenticityToken xsi:type="xsd:base64Binary">{{cam}}</authenticityToken>
  15. </bus:CAM>
  16. <bus:CAF xsi:type="bus:CAF">
  17. <contextID xsi:type="xsd:string">{{caf}}</contextID>
  18. </bus:CAF>
  19. <bus:hdrSession xsi:type="bus:hdrSession">
  20. <bus:formFieldVars SOAP-ENC:arrayType="bus:formFieldVar[]" xsi:type="SOAP-ENC:Array">
  21. <item xsi:type="bus:formFieldVar">
  22. <name xsi:type="xsd:string">_ContextBlockSize</name>
  23. <value xsi:type="xsd:string">1000000</value>
  24. </item>
  25. <item xsi:type="bus:formFieldVar">
  26. <name xsi:type="xsd:string">ignoreXHTMLStrict</name>
  27. <value xsi:type="xsd:string">true</value>
  28. </item>
  29. </bus:formFieldVars>
  30. </bus:hdrSession>
  31. <bus:userPreferenceVars SOAP-ENC:arrayType="bus:userPreferenceVar[]" xsi:type="SOAP-ENC:Array">
  32. <item>
  33. <bus:name xsi:type="xsd:string">productLocale</bus:name>
  34. <bus:value xsi:type="xsd:string">de</bus:value>
  35. </item>
  36. <item>
  37. <bus:name xsi:type="xsd:string">contentLocale</bus:name>
  38. <bus:value xsi:type="xsd:string">de-de</bus:value>
  39. </item>
  40. </bus:userPreferenceVars>
  41. <bus:dispatcherTransportVars xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:dispatcherTransportVar[]">
  42. <item xsi:type="bus:dispatcherTransportVar">
  43. <name xsi:type="xsd:string">rs</name>
  44. <value xsi:type="xsd:string">true</value>
  45. </item>
  46. </bus:dispatcherTransportVars>
  47. <bus:tracking
  48. xmlns:bus="http://developer.cognos.com/schemas/bibus/3/"
  49. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="bus:tracking">{{tracking}}</bus:tracking>
  50. </bus:biBusHeader>
  51. </SOAP-ENV:Header>
  52. <SOAP-ENV:Body>
  53. <rns1:run>
  54. <bus:objectPath xsi:type="bus:searchPathSingleObject">storeID(&quot;{{report.id}}&quot;)</bus:objectPath>
  55. <bus:parameterValues
  56. xmlns:bus='http://developer.cognos.com/schemas/bibus/3/'
  57. xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
  58. xmlns:SOAP-ENC='http://schemas.xmlsoap.org/soap/encoding/'
  59. SOAP-ENC:arrayType="bus:parameterValue[{{params|count}}]" xsi:type="SOAP-ENC:Array">
  60. {% for key, p in params.items() %}
  61. <item xsi:type="bus:parameterValue">
  62. <bus:name xsi:type="xs:string">{{key}}</bus:name>
  63. <bus:value xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:parmValueItem[{{p|count}}]">
  64. {% for use, display in p.items() %}
  65. <item xsi:type="bus:simpleParmValueItem">
  66. <bus:inclusive xsi:type="xs:boolean">true</bus:inclusive>
  67. <bus:display xsi:type="xs:string">{{display}}</bus:display>
  68. <bus:use xsi:type="xs:string">{{use}}</bus:use>
  69. </item>
  70. {% endfor %}
  71. </bus:value>
  72. </item>
  73. {% endfor %}
  74. </bus:parameterValues>
  75. <bus:options SOAP-ENC:arrayType="bus:option[]" xsi:type="SOAP-ENC:Array">
  76. <item xsi:type="bus:genericOptionAnyURI">
  77. <bus:name xsi:type="xsd:string">runOptionEnum#globalParameters</bus:name>
  78. <bus:value xsi:type="xsd:string">[]</bus:value>
  79. </item>
  80. <item xsi:type="bus:asynchOptionInt">
  81. <bus:name xsi:type="bus:asynchOptionEnum">primaryWaitThreshold</bus:name>
  82. <bus:value xsi:type="xsd:int">600</bus:value>
  83. </item>
  84. <item xsi:type="bus:asynchOptionInt">
  85. <bus:name xsi:type="bus:asynchOptionEnum">secondaryWaitThreshold</bus:name>
  86. <bus:value xsi:type="xsd:int">600</bus:value>
  87. </item>
  88. <item xsi:type="bus:runOptionStringArray">
  89. <bus:name xsi:type="bus:runOptionEnum">outputFormat</bus:name>
  90. <bus:value xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="xsd:string[1]">
  91. <item>{{format}}</item>
  92. </bus:value>
  93. </item>
  94. <item xsi:type="bus:asynchOptionEncoding">
  95. <bus:name xsi:type="bus:asynchOptionEnum">attachmentEncoding</bus:name>
  96. <bus:value xsi:type="bus:encodingEnum">MIME</bus:value>
  97. </item>
  98. <item xsi:type="bus:runOptionAnyURI">
  99. <bus:name xsi:type="bus:runOptionEnum">xslURL</bus:name>
  100. <bus:value xsi:type="xsd:string">V5html_viewer.xsl</bus:value>
  101. </item>
  102. <item xsi:type="bus:runOptionString">
  103. <bus:name xsi:type="bus:runOptionEnum">promptFormat</bus:name>
  104. <bus:value xsi:type="xsd:string">XHTMLFRGMT</bus:value>
  105. </item>
  106. <item xsi:type="bus:runOptionBoolean">
  107. <bus:name xsi:type="bus:runOptionEnum">prompt</bus:name>
  108. <bus:value xsi:type="xsd:boolean">{{prompt}}</bus:value>
  109. </item>
  110. <item xsi:type="bus:runOptionAnyURI">
  111. <bus:name xsi:type="bus:runOptionEnum">outputLocation</bus:name>
  112. <bus:value xsi:type="xsd:string">http://developer.cognos.com/ceba/constants/temporaryObjectLocationEnum#serverFileSystem</bus:value>
  113. </item>
  114. <item xsi:type="bus:runOptionData">
  115. <bus:name xsi:type="bus:runOptionEnum">data</bus:name>
  116. <bus:value xsi:type="bus:dataEnum">runWithAllData</bus:value>
  117. </item>
  118. <item xsi:type="bus:genericOptionBoolean">
  119. <bus:name xsi:type="xsd:string">http://developer.cognos.com/ceba/constants/systemOptionEnum#accessibilityFeatures</bus:name>
  120. <bus:value xsi:type="xsd:boolean">false</bus:value>
  121. </item>
  122. <item xsi:type="bus:genericOptionBoolean">
  123. <bus:name xsi:type="xsd:string">http://developer.cognos.com/ceba/constants/biDirectionalOptionEnum#biDirectionalFeaturesEnabled</bus:name>
  124. <bus:value xsi:type="xsd:boolean">false</bus:value>
  125. </item>
  126. <item xsi:type="bus:runOptionBoolean">
  127. <bus:name xsi:type="bus:runOptionEnum">returnOutputWhenAvailable</bus:name>
  128. <bus:value xsi:type="xsd:boolean">true</bus:value>
  129. </item>
  130. <item xsi:type="bus:runOptionNameValueArray">
  131. <bus:name xsi:type="bus:runOptionEnum">xslParameters</bus:name>
  132. <bus:value xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:nameValue[]">
  133. <item xsi:type="bus:nameValue">
  134. <name xsi:type="xsd:string">CVGateway</name>
  135. <value xsi:type="xsd:string">../v1/disp</value>
  136. </item>
  137. <item xsi:type="bus:nameValue">
  138. <name xsi:type="xsd:string">renderIntermediateXML</name>
  139. <value xsi:type="xsd:string">false</value>
  140. </item>
  141. <item xsi:type="bus:nameValue">
  142. <name xsi:type="xsd:string">renderEnvironment</name>
  143. <value xsi:type="xsd:string">false</value>
  144. </item>
  145. </bus:value>
  146. </item>
  147. <item xsi:type="bus:genericOptionBoolean">
  148. <bus:name xsi:type="xsd:string">http://developer.cognos.com/ceba/constants/runOptionEnum#interactive</bus:name>
  149. <bus:value xsi:type="xsd:boolean">true</bus:value>
  150. </item>
  151. <item xsi:type="bus:genericOptionAnyURI">
  152. <bus:name xsi:type="xsd:string">http://developer.cognos.com/ceba/constants/runOptionEnum#promptXslUrl</bus:name>
  153. <bus:value xsi:type="xsd:string">V5html_viewer.xsl</bus:value>
  154. </item>
  155. </bus:options>
  156. </rns1:run>
  157. </SOAP-ENV:Body>
  158. </SOAP-ENV:Envelope>