1234567891011121314151617181920212223242526272829 |
- <SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:cm="http://developer.cognos.com/schemas/bibus/3/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:bus="http://developer.cognos.com/schemas/bibus/3/" xmlns:rns1="http://developer.cognos.com/schemas/reportService/1">
- <SOAP-ENV:Header>
- <bus:biBusHeader xsi:type="bus:biBusHeader">
- <bus:CAF xsi:type="bus:CAF">
- <contextID xsi:type="xsd:string">{{=it.cafContextId}}</contextID>
- </bus:CAF>
- </bus:biBusHeader>
- </SOAP-ENV:Header>
- <SOAP-ENV:Body>
- <cm1:update xmlns:cm1="http://developer.cognos.com/schemas/contentManagerService/1">
- <objects xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:baseClass[]">
- <item xsi:type="cm:account">
- <searchPath xsi:type="bus:stringProp">
- <value xsi:type="xsd:string">~</value>
- </searchPath>
- <userProfileSettings xsi:type="cm:anyTypeProp">
- <value xsi:type="xsd:string" xml:space="preserve">{{=it.userProfileSettings}}</value>
- </userProfileSettings>
- </item>
- </objects>
- <options xsi:type="bus:updateOptions">
- <updateTenantIDRecursive xsi:type="xsd:boolean">false</updateTenantIDRecursive>
- <returnProperties xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="bus:propEnum[]">
- <item xsi:type="bus:propEnum">userProfileSettings</item>
- </returnProperties>
- </options>
- </cm1:update>
- </SOAP-ENV:Body>
- </SOAP-ENV:Envelope>
|