Explorar el Código

Merged gctools von gc-server6

Global Cube hace 2 años
padre
commit
e0c4f42046

+ 30 - 0
gctools/DSG_Uebersetzung.csv

@@ -0,0 +1,30 @@
+cube_category;ldap_category;description
+00;00;Chefansicht (DSG+BOR)
+00 - Verwaltung;DSG_01;Verwaltung/Großhandel (DSG+BOR)
+B0 - Röhrsdorf;DSG_02;Röhrsdorf
+BOR 00 - Verwaltung;BOR_01;Verwaltung/Großhandel (DSG+BOR)
+BOR G0 - Chemnitz;BOR_07;Chemnitz (DSG+BOR)
+BOR I0 - Zwickau;BOR_09;Zwickau (DSG+BOR)
+BOR L0 - Hof (BOR);BOR_12;Hof (nur BOR)
+C0 - Burgstädt;DSG_03;Burgstädt
+D0 - Frankenberg;DSG_04;Frankenberg
+E0 - Oederan;DSG_06;Oederan
+F0 - Mittweida;DSG_05;Mittweida
+G0 - Chemnitz;DSG_07;Chemnitz (DSG+BOR)
+H0 - Chemnitz BC;DSG_08;Chemnitz BC
+I0 - Zwickau;DSG_09;Zwickau (DSG+BOR)
+J0 - Hof;DSG_10;Hof BC
+K0 - Plauen;DSG_11;Plauen
+M0 - Zwickau BC;DSG_13;Zwickau BC
+N0 - Freiberg;DSG_14;Freiberg
+O0 - Plauen Seat;DSG_15;Plauen Seat
+P0 - Chemnitz Seat;DSG_16;Chemnitz Seat
+A0 - Großhandel;;
+BOR A0 - Großhandel;;
+BOR Standort fehlt;;
+G;;
+I;;
+L;;
+L0;;
+l0;;
+Z0 - Online;;

+ 37 - 0
gctools/apache_ldap.py

@@ -0,0 +1,37 @@
+from ldap3 import Server, Connection, ALL, ALL_ATTRIBUTES, ALL_OPERATIONAL_ATTRIBUTES
+from ldap3.core.exceptions import LDAPCursorError
+
+
+def connect_ldap3():
+    server = Server('localhost:10389', get_info=ALL, use_ssl=False)
+    # conn = Connection(server, 'uid=admin,ou=system', 'gc01gapsC$', auto_bind='TLS_AFTER_BIND')  # 'uid=admin,ou=system'
+    # status = conn.search('ou=cognos,dc=ibm,dc=com', '(objectclass=person)', 'SUBTREE')
+    # print(conn.entries)
+    conn = Connection(server, user='uid=Global1,ou=cognos,dc=ibm,dc=com', password='Cognos#11')
+    if conn.bind():
+        conn.search('ou=cognos,dc=ibm,dc=com', '(objectclass=person)', 'SUBTREE', attributes=[ALL_ATTRIBUTES, ALL_OPERATIONAL_ATTRIBUTES])
+        format_string = '{:15} {:25} {:19} {:25} {}'
+        for e in conn.entries:
+            desc = ""
+            email = ""
+            if 'description' in e:
+                desc = e.description
+            if 'mail' in e:
+                email = e.mail
+            # print(e.entry_to_json())
+            print(format_string.format(str(e.uid), str(e.givenName), str(e.createTimestamp)[:19], str(email), desc))
+    else:
+        print(conn.result)
+
+
+
+if __name__ == '__main__':
+    # connect_pyldap()
+   connect_ldap3()
+
+
+# from ldap3 import Server, Connection, AUTH_SIMPLE, STRATEGY_SYNC, ALL
+# s = Server(HOST, port=389, get_info=ALL)
+# c = Connection(s, authentication=AUTH_SIMPLE, user=user_dn, password=PASSWORD, check_names=True, lazy=False, client_strategy=STRATEGY_SYNC, raise_exceptions=True)
+# c.open()
+# c.bind()

+ 225 - 0
gctools/c11_admin.py

@@ -0,0 +1,225 @@
+import base64
+import os
+import time
+import requests
+from requests_toolbelt.multipart import decoder
+import pandas as pd
+import jinja2
+import json
+import re
+from bs4 import BeautifulSoup
+
+
+class ca_webscraper:
+    webservice = "http://localhost:9300/bi/"
+    templates_dir = "C:/Projekte/Python/cognos11/templates"
+    export_dir = "C:/Projekte/Python/export"
+    log_dir = "C:/Projekte/Python/logs"
+    credentials = '{"parameters":[{"name":"CAMNamespace","value":"CognosEx"},{"name":"h_CAM_action","value":"logonAs"},{"name":"CAMUsername","value":"Global1"},{"name":"CAMPassword","value":"Cognos#11"}]}'
+    headers = {}
+    caf = ""
+    cam = ""
+
+    def __init__(self):
+        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')
+
+    def generate_token(self, message_base64):
+        version = "V1".encode("utf-8")
+        header_len = 4
+        msg = base64.b64decode(message_base64)[1:]
+        chunks = []
+
+        while len(msg) >= header_len:
+            chunk_len = int.from_bytes(msg[:header_len], byteorder="little")
+            msg = msg[header_len:]
+            chunks.append(msg[:chunk_len])
+            msg = msg[chunk_len:]
+
+        return base64.b64encode(version + chunks[-1]).decode("utf-8")
+
+    def login(self):
+        self.session = requests.Session()
+        r = self.session.get(self.webservice)
+        self.headers = {'Content-Type': "application/json; charset=UTF-8", 'X-XSRF-TOKEN': self.session.cookies.get('XSRF-TOKEN')}
+
+        r = self.session.post(self.webservice + "v1/login", data=self.credentials, headers=self.headers)
+
+        self.caf = r.json()['cafContextId']
+        self.cam = self.generate_token(r.cookies["usersessionid"])
+        return r.status_code
+
+    def report_list(self):
+        # "v1/objects/_dot_public_folders/items"
+        filter = "type|analysis|interactiveReport|powerPlayReport|powerPlay8Report|powerPlay8ReportView|query|report|reportTemplate"
+        res = self.session.get(self.webservice + "v1/search/cm?fields=defaultName|id|ancestors&results=1000&query=.&hide_internal=all&filter=" + filter, headers=self.headers)
+        self.reports = res.json()['results']
+        for r in self.reports:
+            r['path'] = "/".join([a['defaultName'].replace('/', '_') for a in r['ancestors']])
+            r['name'] = r['defaultName']
+            del(r['ancestors'])
+            del(r['defaultName'])
+
+        filename = self.log_dir + '/config/reports.json'
+        os.makedirs(os.path.dirname(filename), exist_ok=True)
+        json.dump(self.reports, open(filename, 'w'), indent=2)
+        return self.reports
+
+    def export_folder(self, folder):
+        reports = [r for r in self.reports if r['path'].startswith(folder)]
+        for r in reports:
+            print(r['name'])
+            # continue
+            path = r['path'].replace(folder, '')
+            r['filename'] = f"{path}/{r['name']}.pdf"
+            r['params'] = list(re.findall(r'\[([^\]]+)\]', r['filename']))
+            for i, p in enumerate(r['params']):
+                r['filename'] = r['filename'].replace('[' + p + ']', '{' + str(i) + '}')
+            self.export(r, 'PDF')
+
+    def export(self, report, format='XML'):
+        headers = {
+            '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/'
+        }
+        soap = self.template.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)
+        parts = decoder.MultipartDecoder.from_response(r).parts
+        # for i, p in enumerate(parts):
+        #     with open(f"export/{report['report']}_{i}.xml", "w") as f:
+        #         f.write(p.text.replace('\x81', ''))
+
+        meta = {'required': {}, 'optional': {}}
+        bs = BeautifulSoup(parts[1].content, 'lxml')
+        # print(bs.prettify())
+        for sv in bs.find_all('selectvalue'):
+            k = sv['parameter']
+            req = 'required' if sv['required'] == 'true' else 'optional'
+            v = dict([(opt['usevalue'], opt['displayvalue']) for opt in sv.find_all('selectoption')])
+            meta[req][k] = v
+
+            # <selectValue specname="selectValue" parameter="p_Auswahl_Monate" range="false" required="false" hideAdornments="false" multiSelect="true" prePopulateIfParentOptional="false" selectValueUI="checkboxGroup" rowsPerPage="5000" autoSubmit="false" name="_P3591935746" style="width:100%" columnName="Alle Autoh�user" roid="i9241">
+            #     <selectChoices>
+            #         <selectOption useValue="letzte 13 Monate" displayValue="letzte 13 Monate"/>
+            #     </selectChoices>
+            #     <selectOptions>
+            #         <selectOption useValue="letzte 13 Monate" displayValue="letzte 13 Monate"/>
+            #     </selectOptions>
+            # </selectValue>
+        filename = self.log_dir + f"/config/{report['name']}.json"
+        os.makedirs(os.path.dirname(filename), exist_ok=True)
+        json.dump(meta, open(filename, 'w'), indent=2)
+        
+        if format == 'PDF':
+            return self.export_pdf(report, meta)
+        
+        payload = json.dumps({'reportspec_stubbed': parts[2].text, 'storeid': report['id']})
+        token = re.findall(r'<bus:authenticityToken xsi:type="xs:base64Binary">(.*)</bus:authenticityToken>', parts[0].text)[0]
+        headers = {
+            'Content-Type': 'application/json; charset=UTF-8',
+            'X-XSRF-TOKEN': self.session.cookies.get('XSRF-TOKEN'),
+            'authenticityToken': token,
+            'X-UseRsConsumerMode': 'true',
+            'cafContextId': self.caf
+        }
+
+        r = self.session.post(self.webservice + 'v1/reports/unstubreport', data=payload, headers=headers)
+        unstubbed = json.loads(r.content.decode('latin-1'))['reportspec_full']
+        unstubbed = re.sub(r' iid="[^"]*"', '', unstubbed).replace('\x9f', '').replace('\x96', '')
+
+        bs = BeautifulSoup(unstubbed, 'xml')
+        for xa in bs.find_all('XMLAttributes'):
+            xa.decompose()
+
+        filename = self.export_dir + f"unstubbed/{report['name']}.xml"
+        os.makedirs(os.path.dirname(filename), exist_ok=True)
+        with open(filename, "w") as f:
+            f.write(bs.prettify())
+        return soap
+
+    def export_pdf(self, report, meta):
+        headers = {
+            '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 len(report['params']) == 0:
+            params = {}
+            filename = report['filename']
+            self.request_file(report, headers, params, filename)
+            return True
+        if len(report['params']) == 1:
+            key1 = report['params'][0]
+            for k1, v1 in meta['optional'][key1].items():
+                filename = report['filename'].format(v1)
+                params = {key1: {k1: v1}}
+                self.request_file(report, headers, params, filename)
+            return True
+        if len(report['params']) == 2:
+            key1, key2 = report['params']
+            for k1, v1 in meta['optional'][key1].items():
+                for k2, v2 in meta['optional'][key2].items():
+                    filename = report['filename'].format(v1, v2)
+                    params = {key1: {k1: v1}, key2: {k2: v2}}
+                    self.request_file(report, headers, params, filename)
+            return True            
+
+    def request_file(self, report, headers, params, filename):
+        soap = self.template.render({"caf": self.caf, "cam": self.cam,
+                                     "report": report, "format": 'PDF',
+                                     "prompt": 'false', "tracking": "", "params": params})
+        try:
+            r = self.session.post(self.webservice + 'v1/reports', data=soap, headers=headers)
+        except UnicodeEncodeError:
+            filename = self.log_dir + '/' + os.path.basename(filename) + '.log'
+            os.makedirs(os.path.dirname(filename), exist_ok=True)
+            with open(filename, "w") as f:
+                f.write(soap)
+            return False
+
+        if r.status_code == 200:
+            parts = decoder.MultipartDecoder.from_response(r).parts
+            filename = self.export_dir + filename
+            os.makedirs(os.path.dirname(filename), exist_ok=True)
+            with open(filename, "wb") as f:
+                f.write(parts[1].content)
+        else:
+            filename = self.log_dir + '/' + os.path.basename(filename) + '.log'
+            os.makedirs(os.path.dirname(filename), exist_ok=True)
+            with open(filename, "wb") as f:
+                f.write(r.content)
+        return True
+
+    def admin(self):
+        r = self.session.get(self.webservice + "v1/disp?m_p_owner=&changed_m_p_owner=0&changed_genprop=0&so.select=&so.return.m=portal%2Fproperties_general.xts&so.defaultLocation=&so.defaultObject=&ro_name=false&origDefLang=de&m_email=&m_defaultName=&m_t_default_name_de=CARLO_F_Belege&m_t_default_description_de=&m_t_default_screenTip_de=&ifrmcmd=save&m_p_disabled=false&m_p_hidden=false&icon_radio=standard&m_transloc=de&pty_activeLang=de&pty_deactivLang=&pty_del=&pty_add=&pty_name=CARLO_F_Belege&pty_scrt=&pty_desc=&m_new_class=&b_action=xts.run&sharedPagesChanged=&from_tool=true&backURL=%2Fbi%2Fv1%2Fdisp%3Fb_action%3Dxts.run%26m%3Dportal%2Flegacy_tools%2Ftools_directory.xts%26m_pathID%3Di339AF66BADEC411E943590402582B75B%26m_path%3DCAMID%28%2522%253a%2522%29%252fdataSource%255b%2540name%253d%2527CARLO_F_Belege%2527%255d%26tool_tab%3Dd&m_selectedPage=&m_classSubtype=&m_obj=CAMID%28%22%3A%22%29%2FdataSource%5B%40name%3D%27CARLO_F_Belege%27%5D%2FdataSourceConnection%5B%40name%3D%27CARLO_F_Belege%27%5D&b_report_type=&encoding=UTF-8&m=portal%2Fproperties_connection.xts&m_class=dataSourceConnection&m_name=CARLO_F_Belege&ui.cafcontextid=CAFW000000a0Q0FGQTYwMDAwMDAwMDlBaFFBQUFERWpZV1g4bEExbmlJd29ualF1cEgwWVVTeGtnY0FBQUJUU0VFdE1qVTJJQUFBQUxha3gqeHQ5TXN3Ukw2dGhjMTJVRzN1NVhaMWVzNU5FLXRvWXI1VzlwYTE0NDI0NzN8cHM_&m_path=CAMID%28%22%3A%22%29%2FdataSource%5B%40name%3D%27CARLO_F_Belege%27%5D&cmd=&m_location=&reportLocation=&ps_nav_op=maintain&ps_nav_stack=&ps_nav_source=portal%2Fproperties_general.xts")
+        print(r.cookies.keys())
+
+
+# CRN=http%3A%2F%2Fdeveloper.cognos.com%2Fceba%2Fconstants%2FbiDirectionalOptionEnum%23biDirectionalFeaturesEnabled%3Dfalse%26http%3A%2F%2Fdeveloper.cognos.com%2Fceba%2Fconstants%2FsystemOptionEnum%23accessibilityFeatures%3Dfalse%26skin%3Dcorporate%26contentLocale%3Dde-de%26showHiddenObjects%3Dfalse%26showWelcomePage%3Dtrue%26backgroundSessionLogging%3D1970-01-01%2B00%253A00%253A00%26showOptionSummary%3Dtrue%26productLocale%3Dde%26listViewSeparator%3Dnone%26showHints%3DhideAll%26timeZoneID%3DEurope%252FBerlin%26linesPerPage%3D15%26displayMode%3Dlist%26automaticPageRefresh%3D30%26format%3DHTML%26columnsPerPage%3D3%26;
+# cea-ssa=false;
+# userCapabilities=f%3Bfdbffc6d%3Bf07c1faf%3Bff27defa%26AwcAAABTSEEtMjU2FAAAAMSNhZfyUDWeIjCieNC6kfRhRLGSDPui1gb2UKZPMWVW5x3QHrHM%2BIVk5gFTzsNq1oOMioU%3D;
+# userCapabilitiesEx=603%3Bf%3Bfdbffc6d%3Bf07c1faf%3Bff27defa%26AhQAAADEjYWX8lA1niIwonjQupH0YUSxkgcAAABTSEEtMjU2IAAAAMI%2BRz7opwjhYGXonwHJpD3Ya1agg0lFOa1JK%2FkZiDTS;
+# caf=CAFW000000e0Q0FGQTYwMDAwMDAwM2FBaFFBQUFERWpZV1g4bEExbmlJd29ualF1cEgwWVVTeGtnY0FBQUJUU0VFdE1qVTJJQUFBQUY3d3JJLW1zREhXcnQtT0VWLUhhKjF0c01TZFVrWlB0aXNYdEVJOUcqZm40NDI0NzN8MTAxOjc5ZTJiNDdhLTIyNjgtZDcxYS1jMGIxLWYwMDYyY2QxYWQwZTozNDAxNTQ5MzI1;
+# cc_session=s_cc:|s_conf:na|s_sch:td|s_hd:sa|s_serv:na|s_disp:na|s_set:|s_dep:na|s_dir:na|s_sms:dd|s_ct:sa|s_cs:sa|s_so:sa|e_hp:CAMID(*22CognosEx*3au*3auid*3dglobal1*22)|e_proot:Team*20Content|prootid:i1F610DE4196544319A27C5709282EF95|e_mroot:Eigene*20Ordner|mrootid:iBAA3C16EC2D743B7B221BBFCDBC625D7|e_mrootpath:CAMID(*22CognosEx*3au*3auid*3dglobal1*22)*2ffolder*5b*40name*3d*27Eigene*20Ordner*27*5d|e_user:Global*20Cube|e_tenantID:|e_tenantDisplayName:|e_showTenantInfo:false|e_isSysAdmin:true|e_isTenantAdmin:false|e_isImpersonating:false|cl:de-de|dcid:i1F610DE4196544319A27C5709282EF95|show_logon:false|uig:|ui:|rsuiprofile:all|lch:f|lca:f|ci:f|write:true|eom:0|pp:3401549325;
+# up=H4sIAAAAAAAAAFWQ204CMRCGX4X0GuIuF5rlDgXEBBQUgxIT0sOwW2k7mx4UNL67sxgRk0ma+Tr5+nc+WdQWVujgZsB6bJg81vBydgneaMfaLGzp6LFHF8E7qCw0cIPe8kh4vJhOqBdcbkuPyakHCEGjm2BZalfSRF5cZJ0sp2plWe9QjbXC97F2MdBEpRX0jSGaAvhbboHgtUHBTU4w7usGcCnJHwlUaGHGywZSR7x5Umij434EPCYPZN1wE6DNdOg7dHuL6Y/VHlWScYKSm0ai4BhIKXB34hVkPFEomtnNu4UTtvi4fyrP1aLO+XJerLq7t2c7CtP5ek0Kae0MfeTmJ5jQA+3JRNvg5jfY0HFhQB3lCjY8mfjv062rJJpIEmnn7jRn5xBV8AAL2MWjnu76KSL7+gaz/bFgzAEAAA==;
+# MRUStorage=%7B%22xQ29nbm9zRXg6dTp1aWQ9Z2xvYmFsMQ__%22%3Atrue%7D;
+# usersessionid=AggAAADOAvteAAAAAAoAAAAPMXuCsi7eLj2GFAAAAMSNhZfyUDWeIjCieNC6kfRhRLGSBwAAAFNIQS0yNTYgAAAAxhTjzCpYnRF3ryJ/z/gpU9G5UeFYyp1vKc/PjuCT/r4=;
+# cam_passport=MTsxMDE6NzllMmI0N2EtMjI2OC1kNzFhLWMwYjEtZjAwNjJjZDFhZDBlOjM0MDE1NDkzMjU7MDszOzA7
+
+if __name__ == '__main__':
+    caws = ca_webscraper()
+    caws.login()
+    caws.report_list()
+    caws.export_folder('Team Content/Export/Test')

+ 26 - 0
gctools/file_rename.py

@@ -0,0 +1,26 @@
+import csv
+from pathlib import Path
+from datetime import datetime
+
+base_dir = "C:/Projekte/Python"
+# timestamp = date.today().strftime('%Y%m%d')
+
+def main():
+    csv_reader = csv.reader(open(base_dir + '/gctools/DSG_Uebersetzung.csv', 'r', encoding='latin-1'), delimiter=';')
+    translation = dict([(row[0], row[1]) for row in csv_reader if row[1] != ''])
+    target = Path(base_dir + '/export_dsg')
+    for filename in Path(base_dir + '/export').glob('*'):
+        for (old, new) in translation.items():
+            if '_' + old in filename.name:
+                new_name = filename.name.replace(old, new)
+                new_timestamp = datetime.fromtimestamp(filename.stat().st_mtime).strftime('%Y%m%d')
+
+                new_name = new_name[:-4] + '_' + new_timestamp + new_name[-4:]
+                new_filename = target.joinpath(new_name)
+                print(filename.name + ' => ' + new_filename.name)
+                filename.rename(new_filename)
+                break
+
+
+if __name__ == '__main__':
+    main()

+ 0 - 0
gctools/model_datasources.py


+ 95 - 0
gctools/service_status.py

@@ -0,0 +1,95 @@
+import psutil
+import requests
+from datetime import datetime
+from pathlib import Path
+import config
+
+
+def get_service(name):
+    service = None
+    try:
+        service = psutil.win_service_get(name)
+        service = service.as_dict()
+        if service['pid']:
+            service['process'] = psutil.Process(service['pid']).as_dict()
+        else:
+            service['process'] = ''
+    except Exception as ex:
+        print(str(ex))
+    return service
+
+
+def process_info(program_path):
+    offset = len(program_path) + 1
+    info = []
+    for p in psutil.process_iter():
+        try:
+            if p.exe().startswith(program_path):
+                info.append({'path': p.exe()[offset:], 'memory': str(p.memory_info().rss//1048576), 'cpu': str(p.cpu_percent())})
+        except psutil.AccessDenied:
+            pass
+    return sorted(info, key=lambda x: x['path'])
+
+
+def service_status(name, stats=False):
+    service = get_service(name)
+
+    if not service:
+        print(f"Dienst '{name}' nicht vorhanden !!")
+        return
+
+    print(f"Dienst {service['display_name']} ({name})... ", end='')
+    if service['status'] != 'running':
+        print('inaktiv!')
+        print(f"!! Fehler: Status {service['status']} !!")
+        return
+            
+    print("läuft.")
+    delta = (datetime.now() - datetime.fromtimestamp(service['process']['create_time'])).total_seconds()
+    uptime = "{0:n} Tage, {1:n} Stunden, {2:n} Minuten".format(
+             delta//86400, (delta%86400)//3600, ((delta%86400)%3600)//60)
+    print(f"   Pfad:      {service['process']['exe']} ")
+    print(f"   Laufzeit:  {uptime} ")
+    # print(f"   Speichernutzung: {service['process']['memory_info'].rss//1048576}")
+
+    if not stats:
+        return
+
+    program_path = str(Path(service['process']['exe']).parent.parent)
+    print('')
+    print('   Prozess                           RAM       CPU')
+    for info in process_info(program_path):
+        print('    ' + info['path'].ljust(32) + (info['memory'] + ' MB').rjust(8) + (info['cpu'] + ' %').rjust(9))
+
+
+def webservice_status(site):
+    print(f"Cognos-Webservice {site}... ", end='')
+    try:
+        res = requests.get(site)
+        if res.status_code not in [200, 441]:
+            print(res.status_code)
+            if b'DPR-ERR-2109' in res.content:
+                print('!! Fehler: Dienst wird noch gestartet, Dispatcher ist nicht erreichbar !!')
+        else:
+            print('online.')
+            if site.endswith('health'):
+                print(res.json())
+        
+    except requests.ConnectionError as e:
+        print('OFFLINE !!')
+        print('!! Fehler: Dienst ist nicht erreichbar !!')
+        return
+
+
+def cognos11_services():
+    service_status('apacheds-cognos')
+    service_status('MsgServ')
+    service_status('ol_cognoscm')
+    service_status('IBM Cognos', stats=True)
+    cfg = config.config()
+    webservice_status(cfg.cognos_url)
+    webservice_status(cfg.cognos_url + 'health')
+
+
+if __name__ == '__main__':
+    cognos11_services()

+ 40 - 0
gctools/service_status.spec

@@ -0,0 +1,40 @@
+# -*- mode: python ; coding: utf-8 -*-
+
+
+block_cipher = None
+
+
+a = Analysis(['service_status.py'],
+             pathex=[],
+             binaries=[],
+             datas=[],
+             hiddenimports=[],
+             hookspath=[],
+             hooksconfig={},
+             runtime_hooks=[],
+             excludes=[],
+             win_no_prefer_redirects=False,
+             win_private_assemblies=False,
+             cipher=block_cipher,
+             noarchive=False)
+pyz = PYZ(a.pure, a.zipped_data,
+             cipher=block_cipher)
+
+exe = EXE(pyz,
+          a.scripts,
+          a.binaries,
+          a.zipfiles,
+          a.datas,  
+          [],
+          name='service_status',
+          debug=False,
+          bootloader_ignore_signals=False,
+          strip=False,
+          upx=True,
+          upx_exclude=[],
+          runtime_tmpdir=None,
+          console=True,
+          disable_windowed_traceback=False,
+          target_arch=None,
+          codesign_identity=None,
+          entitlements_file=None )

+ 277 - 0
gctools/templates/async_response.xml

@@ -0,0 +1,277 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:bus="http://developer.cognos.com/schemas/bibus/3/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsd="http://www.w3.org/2001/XMLSchema" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
+    <SOAP-ENV:Header>
+        <bus:biBusHeader xsi:type="bus:biBusHeader">
+            <bus:CAF xsi:type="bus:CAF">
+                <bus:contextID xsi:type="xs:string">CAFW000000a0Q0FGQTYwMDAwMDAwMDlBaFFBQUFDWktBVGJydTlxWGpQKipqUk0zbmYqaFhLMk1BY0FBQUJUU0VFdE1qVTJJQUFBQUx2N1ZHR3Q1QTY1YktJWUFjOWpneDNpMDlUUW5jMnJiMm9pd3J6bThkVjI0NTc5ODV8cnM_</bus:contextID>
+            </bus:CAF>
+            <bus:CAM xsi:type="bus:CAM">
+                <bus:authenticityToken xsi:type="xs:base64Binary">VjGlr8StOHcetXpJhspnhXUUWWtw/GeNY5cLbVNfIgZZOw==</bus:authenticityToken>
+                <bus:CAMPassport xsi:type="bus:CAMPassport">
+                    <bus:canCallLogon xsi:type="xs:boolean">false</bus:canCallLogon>
+                    <bus:generation xsi:type="xs:int">3</bus:generation>
+                    <bus:id xsi:type="xs:string">101:d01c4c24-eb28-55ea-2799-53742a46b341:0172775993</bus:id>
+                    <bus:isAnonymous xsi:type="xs:boolean">false</bus:isAnonymous>
+                    <bus:logEnabled xsi:type="xs:boolean">false</bus:logEnabled>
+                </bus:CAMPassport>
+                <bus:roles xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="xs:string[0]"/>
+                <bus:settings xsi:type="bus:CAMSettings">
+                    <bus:anonymousAllowed xsi:type="xs:boolean">false</bus:anonymousAllowed>
+                    <bus:namespacesConfigured xsi:type="xs:boolean">true</bus:namespacesConfigured>
+                </bus:settings>
+                <bus:userSessionID xsi:type="xs:base64Binary">AggAAAD0IE9iAAAAAAoAAACQX6JwLKdphgGPFAAAAJkoBNuu72peM/76NEzed/6FcrYwBwAAAFNIQS0yNTYgAAAApa/ErTh3HrV6SYbKZ4V1FFlrcPxnjWOXC21TXyIGWTs=</bus:userSessionID>
+            </bus:CAM>
+            <bus:dispatcherTransportVars xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:dispatcherTransportVar[]">
+                <item xsi:type="bus:dispatcherTransportVar">
+                    <bus:name xsi:type="xs:string">rs</bus:name>
+                    <bus:value xsi:type="xs:string">true</bus:value>
+                </item>
+                <item xsi:type="bus:dispatcherTransportVar">
+                    <bus:name xsi:type="xs:string">html</bus:name>
+                    <bus:value xsi:type="xs:string">false</bus:value>
+                </item>
+                <item xsi:type="bus:dispatcherTransportVar">
+                    <bus:name xsi:type="xs:string">originalSOAPAction</bus:name>
+                    <bus:value xsi:type="xs:string">http://www.ibm.com/xmlns/prod/cognos/reportService/202004/</bus:value>
+                </item>
+            </bus:dispatcherTransportVars>
+            <bus:hdrSession xsi:type="bus:hdrSession">
+                <bus:environmentVars xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:environmentVar[5]">
+                    <item xsi:type="bus:environmentVar">
+                        <bus:name xsi:type="xs:string">ORIGINAL_CONTENT_LENGTH</bus:name>
+                        <bus:value xsi:type="xs:string">954592</bus:value>
+                    </item>
+                    <item xsi:type="bus:environmentVar">
+                        <bus:name xsi:type="xs:string">WEB_CONTENT_ROOT</bus:name>
+                        <bus:value xsi:type="xs:string"/>
+                    </item>
+                    <item xsi:type="bus:environmentVar">
+                        <bus:name xsi:type="xs:string">SERVER_NAME</bus:name>
+                        <bus:value xsi:type="xs:string">localhost</bus:value>
+                    </item>
+                    <item xsi:type="bus:environmentVar">
+                        <bus:name xsi:type="xs:string">HTTP_ACCEPT_LANGUAGE</bus:name>
+                        <bus:value xsi:type="xs:string">de-DE,de;q=0.9,en-US;q=0.8,en;q=0.7</bus:value>
+                    </item>
+                    <item xsi:type="bus:environmentVar">
+                        <bus:name xsi:type="xs:string">Accept-Encoding</bus:name>
+                        <bus:value xsi:type="xs:string">gzip, deflate, br</bus:value>
+                    </item>
+                </bus:environmentVars>
+                <bus:formFieldVars xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:formFieldVar[0]"/>
+                <bus:setCookieVars xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:setCookieVar[0]"/>
+            </bus:hdrSession>
+            <bus:providers xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:provider[0]"/>
+            <bus:tracking 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">wGq49wsC9qdwv8qv2Cjldj4dGy9vwhd2GwMswwhl</bus:id>
+                    <bus:nodeID xsi:type="xs:string">62</bus:nodeID>
+                    <bus:processID xsi:type="xs:int">11848</bus:processID>
+                    <bus:status xsi:type="xs:string">working</bus:status>
+                </bus:conversationContext>
+                <bus:hopCount xsi:type="xs:integer">2</bus:hopCount>
+                <bus:providers xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:provider[0]"/>
+                <bus:requestContext xsi:type="xs:string">hwql8sjqvqd4MGj8q2wC2hjG24Gl2whl82ljw9C8</bus:requestContext>
+                <bus:sessionContext xsi:type="xs:string">f:0:A38698E0A0256870DC3837DB1A7B47DBFA24FA9B1061BCE67B89033929ACD440</bus:sessionContext>
+            </bus:tracking>
+            <bus:userCapabilityCache xsi:type="bus:userCapabilityCache">
+                <bus:signature xsi:type="xs:base64Binary">AwcAAABTSEEtMjU2FAAAAJkoBNuu72peM/76NEzed/6FcrYwExLf42MvxAZQ04f3NV9EJ/9FOWku3EdZT4Ot0XvFl28=</bus:signature>
+                <bus:userCapabilities xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:userCapabilityEnum[73]">
+                    <item xsi:type="bus:userCapabilityEnum">canUseAnalysisStudio</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseCognosViewer</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseCognosViewerContextMenu</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseCognosViewerRunWithOptions</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseCognosViewerSelection</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseCognosViewerToolbar</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseDataManager</item>
+                    <item xsi:type="bus:userCapabilityEnum">canReceiveDetailedErrors</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseDrillThroughAssistant</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseEventStudio</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseDashboardViewer</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseDashboardViewerFileManagement</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseGlossary</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseShowHiddenObjectsPreference</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseLineage</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUsePackageDataSources</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseQueryStudio</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseQueryStudioAdvancedMode</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseQueryStudioFileManagement</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseScheduling</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseSchedulingPriority</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseObjectCapabilities</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseSpecifications</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseConditionalSubscriptions</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseReportStudio</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseBursting</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseReportStudioFileManagement</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseHTML</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseUserDefinedSQL</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseWebBasedModeling</item>
+                    <item xsi:type="bus:userCapabilityEnum">canCreateSnapshots</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUploadFiles</item>
+                    <item xsi:type="bus:userCapabilityEnum">canManageContent</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseInteractiveDashboard</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseExploration</item>
+                    <item xsi:type="bus:userCapabilityEnum">canGenerateCSVOutput</item>
+                    <item xsi:type="bus:userCapabilityEnum">canGeneratePDFOutput</item>
+                    <item xsi:type="bus:userCapabilityEnum">canGenerateXLSOutput</item>
+                    <item xsi:type="bus:userCapabilityEnum">canGenerateXMLOutput</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseMyDataSets</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseMobileAdministration</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseCognosInsight</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseMobileService</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseQueryServiceTool</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseAdministrationPortal</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseContentStoreTool</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseServerAdministrationTool</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseDataSourcesTool</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseDistributionListsAndContactsTool</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUsePrintersTool</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseMonitorActivityTool</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseCapabilitiesTool</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUsePortalAdministrationTool</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseUsersGroupsAndRolesTool</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseSchedulingByDay</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseSchedulingByHour</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseSchedulingByMinute</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseSchedulingByMonth</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseSchedulingByTrigger</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseSchedulingByWeek</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseSchedulingByYear</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUsePersonalDataSourceCredentials</item>
+                    <item xsi:type="bus:userCapabilityEnum">canImportRelationalMetadata</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseExternalData</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseSelfServicePackageWizard</item>
+                    <item xsi:type="bus:userCapabilityEnum">canCollaborate</item>
+                    <item xsi:type="bus:userCapabilityEnum">canLaunchCollaborationTools</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseCollaborationFeatures</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUpdateRepositoryRules</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseRepository</item>
+                    <item xsi:type="bus:userCapabilityEnum">canViewContentInRepository</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseAdvancedDashboardFeatures</item>
+                    <item xsi:type="bus:userCapabilityEnum">canUseInteractiveDashboardFeatures</item>
+                </bus:userCapabilities>
+            </bus:userCapabilityCache>
+            <bus:userPreferenceVars xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:userPreferenceVar[18]">
+                <item xsi:type="bus:userPreferenceVar">
+                    <bus:name xsi:type="xs:string">linesPerPage</bus:name>
+                    <bus:value xsi:type="xs:string">15</bus:value>
+                </item>
+                <item xsi:type="bus:userPreferenceVar">
+                    <bus:name xsi:type="xs:string">listViewSeparator</bus:name>
+                    <bus:value xsi:type="xs:string">none</bus:value>
+                </item>
+                <item xsi:type="bus:userPreferenceVar">
+                    <bus:name xsi:type="xs:string">timeZoneID</bus:name>
+                    <bus:value xsi:type="xs:string">Europe/Berlin</bus:value>
+                </item>
+                <item xsi:type="bus:userPreferenceVar">
+                    <bus:name xsi:type="xs:string">format</bus:name>
+                    <bus:value xsi:type="xs:string">HTML</bus:value>
+                </item>
+                <item xsi:type="bus:userPreferenceVar">
+                    <bus:name xsi:type="xs:string">skin</bus:name>
+                    <bus:value xsi:type="xs:string">corporate</bus:value>
+                </item>
+                <item xsi:type="bus:userPreferenceVar">
+                    <bus:name xsi:type="xs:string">showWelcomePage</bus:name>
+                    <bus:value xsi:type="xs:string">true</bus:value>
+                </item>
+                <item xsi:type="bus:userPreferenceVar">
+                    <bus:name xsi:type="xs:string">isToolbarDocked</bus:name>
+                    <bus:value xsi:type="xs:string">true</bus:value>
+                </item>
+                <item xsi:type="bus:userPreferenceVar">
+                    <bus:name xsi:type="xs:string">backgroundSessionLogging</bus:name>
+                    <bus:value xsi:type="xs:string">1970-01-01 00:00:00</bus:value>
+                </item>
+                <item xsi:type="bus:userPreferenceVar">
+                    <bus:name xsi:type="xs:string">showHints</bus:name>
+                    <bus:value xsi:type="xs:string">hideAll</bus:value>
+                </item>
+                <item xsi:type="bus:userPreferenceVar">
+                    <bus:name xsi:type="xs:string">http://developer.cognos.com/ceba/constants/systemOptionEnum#accessibilityFeatures</bus:name>
+                    <bus:value xsi:type="xs:string">false</bus:value>
+                </item>
+                <item xsi:type="bus:userPreferenceVar">
+                    <bus:name xsi:type="xs:string">http://developer.cognos.com/ceba/constants/biDirectionalOptionEnum#biDirectionalFeaturesEnabled</bus:name>
+                    <bus:value xsi:type="xs:string">false</bus:value>
+                </item>
+                <item xsi:type="bus:userPreferenceVar">
+                    <bus:name xsi:type="xs:string">displayMode</bus:name>
+                    <bus:value xsi:type="xs:string">list</bus:value>
+                </item>
+                <item xsi:type="bus:userPreferenceVar">
+                    <bus:name xsi:type="xs:string">showOptionSummary</bus:name>
+                    <bus:value xsi:type="xs:string">true</bus:value>
+                </item>
+                <item xsi:type="bus:userPreferenceVar">
+                    <bus:name xsi:type="xs:string">automaticPageRefresh</bus:name>
+                    <bus:value xsi:type="xs:string">30</bus:value>
+                </item>
+                <item xsi:type="bus:userPreferenceVar">
+                    <bus:name xsi:type="xs:string">columnsPerPage</bus:name>
+                    <bus:value xsi:type="xs:string">3</bus:value>
+                </item>
+                <item xsi:type="bus:userPreferenceVar">
+                    <bus:name xsi:type="xs:string">productLocale</bus:name>
+                    <bus:value xsi:type="xs:string">de</bus:value>
+                </item>
+                <item xsi:type="bus:userPreferenceVar">
+                    <bus:name xsi:type="xs:string">showHiddenObjects</bus:name>
+                    <bus:value xsi:type="xs:string">false</bus:value>
+                </item>
+                <item xsi:type="bus:userPreferenceVar">
+                    <bus:name xsi:type="xs:string">contentLocale</bus:name>
+                    <bus:value xsi:type="xs:string">de-de</bus:value>
+                </item>
+            </bus:userPreferenceVars>
+        </bus:biBusHeader>
+    </SOAP-ENV:Header>
+    <SOAP-ENV:Body>
+        <rns1:runSpecificationResponse xmlns:rns1="http://developer.cognos.com/schemas/reportService/1">
+            <bus:result xsi:type="bus:asynchReply">
+                <bus:details xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:asynchDetail[0]"/>
+                <bus:secondaryRequests xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:asynchSecondaryRequest[7]">
+                    <item xsi:type="bus:asynchSecondaryRequest">
+                        <bus:name xsi:type="xs:string">wait</bus:name>
+                        <bus:options xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:option[0]"/>
+                        <bus:parameters xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:parameterValue[0]"/>
+                    </item>
+                    <item xsi:type="bus:asynchSecondaryRequest">
+                        <bus:name xsi:type="xs:string">cancel</bus:name>
+                        <bus:options xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:option[0]"/>
+                        <bus:parameters xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:parameterValue[0]"/>
+                    </item>
+                    <item xsi:type="bus:asynchSecondaryRequest">
+                        <bus:name xsi:type="xs:string">print</bus:name>
+                        <bus:options xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:option[0]"/>
+                        <bus:parameters xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:parameterValue[0]"/>
+                    </item>
+                    <item xsi:type="bus:asynchSecondaryRequest">
+                        <bus:name xsi:type="xs:string">save</bus:name>
+                        <bus:options xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:option[0]"/>
+                        <bus:parameters xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:parameterValue[0]"/>
+                    </item>
+                    <item xsi:type="bus:asynchSecondaryRequest">
+                        <bus:name xsi:type="xs:string">saveAs</bus:name>
+                        <bus:options xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:option[0]"/>
+                        <bus:parameters xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:parameterValue[0]"/>
+                    </item>
+                    <item xsi:type="bus:asynchSecondaryRequest">
+                        <bus:name xsi:type="xs:string">email</bus:name>
+                        <bus:options xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:option[0]"/>
+                        <bus:parameters xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:parameterValue[0]"/>
+                    </item>
+                    <item xsi:type="bus:asynchSecondaryRequest">
+                        <bus:name xsi:type="xs:string">render</bus:name>
+                        <bus:options xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:option[0]"/>
+                        <bus:parameters xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:parameterValue[0]"/>
+                    </item>
+                </bus:secondaryRequests>
+                <bus:status xsi:type="bus:asynchReplyStatusEnum">working</bus:status>
+            </bus:result>
+        </rns1:runSpecificationResponse>
+    </SOAP-ENV:Body>
+</SOAP-ENV:Envelope>

+ 159 - 0
gctools/templates/get_report.xml

@@ -0,0 +1,159 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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:hdrSession xsi:type="bus:hdrSession">
+				<bus:formFieldVars SOAP-ENC:arrayType="bus:formFieldVar[]" xsi:type="SOAP-ENC:Array">
+					<item xsi:type="bus:formFieldVar">
+						<name xsi:type="xsd:string">_ContextBlockSize</name>
+						<value xsi:type="xsd:string">1000000</value>
+					</item>
+					<item xsi:type="bus:formFieldVar">
+						<name xsi:type="xsd:string">ignoreXHTMLStrict</name>
+						<value xsi:type="xsd:string">true</value>
+					</item>
+				</bus:formFieldVars>
+			</bus:hdrSession>
+			<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">{{tracking}}</bus:tracking>
+		</bus:biBusHeader>
+	</SOAP-ENV:Header>
+	<SOAP-ENV:Body>
+		<rns1:run>
+			<bus:objectPath xsi:type="bus:searchPathSingleObject">storeID(&quot;{{report.id}}&quot;)</bus:objectPath>
+			<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[{{params|count}}]" xsi:type="SOAP-ENC:Array">
+{% for key, p in params.items() %}
+				<item xsi:type="bus:parameterValue">
+					<bus:name xsi:type="xs:string">{{key}}</bus:name>
+					<bus:value xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:parmValueItem[{{p|count}}]">
+{% for use, display in p.items() %}
+						<item xsi:type="bus:simpleParmValueItem">
+							<bus:inclusive xsi:type="xs:boolean">true</bus:inclusive>
+							<bus:display xsi:type="xs:string">{{display}}</bus:display>
+							<bus:use xsi:type="xs:string">{{use}}</bus:use>
+						</item>
+{% endfor %}
+					</bus:value>
+				</item>
+{% endfor %}
+			</bus:parameterValues>
+
+			<bus:options SOAP-ENC:arrayType="bus:option[]" xsi:type="SOAP-ENC:Array">
+				<item xsi:type="bus:genericOptionAnyURI">
+					<bus:name xsi:type="xsd:string">runOptionEnum#globalParameters</bus:name>
+					<bus:value xsi:type="xsd:string">[]</bus:value>
+				</item>
+				<item xsi:type="bus:asynchOptionInt">
+					<bus:name xsi:type="bus:asynchOptionEnum">primaryWaitThreshold</bus:name>
+					<bus:value xsi:type="xsd:int">600</bus:value>
+				</item>
+				<item xsi:type="bus:asynchOptionInt">
+					<bus:name xsi:type="bus:asynchOptionEnum">secondaryWaitThreshold</bus:name>
+					<bus:value xsi:type="xsd:int">600</bus:value>
+				</item>
+				<item xsi:type="bus:runOptionStringArray">
+					<bus:name xsi:type="bus:runOptionEnum">outputFormat</bus:name>
+					<bus:value xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="xsd:string[1]">
+						<item>{{format}}</item>
+					</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:runOptionAnyURI">
+					<bus:name xsi:type="bus:runOptionEnum">xslURL</bus:name>
+					<bus:value xsi:type="xsd:string">V5html_viewer.xsl</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:runOptionBoolean">
+					<bus:name xsi:type="bus:runOptionEnum">prompt</bus:name>
+					<bus:value xsi:type="xsd:boolean">{{prompt}}</bus:value>
+				</item>
+				<item xsi:type="bus:runOptionAnyURI">
+					<bus:name xsi:type="bus:runOptionEnum">outputLocation</bus:name>
+					<bus:value xsi:type="xsd:string">http://developer.cognos.com/ceba/constants/temporaryObjectLocationEnum#serverFileSystem</bus:value>
+				</item>
+				<item xsi:type="bus:runOptionData">
+					<bus:name xsi:type="bus:runOptionEnum">data</bus:name>
+					<bus:value xsi:type="bus:dataEnum">runWithAllData</bus:value>
+				</item>
+				<item xsi:type="bus:genericOptionBoolean">
+					<bus:name xsi:type="xsd:string">http://developer.cognos.com/ceba/constants/systemOptionEnum#accessibilityFeatures</bus:name>
+					<bus:value xsi:type="xsd:boolean">false</bus:value>
+				</item>
+				<item xsi:type="bus:genericOptionBoolean">
+					<bus:name xsi:type="xsd:string">http://developer.cognos.com/ceba/constants/biDirectionalOptionEnum#biDirectionalFeaturesEnabled</bus:name>
+					<bus:value xsi:type="xsd:boolean">false</bus:value>
+				</item>
+				<item xsi:type="bus:runOptionBoolean">
+					<bus:name xsi:type="bus:runOptionEnum">returnOutputWhenAvailable</bus:name>
+					<bus:value xsi:type="xsd:boolean">true</bus:value>
+				</item>
+				<item xsi:type="bus:runOptionNameValueArray">
+					<bus:name xsi:type="bus:runOptionEnum">xslParameters</bus:name>
+					<bus:value xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:nameValue[]">
+						<item xsi:type="bus:nameValue">
+							<name xsi:type="xsd:string">CVGateway</name>
+							<value xsi:type="xsd:string">../v1/disp</value>
+						</item>
+						<item xsi:type="bus:nameValue">
+							<name xsi:type="xsd:string">renderIntermediateXML</name>
+							<value xsi:type="xsd:string">false</value>
+						</item>
+						<item xsi:type="bus:nameValue">
+							<name xsi:type="xsd:string">renderEnvironment</name>
+							<value xsi:type="xsd:string">false</value>
+						</item>
+					</bus:value>
+				</item>
+				<item xsi:type="bus:genericOptionBoolean">
+					<bus:name xsi:type="xsd:string">http://developer.cognos.com/ceba/constants/runOptionEnum#interactive</bus:name>
+					<bus:value xsi:type="xsd:boolean">true</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:run>
+	</SOAP-ENV:Body>
+</SOAP-ENV:Envelope>

+ 141 - 0
gctools/templates/request.xml

@@ -0,0 +1,141 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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:hdrSession xsi:type="bus:hdrSession">
+                <bus:formFieldVars SOAP-ENC:arrayType="bus:formFieldVar[]" xsi:type="SOAP-ENC:Array">
+                    <item xsi:type="bus:formFieldVar">
+                        <name xsi:type="xsd:string">_ContextBlockSize</name>
+                        <value xsi:type="xsd:string">1000000</value>
+                    </item>
+                    <item xsi:type="bus:formFieldVar">
+                        <name xsi:type="xsd:string">ignoreXHTMLStrict</name>
+                        <value xsi:type="xsd:string">true</value>
+                    </item>
+                </bus:formFieldVars>
+            </bus:hdrSession>
+            <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:run>
+            <bus:objectPath xsi:type="bus:searchPathSingleObject">storeID(&quot;{{report.id}}&quot;)</bus:objectPath>
+            <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:genericOptionAnyURI">
+                    <bus:name xsi:type="xsd:string">runOptionEnum#globalParameters</bus:name>
+                    <bus:value xsi:type="xsd:string">[]</bus:value>
+                </item>
+                <item xsi:type="bus:asynchOptionInt">
+                    <bus:name xsi:type="bus:asynchOptionEnum">primaryWaitThreshold</bus:name>
+                    <bus:value xsi:type="xsd:int">500</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:runOptionStringArray">
+                    <bus:name xsi:type="bus:runOptionEnum">outputFormat</bus:name>
+                    <bus:value xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="xsd:string[1]">
+                        <item>XHTML</item>
+                    </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:runOptionAnyURI">
+                    <bus:name xsi:type="bus:runOptionEnum">xslURL</bus:name>
+                    <bus:value xsi:type="xsd:string">V5html_viewer.xsl</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:runOptionBoolean">
+                    <bus:name xsi:type="bus:runOptionEnum">prompt</bus:name>
+                    <bus:value xsi:type="xsd:boolean">{{prompt}}</bus:value>
+                </item>
+                <item xsi:type="bus:runOptionAnyURI">
+                    <bus:name xsi:type="bus:runOptionEnum">outputLocation</bus:name>
+                    <bus:value xsi:type="xsd:string">http://developer.cognos.com/ceba/constants/temporaryObjectLocationEnum#serverFileSystem</bus:value>
+                </item>
+                <item xsi:type="bus:runOptionData">
+                    <bus:name xsi:type="bus:runOptionEnum">data</bus:name>
+                    <bus:value xsi:type="bus:dataEnum">runWithAllData</bus:value>
+                </item>
+                <item xsi:type="bus:genericOptionBoolean">
+                    <bus:name xsi:type="xsd:string">http://developer.cognos.com/ceba/constants/systemOptionEnum#accessibilityFeatures</bus:name>
+                    <bus:value xsi:type="xsd:boolean">false</bus:value>
+                </item>
+                <item xsi:type="bus:genericOptionBoolean">
+                    <bus:name xsi:type="xsd:string">http://developer.cognos.com/ceba/constants/biDirectionalOptionEnum#biDirectionalFeaturesEnabled</bus:name>
+                    <bus:value xsi:type="xsd:boolean">false</bus:value>
+                </item>
+                <item xsi:type="bus:runOptionBoolean">
+                    <bus:name xsi:type="bus:runOptionEnum">returnOutputWhenAvailable</bus:name>
+                    <bus:value xsi:type="xsd:boolean">true</bus:value>
+                </item>
+                <item xsi:type="bus:runOptionNameValueArray">
+                    <bus:name xsi:type="bus:runOptionEnum">xslParameters</bus:name>
+                    <bus:value xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:nameValue[]">
+                        <item xsi:type="bus:nameValue">
+                            <name xsi:type="xsd:string">CVGateway</name>
+                            <value xsi:type="xsd:string">../v1/disp</value>
+                        </item>
+                        <item xsi:type="bus:nameValue">
+                            <name xsi:type="xsd:string">renderIntermediateXML</name>
+                            <value xsi:type="xsd:string">false</value>
+                        </item>
+                        <item xsi:type="bus:nameValue">
+                            <name xsi:type="xsd:string">renderEnvironment</name>
+                            <value xsi:type="xsd:string">false</value>
+                        </item>
+                    </bus:value>
+                </item>
+                <item xsi:type="bus:genericOptionBoolean">
+                    <bus:name xsi:type="xsd:string">http://developer.cognos.com/ceba/constants/runOptionEnum#interactive</bus:name>
+                    <bus:value xsi:type="xsd:boolean">true</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:run>
+    </SOAP-ENV:Body>
+</SOAP-ENV:Envelope>

+ 0 - 0
gctools/templates/request_prompt.xml


La diferencia del archivo ha sido suprimido porque es demasiado grande
+ 65 - 0
gctools/templates/request_xlsx.xml


+ 60 - 0
gctools/templates/tracking.xml

@@ -0,0 +1,60 @@
+<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">VjGlr8StOHcetXpJhspnhXUUWWtw/GeNY5cLbVNfIgZZOw==</authenticityToken>
+            </bus:CAM>
+            <bus:CAF xsi:type="bus:CAF">
+                <contextID xsi:type="xsd:string">CAFW000000a0Q0FGQTYwMDAwMDAwMDlBaFFBQUFDWktBVGJydTlxWGpQKipqUk0zbmYqaFhLMk1BY0FBQUJUU0VFdE1qVTJJQUFBQUx2N1ZHR3Q1QTY1YktJWUFjOWpneDNpMDlUUW5jMnJiMm9pd3J6bThkVjI0NTc5ODV8cnM_</contextID>
+            </bus:CAF>
+            <bus:hdrSession xsi:type="bus:hdrSession">
+                <bus:formFieldVars SOAP-ENC:arrayType="bus:formFieldVar[]" xsi:type="SOAP-ENC:Array">
+                    <item xsi:type="bus:formFieldVar">
+                        <name xsi:type="xsd:string">_ContextBlockSize</name>
+                        <value xsi:type="xsd:string">1000000</value>
+                    </item>
+                    <item xsi:type="bus:formFieldVar">
+                        <name xsi:type="xsd:string">ignoreXHTMLStrict</name>
+                        <value xsi:type="xsd:string">true</value>
+                    </item>
+                </bus:formFieldVars>
+            </bus:hdrSession>
+            <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">wGq49wsC9qdwv8qv2Cjldj4dGy9vwhd2GwMswwhl</bus:id>
+                    <bus:nodeID xsi:type="xs:string">62</bus:nodeID>
+                    <bus:processID xsi:type="xs:int">11848</bus:processID>
+                    <bus:status xsi:type="xs:string">working</bus:status>
+                </bus:conversationContext>
+                <bus:hopCount xsi:type="xs:integer">2</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">hwql8sjqvqd4MGj8q2wC2hjG24Gl2whl82ljw9C8</bus:requestContext>
+                <bus:sessionContext xsi:type="xs:string">f:0:A38698E0A0256870DC3837DB1A7B47DBFA24FA9B1061BCE67B89033929ACD440</bus:sessionContext>
+            </bus:tracking>
+        </bus:biBusHeader>
+    </SOAP-ENV:Header>
+    <SOAP-ENV:Body>
+        <rns1:wait>
+            <bus:conversation xsi:type="bus:asynchRequest"></bus:conversation>
+            <bus:parameterValues SOAP-ENC:arrayType="bus:parameterValue[]" xsi:type="SOAP-ENC:Array"/>
+            <bus:options SOAP-ENC:arrayType="bus:option[]" xsi:type="SOAP-ENC:Array"/>
+        </rns1:wait>
+    </SOAP-ENV:Body>
+</SOAP-ENV:Envelope>

Algunos archivos no se mostraron porque demasiados archivos cambiaron en este cambio