123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: XQEODP
- (C) Copyright IBM Corp. 2013
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
- <xs:element name="sslconfigs">
- <xs:complexType>
- <xs:sequence>
- <xs:element name="sslconfig" type="sslconfig" minOccurs="0" maxOccurs="unbounded"/>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- <xs:complexType name="sslconfig">
- <xs:sequence>
- <xs:element name="adminhost" minOccurs="1" maxOccurs="1">
- <xs:annotation>
- <xs:documentation>
- This parameter specifies the host name address of the machine
- running the TM1 server admin host process.
- </xs:documentation>
- </xs:annotation>
- <xs:complexType>
- <xs:attribute name="value" type="xs:string" use="required"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="certificateAuthority" minOccurs="1" maxOccurs="1">
- <xs:annotation>
- <xs:documentation>
- This parameter specifies the pathname for the certificate authority
- file on this file system. If the pathname is not absolute it will be
- relative to the bin/bin64 directory.
- </xs:documentation>
- </xs:annotation>
- <xs:complexType>
- <xs:attribute name="file" type="xs:string" use="required"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="certificateId" minOccurs="1" maxOccurs="1">
- <xs:annotation>
- <xs:documentation>
- This parameter species the certificate ID for a certificate in
- the authority file that is to be used when securing network
- communication with the TM1 admin server & TM1 server processes.
- </xs:documentation>
- </xs:annotation>
- <xs:complexType>
- <xs:attribute name="value" type="xs:string" use="required"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="certificateRevocationList" minOccurs="0" maxOccurs="1">
- <xs:annotation>
- <xs:documentation>
- This parameter is optional and is used to specify the pathname
- of a file that contains a list of certificates (actually a list of
- certificate serial numbers) that have been marked as 'revoked'.
- If the pathname is not absolute it will be relative to the bin/bin64
- directory.
- </xs:documentation>
- </xs:annotation>
- <xs:complexType>
- <xs:attribute name="file" type="xs:string" use="optional"/>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:complexType>
- </xs:schema>
|