sekken 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +13 -0
- data/.travis.yml +11 -0
- data/.yardopts +6 -0
- data/CONTRIBUTING.md +46 -0
- data/Gemfile +27 -0
- data/MIT-LICENSE +20 -0
- data/README.md +28 -0
- data/Rakefile +21 -0
- data/donate.png +0 -0
- data/lib/sekken.rb +75 -0
- data/lib/sekken/envelope.rb +92 -0
- data/lib/sekken/errors.rb +9 -0
- data/lib/sekken/example_message.rb +41 -0
- data/lib/sekken/httpclient.rb +35 -0
- data/lib/sekken/importer.rb +77 -0
- data/lib/sekken/message.rb +135 -0
- data/lib/sekken/operation.rb +100 -0
- data/lib/sekken/resolver.rb +20 -0
- data/lib/sekken/response.rb +50 -0
- data/lib/sekken/version.rb +5 -0
- data/lib/sekken/wsdl.rb +86 -0
- data/lib/sekken/wsdl/binding.rb +64 -0
- data/lib/sekken/wsdl/binding_operation.rb +85 -0
- data/lib/sekken/wsdl/document.rb +83 -0
- data/lib/sekken/wsdl/document_collection.rb +61 -0
- data/lib/sekken/wsdl/input_output.rb +84 -0
- data/lib/sekken/wsdl/message.rb +38 -0
- data/lib/sekken/wsdl/operation.rb +47 -0
- data/lib/sekken/wsdl/port.rb +29 -0
- data/lib/sekken/wsdl/port_type.rb +38 -0
- data/lib/sekken/wsdl/port_type_operation.rb +42 -0
- data/lib/sekken/wsdl/service.rb +55 -0
- data/lib/sekken/xml/attribute.rb +13 -0
- data/lib/sekken/xml/element.rb +82 -0
- data/lib/sekken/xml/element_builder.rb +220 -0
- data/lib/sekken/xs/schema.rb +57 -0
- data/lib/sekken/xs/schema_collection.rb +49 -0
- data/lib/sekken/xs/types.rb +272 -0
- data/sekken.gemspec +42 -0
- data/spec/fixtures/response/another_soap_fault.xml +14 -0
- data/spec/fixtures/response/authentication.xml +14 -0
- data/spec/fixtures/response/header.xml +13 -0
- data/spec/fixtures/response/list.xml +18 -0
- data/spec/fixtures/response/multi_ref.xml +39 -0
- data/spec/fixtures/response/soap_fault.xml +8 -0
- data/spec/fixtures/response/soap_fault12.xml +18 -0
- data/spec/fixtures/response/taxcloud.xml +1 -0
- data/spec/fixtures/wsdl/amazon.wsdl +1920 -0
- data/spec/fixtures/wsdl/arrays_with_attributes.wsdl +117 -0
- data/spec/fixtures/wsdl/authentication.wsdl +63 -0
- data/spec/fixtures/wsdl/awse.wsdl +1510 -0
- data/spec/fixtures/wsdl/betfair.wsdl +2981 -0
- data/spec/fixtures/wsdl/blz_service.wsdl +88 -0
- data/spec/fixtures/wsdl/bookt/bookt.wsdl +11 -0
- data/spec/fixtures/wsdl/bookt/bookt0.xsd +433 -0
- data/spec/fixtures/wsdl/bookt/bookt1.xsd +42 -0
- data/spec/fixtures/wsdl/bookt/bookt10.xsd +38 -0
- data/spec/fixtures/wsdl/bookt/bookt11.xsd +17 -0
- data/spec/fixtures/wsdl/bookt/bookt12.xsd +18 -0
- data/spec/fixtures/wsdl/bookt/bookt13.xsd +22 -0
- data/spec/fixtures/wsdl/bookt/bookt14.xsd +27 -0
- data/spec/fixtures/wsdl/bookt/bookt15.xsd +28 -0
- data/spec/fixtures/wsdl/bookt/bookt2.wsdl +243 -0
- data/spec/fixtures/wsdl/bookt/bookt2.xsd +81 -0
- data/spec/fixtures/wsdl/bookt/bookt3.wsdl +286 -0
- data/spec/fixtures/wsdl/bookt/bookt3.xsd +61 -0
- data/spec/fixtures/wsdl/bookt/bookt4.xsd +35 -0
- data/spec/fixtures/wsdl/bookt/bookt5.xsd +22 -0
- data/spec/fixtures/wsdl/bookt/bookt6.xsd +26 -0
- data/spec/fixtures/wsdl/bookt/bookt7.xsd +18 -0
- data/spec/fixtures/wsdl/bookt/bookt8.xsd +22 -0
- data/spec/fixtures/wsdl/bookt/bookt9.xsd +29 -0
- data/spec/fixtures/wsdl/bronto.wsdl +3285 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange.wsdl +104 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange0.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange1.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange2.wsdl +119 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange2.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange3.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange4.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange5.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange6.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange7.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange8.xsd +1 -0
- data/spec/fixtures/wsdl/crowd.wsdl +2437 -0
- data/spec/fixtures/wsdl/data_exchange.wsdl +98 -0
- data/spec/fixtures/wsdl/document_literal_wrapped.wsdl +153 -0
- data/spec/fixtures/wsdl/economic.wsdl +65660 -0
- data/spec/fixtures/wsdl/edialog.wsdl +13148 -0
- data/spec/fixtures/wsdl/email_verification.wsdl +394 -0
- data/spec/fixtures/wsdl/equifax.wsdl +794 -0
- data/spec/fixtures/wsdl/geotrust.wsdl +156 -0
- data/spec/fixtures/wsdl/interhome.wsdl +2137 -0
- data/spec/fixtures/wsdl/iws.wsdl +695 -0
- data/spec/fixtures/wsdl/jetairways.wsdl +156 -0
- data/spec/fixtures/wsdl/jira.wsdl +3890 -0
- data/spec/fixtures/wsdl/juniper.wsdl +215 -0
- data/spec/fixtures/wsdl/namespaced_actions.wsdl +307 -0
- data/spec/fixtures/wsdl/oracle.wsdl +3629 -0
- data/spec/fixtures/wsdl/ratp.wsdl +955 -0
- data/spec/fixtures/wsdl/rio2/rio2.wsdl +74 -0
- data/spec/fixtures/wsdl/rio2/rio2_0.wsdl +55 -0
- data/spec/fixtures/wsdl/rio2/rio2_0.xsd +58 -0
- data/spec/fixtures/wsdl/rio2/rio2_1.xsd +41 -0
- data/spec/fixtures/wsdl/rio2/rio2_2.xsd +222 -0
- data/spec/fixtures/wsdl/rio2/rio2_3.xsd +10 -0
- data/spec/fixtures/wsdl/rpc_literal.wsdl +105 -0
- data/spec/fixtures/wsdl/spyne.wsdl +70 -0
- data/spec/fixtures/wsdl/stockquote.wsdl +124 -0
- data/spec/fixtures/wsdl/taxcloud.wsdl +934 -0
- data/spec/fixtures/wsdl/team_software/team_software.wsdl +542 -0
- data/spec/fixtures/wsdl/team_software/team_software0.xsd +448 -0
- data/spec/fixtures/wsdl/team_software/team_software1.xsd +41 -0
- data/spec/fixtures/wsdl/team_software/team_software2.xsd +258 -0
- data/spec/fixtures/wsdl/team_software/team_software3.xsd +14 -0
- data/spec/fixtures/wsdl/telefonkatalogen.wsdl +45 -0
- data/spec/fixtures/wsdl/temperature.wsdl +136 -0
- data/spec/fixtures/wsdl/wasmuth/wasmuth.wsdl +157 -0
- data/spec/fixtures/wsdl/wasmuth/wasmuth1.xsd +210 -0
- data/spec/fixtures/wsdl/wasmuth/wasmuth2.xsd +549 -0
- data/spec/fixtures/wsdl/xignite.wsdl +3470 -0
- data/spec/fixtures/wsdl/yahoo.wsdl +2425 -0
- data/spec/fixtures/wsdl/zanox_export_service.xml +520 -0
- data/spec/integration/amazon_spec.rb +51 -0
- data/spec/integration/authentication_spec.rb +38 -0
- data/spec/integration/awse_spec.rb +95 -0
- data/spec/integration/betfair_spec.rb +179 -0
- data/spec/integration/blz_service_spec.rb +46 -0
- data/spec/integration/bookt_spec.rb +59 -0
- data/spec/integration/bronto_spec.rb +178 -0
- data/spec/integration/bydexchange_spec.rb +40 -0
- data/spec/integration/crowd_spec.rb +44 -0
- data/spec/integration/data_exchange_spec.rb +27 -0
- data/spec/integration/document_literal_spec.rb +104 -0
- data/spec/integration/economic_spec.rb +64 -0
- data/spec/integration/email_verification_spec.rb +82 -0
- data/spec/integration/equifax_spec.rb +216 -0
- data/spec/integration/geotrust_spec.rb +17 -0
- data/spec/integration/interhome_spec.rb +156 -0
- data/spec/integration/iws_spec.rb +27 -0
- data/spec/integration/jetairways_spec.rb +142 -0
- data/spec/integration/jira_spec.rb +27 -0
- data/spec/integration/juniper_spec.rb +20 -0
- data/spec/integration/namespaced_actions_spec.rb +37 -0
- data/spec/integration/oracle_spec.rb +61 -0
- data/spec/integration/ratp_spec.rb +178 -0
- data/spec/integration/rio2_spec.rb +56 -0
- data/spec/integration/rpc_literal_spec.rb +101 -0
- data/spec/integration/spyne_spec.rb +60 -0
- data/spec/integration/stockquote_spec.rb +46 -0
- data/spec/integration/taxcloud_spec.rb +45 -0
- data/spec/integration/team_software_spec.rb +51 -0
- data/spec/integration/telefonkatalogen_spec.rb +42 -0
- data/spec/integration/temperature_spec.rb +71 -0
- data/spec/integration/wasmuth_spec.rb +47 -0
- data/spec/integration/xignite_spec.rb +112 -0
- data/spec/integration/yahoo_spec.rb +116 -0
- data/spec/sekken/httpclient_spec.rb +41 -0
- data/spec/sekken/operation/build_spec.rb +308 -0
- data/spec/sekken/operation/document_literal_spec.rb +53 -0
- data/spec/sekken/operation/example_body_spec.rb +95 -0
- data/spec/sekken/operation/rpc_literal_spec.rb +50 -0
- data/spec/sekken/operation_spec.rb +169 -0
- data/spec/sekken/resolver_spec.rb +38 -0
- data/spec/sekken/response_spec.rb +17 -0
- data/spec/sekken/wsdl/document_spec.rb +191 -0
- data/spec/sekken/wsdl_spec.rb +46 -0
- data/spec/sekken/xs/complex_type_spec.rb +197 -0
- data/spec/sekken/xs/element_spec.rb +82 -0
- data/spec/sekken/xs/simple_type_spec.rb +39 -0
- data/spec/sekken_spec.rb +128 -0
- data/spec/spec_helper.rb +37 -0
- data/spec/support/fixture.rb +19 -0
- data/spec/support/http_mock.rb +43 -0
- metadata +344 -0
@@ -0,0 +1,3629 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
2
|
+
<!-- https://fap0023-bi.oracleads.com/analytics-ws/saw.dll/wsdl/v7 -->
|
3
|
+
<wsdl:definitions targetNamespace="urn://oracle.bi.webservices/v7" xmlns:sawsoap="urn://oracle.bi.webservices/v7" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
4
|
+
<wsdl:types>
|
5
|
+
<xsd:schema elementFormDefault="qualified" jxb:version="1.0" targetNamespace="urn://oracle.bi.webservices/v7" version="1.0" xmlns:jxb="http://java.sun.com/xml/ns/jaxb">
|
6
|
+
<xsd:annotation>
|
7
|
+
<xsd:appinfo>
|
8
|
+
<jxb:schemaBindings>
|
9
|
+
<jxb:package name="oracle.bi.web.soap">
|
10
|
+
<jxb:javadoc/>
|
11
|
+
</jxb:package>
|
12
|
+
</jxb:schemaBindings>
|
13
|
+
</xsd:appinfo>
|
14
|
+
</xsd:annotation>
|
15
|
+
<xsd:complexType name="SAWLocale">
|
16
|
+
<xsd:sequence>
|
17
|
+
<xsd:element name="language" nillable="true" type="xsd:string"/>
|
18
|
+
<xsd:element name="country" nillable="true" type="xsd:string"/>
|
19
|
+
</xsd:sequence>
|
20
|
+
</xsd:complexType>
|
21
|
+
<xsd:complexType name="LogonParameter">
|
22
|
+
<xsd:sequence>
|
23
|
+
<xsd:element name="name" type="xsd:string"/>
|
24
|
+
<xsd:element name="value" type="xsd:string"/>
|
25
|
+
</xsd:sequence>
|
26
|
+
</xsd:complexType>
|
27
|
+
<xsd:complexType name="SAWSessionParameters">
|
28
|
+
<xsd:sequence>
|
29
|
+
<xsd:element name="locale" nillable="true" type="sawsoap:SAWLocale"/>
|
30
|
+
<xsd:element name="language" nillable="true" type="sawsoap:SAWLocale"/>
|
31
|
+
<xsd:element name="userAgent" nillable="true" type="xsd:string"/>
|
32
|
+
<xsd:element name="asyncLogon" type="xsd:boolean"/>
|
33
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="logonParams" nillable="true" type="sawsoap:LogonParameter"/>
|
34
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
35
|
+
<xsd:element name="syndicate" nillable="true" type="xsd:string"/>
|
36
|
+
</xsd:sequence>
|
37
|
+
</xsd:complexType>
|
38
|
+
<xsd:complexType name="ReportRef">
|
39
|
+
<xsd:sequence>
|
40
|
+
<xsd:element name="reportPath" nillable="true" type="xsd:string"/>
|
41
|
+
<xsd:element name="reportXml" nillable="true" type="xsd:string"/>
|
42
|
+
</xsd:sequence>
|
43
|
+
</xsd:complexType>
|
44
|
+
<xsd:complexType name="Variable">
|
45
|
+
<xsd:sequence>
|
46
|
+
<xsd:element name="name" type="xsd:string"/>
|
47
|
+
<xsd:element name="value" nillable="true"/>
|
48
|
+
</xsd:sequence>
|
49
|
+
</xsd:complexType>
|
50
|
+
<xsd:complexType name="ReportParams">
|
51
|
+
<xsd:sequence>
|
52
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="filterExpressions" type="xsd:string"/>
|
53
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="variables" type="sawsoap:Variable"/>
|
54
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="nameValues" type="sawsoap:NameValuePair"/>
|
55
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="templateInfos" type="sawsoap:TemplateInfo"/>
|
56
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="viewName" type="xsd:string"/>
|
57
|
+
</xsd:sequence>
|
58
|
+
</xsd:complexType>
|
59
|
+
<xsd:complexType name="NameValuePair">
|
60
|
+
<xsd:sequence>
|
61
|
+
<xsd:element name="name" type="xsd:string"/>
|
62
|
+
<xsd:element name="value" type="xsd:string"/>
|
63
|
+
</xsd:sequence>
|
64
|
+
</xsd:complexType>
|
65
|
+
<xsd:complexType name="TemplateInfoInstance">
|
66
|
+
<xsd:sequence>
|
67
|
+
<xsd:element name="instanceName" type="xsd:string"/>
|
68
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="nameValues" type="sawsoap:NameValuePair"/>
|
69
|
+
</xsd:sequence>
|
70
|
+
</xsd:complexType>
|
71
|
+
<xsd:complexType name="TemplateInfo">
|
72
|
+
<xsd:sequence>
|
73
|
+
<xsd:element name="templateForEach" type="xsd:string"/>
|
74
|
+
<xsd:element name="templateIterator" type="xsd:string"/>
|
75
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="instance" type="sawsoap:TemplateInfoInstance"/>
|
76
|
+
</xsd:sequence>
|
77
|
+
</xsd:complexType>
|
78
|
+
<xsd:complexType name="NameValueArrayPair">
|
79
|
+
<xsd:sequence>
|
80
|
+
<xsd:element name="name" type="xsd:string"/>
|
81
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="values" type="xsd:string"/>
|
82
|
+
</xsd:sequence>
|
83
|
+
</xsd:complexType>
|
84
|
+
<xsd:complexType name="Account">
|
85
|
+
<xsd:annotation>
|
86
|
+
<xsd:documentation>accountType values:
|
87
|
+
0 - user
|
88
|
+
1 - group
|
89
|
+
4 - role</xsd:documentation>
|
90
|
+
</xsd:annotation>
|
91
|
+
<xsd:sequence>
|
92
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="name" type="xsd:string"/>
|
93
|
+
<xsd:element name="accountType" type="xsd:int"/>
|
94
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="guid" type="xsd:string"/>
|
95
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="displayName" type="xsd:string"/>
|
96
|
+
</xsd:sequence>
|
97
|
+
</xsd:complexType>
|
98
|
+
<xsd:complexType name="AccessControlToken">
|
99
|
+
<xsd:annotation>
|
100
|
+
<xsd:documentation>permissionMask field value is combination of the following flags:
|
101
|
+
1 permission to read items content
|
102
|
+
2 permission to traverse directory
|
103
|
+
4 permission to change items content
|
104
|
+
8 permission to delete an item
|
105
|
+
16 permission to assign permissions to others
|
106
|
+
32 can take ownership of the item
|
107
|
+
2048 permission to run a publisher report live
|
108
|
+
4096 permission to schedule a publisher report
|
109
|
+
8192 permission to view output of a publisher report</xsd:documentation>
|
110
|
+
</xsd:annotation>
|
111
|
+
<xsd:sequence>
|
112
|
+
<xsd:element name="account" type="sawsoap:Account"/>
|
113
|
+
<xsd:element name="permissionMask" type="xsd:int"/>
|
114
|
+
</xsd:sequence>
|
115
|
+
</xsd:complexType>
|
116
|
+
<xsd:complexType name="ACL">
|
117
|
+
<xsd:sequence>
|
118
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="dummy" type="xsd:string"/>
|
119
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="accessControlTokens" type="sawsoap:AccessControlToken"/>
|
120
|
+
</xsd:sequence>
|
121
|
+
</xsd:complexType>
|
122
|
+
<xsd:complexType name="Privilege">
|
123
|
+
<xsd:sequence>
|
124
|
+
<xsd:element name="name" type="xsd:string"/>
|
125
|
+
<xsd:element name="description" nillable="true" type="xsd:string"/>
|
126
|
+
</xsd:sequence>
|
127
|
+
</xsd:complexType>
|
128
|
+
<xsd:complexType name="UpdateACLParams">
|
129
|
+
<xsd:sequence>
|
130
|
+
<xsd:element name="updateFlag" type="sawsoap:UpdateACLMode"/>
|
131
|
+
</xsd:sequence>
|
132
|
+
</xsd:complexType>
|
133
|
+
<xsd:simpleType name="ItemInfoType">
|
134
|
+
<xsd:restriction base="xsd:string">
|
135
|
+
<xsd:enumeration value="Folder"/>
|
136
|
+
<xsd:enumeration value="Link"/>
|
137
|
+
<xsd:enumeration value="Object"/>
|
138
|
+
<xsd:enumeration value="Missing"/>
|
139
|
+
<xsd:enumeration value="NoAccess"/>
|
140
|
+
</xsd:restriction>
|
141
|
+
</xsd:simpleType>
|
142
|
+
<xsd:complexType name="ItemInfo">
|
143
|
+
<xsd:annotation>
|
144
|
+
<xsd:documentation>attributes field value is a combination of the following flags:
|
145
|
+
1 - read only,
|
146
|
+
2 - archive,
|
147
|
+
4 - hidden,
|
148
|
+
8 - system,
|
149
|
+
16 - dont index</xsd:documentation>
|
150
|
+
</xsd:annotation>
|
151
|
+
<xsd:sequence>
|
152
|
+
<xsd:element name="path" type="xsd:string"/>
|
153
|
+
<xsd:element name="type" type="sawsoap:ItemInfoType"/>
|
154
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="caption" type="xsd:string"/>
|
155
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="description" type="xsd:string"/>
|
156
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="attributes" type="xsd:int"/>
|
157
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="lastModified" type="xsd:dateTime"/>
|
158
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="created" type="xsd:dateTime"/>
|
159
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="accessed" type="xsd:dateTime"/>
|
160
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="creator" type="sawsoap:Account"/>
|
161
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="lastModifier" type="sawsoap:Account"/>
|
162
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="signature" type="xsd:string"/>
|
163
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="targetPath" type="xsd:string"/>
|
164
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="acl" type="sawsoap:ACL"/>
|
165
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="owner" type="sawsoap:Account"/>
|
166
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="itemProperties" type="sawsoap:NameValuePair"/>
|
167
|
+
</xsd:sequence>
|
168
|
+
</xsd:complexType>
|
169
|
+
<xsd:complexType name="AuthResult">
|
170
|
+
<xsd:sequence>
|
171
|
+
<xsd:element name="sessionID" type="xsd:string"/>
|
172
|
+
<xsd:element name="authCompleted" type="xsd:boolean"/>
|
173
|
+
</xsd:sequence>
|
174
|
+
</xsd:complexType>
|
175
|
+
<xsd:complexType name="SessionEnvironment">
|
176
|
+
<xsd:sequence>
|
177
|
+
<xsd:element name="userName" type="xsd:string"/>
|
178
|
+
<xsd:element name="homeDirectory" type="sawsoap:ItemInfo"/>
|
179
|
+
<xsd:element minOccurs="0" name="locale" type="sawsoap:SAWLocale"/>
|
180
|
+
<xsd:element minOccurs="0" name="language" type="sawsoap:SAWLocale"/>
|
181
|
+
<xsd:element minOccurs="0" name="timezoneid" type="xsd:string"/>
|
182
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="sharedDirectories" type="sawsoap:ItemInfo"/>
|
183
|
+
</xsd:sequence>
|
184
|
+
</xsd:complexType>
|
185
|
+
<xsd:element name="logon">
|
186
|
+
<xsd:complexType>
|
187
|
+
<xsd:sequence>
|
188
|
+
<xsd:element name="name" nillable="true" type="xsd:string"/>
|
189
|
+
<xsd:element name="password" nillable="true" type="xsd:string"/>
|
190
|
+
</xsd:sequence>
|
191
|
+
</xsd:complexType>
|
192
|
+
</xsd:element>
|
193
|
+
<xsd:element name="logonResult">
|
194
|
+
<xsd:complexType>
|
195
|
+
<xsd:sequence>
|
196
|
+
<xsd:element name="sessionID" type="xsd:string"/>
|
197
|
+
</xsd:sequence>
|
198
|
+
</xsd:complexType>
|
199
|
+
</xsd:element>
|
200
|
+
<xsd:element name="logonex">
|
201
|
+
<xsd:complexType>
|
202
|
+
<xsd:sequence>
|
203
|
+
<xsd:element name="name" nillable="true" type="xsd:string"/>
|
204
|
+
<xsd:element name="password" nillable="true" type="xsd:string"/>
|
205
|
+
<xsd:element name="sessionparams" nillable="true" type="sawsoap:SAWSessionParameters"/>
|
206
|
+
</xsd:sequence>
|
207
|
+
</xsd:complexType>
|
208
|
+
</xsd:element>
|
209
|
+
<xsd:element name="logonexResult">
|
210
|
+
<xsd:complexType>
|
211
|
+
<xsd:sequence>
|
212
|
+
<xsd:element name="return" type="sawsoap:AuthResult"/>
|
213
|
+
</xsd:sequence>
|
214
|
+
</xsd:complexType>
|
215
|
+
</xsd:element>
|
216
|
+
<xsd:element name="logoff">
|
217
|
+
<xsd:complexType>
|
218
|
+
<xsd:sequence>
|
219
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
220
|
+
</xsd:sequence>
|
221
|
+
</xsd:complexType>
|
222
|
+
</xsd:element>
|
223
|
+
<xsd:element name="logoffResult">
|
224
|
+
<xsd:complexType>
|
225
|
+
<xsd:sequence/>
|
226
|
+
</xsd:complexType>
|
227
|
+
</xsd:element>
|
228
|
+
<xsd:element name="keepAlive">
|
229
|
+
<xsd:complexType>
|
230
|
+
<xsd:sequence>
|
231
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="sessionID" type="xsd:string"/>
|
232
|
+
</xsd:sequence>
|
233
|
+
</xsd:complexType>
|
234
|
+
</xsd:element>
|
235
|
+
<xsd:element name="keepAliveResult">
|
236
|
+
<xsd:complexType>
|
237
|
+
<xsd:sequence/>
|
238
|
+
</xsd:complexType>
|
239
|
+
</xsd:element>
|
240
|
+
<xsd:element name="getCurUser">
|
241
|
+
<xsd:complexType>
|
242
|
+
<xsd:sequence>
|
243
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
244
|
+
</xsd:sequence>
|
245
|
+
</xsd:complexType>
|
246
|
+
</xsd:element>
|
247
|
+
<xsd:element name="getCurUserResult">
|
248
|
+
<xsd:complexType>
|
249
|
+
<xsd:sequence>
|
250
|
+
<xsd:element name="return" type="xsd:string"/>
|
251
|
+
</xsd:sequence>
|
252
|
+
</xsd:complexType>
|
253
|
+
</xsd:element>
|
254
|
+
<xsd:element name="getSessionEnvironment">
|
255
|
+
<xsd:complexType>
|
256
|
+
<xsd:sequence>
|
257
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
258
|
+
</xsd:sequence>
|
259
|
+
</xsd:complexType>
|
260
|
+
</xsd:element>
|
261
|
+
<xsd:element name="getSessionEnvironmentResult">
|
262
|
+
<xsd:complexType>
|
263
|
+
<xsd:sequence>
|
264
|
+
<xsd:element name="return" type="sawsoap:SessionEnvironment"/>
|
265
|
+
</xsd:sequence>
|
266
|
+
</xsd:complexType>
|
267
|
+
</xsd:element>
|
268
|
+
<xsd:element name="getSessionVariables">
|
269
|
+
<xsd:complexType>
|
270
|
+
<xsd:annotation>
|
271
|
+
<xsd:documentation>Predefined variable names:
|
272
|
+
NQ_SESSION.USER,
|
273
|
+
NQ_SESSION.USERGUID,
|
274
|
+
NQ_SESSION.GROUP,
|
275
|
+
NQ_SESSION.GROUPGUIDS,
|
276
|
+
NQ_SESSION.WEBGROUPS,
|
277
|
+
NQ_SESSION.REALM,
|
278
|
+
NQ_SESSION.REALMGUID,
|
279
|
+
NQ_SESSION.TOKENS,
|
280
|
+
NQ_SESSION.REQUESTKEY,
|
281
|
+
NQ_SESSION.PORTALPATH,
|
282
|
+
NQ_SESSION.DISPLAYNAME,
|
283
|
+
NQ_SESSION.SKIN,
|
284
|
+
NQ_SESSION.STYLE,
|
285
|
+
NQ_SESSION.EMAIL,
|
286
|
+
NQ_SESSION.CURRENCYTAG,
|
287
|
+
NQ_SESSION.ACTUATEUSERID,
|
288
|
+
NQ_SESSION.TIMEZONE,
|
289
|
+
NQ_SESSION.DATA_TZ,
|
290
|
+
NQ_SESSION.DATA_DISPLAY_TZ,
|
291
|
+
NQ_SESSION.PROXYLEVEL,
|
292
|
+
NQ_SESSION.USERLOCALE,
|
293
|
+
NQ_SESSION.USERLANG,
|
294
|
+
NQ_SESSION.PREFERRED_CURRENCY</xsd:documentation>
|
295
|
+
</xsd:annotation>
|
296
|
+
<xsd:sequence>
|
297
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="names" nillable="true" type="xsd:string"/>
|
298
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
299
|
+
</xsd:sequence>
|
300
|
+
</xsd:complexType>
|
301
|
+
</xsd:element>
|
302
|
+
<xsd:element name="getSessionVariablesResult">
|
303
|
+
<xsd:complexType>
|
304
|
+
<xsd:sequence>
|
305
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="return" nillable="true" type="xsd:string"/>
|
306
|
+
</xsd:sequence>
|
307
|
+
</xsd:complexType>
|
308
|
+
</xsd:element>
|
309
|
+
<xsd:element name="impersonate">
|
310
|
+
<xsd:complexType>
|
311
|
+
<xsd:sequence>
|
312
|
+
<xsd:element name="name" nillable="true" type="xsd:string"/>
|
313
|
+
<xsd:element name="password" nillable="true" type="xsd:string"/>
|
314
|
+
<xsd:element name="impersonateID" nillable="true" type="xsd:string"/>
|
315
|
+
</xsd:sequence>
|
316
|
+
</xsd:complexType>
|
317
|
+
</xsd:element>
|
318
|
+
<xsd:element name="impersonateResult">
|
319
|
+
<xsd:complexType>
|
320
|
+
<xsd:sequence>
|
321
|
+
<xsd:element name="sessionID" type="xsd:string"/>
|
322
|
+
</xsd:sequence>
|
323
|
+
</xsd:complexType>
|
324
|
+
</xsd:element>
|
325
|
+
<xsd:element name="impersonateex">
|
326
|
+
<xsd:complexType>
|
327
|
+
<xsd:sequence>
|
328
|
+
<xsd:element name="name" type="xsd:string"/>
|
329
|
+
<xsd:element name="password" type="xsd:string"/>
|
330
|
+
<xsd:element name="impersonateID" type="xsd:string"/>
|
331
|
+
<xsd:element name="sessionparams" nillable="true" type="sawsoap:SAWSessionParameters"/>
|
332
|
+
</xsd:sequence>
|
333
|
+
</xsd:complexType>
|
334
|
+
</xsd:element>
|
335
|
+
<xsd:element name="impersonateexResult">
|
336
|
+
<xsd:complexType>
|
337
|
+
<xsd:sequence>
|
338
|
+
<xsd:element name="return" type="sawsoap:AuthResult"/>
|
339
|
+
</xsd:sequence>
|
340
|
+
</xsd:complexType>
|
341
|
+
</xsd:element>
|
342
|
+
<xsd:simpleType name="ErrorDetailsLevel">
|
343
|
+
<xsd:restriction base="xsd:string">
|
344
|
+
<xsd:enumeration value="ErrorCode"/>
|
345
|
+
<xsd:enumeration value="ErrorCodeAndText"/>
|
346
|
+
<xsd:enumeration value="FullDetails"/>
|
347
|
+
</xsd:restriction>
|
348
|
+
</xsd:simpleType>
|
349
|
+
<xsd:complexType name="ErrorInfo">
|
350
|
+
<xsd:sequence>
|
351
|
+
<xsd:element minOccurs="0" name="code" type="xsd:string"/>
|
352
|
+
<xsd:element minOccurs="0" name="context" type="xsd:string"/>
|
353
|
+
<xsd:element minOccurs="0" name="message" type="xsd:string"/>
|
354
|
+
<xsd:element minOccurs="0" name="details" type="xsd:string"/>
|
355
|
+
</xsd:sequence>
|
356
|
+
</xsd:complexType>
|
357
|
+
<xsd:complexType name="CatalogObject">
|
358
|
+
<xsd:sequence>
|
359
|
+
<xsd:element minOccurs="0" name="catalogObject" type="xsd:string"/>
|
360
|
+
<xsd:element minOccurs="0" name="catalogObjectBytes" type="xsd:base64Binary" xmime:expectedContentTypes="application/obipscatalogobject" xmlns:xmime="http://www.w3.org/2005/05/xmlmime"/>
|
361
|
+
<xsd:element minOccurs="0" name="itemInfo" type="sawsoap:ItemInfo"/>
|
362
|
+
<xsd:element minOccurs="0" name="errorInfo" type="sawsoap:ErrorInfo"/>
|
363
|
+
</xsd:sequence>
|
364
|
+
</xsd:complexType>
|
365
|
+
<xsd:element name="voidType">
|
366
|
+
<xsd:complexType>
|
367
|
+
<xsd:sequence/>
|
368
|
+
</xsd:complexType>
|
369
|
+
</xsd:element>
|
370
|
+
<xsd:element name="deleteItem">
|
371
|
+
<xsd:complexType>
|
372
|
+
<xsd:sequence>
|
373
|
+
<xsd:element name="path" type="xsd:string"/>
|
374
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
375
|
+
</xsd:sequence>
|
376
|
+
</xsd:complexType>
|
377
|
+
</xsd:element>
|
378
|
+
<xsd:element name="deleteItemResult">
|
379
|
+
<xsd:complexType>
|
380
|
+
<xsd:sequence/>
|
381
|
+
</xsd:complexType>
|
382
|
+
</xsd:element>
|
383
|
+
<xsd:element name="removeFolder">
|
384
|
+
<xsd:complexType>
|
385
|
+
<xsd:sequence>
|
386
|
+
<xsd:element name="path" type="xsd:string"/>
|
387
|
+
<xsd:element name="recursive" type="xsd:boolean"/>
|
388
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
389
|
+
</xsd:sequence>
|
390
|
+
</xsd:complexType>
|
391
|
+
</xsd:element>
|
392
|
+
<xsd:element name="removeFolderResult">
|
393
|
+
<xsd:complexType>
|
394
|
+
<xsd:sequence/>
|
395
|
+
</xsd:complexType>
|
396
|
+
</xsd:element>
|
397
|
+
<xsd:element name="createFolder">
|
398
|
+
<xsd:complexType>
|
399
|
+
<xsd:sequence>
|
400
|
+
<xsd:element name="path" type="xsd:string"/>
|
401
|
+
<xsd:element name="createIfNotExists" type="xsd:boolean"/>
|
402
|
+
<xsd:element name="createIntermediateDirs" type="xsd:boolean"/>
|
403
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
404
|
+
</xsd:sequence>
|
405
|
+
</xsd:complexType>
|
406
|
+
</xsd:element>
|
407
|
+
<xsd:element name="createFolderResult">
|
408
|
+
<xsd:complexType>
|
409
|
+
<xsd:sequence/>
|
410
|
+
</xsd:complexType>
|
411
|
+
</xsd:element>
|
412
|
+
<xsd:element name="createLink">
|
413
|
+
<xsd:complexType>
|
414
|
+
<xsd:sequence>
|
415
|
+
<xsd:element name="path" type="xsd:string"/>
|
416
|
+
<xsd:element name="pathTarget" type="xsd:string"/>
|
417
|
+
<xsd:element name="overwriteIfExists" type="xsd:boolean"/>
|
418
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
419
|
+
</xsd:sequence>
|
420
|
+
</xsd:complexType>
|
421
|
+
</xsd:element>
|
422
|
+
<xsd:element name="createLinkResult">
|
423
|
+
<xsd:complexType>
|
424
|
+
<xsd:sequence/>
|
425
|
+
</xsd:complexType>
|
426
|
+
</xsd:element>
|
427
|
+
<xsd:element name="moveItem">
|
428
|
+
<xsd:complexType>
|
429
|
+
<xsd:sequence>
|
430
|
+
<xsd:element name="pathSrc" type="xsd:string"/>
|
431
|
+
<xsd:element name="pathDest" type="xsd:string"/>
|
432
|
+
<xsd:element name="flagACL" type="xsd:int"/>
|
433
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
434
|
+
</xsd:sequence>
|
435
|
+
</xsd:complexType>
|
436
|
+
</xsd:element>
|
437
|
+
<xsd:element name="moveItemResult">
|
438
|
+
<xsd:complexType>
|
439
|
+
<xsd:sequence/>
|
440
|
+
</xsd:complexType>
|
441
|
+
</xsd:element>
|
442
|
+
<xsd:element name="copyItem">
|
443
|
+
<xsd:complexType>
|
444
|
+
<xsd:sequence>
|
445
|
+
<xsd:element name="pathSrc" type="xsd:string"/>
|
446
|
+
<xsd:element name="pathDest" type="xsd:string"/>
|
447
|
+
<xsd:element name="flagACL" type="xsd:int"/>
|
448
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
449
|
+
</xsd:sequence>
|
450
|
+
</xsd:complexType>
|
451
|
+
</xsd:element>
|
452
|
+
<xsd:element name="copyItemResult">
|
453
|
+
<xsd:complexType>
|
454
|
+
<xsd:sequence/>
|
455
|
+
</xsd:complexType>
|
456
|
+
</xsd:element>
|
457
|
+
<xsd:element name="copyItem2">
|
458
|
+
<xsd:complexType>
|
459
|
+
<xsd:sequence>
|
460
|
+
<xsd:element maxOccurs="unbounded" minOccurs="1" name="path" type="xsd:string"/>
|
461
|
+
<xsd:element name="recursive" type="xsd:boolean"/>
|
462
|
+
<xsd:element name="permissions" type="xsd:boolean"/>
|
463
|
+
<xsd:element name="timestamps" type="xsd:boolean"/>
|
464
|
+
<xsd:element default="false" name="useMtom" type="xsd:boolean"/>
|
465
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
466
|
+
</xsd:sequence>
|
467
|
+
</xsd:complexType>
|
468
|
+
</xsd:element>
|
469
|
+
<xsd:element name="copyItem2Result">
|
470
|
+
<xsd:complexType>
|
471
|
+
<xsd:sequence>
|
472
|
+
<xsd:element name="archive" type="xsd:base64Binary" xmime:expectedContentTypes="application/obipsarchive" xmlns:xmime="http://www.w3.org/2005/05/xmlmime"/>
|
473
|
+
</xsd:sequence>
|
474
|
+
</xsd:complexType>
|
475
|
+
</xsd:element>
|
476
|
+
<xsd:element name="pasteItem2">
|
477
|
+
<xsd:complexType>
|
478
|
+
<xsd:sequence>
|
479
|
+
<xsd:element name="archive" type="xsd:base64Binary" xmime:expectedContentTypes="application/obipsarchive" xmlns:xmime="http://www.w3.org/2005/05/xmlmime"/>
|
480
|
+
<xsd:element name="replacePath" type="xsd:string"/>
|
481
|
+
<xsd:element name="flagACL" type="xsd:int"/>
|
482
|
+
<xsd:element name="flagOverwrite" type="xsd:int"/>
|
483
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
484
|
+
</xsd:sequence>
|
485
|
+
</xsd:complexType>
|
486
|
+
</xsd:element>
|
487
|
+
<xsd:element name="pasteItem2Result">
|
488
|
+
<xsd:complexType>
|
489
|
+
<xsd:sequence/>
|
490
|
+
</xsd:complexType>
|
491
|
+
</xsd:element>
|
492
|
+
<xsd:complexType name="GetSubItemsFilter">
|
493
|
+
<xsd:sequence>
|
494
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="itemInfoFilters" nillable="true" type="sawsoap:NameValuePair"/>
|
495
|
+
<xsd:element name="dummy" nillable="true" type="xsd:string"/>
|
496
|
+
</xsd:sequence>
|
497
|
+
</xsd:complexType>
|
498
|
+
<xsd:complexType name="GetSubItemsParams">
|
499
|
+
<xsd:sequence>
|
500
|
+
<xsd:element name="filter" nillable="true" type="sawsoap:GetSubItemsFilter"/>
|
501
|
+
<xsd:element name="includeACL" type="xsd:boolean"/>
|
502
|
+
<xsd:element name="withPermission" type="xsd:int"/>
|
503
|
+
<xsd:element name="withPermissionMask" type="xsd:int"/>
|
504
|
+
<xsd:element name="withAttributes" type="xsd:int"/>
|
505
|
+
<xsd:element name="withAttributesMask" type="xsd:int"/>
|
506
|
+
<xsd:element name="preserveOriginalLinkPath" type="xsd:boolean"/>
|
507
|
+
</xsd:sequence>
|
508
|
+
</xsd:complexType>
|
509
|
+
<xsd:element name="getSubItems">
|
510
|
+
<xsd:complexType>
|
511
|
+
<xsd:sequence>
|
512
|
+
<xsd:element name="path" type="xsd:string"/>
|
513
|
+
<xsd:element name="mask" type="xsd:string"/>
|
514
|
+
<xsd:element name="resolveLinks" type="xsd:boolean"/>
|
515
|
+
<xsd:element name="options" nillable="true" type="sawsoap:GetSubItemsParams"/>
|
516
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
517
|
+
</xsd:sequence>
|
518
|
+
</xsd:complexType>
|
519
|
+
</xsd:element>
|
520
|
+
<xsd:element name="getSubItemsResult">
|
521
|
+
<xsd:complexType>
|
522
|
+
<xsd:sequence>
|
523
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="itemInfo" type="sawsoap:ItemInfo"/>
|
524
|
+
</xsd:sequence>
|
525
|
+
</xsd:complexType>
|
526
|
+
</xsd:element>
|
527
|
+
<xsd:element name="getItemInfo">
|
528
|
+
<xsd:complexType>
|
529
|
+
<xsd:sequence>
|
530
|
+
<xsd:element name="path" type="xsd:string"/>
|
531
|
+
<xsd:element name="resolveLinks" type="xsd:boolean"/>
|
532
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
533
|
+
</xsd:sequence>
|
534
|
+
</xsd:complexType>
|
535
|
+
</xsd:element>
|
536
|
+
<xsd:element name="getItemInfoResult">
|
537
|
+
<xsd:complexType>
|
538
|
+
<xsd:sequence>
|
539
|
+
<xsd:element name="return" type="sawsoap:ItemInfo"/>
|
540
|
+
</xsd:sequence>
|
541
|
+
</xsd:complexType>
|
542
|
+
</xsd:element>
|
543
|
+
<xsd:simpleType name="ReadObjectsReturnOptions">
|
544
|
+
<xsd:restriction base="xsd:string">
|
545
|
+
<xsd:enumeration value="NoObject"/>
|
546
|
+
<xsd:enumeration value="ObjectAsString"/>
|
547
|
+
<xsd:enumeration value="ObjectAsBinary"/>
|
548
|
+
<xsd:enumeration value="ObjectAsBinaryUseMtom"/>
|
549
|
+
</xsd:restriction>
|
550
|
+
</xsd:simpleType>
|
551
|
+
<xsd:element name="readObjects">
|
552
|
+
<xsd:complexType>
|
553
|
+
<xsd:sequence>
|
554
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="paths" type="xsd:string"/>
|
555
|
+
<xsd:element name="resolveLinks" type="xsd:boolean"/>
|
556
|
+
<xsd:element name="errorMode" type="sawsoap:ErrorDetailsLevel"/>
|
557
|
+
<xsd:element name="returnOptions" type="sawsoap:ReadObjectsReturnOptions"/>
|
558
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
559
|
+
</xsd:sequence>
|
560
|
+
</xsd:complexType>
|
561
|
+
</xsd:element>
|
562
|
+
<xsd:element name="readObjectsResult">
|
563
|
+
<xsd:complexType>
|
564
|
+
<xsd:sequence>
|
565
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="catalogObject" type="sawsoap:CatalogObject"/>
|
566
|
+
</xsd:sequence>
|
567
|
+
</xsd:complexType>
|
568
|
+
</xsd:element>
|
569
|
+
<xsd:element name="writeObjects">
|
570
|
+
<xsd:complexType>
|
571
|
+
<xsd:sequence>
|
572
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="catalogObjects" type="sawsoap:CatalogObject"/>
|
573
|
+
<xsd:element name="allowOverwrite" type="xsd:boolean"/>
|
574
|
+
<xsd:element name="createIntermediateDirs" type="xsd:boolean"/>
|
575
|
+
<xsd:element name="errorMode" type="sawsoap:ErrorDetailsLevel"/>
|
576
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
577
|
+
</xsd:sequence>
|
578
|
+
</xsd:complexType>
|
579
|
+
</xsd:element>
|
580
|
+
<xsd:element name="writeObjectsResult">
|
581
|
+
<xsd:complexType>
|
582
|
+
<xsd:sequence>
|
583
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="errorInfo" type="sawsoap:ErrorInfo"/>
|
584
|
+
</xsd:sequence>
|
585
|
+
</xsd:complexType>
|
586
|
+
</xsd:element>
|
587
|
+
<xsd:complexType name="UpdateCatalogItemACLParams">
|
588
|
+
<xsd:complexContent>
|
589
|
+
<xsd:extension base="sawsoap:UpdateACLParams">
|
590
|
+
<xsd:sequence>
|
591
|
+
<xsd:element name="recursive" type="xsd:boolean"/>
|
592
|
+
</xsd:sequence>
|
593
|
+
</xsd:extension>
|
594
|
+
</xsd:complexContent>
|
595
|
+
</xsd:complexType>
|
596
|
+
<xsd:element name="updateCatalogItemACL">
|
597
|
+
<xsd:complexType>
|
598
|
+
<xsd:sequence>
|
599
|
+
<xsd:element maxOccurs="unbounded" minOccurs="1" name="path" type="xsd:string"/>
|
600
|
+
<xsd:element name="acl" type="sawsoap:ACL"/>
|
601
|
+
<xsd:element name="options" type="sawsoap:UpdateCatalogItemACLParams"/>
|
602
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
603
|
+
</xsd:sequence>
|
604
|
+
</xsd:complexType>
|
605
|
+
</xsd:element>
|
606
|
+
<xsd:element name="updateCatalogItemACLResult">
|
607
|
+
<xsd:complexType>
|
608
|
+
<xsd:sequence/>
|
609
|
+
</xsd:complexType>
|
610
|
+
</xsd:element>
|
611
|
+
<xsd:element name="setOwnership">
|
612
|
+
<xsd:complexType>
|
613
|
+
<xsd:sequence>
|
614
|
+
<xsd:element maxOccurs="unbounded" minOccurs="1" name="path" type="xsd:string"/>
|
615
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="owner" type="sawsoap:Account"/>
|
616
|
+
<xsd:element name="recursive" type="xsd:boolean"/>
|
617
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
618
|
+
</xsd:sequence>
|
619
|
+
</xsd:complexType>
|
620
|
+
</xsd:element>
|
621
|
+
<xsd:element name="setOwnershipResult">
|
622
|
+
<xsd:complexType>
|
623
|
+
<xsd:sequence/>
|
624
|
+
</xsd:complexType>
|
625
|
+
</xsd:element>
|
626
|
+
<xsd:element name="setItemAttributes">
|
627
|
+
<xsd:complexType>
|
628
|
+
<xsd:sequence>
|
629
|
+
<xsd:element maxOccurs="unbounded" minOccurs="1" name="path" type="xsd:string"/>
|
630
|
+
<xsd:element name="value" type="xsd:int"/>
|
631
|
+
<xsd:element name="valueOff" type="xsd:int"/>
|
632
|
+
<xsd:element name="recursive" type="xsd:boolean"/>
|
633
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
634
|
+
</xsd:sequence>
|
635
|
+
</xsd:complexType>
|
636
|
+
</xsd:element>
|
637
|
+
<xsd:element name="setItemAttributesResult">
|
638
|
+
<xsd:complexType>
|
639
|
+
<xsd:sequence/>
|
640
|
+
</xsd:complexType>
|
641
|
+
</xsd:element>
|
642
|
+
<xsd:element name="setItemProperty">
|
643
|
+
<xsd:complexType>
|
644
|
+
<xsd:sequence>
|
645
|
+
<xsd:element maxOccurs="unbounded" minOccurs="1" name="path" type="xsd:string"/>
|
646
|
+
<xsd:element maxOccurs="unbounded" minOccurs="1" name="name" type="xsd:string"/>
|
647
|
+
<xsd:element maxOccurs="unbounded" minOccurs="1" name="value" type="xsd:string"/>
|
648
|
+
<xsd:element name="recursive" type="xsd:boolean"/>
|
649
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
650
|
+
</xsd:sequence>
|
651
|
+
</xsd:complexType>
|
652
|
+
</xsd:element>
|
653
|
+
<xsd:element name="setItemPropertyResult">
|
654
|
+
<xsd:complexType>
|
655
|
+
<xsd:sequence/>
|
656
|
+
</xsd:complexType>
|
657
|
+
</xsd:element>
|
658
|
+
<xsd:element name="maintenanceMode">
|
659
|
+
<xsd:complexType>
|
660
|
+
<xsd:sequence>
|
661
|
+
<xsd:element name="flag" type="xsd:boolean"/>
|
662
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="sessionID" type="xsd:string"/>
|
663
|
+
</xsd:sequence>
|
664
|
+
</xsd:complexType>
|
665
|
+
</xsd:element>
|
666
|
+
<xsd:element name="maintenanceModeResult">
|
667
|
+
<xsd:complexType>
|
668
|
+
<xsd:sequence/>
|
669
|
+
</xsd:complexType>
|
670
|
+
</xsd:element>
|
671
|
+
<xsd:simpleType name="XMLQueryOutputFormat">
|
672
|
+
<xsd:restriction base="xsd:string">
|
673
|
+
<xsd:enumeration value="SAWRowsetData"/>
|
674
|
+
<xsd:enumeration value="SAWRowsetSchema"/>
|
675
|
+
<xsd:enumeration value="SAWRowsetSchemaAndData"/>
|
676
|
+
</xsd:restriction>
|
677
|
+
</xsd:simpleType>
|
678
|
+
<xsd:complexType name="XMLQueryExecutionOptions">
|
679
|
+
<xsd:sequence>
|
680
|
+
<xsd:element name="async" type="xsd:boolean"/>
|
681
|
+
<xsd:element name="maxRowsPerPage" type="xsd:int"/>
|
682
|
+
<xsd:element name="refresh" type="xsd:boolean"/>
|
683
|
+
<xsd:element name="presentationInfo" type="xsd:boolean"/>
|
684
|
+
<xsd:element name="type" nillable="true" type="xsd:string"/>
|
685
|
+
</xsd:sequence>
|
686
|
+
</xsd:complexType>
|
687
|
+
<xsd:complexType name="QueryResults">
|
688
|
+
<xsd:sequence>
|
689
|
+
<xsd:element name="rowset" type="xsd:string"/>
|
690
|
+
<xsd:element name="queryID" type="xsd:string"/>
|
691
|
+
<xsd:element name="finished" type="xsd:boolean"/>
|
692
|
+
</xsd:sequence>
|
693
|
+
</xsd:complexType>
|
694
|
+
<xsd:element name="executeXMLQuery">
|
695
|
+
<xsd:complexType>
|
696
|
+
<xsd:sequence>
|
697
|
+
<xsd:element name="report" type="sawsoap:ReportRef"/>
|
698
|
+
<xsd:element name="outputFormat" type="sawsoap:XMLQueryOutputFormat"/>
|
699
|
+
<xsd:element name="executionOptions" nillable="true" type="sawsoap:XMLQueryExecutionOptions"/>
|
700
|
+
<xsd:element name="reportParams" nillable="true" type="sawsoap:ReportParams"/>
|
701
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
702
|
+
</xsd:sequence>
|
703
|
+
</xsd:complexType>
|
704
|
+
</xsd:element>
|
705
|
+
<xsd:element name="executeXMLQueryResult">
|
706
|
+
<xsd:complexType>
|
707
|
+
<xsd:sequence>
|
708
|
+
<xsd:element name="return" type="sawsoap:QueryResults"/>
|
709
|
+
</xsd:sequence>
|
710
|
+
</xsd:complexType>
|
711
|
+
</xsd:element>
|
712
|
+
<xsd:element name="upgradeXML">
|
713
|
+
<xsd:complexType>
|
714
|
+
<xsd:sequence>
|
715
|
+
<xsd:element name="xml" type="xsd:string"/>
|
716
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
717
|
+
</xsd:sequence>
|
718
|
+
</xsd:complexType>
|
719
|
+
</xsd:element>
|
720
|
+
<xsd:element name="upgradeXMLResult">
|
721
|
+
<xsd:complexType>
|
722
|
+
<xsd:sequence>
|
723
|
+
<xsd:element name="return" type="xsd:string"/>
|
724
|
+
</xsd:sequence>
|
725
|
+
</xsd:complexType>
|
726
|
+
</xsd:element>
|
727
|
+
<xsd:element name="executeSQLQuery">
|
728
|
+
<xsd:complexType>
|
729
|
+
<xsd:sequence>
|
730
|
+
<xsd:element name="sql" type="xsd:string"/>
|
731
|
+
<xsd:element name="outputFormat" type="sawsoap:XMLQueryOutputFormat"/>
|
732
|
+
<xsd:element name="executionOptions" nillable="true" type="sawsoap:XMLQueryExecutionOptions"/>
|
733
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
734
|
+
</xsd:sequence>
|
735
|
+
</xsd:complexType>
|
736
|
+
</xsd:element>
|
737
|
+
<xsd:element name="executeSQLQueryResult">
|
738
|
+
<xsd:complexType>
|
739
|
+
<xsd:sequence>
|
740
|
+
<xsd:element name="return" type="sawsoap:QueryResults"/>
|
741
|
+
</xsd:sequence>
|
742
|
+
</xsd:complexType>
|
743
|
+
</xsd:element>
|
744
|
+
<xsd:element name="fetchNext">
|
745
|
+
<xsd:complexType>
|
746
|
+
<xsd:sequence>
|
747
|
+
<xsd:element name="queryID" type="xsd:string"/>
|
748
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
749
|
+
</xsd:sequence>
|
750
|
+
</xsd:complexType>
|
751
|
+
</xsd:element>
|
752
|
+
<xsd:element name="fetchNextResult">
|
753
|
+
<xsd:complexType>
|
754
|
+
<xsd:sequence>
|
755
|
+
<xsd:element name="return" type="sawsoap:QueryResults"/>
|
756
|
+
</xsd:sequence>
|
757
|
+
</xsd:complexType>
|
758
|
+
</xsd:element>
|
759
|
+
<xsd:element name="cancelQuery">
|
760
|
+
<xsd:complexType>
|
761
|
+
<xsd:sequence>
|
762
|
+
<xsd:element name="queryID" type="xsd:string"/>
|
763
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
764
|
+
</xsd:sequence>
|
765
|
+
</xsd:complexType>
|
766
|
+
</xsd:element>
|
767
|
+
<xsd:element name="cancelQueryResult">
|
768
|
+
<xsd:complexType>
|
769
|
+
<xsd:sequence/>
|
770
|
+
</xsd:complexType>
|
771
|
+
</xsd:element>
|
772
|
+
<xsd:element name="getPromptedFilters">
|
773
|
+
<xsd:complexType>
|
774
|
+
<xsd:sequence>
|
775
|
+
<xsd:element name="report" type="sawsoap:ReportRef"/>
|
776
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
777
|
+
</xsd:sequence>
|
778
|
+
</xsd:complexType>
|
779
|
+
</xsd:element>
|
780
|
+
<xsd:element name="getPromptedFiltersResult">
|
781
|
+
<xsd:complexType>
|
782
|
+
<xsd:sequence>
|
783
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="promptedFilter" type="xsd:string"/>
|
784
|
+
</xsd:sequence>
|
785
|
+
</xsd:complexType>
|
786
|
+
</xsd:element>
|
787
|
+
<xsd:simpleType name="UpdateACLMode">
|
788
|
+
<xsd:restriction base="xsd:string">
|
789
|
+
<xsd:enumeration value="ReplaceAcl"/>
|
790
|
+
<xsd:enumeration value="ReplaceForSpecifiedAccounts"/>
|
791
|
+
<xsd:enumeration value="DeleteAccountsFromAcl"/>
|
792
|
+
</xsd:restriction>
|
793
|
+
</xsd:simpleType>
|
794
|
+
<xsd:element name="getGlobalPrivileges">
|
795
|
+
<xsd:complexType>
|
796
|
+
<xsd:sequence>
|
797
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
798
|
+
</xsd:sequence>
|
799
|
+
</xsd:complexType>
|
800
|
+
</xsd:element>
|
801
|
+
<xsd:element name="getGlobalPrivilegesResult">
|
802
|
+
<xsd:complexType>
|
803
|
+
<xsd:sequence>
|
804
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="sawPrivileges" type="sawsoap:Privilege"/>
|
805
|
+
</xsd:sequence>
|
806
|
+
</xsd:complexType>
|
807
|
+
</xsd:element>
|
808
|
+
<xsd:element name="getGlobalPrivilegeACL">
|
809
|
+
<xsd:complexType>
|
810
|
+
<xsd:sequence>
|
811
|
+
<xsd:element name="privilegeName" type="xsd:string"/>
|
812
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
813
|
+
</xsd:sequence>
|
814
|
+
</xsd:complexType>
|
815
|
+
</xsd:element>
|
816
|
+
<xsd:element name="getGlobalPrivilegeACLResult">
|
817
|
+
<xsd:complexType>
|
818
|
+
<xsd:sequence>
|
819
|
+
<xsd:element name="acl" type="sawsoap:ACL"/>
|
820
|
+
</xsd:sequence>
|
821
|
+
</xsd:complexType>
|
822
|
+
</xsd:element>
|
823
|
+
<xsd:element name="updateGlobalPrivilegeACL">
|
824
|
+
<xsd:complexType>
|
825
|
+
<xsd:sequence>
|
826
|
+
<xsd:element name="privilegeName" type="xsd:string"/>
|
827
|
+
<xsd:element name="acl" type="sawsoap:ACL"/>
|
828
|
+
<xsd:element name="updateACLParams" nillable="true" type="sawsoap:UpdateACLParams"/>
|
829
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
830
|
+
</xsd:sequence>
|
831
|
+
</xsd:complexType>
|
832
|
+
</xsd:element>
|
833
|
+
<xsd:element name="updateGlobalPrivilegeACLResult">
|
834
|
+
<xsd:complexType>
|
835
|
+
<xsd:sequence/>
|
836
|
+
</xsd:complexType>
|
837
|
+
</xsd:element>
|
838
|
+
<xsd:element name="getPermissions">
|
839
|
+
<xsd:complexType>
|
840
|
+
<xsd:sequence>
|
841
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="acls" type="sawsoap:ACL"/>
|
842
|
+
<xsd:element name="account" nillable="true" type="sawsoap:Account"/>
|
843
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
844
|
+
</xsd:sequence>
|
845
|
+
</xsd:complexType>
|
846
|
+
</xsd:element>
|
847
|
+
<xsd:element name="getPermissionsResult">
|
848
|
+
<xsd:complexType>
|
849
|
+
<xsd:sequence>
|
850
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="return" type="xsd:int"/>
|
851
|
+
</xsd:sequence>
|
852
|
+
</xsd:complexType>
|
853
|
+
</xsd:element>
|
854
|
+
<xsd:element name="getPrivilegesStatus">
|
855
|
+
<xsd:complexType>
|
856
|
+
<xsd:sequence>
|
857
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="privileges" type="xsd:string"/>
|
858
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
859
|
+
</xsd:sequence>
|
860
|
+
</xsd:complexType>
|
861
|
+
</xsd:element>
|
862
|
+
<xsd:element name="getPrivilegesStatusResult">
|
863
|
+
<xsd:complexType>
|
864
|
+
<xsd:sequence>
|
865
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="return" type="xsd:boolean"/>
|
866
|
+
</xsd:sequence>
|
867
|
+
</xsd:complexType>
|
868
|
+
</xsd:element>
|
869
|
+
<xsd:element name="getAccounts">
|
870
|
+
<xsd:complexType>
|
871
|
+
<xsd:sequence>
|
872
|
+
<xsd:element maxOccurs="unbounded" minOccurs="1" name="account" type="sawsoap:Account"/>
|
873
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
874
|
+
</xsd:sequence>
|
875
|
+
</xsd:complexType>
|
876
|
+
</xsd:element>
|
877
|
+
<xsd:element name="getAccountsResult">
|
878
|
+
<xsd:complexType>
|
879
|
+
<xsd:sequence>
|
880
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="accountDetails" type="sawsoap:Account"/>
|
881
|
+
</xsd:sequence>
|
882
|
+
</xsd:complexType>
|
883
|
+
</xsd:element>
|
884
|
+
<xsd:element name="forgetAccounts">
|
885
|
+
<xsd:complexType>
|
886
|
+
<xsd:sequence>
|
887
|
+
<xsd:element maxOccurs="unbounded" minOccurs="1" name="account" type="sawsoap:Account"/>
|
888
|
+
<xsd:element name="cleanuplevel" type="xsd:int"/>
|
889
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
890
|
+
</xsd:sequence>
|
891
|
+
</xsd:complexType>
|
892
|
+
</xsd:element>
|
893
|
+
<xsd:element name="forgetAccountsResult">
|
894
|
+
<xsd:complexType>
|
895
|
+
<xsd:sequence/>
|
896
|
+
</xsd:complexType>
|
897
|
+
</xsd:element>
|
898
|
+
<xsd:element name="renameAccounts">
|
899
|
+
<xsd:complexType>
|
900
|
+
<xsd:sequence>
|
901
|
+
<xsd:element maxOccurs="unbounded" minOccurs="1" name="from" type="sawsoap:Account"/>
|
902
|
+
<xsd:element maxOccurs="unbounded" minOccurs="1" name="to" type="sawsoap:Account"/>
|
903
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
904
|
+
</xsd:sequence>
|
905
|
+
</xsd:complexType>
|
906
|
+
</xsd:element>
|
907
|
+
<xsd:element name="renameAccountsResult">
|
908
|
+
<xsd:complexType>
|
909
|
+
<xsd:sequence/>
|
910
|
+
</xsd:complexType>
|
911
|
+
</xsd:element>
|
912
|
+
<xsd:element name="joinGroups">
|
913
|
+
<xsd:complexType>
|
914
|
+
<xsd:sequence>
|
915
|
+
<xsd:element maxOccurs="unbounded" minOccurs="1" name="group" type="sawsoap:Account"/>
|
916
|
+
<xsd:element maxOccurs="unbounded" minOccurs="1" name="member" type="sawsoap:Account"/>
|
917
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
918
|
+
</xsd:sequence>
|
919
|
+
</xsd:complexType>
|
920
|
+
</xsd:element>
|
921
|
+
<xsd:element name="joinGroupsResult">
|
922
|
+
<xsd:complexType>
|
923
|
+
<xsd:sequence/>
|
924
|
+
</xsd:complexType>
|
925
|
+
</xsd:element>
|
926
|
+
<xsd:element name="leaveGroups">
|
927
|
+
<xsd:complexType>
|
928
|
+
<xsd:sequence>
|
929
|
+
<xsd:element maxOccurs="unbounded" minOccurs="1" name="group" type="sawsoap:Account"/>
|
930
|
+
<xsd:element maxOccurs="unbounded" minOccurs="1" name="member" type="sawsoap:Account"/>
|
931
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
932
|
+
</xsd:sequence>
|
933
|
+
</xsd:complexType>
|
934
|
+
</xsd:element>
|
935
|
+
<xsd:element name="leaveGroupsResult">
|
936
|
+
<xsd:complexType>
|
937
|
+
<xsd:sequence/>
|
938
|
+
</xsd:complexType>
|
939
|
+
</xsd:element>
|
940
|
+
<xsd:element name="getGroups">
|
941
|
+
<xsd:complexType>
|
942
|
+
<xsd:sequence>
|
943
|
+
<xsd:element maxOccurs="unbounded" minOccurs="1" name="member" type="sawsoap:Account"/>
|
944
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="expandGroups" type="xsd:boolean"/>
|
945
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
946
|
+
</xsd:sequence>
|
947
|
+
</xsd:complexType>
|
948
|
+
</xsd:element>
|
949
|
+
<xsd:element name="getGroupsResult">
|
950
|
+
<xsd:complexType>
|
951
|
+
<xsd:sequence>
|
952
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="account" type="sawsoap:Account"/>
|
953
|
+
</xsd:sequence>
|
954
|
+
</xsd:complexType>
|
955
|
+
</xsd:element>
|
956
|
+
<xsd:element name="getMembers">
|
957
|
+
<xsd:complexType>
|
958
|
+
<xsd:sequence>
|
959
|
+
<xsd:element maxOccurs="unbounded" minOccurs="1" name="group" type="sawsoap:Account"/>
|
960
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="expandGroups" type="xsd:boolean"/>
|
961
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
962
|
+
</xsd:sequence>
|
963
|
+
</xsd:complexType>
|
964
|
+
</xsd:element>
|
965
|
+
<xsd:element name="getMembersResult">
|
966
|
+
<xsd:complexType>
|
967
|
+
<xsd:sequence>
|
968
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="account" type="sawsoap:Account"/>
|
969
|
+
</xsd:sequence>
|
970
|
+
</xsd:complexType>
|
971
|
+
</xsd:element>
|
972
|
+
<xsd:element name="isMember">
|
973
|
+
<xsd:complexType>
|
974
|
+
<xsd:sequence>
|
975
|
+
<xsd:element maxOccurs="unbounded" minOccurs="1" name="group" type="sawsoap:Account"/>
|
976
|
+
<xsd:element maxOccurs="unbounded" minOccurs="1" name="member" type="sawsoap:Account"/>
|
977
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="expandGroups" type="xsd:boolean"/>
|
978
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
979
|
+
</xsd:sequence>
|
980
|
+
</xsd:complexType>
|
981
|
+
</xsd:element>
|
982
|
+
<xsd:element name="isMemberResult">
|
983
|
+
<xsd:complexType>
|
984
|
+
<xsd:sequence>
|
985
|
+
<xsd:element name="result" type="xsd:boolean"/>
|
986
|
+
</xsd:sequence>
|
987
|
+
</xsd:complexType>
|
988
|
+
</xsd:element>
|
989
|
+
<xsd:element name="getAccountTenantID">
|
990
|
+
<xsd:complexType>
|
991
|
+
<xsd:sequence>
|
992
|
+
<xsd:element name="account" type="sawsoap:Account"/>
|
993
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
994
|
+
</xsd:sequence>
|
995
|
+
</xsd:complexType>
|
996
|
+
</xsd:element>
|
997
|
+
<xsd:element name="getAccountTenantIDResult">
|
998
|
+
<xsd:complexType>
|
999
|
+
<xsd:sequence>
|
1000
|
+
<xsd:element name="return" type="xsd:string"/>
|
1001
|
+
</xsd:sequence>
|
1002
|
+
</xsd:complexType>
|
1003
|
+
</xsd:element>
|
1004
|
+
<xsd:element name="evaluateCondition">
|
1005
|
+
<xsd:complexType>
|
1006
|
+
<xsd:sequence>
|
1007
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="path" type="xsd:string"/>
|
1008
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="reportCustomizationParameters" type="xsd:string"/>
|
1009
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
1010
|
+
</xsd:sequence>
|
1011
|
+
</xsd:complexType>
|
1012
|
+
</xsd:element>
|
1013
|
+
<xsd:element name="evaluateConditionResult">
|
1014
|
+
<xsd:complexType>
|
1015
|
+
<xsd:sequence>
|
1016
|
+
<xsd:element name="conditionIsTrue" type="xsd:boolean"/>
|
1017
|
+
</xsd:sequence>
|
1018
|
+
</xsd:complexType>
|
1019
|
+
</xsd:element>
|
1020
|
+
<xsd:element name="evaluateInlineCondition">
|
1021
|
+
<xsd:complexType>
|
1022
|
+
<xsd:sequence>
|
1023
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="conditionXML" type="xsd:string"/>
|
1024
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="reportCustomizationParameters" type="xsd:string"/>
|
1025
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
1026
|
+
</xsd:sequence>
|
1027
|
+
</xsd:complexType>
|
1028
|
+
</xsd:element>
|
1029
|
+
<xsd:element name="evaluateInlineConditionResult">
|
1030
|
+
<xsd:complexType>
|
1031
|
+
<xsd:sequence>
|
1032
|
+
<xsd:element name="conditionIsTrue" type="xsd:boolean"/>
|
1033
|
+
</xsd:sequence>
|
1034
|
+
</xsd:complexType>
|
1035
|
+
</xsd:element>
|
1036
|
+
<xsd:element name="getConditionCustomizableReportElements">
|
1037
|
+
<xsd:complexType>
|
1038
|
+
<xsd:sequence>
|
1039
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="path" type="xsd:string"/>
|
1040
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
1041
|
+
</xsd:sequence>
|
1042
|
+
</xsd:complexType>
|
1043
|
+
</xsd:element>
|
1044
|
+
<xsd:element name="getConditionCustomizableReportElementsResult">
|
1045
|
+
<xsd:complexType>
|
1046
|
+
<xsd:sequence>
|
1047
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="customizableElement" type="xsd:string"/>
|
1048
|
+
</xsd:sequence>
|
1049
|
+
</xsd:complexType>
|
1050
|
+
</xsd:element>
|
1051
|
+
<xsd:simpleType name="ReportHTMLLinksMode">
|
1052
|
+
<xsd:restriction base="xsd:string">
|
1053
|
+
<xsd:enumeration value="SamePage"/>
|
1054
|
+
<xsd:enumeration value="NewPage"/>
|
1055
|
+
<xsd:enumeration value="InPlace"/>
|
1056
|
+
</xsd:restriction>
|
1057
|
+
</xsd:simpleType>
|
1058
|
+
<xsd:complexType name="ReportHTMLOptions">
|
1059
|
+
<xsd:sequence>
|
1060
|
+
<xsd:element name="enableDelayLoading" type="xsd:boolean"/>
|
1061
|
+
<xsd:element name="linkMode" type="xsd:string"/>
|
1062
|
+
</xsd:sequence>
|
1063
|
+
</xsd:complexType>
|
1064
|
+
<xsd:complexType name="StartPageParams">
|
1065
|
+
<xsd:sequence>
|
1066
|
+
<xsd:element name="idsPrefix" nillable="true" type="xsd:string"/>
|
1067
|
+
<xsd:element default="false" name="dontUseHttpCookies" type="xsd:boolean"/>
|
1068
|
+
</xsd:sequence>
|
1069
|
+
</xsd:complexType>
|
1070
|
+
<xsd:element name="startPage">
|
1071
|
+
<xsd:complexType>
|
1072
|
+
<xsd:sequence>
|
1073
|
+
<xsd:element name="options" nillable="true" type="sawsoap:StartPageParams"/>
|
1074
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
1075
|
+
</xsd:sequence>
|
1076
|
+
</xsd:complexType>
|
1077
|
+
</xsd:element>
|
1078
|
+
<xsd:element name="startPageResult">
|
1079
|
+
<xsd:complexType>
|
1080
|
+
<xsd:sequence>
|
1081
|
+
<xsd:element name="return" type="xsd:string"/>
|
1082
|
+
</xsd:sequence>
|
1083
|
+
</xsd:complexType>
|
1084
|
+
</xsd:element>
|
1085
|
+
<xsd:element name="endPage">
|
1086
|
+
<xsd:complexType>
|
1087
|
+
<xsd:sequence>
|
1088
|
+
<xsd:element name="pageID" type="xsd:string"/>
|
1089
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
1090
|
+
</xsd:sequence>
|
1091
|
+
</xsd:complexType>
|
1092
|
+
</xsd:element>
|
1093
|
+
<xsd:element name="endPageResult">
|
1094
|
+
<xsd:complexType>
|
1095
|
+
<xsd:sequence/>
|
1096
|
+
</xsd:complexType>
|
1097
|
+
</xsd:element>
|
1098
|
+
<xsd:element name="addReportToPage">
|
1099
|
+
<xsd:complexType>
|
1100
|
+
<xsd:sequence>
|
1101
|
+
<xsd:element name="pageID" type="xsd:string"/>
|
1102
|
+
<xsd:element name="reportID" type="xsd:string"/>
|
1103
|
+
<xsd:element name="report" type="sawsoap:ReportRef"/>
|
1104
|
+
<xsd:element name="reportViewName" nillable="true" type="xsd:string"/>
|
1105
|
+
<xsd:element name="reportParams" nillable="true" type="sawsoap:ReportParams"/>
|
1106
|
+
<xsd:element name="options" nillable="true" type="sawsoap:ReportHTMLOptions"/>
|
1107
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
1108
|
+
</xsd:sequence>
|
1109
|
+
</xsd:complexType>
|
1110
|
+
</xsd:element>
|
1111
|
+
<xsd:element name="addReportToPageResult">
|
1112
|
+
<xsd:complexType>
|
1113
|
+
<xsd:sequence/>
|
1114
|
+
</xsd:complexType>
|
1115
|
+
</xsd:element>
|
1116
|
+
<xsd:element name="getHeadersHtml">
|
1117
|
+
<xsd:complexType>
|
1118
|
+
<xsd:sequence>
|
1119
|
+
<xsd:element name="pageID" type="xsd:string"/>
|
1120
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
1121
|
+
</xsd:sequence>
|
1122
|
+
</xsd:complexType>
|
1123
|
+
</xsd:element>
|
1124
|
+
<xsd:element name="getHeadersHtmlResult">
|
1125
|
+
<xsd:complexType>
|
1126
|
+
<xsd:sequence>
|
1127
|
+
<xsd:element name="return" type="xsd:string"/>
|
1128
|
+
</xsd:sequence>
|
1129
|
+
</xsd:complexType>
|
1130
|
+
</xsd:element>
|
1131
|
+
<xsd:element name="getCommonBodyHtml">
|
1132
|
+
<xsd:complexType>
|
1133
|
+
<xsd:sequence>
|
1134
|
+
<xsd:element name="pageID" type="xsd:string"/>
|
1135
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
1136
|
+
</xsd:sequence>
|
1137
|
+
</xsd:complexType>
|
1138
|
+
</xsd:element>
|
1139
|
+
<xsd:element name="getCommonBodyHtmlResult">
|
1140
|
+
<xsd:complexType>
|
1141
|
+
<xsd:sequence>
|
1142
|
+
<xsd:element name="return" type="xsd:string"/>
|
1143
|
+
</xsd:sequence>
|
1144
|
+
</xsd:complexType>
|
1145
|
+
</xsd:element>
|
1146
|
+
<xsd:element name="getHtmlForReport">
|
1147
|
+
<xsd:complexType>
|
1148
|
+
<xsd:sequence>
|
1149
|
+
<xsd:element name="pageID" type="xsd:string"/>
|
1150
|
+
<xsd:element name="pageReportID" type="xsd:string"/>
|
1151
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
1152
|
+
</xsd:sequence>
|
1153
|
+
</xsd:complexType>
|
1154
|
+
</xsd:element>
|
1155
|
+
<xsd:element name="getHtmlForReportResult">
|
1156
|
+
<xsd:complexType>
|
1157
|
+
<xsd:sequence>
|
1158
|
+
<xsd:element name="return" type="xsd:string"/>
|
1159
|
+
</xsd:sequence>
|
1160
|
+
</xsd:complexType>
|
1161
|
+
</xsd:element>
|
1162
|
+
<xsd:element name="setBridge">
|
1163
|
+
<xsd:complexType>
|
1164
|
+
<xsd:sequence>
|
1165
|
+
<xsd:element name="bridge" nillable="true" type="xsd:string"/>
|
1166
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
1167
|
+
</xsd:sequence>
|
1168
|
+
</xsd:complexType>
|
1169
|
+
</xsd:element>
|
1170
|
+
<xsd:element name="setBridgeResult">
|
1171
|
+
<xsd:complexType>
|
1172
|
+
<xsd:sequence/>
|
1173
|
+
</xsd:complexType>
|
1174
|
+
</xsd:element>
|
1175
|
+
<xsd:element name="getHtmlForPageWithOneReport">
|
1176
|
+
<xsd:complexType>
|
1177
|
+
<xsd:sequence>
|
1178
|
+
<xsd:element name="reportID" type="xsd:string"/>
|
1179
|
+
<xsd:element name="report" type="sawsoap:ReportRef"/>
|
1180
|
+
<xsd:element name="reportViewName" nillable="true" type="xsd:string"/>
|
1181
|
+
<xsd:element name="reportParams" nillable="true" type="sawsoap:ReportParams"/>
|
1182
|
+
<xsd:element name="reportOptions" nillable="true" type="sawsoap:ReportHTMLOptions"/>
|
1183
|
+
<xsd:element name="pageParams" nillable="true" type="sawsoap:StartPageParams"/>
|
1184
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
1185
|
+
</xsd:sequence>
|
1186
|
+
</xsd:complexType>
|
1187
|
+
</xsd:element>
|
1188
|
+
<xsd:element name="getHtmlForPageWithOneReportResult">
|
1189
|
+
<xsd:complexType>
|
1190
|
+
<xsd:sequence>
|
1191
|
+
<xsd:element name="return" type="xsd:string"/>
|
1192
|
+
</xsd:sequence>
|
1193
|
+
</xsd:complexType>
|
1194
|
+
</xsd:element>
|
1195
|
+
<xsd:element name="executeIBotNow">
|
1196
|
+
<xsd:complexType>
|
1197
|
+
<xsd:sequence>
|
1198
|
+
<xsd:element name="path" type="xsd:string"/>
|
1199
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
1200
|
+
</xsd:sequence>
|
1201
|
+
</xsd:complexType>
|
1202
|
+
</xsd:element>
|
1203
|
+
<xsd:element name="executeIBotNowResult">
|
1204
|
+
<xsd:complexType>
|
1205
|
+
<xsd:sequence/>
|
1206
|
+
</xsd:complexType>
|
1207
|
+
</xsd:element>
|
1208
|
+
<xsd:element name="writeIBot">
|
1209
|
+
<xsd:complexType>
|
1210
|
+
<xsd:sequence>
|
1211
|
+
<xsd:element name="obj" type="sawsoap:CatalogObject"/>
|
1212
|
+
<xsd:element name="path" type="xsd:string"/>
|
1213
|
+
<xsd:element name="resolveLinks" type="xsd:boolean"/>
|
1214
|
+
<xsd:element name="allowOverwrite" type="xsd:boolean"/>
|
1215
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
1216
|
+
</xsd:sequence>
|
1217
|
+
</xsd:complexType>
|
1218
|
+
</xsd:element>
|
1219
|
+
<xsd:element name="writeIBotResult">
|
1220
|
+
<xsd:complexType>
|
1221
|
+
<xsd:sequence>
|
1222
|
+
<xsd:element name="jobID" type="xsd:int"/>
|
1223
|
+
</xsd:sequence>
|
1224
|
+
</xsd:complexType>
|
1225
|
+
</xsd:element>
|
1226
|
+
<xsd:element name="moveIBot">
|
1227
|
+
<xsd:complexType>
|
1228
|
+
<xsd:sequence>
|
1229
|
+
<xsd:element name="fromPath" type="xsd:string"/>
|
1230
|
+
<xsd:element name="toPath" type="xsd:string"/>
|
1231
|
+
<xsd:element name="resolveLinks" type="xsd:boolean"/>
|
1232
|
+
<xsd:element name="allowOverwrite" type="xsd:boolean"/>
|
1233
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
1234
|
+
</xsd:sequence>
|
1235
|
+
</xsd:complexType>
|
1236
|
+
</xsd:element>
|
1237
|
+
<xsd:element name="moveIBotResult">
|
1238
|
+
<xsd:complexType>
|
1239
|
+
<xsd:sequence/>
|
1240
|
+
</xsd:complexType>
|
1241
|
+
</xsd:element>
|
1242
|
+
<xsd:element name="deleteIBot">
|
1243
|
+
<xsd:complexType>
|
1244
|
+
<xsd:sequence>
|
1245
|
+
<xsd:element name="path" type="xsd:string"/>
|
1246
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
1247
|
+
</xsd:sequence>
|
1248
|
+
</xsd:complexType>
|
1249
|
+
</xsd:element>
|
1250
|
+
<xsd:element name="deleteIBotResult">
|
1251
|
+
<xsd:complexType>
|
1252
|
+
<xsd:sequence/>
|
1253
|
+
</xsd:complexType>
|
1254
|
+
</xsd:element>
|
1255
|
+
<xsd:element name="subscribe">
|
1256
|
+
<xsd:complexType>
|
1257
|
+
<xsd:sequence>
|
1258
|
+
<xsd:element name="path" type="xsd:string"/>
|
1259
|
+
<xsd:element name="customizationXml" nillable="true" type="xsd:string"/>
|
1260
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
1261
|
+
</xsd:sequence>
|
1262
|
+
</xsd:complexType>
|
1263
|
+
</xsd:element>
|
1264
|
+
<xsd:element name="subscribeResult">
|
1265
|
+
<xsd:complexType>
|
1266
|
+
<xsd:sequence/>
|
1267
|
+
</xsd:complexType>
|
1268
|
+
</xsd:element>
|
1269
|
+
<xsd:element name="unsubscribe">
|
1270
|
+
<xsd:complexType>
|
1271
|
+
<xsd:sequence>
|
1272
|
+
<xsd:element name="path" type="xsd:string"/>
|
1273
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="sessionID" type="xsd:string"/>
|
1274
|
+
</xsd:sequence>
|
1275
|
+
</xsd:complexType>
|
1276
|
+
</xsd:element>
|
1277
|
+
<xsd:element name="unsubscribeResult">
|
1278
|
+
<xsd:complexType>
|
1279
|
+
<xsd:sequence/>
|
1280
|
+
</xsd:complexType>
|
1281
|
+
</xsd:element>
|
1282
|
+
<xsd:element name="sendMessage">
|
1283
|
+
<xsd:complexType>
|
1284
|
+
<xsd:sequence>
|
1285
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="recipient" type="xsd:string"/>
|
1286
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="group" type="xsd:string"/>
|
1287
|
+
<xsd:element name="subject" type="xsd:string"/>
|
1288
|
+
<xsd:element name="body" type="xsd:string"/>
|
1289
|
+
<xsd:element name="priority" type="xsd:string"/>
|
1290
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
1291
|
+
</xsd:sequence>
|
1292
|
+
</xsd:complexType>
|
1293
|
+
</xsd:element>
|
1294
|
+
<xsd:element name="sendMessageResult">
|
1295
|
+
<xsd:complexType>
|
1296
|
+
<xsd:sequence>
|
1297
|
+
<xsd:element name="status" type="xsd:string"/>
|
1298
|
+
</xsd:sequence>
|
1299
|
+
</xsd:complexType>
|
1300
|
+
</xsd:element>
|
1301
|
+
<xsd:complexType name="SAWException">
|
1302
|
+
<xsd:sequence>
|
1303
|
+
<xsd:element name="message" type="xsd:string"/>
|
1304
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="exception" type="sawsoap:SAWException"/>
|
1305
|
+
</xsd:sequence>
|
1306
|
+
</xsd:complexType>
|
1307
|
+
<xsd:complexType name="PromptedColumnInfo">
|
1308
|
+
<xsd:sequence>
|
1309
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="Columns" type="xsd:string"/>
|
1310
|
+
</xsd:sequence>
|
1311
|
+
</xsd:complexType>
|
1312
|
+
<xsd:complexType name="JobInfo">
|
1313
|
+
<xsd:sequence>
|
1314
|
+
<xsd:element name="jobStats" type="sawsoap:JobStats"/>
|
1315
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="fileInfo" type="sawsoap:FileInfo"/>
|
1316
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="detailedInfo">
|
1317
|
+
<xsd:complexType>
|
1318
|
+
<xsd:sequence>
|
1319
|
+
<xsd:any maxOccurs="unbounded" minOccurs="0" processContents="skip"/>
|
1320
|
+
</xsd:sequence>
|
1321
|
+
</xsd:complexType>
|
1322
|
+
</xsd:element>
|
1323
|
+
</xsd:sequence>
|
1324
|
+
</xsd:complexType>
|
1325
|
+
<xsd:complexType name="JobStats">
|
1326
|
+
<xsd:sequence>
|
1327
|
+
<xsd:element name="jobID" type="xsd:integer"/>
|
1328
|
+
<xsd:element name="jobType" type="xsd:string"/>
|
1329
|
+
<xsd:element name="jobUser" type="xsd:string"/>
|
1330
|
+
<xsd:element name="jobState">
|
1331
|
+
<xsd:simpleType>
|
1332
|
+
<xsd:restriction base="xsd:string">
|
1333
|
+
<xsd:enumeration value="Running"/>
|
1334
|
+
<xsd:enumeration value="Finished"/>
|
1335
|
+
<xsd:enumeration value="Error"/>
|
1336
|
+
<xsd:enumeration value="Queued"/>
|
1337
|
+
<xsd:enumeration value="Cancelled"/>
|
1338
|
+
</xsd:restriction>
|
1339
|
+
</xsd:simpleType>
|
1340
|
+
</xsd:element>
|
1341
|
+
<xsd:element name="jobTotalMilliSec" type="xsd:string"/>
|
1342
|
+
<xsd:element name="jobStartedTime" type="xsd:dateTime"/>
|
1343
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="jobFinishedTime" type="xsd:dateTime"/>
|
1344
|
+
<xsd:element name="jobIsCancelling" type="xsd:string"/>
|
1345
|
+
<xsd:element minOccurs="0" name="exception" type="sawsoap:SAWException"/>
|
1346
|
+
</xsd:sequence>
|
1347
|
+
</xsd:complexType>
|
1348
|
+
<xsd:complexType name="FileInfo">
|
1349
|
+
<xsd:sequence>
|
1350
|
+
<xsd:element name="filepath" type="xsd:string"/>
|
1351
|
+
<xsd:element name="startTime" type="xsd:dateTime"/>
|
1352
|
+
<xsd:element name="endTime" type="xsd:dateTime"/>
|
1353
|
+
<xsd:element name="filesize" type="xsd:long"/>
|
1354
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="fileAttribs" type="sawsoap:NameValueArrayPair"/>
|
1355
|
+
</xsd:sequence>
|
1356
|
+
</xsd:complexType>
|
1357
|
+
<xsd:simpleType name="OverrideType">
|
1358
|
+
<xsd:restriction base="xsd:string">
|
1359
|
+
<xsd:enumeration value="Default"/>
|
1360
|
+
<xsd:enumeration value="None"/>
|
1361
|
+
<xsd:enumeration value="All"/>
|
1362
|
+
</xsd:restriction>
|
1363
|
+
</xsd:simpleType>
|
1364
|
+
<xsd:complexType name="SegmentationOptions">
|
1365
|
+
<xsd:sequence>
|
1366
|
+
<xsd:element default="false" maxOccurs="1" minOccurs="0" name="removeCacheHits" type="xsd:boolean"/>
|
1367
|
+
<xsd:element default="Default" maxOccurs="1" minOccurs="0" name="countOverride" type="sawsoap:OverrideType"/>
|
1368
|
+
<xsd:element default="Default" maxOccurs="1" minOccurs="0" name="cacheOverride" type="sawsoap:OverrideType"/>
|
1369
|
+
<xsd:element default="100" maxOccurs="1" minOccurs="0" name="samplingFactor" type="xsd:decimal"/>
|
1370
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="govRules" type="sawsoap:NameValuePair"/>
|
1371
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="prompts" type="sawsoap:NameValuePair"/>
|
1372
|
+
</xsd:sequence>
|
1373
|
+
</xsd:complexType>
|
1374
|
+
<xsd:complexType name="TreeNodePath">
|
1375
|
+
<xsd:sequence>
|
1376
|
+
<xsd:element name="treePath" type="xsd:string"/>
|
1377
|
+
<xsd:element name="treeNode" type="xsd:string"/>
|
1378
|
+
</xsd:sequence>
|
1379
|
+
</xsd:complexType>
|
1380
|
+
<xsd:element name="writeListFiles">
|
1381
|
+
<xsd:complexType>
|
1382
|
+
<xsd:sequence>
|
1383
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="report" type="sawsoap:ReportRef"/>
|
1384
|
+
<xsd:element minOccurs="0" name="reportParams" type="sawsoap:ReportParams"/>
|
1385
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="segmentPath" type="xsd:string"/>
|
1386
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="treeNodePath" type="sawsoap:TreeNodePath"/>
|
1387
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="segmentationOptions" type="sawsoap:SegmentationOptions"/>
|
1388
|
+
<xsd:element name="filesystem" type="xsd:string"/>
|
1389
|
+
<xsd:element name="timeout" type="xsd:integer"/>
|
1390
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="sessionID" type="xsd:string"/>
|
1391
|
+
</xsd:sequence>
|
1392
|
+
</xsd:complexType>
|
1393
|
+
</xsd:element>
|
1394
|
+
<xsd:element name="writeListFilesResult">
|
1395
|
+
<xsd:complexType>
|
1396
|
+
<xsd:sequence>
|
1397
|
+
<xsd:element name="jobInfo" type="sawsoap:JobInfo"/>
|
1398
|
+
</xsd:sequence>
|
1399
|
+
</xsd:complexType>
|
1400
|
+
</xsd:element>
|
1401
|
+
<xsd:element name="getJobInfo">
|
1402
|
+
<xsd:complexType>
|
1403
|
+
<xsd:sequence>
|
1404
|
+
<xsd:element name="jobID" type="xsd:integer"/>
|
1405
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="sessionID" type="xsd:string"/>
|
1406
|
+
</xsd:sequence>
|
1407
|
+
</xsd:complexType>
|
1408
|
+
</xsd:element>
|
1409
|
+
<xsd:element name="getJobInfoResult">
|
1410
|
+
<xsd:complexType>
|
1411
|
+
<xsd:sequence>
|
1412
|
+
<xsd:element name="jobInfo" type="sawsoap:JobInfo"/>
|
1413
|
+
</xsd:sequence>
|
1414
|
+
</xsd:complexType>
|
1415
|
+
</xsd:element>
|
1416
|
+
<xsd:element name="cancelJob">
|
1417
|
+
<xsd:complexType>
|
1418
|
+
<xsd:sequence>
|
1419
|
+
<xsd:element name="jobID" type="xsd:integer"/>
|
1420
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="sessionID" type="xsd:string"/>
|
1421
|
+
</xsd:sequence>
|
1422
|
+
</xsd:complexType>
|
1423
|
+
</xsd:element>
|
1424
|
+
<xsd:element name="cancelJobResult">
|
1425
|
+
<xsd:complexType>
|
1426
|
+
<xsd:sequence>
|
1427
|
+
<xsd:element name="jobInfo" type="sawsoap:JobInfo"/>
|
1428
|
+
</xsd:sequence>
|
1429
|
+
</xsd:complexType>
|
1430
|
+
</xsd:element>
|
1431
|
+
<xsd:element name="getCounts">
|
1432
|
+
<xsd:complexType>
|
1433
|
+
<xsd:sequence>
|
1434
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="segmentPath" type="xsd:string"/>
|
1435
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="treePath" type="xsd:string"/>
|
1436
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="segmentationOptions" type="sawsoap:SegmentationOptions"/>
|
1437
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="sessionID" type="xsd:string"/>
|
1438
|
+
</xsd:sequence>
|
1439
|
+
</xsd:complexType>
|
1440
|
+
</xsd:element>
|
1441
|
+
<xsd:element name="getCountsResult">
|
1442
|
+
<xsd:complexType>
|
1443
|
+
<xsd:sequence>
|
1444
|
+
<xsd:element name="jobInfo" type="sawsoap:JobInfo"/>
|
1445
|
+
</xsd:sequence>
|
1446
|
+
</xsd:complexType>
|
1447
|
+
</xsd:element>
|
1448
|
+
<xsd:element name="getPromptedColumns">
|
1449
|
+
<xsd:complexType>
|
1450
|
+
<xsd:sequence>
|
1451
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="segmentPath" type="xsd:string"/>
|
1452
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="treePath" type="xsd:string"/>
|
1453
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="sessionID" type="xsd:string"/>
|
1454
|
+
</xsd:sequence>
|
1455
|
+
</xsd:complexType>
|
1456
|
+
</xsd:element>
|
1457
|
+
<xsd:element name="getPromptedColumnsResult">
|
1458
|
+
<xsd:complexType>
|
1459
|
+
<xsd:sequence>
|
1460
|
+
<xsd:element name="ColumnInfo" type="sawsoap:PromptedColumnInfo"/>
|
1461
|
+
</xsd:sequence>
|
1462
|
+
</xsd:complexType>
|
1463
|
+
</xsd:element>
|
1464
|
+
<xsd:element name="purgeCache">
|
1465
|
+
<xsd:complexType>
|
1466
|
+
<xsd:sequence>
|
1467
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="segmentPath" type="xsd:string"/>
|
1468
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="treePath" type="xsd:string"/>
|
1469
|
+
<xsd:element default="false" maxOccurs="1" minOccurs="0" name="ignoreCacheRef" type="xsd:boolean"/>
|
1470
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="sessionID" type="xsd:string"/>
|
1471
|
+
</xsd:sequence>
|
1472
|
+
</xsd:complexType>
|
1473
|
+
</xsd:element>
|
1474
|
+
<xsd:element name="purgeCacheResult">
|
1475
|
+
<xsd:complexType>
|
1476
|
+
<xsd:sequence>
|
1477
|
+
<xsd:element name="jobInfo" type="sawsoap:JobInfo"/>
|
1478
|
+
</xsd:sequence>
|
1479
|
+
</xsd:complexType>
|
1480
|
+
</xsd:element>
|
1481
|
+
<xsd:element name="prepareCache">
|
1482
|
+
<xsd:complexType>
|
1483
|
+
<xsd:sequence>
|
1484
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="segmentPath" type="xsd:string"/>
|
1485
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="treePath" type="xsd:string"/>
|
1486
|
+
<xsd:element default="false" maxOccurs="1" minOccurs="0" name="refresh" type="xsd:boolean"/>
|
1487
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="sessionID" type="xsd:string"/>
|
1488
|
+
</xsd:sequence>
|
1489
|
+
</xsd:complexType>
|
1490
|
+
</xsd:element>
|
1491
|
+
<xsd:element name="prepareCacheResult">
|
1492
|
+
<xsd:complexType>
|
1493
|
+
<xsd:sequence>
|
1494
|
+
<xsd:element name="jobInfo" type="sawsoap:JobInfo"/>
|
1495
|
+
</xsd:sequence>
|
1496
|
+
</xsd:complexType>
|
1497
|
+
</xsd:element>
|
1498
|
+
<xsd:element name="saveResultSet">
|
1499
|
+
<xsd:complexType>
|
1500
|
+
<xsd:sequence>
|
1501
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="segmentPath" type="xsd:string"/>
|
1502
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="treeNodePath" type="sawsoap:TreeNodePath"/>
|
1503
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="savedSegmentPath" type="xsd:string"/>
|
1504
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="segmentationOptions" type="sawsoap:SegmentationOptions"/>
|
1505
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="SRCustomLabel" type="xsd:string"/>
|
1506
|
+
<xsd:element default="false" maxOccurs="1" minOccurs="0" name="appendStaticSegment" type="xsd:boolean"/>
|
1507
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="sessionID" type="xsd:string"/>
|
1508
|
+
</xsd:sequence>
|
1509
|
+
</xsd:complexType>
|
1510
|
+
</xsd:element>
|
1511
|
+
<xsd:element name="saveResultSetResult">
|
1512
|
+
<xsd:complexType>
|
1513
|
+
<xsd:sequence>
|
1514
|
+
<xsd:element name="jobInfo" type="sawsoap:JobInfo"/>
|
1515
|
+
</xsd:sequence>
|
1516
|
+
</xsd:complexType>
|
1517
|
+
</xsd:element>
|
1518
|
+
<xsd:complexType name="arrayOfGUIDs">
|
1519
|
+
<xsd:sequence>
|
1520
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="GUID" type="xsd:string"/>
|
1521
|
+
</xsd:sequence>
|
1522
|
+
</xsd:complexType>
|
1523
|
+
<xsd:element name="deleteResultSet">
|
1524
|
+
<xsd:complexType>
|
1525
|
+
<xsd:sequence>
|
1526
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="targetLevel" type="xsd:string"/>
|
1527
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="GUIDs" type="sawsoap:arrayOfGUIDs"/>
|
1528
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="segmentPath" type="xsd:string"/>
|
1529
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="sessionID" type="xsd:string"/>
|
1530
|
+
</xsd:sequence>
|
1531
|
+
</xsd:complexType>
|
1532
|
+
</xsd:element>
|
1533
|
+
<xsd:element name="deleteResultSetResult">
|
1534
|
+
<xsd:complexType>
|
1535
|
+
<xsd:sequence>
|
1536
|
+
<xsd:element name="jobInfo" type="sawsoap:JobInfo"/>
|
1537
|
+
</xsd:sequence>
|
1538
|
+
</xsd:complexType>
|
1539
|
+
</xsd:element>
|
1540
|
+
<xsd:simpleType name="SATableDetails">
|
1541
|
+
<xsd:restriction base="xsd:string">
|
1542
|
+
<xsd:enumeration value="Minimum"/>
|
1543
|
+
<xsd:enumeration value="IncludeColumns"/>
|
1544
|
+
</xsd:restriction>
|
1545
|
+
</xsd:simpleType>
|
1546
|
+
<xsd:simpleType name="SASubjectAreaDetails">
|
1547
|
+
<xsd:restriction base="xsd:string">
|
1548
|
+
<xsd:enumeration value="Minimum"/>
|
1549
|
+
<xsd:enumeration value="IncludeTables"/>
|
1550
|
+
<xsd:enumeration value="IncludeTablesAndColumns"/>
|
1551
|
+
</xsd:restriction>
|
1552
|
+
</xsd:simpleType>
|
1553
|
+
<xsd:simpleType name="AggregationRule">
|
1554
|
+
<xsd:restriction base="xsd:string">
|
1555
|
+
<xsd:enumeration value="None"/>
|
1556
|
+
<xsd:enumeration value="Sum"/>
|
1557
|
+
<xsd:enumeration value="Count"/>
|
1558
|
+
<xsd:enumeration value="Rank"/>
|
1559
|
+
<xsd:enumeration value="Avg"/>
|
1560
|
+
<xsd:enumeration value="Min"/>
|
1561
|
+
<xsd:enumeration value="Max"/>
|
1562
|
+
<xsd:enumeration value="Last"/>
|
1563
|
+
<xsd:enumeration value="Percentile"/>
|
1564
|
+
<xsd:enumeration value="First"/>
|
1565
|
+
<xsd:enumeration value="ServerDefault"/>
|
1566
|
+
<xsd:enumeration value="CountStar"/>
|
1567
|
+
<xsd:enumeration value="Complex"/>
|
1568
|
+
<xsd:enumeration value="TopN"/>
|
1569
|
+
<xsd:enumeration value="BottomN"/>
|
1570
|
+
<xsd:enumeration value="SubTotal"/>
|
1571
|
+
<xsd:enumeration value="DimensionAggr"/>
|
1572
|
+
<xsd:enumeration value="CountDistinct"/>
|
1573
|
+
</xsd:restriction>
|
1574
|
+
</xsd:simpleType>
|
1575
|
+
<xsd:simpleType name="SADataType">
|
1576
|
+
<xsd:restriction base="xsd:string">
|
1577
|
+
<xsd:enumeration value="Invalid"/>
|
1578
|
+
<xsd:enumeration value="Unknown"/>
|
1579
|
+
<xsd:enumeration value="VarBinary"/>
|
1580
|
+
<xsd:enumeration value="LongVarBinary"/>
|
1581
|
+
<xsd:enumeration value="Binary"/>
|
1582
|
+
<xsd:enumeration value="Char"/>
|
1583
|
+
<xsd:enumeration value="VarChar"/>
|
1584
|
+
<xsd:enumeration value="LongVarChar"/>
|
1585
|
+
<xsd:enumeration value="Date"/>
|
1586
|
+
<xsd:enumeration value="Time"/>
|
1587
|
+
<xsd:enumeration value="TimeStamp"/>
|
1588
|
+
<xsd:enumeration value="Numeric"/>
|
1589
|
+
<xsd:enumeration value="Decimal"/>
|
1590
|
+
<xsd:enumeration value="Integer"/>
|
1591
|
+
<xsd:enumeration value="SmallInt"/>
|
1592
|
+
<xsd:enumeration value="BigInt"/>
|
1593
|
+
<xsd:enumeration value="TinyInt"/>
|
1594
|
+
<xsd:enumeration value="Bit"/>
|
1595
|
+
<xsd:enumeration value="Float"/>
|
1596
|
+
<xsd:enumeration value="Real"/>
|
1597
|
+
<xsd:enumeration value="Double"/>
|
1598
|
+
<xsd:enumeration value="Coordinate"/>
|
1599
|
+
</xsd:restriction>
|
1600
|
+
</xsd:simpleType>
|
1601
|
+
<xsd:complexType name="SAColumn">
|
1602
|
+
<xsd:sequence>
|
1603
|
+
<xsd:element name="name" type="xsd:string"/>
|
1604
|
+
<xsd:element name="displayName" type="xsd:string"/>
|
1605
|
+
<xsd:element name="description" type="xsd:string"/>
|
1606
|
+
<xsd:element name="nullable" type="xsd:boolean"/>
|
1607
|
+
<xsd:element name="dataType" type="xsd:string"/>
|
1608
|
+
<xsd:element name="aggregatable" type="xsd:boolean"/>
|
1609
|
+
<xsd:element name="aggrRule" nillable="false" type="xsd:string"/>
|
1610
|
+
<xsd:element default="false" name="hidden" type="xsd:boolean"/>
|
1611
|
+
</xsd:sequence>
|
1612
|
+
</xsd:complexType>
|
1613
|
+
<xsd:complexType name="SATable">
|
1614
|
+
<xsd:sequence>
|
1615
|
+
<xsd:element name="name" type="xsd:string"/>
|
1616
|
+
<xsd:element name="displayName" type="xsd:string"/>
|
1617
|
+
<xsd:element name="description" type="xsd:string"/>
|
1618
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="columns" nillable="true" type="sawsoap:SAColumn"/>
|
1619
|
+
<xsd:element default="false" name="hidden" type="xsd:boolean"/>
|
1620
|
+
<xsd:element minOccurs="0" name="parentTableName" type="xsd:string"/>
|
1621
|
+
</xsd:sequence>
|
1622
|
+
</xsd:complexType>
|
1623
|
+
<xsd:complexType name="SASubjectArea">
|
1624
|
+
<xsd:sequence>
|
1625
|
+
<xsd:element name="name" type="xsd:string"/>
|
1626
|
+
<xsd:element name="displayName" type="xsd:string"/>
|
1627
|
+
<xsd:element name="description" type="xsd:string"/>
|
1628
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="tables" nillable="true" type="sawsoap:SATable"/>
|
1629
|
+
<xsd:element default="false" name="hidden" type="xsd:boolean"/>
|
1630
|
+
</xsd:sequence>
|
1631
|
+
</xsd:complexType>
|
1632
|
+
<xsd:element name="clearQueryCache">
|
1633
|
+
<xsd:complexType>
|
1634
|
+
<xsd:sequence>
|
1635
|
+
<xsd:element maxOccurs="1" minOccurs="0" name="sessionID" type="xsd:string"/>
|
1636
|
+
</xsd:sequence>
|
1637
|
+
</xsd:complexType>
|
1638
|
+
</xsd:element>
|
1639
|
+
<xsd:element name="clearQueryCacheResult">
|
1640
|
+
<xsd:complexType>
|
1641
|
+
<xsd:sequence>
|
1642
|
+
<xsd:element name="result" type="xsd:boolean"/>
|
1643
|
+
</xsd:sequence>
|
1644
|
+
</xsd:complexType>
|
1645
|
+
</xsd:element>
|
1646
|
+
<xsd:element name="getSubjectAreas">
|
1647
|
+
<xsd:complexType>
|
1648
|
+
<xsd:sequence>
|
1649
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
1650
|
+
</xsd:sequence>
|
1651
|
+
</xsd:complexType>
|
1652
|
+
</xsd:element>
|
1653
|
+
<xsd:element name="getSubjectAreasResult">
|
1654
|
+
<xsd:complexType>
|
1655
|
+
<xsd:sequence>
|
1656
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="subjectArea" type="sawsoap:SASubjectArea"/>
|
1657
|
+
</xsd:sequence>
|
1658
|
+
</xsd:complexType>
|
1659
|
+
</xsd:element>
|
1660
|
+
<xsd:element name="describeSubjectArea">
|
1661
|
+
<xsd:complexType>
|
1662
|
+
<xsd:sequence>
|
1663
|
+
<xsd:element name="subjectAreaName" type="xsd:string"/>
|
1664
|
+
<xsd:element name="detailsLevel" type="sawsoap:SASubjectAreaDetails"/>
|
1665
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
1666
|
+
</xsd:sequence>
|
1667
|
+
</xsd:complexType>
|
1668
|
+
</xsd:element>
|
1669
|
+
<xsd:element name="describeSubjectAreaResult">
|
1670
|
+
<xsd:complexType>
|
1671
|
+
<xsd:sequence>
|
1672
|
+
<xsd:element name="subjectArea" type="sawsoap:SASubjectArea"/>
|
1673
|
+
</xsd:sequence>
|
1674
|
+
</xsd:complexType>
|
1675
|
+
</xsd:element>
|
1676
|
+
<xsd:element name="describeTable">
|
1677
|
+
<xsd:complexType>
|
1678
|
+
<xsd:sequence>
|
1679
|
+
<xsd:element name="subjectAreaName" type="xsd:string"/>
|
1680
|
+
<xsd:element name="tableName" type="xsd:string"/>
|
1681
|
+
<xsd:element name="detailsLevel" type="sawsoap:SATableDetails"/>
|
1682
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
1683
|
+
</xsd:sequence>
|
1684
|
+
</xsd:complexType>
|
1685
|
+
</xsd:element>
|
1686
|
+
<xsd:element name="describeTableResult">
|
1687
|
+
<xsd:complexType>
|
1688
|
+
<xsd:sequence>
|
1689
|
+
<xsd:element name="table" type="sawsoap:SATable"/>
|
1690
|
+
</xsd:sequence>
|
1691
|
+
</xsd:complexType>
|
1692
|
+
</xsd:element>
|
1693
|
+
<xsd:element name="describeColumn">
|
1694
|
+
<xsd:complexType>
|
1695
|
+
<xsd:sequence>
|
1696
|
+
<xsd:element name="subjectAreaName" type="xsd:string"/>
|
1697
|
+
<xsd:element name="tableName" type="xsd:string"/>
|
1698
|
+
<xsd:element name="columnName" type="xsd:string"/>
|
1699
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
1700
|
+
</xsd:sequence>
|
1701
|
+
</xsd:complexType>
|
1702
|
+
</xsd:element>
|
1703
|
+
<xsd:element name="describeColumnResult">
|
1704
|
+
<xsd:complexType>
|
1705
|
+
<xsd:sequence>
|
1706
|
+
<xsd:element name="column" type="sawsoap:SAColumn"/>
|
1707
|
+
</xsd:sequence>
|
1708
|
+
</xsd:complexType>
|
1709
|
+
</xsd:element>
|
1710
|
+
<xsd:complexType name="ImportError">
|
1711
|
+
<xsd:sequence>
|
1712
|
+
<xsd:element name="item" type="xsd:string"/>
|
1713
|
+
<xsd:element name="operation" type="xsd:string"/>
|
1714
|
+
<xsd:element name="file" type="xsd:string"/>
|
1715
|
+
<xsd:element name="line" type="xsd:integer"/>
|
1716
|
+
<xsd:element name="catalogError" type="xsd:string"/>
|
1717
|
+
</xsd:sequence>
|
1718
|
+
</xsd:complexType>
|
1719
|
+
<xsd:complexType name="CatalogItemsFilter">
|
1720
|
+
<xsd:sequence>
|
1721
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="items" type="xsd:string"/>
|
1722
|
+
<xsd:element name="from" type="xsd:dateTime"/>
|
1723
|
+
<xsd:element name="to" type="xsd:dateTime"/>
|
1724
|
+
</xsd:sequence>
|
1725
|
+
</xsd:complexType>
|
1726
|
+
<xsd:complexType name="PathMapEntry">
|
1727
|
+
<xsd:sequence>
|
1728
|
+
<xsd:element name="source" type="xsd:string"/>
|
1729
|
+
<xsd:element name="destination" type="xsd:string"/>
|
1730
|
+
</xsd:sequence>
|
1731
|
+
</xsd:complexType>
|
1732
|
+
<xsd:complexType name="PathMap">
|
1733
|
+
<xsd:sequence>
|
1734
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="pathMapEntries" type="sawsoap:PathMapEntry"/>
|
1735
|
+
</xsd:sequence>
|
1736
|
+
</xsd:complexType>
|
1737
|
+
<xsd:simpleType name="ExportFlags">
|
1738
|
+
<xsd:restriction base="xsd:string">
|
1739
|
+
<xsd:enumeration value="processAll_ForMerge"/>
|
1740
|
+
<xsd:enumeration value="processAll_ForReplace"/>
|
1741
|
+
<xsd:enumeration value="processAll_ForWriteIfNotExists"/>
|
1742
|
+
<xsd:enumeration value="processLocalChanges"/>
|
1743
|
+
<xsd:enumeration value="processRemoteChanges"/>
|
1744
|
+
<xsd:enumeration value="processAllChanges"/>
|
1745
|
+
</xsd:restriction>
|
1746
|
+
</xsd:simpleType>
|
1747
|
+
<xsd:simpleType name="ImportFlags">
|
1748
|
+
<xsd:restriction base="xsd:string">
|
1749
|
+
<xsd:enumeration value="processLocalChanges"/>
|
1750
|
+
<xsd:enumeration value="processRemoteChanges"/>
|
1751
|
+
<xsd:enumeration value="processAllChanges"/>
|
1752
|
+
</xsd:restriction>
|
1753
|
+
</xsd:simpleType>
|
1754
|
+
<xsd:element name="export">
|
1755
|
+
<xsd:complexType>
|
1756
|
+
<xsd:sequence>
|
1757
|
+
<xsd:element name="filename" type="xsd:string"/>
|
1758
|
+
<xsd:element name="filter" type="sawsoap:CatalogItemsFilter"/>
|
1759
|
+
<xsd:element name="flag" type="sawsoap:ExportFlags"/>
|
1760
|
+
<xsd:element default="true" name="exportSecurity" type="xsd:boolean"/>
|
1761
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
1762
|
+
</xsd:sequence>
|
1763
|
+
</xsd:complexType>
|
1764
|
+
</xsd:element>
|
1765
|
+
<xsd:element name="exportResult">
|
1766
|
+
<xsd:complexType>
|
1767
|
+
<xsd:sequence/>
|
1768
|
+
</xsd:complexType>
|
1769
|
+
</xsd:element>
|
1770
|
+
<xsd:element name="import">
|
1771
|
+
<xsd:complexType>
|
1772
|
+
<xsd:sequence>
|
1773
|
+
<xsd:element name="filename" type="xsd:string"/>
|
1774
|
+
<xsd:element name="flag" type="sawsoap:ImportFlags"/>
|
1775
|
+
<xsd:element name="lastPurgedLog" type="xsd:dateTime"/>
|
1776
|
+
<xsd:element name="updateReplicationLog" type="xsd:boolean"/>
|
1777
|
+
<xsd:element name="returnErrors" type="xsd:boolean"/>
|
1778
|
+
<xsd:element name="filter" nillable="true" type="sawsoap:CatalogItemsFilter"/>
|
1779
|
+
<xsd:element name="pathMap" nillable="true" type="sawsoap:PathMap"/>
|
1780
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
1781
|
+
</xsd:sequence>
|
1782
|
+
</xsd:complexType>
|
1783
|
+
</xsd:element>
|
1784
|
+
<xsd:element name="importResult">
|
1785
|
+
<xsd:complexType>
|
1786
|
+
<xsd:sequence>
|
1787
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="error" type="sawsoap:ImportError"/>
|
1788
|
+
</xsd:sequence>
|
1789
|
+
</xsd:complexType>
|
1790
|
+
</xsd:element>
|
1791
|
+
<xsd:element name="markForReplication">
|
1792
|
+
<xsd:complexType>
|
1793
|
+
<xsd:sequence>
|
1794
|
+
<xsd:element name="item" type="xsd:string"/>
|
1795
|
+
<xsd:element name="replicate" type="xsd:boolean"/>
|
1796
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
1797
|
+
</xsd:sequence>
|
1798
|
+
</xsd:complexType>
|
1799
|
+
</xsd:element>
|
1800
|
+
<xsd:element name="markForReplicationResult">
|
1801
|
+
<xsd:complexType>
|
1802
|
+
<xsd:sequence/>
|
1803
|
+
</xsd:complexType>
|
1804
|
+
</xsd:element>
|
1805
|
+
<xsd:element name="purgeLog">
|
1806
|
+
<xsd:complexType>
|
1807
|
+
<xsd:sequence>
|
1808
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="items" type="xsd:string"/>
|
1809
|
+
<xsd:element name="timestamp" type="xsd:dateTime"/>
|
1810
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
1811
|
+
</xsd:sequence>
|
1812
|
+
</xsd:complexType>
|
1813
|
+
</xsd:element>
|
1814
|
+
<xsd:element name="purgeLogResult">
|
1815
|
+
<xsd:complexType>
|
1816
|
+
<xsd:sequence/>
|
1817
|
+
</xsd:complexType>
|
1818
|
+
</xsd:element>
|
1819
|
+
<xsd:element name="applyReportParams">
|
1820
|
+
<xsd:complexType>
|
1821
|
+
<xsd:sequence>
|
1822
|
+
<xsd:element name="reportRef" type="sawsoap:ReportRef"/>
|
1823
|
+
<xsd:element name="reportParams" type="sawsoap:ReportParams"/>
|
1824
|
+
<xsd:element name="encodeInString" type="xsd:boolean"/>
|
1825
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
1826
|
+
</xsd:sequence>
|
1827
|
+
</xsd:complexType>
|
1828
|
+
</xsd:element>
|
1829
|
+
<xsd:element name="applyReportParamsResult">
|
1830
|
+
<xsd:complexType>
|
1831
|
+
<xsd:sequence>
|
1832
|
+
<xsd:element name="return" type="xsd:anyType"/>
|
1833
|
+
</xsd:sequence>
|
1834
|
+
</xsd:complexType>
|
1835
|
+
</xsd:element>
|
1836
|
+
<xsd:element name="generateReportSQL">
|
1837
|
+
<xsd:complexType>
|
1838
|
+
<xsd:sequence>
|
1839
|
+
<xsd:element name="reportRef" type="sawsoap:ReportRef"/>
|
1840
|
+
<xsd:element name="reportParams" nillable="true" type="sawsoap:ReportParams"/>
|
1841
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
1842
|
+
</xsd:sequence>
|
1843
|
+
</xsd:complexType>
|
1844
|
+
</xsd:element>
|
1845
|
+
<xsd:element name="generateReportSQLResult">
|
1846
|
+
<xsd:complexType>
|
1847
|
+
<xsd:sequence>
|
1848
|
+
<xsd:element name="return" type="xsd:string"/>
|
1849
|
+
</xsd:sequence>
|
1850
|
+
</xsd:complexType>
|
1851
|
+
</xsd:element>
|
1852
|
+
<xsd:element name="applyReportDefaults">
|
1853
|
+
<xsd:complexType>
|
1854
|
+
<xsd:sequence>
|
1855
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="reportRefs" type="sawsoap:ReportRef"/>
|
1856
|
+
<xsd:element name="sessionID" nillable="true" type="xsd:string"/>
|
1857
|
+
</xsd:sequence>
|
1858
|
+
</xsd:complexType>
|
1859
|
+
</xsd:element>
|
1860
|
+
<xsd:element name="applyReportDefaultsResult">
|
1861
|
+
<xsd:complexType>
|
1862
|
+
<xsd:sequence>
|
1863
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="reportXml" type="xsd:string"/>
|
1864
|
+
</xsd:sequence>
|
1865
|
+
</xsd:complexType>
|
1866
|
+
</xsd:element>
|
1867
|
+
</xsd:schema>
|
1868
|
+
</wsdl:types>
|
1869
|
+
<jaxws:bindings xmlns:jaxws="http://java.sun.com/xml/ns/jaxws">
|
1870
|
+
<jaxws:package name="oracle.bi.web.soap">
|
1871
|
+
<jaxws:javadoc/>
|
1872
|
+
</jaxws:package>
|
1873
|
+
</jaxws:bindings>
|
1874
|
+
<wsdl:message name="logonIn">
|
1875
|
+
<wsdl:part element="sawsoap:logon" name="parameters"/>
|
1876
|
+
</wsdl:message>
|
1877
|
+
<wsdl:message name="logonOut">
|
1878
|
+
<wsdl:part element="sawsoap:logonResult" name="parameters"/>
|
1879
|
+
</wsdl:message>
|
1880
|
+
<wsdl:message name="logonexIn">
|
1881
|
+
<wsdl:part element="sawsoap:logonex" name="parameters"/>
|
1882
|
+
</wsdl:message>
|
1883
|
+
<wsdl:message name="logonexOut">
|
1884
|
+
<wsdl:part element="sawsoap:logonexResult" name="parameters"/>
|
1885
|
+
</wsdl:message>
|
1886
|
+
<wsdl:message name="logoffIn">
|
1887
|
+
<wsdl:part element="sawsoap:logoff" name="parameters"/>
|
1888
|
+
</wsdl:message>
|
1889
|
+
<wsdl:message name="logoffOut">
|
1890
|
+
<wsdl:part element="sawsoap:logoffResult" name="parameters"/>
|
1891
|
+
</wsdl:message>
|
1892
|
+
<wsdl:message name="keepAliveIn">
|
1893
|
+
<wsdl:part element="sawsoap:keepAlive" name="parameters"/>
|
1894
|
+
</wsdl:message>
|
1895
|
+
<wsdl:message name="keepAliveOut">
|
1896
|
+
<wsdl:part element="sawsoap:keepAliveResult" name="parameters"/>
|
1897
|
+
</wsdl:message>
|
1898
|
+
<wsdl:message name="getCurUserIn">
|
1899
|
+
<wsdl:part element="sawsoap:getCurUser" name="parameters"/>
|
1900
|
+
</wsdl:message>
|
1901
|
+
<wsdl:message name="getCurUserOut">
|
1902
|
+
<wsdl:part element="sawsoap:getCurUserResult" name="parameters"/>
|
1903
|
+
</wsdl:message>
|
1904
|
+
<wsdl:message name="getSessionEnvironmentIn">
|
1905
|
+
<wsdl:part element="sawsoap:getSessionEnvironment" name="parameters"/>
|
1906
|
+
</wsdl:message>
|
1907
|
+
<wsdl:message name="getSessionEnvironmentOut">
|
1908
|
+
<wsdl:part element="sawsoap:getSessionEnvironmentResult" name="parameters"/>
|
1909
|
+
</wsdl:message>
|
1910
|
+
<wsdl:message name="getSessionVariablesIn">
|
1911
|
+
<wsdl:part element="sawsoap:getSessionVariables" name="parameters"/>
|
1912
|
+
</wsdl:message>
|
1913
|
+
<wsdl:message name="getSessionVariablesOut">
|
1914
|
+
<wsdl:part element="sawsoap:getSessionVariablesResult" name="parameters"/>
|
1915
|
+
</wsdl:message>
|
1916
|
+
<wsdl:message name="impersonateIn">
|
1917
|
+
<wsdl:part element="sawsoap:impersonate" name="parameters"/>
|
1918
|
+
</wsdl:message>
|
1919
|
+
<wsdl:message name="impersonateOut">
|
1920
|
+
<wsdl:part element="sawsoap:impersonateResult" name="parameters"/>
|
1921
|
+
</wsdl:message>
|
1922
|
+
<wsdl:message name="impersonateexIn">
|
1923
|
+
<wsdl:part element="sawsoap:impersonateex" name="parameters"/>
|
1924
|
+
</wsdl:message>
|
1925
|
+
<wsdl:message name="impersonateexOut">
|
1926
|
+
<wsdl:part element="sawsoap:impersonateexResult" name="parameters"/>
|
1927
|
+
</wsdl:message>
|
1928
|
+
<wsdl:portType name="SAWSessionServiceSoap">
|
1929
|
+
<wsdl:operation name="logon">
|
1930
|
+
<wsdl:input message="sawsoap:logonIn"/>
|
1931
|
+
<wsdl:output message="sawsoap:logonOut"/>
|
1932
|
+
</wsdl:operation>
|
1933
|
+
<wsdl:operation name="logonex">
|
1934
|
+
<wsdl:input message="sawsoap:logonexIn"/>
|
1935
|
+
<wsdl:output message="sawsoap:logonexOut"/>
|
1936
|
+
</wsdl:operation>
|
1937
|
+
<wsdl:operation name="logoff">
|
1938
|
+
<wsdl:input message="sawsoap:logoffIn"/>
|
1939
|
+
<wsdl:output message="sawsoap:logoffOut"/>
|
1940
|
+
</wsdl:operation>
|
1941
|
+
<wsdl:operation name="keepAlive">
|
1942
|
+
<wsdl:input message="sawsoap:keepAliveIn"/>
|
1943
|
+
<wsdl:output message="sawsoap:keepAliveOut"/>
|
1944
|
+
</wsdl:operation>
|
1945
|
+
<wsdl:operation name="getCurUser">
|
1946
|
+
<wsdl:input message="sawsoap:getCurUserIn"/>
|
1947
|
+
<wsdl:output message="sawsoap:getCurUserOut"/>
|
1948
|
+
</wsdl:operation>
|
1949
|
+
<wsdl:operation name="getSessionEnvironment">
|
1950
|
+
<wsdl:input message="sawsoap:getSessionEnvironmentIn"/>
|
1951
|
+
<wsdl:output message="sawsoap:getSessionEnvironmentOut"/>
|
1952
|
+
</wsdl:operation>
|
1953
|
+
<wsdl:operation name="getSessionVariables">
|
1954
|
+
<wsdl:documentation>Returns values of BIEE variables associated with the current session
|
1955
|
+
Here is the list of predefined variables :
|
1956
|
+
NQ_SESSION.USER,
|
1957
|
+
NQ_SESSION.USERGUID,
|
1958
|
+
NQ_SESSION.GROUP,
|
1959
|
+
NQ_SESSION.GROUPGUIDS,
|
1960
|
+
NQ_SESSION.WEBGROUPS,
|
1961
|
+
NQ_SESSION.REALM,
|
1962
|
+
NQ_SESSION.REALMGUID,
|
1963
|
+
NQ_SESSION.TOKENS,
|
1964
|
+
NQ_SESSION.REQUESTKEY,
|
1965
|
+
NQ_SESSION.PORTALPATH,
|
1966
|
+
NQ_SESSION.DISPLAYNAME,
|
1967
|
+
NQ_SESSION.SKIN,
|
1968
|
+
NQ_SESSION.STYLE,
|
1969
|
+
NQ_SESSION.EMAIL,
|
1970
|
+
NQ_SESSION.CURRENCYTAG,
|
1971
|
+
NQ_SESSION.ACTUATEUSERID,
|
1972
|
+
NQ_SESSION.TIMEZONE,
|
1973
|
+
NQ_SESSION.DATA_TZ,
|
1974
|
+
NQ_SESSION.DATA_DISPLAY_TZ,
|
1975
|
+
NQ_SESSION.PROXYLEVEL,
|
1976
|
+
NQ_SESSION.USERLOCALE,
|
1977
|
+
NQ_SESSION.USERLANG,
|
1978
|
+
NQ_SESSION.PREFERRED_CURRENCY</wsdl:documentation>
|
1979
|
+
<wsdl:input message="sawsoap:getSessionVariablesIn"/>
|
1980
|
+
<wsdl:output message="sawsoap:getSessionVariablesOut"/>
|
1981
|
+
</wsdl:operation>
|
1982
|
+
<wsdl:operation name="impersonate">
|
1983
|
+
<wsdl:input message="sawsoap:impersonateIn"/>
|
1984
|
+
<wsdl:output message="sawsoap:impersonateOut"/>
|
1985
|
+
</wsdl:operation>
|
1986
|
+
<wsdl:operation name="impersonateex">
|
1987
|
+
<wsdl:input message="sawsoap:impersonateexIn"/>
|
1988
|
+
<wsdl:output message="sawsoap:impersonateexOut"/>
|
1989
|
+
</wsdl:operation>
|
1990
|
+
</wsdl:portType>
|
1991
|
+
<wsdl:binding name="SAWSessionService" type="sawsoap:SAWSessionServiceSoap">
|
1992
|
+
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
|
1993
|
+
<wsdl:operation name="logon">
|
1994
|
+
<soap:operation soapAction="#logon" style="document"/>
|
1995
|
+
<wsdl:input>
|
1996
|
+
<soap:body use="literal"/>
|
1997
|
+
</wsdl:input>
|
1998
|
+
<wsdl:output>
|
1999
|
+
<soap:body use="literal"/>
|
2000
|
+
</wsdl:output>
|
2001
|
+
</wsdl:operation>
|
2002
|
+
<wsdl:operation name="logonex">
|
2003
|
+
<soap:operation soapAction="#logonex" style="document"/>
|
2004
|
+
<wsdl:input>
|
2005
|
+
<soap:body use="literal"/>
|
2006
|
+
</wsdl:input>
|
2007
|
+
<wsdl:output>
|
2008
|
+
<soap:body use="literal"/>
|
2009
|
+
</wsdl:output>
|
2010
|
+
</wsdl:operation>
|
2011
|
+
<wsdl:operation name="logoff">
|
2012
|
+
<soap:operation soapAction="#logoff" style="document"/>
|
2013
|
+
<wsdl:input>
|
2014
|
+
<soap:body use="literal"/>
|
2015
|
+
</wsdl:input>
|
2016
|
+
<wsdl:output>
|
2017
|
+
<soap:body use="literal"/>
|
2018
|
+
</wsdl:output>
|
2019
|
+
</wsdl:operation>
|
2020
|
+
<wsdl:operation name="keepAlive">
|
2021
|
+
<soap:operation soapAction="#keepAlive" style="document"/>
|
2022
|
+
<wsdl:input>
|
2023
|
+
<soap:body use="literal"/>
|
2024
|
+
</wsdl:input>
|
2025
|
+
<wsdl:output>
|
2026
|
+
<soap:body use="literal"/>
|
2027
|
+
</wsdl:output>
|
2028
|
+
</wsdl:operation>
|
2029
|
+
<wsdl:operation name="getCurUser">
|
2030
|
+
<soap:operation soapAction="#getCurUser" style="document"/>
|
2031
|
+
<wsdl:input>
|
2032
|
+
<soap:body use="literal"/>
|
2033
|
+
</wsdl:input>
|
2034
|
+
<wsdl:output>
|
2035
|
+
<soap:body use="literal"/>
|
2036
|
+
</wsdl:output>
|
2037
|
+
</wsdl:operation>
|
2038
|
+
<wsdl:operation name="getSessionEnvironment">
|
2039
|
+
<soap:operation soapAction="#getSessionEnvironment" style="document"/>
|
2040
|
+
<wsdl:input>
|
2041
|
+
<soap:body use="literal"/>
|
2042
|
+
</wsdl:input>
|
2043
|
+
<wsdl:output>
|
2044
|
+
<soap:body use="literal"/>
|
2045
|
+
</wsdl:output>
|
2046
|
+
</wsdl:operation>
|
2047
|
+
<wsdl:operation name="getSessionVariables">
|
2048
|
+
<soap:operation soapAction="#getSessionVariables" style="document"/>
|
2049
|
+
<wsdl:input>
|
2050
|
+
<soap:body use="literal"/>
|
2051
|
+
</wsdl:input>
|
2052
|
+
<wsdl:output>
|
2053
|
+
<soap:body use="literal"/>
|
2054
|
+
</wsdl:output>
|
2055
|
+
</wsdl:operation>
|
2056
|
+
<wsdl:operation name="impersonate">
|
2057
|
+
<soap:operation soapAction="#impersonate" style="document"/>
|
2058
|
+
<wsdl:input>
|
2059
|
+
<soap:body use="literal"/>
|
2060
|
+
</wsdl:input>
|
2061
|
+
<wsdl:output>
|
2062
|
+
<soap:body use="literal"/>
|
2063
|
+
</wsdl:output>
|
2064
|
+
</wsdl:operation>
|
2065
|
+
<wsdl:operation name="impersonateex">
|
2066
|
+
<soap:operation soapAction="#impersonateex" style="document"/>
|
2067
|
+
<wsdl:input>
|
2068
|
+
<soap:body use="literal"/>
|
2069
|
+
</wsdl:input>
|
2070
|
+
<wsdl:output>
|
2071
|
+
<soap:body use="literal"/>
|
2072
|
+
</wsdl:output>
|
2073
|
+
</wsdl:operation>
|
2074
|
+
</wsdl:binding>
|
2075
|
+
<wsdl:service name="SAWSessionService">
|
2076
|
+
<wsdl:port binding="sawsoap:SAWSessionService" name="SAWSessionServiceSoap">
|
2077
|
+
<soap:address location="https://fap0023-bi.oracleads.com/analytics-ws/saw.dll?SoapImpl=nQSessionService"/>
|
2078
|
+
</wsdl:port>
|
2079
|
+
</wsdl:service>
|
2080
|
+
<wsdl:message name="deleteItemIn">
|
2081
|
+
<wsdl:part element="sawsoap:deleteItem" name="parameters"/>
|
2082
|
+
</wsdl:message>
|
2083
|
+
<wsdl:message name="deleteItemOut">
|
2084
|
+
<wsdl:part element="sawsoap:deleteItemResult" name="parameters"/>
|
2085
|
+
</wsdl:message>
|
2086
|
+
<wsdl:message name="removeFolderIn">
|
2087
|
+
<wsdl:part element="sawsoap:removeFolder" name="parameters"/>
|
2088
|
+
</wsdl:message>
|
2089
|
+
<wsdl:message name="removeFolderOut">
|
2090
|
+
<wsdl:part element="sawsoap:removeFolderResult" name="parameters"/>
|
2091
|
+
</wsdl:message>
|
2092
|
+
<wsdl:message name="createFolderIn">
|
2093
|
+
<wsdl:part element="sawsoap:createFolder" name="parameters"/>
|
2094
|
+
</wsdl:message>
|
2095
|
+
<wsdl:message name="createFolderOut">
|
2096
|
+
<wsdl:part element="sawsoap:createFolderResult" name="parameters"/>
|
2097
|
+
</wsdl:message>
|
2098
|
+
<wsdl:message name="createLinkIn">
|
2099
|
+
<wsdl:part element="sawsoap:createLink" name="parameters"/>
|
2100
|
+
</wsdl:message>
|
2101
|
+
<wsdl:message name="createLinkOut">
|
2102
|
+
<wsdl:part element="sawsoap:createLinkResult" name="parameters"/>
|
2103
|
+
</wsdl:message>
|
2104
|
+
<wsdl:message name="moveItemIn">
|
2105
|
+
<wsdl:part element="sawsoap:moveItem" name="parameters"/>
|
2106
|
+
</wsdl:message>
|
2107
|
+
<wsdl:message name="moveItemOut">
|
2108
|
+
<wsdl:part element="sawsoap:moveItemResult" name="parameters"/>
|
2109
|
+
</wsdl:message>
|
2110
|
+
<wsdl:message name="copyItemIn">
|
2111
|
+
<wsdl:part element="sawsoap:copyItem" name="parameters"/>
|
2112
|
+
</wsdl:message>
|
2113
|
+
<wsdl:message name="copyItemOut">
|
2114
|
+
<wsdl:part element="sawsoap:copyItemResult" name="parameters"/>
|
2115
|
+
</wsdl:message>
|
2116
|
+
<wsdl:message name="copyItem2In">
|
2117
|
+
<wsdl:part element="sawsoap:copyItem2" name="parameters"/>
|
2118
|
+
</wsdl:message>
|
2119
|
+
<wsdl:message name="copyItem2Out">
|
2120
|
+
<wsdl:part element="sawsoap:copyItem2Result" name="parameters"/>
|
2121
|
+
</wsdl:message>
|
2122
|
+
<wsdl:message name="pasteItem2In">
|
2123
|
+
<wsdl:part element="sawsoap:pasteItem2" name="parameters"/>
|
2124
|
+
</wsdl:message>
|
2125
|
+
<wsdl:message name="pasteItem2Out">
|
2126
|
+
<wsdl:part element="sawsoap:pasteItem2Result" name="parameters"/>
|
2127
|
+
</wsdl:message>
|
2128
|
+
<wsdl:message name="getSubItemsIn">
|
2129
|
+
<wsdl:part element="sawsoap:getSubItems" name="parameters"/>
|
2130
|
+
</wsdl:message>
|
2131
|
+
<wsdl:message name="getSubItemsOut">
|
2132
|
+
<wsdl:part element="sawsoap:getSubItemsResult" name="parameters"/>
|
2133
|
+
</wsdl:message>
|
2134
|
+
<wsdl:message name="getItemInfoIn">
|
2135
|
+
<wsdl:part element="sawsoap:getItemInfo" name="parameters"/>
|
2136
|
+
</wsdl:message>
|
2137
|
+
<wsdl:message name="getItemInfoOut">
|
2138
|
+
<wsdl:part element="sawsoap:getItemInfoResult" name="parameters"/>
|
2139
|
+
</wsdl:message>
|
2140
|
+
<wsdl:message name="setItemPropertyIn">
|
2141
|
+
<wsdl:part element="sawsoap:setItemProperty" name="parameters"/>
|
2142
|
+
</wsdl:message>
|
2143
|
+
<wsdl:message name="setItemPropertyOut">
|
2144
|
+
<wsdl:part element="sawsoap:setItemPropertyResult" name="parameters"/>
|
2145
|
+
</wsdl:message>
|
2146
|
+
<wsdl:message name="maintenanceModeIn">
|
2147
|
+
<wsdl:part element="sawsoap:maintenanceMode" name="parameters"/>
|
2148
|
+
</wsdl:message>
|
2149
|
+
<wsdl:message name="maintenanceModeOut">
|
2150
|
+
<wsdl:part element="sawsoap:maintenanceModeResult" name="parameters"/>
|
2151
|
+
</wsdl:message>
|
2152
|
+
<wsdl:message name="readObjectsIn">
|
2153
|
+
<wsdl:part element="sawsoap:readObjects" name="parameters"/>
|
2154
|
+
</wsdl:message>
|
2155
|
+
<wsdl:message name="readObjectsOut">
|
2156
|
+
<wsdl:part element="sawsoap:readObjectsResult" name="parameters"/>
|
2157
|
+
</wsdl:message>
|
2158
|
+
<wsdl:message name="writeObjectsIn">
|
2159
|
+
<wsdl:part element="sawsoap:writeObjects" name="parameters"/>
|
2160
|
+
</wsdl:message>
|
2161
|
+
<wsdl:message name="writeObjectsOut">
|
2162
|
+
<wsdl:part element="sawsoap:writeObjectsResult" name="parameters"/>
|
2163
|
+
</wsdl:message>
|
2164
|
+
<wsdl:message name="updateCatalogItemACLIn">
|
2165
|
+
<wsdl:part element="sawsoap:updateCatalogItemACL" name="parameters"/>
|
2166
|
+
</wsdl:message>
|
2167
|
+
<wsdl:message name="updateCatalogItemACLOut">
|
2168
|
+
<wsdl:part element="sawsoap:updateCatalogItemACLResult" name="parameters"/>
|
2169
|
+
</wsdl:message>
|
2170
|
+
<wsdl:message name="setOwnershipIn">
|
2171
|
+
<wsdl:part element="sawsoap:setOwnership" name="parameters"/>
|
2172
|
+
</wsdl:message>
|
2173
|
+
<wsdl:message name="setOwnershipOut">
|
2174
|
+
<wsdl:part element="sawsoap:setOwnershipResult" name="parameters"/>
|
2175
|
+
</wsdl:message>
|
2176
|
+
<wsdl:message name="setItemAttributesIn">
|
2177
|
+
<wsdl:part element="sawsoap:setItemAttributes" name="parameters"/>
|
2178
|
+
</wsdl:message>
|
2179
|
+
<wsdl:message name="setItemAttributesOut">
|
2180
|
+
<wsdl:part element="sawsoap:setItemAttributesResult" name="parameters"/>
|
2181
|
+
</wsdl:message>
|
2182
|
+
<wsdl:portType name="WebCatalogServiceSoap">
|
2183
|
+
<wsdl:operation name="deleteItem">
|
2184
|
+
<wsdl:input message="sawsoap:deleteItemIn"/>
|
2185
|
+
<wsdl:output message="sawsoap:deleteItemOut"/>
|
2186
|
+
</wsdl:operation>
|
2187
|
+
<wsdl:operation name="removeFolder">
|
2188
|
+
<wsdl:input message="sawsoap:removeFolderIn"/>
|
2189
|
+
<wsdl:output message="sawsoap:removeFolderOut"/>
|
2190
|
+
</wsdl:operation>
|
2191
|
+
<wsdl:operation name="createFolder">
|
2192
|
+
<wsdl:input message="sawsoap:createFolderIn"/>
|
2193
|
+
<wsdl:output message="sawsoap:createFolderOut"/>
|
2194
|
+
</wsdl:operation>
|
2195
|
+
<wsdl:operation name="createLink">
|
2196
|
+
<wsdl:input message="sawsoap:createLinkIn"/>
|
2197
|
+
<wsdl:output message="sawsoap:createLinkOut"/>
|
2198
|
+
</wsdl:operation>
|
2199
|
+
<wsdl:operation name="moveItem">
|
2200
|
+
<wsdl:input message="sawsoap:moveItemIn"/>
|
2201
|
+
<wsdl:output message="sawsoap:moveItemOut"/>
|
2202
|
+
</wsdl:operation>
|
2203
|
+
<wsdl:operation name="copyItem">
|
2204
|
+
<wsdl:input message="sawsoap:copyItemIn"/>
|
2205
|
+
<wsdl:output message="sawsoap:copyItemOut"/>
|
2206
|
+
</wsdl:operation>
|
2207
|
+
<wsdl:operation name="copyItem2">
|
2208
|
+
<wsdl:input message="sawsoap:copyItem2In"/>
|
2209
|
+
<wsdl:output message="sawsoap:copyItem2Out"/>
|
2210
|
+
</wsdl:operation>
|
2211
|
+
<wsdl:operation name="pasteItem2">
|
2212
|
+
<wsdl:input message="sawsoap:pasteItem2In"/>
|
2213
|
+
<wsdl:output message="sawsoap:pasteItem2Out"/>
|
2214
|
+
</wsdl:operation>
|
2215
|
+
<wsdl:operation name="getSubItems">
|
2216
|
+
<wsdl:input message="sawsoap:getSubItemsIn"/>
|
2217
|
+
<wsdl:output message="sawsoap:getSubItemsOut"/>
|
2218
|
+
</wsdl:operation>
|
2219
|
+
<wsdl:operation name="getItemInfo">
|
2220
|
+
<wsdl:input message="sawsoap:getItemInfoIn"/>
|
2221
|
+
<wsdl:output message="sawsoap:getItemInfoOut"/>
|
2222
|
+
</wsdl:operation>
|
2223
|
+
<wsdl:operation name="setItemProperty">
|
2224
|
+
<wsdl:input message="sawsoap:setItemPropertyIn"/>
|
2225
|
+
<wsdl:output message="sawsoap:setItemPropertyOut"/>
|
2226
|
+
</wsdl:operation>
|
2227
|
+
<wsdl:operation name="maintenanceMode">
|
2228
|
+
<wsdl:input message="sawsoap:maintenanceModeIn"/>
|
2229
|
+
<wsdl:output message="sawsoap:maintenanceModeOut"/>
|
2230
|
+
</wsdl:operation>
|
2231
|
+
<wsdl:operation name="readObjects">
|
2232
|
+
<wsdl:input message="sawsoap:readObjectsIn"/>
|
2233
|
+
<wsdl:output message="sawsoap:readObjectsOut"/>
|
2234
|
+
</wsdl:operation>
|
2235
|
+
<wsdl:operation name="writeObjects">
|
2236
|
+
<wsdl:input message="sawsoap:writeObjectsIn"/>
|
2237
|
+
<wsdl:output message="sawsoap:writeObjectsOut"/>
|
2238
|
+
</wsdl:operation>
|
2239
|
+
<wsdl:operation name="updateCatalogItemACL">
|
2240
|
+
<wsdl:input message="sawsoap:updateCatalogItemACLIn"/>
|
2241
|
+
<wsdl:output message="sawsoap:updateCatalogItemACLOut"/>
|
2242
|
+
</wsdl:operation>
|
2243
|
+
<wsdl:operation name="setOwnership">
|
2244
|
+
<wsdl:input message="sawsoap:setOwnershipIn"/>
|
2245
|
+
<wsdl:output message="sawsoap:setOwnershipOut"/>
|
2246
|
+
</wsdl:operation>
|
2247
|
+
<wsdl:operation name="setItemAttributes">
|
2248
|
+
<wsdl:input message="sawsoap:setItemAttributesIn"/>
|
2249
|
+
<wsdl:output message="sawsoap:setItemAttributesOut"/>
|
2250
|
+
</wsdl:operation>
|
2251
|
+
</wsdl:portType>
|
2252
|
+
<wsdl:binding name="WebCatalogService" type="sawsoap:WebCatalogServiceSoap">
|
2253
|
+
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
|
2254
|
+
<wsdl:operation name="deleteItem">
|
2255
|
+
<soap:operation soapAction="#deleteItem"/>
|
2256
|
+
<wsdl:input>
|
2257
|
+
<soap:body use="literal"/>
|
2258
|
+
</wsdl:input>
|
2259
|
+
<wsdl:output>
|
2260
|
+
<soap:body use="literal"/>
|
2261
|
+
</wsdl:output>
|
2262
|
+
</wsdl:operation>
|
2263
|
+
<wsdl:operation name="createFolder">
|
2264
|
+
<soap:operation soapAction="#createFolder"/>
|
2265
|
+
<wsdl:input>
|
2266
|
+
<soap:body use="literal"/>
|
2267
|
+
</wsdl:input>
|
2268
|
+
<wsdl:output>
|
2269
|
+
<soap:body use="literal"/>
|
2270
|
+
</wsdl:output>
|
2271
|
+
</wsdl:operation>
|
2272
|
+
<wsdl:operation name="createLink">
|
2273
|
+
<soap:operation soapAction="#createLink"/>
|
2274
|
+
<wsdl:input>
|
2275
|
+
<soap:body use="literal"/>
|
2276
|
+
</wsdl:input>
|
2277
|
+
<wsdl:output>
|
2278
|
+
<soap:body use="literal"/>
|
2279
|
+
</wsdl:output>
|
2280
|
+
</wsdl:operation>
|
2281
|
+
<wsdl:operation name="removeFolder">
|
2282
|
+
<soap:operation soapAction="#removeFolder"/>
|
2283
|
+
<wsdl:input>
|
2284
|
+
<soap:body use="literal"/>
|
2285
|
+
</wsdl:input>
|
2286
|
+
<wsdl:output>
|
2287
|
+
<soap:body use="literal"/>
|
2288
|
+
</wsdl:output>
|
2289
|
+
</wsdl:operation>
|
2290
|
+
<wsdl:operation name="moveItem">
|
2291
|
+
<soap:operation soapAction="#moveItem"/>
|
2292
|
+
<wsdl:input>
|
2293
|
+
<soap:body use="literal"/>
|
2294
|
+
</wsdl:input>
|
2295
|
+
<wsdl:output>
|
2296
|
+
<soap:body use="literal"/>
|
2297
|
+
</wsdl:output>
|
2298
|
+
</wsdl:operation>
|
2299
|
+
<wsdl:operation name="copyItem">
|
2300
|
+
<soap:operation soapAction="#copyItem"/>
|
2301
|
+
<wsdl:input>
|
2302
|
+
<soap:body use="literal"/>
|
2303
|
+
</wsdl:input>
|
2304
|
+
<wsdl:output>
|
2305
|
+
<soap:body use="literal"/>
|
2306
|
+
</wsdl:output>
|
2307
|
+
</wsdl:operation>
|
2308
|
+
<wsdl:operation name="copyItem2">
|
2309
|
+
<soap:operation soapAction="#copyItem2" style="document"/>
|
2310
|
+
<wsdl:input>
|
2311
|
+
<soap:body use="literal"/>
|
2312
|
+
</wsdl:input>
|
2313
|
+
<wsdl:output>
|
2314
|
+
<soap:body use="literal"/>
|
2315
|
+
</wsdl:output>
|
2316
|
+
</wsdl:operation>
|
2317
|
+
<wsdl:operation name="pasteItem2">
|
2318
|
+
<soap:operation soapAction="#pasteItem2"/>
|
2319
|
+
<wsdl:input>
|
2320
|
+
<soap:body use="literal"/>
|
2321
|
+
</wsdl:input>
|
2322
|
+
<wsdl:output>
|
2323
|
+
<soap:body use="literal"/>
|
2324
|
+
</wsdl:output>
|
2325
|
+
</wsdl:operation>
|
2326
|
+
<wsdl:operation name="getSubItems">
|
2327
|
+
<soap:operation soapAction="#getSubItems" style="document"/>
|
2328
|
+
<wsdl:input>
|
2329
|
+
<soap:body use="literal"/>
|
2330
|
+
</wsdl:input>
|
2331
|
+
<wsdl:output>
|
2332
|
+
<soap:body use="literal"/>
|
2333
|
+
</wsdl:output>
|
2334
|
+
</wsdl:operation>
|
2335
|
+
<wsdl:operation name="getItemInfo">
|
2336
|
+
<soap:operation soapAction="#getItemInfo" style="document"/>
|
2337
|
+
<wsdl:input>
|
2338
|
+
<soap:body use="literal"/>
|
2339
|
+
</wsdl:input>
|
2340
|
+
<wsdl:output>
|
2341
|
+
<soap:body use="literal"/>
|
2342
|
+
</wsdl:output>
|
2343
|
+
</wsdl:operation>
|
2344
|
+
<wsdl:operation name="setItemProperty">
|
2345
|
+
<soap:operation soapAction="#setItemProperty" style="document"/>
|
2346
|
+
<wsdl:input>
|
2347
|
+
<soap:body use="literal"/>
|
2348
|
+
</wsdl:input>
|
2349
|
+
<wsdl:output>
|
2350
|
+
<soap:body use="literal"/>
|
2351
|
+
</wsdl:output>
|
2352
|
+
</wsdl:operation>
|
2353
|
+
<wsdl:operation name="maintenanceMode">
|
2354
|
+
<soap:operation soapAction="#maintenanceMode" style="document"/>
|
2355
|
+
<wsdl:input>
|
2356
|
+
<soap:body use="literal"/>
|
2357
|
+
</wsdl:input>
|
2358
|
+
<wsdl:output>
|
2359
|
+
<soap:body use="literal"/>
|
2360
|
+
</wsdl:output>
|
2361
|
+
</wsdl:operation>
|
2362
|
+
<wsdl:operation name="readObjects">
|
2363
|
+
<soap:operation soapAction="#readObjects" style="document"/>
|
2364
|
+
<wsdl:input>
|
2365
|
+
<soap:body use="literal"/>
|
2366
|
+
</wsdl:input>
|
2367
|
+
<wsdl:output>
|
2368
|
+
<soap:body use="literal"/>
|
2369
|
+
</wsdl:output>
|
2370
|
+
</wsdl:operation>
|
2371
|
+
<wsdl:operation name="writeObjects">
|
2372
|
+
<soap:operation soapAction="#writeObjects" style="document"/>
|
2373
|
+
<wsdl:input>
|
2374
|
+
<soap:body use="literal"/>
|
2375
|
+
</wsdl:input>
|
2376
|
+
<wsdl:output>
|
2377
|
+
<soap:body use="literal"/>
|
2378
|
+
</wsdl:output>
|
2379
|
+
</wsdl:operation>
|
2380
|
+
<wsdl:operation name="updateCatalogItemACL">
|
2381
|
+
<soap:operation soapAction="#updateCatalogItemACL" style="document"/>
|
2382
|
+
<wsdl:input>
|
2383
|
+
<soap:body use="literal"/>
|
2384
|
+
</wsdl:input>
|
2385
|
+
<wsdl:output>
|
2386
|
+
<soap:body use="literal"/>
|
2387
|
+
</wsdl:output>
|
2388
|
+
</wsdl:operation>
|
2389
|
+
<wsdl:operation name="setOwnership">
|
2390
|
+
<soap:operation soapAction="#setOwnership" style="document"/>
|
2391
|
+
<wsdl:input>
|
2392
|
+
<soap:body use="literal"/>
|
2393
|
+
</wsdl:input>
|
2394
|
+
<wsdl:output>
|
2395
|
+
<soap:body use="literal"/>
|
2396
|
+
</wsdl:output>
|
2397
|
+
</wsdl:operation>
|
2398
|
+
<wsdl:operation name="setItemAttributes">
|
2399
|
+
<soap:operation soapAction="#setItemAttributes" style="document"/>
|
2400
|
+
<wsdl:input>
|
2401
|
+
<soap:body use="literal"/>
|
2402
|
+
</wsdl:input>
|
2403
|
+
<wsdl:output>
|
2404
|
+
<soap:body use="literal"/>
|
2405
|
+
</wsdl:output>
|
2406
|
+
</wsdl:operation>
|
2407
|
+
</wsdl:binding>
|
2408
|
+
<wsdl:service name="WebCatalogService">
|
2409
|
+
<wsdl:port binding="sawsoap:WebCatalogService" name="WebCatalogServiceSoap">
|
2410
|
+
<soap:address location="https://fap0023-bi.oracleads.com/analytics-ws/saw.dll?SoapImpl=webCatalogService"/>
|
2411
|
+
</wsdl:port>
|
2412
|
+
</wsdl:service>
|
2413
|
+
<wsdl:message name="executeXMLQueryIn">
|
2414
|
+
<wsdl:part element="sawsoap:executeXMLQuery" name="parameters"/>
|
2415
|
+
</wsdl:message>
|
2416
|
+
<wsdl:message name="executeXMLQueryOut">
|
2417
|
+
<wsdl:part element="sawsoap:executeXMLQueryResult" name="parameters"/>
|
2418
|
+
</wsdl:message>
|
2419
|
+
<wsdl:message name="upgradeXMLIn">
|
2420
|
+
<wsdl:part element="sawsoap:upgradeXML" name="parameters"/>
|
2421
|
+
</wsdl:message>
|
2422
|
+
<wsdl:message name="upgradeXMLOut">
|
2423
|
+
<wsdl:part element="sawsoap:upgradeXMLResult" name="parameters"/>
|
2424
|
+
</wsdl:message>
|
2425
|
+
<wsdl:message name="executeSQLQueryIn">
|
2426
|
+
<wsdl:part element="sawsoap:executeSQLQuery" name="parameters"/>
|
2427
|
+
</wsdl:message>
|
2428
|
+
<wsdl:message name="executeSQLQueryOut">
|
2429
|
+
<wsdl:part element="sawsoap:executeSQLQueryResult" name="parameters"/>
|
2430
|
+
</wsdl:message>
|
2431
|
+
<wsdl:message name="fetchNextIn">
|
2432
|
+
<wsdl:part element="sawsoap:fetchNext" name="parameters"/>
|
2433
|
+
</wsdl:message>
|
2434
|
+
<wsdl:message name="fetchNextOut">
|
2435
|
+
<wsdl:part element="sawsoap:fetchNextResult" name="parameters"/>
|
2436
|
+
</wsdl:message>
|
2437
|
+
<wsdl:message name="cancelQueryIn">
|
2438
|
+
<wsdl:part element="sawsoap:cancelQuery" name="parameters"/>
|
2439
|
+
</wsdl:message>
|
2440
|
+
<wsdl:message name="cancelQueryOut">
|
2441
|
+
<wsdl:part element="sawsoap:cancelQueryResult" name="parameters"/>
|
2442
|
+
</wsdl:message>
|
2443
|
+
<wsdl:message name="getPromptedFiltersIn">
|
2444
|
+
<wsdl:part element="sawsoap:getPromptedFilters" name="parameters"/>
|
2445
|
+
</wsdl:message>
|
2446
|
+
<wsdl:message name="getPromptedFiltersOut">
|
2447
|
+
<wsdl:part element="sawsoap:getPromptedFiltersResult" name="parameters"/>
|
2448
|
+
</wsdl:message>
|
2449
|
+
<wsdl:portType name="XmlViewServiceSoap">
|
2450
|
+
<wsdl:operation name="executeXMLQuery">
|
2451
|
+
<wsdl:input message="sawsoap:executeXMLQueryIn"/>
|
2452
|
+
<wsdl:output message="sawsoap:executeXMLQueryOut"/>
|
2453
|
+
</wsdl:operation>
|
2454
|
+
<wsdl:operation name="upgradeXML">
|
2455
|
+
<wsdl:input message="sawsoap:upgradeXMLIn"/>
|
2456
|
+
<wsdl:output message="sawsoap:upgradeXMLOut"/>
|
2457
|
+
</wsdl:operation>
|
2458
|
+
<wsdl:operation name="executeSQLQuery">
|
2459
|
+
<wsdl:input message="sawsoap:executeSQLQueryIn"/>
|
2460
|
+
<wsdl:output message="sawsoap:executeSQLQueryOut"/>
|
2461
|
+
</wsdl:operation>
|
2462
|
+
<wsdl:operation name="fetchNext">
|
2463
|
+
<wsdl:input message="sawsoap:fetchNextIn"/>
|
2464
|
+
<wsdl:output message="sawsoap:fetchNextOut"/>
|
2465
|
+
</wsdl:operation>
|
2466
|
+
<wsdl:operation name="cancelQuery">
|
2467
|
+
<wsdl:input message="sawsoap:cancelQueryIn"/>
|
2468
|
+
<wsdl:output message="sawsoap:cancelQueryOut"/>
|
2469
|
+
</wsdl:operation>
|
2470
|
+
<wsdl:operation name="getPromptedFilters">
|
2471
|
+
<wsdl:input message="sawsoap:getPromptedFiltersIn"/>
|
2472
|
+
<wsdl:output message="sawsoap:getPromptedFiltersOut"/>
|
2473
|
+
</wsdl:operation>
|
2474
|
+
</wsdl:portType>
|
2475
|
+
<wsdl:binding name="XmlViewService" type="sawsoap:XmlViewServiceSoap">
|
2476
|
+
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
|
2477
|
+
<wsdl:operation name="executeXMLQuery">
|
2478
|
+
<soap:operation soapAction="#executeXMLQuery" style="document"/>
|
2479
|
+
<wsdl:input>
|
2480
|
+
<soap:body use="literal"/>
|
2481
|
+
</wsdl:input>
|
2482
|
+
<wsdl:output>
|
2483
|
+
<soap:body use="literal"/>
|
2484
|
+
</wsdl:output>
|
2485
|
+
</wsdl:operation>
|
2486
|
+
<wsdl:operation name="upgradeXML">
|
2487
|
+
<soap:operation soapAction="#upgradeXML" style="document"/>
|
2488
|
+
<wsdl:input>
|
2489
|
+
<soap:body use="literal"/>
|
2490
|
+
</wsdl:input>
|
2491
|
+
<wsdl:output>
|
2492
|
+
<soap:body use="literal"/>
|
2493
|
+
</wsdl:output>
|
2494
|
+
</wsdl:operation>
|
2495
|
+
<wsdl:operation name="executeSQLQuery">
|
2496
|
+
<soap:operation soapAction="#executeSQLQuery" style="document"/>
|
2497
|
+
<wsdl:input>
|
2498
|
+
<soap:body use="literal"/>
|
2499
|
+
</wsdl:input>
|
2500
|
+
<wsdl:output>
|
2501
|
+
<soap:body use="literal"/>
|
2502
|
+
</wsdl:output>
|
2503
|
+
</wsdl:operation>
|
2504
|
+
<wsdl:operation name="fetchNext">
|
2505
|
+
<soap:operation soapAction="#fetchNext" style="document"/>
|
2506
|
+
<wsdl:input>
|
2507
|
+
<soap:body use="literal"/>
|
2508
|
+
</wsdl:input>
|
2509
|
+
<wsdl:output>
|
2510
|
+
<soap:body use="literal"/>
|
2511
|
+
</wsdl:output>
|
2512
|
+
</wsdl:operation>
|
2513
|
+
<wsdl:operation name="cancelQuery">
|
2514
|
+
<soap:operation soapAction="#cancelQuery" style="document"/>
|
2515
|
+
<wsdl:input>
|
2516
|
+
<soap:body use="literal"/>
|
2517
|
+
</wsdl:input>
|
2518
|
+
<wsdl:output>
|
2519
|
+
<soap:body use="literal"/>
|
2520
|
+
</wsdl:output>
|
2521
|
+
</wsdl:operation>
|
2522
|
+
<wsdl:operation name="getPromptedFilters">
|
2523
|
+
<soap:operation soapAction="#getPromptedFilters" style="document"/>
|
2524
|
+
<wsdl:input>
|
2525
|
+
<soap:body use="literal"/>
|
2526
|
+
</wsdl:input>
|
2527
|
+
<wsdl:output>
|
2528
|
+
<soap:body use="literal"/>
|
2529
|
+
</wsdl:output>
|
2530
|
+
</wsdl:operation>
|
2531
|
+
</wsdl:binding>
|
2532
|
+
<wsdl:service name="XmlViewService">
|
2533
|
+
<wsdl:port binding="sawsoap:XmlViewService" name="XmlViewServiceSoap">
|
2534
|
+
<soap:address location="https://fap0023-bi.oracleads.com/analytics-ws/saw.dll?SoapImpl=xmlViewService"/>
|
2535
|
+
</wsdl:port>
|
2536
|
+
</wsdl:service>
|
2537
|
+
<wsdl:message name="getGlobalPrivilegesIn">
|
2538
|
+
<wsdl:part element="sawsoap:getGlobalPrivileges" name="parameters"/>
|
2539
|
+
</wsdl:message>
|
2540
|
+
<wsdl:message name="getGlobalPrivilegesOut">
|
2541
|
+
<wsdl:part element="sawsoap:getGlobalPrivilegesResult" name="parameters"/>
|
2542
|
+
</wsdl:message>
|
2543
|
+
<wsdl:message name="getGlobalPrivilegeACLIn">
|
2544
|
+
<wsdl:part element="sawsoap:getGlobalPrivilegeACL" name="parameters"/>
|
2545
|
+
</wsdl:message>
|
2546
|
+
<wsdl:message name="getGlobalPrivilegeACLOut">
|
2547
|
+
<wsdl:part element="sawsoap:getGlobalPrivilegeACLResult" name="parameters"/>
|
2548
|
+
</wsdl:message>
|
2549
|
+
<wsdl:message name="updateGlobalPrivilegeACLIn">
|
2550
|
+
<wsdl:part element="sawsoap:updateGlobalPrivilegeACL" name="parameters"/>
|
2551
|
+
</wsdl:message>
|
2552
|
+
<wsdl:message name="updateGlobalPrivilegeACLOut">
|
2553
|
+
<wsdl:part element="sawsoap:updateGlobalPrivilegeACLResult" name="parameters"/>
|
2554
|
+
</wsdl:message>
|
2555
|
+
<wsdl:message name="forgetAccountsIn">
|
2556
|
+
<wsdl:part element="sawsoap:forgetAccounts" name="parameters"/>
|
2557
|
+
</wsdl:message>
|
2558
|
+
<wsdl:message name="forgetAccountsOut">
|
2559
|
+
<wsdl:part element="sawsoap:forgetAccountsResult" name="parameters"/>
|
2560
|
+
</wsdl:message>
|
2561
|
+
<wsdl:message name="renameAccountsIn">
|
2562
|
+
<wsdl:part element="sawsoap:renameAccounts" name="parameters"/>
|
2563
|
+
</wsdl:message>
|
2564
|
+
<wsdl:message name="renameAccountsOut">
|
2565
|
+
<wsdl:part element="sawsoap:renameAccountsResult" name="parameters"/>
|
2566
|
+
</wsdl:message>
|
2567
|
+
<wsdl:message name="joinGroupsIn">
|
2568
|
+
<wsdl:part element="sawsoap:joinGroups" name="parameters"/>
|
2569
|
+
</wsdl:message>
|
2570
|
+
<wsdl:message name="joinGroupsOut">
|
2571
|
+
<wsdl:part element="sawsoap:joinGroupsResult" name="parameters"/>
|
2572
|
+
</wsdl:message>
|
2573
|
+
<wsdl:message name="leaveGroupsIn">
|
2574
|
+
<wsdl:part element="sawsoap:leaveGroups" name="parameters"/>
|
2575
|
+
</wsdl:message>
|
2576
|
+
<wsdl:message name="leaveGroupsOut">
|
2577
|
+
<wsdl:part element="sawsoap:leaveGroupsResult" name="parameters"/>
|
2578
|
+
</wsdl:message>
|
2579
|
+
<wsdl:message name="getGroupsIn">
|
2580
|
+
<wsdl:part element="sawsoap:getGroups" name="parameters"/>
|
2581
|
+
</wsdl:message>
|
2582
|
+
<wsdl:message name="getGroupsOut">
|
2583
|
+
<wsdl:part element="sawsoap:getGroupsResult" name="parameters"/>
|
2584
|
+
</wsdl:message>
|
2585
|
+
<wsdl:message name="getMembersIn">
|
2586
|
+
<wsdl:part element="sawsoap:getMembers" name="parameters"/>
|
2587
|
+
</wsdl:message>
|
2588
|
+
<wsdl:message name="getMembersOut">
|
2589
|
+
<wsdl:part element="sawsoap:getMembersResult" name="parameters"/>
|
2590
|
+
</wsdl:message>
|
2591
|
+
<wsdl:message name="isMemberIn">
|
2592
|
+
<wsdl:part element="sawsoap:isMember" name="parameters"/>
|
2593
|
+
</wsdl:message>
|
2594
|
+
<wsdl:message name="isMemberOut">
|
2595
|
+
<wsdl:part element="sawsoap:isMemberResult" name="parameters"/>
|
2596
|
+
</wsdl:message>
|
2597
|
+
<wsdl:message name="getPermissionsIn">
|
2598
|
+
<wsdl:part element="sawsoap:getPermissions" name="parameters"/>
|
2599
|
+
</wsdl:message>
|
2600
|
+
<wsdl:message name="getPermissionsOut">
|
2601
|
+
<wsdl:part element="sawsoap:getPermissionsResult" name="parameters"/>
|
2602
|
+
</wsdl:message>
|
2603
|
+
<wsdl:message name="getPrivilegesStatusIn">
|
2604
|
+
<wsdl:part element="sawsoap:getPrivilegesStatus" name="parameters"/>
|
2605
|
+
</wsdl:message>
|
2606
|
+
<wsdl:message name="getPrivilegesStatusOut">
|
2607
|
+
<wsdl:part element="sawsoap:getPrivilegesStatusResult" name="parameters"/>
|
2608
|
+
</wsdl:message>
|
2609
|
+
<wsdl:message name="getAccountsIn">
|
2610
|
+
<wsdl:part element="sawsoap:getAccounts" name="parameters"/>
|
2611
|
+
</wsdl:message>
|
2612
|
+
<wsdl:message name="getAccountsOut">
|
2613
|
+
<wsdl:part element="sawsoap:getAccountsResult" name="parameters"/>
|
2614
|
+
</wsdl:message>
|
2615
|
+
<wsdl:message name="getAccountTenantIDIn">
|
2616
|
+
<wsdl:part element="sawsoap:getAccountTenantID" name="parameters"/>
|
2617
|
+
</wsdl:message>
|
2618
|
+
<wsdl:message name="getAccountTenantIDOut">
|
2619
|
+
<wsdl:part element="sawsoap:getAccountTenantIDResult" name="parameters"/>
|
2620
|
+
</wsdl:message>
|
2621
|
+
<wsdl:portType name="SecurityServiceSoap">
|
2622
|
+
<wsdl:operation name="getGlobalPrivileges">
|
2623
|
+
<wsdl:input message="sawsoap:getGlobalPrivilegesIn"/>
|
2624
|
+
<wsdl:output message="sawsoap:getGlobalPrivilegesOut"/>
|
2625
|
+
</wsdl:operation>
|
2626
|
+
<wsdl:operation name="getGlobalPrivilegeACL">
|
2627
|
+
<wsdl:input message="sawsoap:getGlobalPrivilegeACLIn"/>
|
2628
|
+
<wsdl:output message="sawsoap:getGlobalPrivilegeACLOut"/>
|
2629
|
+
</wsdl:operation>
|
2630
|
+
<wsdl:operation name="updateGlobalPrivilegeACL">
|
2631
|
+
<wsdl:input message="sawsoap:updateGlobalPrivilegeACLIn"/>
|
2632
|
+
<wsdl:output message="sawsoap:updateGlobalPrivilegeACLOut"/>
|
2633
|
+
</wsdl:operation>
|
2634
|
+
<wsdl:operation name="forgetAccounts">
|
2635
|
+
<wsdl:input message="sawsoap:forgetAccountsIn"/>
|
2636
|
+
<wsdl:output message="sawsoap:forgetAccountsOut"/>
|
2637
|
+
</wsdl:operation>
|
2638
|
+
<wsdl:operation name="renameAccounts">
|
2639
|
+
<wsdl:input message="sawsoap:renameAccountsIn"/>
|
2640
|
+
<wsdl:output message="sawsoap:renameAccountsOut"/>
|
2641
|
+
</wsdl:operation>
|
2642
|
+
<wsdl:operation name="joinGroups">
|
2643
|
+
<wsdl:input message="sawsoap:joinGroupsIn"/>
|
2644
|
+
<wsdl:output message="sawsoap:joinGroupsOut"/>
|
2645
|
+
</wsdl:operation>
|
2646
|
+
<wsdl:operation name="leaveGroups">
|
2647
|
+
<wsdl:input message="sawsoap:leaveGroupsIn"/>
|
2648
|
+
<wsdl:output message="sawsoap:leaveGroupsOut"/>
|
2649
|
+
</wsdl:operation>
|
2650
|
+
<wsdl:operation name="getGroups">
|
2651
|
+
<wsdl:input message="sawsoap:getGroupsIn"/>
|
2652
|
+
<wsdl:output message="sawsoap:getGroupsOut"/>
|
2653
|
+
</wsdl:operation>
|
2654
|
+
<wsdl:operation name="getMembers">
|
2655
|
+
<wsdl:input message="sawsoap:getMembersIn"/>
|
2656
|
+
<wsdl:output message="sawsoap:getMembersOut"/>
|
2657
|
+
</wsdl:operation>
|
2658
|
+
<wsdl:operation name="isMember">
|
2659
|
+
<wsdl:input message="sawsoap:isMemberIn"/>
|
2660
|
+
<wsdl:output message="sawsoap:isMemberOut"/>
|
2661
|
+
</wsdl:operation>
|
2662
|
+
<wsdl:operation name="getPermissions">
|
2663
|
+
<wsdl:input message="sawsoap:getPermissionsIn"/>
|
2664
|
+
<wsdl:output message="sawsoap:getPermissionsOut"/>
|
2665
|
+
</wsdl:operation>
|
2666
|
+
<wsdl:operation name="getPrivilegesStatus">
|
2667
|
+
<wsdl:input message="sawsoap:getPrivilegesStatusIn"/>
|
2668
|
+
<wsdl:output message="sawsoap:getPrivilegesStatusOut"/>
|
2669
|
+
</wsdl:operation>
|
2670
|
+
<wsdl:operation name="getAccounts">
|
2671
|
+
<wsdl:input message="sawsoap:getAccountsIn"/>
|
2672
|
+
<wsdl:output message="sawsoap:getAccountsOut"/>
|
2673
|
+
</wsdl:operation>
|
2674
|
+
<wsdl:operation name="getAccountTenantID">
|
2675
|
+
<wsdl:input message="sawsoap:getAccountTenantIDIn"/>
|
2676
|
+
<wsdl:output message="sawsoap:getAccountTenantIDOut"/>
|
2677
|
+
</wsdl:operation>
|
2678
|
+
</wsdl:portType>
|
2679
|
+
<wsdl:binding name="SecurityService" type="sawsoap:SecurityServiceSoap">
|
2680
|
+
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
|
2681
|
+
<wsdl:operation name="getGlobalPrivileges">
|
2682
|
+
<soap:operation soapAction="#getGlobalPrivileges" style="document"/>
|
2683
|
+
<wsdl:input>
|
2684
|
+
<soap:body use="literal"/>
|
2685
|
+
</wsdl:input>
|
2686
|
+
<wsdl:output>
|
2687
|
+
<soap:body use="literal"/>
|
2688
|
+
</wsdl:output>
|
2689
|
+
</wsdl:operation>
|
2690
|
+
<wsdl:operation name="getGlobalPrivilegeACL">
|
2691
|
+
<soap:operation soapAction="#getGlobalPrivilegeACL" style="document"/>
|
2692
|
+
<wsdl:input>
|
2693
|
+
<soap:body use="literal"/>
|
2694
|
+
</wsdl:input>
|
2695
|
+
<wsdl:output>
|
2696
|
+
<soap:body use="literal"/>
|
2697
|
+
</wsdl:output>
|
2698
|
+
</wsdl:operation>
|
2699
|
+
<wsdl:operation name="updateGlobalPrivilegeACL">
|
2700
|
+
<soap:operation soapAction="#updateGlobalPrivilegeACL" style="document"/>
|
2701
|
+
<wsdl:input>
|
2702
|
+
<soap:body use="literal"/>
|
2703
|
+
</wsdl:input>
|
2704
|
+
<wsdl:output>
|
2705
|
+
<soap:body use="literal"/>
|
2706
|
+
</wsdl:output>
|
2707
|
+
</wsdl:operation>
|
2708
|
+
<wsdl:operation name="forgetAccounts">
|
2709
|
+
<soap:operation soapAction="#forgetAccounts" style="document"/>
|
2710
|
+
<wsdl:input>
|
2711
|
+
<soap:body use="literal"/>
|
2712
|
+
</wsdl:input>
|
2713
|
+
<wsdl:output>
|
2714
|
+
<soap:body use="literal"/>
|
2715
|
+
</wsdl:output>
|
2716
|
+
</wsdl:operation>
|
2717
|
+
<wsdl:operation name="renameAccounts">
|
2718
|
+
<soap:operation soapAction="#renameAccounts" style="document"/>
|
2719
|
+
<wsdl:input>
|
2720
|
+
<soap:body use="literal"/>
|
2721
|
+
</wsdl:input>
|
2722
|
+
<wsdl:output>
|
2723
|
+
<soap:body use="literal"/>
|
2724
|
+
</wsdl:output>
|
2725
|
+
</wsdl:operation>
|
2726
|
+
<wsdl:operation name="joinGroups">
|
2727
|
+
<soap:operation soapAction="#joinGroups" style="document"/>
|
2728
|
+
<wsdl:input>
|
2729
|
+
<soap:body use="literal"/>
|
2730
|
+
</wsdl:input>
|
2731
|
+
<wsdl:output>
|
2732
|
+
<soap:body use="literal"/>
|
2733
|
+
</wsdl:output>
|
2734
|
+
</wsdl:operation>
|
2735
|
+
<wsdl:operation name="leaveGroups">
|
2736
|
+
<soap:operation soapAction="#leaveGroups" style="document"/>
|
2737
|
+
<wsdl:input>
|
2738
|
+
<soap:body use="literal"/>
|
2739
|
+
</wsdl:input>
|
2740
|
+
<wsdl:output>
|
2741
|
+
<soap:body use="literal"/>
|
2742
|
+
</wsdl:output>
|
2743
|
+
</wsdl:operation>
|
2744
|
+
<wsdl:operation name="getGroups">
|
2745
|
+
<soap:operation soapAction="#getGroups" style="document"/>
|
2746
|
+
<wsdl:input>
|
2747
|
+
<soap:body use="literal"/>
|
2748
|
+
</wsdl:input>
|
2749
|
+
<wsdl:output>
|
2750
|
+
<soap:body use="literal"/>
|
2751
|
+
</wsdl:output>
|
2752
|
+
</wsdl:operation>
|
2753
|
+
<wsdl:operation name="getMembers">
|
2754
|
+
<soap:operation soapAction="#getMembers" style="document"/>
|
2755
|
+
<wsdl:input>
|
2756
|
+
<soap:body use="literal"/>
|
2757
|
+
</wsdl:input>
|
2758
|
+
<wsdl:output>
|
2759
|
+
<soap:body use="literal"/>
|
2760
|
+
</wsdl:output>
|
2761
|
+
</wsdl:operation>
|
2762
|
+
<wsdl:operation name="isMember">
|
2763
|
+
<soap:operation soapAction="#isMember" style="document"/>
|
2764
|
+
<wsdl:input>
|
2765
|
+
<soap:body use="literal"/>
|
2766
|
+
</wsdl:input>
|
2767
|
+
<wsdl:output>
|
2768
|
+
<soap:body use="literal"/>
|
2769
|
+
</wsdl:output>
|
2770
|
+
</wsdl:operation>
|
2771
|
+
<wsdl:operation name="getPermissions">
|
2772
|
+
<soap:operation soapAction="#getPermissions" style="document"/>
|
2773
|
+
<wsdl:input>
|
2774
|
+
<soap:body use="literal"/>
|
2775
|
+
</wsdl:input>
|
2776
|
+
<wsdl:output>
|
2777
|
+
<soap:body use="literal"/>
|
2778
|
+
</wsdl:output>
|
2779
|
+
</wsdl:operation>
|
2780
|
+
<wsdl:operation name="getPrivilegesStatus">
|
2781
|
+
<soap:operation soapAction="#getPrivilegesStatus" style="document"/>
|
2782
|
+
<wsdl:input>
|
2783
|
+
<soap:body use="literal"/>
|
2784
|
+
</wsdl:input>
|
2785
|
+
<wsdl:output>
|
2786
|
+
<soap:body use="literal"/>
|
2787
|
+
</wsdl:output>
|
2788
|
+
</wsdl:operation>
|
2789
|
+
<wsdl:operation name="getAccounts">
|
2790
|
+
<soap:operation soapAction="#getAccounts" style="document"/>
|
2791
|
+
<wsdl:input>
|
2792
|
+
<soap:body use="literal"/>
|
2793
|
+
</wsdl:input>
|
2794
|
+
<wsdl:output>
|
2795
|
+
<soap:body use="literal"/>
|
2796
|
+
</wsdl:output>
|
2797
|
+
</wsdl:operation>
|
2798
|
+
<wsdl:operation name="getAccountTenantID">
|
2799
|
+
<soap:operation soapAction="#getAccountTenantID" style="document"/>
|
2800
|
+
<wsdl:input>
|
2801
|
+
<soap:body use="literal"/>
|
2802
|
+
</wsdl:input>
|
2803
|
+
<wsdl:output>
|
2804
|
+
<soap:body use="literal"/>
|
2805
|
+
</wsdl:output>
|
2806
|
+
</wsdl:operation>
|
2807
|
+
</wsdl:binding>
|
2808
|
+
<wsdl:service name="SecurityService">
|
2809
|
+
<wsdl:port binding="sawsoap:SecurityService" name="SecurityServiceSoap">
|
2810
|
+
<soap:address location="https://fap0023-bi.oracleads.com/analytics-ws/saw.dll?SoapImpl=securityService"/>
|
2811
|
+
</wsdl:port>
|
2812
|
+
</wsdl:service>
|
2813
|
+
<wsdl:message name="evaluateConditionIn">
|
2814
|
+
<wsdl:part element="sawsoap:evaluateCondition" name="parameters"/>
|
2815
|
+
</wsdl:message>
|
2816
|
+
<wsdl:message name="evaluateConditionOut">
|
2817
|
+
<wsdl:part element="sawsoap:evaluateConditionResult" name="parameters"/>
|
2818
|
+
</wsdl:message>
|
2819
|
+
<wsdl:message name="evaluateInlineConditionIn">
|
2820
|
+
<wsdl:part element="sawsoap:evaluateInlineCondition" name="parameters"/>
|
2821
|
+
</wsdl:message>
|
2822
|
+
<wsdl:message name="evaluateInlineConditionOut">
|
2823
|
+
<wsdl:part element="sawsoap:evaluateInlineConditionResult" name="parameters"/>
|
2824
|
+
</wsdl:message>
|
2825
|
+
<wsdl:message name="getConditionCustomizableReportElementsIn">
|
2826
|
+
<wsdl:part element="sawsoap:getConditionCustomizableReportElements" name="parameters"/>
|
2827
|
+
</wsdl:message>
|
2828
|
+
<wsdl:message name="getConditionCustomizableReportElementsOut">
|
2829
|
+
<wsdl:part element="sawsoap:getConditionCustomizableReportElementsResult" name="parameters"/>
|
2830
|
+
</wsdl:message>
|
2831
|
+
<wsdl:portType name="ConditionServiceSoap">
|
2832
|
+
<wsdl:operation name="evaluateCondition">
|
2833
|
+
<wsdl:input message="sawsoap:evaluateConditionIn"/>
|
2834
|
+
<wsdl:output message="sawsoap:evaluateConditionOut"/>
|
2835
|
+
</wsdl:operation>
|
2836
|
+
<wsdl:operation name="evaluateInlineCondition">
|
2837
|
+
<wsdl:input message="sawsoap:evaluateInlineConditionIn"/>
|
2838
|
+
<wsdl:output message="sawsoap:evaluateInlineConditionOut"/>
|
2839
|
+
</wsdl:operation>
|
2840
|
+
<wsdl:operation name="getConditionCustomizableReportElements">
|
2841
|
+
<wsdl:input message="sawsoap:getConditionCustomizableReportElementsIn"/>
|
2842
|
+
<wsdl:output message="sawsoap:getConditionCustomizableReportElementsOut"/>
|
2843
|
+
</wsdl:operation>
|
2844
|
+
</wsdl:portType>
|
2845
|
+
<wsdl:binding name="ConditionService" type="sawsoap:ConditionServiceSoap">
|
2846
|
+
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
|
2847
|
+
<wsdl:operation name="evaluateCondition">
|
2848
|
+
<soap:operation soapAction="#evaluateCondition" style="document"/>
|
2849
|
+
<wsdl:input>
|
2850
|
+
<soap:body use="literal"/>
|
2851
|
+
</wsdl:input>
|
2852
|
+
<wsdl:output>
|
2853
|
+
<soap:body use="literal"/>
|
2854
|
+
</wsdl:output>
|
2855
|
+
</wsdl:operation>
|
2856
|
+
<wsdl:operation name="evaluateInlineCondition">
|
2857
|
+
<soap:operation soapAction="#evaluateInlineCondition" style="document"/>
|
2858
|
+
<wsdl:input>
|
2859
|
+
<soap:body use="literal"/>
|
2860
|
+
</wsdl:input>
|
2861
|
+
<wsdl:output>
|
2862
|
+
<soap:body use="literal"/>
|
2863
|
+
</wsdl:output>
|
2864
|
+
</wsdl:operation>
|
2865
|
+
<wsdl:operation name="getConditionCustomizableReportElements">
|
2866
|
+
<soap:operation soapAction="#getConditionCustomizableReportElements" style="document"/>
|
2867
|
+
<wsdl:input>
|
2868
|
+
<soap:body use="literal"/>
|
2869
|
+
</wsdl:input>
|
2870
|
+
<wsdl:output>
|
2871
|
+
<soap:body use="literal"/>
|
2872
|
+
</wsdl:output>
|
2873
|
+
</wsdl:operation>
|
2874
|
+
</wsdl:binding>
|
2875
|
+
<wsdl:service name="ConditionService">
|
2876
|
+
<wsdl:port binding="sawsoap:ConditionService" name="ConditionServiceSoap">
|
2877
|
+
<soap:address location="https://fap0023-bi.oracleads.com/analytics-ws/saw.dll?SoapImpl=conditionService"/>
|
2878
|
+
</wsdl:port>
|
2879
|
+
</wsdl:service>
|
2880
|
+
<wsdl:message name="startPageIn">
|
2881
|
+
<wsdl:part element="sawsoap:startPage" name="parameters"/>
|
2882
|
+
</wsdl:message>
|
2883
|
+
<wsdl:message name="startPageOut">
|
2884
|
+
<wsdl:part element="sawsoap:startPageResult" name="parameters"/>
|
2885
|
+
</wsdl:message>
|
2886
|
+
<wsdl:message name="endPageIn">
|
2887
|
+
<wsdl:part element="sawsoap:endPage" name="parameters"/>
|
2888
|
+
</wsdl:message>
|
2889
|
+
<wsdl:message name="endPageOut">
|
2890
|
+
<wsdl:part element="sawsoap:endPageResult" name="parameters"/>
|
2891
|
+
</wsdl:message>
|
2892
|
+
<wsdl:message name="addReportToPageIn">
|
2893
|
+
<wsdl:part element="sawsoap:addReportToPage" name="parameters"/>
|
2894
|
+
</wsdl:message>
|
2895
|
+
<wsdl:message name="addReportToPageOut">
|
2896
|
+
<wsdl:part element="sawsoap:addReportToPageResult" name="parameters"/>
|
2897
|
+
</wsdl:message>
|
2898
|
+
<wsdl:message name="getHeadersHtmlIn">
|
2899
|
+
<wsdl:part element="sawsoap:getHeadersHtml" name="parameters"/>
|
2900
|
+
</wsdl:message>
|
2901
|
+
<wsdl:message name="getHeadersHtmlOut">
|
2902
|
+
<wsdl:part element="sawsoap:getHeadersHtmlResult" name="parameters"/>
|
2903
|
+
</wsdl:message>
|
2904
|
+
<wsdl:message name="getCommonBodyHtmlIn">
|
2905
|
+
<wsdl:part element="sawsoap:getCommonBodyHtml" name="parameters"/>
|
2906
|
+
</wsdl:message>
|
2907
|
+
<wsdl:message name="getCommonBodyHtmlOut">
|
2908
|
+
<wsdl:part element="sawsoap:getCommonBodyHtmlResult" name="parameters"/>
|
2909
|
+
</wsdl:message>
|
2910
|
+
<wsdl:message name="getHtmlForReportIn">
|
2911
|
+
<wsdl:part element="sawsoap:getHtmlForReport" name="parameters"/>
|
2912
|
+
</wsdl:message>
|
2913
|
+
<wsdl:message name="getHtmlForReportOut">
|
2914
|
+
<wsdl:part element="sawsoap:getHtmlForReportResult" name="parameters"/>
|
2915
|
+
</wsdl:message>
|
2916
|
+
<wsdl:message name="setBridgeIn">
|
2917
|
+
<wsdl:part element="sawsoap:setBridge" name="parameters"/>
|
2918
|
+
</wsdl:message>
|
2919
|
+
<wsdl:message name="setBridgeOut">
|
2920
|
+
<wsdl:part element="sawsoap:setBridgeResult" name="parameters"/>
|
2921
|
+
</wsdl:message>
|
2922
|
+
<wsdl:message name="getHtmlForPageWithOneReportIn">
|
2923
|
+
<wsdl:part element="sawsoap:getHtmlForPageWithOneReport" name="parameters"/>
|
2924
|
+
</wsdl:message>
|
2925
|
+
<wsdl:message name="getHtmlForPageWithOneReportOut">
|
2926
|
+
<wsdl:part element="sawsoap:getHtmlForPageWithOneReportResult" name="parameters"/>
|
2927
|
+
</wsdl:message>
|
2928
|
+
<wsdl:portType name="HtmlViewServiceSoap">
|
2929
|
+
<wsdl:operation name="startPage">
|
2930
|
+
<wsdl:input message="sawsoap:startPageIn"/>
|
2931
|
+
<wsdl:output message="sawsoap:startPageOut"/>
|
2932
|
+
</wsdl:operation>
|
2933
|
+
<wsdl:operation name="endPage">
|
2934
|
+
<wsdl:input message="sawsoap:endPageIn"/>
|
2935
|
+
<wsdl:output message="sawsoap:endPageOut"/>
|
2936
|
+
</wsdl:operation>
|
2937
|
+
<wsdl:operation name="addReportToPage">
|
2938
|
+
<wsdl:input message="sawsoap:addReportToPageIn"/>
|
2939
|
+
<wsdl:output message="sawsoap:addReportToPageOut"/>
|
2940
|
+
</wsdl:operation>
|
2941
|
+
<wsdl:operation name="getHeadersHtml">
|
2942
|
+
<wsdl:input message="sawsoap:getHeadersHtmlIn"/>
|
2943
|
+
<wsdl:output message="sawsoap:getHeadersHtmlOut"/>
|
2944
|
+
</wsdl:operation>
|
2945
|
+
<wsdl:operation name="getCommonBodyHtml">
|
2946
|
+
<wsdl:input message="sawsoap:getCommonBodyHtmlIn"/>
|
2947
|
+
<wsdl:output message="sawsoap:getCommonBodyHtmlOut"/>
|
2948
|
+
</wsdl:operation>
|
2949
|
+
<wsdl:operation name="getHtmlForReport">
|
2950
|
+
<wsdl:input message="sawsoap:getHtmlForReportIn"/>
|
2951
|
+
<wsdl:output message="sawsoap:getHtmlForReportOut"/>
|
2952
|
+
</wsdl:operation>
|
2953
|
+
<wsdl:operation name="setBridge">
|
2954
|
+
<wsdl:input message="sawsoap:setBridgeIn"/>
|
2955
|
+
<wsdl:output message="sawsoap:setBridgeOut"/>
|
2956
|
+
</wsdl:operation>
|
2957
|
+
<wsdl:operation name="getHtmlForPageWithOneReport">
|
2958
|
+
<wsdl:input message="sawsoap:getHtmlForPageWithOneReportIn"/>
|
2959
|
+
<wsdl:output message="sawsoap:getHtmlForPageWithOneReportOut"/>
|
2960
|
+
</wsdl:operation>
|
2961
|
+
</wsdl:portType>
|
2962
|
+
<wsdl:binding name="HtmlViewService" type="sawsoap:HtmlViewServiceSoap">
|
2963
|
+
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
|
2964
|
+
<wsdl:operation name="startPage">
|
2965
|
+
<soap:operation soapAction="#startPage" style="document"/>
|
2966
|
+
<wsdl:input>
|
2967
|
+
<soap:body use="literal"/>
|
2968
|
+
</wsdl:input>
|
2969
|
+
<wsdl:output>
|
2970
|
+
<soap:body use="literal"/>
|
2971
|
+
</wsdl:output>
|
2972
|
+
</wsdl:operation>
|
2973
|
+
<wsdl:operation name="endPage">
|
2974
|
+
<soap:operation soapAction="#endPage" style="document"/>
|
2975
|
+
<wsdl:input>
|
2976
|
+
<soap:body use="literal"/>
|
2977
|
+
</wsdl:input>
|
2978
|
+
<wsdl:output>
|
2979
|
+
<soap:body use="literal"/>
|
2980
|
+
</wsdl:output>
|
2981
|
+
</wsdl:operation>
|
2982
|
+
<wsdl:operation name="addReportToPage">
|
2983
|
+
<soap:operation soapAction="#addReportToPage" style="document"/>
|
2984
|
+
<wsdl:input>
|
2985
|
+
<soap:body use="literal"/>
|
2986
|
+
</wsdl:input>
|
2987
|
+
<wsdl:output>
|
2988
|
+
<soap:body use="literal"/>
|
2989
|
+
</wsdl:output>
|
2990
|
+
</wsdl:operation>
|
2991
|
+
<wsdl:operation name="getHeadersHtml">
|
2992
|
+
<soap:operation soapAction="#getHeadersHtml" style="document"/>
|
2993
|
+
<wsdl:input>
|
2994
|
+
<soap:body use="literal"/>
|
2995
|
+
</wsdl:input>
|
2996
|
+
<wsdl:output>
|
2997
|
+
<soap:body use="literal"/>
|
2998
|
+
</wsdl:output>
|
2999
|
+
</wsdl:operation>
|
3000
|
+
<wsdl:operation name="getCommonBodyHtml">
|
3001
|
+
<soap:operation soapAction="#getCommonBodyHtml" style="document"/>
|
3002
|
+
<wsdl:input>
|
3003
|
+
<soap:body use="literal"/>
|
3004
|
+
</wsdl:input>
|
3005
|
+
<wsdl:output>
|
3006
|
+
<soap:body use="literal"/>
|
3007
|
+
</wsdl:output>
|
3008
|
+
</wsdl:operation>
|
3009
|
+
<wsdl:operation name="getHtmlForReport">
|
3010
|
+
<soap:operation soapAction="#getHtmlForReport" style="document"/>
|
3011
|
+
<wsdl:input>
|
3012
|
+
<soap:body use="literal"/>
|
3013
|
+
</wsdl:input>
|
3014
|
+
<wsdl:output>
|
3015
|
+
<soap:body use="literal"/>
|
3016
|
+
</wsdl:output>
|
3017
|
+
</wsdl:operation>
|
3018
|
+
<wsdl:operation name="setBridge">
|
3019
|
+
<soap:operation soapAction="#setBridge" style="document"/>
|
3020
|
+
<wsdl:input>
|
3021
|
+
<soap:body use="literal"/>
|
3022
|
+
</wsdl:input>
|
3023
|
+
<wsdl:output>
|
3024
|
+
<soap:body use="literal"/>
|
3025
|
+
</wsdl:output>
|
3026
|
+
</wsdl:operation>
|
3027
|
+
<wsdl:operation name="getHtmlForPageWithOneReport">
|
3028
|
+
<soap:operation soapAction="#getHtmlForPageWithOneReport" style="document"/>
|
3029
|
+
<wsdl:input>
|
3030
|
+
<soap:body use="literal"/>
|
3031
|
+
</wsdl:input>
|
3032
|
+
<wsdl:output>
|
3033
|
+
<soap:body use="literal"/>
|
3034
|
+
</wsdl:output>
|
3035
|
+
</wsdl:operation>
|
3036
|
+
</wsdl:binding>
|
3037
|
+
<wsdl:service name="HtmlViewService">
|
3038
|
+
<wsdl:port binding="sawsoap:HtmlViewService" name="HtmlViewService">
|
3039
|
+
<soap:address location="https://fap0023-bi.oracleads.com/analytics-ws/saw.dll?SoapImpl=htmlViewService"/>
|
3040
|
+
</wsdl:port>
|
3041
|
+
</wsdl:service>
|
3042
|
+
<wsdl:message name="executeIBotNowIn">
|
3043
|
+
<wsdl:part element="sawsoap:executeIBotNow" name="parameters"/>
|
3044
|
+
</wsdl:message>
|
3045
|
+
<wsdl:message name="executeIBotNowOut">
|
3046
|
+
<wsdl:part element="sawsoap:executeIBotNowResult" name="parameters"/>
|
3047
|
+
</wsdl:message>
|
3048
|
+
<wsdl:message name="writeIBotIn">
|
3049
|
+
<wsdl:part element="sawsoap:writeIBot" name="parameters"/>
|
3050
|
+
</wsdl:message>
|
3051
|
+
<wsdl:message name="writeIBotOut">
|
3052
|
+
<wsdl:part element="sawsoap:writeIBotResult" name="parameters"/>
|
3053
|
+
</wsdl:message>
|
3054
|
+
<wsdl:message name="moveIBotIn">
|
3055
|
+
<wsdl:part element="sawsoap:moveIBot" name="parameters"/>
|
3056
|
+
</wsdl:message>
|
3057
|
+
<wsdl:message name="moveIBotOut">
|
3058
|
+
<wsdl:part element="sawsoap:moveIBotResult" name="parameters"/>
|
3059
|
+
</wsdl:message>
|
3060
|
+
<wsdl:message name="deleteIBotIn">
|
3061
|
+
<wsdl:part element="sawsoap:deleteIBot" name="parameters"/>
|
3062
|
+
</wsdl:message>
|
3063
|
+
<wsdl:message name="deleteIBotOut">
|
3064
|
+
<wsdl:part element="sawsoap:deleteIBotResult" name="parameters"/>
|
3065
|
+
</wsdl:message>
|
3066
|
+
<wsdl:message name="subscribeIBotIn">
|
3067
|
+
<wsdl:part element="sawsoap:subscribe" name="parameters"/>
|
3068
|
+
</wsdl:message>
|
3069
|
+
<wsdl:message name="subscribeIBotOut">
|
3070
|
+
<wsdl:part element="sawsoap:subscribeResult" name="parameters"/>
|
3071
|
+
</wsdl:message>
|
3072
|
+
<wsdl:message name="unsubscribeIBotIn">
|
3073
|
+
<wsdl:part element="sawsoap:unsubscribe" name="parameters"/>
|
3074
|
+
</wsdl:message>
|
3075
|
+
<wsdl:message name="unsubscribeIBotOut">
|
3076
|
+
<wsdl:part element="sawsoap:unsubscribeResult" name="parameters"/>
|
3077
|
+
</wsdl:message>
|
3078
|
+
<wsdl:message name="sendMessageIn">
|
3079
|
+
<wsdl:part element="sawsoap:sendMessage" name="parameters"/>
|
3080
|
+
</wsdl:message>
|
3081
|
+
<wsdl:message name="sendMessageOut">
|
3082
|
+
<wsdl:part element="sawsoap:sendMessageResult" name="parameters"/>
|
3083
|
+
</wsdl:message>
|
3084
|
+
<wsdl:portType name="IBotServiceSoap">
|
3085
|
+
<wsdl:operation name="executeIBotNow">
|
3086
|
+
<wsdl:input message="sawsoap:executeIBotNowIn"/>
|
3087
|
+
<wsdl:output message="sawsoap:executeIBotNowOut"/>
|
3088
|
+
</wsdl:operation>
|
3089
|
+
<wsdl:operation name="writeIBot">
|
3090
|
+
<wsdl:input message="sawsoap:writeIBotIn"/>
|
3091
|
+
<wsdl:output message="sawsoap:writeIBotOut"/>
|
3092
|
+
</wsdl:operation>
|
3093
|
+
<wsdl:operation name="subscribe">
|
3094
|
+
<wsdl:input message="sawsoap:subscribeIBotIn"/>
|
3095
|
+
<wsdl:output message="sawsoap:subscribeIBotOut"/>
|
3096
|
+
</wsdl:operation>
|
3097
|
+
<wsdl:operation name="unsubscribe">
|
3098
|
+
<wsdl:input message="sawsoap:unsubscribeIBotIn"/>
|
3099
|
+
<wsdl:output message="sawsoap:unsubscribeIBotOut"/>
|
3100
|
+
</wsdl:operation>
|
3101
|
+
<wsdl:operation name="moveIBot">
|
3102
|
+
<wsdl:input message="sawsoap:moveIBotIn"/>
|
3103
|
+
<wsdl:output message="sawsoap:moveIBotOut"/>
|
3104
|
+
</wsdl:operation>
|
3105
|
+
<wsdl:operation name="deleteIBot">
|
3106
|
+
<wsdl:input message="sawsoap:deleteIBotIn"/>
|
3107
|
+
<wsdl:output message="sawsoap:deleteIBotOut"/>
|
3108
|
+
</wsdl:operation>
|
3109
|
+
<wsdl:operation name="sendMessage">
|
3110
|
+
<wsdl:input message="sawsoap:sendMessageIn"/>
|
3111
|
+
<wsdl:output message="sawsoap:sendMessageOut"/>
|
3112
|
+
</wsdl:operation>
|
3113
|
+
</wsdl:portType>
|
3114
|
+
<wsdl:binding name="IBotService" type="sawsoap:IBotServiceSoap">
|
3115
|
+
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
|
3116
|
+
<wsdl:operation name="executeIBotNow">
|
3117
|
+
<soap:operation soapAction="#executeIBotNow" style="document"/>
|
3118
|
+
<wsdl:input>
|
3119
|
+
<soap:body use="literal"/>
|
3120
|
+
</wsdl:input>
|
3121
|
+
<wsdl:output>
|
3122
|
+
<soap:body use="literal"/>
|
3123
|
+
</wsdl:output>
|
3124
|
+
</wsdl:operation>
|
3125
|
+
<wsdl:operation name="writeIBot">
|
3126
|
+
<soap:operation soapAction="#writeIBot" style="document"/>
|
3127
|
+
<wsdl:input>
|
3128
|
+
<soap:body use="literal"/>
|
3129
|
+
</wsdl:input>
|
3130
|
+
<wsdl:output>
|
3131
|
+
<soap:body use="literal"/>
|
3132
|
+
</wsdl:output>
|
3133
|
+
</wsdl:operation>
|
3134
|
+
<wsdl:operation name="moveIBot">
|
3135
|
+
<soap:operation soapAction="#moveIBot" style="document"/>
|
3136
|
+
<wsdl:input>
|
3137
|
+
<soap:body use="literal"/>
|
3138
|
+
</wsdl:input>
|
3139
|
+
<wsdl:output>
|
3140
|
+
<soap:body use="literal"/>
|
3141
|
+
</wsdl:output>
|
3142
|
+
</wsdl:operation>
|
3143
|
+
<wsdl:operation name="subscribe">
|
3144
|
+
<soap:operation soapAction="#subscribe" style="document"/>
|
3145
|
+
<wsdl:input>
|
3146
|
+
<soap:body use="literal"/>
|
3147
|
+
</wsdl:input>
|
3148
|
+
<wsdl:output>
|
3149
|
+
<soap:body use="literal"/>
|
3150
|
+
</wsdl:output>
|
3151
|
+
</wsdl:operation>
|
3152
|
+
<wsdl:operation name="unsubscribe">
|
3153
|
+
<soap:operation soapAction="#unsubscribe" style="document"/>
|
3154
|
+
<wsdl:input>
|
3155
|
+
<soap:body use="literal"/>
|
3156
|
+
</wsdl:input>
|
3157
|
+
<wsdl:output>
|
3158
|
+
<soap:body use="literal"/>
|
3159
|
+
</wsdl:output>
|
3160
|
+
</wsdl:operation>
|
3161
|
+
<wsdl:operation name="deleteIBot">
|
3162
|
+
<soap:operation soapAction="#deleteIBot" style="document"/>
|
3163
|
+
<wsdl:input>
|
3164
|
+
<soap:body use="literal"/>
|
3165
|
+
</wsdl:input>
|
3166
|
+
<wsdl:output>
|
3167
|
+
<soap:body use="literal"/>
|
3168
|
+
</wsdl:output>
|
3169
|
+
</wsdl:operation>
|
3170
|
+
<wsdl:operation name="sendMessage">
|
3171
|
+
<soap:operation soapAction="#sendMessage" style="document"/>
|
3172
|
+
<wsdl:input>
|
3173
|
+
<soap:body use="literal"/>
|
3174
|
+
</wsdl:input>
|
3175
|
+
<wsdl:output>
|
3176
|
+
<soap:body use="literal"/>
|
3177
|
+
</wsdl:output>
|
3178
|
+
</wsdl:operation>
|
3179
|
+
</wsdl:binding>
|
3180
|
+
<wsdl:service name="IBotService">
|
3181
|
+
<wsdl:port binding="sawsoap:IBotService" name="IBotServiceSoap">
|
3182
|
+
<soap:address location="https://fap0023-bi.oracleads.com/analytics-ws/saw.dll?SoapImpl=ibotService"/>
|
3183
|
+
</wsdl:port>
|
3184
|
+
</wsdl:service>
|
3185
|
+
<wsdl:message name="writeListFilesIn">
|
3186
|
+
<wsdl:part element="sawsoap:writeListFiles" name="parameters"/>
|
3187
|
+
</wsdl:message>
|
3188
|
+
<wsdl:message name="writeListFilesOut">
|
3189
|
+
<wsdl:part element="sawsoap:writeListFilesResult" name="parameters"/>
|
3190
|
+
</wsdl:message>
|
3191
|
+
<wsdl:message name="getJobInfoIn">
|
3192
|
+
<wsdl:part element="sawsoap:getJobInfo" name="parameters"/>
|
3193
|
+
</wsdl:message>
|
3194
|
+
<wsdl:message name="getJobInfoOut">
|
3195
|
+
<wsdl:part element="sawsoap:getJobInfoResult" name="parameters"/>
|
3196
|
+
</wsdl:message>
|
3197
|
+
<wsdl:message name="cancelJobIn">
|
3198
|
+
<wsdl:part element="sawsoap:cancelJob" name="parameters"/>
|
3199
|
+
</wsdl:message>
|
3200
|
+
<wsdl:message name="cancelJobOut">
|
3201
|
+
<wsdl:part element="sawsoap:cancelJobResult" name="parameters"/>
|
3202
|
+
</wsdl:message>
|
3203
|
+
<wsdl:message name="getCountsIn">
|
3204
|
+
<wsdl:part element="sawsoap:getCounts" name="parameters"/>
|
3205
|
+
</wsdl:message>
|
3206
|
+
<wsdl:message name="getCountsOut">
|
3207
|
+
<wsdl:part element="sawsoap:getCountsResult" name="parameters"/>
|
3208
|
+
</wsdl:message>
|
3209
|
+
<wsdl:message name="getPromptedColumnsIn">
|
3210
|
+
<wsdl:part element="sawsoap:getPromptedColumns" name="parameters"/>
|
3211
|
+
</wsdl:message>
|
3212
|
+
<wsdl:message name="getPromptedColumnsOut">
|
3213
|
+
<wsdl:part element="sawsoap:getPromptedColumnsResult" name="parameters"/>
|
3214
|
+
</wsdl:message>
|
3215
|
+
<wsdl:message name="purgeCacheIn">
|
3216
|
+
<wsdl:part element="sawsoap:purgeCache" name="parameters"/>
|
3217
|
+
</wsdl:message>
|
3218
|
+
<wsdl:message name="purgeCacheOut">
|
3219
|
+
<wsdl:part element="sawsoap:purgeCacheResult" name="parameters"/>
|
3220
|
+
</wsdl:message>
|
3221
|
+
<wsdl:message name="prepareCacheIn">
|
3222
|
+
<wsdl:part element="sawsoap:prepareCache" name="parameters"/>
|
3223
|
+
</wsdl:message>
|
3224
|
+
<wsdl:message name="prepareCacheOut">
|
3225
|
+
<wsdl:part element="sawsoap:prepareCacheResult" name="parameters"/>
|
3226
|
+
</wsdl:message>
|
3227
|
+
<wsdl:message name="saveResultSetIn">
|
3228
|
+
<wsdl:part element="sawsoap:saveResultSet" name="parameters"/>
|
3229
|
+
</wsdl:message>
|
3230
|
+
<wsdl:message name="saveResultSetOut">
|
3231
|
+
<wsdl:part element="sawsoap:saveResultSetResult" name="parameters"/>
|
3232
|
+
</wsdl:message>
|
3233
|
+
<wsdl:message name="deleteResultSetIn">
|
3234
|
+
<wsdl:part element="sawsoap:deleteResultSet" name="parameters"/>
|
3235
|
+
</wsdl:message>
|
3236
|
+
<wsdl:message name="deleteResultSetOut">
|
3237
|
+
<wsdl:part element="sawsoap:deleteResultSetResult" name="parameters"/>
|
3238
|
+
</wsdl:message>
|
3239
|
+
<wsdl:portType name="JobManagementServiceSoap">
|
3240
|
+
<wsdl:operation name="writeListFiles">
|
3241
|
+
<wsdl:input message="sawsoap:writeListFilesIn"/>
|
3242
|
+
<wsdl:output message="sawsoap:writeListFilesOut"/>
|
3243
|
+
</wsdl:operation>
|
3244
|
+
<wsdl:operation name="getJobInfo">
|
3245
|
+
<wsdl:input message="sawsoap:getJobInfoIn"/>
|
3246
|
+
<wsdl:output message="sawsoap:getJobInfoOut"/>
|
3247
|
+
</wsdl:operation>
|
3248
|
+
<wsdl:operation name="cancelJob">
|
3249
|
+
<wsdl:input message="sawsoap:cancelJobIn"/>
|
3250
|
+
<wsdl:output message="sawsoap:cancelJobOut"/>
|
3251
|
+
</wsdl:operation>
|
3252
|
+
<wsdl:operation name="getCounts">
|
3253
|
+
<wsdl:input message="sawsoap:getCountsIn"/>
|
3254
|
+
<wsdl:output message="sawsoap:getCountsOut"/>
|
3255
|
+
</wsdl:operation>
|
3256
|
+
<wsdl:operation name="getPromptedColumns">
|
3257
|
+
<wsdl:input message="sawsoap:getPromptedColumnsIn"/>
|
3258
|
+
<wsdl:output message="sawsoap:getPromptedColumnsOut"/>
|
3259
|
+
</wsdl:operation>
|
3260
|
+
<wsdl:operation name="purgeCache">
|
3261
|
+
<wsdl:input message="sawsoap:purgeCacheIn"/>
|
3262
|
+
<wsdl:output message="sawsoap:purgeCacheOut"/>
|
3263
|
+
</wsdl:operation>
|
3264
|
+
<wsdl:operation name="prepareCache">
|
3265
|
+
<wsdl:input message="sawsoap:prepareCacheIn"/>
|
3266
|
+
<wsdl:output message="sawsoap:prepareCacheOut"/>
|
3267
|
+
</wsdl:operation>
|
3268
|
+
<wsdl:operation name="saveResultSet">
|
3269
|
+
<wsdl:input message="sawsoap:saveResultSetIn"/>
|
3270
|
+
<wsdl:output message="sawsoap:saveResultSetOut"/>
|
3271
|
+
</wsdl:operation>
|
3272
|
+
<wsdl:operation name="deleteResultSet">
|
3273
|
+
<wsdl:input message="sawsoap:deleteResultSetIn"/>
|
3274
|
+
<wsdl:output message="sawsoap:deleteResultSetOut"/>
|
3275
|
+
</wsdl:operation>
|
3276
|
+
</wsdl:portType>
|
3277
|
+
<wsdl:binding name="JobManagementService" type="sawsoap:JobManagementServiceSoap">
|
3278
|
+
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
|
3279
|
+
<wsdl:operation name="writeListFiles">
|
3280
|
+
<soap:operation soapAction="#writeListFiles" style="document"/>
|
3281
|
+
<wsdl:input>
|
3282
|
+
<soap:body use="literal"/>
|
3283
|
+
</wsdl:input>
|
3284
|
+
<wsdl:output>
|
3285
|
+
<soap:body use="literal"/>
|
3286
|
+
</wsdl:output>
|
3287
|
+
</wsdl:operation>
|
3288
|
+
<wsdl:operation name="getJobInfo">
|
3289
|
+
<soap:operation soapAction="#getJobInfo" style="document"/>
|
3290
|
+
<wsdl:input>
|
3291
|
+
<soap:body use="literal"/>
|
3292
|
+
</wsdl:input>
|
3293
|
+
<wsdl:output>
|
3294
|
+
<soap:body use="literal"/>
|
3295
|
+
</wsdl:output>
|
3296
|
+
</wsdl:operation>
|
3297
|
+
<wsdl:operation name="cancelJob">
|
3298
|
+
<soap:operation soapAction="#cancelJob" style="document"/>
|
3299
|
+
<wsdl:input>
|
3300
|
+
<soap:body use="literal"/>
|
3301
|
+
</wsdl:input>
|
3302
|
+
<wsdl:output>
|
3303
|
+
<soap:body use="literal"/>
|
3304
|
+
</wsdl:output>
|
3305
|
+
</wsdl:operation>
|
3306
|
+
<wsdl:operation name="getCounts">
|
3307
|
+
<soap:operation soapAction="#getCounts" style="document"/>
|
3308
|
+
<wsdl:input>
|
3309
|
+
<soap:body use="literal"/>
|
3310
|
+
</wsdl:input>
|
3311
|
+
<wsdl:output>
|
3312
|
+
<soap:body use="literal"/>
|
3313
|
+
</wsdl:output>
|
3314
|
+
</wsdl:operation>
|
3315
|
+
<wsdl:operation name="getPromptedColumns">
|
3316
|
+
<soap:operation soapAction="#getPromptedColumns" style="document"/>
|
3317
|
+
<wsdl:input>
|
3318
|
+
<soap:body use="literal"/>
|
3319
|
+
</wsdl:input>
|
3320
|
+
<wsdl:output>
|
3321
|
+
<soap:body use="literal"/>
|
3322
|
+
</wsdl:output>
|
3323
|
+
</wsdl:operation>
|
3324
|
+
<wsdl:operation name="purgeCache">
|
3325
|
+
<soap:operation soapAction="#purgeCache" style="document"/>
|
3326
|
+
<wsdl:input>
|
3327
|
+
<soap:body use="literal"/>
|
3328
|
+
</wsdl:input>
|
3329
|
+
<wsdl:output>
|
3330
|
+
<soap:body use="literal"/>
|
3331
|
+
</wsdl:output>
|
3332
|
+
</wsdl:operation>
|
3333
|
+
<wsdl:operation name="prepareCache">
|
3334
|
+
<soap:operation soapAction="#prepareCache" style="document"/>
|
3335
|
+
<wsdl:input>
|
3336
|
+
<soap:body use="literal"/>
|
3337
|
+
</wsdl:input>
|
3338
|
+
<wsdl:output>
|
3339
|
+
<soap:body use="literal"/>
|
3340
|
+
</wsdl:output>
|
3341
|
+
</wsdl:operation>
|
3342
|
+
<wsdl:operation name="saveResultSet">
|
3343
|
+
<soap:operation soapAction="#saveResultSet" style="document"/>
|
3344
|
+
<wsdl:input>
|
3345
|
+
<soap:body use="literal"/>
|
3346
|
+
</wsdl:input>
|
3347
|
+
<wsdl:output>
|
3348
|
+
<soap:body use="literal"/>
|
3349
|
+
</wsdl:output>
|
3350
|
+
</wsdl:operation>
|
3351
|
+
<wsdl:operation name="deleteResultSet">
|
3352
|
+
<soap:operation soapAction="#deleteResultSet" style="document"/>
|
3353
|
+
<wsdl:input>
|
3354
|
+
<soap:body use="literal"/>
|
3355
|
+
</wsdl:input>
|
3356
|
+
<wsdl:output>
|
3357
|
+
<soap:body use="literal"/>
|
3358
|
+
</wsdl:output>
|
3359
|
+
</wsdl:operation>
|
3360
|
+
</wsdl:binding>
|
3361
|
+
<wsdl:service name="JobManagementService">
|
3362
|
+
<wsdl:port binding="sawsoap:JobManagementService" name="JobManagementServiceSoap">
|
3363
|
+
<soap:address location="https://fap0023-bi.oracleads.com/analytics-ws/saw.dll?SoapImpl=jobManagementService"/>
|
3364
|
+
</wsdl:port>
|
3365
|
+
</wsdl:service>
|
3366
|
+
<wsdl:message name="clearQueryCacheIn">
|
3367
|
+
<wsdl:part element="sawsoap:clearQueryCache" name="parameters"/>
|
3368
|
+
</wsdl:message>
|
3369
|
+
<wsdl:message name="clearQueryCacheOut">
|
3370
|
+
<wsdl:part element="sawsoap:clearQueryCacheResult" name="parameters"/>
|
3371
|
+
</wsdl:message>
|
3372
|
+
<wsdl:message name="getSubjectAreasIn">
|
3373
|
+
<wsdl:part element="sawsoap:getSubjectAreas" name="parameters"/>
|
3374
|
+
</wsdl:message>
|
3375
|
+
<wsdl:message name="getSubjectAreasOut">
|
3376
|
+
<wsdl:part element="sawsoap:getSubjectAreasResult" name="parameters"/>
|
3377
|
+
</wsdl:message>
|
3378
|
+
<wsdl:message name="describeSubjectAreaIn">
|
3379
|
+
<wsdl:part element="sawsoap:describeSubjectArea" name="parameters"/>
|
3380
|
+
</wsdl:message>
|
3381
|
+
<wsdl:message name="describeSubjectAreaOut">
|
3382
|
+
<wsdl:part element="sawsoap:describeSubjectAreaResult" name="parameters"/>
|
3383
|
+
</wsdl:message>
|
3384
|
+
<wsdl:message name="describeTableIn">
|
3385
|
+
<wsdl:part element="sawsoap:describeTable" name="parameters"/>
|
3386
|
+
</wsdl:message>
|
3387
|
+
<wsdl:message name="describeTableOut">
|
3388
|
+
<wsdl:part element="sawsoap:describeTableResult" name="parameters"/>
|
3389
|
+
</wsdl:message>
|
3390
|
+
<wsdl:message name="describeColumnIn">
|
3391
|
+
<wsdl:part element="sawsoap:describeColumn" name="parameters"/>
|
3392
|
+
</wsdl:message>
|
3393
|
+
<wsdl:message name="describeColumnOut">
|
3394
|
+
<wsdl:part element="sawsoap:describeColumnResult" name="parameters"/>
|
3395
|
+
</wsdl:message>
|
3396
|
+
<wsdl:portType name="MetadataServiceSoap">
|
3397
|
+
<wsdl:operation name="clearQueryCache">
|
3398
|
+
<wsdl:input message="sawsoap:clearQueryCacheIn"/>
|
3399
|
+
<wsdl:output message="sawsoap:clearQueryCacheOut"/>
|
3400
|
+
</wsdl:operation>
|
3401
|
+
<wsdl:operation name="getSubjectAreas">
|
3402
|
+
<wsdl:input message="sawsoap:getSubjectAreasIn"/>
|
3403
|
+
<wsdl:output message="sawsoap:getSubjectAreasOut"/>
|
3404
|
+
</wsdl:operation>
|
3405
|
+
<wsdl:operation name="describeSubjectArea">
|
3406
|
+
<wsdl:input message="sawsoap:describeSubjectAreaIn"/>
|
3407
|
+
<wsdl:output message="sawsoap:describeSubjectAreaOut"/>
|
3408
|
+
</wsdl:operation>
|
3409
|
+
<wsdl:operation name="describeTable">
|
3410
|
+
<wsdl:input message="sawsoap:describeTableIn"/>
|
3411
|
+
<wsdl:output message="sawsoap:describeTableOut"/>
|
3412
|
+
</wsdl:operation>
|
3413
|
+
<wsdl:operation name="describeColumn">
|
3414
|
+
<wsdl:input message="sawsoap:describeColumnIn"/>
|
3415
|
+
<wsdl:output message="sawsoap:describeColumnOut"/>
|
3416
|
+
</wsdl:operation>
|
3417
|
+
</wsdl:portType>
|
3418
|
+
<wsdl:binding name="MetadataService" type="sawsoap:MetadataServiceSoap">
|
3419
|
+
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
|
3420
|
+
<wsdl:operation name="clearQueryCache">
|
3421
|
+
<soap:operation soapAction="#clearQueryCache" style="document"/>
|
3422
|
+
<wsdl:input>
|
3423
|
+
<soap:body use="literal"/>
|
3424
|
+
</wsdl:input>
|
3425
|
+
<wsdl:output>
|
3426
|
+
<soap:body use="literal"/>
|
3427
|
+
</wsdl:output>
|
3428
|
+
</wsdl:operation>
|
3429
|
+
<wsdl:operation name="getSubjectAreas">
|
3430
|
+
<soap:operation soapAction="#getSubjectAreas" style="document"/>
|
3431
|
+
<wsdl:input>
|
3432
|
+
<soap:body use="literal"/>
|
3433
|
+
</wsdl:input>
|
3434
|
+
<wsdl:output>
|
3435
|
+
<soap:body use="literal"/>
|
3436
|
+
</wsdl:output>
|
3437
|
+
</wsdl:operation>
|
3438
|
+
<wsdl:operation name="describeSubjectArea">
|
3439
|
+
<soap:operation soapAction="#describeSubjectArea" style="document"/>
|
3440
|
+
<wsdl:input>
|
3441
|
+
<soap:body use="literal"/>
|
3442
|
+
</wsdl:input>
|
3443
|
+
<wsdl:output>
|
3444
|
+
<soap:body use="literal"/>
|
3445
|
+
</wsdl:output>
|
3446
|
+
</wsdl:operation>
|
3447
|
+
<wsdl:operation name="describeTable">
|
3448
|
+
<soap:operation soapAction="#describeTable" style="document"/>
|
3449
|
+
<wsdl:input>
|
3450
|
+
<soap:body use="literal"/>
|
3451
|
+
</wsdl:input>
|
3452
|
+
<wsdl:output>
|
3453
|
+
<soap:body use="literal"/>
|
3454
|
+
</wsdl:output>
|
3455
|
+
</wsdl:operation>
|
3456
|
+
<wsdl:operation name="describeColumn">
|
3457
|
+
<soap:operation soapAction="#describeColumn" style="document"/>
|
3458
|
+
<wsdl:input>
|
3459
|
+
<soap:body use="literal"/>
|
3460
|
+
</wsdl:input>
|
3461
|
+
<wsdl:output>
|
3462
|
+
<soap:body use="literal"/>
|
3463
|
+
</wsdl:output>
|
3464
|
+
</wsdl:operation>
|
3465
|
+
</wsdl:binding>
|
3466
|
+
<wsdl:service name="MetadataService">
|
3467
|
+
<wsdl:port binding="sawsoap:MetadataService" name="MetadataServiceSoap">
|
3468
|
+
<soap:address location="https://fap0023-bi.oracleads.com/analytics-ws/saw.dll?SoapImpl=metadataService"/>
|
3469
|
+
</wsdl:port>
|
3470
|
+
</wsdl:service>
|
3471
|
+
<wsdl:message name="exportIn">
|
3472
|
+
<wsdl:part element="sawsoap:export" name="parameters"/>
|
3473
|
+
</wsdl:message>
|
3474
|
+
<wsdl:message name="exportOut">
|
3475
|
+
<wsdl:part element="sawsoap:exportResult" name="parameters"/>
|
3476
|
+
</wsdl:message>
|
3477
|
+
<wsdl:message name="importIn">
|
3478
|
+
<wsdl:part element="sawsoap:import" name="parameters"/>
|
3479
|
+
</wsdl:message>
|
3480
|
+
<wsdl:message name="importOut">
|
3481
|
+
<wsdl:part element="sawsoap:importResult" name="parameters"/>
|
3482
|
+
</wsdl:message>
|
3483
|
+
<wsdl:message name="markForReplicationIn">
|
3484
|
+
<wsdl:part element="sawsoap:markForReplication" name="parameters"/>
|
3485
|
+
</wsdl:message>
|
3486
|
+
<wsdl:message name="markForReplicationOut">
|
3487
|
+
<wsdl:part element="sawsoap:markForReplicationResult" name="parameters"/>
|
3488
|
+
</wsdl:message>
|
3489
|
+
<wsdl:message name="purgeLogIn">
|
3490
|
+
<wsdl:part element="sawsoap:purgeLog" name="parameters"/>
|
3491
|
+
</wsdl:message>
|
3492
|
+
<wsdl:message name="purgeLogOut">
|
3493
|
+
<wsdl:part element="sawsoap:purgeLogResult" name="parameters"/>
|
3494
|
+
</wsdl:message>
|
3495
|
+
<wsdl:portType name="ReplicationServiceSoap">
|
3496
|
+
<wsdl:operation name="export">
|
3497
|
+
<wsdl:input message="sawsoap:exportIn"/>
|
3498
|
+
<wsdl:output message="sawsoap:exportOut"/>
|
3499
|
+
</wsdl:operation>
|
3500
|
+
<wsdl:operation name="import">
|
3501
|
+
<jaxws:bindings xmlns:jaxws="http://java.sun.com/xml/ns/jaxws">
|
3502
|
+
<jaxws:method name="_import">
|
3503
|
+
<jaxws:javadoc>imports change log</jaxws:javadoc>
|
3504
|
+
</jaxws:method>
|
3505
|
+
</jaxws:bindings>
|
3506
|
+
<wsdl:input message="sawsoap:importIn"/>
|
3507
|
+
<wsdl:output message="sawsoap:importOut"/>
|
3508
|
+
</wsdl:operation>
|
3509
|
+
<wsdl:operation name="markForReplication">
|
3510
|
+
<wsdl:input message="sawsoap:markForReplicationIn"/>
|
3511
|
+
<wsdl:output message="sawsoap:markForReplicationOut"/>
|
3512
|
+
</wsdl:operation>
|
3513
|
+
<wsdl:operation name="purgeLog">
|
3514
|
+
<wsdl:input message="sawsoap:purgeLogIn"/>
|
3515
|
+
<wsdl:output message="sawsoap:purgeLogOut"/>
|
3516
|
+
</wsdl:operation>
|
3517
|
+
</wsdl:portType>
|
3518
|
+
<wsdl:binding name="ReplicationService" type="sawsoap:ReplicationServiceSoap">
|
3519
|
+
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
|
3520
|
+
<wsdl:operation name="export">
|
3521
|
+
<soap:operation soapAction="#export" style="document"/>
|
3522
|
+
<wsdl:input>
|
3523
|
+
<soap:body use="literal"/>
|
3524
|
+
</wsdl:input>
|
3525
|
+
<wsdl:output>
|
3526
|
+
<soap:body use="literal"/>
|
3527
|
+
</wsdl:output>
|
3528
|
+
</wsdl:operation>
|
3529
|
+
<wsdl:operation name="import">
|
3530
|
+
<soap:operation soapAction="#import" style="document"/>
|
3531
|
+
<wsdl:input>
|
3532
|
+
<soap:body use="literal"/>
|
3533
|
+
</wsdl:input>
|
3534
|
+
<wsdl:output>
|
3535
|
+
<soap:body use="literal"/>
|
3536
|
+
</wsdl:output>
|
3537
|
+
</wsdl:operation>
|
3538
|
+
<wsdl:operation name="markForReplication">
|
3539
|
+
<soap:operation soapAction="#markForReplication" style="document"/>
|
3540
|
+
<wsdl:input>
|
3541
|
+
<soap:body use="literal"/>
|
3542
|
+
</wsdl:input>
|
3543
|
+
<wsdl:output>
|
3544
|
+
<soap:body use="literal"/>
|
3545
|
+
</wsdl:output>
|
3546
|
+
</wsdl:operation>
|
3547
|
+
<wsdl:operation name="purgeLog">
|
3548
|
+
<soap:operation soapAction="#purgeLog" style="document"/>
|
3549
|
+
<wsdl:input>
|
3550
|
+
<soap:body use="literal"/>
|
3551
|
+
</wsdl:input>
|
3552
|
+
<wsdl:output>
|
3553
|
+
<soap:body use="literal"/>
|
3554
|
+
</wsdl:output>
|
3555
|
+
</wsdl:operation>
|
3556
|
+
</wsdl:binding>
|
3557
|
+
<wsdl:service name="ReplicationService">
|
3558
|
+
<wsdl:port binding="sawsoap:ReplicationService" name="ReplicationServiceSoap">
|
3559
|
+
<soap:address location="https://fap0023-bi.oracleads.com/analytics-ws/saw.dll?SoapImpl=replicationService"/>
|
3560
|
+
</wsdl:port>
|
3561
|
+
</wsdl:service>
|
3562
|
+
<wsdl:message name="applyReportParamsIn">
|
3563
|
+
<wsdl:part element="sawsoap:applyReportParams" name="parameters"/>
|
3564
|
+
</wsdl:message>
|
3565
|
+
<wsdl:message name="applyReportParamsOut">
|
3566
|
+
<wsdl:part element="sawsoap:applyReportParamsResult" name="parameters"/>
|
3567
|
+
</wsdl:message>
|
3568
|
+
<wsdl:message name="generateReportSQLIn">
|
3569
|
+
<wsdl:part element="sawsoap:generateReportSQL" name="parameters"/>
|
3570
|
+
</wsdl:message>
|
3571
|
+
<wsdl:message name="generateReportSQLOut">
|
3572
|
+
<wsdl:part element="sawsoap:generateReportSQLResult" name="parameters"/>
|
3573
|
+
</wsdl:message>
|
3574
|
+
<wsdl:message name="applyReportDefaultsIn">
|
3575
|
+
<wsdl:part element="sawsoap:applyReportDefaults" name="parameters"/>
|
3576
|
+
</wsdl:message>
|
3577
|
+
<wsdl:message name="applyReportDefaultsOut">
|
3578
|
+
<wsdl:part element="sawsoap:applyReportDefaultsResult" name="parameters"/>
|
3579
|
+
</wsdl:message>
|
3580
|
+
<wsdl:portType name="ReportEditingServiceSoap">
|
3581
|
+
<wsdl:operation name="applyReportParams">
|
3582
|
+
<wsdl:input message="sawsoap:applyReportParamsIn"/>
|
3583
|
+
<wsdl:output message="sawsoap:applyReportParamsOut"/>
|
3584
|
+
</wsdl:operation>
|
3585
|
+
<wsdl:operation name="generateReportSQL">
|
3586
|
+
<wsdl:input message="sawsoap:generateReportSQLIn"/>
|
3587
|
+
<wsdl:output message="sawsoap:generateReportSQLOut"/>
|
3588
|
+
</wsdl:operation>
|
3589
|
+
<wsdl:operation name="applyReportDefaults">
|
3590
|
+
<wsdl:input message="sawsoap:applyReportDefaultsIn"/>
|
3591
|
+
<wsdl:output message="sawsoap:applyReportDefaultsOut"/>
|
3592
|
+
</wsdl:operation>
|
3593
|
+
</wsdl:portType>
|
3594
|
+
<wsdl:binding name="ReportEditingService" type="sawsoap:ReportEditingServiceSoap">
|
3595
|
+
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
|
3596
|
+
<wsdl:operation name="applyReportParams">
|
3597
|
+
<soap:operation soapAction="#applyReportParams" style="document"/>
|
3598
|
+
<wsdl:input>
|
3599
|
+
<soap:body use="literal"/>
|
3600
|
+
</wsdl:input>
|
3601
|
+
<wsdl:output>
|
3602
|
+
<soap:body use="literal"/>
|
3603
|
+
</wsdl:output>
|
3604
|
+
</wsdl:operation>
|
3605
|
+
<wsdl:operation name="generateReportSQL">
|
3606
|
+
<soap:operation soapAction="#generateReportSQL" style="document"/>
|
3607
|
+
<wsdl:input>
|
3608
|
+
<soap:body use="literal"/>
|
3609
|
+
</wsdl:input>
|
3610
|
+
<wsdl:output>
|
3611
|
+
<soap:body use="literal"/>
|
3612
|
+
</wsdl:output>
|
3613
|
+
</wsdl:operation>
|
3614
|
+
<wsdl:operation name="applyReportDefaults">
|
3615
|
+
<soap:operation soapAction="#applyReportDefaults" style="document"/>
|
3616
|
+
<wsdl:input>
|
3617
|
+
<soap:body use="literal"/>
|
3618
|
+
</wsdl:input>
|
3619
|
+
<wsdl:output>
|
3620
|
+
<soap:body use="literal"/>
|
3621
|
+
</wsdl:output>
|
3622
|
+
</wsdl:operation>
|
3623
|
+
</wsdl:binding>
|
3624
|
+
<wsdl:service name="ReportEditingService">
|
3625
|
+
<wsdl:port binding="sawsoap:ReportEditingService" name="ReportEditingServiceSoap">
|
3626
|
+
<soap:address location="https://fap0023-bi.oracleads.com/analytics-ws/saw.dll?SoapImpl=reportService"/>
|
3627
|
+
</wsdl:port>
|
3628
|
+
</wsdl:service>
|
3629
|
+
</wsdl:definitions>
|