瀏覽代碼

C11-Export und Import

- Import funktioniert nicht... Serverfehler
Global Cube 2 年之前
父節點
當前提交
fd6dde9666

+ 2 - 1
.gitignore

@@ -4,4 +4,5 @@ build/
 *.dat.gpg
 mazda/logs/
 gcstruct/Kunden/**/info
-unzipped/
+unzipped/
+GCStruct_Reisacher_Planung/config/logs/gcstruct.0.log

+ 35 - 0
tools/c11.py

@@ -0,0 +1,35 @@
+import plac
+from cognos11.c11_export import c11_export
+from cognos11.c11_create import c11_create
+from config.config import Config
+from enum import Enum
+
+
+class ExportFormat(Enum):
+    PDF = "PDF"
+    XML = "XML"
+
+
+class C11:
+    commands = ['export', 'reportoutput', 'errors', 'create']
+
+    def export(self, folder='', format='XML'):
+        cfg = Config()
+        exp = c11_export(cfg)
+        exp.export_folder(folder, format)
+
+    def reportoutput(self, folder=''):
+        self.export(folder, 'PDF')
+
+    def errors(self):
+        cfg = Config()
+        exp = c11_export(cfg)
+        exp.export_errors()
+
+    def create(self, path: str):
+        cfg = Config()
+        c11_create(cfg).create_path(path)
+
+
+if __name__ == '__main__':
+    plac.Interpreter.call(C11)

+ 104 - 28
tools/cognos11/c11_api.py

@@ -6,13 +6,13 @@ import jinja2
 import json
 import re
 from bs4 import BeautifulSoup
-from xml_prettify import prettify_xml
+from .xml_prettify import prettify_xml
 import logging
 
 
 class c11_api:
     webservice = ""
-    templates_dir = "tools/cognos11/templates"
+    templates_dir = ""
     # templates_dir = "C:/GlobalCube/Tasks/gctools/templates"
     export_dir = "C:/GlobalCube/ReportOutput"
     log_dir = "C:/GlobalCube/Tasks/gctools/logs"
@@ -25,11 +25,18 @@ class c11_api:
 
     def __init__(self, webservice="http://localhost:9300/bi/"):
         self.webservice = webservice
+
+        self.templates_dir = os.path.dirname(__file__) + '/templates'
         self._env = jinja2.Environment(
             loader=jinja2.FileSystemLoader(self.templates_dir),
             autoescape=jinja2.select_autoescape(['html', 'xml'])
         )
-        self.template = self._env.get_template('get_report.xml')
+        self.templates = {
+            'get_report': self._env.get_template('get_report.xml'),
+            'create_report': self._env.get_template('create_report.xml'),
+            'update_report': self._env.get_template('update_report.xml'),
+            'get_package': self._env.get_template('get_package.xml'),
+        }
 
     @staticmethod
     def generate_token(message_base64):
@@ -63,28 +70,29 @@ class c11_api:
 
         self.caf = r.json()['cafContextId']
         self.cam = self.generate_token(r.cookies["usersessionid"])
-        return r.status_code
+        return self
 
     def get_folders(self):
         if len(self.folders) == 0:
+            self.folders.append({'id': '_dot_public_folders', 'name': 'Team Content'})
             self.load_folder_list()
         return self.folders
 
     def load_folder_list(self, folder_id='_dot_public_folders', prefix='Team Content'):
         res = self.session.get(f"{self.webservice}v1/objects/{folder_id}/items", headers=self.headers)
-        folder_list = res.json()['data']
+        folder_list = sorted(res.json()['data'], key=lambda x: x['defaultName'])
         for f in folder_list:
             if f['type'] == 'folder':
                 folder = {
                     'id': f['id'],
-                    'name': prefix + '/' + f['defaultName'].replace('/', '_')
+                    'name': prefix + '/' + f['defaultName'].replace('/', '-')
                 }
                 self.folders.append(folder)
                 self.load_folder_list(folder['id'], folder['name'])
             elif f['type'] == 'report':
                 report = {
                     'id': f['id'],
-                    'name': f['defaultName'],
+                    'name': f['defaultName'].replace('/', '-'),
                     'path': prefix
                 }
                 self.reports.append(report)
@@ -140,11 +148,17 @@ class c11_api:
             report = self.get_report_specs(report)
         return report
 
-    def get_reports_in_folder(self, folder, recursive=False):
+    def get_reports_in_folder(self, folder, recursive=False, specs=False):
         self.get_folders()
+
         if recursive:
-            return [r for r in self.reports if r['path'].startswith(folder)]
-        return [r for r in self.reports if r['path'] == folder]
+            res = [r for r in self.reports if r['path'].startswith(folder)]
+        else:
+            res = [r for r in self.reports if r['path'] == folder]
+
+        if specs:
+            return [self.get_report_specs(r) for r in res]
+        return res
 
     def get_report_specs(self, report):
         headers = {
@@ -154,9 +168,11 @@ class c11_api:
             'X-UseRsConsumerMode': 'true',
             'SOAPAction': 'http://www.ibm.com/xmlns/prod/cognos/reportService/202004/'
         }
-        soap = self.template.render({"caf": self.caf, "cam": self.cam,
-                                     "report": report, "format": 'XHTML',
-                                     "prompt": 'true', "tracking": "", "params": {}})
+        soap = self.templates['get_report'].render(
+            {"caf": self.caf, "cam": self.cam,
+             "report": report, "format": 'XHTML',
+             "prompt": 'true', "tracking": "", "params": {}}
+        )
 
         r = self.session.post(self.webservice + 'v1/reports', data=soap, headers=headers)
         if r.status_code == 500:
@@ -194,10 +210,10 @@ class c11_api:
             report['filename'] = report['filename'].replace('[' + p + ']', '{' + str(i) + '}')
         return report
 
-    def export_unstubbed(self, report_id):
+    def request_unstubbed(self, report_id):
         report = self.get_report(report_id)
         if 'spec' not in report:
-            return False
+            return ''
         payload = json.dumps({'reportspec_stubbed': report['spec'], 'storeid': report['id']})
 
         headers = {
@@ -229,31 +245,30 @@ class c11_api:
         for cti in bs.find_all('crosstabIntersection'):
             if len(list(cti.children)) == 0:
                 cti.decompose()
-        unstubbed_report = str(bs).replace("'", ''')
-        unstubbed_report = prettify_xml(unstubbed_report)
-
-        filename = self.log_dir + f"/config/{report['path']}/{report['name']}.xml"
-        os.makedirs(os.path.dirname(filename), exist_ok=True)
-        with open(filename, "w") as f:
-            f.write(unstubbed_report)
+        unstubbed_report = str(bs)
+        unstubbed_report = prettify_xml(unstubbed_report).replace("'", '"')
         return unstubbed_report
 
-    def get_report_headers(self, report_id):
-        return {
+    def get_report_headers(self, report_id=None):
+        res = {
             'Content-Type': 'text/xml; charset=UTF-8',
             'X-XSRF-TOKEN': self.headers['X-XSRF-TOKEN'],
-            'X-RsCMStoreID': report_id,
             'X-UseRsConsumerMode': 'true',
             'SOAPAction': 'http://www.ibm.com/xmlns/prod/cognos/reportService/202004/'
         }
+        if report_id is not None:
+            res['X-RsCMStoreID'] = report_id
+        return res
 
     def request_file(self, report_id, params, format='PDF'):
         report = self.get_report(report_id)
         headers = self.get_report_headers(report_id)
 
-        soap = self.template.render({"caf": self.caf, "cam": self.cam,
-                                     "report": report, "format": format,
-                                     "prompt": 'false', "tracking": "", "params": params}).encode("utf-8")
+        soap = self.templates['get_report'].render(
+            {"caf": self.caf, "cam": self.cam,
+             "report": report, "format": format,
+             "prompt": 'false', "tracking": "", "params": params}
+        ).encode("utf-8")
         r = self.session.post(self.webservice + 'v1/reports', data=soap, headers=headers)
 
         bs = BeautifulSoup(r.text, 'xml')
@@ -268,6 +283,67 @@ class c11_api:
         logging.debug(error)
         return r.status_code, error
 
+    def create_report(self, folder_id, fullpath):
+        # self.session.get(self.webservice + 'v1/reports/templates?path=%2Fcontent%2Ffolder%5B%40name%3D%27Templates%27%5D/*[@objectClass=%27interactiveReport%27%20or%20@objectClass=%27report%27%20or%20@objectClass=%27reportTemplate%27]&maxResults=100&locale=de')
+        # self.session.get(self.webservice + 'v1/reports/startupconfig?keys=supportedContentLocales,supportedCurrencies,supportedFonts,metadataInformationURI,glossaryURI&locale=de')
+        headers = self.get_report_headers()
+        soap = self.templates['get_package'].render(
+            {"caf": self.caf, "cam": self.cam}
+        ).encode("utf-8")
+        r = self.session.post(self.webservice + 'v1/reports', data=soap, headers=headers)
+        open('package.xml', 'wb').write(r.content)
+
+        search_path = self.request_search_path(folder_id)
+        report_name = os.path.basename(fullpath)
+        unstubbed = open(fullpath, 'rb').read()
+        headers['SOAPAction'] = 'http://www.ibm.com/xmlns/prod/cognos/reportService/202004/.session'
+        headers['Referer'] = 'http://localhost:9300/bi/pat/rsapp.htm'
+        # headers['caf'] = self.caf
+
+        soap = self.templates['create_report'].render(
+            {"caf": self.caf, "cam": self.cam,
+             "search_path": search_path,
+             "report_name": report_name, "unstubbed": unstubbed}
+        ).encode("utf-8")
+        r = self.session.post(self.webservice + 'v1/reports', data=soap, headers=headers)
+        open('request_create.xml', 'wb').write(r.request.body)
+        print(r.status_code)
+        print(r.text)
+
+    def update_report(self, report, fullpath):
+        search_path = self.request_search_path(report['id'])
+        unstubbed = open(fullpath, 'r').read()
+        headers = self.get_report_headers(report['id'])
+        # headers['Referer'] = 'http://localhost:9300/bi/pat/rsapp.htm'
+        headers['caf'] = self.caf
+
+        soap = self.templates['update_report'].render(
+            {"caf": self.caf, "cam": self.cam,
+             "search_path": search_path, "unstubbed": unstubbed}
+        )  # .encode("utf-8")
+        r = self.session.post(self.webservice + 'v1/reports', data=soap, headers=headers)
+        # open('request_update.xml', 'wb').write(r.request.body)
+        print(r.status_code)
+        print(r.text)
+
+    def create_folder(self, parent_id, folder_name):
+        data = json.dumps({"defaultName": folder_name, "type": "folder"})
+        res = self.session.post(
+            f"{self.webservice}v1/objects/{parent_id}/items",
+            headers=self.headers,
+            data=data
+        )
+
+        if res.status_code == 201:
+            loc = res.headers.get('Location')
+            folder_id = loc.split('/')[-1]
+            self.folders.append({'id': folder_id, 'name': folder_name})
+            return folder_id
+
+    def request_search_path(self, id):
+        res = self.session.get(f"{self.webservice}v1/objects/{id}?fields=searchPath", headers=self.headers)
+        return res.json()['data'][0]['searchPath']
+
 
 if __name__ == '__main__':
     api = c11_api()

+ 78 - 0
tools/cognos11/c11_create.py

@@ -0,0 +1,78 @@
+# import json
+import logging
+import os
+from .c11_api import c11_api
+from datetime import datetime
+
+
+class c11_create:
+    api: c11_api
+    config = None
+    log_dir = "C:/GlobalCube/Tasks/logs/c11"
+    spec_dir = "C:/GlobalCube/System/OPTIMA/Report"
+
+    def __init__(self, cfg, api=None):
+        self.config = cfg
+        self.api = api
+        if api is None:
+            self.api = c11_api().login()
+
+        now = datetime.now().strftime('%Y%m%d_%H%M%S')
+        prot_file = f"{self.log_dir}/create_{now}.log"
+        os.makedirs(self.log_dir, exist_ok=True)
+        logging.basicConfig(
+            filename=prot_file,
+            filemode='w',
+            encoding='utf-8',
+            level=logging.DEBUG,
+            force=True
+        )
+
+    def create_path(self, path, recursive=False):
+        if path.startswith('Team Content'):
+            fullpath = f"{self.spec_dir}/{path}"
+        else:
+            pos = path.find('Team Content')
+            fullpath = path
+            path = fullpath[pos:]
+
+        fullpath = os.path.abspath(fullpath)
+        path = path.replace('\\', '/')
+
+        if not os.path.exists(fullpath):
+            logging.error(fullpath + ' does not exist!')
+            return False
+
+        folder = path if os.path.isdir(fullpath) else os.path.dirname(path)
+        folder_id = self.create_folders(folder)
+        if os.path.isfile(fullpath):
+            self.create_report(folder_id, folder, fullpath)
+
+    def create_folders(self, folder):
+        folder_split = folder.split('/')
+        folder_parents = ['/'.join(folder_split[:i]) for i in range(1, len(folder_split) + 1)]
+        print(folder_parents)
+        folders = self.api.get_folders()
+        last_id = None
+        for parent in folder_parents:
+            parent_id = [f['id'] for f in folders if f['name'] == parent]
+            if len(parent_id) > 0:
+                last_id = parent_id.pop()
+            else:
+                last_id = self.api.create_folder(last_id, os.path.basename(parent))
+        return last_id
+
+    def create_report(self, folder_id, folder_name, fullpath):
+        report_name = os.path.basename(fullpath)[:-4]
+        reports = [r for r in self.api.get_reports_in_folder(folder_name) if r['name'] == report_name]
+        if len(reports) == 0:
+            self.api.create_report(folder_id, fullpath)
+        else:
+            self.api.update_report(reports[0], fullpath)
+
+
+if __name__ == '__main__':
+    create_api = c11_create()
+    # pdf.export_folder('Team Content/Verkauf/1. Gesamtverkauf', 'PDF')
+    # pdf.export_folder('Team Content/Aftersales/1. Service')
+    create_api.create_path('Team Content/ReportOutput/Forderungen')

+ 33 - 20
tools/cognos11/pdf_export.py → tools/cognos11/c11_export.py

@@ -1,18 +1,25 @@
 import json
 import logging
 import os
-from c11_api import c11_api
+from .c11_api import c11_api
 from datetime import datetime
 
 
-class pdf_export:
+class c11_export:
     api: c11_api
-    log_dir = "C:/GlobalCube/Tasks/gctools/logs"
+    config = None
+    log_dir = "C:/GlobalCube/Tasks/logs/c11"
+    spec_dir = "C:/GlobalCube/System/OPTIMA/Report"
 
-    def __init__(self, api):
+    def __init__(self, cfg, api=None):
+        self.config = cfg
         self.api = api
+        if api is None:
+            self.api = c11_api().login()
+
         now = datetime.now().strftime('%Y%m%d_%H%M%S')
         prot_file = f"{self.log_dir}/error_{now}.log"
+        os.makedirs(self.log_dir, exist_ok=True)
         logging.basicConfig(
             filename=prot_file,
             filemode='w',
@@ -21,20 +28,28 @@ class pdf_export:
             force=True
         )
 
-    def export_folder(self, folder='', format='PDF'):
-        if not folder.startswith('Team Content'):
+    def export_folder(self, folder='', format='PDF') -> None:
+        if folder == '':
+            folder = 'Team Content' if format == 'XML' else 'Team Content/ReportOutput'
+        elif not folder.startswith('Team Content'):
             folder = 'Team Content/ReportOutput/' + folder
+
         reports = self.api.get_reports_in_folder(folder, True)
         for r in reports:
             print(r['name'])
-            self.export_report(r['id'], format, folder=folder)
+            if format == 'PDF':
+                self.export_pdf(r['id'], folder)
+            if format == 'XML':
+                self.export_unstubbed(r['id'])
 
-    def export_report(self, report_id, format, folder=None):
-        if format == 'PDF':
-            return self.export_pdf(report_id, folder)
-        if format == 'XML':
-            return self.api.export_unstubbed(report_id)
-        return False
+    def export_unstubbed(self, report_id):
+        report = self.api.get_report(report_id)
+        unstubbed_report = self.api.request_unstubbed(report_id)
+        if unstubbed_report:
+            filename = f"{self.spec_dir}/{report['path']}/{report['name']}.xml"
+            os.makedirs(os.path.dirname(filename), exist_ok=True)
+            with open(filename, "w") as f:
+                f.write(unstubbed_report)
 
     def export_pdf(self, report_id, folder=None):
         report = self.api.get_report(report_id)
@@ -92,18 +107,16 @@ class pdf_export:
             logging.warning(content)
 
     def export_errors(self):
-        pdf.export_folder('Team Content', 'XML')
-        reports = self.api.get_reports_in_folder('Team Content', True)
+        reports = self.api.get_reports_in_folder('Team Content', recursive=True, specs=True)
         errors = [r for r in reports if 'error' in r]
-        filename = 'C:/GlobalCube/Tasks/gctools/logs/config/report_errors.json'
-        os.makedirs(os.path.dirname(filename), exist_ok=True)
+        filename = 'C:/GlobalCube/Tasks/logs/c11_report_errors.json'
         json.dump(errors, open(filename, 'w'), indent=2)
 
 
 if __name__ == '__main__':
     api = c11_api()
     api.login()
-    pdf = pdf_export(api)
+    pdf = c11_export(None, api)
     # pdf.export_folder('Team Content/Verkauf/1. Gesamtverkauf', 'PDF')
-    pdf.export_folder('Team Content/Aftersales/1. Service')
-    # pdf.export_errors()
+    # pdf.export_folder('Team Content/Aftersales/1. Service')
+    pdf.export_errors()

+ 3 - 3
tools/cognos11/templates/create_report.xml

@@ -27,13 +27,13 @@
     </SOAP-ENV:Header>
     <SOAP-ENV:Body>
         <rns1:add>
-            <parentPath>{{report.parent_path}}</parentPath>
+            <parentPath>{{search_path}}</parentPath>
             <object xsi:type="bus:report">
                 <defaultName>
-                    <value xsi:type="xsd:string">{{report.name}}</value>
+                    <value xsi:type="xsd:string">{{report_name}}</value>
                 </defaultName>
                 <specification>
-                    <value xsi:type="xsd:string" xml:space="preserve">{{report.spec}}</value>
+                    <value xsi:type="xsd:string" xml:space="preserve">{{unstubbed}}</value>
                 </specification>
                 <parameters xsi:type="bus:parameterValueArrayProp" SOAP-ENC:arrayType="bus:parameterValue[]">
                     <value xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:parameterValue[]"></value>

+ 131 - 0
tools/cognos11/templates/get_package.xml

@@ -0,0 +1,131 @@
+<SOAP-ENV:Envelope xmlns:SOAP-ENV='http://schemas.xmlsoap.org/soap/envelope/' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENC='http://schemas.xmlsoap.org/soap/encoding/' 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:CAM xsi:type="bus:CAM">
+                <authenticityToken xsi:type="xsd:base64Binary">{{cam}}</authenticityToken>
+            </bus:CAM>
+            <bus:CAF xsi:type="bus:CAF">
+                <contextID xsi:type="xsd:string">{{caf}}</contextID>
+            </bus:CAF>
+            <bus:userPreferenceVars SOAP-ENC:arrayType="bus:userPreferenceVar[]" xsi:type="SOAP-ENC:Array">
+                <item>
+                    <bus:name xsi:type="xsd:string">productLocale</bus:name>
+                    <bus:value xsi:type="xsd:string">de</bus:value>
+                </item>
+                <item>
+                    <bus:name xsi:type="xsd:string">contentLocale</bus:name>
+                    <bus:value xsi:type="xsd:string">de-de</bus:value>
+                </item>
+            </bus:userPreferenceVars>
+            <bus:dispatcherTransportVars xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:dispatcherTransportVar[]">
+                <item xsi:type="bus:dispatcherTransportVar">
+                    <name xsi:type="xsd:string">rs</name>
+                    <value xsi:type="xsd:string">true</value>
+                </item>
+            </bus:dispatcherTransportVars>
+        </bus:biBusHeader>
+    </SOAP-ENV:Header>
+    <SOAP-ENV:Body>
+        <rns1:runSpecification>
+            <bus:specification xsi:type="bus:reportServiceMetadataSpecification">
+                <bus:value xsi:type="bus:specification">&lt;metadataRequest connection=&quot;/content/folder[@name=&amp;apos;GC&amp;apos;]/folder[@name=&amp;apos;Packages&amp;apos;]/package[@name=&amp;apos;V_Verkauf&amp;apos;]/model[@name=&amp;apos;2021-04-19T08:31:52.816Z&amp;apos;]&quot;&gt;
+			&lt;Metadata authoringLocale=&quot;de&quot; xml:lang=&quot;&quot; Depth=&quot;2&quot; start_atPath=&quot;&quot; no_collections=&quot;1&quot; _enumLabels=&quot;1&quot;&gt;
+				&lt;Properties&gt;
+					&lt;!-- Properties we want for all elements  --&gt;
+					&lt;Property name=&quot;*/@name&quot;/&gt;
+					&lt;Property name=&quot;*/@_path&quot;/&gt;
+					&lt;Property name=&quot;*/@_ref&quot;/&gt;
+					&lt;Property name=&quot;*/@isNamespace&quot;/&gt;
+					&lt;Property name=&quot;*/@screenTip&quot;/&gt;
+					&lt;Property name=&quot;*/@description&quot;/&gt;
+					&lt;Property name=&quot;*/@calcType&quot;/&gt;
+					&lt;Property name=&quot;*/@parentChild&quot;/&gt;
+					&lt;Property name=&quot;*/@_IntrinsicPropertiesOff&quot;/&gt;
+		
+					&lt;Property name=&quot;./dimension&quot;/&gt;
+					&lt;Property name=&quot;dimension/@type&quot;/&gt;
+		
+					&lt;Property name=&quot;./queryItem&quot;/&gt;
+					&lt;Property name=&quot;queryItem/@datatype&quot;/&gt;
+					&lt;Property name=&quot;queryItem/@currency&quot;/&gt;
+					&lt;Property name=&quot;queryItem/@usage&quot;/&gt;
+					&lt;Property name=&quot;queryItem/@regularAggregate&quot;/&gt;
+					&lt;Property name=&quot;queryItem/@promptType&quot;/&gt;
+					&lt;Property name=&quot;queryItem/@promptFilterItemRef&quot;/&gt;
+					&lt;Property name=&quot;queryItem/@promptDisplayItemRef&quot;/&gt;
+					&lt;Property name=&quot;queryItem/@promptUseItemRef&quot;/&gt;
+					&lt;Property name=&quot;queryItem/@promptCascadeOnRef&quot;/&gt;
+					&lt;Property name=&quot;queryItem/@unSortable&quot;/&gt;
+					&lt;Property name=&quot;queryItem/@displayType&quot;/&gt;
+					&lt;Property name=&quot;queryItem/@_isMemberProperty&quot;/&gt;
+		
+					&lt;Property name=&quot;./calculation&quot;/&gt;
+					&lt;Property name=&quot;calculation/@currency&quot;/&gt;
+					&lt;Property name=&quot;calculation/@usage&quot;/&gt;
+					&lt;Property name=&quot;calculation/@regularAggregate&quot;/&gt;
+					&lt;Property name=&quot;calculation/@promptType&quot;/&gt;
+					&lt;Property name=&quot;calculation/@promptFilterItemRef&quot;/&gt;
+					&lt;Property name=&quot;calculation/@promptDisplayItemRef&quot;/&gt;
+					&lt;Property name=&quot;calculation/@promptUseItemRef&quot;/&gt;
+					&lt;Property name=&quot;calculation/@promptCascadeOnRef&quot;/&gt;
+					&lt;Property name=&quot;calculation/@unSortable&quot;/&gt;
+					&lt;Property name=&quot;calculation/@displayType&quot;/&gt;
+					&lt;Property name=&quot;calculation/@calcType&quot;/&gt;
+					&lt;Property name=&quot;calculation/@datatype&quot;/&gt;
+					&lt;Property name=&quot;calculation/@hierarchies&quot;/&gt;
+					&lt;Property name=&quot;calculation/@dimensions&quot;/&gt;
+		
+					&lt;Property name=&quot;./measure&quot;/&gt;
+					&lt;Property name=&quot;measure/@datatype&quot;/&gt;
+					&lt;Property name=&quot;measure/@currency&quot;/&gt;
+					&lt;Property name=&quot;measure/@isHierarchical&quot;/&gt;
+					&lt;Property name=&quot;measure/@regularAggregate&quot;/&gt;
+		
+					&lt;Property name=&quot;./folder&quot;/&gt;
+					&lt;Property name=&quot;./measureFolder&quot;/&gt;
+					&lt;Property name=&quot;./querySubject&quot;/&gt;
+					&lt;Property name=&quot;./queryItemFolder&quot;/&gt;
+					&lt;Property name=&quot;./queryItemFolder/@datatype&quot;/&gt;
+					&lt;Property name=&quot;./filter&quot;/&gt;
+					&lt;Property name=&quot;./hierarchy&quot;/&gt;
+					&lt;Property name=&quot;./hierarchyFolder&quot;/&gt;
+					&lt;Property name=&quot;./level&quot;/&gt;
+					
+					&lt;Property name=&quot;./hierarchyNamedSet&quot;/&gt;
+					&lt;Property name=&quot;hierarchyNamedSet/@dimensions&quot;/&gt;
+					&lt;Property name=&quot;hierarchyNamedSet/@hierarchies&quot;/&gt;
+				&lt;/Properties&gt;
+				
+			&lt;/Metadata&gt;
+		&lt;/metadataRequest&gt;</bus:value>
+            </bus:specification>
+            <bus:parameterValues xmlns:bus='http://developer.cognos.com/schemas/bibus/3/' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:SOAP-ENC='http://schemas.xmlsoap.org/soap/encoding/' SOAP-ENC:arrayType="bus:parameterValue[]" xsi:type="SOAP-ENC:Array"></bus: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">300</bus:value>
+                </item>
+                <item xsi:type="bus:asynchOptionInt">
+                    <bus:name xsi:type="bus:asynchOptionEnum">secondaryWaitThreshold</bus:name>
+                    <bus:value xsi:type="xsd:int">30</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:asynchOptionEncoding">
+                    <bus:name xsi:type="bus:asynchOptionEnum">attachmentEncoding</bus:name>
+                    <bus:value xsi:type="bus:encodingEnum">MIME</bus:value>
+                </item>
+                <item xsi:type="bus:runOptionString">
+                    <bus:name xsi:type="bus:runOptionEnum">promptFormat</bus:name>
+                    <bus:value xsi:type="xsd:string">XHTMLFRGMT</bus:value>
+                </item>
+                <item xsi:type="bus:genericOptionAnyURI">
+                    <bus:name xsi:type="xsd:string">http://developer.cognos.com/ceba/constants/runOptionEnum#promptXslUrl</bus:name>
+                    <bus:value xsi:type="xsd:string">V5html_viewer.xsl</bus:value>
+                </item>
+            </bus:options>
+        </rns1:runSpecification>
+    </SOAP-ENV:Body>
+</SOAP-ENV:Envelope>

+ 125 - 0
tools/cognos11/templates/request_draft.xml

@@ -0,0 +1,125 @@
+<SOAP-ENV:Envelope xmlns:SOAP-ENV='http://schemas.xmlsoap.org/soap/envelope/' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENC='http://schemas.xmlsoap.org/soap/encoding/' 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:CAM xsi:type="bus:CAM">
+                <authenticityToken xsi:type="xsd:base64Binary">VjGbFyIZQEeWGWCf9hkSXiXZamN1QMuzaefF3XMHUtCuzg==</authenticityToken>
+            </bus:CAM>
+            <bus:CAF xsi:type="bus:CAF">
+                <contextID xsi:type="xsd:string">CAFW000000a0Q0FGQTYwMDAwMDAwMDlBaFFBQUFDWktBVGJydTlxWGpQKipqUk0zbmYqaFhLMk1BY0FBQUJUU0VFdE1qVTJJQUFBQUx4YlR2Ry00MVJIUU56ZzJMdFBNTmEqYzcqWkxibWhTYVUxbGduN01jTGo0NjI3ODB8cnM_</contextID>
+            </bus:CAF>
+            <bus:userPreferenceVars SOAP-ENC:arrayType="bus:userPreferenceVar[]" xsi:type="SOAP-ENC:Array">
+                <item>
+                    <bus:name xsi:type="xsd:string">productLocale</bus:name>
+                    <bus:value xsi:type="xsd:string">de</bus:value>
+                </item>
+                <item>
+                    <bus:name xsi:type="xsd:string">contentLocale</bus:name>
+                    <bus:value xsi:type="xsd:string">de-de</bus:value>
+                </item>
+            </bus:userPreferenceVars>
+            <bus:dispatcherTransportVars xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:dispatcherTransportVar[]">
+                <item xsi:type="bus:dispatcherTransportVar">
+                    <name xsi:type="xsd:string">rs</name>
+                    <value xsi:type="xsd:string">true</value>
+                </item>
+            </bus:dispatcherTransportVars>
+        </bus:biBusHeader>
+    </SOAP-ENV:Header>
+    <SOAP-ENV:Body>
+        <rns1:runSpecification>
+            <bus:specification xsi:type="bus:reportServiceMetadataSpecification">
+                <bus:value xsi:type="bus:specification">&lt;metadataRequest connection=&quot;/content/folder[@name=&amp;apos;GC&amp;apos;]/folder[@name=&amp;apos;Packages&amp;apos;]/package[@name=&amp;apos;V_Verkauf&amp;apos;]/model[@name=&amp;apos;2021-04-19T08:31:52.816Z&amp;apos;]&quot;&gt;
+			&lt;Metadata authoringLocale=&quot;de&quot; xml:lang=&quot;&quot; Depth=&quot;&quot; start_atPath=&quot;&quot; no_collections=&quot;1&quot; _enumLabels=&quot;1&quot;&gt;
+				&lt;Properties&gt;
+					&lt;Property name=&quot;/@modelSearchPath&quot;/&gt;
+		
+					&lt;Property name=&quot;*/@name&quot;/&gt;
+					&lt;Property name=&quot;*/@isNamespace&quot;/&gt;
+					&lt;Property name=&quot;*/@screenTip&quot;/&gt;
+					&lt;Property name=&quot;*/@hierarchies&quot;/&gt;
+					&lt;Property name=&quot;*/@dimensions&quot;/&gt;
+					&lt;Property name=&quot;*/@_ref&quot;/&gt;
+					&lt;Property name=&quot;*/@_path&quot;/&gt;
+					&lt;Property name=&quot;*/@usage&quot;/&gt;
+					&lt;Property name=&quot;*/@description&quot;/&gt;
+					
+					&lt;Property name=&quot;./dataSource&quot;/&gt;
+					&lt;Property name=&quot;dataSource/@cubeDescription&quot;/&gt;
+					&lt;Property name=&quot;dataSource/@cubePath&quot;/&gt;
+					&lt;Property name=&quot;dataSource/@cubeCreatedOn&quot;/&gt;
+					&lt;Property name=&quot;dataSource/@cubeDataUpdatedOn&quot;/&gt;
+					&lt;Property name=&quot;dataSource/@cubeSchemaUpdatedOn&quot;/&gt;
+					&lt;Property name=&quot;dataSource/@cubeIsOptimized&quot;/&gt;
+					&lt;Property name=&quot;dataSource/@cubeDefaultMeasure&quot;/&gt;
+					&lt;Property name=&quot;dataSource/@cubeCurrentPeriod&quot;/&gt;
+		
+					&lt;Property name=&quot;./dimension&quot;/&gt;
+					&lt;Property name=&quot;dimension/@type&quot;/&gt;
+					&lt;Property name=&quot;dimension/@membersRollup&quot;/&gt;
+		
+					&lt;Property name=&quot;./hierarchy&quot;/&gt;
+					&lt;Property name=&quot;hierarchy/@parentChild&quot;/&gt;
+					&lt;Property name=&quot;hierarchy/@multiRoot&quot;/&gt;
+					&lt;Property name=&quot;hierarchy/@rootCaption&quot;/&gt;
+					&lt;Property name=&quot;hierarchy/@rootMUN&quot;/&gt;
+		
+					&lt;Property name=&quot;./level&quot;/&gt;
+		
+					&lt;Property name=&quot;./calculation&quot;/&gt;
+					&lt;Property name=&quot;calculation/@currency&quot;/&gt;
+					&lt;Property name=&quot;calculation/@usage&quot;/&gt;
+					&lt;Property name=&quot;calculation/@regularAggregate&quot;/&gt;
+					&lt;Property name=&quot;calculation/@promptType&quot;/&gt;
+					&lt;Property name=&quot;calculation/@promptFilterItemRef&quot;/&gt;
+					&lt;Property name=&quot;calculation/@promptDisplayItemRef&quot;/&gt;
+					&lt;Property name=&quot;calculation/@promptUseItemRef&quot;/&gt;
+					&lt;Property name=&quot;calculation/@promptCascadeOnRef&quot;/&gt;
+					&lt;Property name=&quot;calculation/@unSortable&quot;/&gt;
+					&lt;Property name=&quot;calculation/@displayType&quot;/&gt;
+					&lt;Property name=&quot;calculation/@calcType&quot;/&gt;
+		
+					&lt;Property name=&quot;./folder&quot;/&gt;
+					&lt;Property name=&quot;./hierarchyFolder&quot;/&gt;
+					
+					&lt;Property name=&quot;./package&quot;/&gt;
+					&lt;Property name=&quot;package/@isAccessToNullSuppressionOptionsAllowed&quot;/&gt;
+					&lt;Property name=&quot;package/@isMultiEdgeNullSuppressionAllowed&quot;/&gt;
+					&lt;Property name=&quot;package/@isNullSuppressionAllowed&quot;/&gt;
+					
+					&lt;Property name=&quot;./hierarchyNamedSet&quot;/&gt;
+					&lt;Property name=&quot;hierarchyNamedSet/@dimensions&quot;/&gt;
+					&lt;Property name=&quot;hierarchyNamedSet/@hierarchies&quot;/&gt;
+				&lt;/Properties&gt;
+			&lt;/Metadata&gt;
+		&lt;/metadataRequest&gt;</bus:value>
+            </bus:specification>
+            <bus:parameterValues xmlns:bus='http://developer.cognos.com/schemas/bibus/3/' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:SOAP-ENC='http://schemas.xmlsoap.org/soap/encoding/' SOAP-ENC:arrayType="bus:parameterValue[]" xsi:type="SOAP-ENC:Array"></bus: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">5</bus:value>
+                </item>
+                <item xsi:type="bus:asynchOptionInt">
+                    <bus:name xsi:type="bus:asynchOptionEnum">secondaryWaitThreshold</bus:name>
+                    <bus:value xsi:type="xsd:int">30</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:asynchOptionEncoding">
+                    <bus:name xsi:type="bus:asynchOptionEnum">attachmentEncoding</bus:name>
+                    <bus:value xsi:type="bus:encodingEnum">MIME</bus:value>
+                </item>
+                <item xsi:type="bus:runOptionString">
+                    <bus:name xsi:type="bus:runOptionEnum">promptFormat</bus:name>
+                    <bus:value xsi:type="xsd:string">XHTMLFRGMT</bus:value>
+                </item>
+                <item xsi:type="bus:genericOptionAnyURI">
+                    <bus:name xsi:type="xsd:string">http://developer.cognos.com/ceba/constants/runOptionEnum#promptXslUrl</bus:name>
+                    <bus:value xsi:type="xsd:string">V5html_viewer.xsl</bus:value>
+                </item>
+            </bus:options>
+        </rns1:runSpecification>
+    </SOAP-ENV:Body>
+</SOAP-ENV:Envelope>

+ 91 - 0
tools/cognos11/templates/request_draft2.xml

@@ -0,0 +1,91 @@
+<SOAP-ENV:Envelope xmlns:SOAP-ENV='http://schemas.xmlsoap.org/soap/envelope/' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENC='http://schemas.xmlsoap.org/soap/encoding/' 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:CAM xsi:type="bus:CAM">
+                <authenticityToken xsi:type="xsd:base64Binary">VjGbFyIZQEeWGWCf9hkSXiXZamN1QMuzaefF3XMHUtCuzg==</authenticityToken>
+            </bus:CAM>
+            <bus:CAF xsi:type="bus:CAF">
+                <contextID xsi:type="xsd:string">CAFW000000a0Q0FGQTYwMDAwMDAwMDlBaFFBQUFDWktBVGJydTlxWGpQKipqUk0zbmYqaFhLMk1BY0FBQUJUU0VFdE1qVTJJQUFBQUx4YlR2Ry00MVJIUU56ZzJMdFBNTmEqYzcqWkxibWhTYVUxbGduN01jTGo0NjI3ODB8cnM_</contextID>
+            </bus:CAF>
+            <bus:userPreferenceVars SOAP-ENC:arrayType="bus:userPreferenceVar[]" xsi:type="SOAP-ENC:Array">
+                <item>
+                    <bus:name xsi:type="xsd:string">productLocale</bus:name>
+                    <bus:value xsi:type="xsd:string">de</bus:value>
+                </item>
+                <item>
+                    <bus:name xsi:type="xsd:string">contentLocale</bus:name>
+                    <bus:value xsi:type="xsd:string">de-de</bus:value>
+                </item>
+            </bus:userPreferenceVars>
+            <bus:dispatcherTransportVars xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:dispatcherTransportVar[]">
+                <item xsi:type="bus:dispatcherTransportVar">
+                    <name xsi:type="xsd:string">rs</name>
+                    <value xsi:type="xsd:string">true</value>
+                </item>
+            </bus:dispatcherTransportVars>
+            <bus:tracking xmlns:bus="http://developer.cognos.com/schemas/bibus/3/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="bus:tracking">
+                <bus:conversationContext xsi:type="bus:conversationContext">
+                    <bus:affinityStrength xsi:type="xs:int">5000</bus:affinityStrength>
+                    <bus:id xsi:type="xs:string">vj9Cwsjqy9sC9v4djlldjwl9Mh89jC89ws8249jy</bus:id>
+                    <bus:nodeID xsi:type="xs:string">62</bus:nodeID>
+                    <bus:processID xsi:type="xs:int">11804</bus:processID>
+                    <bus:status xsi:type="xs:string">complete</bus:status>
+                </bus:conversationContext>
+                <bus:hopCount xsi:type="xs:integer">0</bus:hopCount>
+                <bus:providers xsi:type="SOAP-ENC:Array" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" SOAP-ENC:arrayType="bus:provider[0]"/>
+                <bus:requestContext xsi:type="xs:string">vj9Cwsjqy9sC9v4djlldjwl9Mh89jC89ws8249jy</bus:requestContext>
+                <bus:sessionContext xsi:type="xs:string">f:0:7EF5EBC42F68E03219125F20F393A472BE660FD2FF570059E0FD341C8C287DC7</bus:sessionContext>
+            </bus:tracking>
+        </bus:biBusHeader>
+    </SOAP-ENV:Header>
+    <SOAP-ENV:Body>
+        <rns1:runSpecification>
+            <bus:specification xsi:type="bus:reportServiceMetadataSpecification">
+                <bus:value xsi:type="bus:specification">&lt;metadataRequest connection=&quot;/content/folder[@name=&amp;apos;GC&amp;apos;]/folder[@name=&amp;apos;Packages&amp;apos;]/package[@name=&amp;apos;V_Verkauf&amp;apos;]/model[@name=&amp;apos;2021-04-19T08:31:52.816Z&amp;apos;]&quot;&gt;
+			&lt;Functions authoringLocale=&quot;de&quot;&gt;
+				&lt;Properties&gt;
+					&lt;Property name=&quot;/@listSeparator&quot;/&gt;
+					&lt;Property name=&quot;/@decimalSeparator&quot;/&gt;
+		
+					&lt;Property name=&quot;./group&quot;/&gt;
+					&lt;Property name=&quot;group/@&quot;/&gt;
+		
+					&lt;Property name=&quot;./function&quot;/&gt;
+					&lt;Property name=&quot;function/@id&quot;/&gt;
+					&lt;Property name=&quot;function/@name&quot;/&gt;
+					&lt;Property name=&quot;function/@qosLevel&quot;/&gt;
+				&lt;/Properties&gt;
+				&lt;Constraint Condition=&quot;FDS[@type=&apos;operation&apos;]&quot;/&gt;
+			&lt;/Functions&gt;
+		&lt;/metadataRequest&gt;</bus:value>
+            </bus:specification>
+            <bus:parameterValues xmlns:bus='http://developer.cognos.com/schemas/bibus/3/' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:SOAP-ENC='http://schemas.xmlsoap.org/soap/encoding/' SOAP-ENC:arrayType="bus:parameterValue[]" xsi:type="SOAP-ENC:Array"></bus: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">5</bus:value>
+                </item>
+                <item xsi:type="bus:asynchOptionInt">
+                    <bus:name xsi:type="bus:asynchOptionEnum">secondaryWaitThreshold</bus:name>
+                    <bus:value xsi:type="xsd:int">30</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:asynchOptionEncoding">
+                    <bus:name xsi:type="bus:asynchOptionEnum">attachmentEncoding</bus:name>
+                    <bus:value xsi:type="bus:encodingEnum">MIME</bus:value>
+                </item>
+                <item xsi:type="bus:runOptionString">
+                    <bus:name xsi:type="bus:runOptionEnum">promptFormat</bus:name>
+                    <bus:value xsi:type="xsd:string">XHTMLFRGMT</bus:value>
+                </item>
+                <item xsi:type="bus:genericOptionAnyURI">
+                    <bus:name xsi:type="xsd:string">http://developer.cognos.com/ceba/constants/runOptionEnum#promptXslUrl</bus:name>
+                    <bus:value xsi:type="xsd:string">V5html_viewer.xsl</bus:value>
+                </item>
+            </bus:options>
+        </rns1:runSpecification>
+    </SOAP-ENV:Body>
+</SOAP-ENV:Envelope>

+ 46 - 0
tools/cognos11/templates/request_draft3.xml

@@ -0,0 +1,46 @@
+<SOAP-ENV:Envelope xmlns:SOAP-ENV='http://schemas.xmlsoap.org/soap/envelope/' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENC='http://schemas.xmlsoap.org/soap/encoding/' 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:CAM xsi:type="bus:CAM">
+                <authenticityToken xsi:type="xsd:base64Binary">VjGbFyIZQEeWGWCf9hkSXiXZamN1QMuzaefF3XMHUtCuzg==</authenticityToken>
+            </bus:CAM>
+            <bus:CAF xsi:type="bus:CAF">
+                <contextID xsi:type="xsd:string">CAFW000000a0Q0FGQTYwMDAwMDAwMDlBaFFBQUFDWktBVGJydTlxWGpQKipqUk0zbmYqaFhLMk1BY0FBQUJUU0VFdE1qVTJJQUFBQUx4YlR2Ry00MVJIUU56ZzJMdFBNTmEqYzcqWkxibWhTYVUxbGduN01jTGo0NjI3ODB8cnM_</contextID>
+            </bus:CAF>
+            <bus:userPreferenceVars SOAP-ENC:arrayType="bus:userPreferenceVar[]" xsi:type="SOAP-ENC:Array">
+                <item>
+                    <bus:name xsi:type="xsd:string">productLocale</bus:name>
+                    <bus:value xsi:type="xsd:string">de</bus:value>
+                </item>
+                <item>
+                    <bus:name xsi:type="xsd:string">contentLocale</bus:name>
+                    <bus:value xsi:type="xsd:string">de-de</bus:value>
+                </item>
+            </bus:userPreferenceVars>
+            <bus:dispatcherTransportVars xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:dispatcherTransportVar[]">
+                <item xsi:type="bus:dispatcherTransportVar">
+                    <name xsi:type="xsd:string">rs</name>
+                    <value xsi:type="xsd:string">true</value>
+                </item>
+            </bus:dispatcherTransportVars>
+            <bus:tracking xmlns:bus="http://developer.cognos.com/schemas/bibus/3/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="bus:tracking">
+                <bus:conversationContext xsi:type="bus:conversationContext">
+                    <bus:affinityStrength xsi:type="xs:int">5000</bus:affinityStrength>
+                    <bus:id xsi:type="xs:string">j42dwCsqG2s9C9w9qwy9Cyhq4GqsGMdwyG29dG2w</bus:id>
+                    <bus:nodeID xsi:type="xs:string">62</bus:nodeID>
+                    <bus:processID xsi:type="xs:int">11804</bus:processID>
+                    <bus:status xsi:type="xs:string">complete</bus:status>
+                </bus:conversationContext>
+                <bus:hopCount xsi:type="xs:integer">0</bus:hopCount>
+                <bus:providers xsi:type="SOAP-ENC:Array" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" SOAP-ENC:arrayType="bus:provider[0]"/>
+                <bus:requestContext xsi:type="xs:string">j42dwCsqG2s9C9w9qwy9Cyhq4GqsGMdwyG29dG2w</bus:requestContext>
+                <bus:sessionContext xsi:type="xs:string">f:0:7EF5EBC42F68E03219125F20F393A472BE660FD2FF570059E0FD341C8C287DC7</bus:sessionContext>
+            </bus:tracking>
+        </bus:biBusHeader>
+    </SOAP-ENV:Header>
+    <SOAP-ENV:Body>
+        <rns1:release>
+            <bus:conversation xsi:type="bus:asynchRequest"></bus:conversation>
+        </rns1:release>
+    </SOAP-ENV:Body>
+</SOAP-ENV:Envelope>

+ 47 - 0
tools/cognos11/templates/update_report.xml

@@ -0,0 +1,47 @@
+<SOAP-ENV:Envelope xmlns:SOAP-ENV='http://schemas.xmlsoap.org/soap/envelope/' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENC='http://schemas.xmlsoap.org/soap/encoding/' 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:CAM xsi:type="bus:CAM">
+                <authenticityToken xsi:type="xsd:base64Binary">{{cam}}</authenticityToken>
+            </bus:CAM>
+            <bus:CAF xsi:type="bus:CAF">
+                <contextID xsi:type="xsd:string">{{caf}}</contextID>
+            </bus:CAF>
+            <bus:userPreferenceVars SOAP-ENC:arrayType="bus:userPreferenceVar[]" xsi:type="SOAP-ENC:Array">
+                <item>
+                    <bus:name xsi:type="xsd:string">productLocale</bus:name>
+                    <bus:value xsi:type="xsd:string">de</bus:value>
+                </item>
+                <item>
+                    <bus:name xsi:type="xsd:string">contentLocale</bus:name>
+                    <bus:value xsi:type="xsd:string">de-de</bus:value>
+                </item>
+            </bus:userPreferenceVars>
+            <bus:dispatcherTransportVars xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:dispatcherTransportVar[]">
+                <item xsi:type="bus:dispatcherTransportVar">
+                    <name xsi:type="xsd:string">rs</name>
+                    <value xsi:type="xsd:string">true</value>
+                </item>
+            </bus:dispatcherTransportVars>
+        </bus:biBusHeader>
+    </SOAP-ENV:Header>
+    <SOAP-ENV:Body>
+        <rns1:update>
+            <object xsi:type="bus:report">
+                <searchPath>
+                    <value xsi:type="xsd:string">{{search_path}}</value>
+                </searchPath>
+                <specification>
+                    <value xsi:type="xsd:string" xml:space="preserve">{{unstubbed}}</value>
+                </specification>
+                <parameters xsi:type="bus:parameterValueArrayProp" SOAP-ENC:arrayType="bus:parameterValue[]">
+                    <value xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:parameterValue[]"></value>
+                </parameters>
+                <runInAdvancedViewer xsi:type="bus:booleanProp">
+                    <value xsi:type="xsd:boolean">true</value>
+                </runInAdvancedViewer>
+            </object>
+            <options xsi:type="bus:updateOptions"/>
+        </rns1:update>
+    </SOAP-ENV:Body>
+</SOAP-ENV:Envelope>