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,104 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!-- http://bydexchange.nbs-us.com/BYDExchangeServer.svc?wsdl -->
|
3
|
+
<wsdl:definitions name="BYDExchangeServer" targetNamespace="http://tempuri.org/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:tns="http://tempuri.org/" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:i0="http://bydexchange.nbs-us.com" xmlns:wsap="http://schemas.xmlsoap.org/ws/2004/08/addressing/policy" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:msc="http://schemas.microsoft.com/ws/2005/12/wsdl/contract" xmlns:wsa10="http://www.w3.org/2005/08/addressing" xmlns:wsx="http://schemas.xmlsoap.org/ws/2004/09/mex" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata">
|
4
|
+
<wsdl:import namespace="http://bydexchange.nbs-us.com" location="http://bydexchange.nbs-us.com/BYDExchangeServer.svc?wsdl=wsdl0"/>
|
5
|
+
<wsdl:types/>
|
6
|
+
<wsdl:binding name="BasicHttpBinding_IBYDExchangeServer" type="i0:IBYDExchangeServer">
|
7
|
+
<soap:binding transport="http://schemas.xmlsoap.org/soap/http"/>
|
8
|
+
<wsdl:operation name="ListOrdersByCustomer">
|
9
|
+
<soap:operation soapAction="http://bydexchange.nbs-us.com/IBYDExchangeServer/ListOrdersByCustomer" style="document"/>
|
10
|
+
<wsdl:input>
|
11
|
+
<soap:body use="literal"/>
|
12
|
+
</wsdl:input>
|
13
|
+
<wsdl:output>
|
14
|
+
<soap:body use="literal"/>
|
15
|
+
</wsdl:output>
|
16
|
+
</wsdl:operation>
|
17
|
+
<wsdl:operation name="ListOrdersByDate">
|
18
|
+
<soap:operation soapAction="http://bydexchange.nbs-us.com/IBYDExchangeServer/ListOrdersByDate" style="document"/>
|
19
|
+
<wsdl:input>
|
20
|
+
<soap:body use="literal"/>
|
21
|
+
</wsdl:input>
|
22
|
+
<wsdl:output>
|
23
|
+
<soap:body use="literal"/>
|
24
|
+
</wsdl:output>
|
25
|
+
</wsdl:operation>
|
26
|
+
<wsdl:operation name="ProductAvail">
|
27
|
+
<soap:operation soapAction="http://bydexchange.nbs-us.com/IBYDExchangeServer/ProductAvail" style="document"/>
|
28
|
+
<wsdl:input>
|
29
|
+
<soap:body use="literal"/>
|
30
|
+
</wsdl:input>
|
31
|
+
<wsdl:output>
|
32
|
+
<soap:body use="literal"/>
|
33
|
+
</wsdl:output>
|
34
|
+
</wsdl:operation>
|
35
|
+
<wsdl:operation name="listcustomers">
|
36
|
+
<soap:operation soapAction="http://bydexchange.nbs-us.com/IBYDExchangeServer/listcustomers" style="document"/>
|
37
|
+
<wsdl:input>
|
38
|
+
<soap:body use="literal"/>
|
39
|
+
</wsdl:input>
|
40
|
+
<wsdl:output>
|
41
|
+
<soap:body use="literal"/>
|
42
|
+
</wsdl:output>
|
43
|
+
</wsdl:operation>
|
44
|
+
<wsdl:operation name="ParseCSV">
|
45
|
+
<soap:operation soapAction="http://bydexchange.nbs-us.com/IBYDExchangeServer/ParseCSV" style="document"/>
|
46
|
+
<wsdl:input>
|
47
|
+
<soap:body use="literal"/>
|
48
|
+
</wsdl:input>
|
49
|
+
<wsdl:output>
|
50
|
+
<soap:body use="literal"/>
|
51
|
+
</wsdl:output>
|
52
|
+
</wsdl:operation>
|
53
|
+
<wsdl:operation name="AddOrder">
|
54
|
+
<soap:operation soapAction="http://bydexchange.nbs-us.com/IBYDExchangeServer/AddOrder" style="document"/>
|
55
|
+
<wsdl:input>
|
56
|
+
<soap:body use="literal"/>
|
57
|
+
</wsdl:input>
|
58
|
+
<wsdl:output>
|
59
|
+
<soap:body use="literal"/>
|
60
|
+
</wsdl:output>
|
61
|
+
</wsdl:operation>
|
62
|
+
<wsdl:operation name="GetOrder">
|
63
|
+
<soap:operation soapAction="http://bydexchange.nbs-us.com/IBYDExchangeServer/GetOrder" style="document"/>
|
64
|
+
<wsdl:input>
|
65
|
+
<soap:body use="literal"/>
|
66
|
+
</wsdl:input>
|
67
|
+
<wsdl:output>
|
68
|
+
<soap:body use="literal"/>
|
69
|
+
</wsdl:output>
|
70
|
+
</wsdl:operation>
|
71
|
+
<wsdl:operation name="AddCustomer">
|
72
|
+
<soap:operation soapAction="http://bydexchange.nbs-us.com/IBYDExchangeServer/AddCustomer" style="document"/>
|
73
|
+
<wsdl:input>
|
74
|
+
<soap:body use="literal"/>
|
75
|
+
</wsdl:input>
|
76
|
+
<wsdl:output>
|
77
|
+
<soap:body use="literal"/>
|
78
|
+
</wsdl:output>
|
79
|
+
</wsdl:operation>
|
80
|
+
<wsdl:operation name="GetCustomer">
|
81
|
+
<soap:operation soapAction="http://bydexchange.nbs-us.com/IBYDExchangeServer/GetCustomer" style="document"/>
|
82
|
+
<wsdl:input>
|
83
|
+
<soap:body use="literal"/>
|
84
|
+
</wsdl:input>
|
85
|
+
<wsdl:output>
|
86
|
+
<soap:body use="literal"/>
|
87
|
+
</wsdl:output>
|
88
|
+
</wsdl:operation>
|
89
|
+
<wsdl:operation name="Authenticate">
|
90
|
+
<soap:operation soapAction="http://bydexchange.nbs-us.com/IBYDExchangeServer/Authenticate" style="document"/>
|
91
|
+
<wsdl:input>
|
92
|
+
<soap:body use="literal"/>
|
93
|
+
</wsdl:input>
|
94
|
+
<wsdl:output>
|
95
|
+
<soap:body use="literal"/>
|
96
|
+
</wsdl:output>
|
97
|
+
</wsdl:operation>
|
98
|
+
</wsdl:binding>
|
99
|
+
<wsdl:service name="BYDExchangeServer">
|
100
|
+
<wsdl:port name="BasicHttpBinding_IBYDExchangeServer" binding="tns:BasicHttpBinding_IBYDExchangeServer">
|
101
|
+
<soap:address location="http://bydexchange.nbs-us.com/BYDExchangeServer.svc"/>
|
102
|
+
</wsdl:port>
|
103
|
+
</wsdl:service>
|
104
|
+
</wsdl:definitions>
|
@@ -0,0 +1 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?><xs:schema elementFormDefault="qualified" targetNamespace="http://bydexchange.nbs-us.com" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://bydexchange.nbs-us.com"><xs:import schemaLocation="http://bydexchange.nbs-us.com/BYDExchangeServer.svc?xsd=xsd2" namespace="http://schemas.datacontract.org/2004/07/BYDConnector.QuerySo3"/><xs:import schemaLocation="http://bydexchange.nbs-us.com/BYDExchangeServer.svc?xsd=xsd3" namespace="http://schemas.datacontract.org/2004/07/BYDConnector.ProductAvail"/><xs:import schemaLocation="http://bydexchange.nbs-us.com/BYDExchangeServer.svc?xsd=xsd4" namespace="http://schemas.datacontract.org/2004/07/BYDConnector.QUERYCUSTOMERIN1"/><xs:import schemaLocation="http://bydexchange.nbs-us.com/BYDExchangeServer.svc?xsd=xsd5" namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/><xs:import schemaLocation="http://bydexchange.nbs-us.com/BYDExchangeServer.svc?xsd=xsd6" namespace="http://schemas.datacontract.org/2004/07/NBSBYDLibrary"/><xs:import schemaLocation="http://bydexchange.nbs-us.com/BYDExchangeServer.svc?xsd=xsd7" namespace="http://schemas.datacontract.org/2004/07/BYDConnector.SalesOrderin5"/><xs:import schemaLocation="http://bydexchange.nbs-us.com/BYDExchangeServer.svc?xsd=xsd8" namespace="http://schemas.datacontract.org/2004/07/BYDConnector.CustomerIN_V1"/><xs:element name="ListOrdersByCustomer"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="SessionID" nillable="true" type="xs:string"/><xs:element minOccurs="0" name="CustomerID" nillable="true" type="xs:string"/></xs:sequence></xs:complexType></xs:element><xs:element name="ListOrdersByCustomerResponse"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="ListOrdersByCustomerResult" nillable="true" type="q1:ArrayOfSalesOrderByElementsResponse" xmlns:q1="http://schemas.datacontract.org/2004/07/BYDConnector.QuerySo3"/></xs:sequence></xs:complexType></xs:element><xs:element name="ListOrdersByDate"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="SessionID" nillable="true" type="xs:string"/><xs:element minOccurs="0" name="startDate" type="xs:dateTime"/><xs:element minOccurs="0" name="EndDate" type="xs:dateTime"/></xs:sequence></xs:complexType></xs:element><xs:element name="ListOrdersByDateResponse"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="ListOrdersByDateResult" nillable="true" type="q2:ArrayOfSalesOrderByElementsResponse" xmlns:q2="http://schemas.datacontract.org/2004/07/BYDConnector.QuerySo3"/></xs:sequence></xs:complexType></xs:element><xs:element name="ProductAvail"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="SessionID" nillable="true" type="xs:string"/><xs:element minOccurs="0" name="itemcode" nillable="true" type="xs:string"/><xs:element minOccurs="0" name="whscode" nillable="true" type="xs:string"/><xs:element minOccurs="0" name="ProductAvailabilityDeterminationHorizonDuration" nillable="true" type="xs:string"/></xs:sequence></xs:complexType></xs:element><xs:element name="ProductAvailResponse"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="ProductAvailResult" nillable="true" type="q3:ProductAvailabilityDeterminationResponseMessage_sync" xmlns:q3="http://schemas.datacontract.org/2004/07/BYDConnector.ProductAvail"/></xs:sequence></xs:complexType></xs:element><xs:element name="listcustomers"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="SessionID" nillable="true" type="xs:string"/><xs:element minOccurs="0" name="ModifiedSinceDate" type="xs:dateTime"/></xs:sequence></xs:complexType></xs:element><xs:element name="listcustomersResponse"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="listcustomersResult" nillable="true" type="q4:ArrayOfCustomerReponseCustomer" xmlns:q4="http://schemas.datacontract.org/2004/07/BYDConnector.QUERYCUSTOMERIN1"/></xs:sequence></xs:complexType></xs:element><xs:element name="ParseCSV"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="Lines" nillable="true" type="q5:ArrayOfstring" xmlns:q5="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/></xs:sequence></xs:complexType></xs:element><xs:element name="ParseCSVResponse"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="ParseCSVResult" nillable="true" type="q6:ArrayOfSalesOrder" xmlns:q6="http://schemas.datacontract.org/2004/07/NBSBYDLibrary"/></xs:sequence></xs:complexType></xs:element><xs:element name="AddOrder"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="SessionID" nillable="true" type="xs:string"/><xs:element minOccurs="0" name="Order" nillable="true" type="q7:SalesOrder" xmlns:q7="http://schemas.datacontract.org/2004/07/NBSBYDLibrary"/></xs:sequence></xs:complexType></xs:element><xs:element name="AddOrderResponse"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="AddOrderResult" nillable="true" type="q8:SalesOrderMaintainConfirmationBundleMessage_sync" xmlns:q8="http://schemas.datacontract.org/2004/07/BYDConnector.SalesOrderin5"/></xs:sequence></xs:complexType></xs:element><xs:element name="GetOrder"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="SessionID" nillable="true" type="xs:string"/><xs:element minOccurs="0" name="SAPOrderID" nillable="true" type="xs:string"/></xs:sequence></xs:complexType></xs:element><xs:element name="GetOrderResponse"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="GetOrderResult" nillable="true" type="q9:SalesOrderByElementsResponse" xmlns:q9="http://schemas.datacontract.org/2004/07/BYDConnector.QuerySo3"/></xs:sequence></xs:complexType></xs:element><xs:element name="AddCustomer"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="SessionID" nillable="true" type="xs:string"/><xs:element minOccurs="0" name="Customer" nillable="true" type="q10:Customer" xmlns:q10="http://schemas.datacontract.org/2004/07/NBSBYDLibrary"/></xs:sequence></xs:complexType></xs:element><xs:element name="AddCustomerResponse"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="AddCustomerResult" nillable="true" type="q11:CustomerBundleMaintainConfirmationMessage_sync_V1" xmlns:q11="http://schemas.datacontract.org/2004/07/BYDConnector.CustomerIN_V1"/></xs:sequence></xs:complexType></xs:element><xs:element name="GetCustomer"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="SessionID" nillable="true" type="xs:string"/><xs:element minOccurs="0" name="SAPCustomerID" nillable="true" type="xs:string"/></xs:sequence></xs:complexType></xs:element><xs:element name="GetCustomerResponse"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="GetCustomerResult" nillable="true" type="q12:CustomerReponseCustomer" xmlns:q12="http://schemas.datacontract.org/2004/07/BYDConnector.QUERYCUSTOMERIN1"/></xs:sequence></xs:complexType></xs:element><xs:element name="Authenticate"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="TenantID" nillable="true" type="xs:string"/><xs:element minOccurs="0" name="Password" nillable="true" type="xs:string"/></xs:sequence></xs:complexType></xs:element><xs:element name="AuthenticateResponse"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="AuthenticateResult" nillable="true" type="xs:string"/></xs:sequence></xs:complexType></xs:element></xs:schema>
|
@@ -0,0 +1 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?><xs:schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://schemas.microsoft.com/2003/10/Serialization/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://schemas.microsoft.com/2003/10/Serialization/"><xs:element name="anyType" nillable="true" type="xs:anyType"/><xs:element name="anyURI" nillable="true" type="xs:anyURI"/><xs:element name="base64Binary" nillable="true" type="xs:base64Binary"/><xs:element name="boolean" nillable="true" type="xs:boolean"/><xs:element name="byte" nillable="true" type="xs:byte"/><xs:element name="dateTime" nillable="true" type="xs:dateTime"/><xs:element name="decimal" nillable="true" type="xs:decimal"/><xs:element name="double" nillable="true" type="xs:double"/><xs:element name="float" nillable="true" type="xs:float"/><xs:element name="int" nillable="true" type="xs:int"/><xs:element name="long" nillable="true" type="xs:long"/><xs:element name="QName" nillable="true" type="xs:QName"/><xs:element name="short" nillable="true" type="xs:short"/><xs:element name="string" nillable="true" type="xs:string"/><xs:element name="unsignedByte" nillable="true" type="xs:unsignedByte"/><xs:element name="unsignedInt" nillable="true" type="xs:unsignedInt"/><xs:element name="unsignedLong" nillable="true" type="xs:unsignedLong"/><xs:element name="unsignedShort" nillable="true" type="xs:unsignedShort"/><xs:element name="char" nillable="true" type="tns:char"/><xs:simpleType name="char"><xs:restriction base="xs:int"/></xs:simpleType><xs:element name="duration" nillable="true" type="tns:duration"/><xs:simpleType name="duration"><xs:restriction base="xs:duration"><xs:pattern value="\-?P(\d*D)?(T(\d*H)?(\d*M)?(\d*(\.\d*)?S)?)?"/><xs:minInclusive value="-P10675199DT2H48M5.4775808S"/><xs:maxInclusive value="P10675199DT2H48M5.4775807S"/></xs:restriction></xs:simpleType><xs:element name="guid" nillable="true" type="tns:guid"/><xs:simpleType name="guid"><xs:restriction base="xs:string"><xs:pattern value="[\da-fA-F]{8}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{12}"/></xs:restriction></xs:simpleType><xs:attribute name="FactoryType" type="xs:QName"/><xs:attribute name="Id" type="xs:ID"/><xs:attribute name="Ref" type="xs:IDREF"/></xs:schema>
|
@@ -0,0 +1,119 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!-- http://bydexchange.nbs-us.com/BYDExchangeServer.svc?wsdl=wsdl0 -->
|
3
|
+
<wsdl:definitions targetNamespace="http://bydexchange.nbs-us.com" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:tns="http://bydexchange.nbs-us.com" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:wsap="http://schemas.xmlsoap.org/ws/2004/08/addressing/policy" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:msc="http://schemas.microsoft.com/ws/2005/12/wsdl/contract" xmlns:wsa10="http://www.w3.org/2005/08/addressing" xmlns:wsx="http://schemas.xmlsoap.org/ws/2004/09/mex" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata">
|
4
|
+
<wsdl:types>
|
5
|
+
<xsd:schema targetNamespace="http://bydexchange.nbs-us.com/Imports">
|
6
|
+
<xsd:import schemaLocation="http://bydexchange.nbs-us.com/BYDExchangeServer.svc?xsd=xsd0" namespace="http://bydexchange.nbs-us.com"/>
|
7
|
+
<xsd:import schemaLocation="http://bydexchange.nbs-us.com/BYDExchangeServer.svc?xsd=xsd1" namespace="http://schemas.microsoft.com/2003/10/Serialization/"/>
|
8
|
+
<xsd:import schemaLocation="http://bydexchange.nbs-us.com/BYDExchangeServer.svc?xsd=xsd2" namespace="http://schemas.datacontract.org/2004/07/BYDConnector.QuerySo3"/>
|
9
|
+
<xsd:import schemaLocation="http://bydexchange.nbs-us.com/BYDExchangeServer.svc?xsd=xsd3" namespace="http://schemas.datacontract.org/2004/07/BYDConnector.ProductAvail"/>
|
10
|
+
<xsd:import schemaLocation="http://bydexchange.nbs-us.com/BYDExchangeServer.svc?xsd=xsd4" namespace="http://schemas.datacontract.org/2004/07/BYDConnector.QUERYCUSTOMERIN1"/>
|
11
|
+
<xsd:import schemaLocation="http://bydexchange.nbs-us.com/BYDExchangeServer.svc?xsd=xsd5" namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>
|
12
|
+
<xsd:import schemaLocation="http://bydexchange.nbs-us.com/BYDExchangeServer.svc?xsd=xsd6" namespace="http://schemas.datacontract.org/2004/07/NBSBYDLibrary"/>
|
13
|
+
<xsd:import schemaLocation="http://bydexchange.nbs-us.com/BYDExchangeServer.svc?xsd=xsd7" namespace="http://schemas.datacontract.org/2004/07/BYDConnector.SalesOrderin5"/>
|
14
|
+
<xsd:import schemaLocation="http://bydexchange.nbs-us.com/BYDExchangeServer.svc?xsd=xsd8" namespace="http://schemas.datacontract.org/2004/07/BYDConnector.CustomerIN_V1"/>
|
15
|
+
</xsd:schema>
|
16
|
+
</wsdl:types>
|
17
|
+
<wsdl:message name="IBYDExchangeServer_ListOrdersByCustomer_InputMessage">
|
18
|
+
<wsdl:part name="parameters" element="tns:ListOrdersByCustomer"/>
|
19
|
+
</wsdl:message>
|
20
|
+
<wsdl:message name="IBYDExchangeServer_ListOrdersByCustomer_OutputMessage">
|
21
|
+
<wsdl:part name="parameters" element="tns:ListOrdersByCustomerResponse"/>
|
22
|
+
</wsdl:message>
|
23
|
+
<wsdl:message name="IBYDExchangeServer_ListOrdersByDate_InputMessage">
|
24
|
+
<wsdl:part name="parameters" element="tns:ListOrdersByDate"/>
|
25
|
+
</wsdl:message>
|
26
|
+
<wsdl:message name="IBYDExchangeServer_ListOrdersByDate_OutputMessage">
|
27
|
+
<wsdl:part name="parameters" element="tns:ListOrdersByDateResponse"/>
|
28
|
+
</wsdl:message>
|
29
|
+
<wsdl:message name="IBYDExchangeServer_ProductAvail_InputMessage">
|
30
|
+
<wsdl:part name="parameters" element="tns:ProductAvail"/>
|
31
|
+
</wsdl:message>
|
32
|
+
<wsdl:message name="IBYDExchangeServer_ProductAvail_OutputMessage">
|
33
|
+
<wsdl:part name="parameters" element="tns:ProductAvailResponse"/>
|
34
|
+
</wsdl:message>
|
35
|
+
<wsdl:message name="IBYDExchangeServer_listcustomers_InputMessage">
|
36
|
+
<wsdl:part name="parameters" element="tns:listcustomers"/>
|
37
|
+
</wsdl:message>
|
38
|
+
<wsdl:message name="IBYDExchangeServer_listcustomers_OutputMessage">
|
39
|
+
<wsdl:part name="parameters" element="tns:listcustomersResponse"/>
|
40
|
+
</wsdl:message>
|
41
|
+
<wsdl:message name="IBYDExchangeServer_ParseCSV_InputMessage">
|
42
|
+
<wsdl:part name="parameters" element="tns:ParseCSV"/>
|
43
|
+
</wsdl:message>
|
44
|
+
<wsdl:message name="IBYDExchangeServer_ParseCSV_OutputMessage">
|
45
|
+
<wsdl:part name="parameters" element="tns:ParseCSVResponse"/>
|
46
|
+
</wsdl:message>
|
47
|
+
<wsdl:message name="IBYDExchangeServer_AddOrder_InputMessage">
|
48
|
+
<wsdl:part name="parameters" element="tns:AddOrder"/>
|
49
|
+
</wsdl:message>
|
50
|
+
<wsdl:message name="IBYDExchangeServer_AddOrder_OutputMessage">
|
51
|
+
<wsdl:part name="parameters" element="tns:AddOrderResponse"/>
|
52
|
+
</wsdl:message>
|
53
|
+
<wsdl:message name="IBYDExchangeServer_GetOrder_InputMessage">
|
54
|
+
<wsdl:part name="parameters" element="tns:GetOrder"/>
|
55
|
+
</wsdl:message>
|
56
|
+
<wsdl:message name="IBYDExchangeServer_GetOrder_OutputMessage">
|
57
|
+
<wsdl:part name="parameters" element="tns:GetOrderResponse"/>
|
58
|
+
</wsdl:message>
|
59
|
+
<wsdl:message name="IBYDExchangeServer_AddCustomer_InputMessage">
|
60
|
+
<wsdl:part name="parameters" element="tns:AddCustomer"/>
|
61
|
+
</wsdl:message>
|
62
|
+
<wsdl:message name="IBYDExchangeServer_AddCustomer_OutputMessage">
|
63
|
+
<wsdl:part name="parameters" element="tns:AddCustomerResponse"/>
|
64
|
+
</wsdl:message>
|
65
|
+
<wsdl:message name="IBYDExchangeServer_GetCustomer_InputMessage">
|
66
|
+
<wsdl:part name="parameters" element="tns:GetCustomer"/>
|
67
|
+
</wsdl:message>
|
68
|
+
<wsdl:message name="IBYDExchangeServer_GetCustomer_OutputMessage">
|
69
|
+
<wsdl:part name="parameters" element="tns:GetCustomerResponse"/>
|
70
|
+
</wsdl:message>
|
71
|
+
<wsdl:message name="IBYDExchangeServer_Authenticate_InputMessage">
|
72
|
+
<wsdl:part name="parameters" element="tns:Authenticate"/>
|
73
|
+
</wsdl:message>
|
74
|
+
<wsdl:message name="IBYDExchangeServer_Authenticate_OutputMessage">
|
75
|
+
<wsdl:part name="parameters" element="tns:AuthenticateResponse"/>
|
76
|
+
</wsdl:message>
|
77
|
+
<wsdl:portType name="IBYDExchangeServer">
|
78
|
+
<wsdl:operation name="ListOrdersByCustomer">
|
79
|
+
<wsdl:input wsaw:Action="http://bydexchange.nbs-us.com/IBYDExchangeServer/ListOrdersByCustomer" message="tns:IBYDExchangeServer_ListOrdersByCustomer_InputMessage"/>
|
80
|
+
<wsdl:output wsaw:Action="http://bydexchange.nbs-us.com/IBYDExchangeServer/ListOrdersByCustomerResponse" message="tns:IBYDExchangeServer_ListOrdersByCustomer_OutputMessage"/>
|
81
|
+
</wsdl:operation>
|
82
|
+
<wsdl:operation name="ListOrdersByDate">
|
83
|
+
<wsdl:input wsaw:Action="http://bydexchange.nbs-us.com/IBYDExchangeServer/ListOrdersByDate" message="tns:IBYDExchangeServer_ListOrdersByDate_InputMessage"/>
|
84
|
+
<wsdl:output wsaw:Action="http://bydexchange.nbs-us.com/IBYDExchangeServer/ListOrdersByDateResponse" message="tns:IBYDExchangeServer_ListOrdersByDate_OutputMessage"/>
|
85
|
+
</wsdl:operation>
|
86
|
+
<wsdl:operation name="ProductAvail">
|
87
|
+
<wsdl:input wsaw:Action="http://bydexchange.nbs-us.com/IBYDExchangeServer/ProductAvail" message="tns:IBYDExchangeServer_ProductAvail_InputMessage"/>
|
88
|
+
<wsdl:output wsaw:Action="http://bydexchange.nbs-us.com/IBYDExchangeServer/ProductAvailResponse" message="tns:IBYDExchangeServer_ProductAvail_OutputMessage"/>
|
89
|
+
</wsdl:operation>
|
90
|
+
<wsdl:operation name="listcustomers">
|
91
|
+
<wsdl:input wsaw:Action="http://bydexchange.nbs-us.com/IBYDExchangeServer/listcustomers" message="tns:IBYDExchangeServer_listcustomers_InputMessage"/>
|
92
|
+
<wsdl:output wsaw:Action="http://bydexchange.nbs-us.com/IBYDExchangeServer/listcustomersResponse" message="tns:IBYDExchangeServer_listcustomers_OutputMessage"/>
|
93
|
+
</wsdl:operation>
|
94
|
+
<wsdl:operation name="ParseCSV">
|
95
|
+
<wsdl:input wsaw:Action="http://bydexchange.nbs-us.com/IBYDExchangeServer/ParseCSV" message="tns:IBYDExchangeServer_ParseCSV_InputMessage"/>
|
96
|
+
<wsdl:output wsaw:Action="http://bydexchange.nbs-us.com/IBYDExchangeServer/ParseCSVResponse" message="tns:IBYDExchangeServer_ParseCSV_OutputMessage"/>
|
97
|
+
</wsdl:operation>
|
98
|
+
<wsdl:operation name="AddOrder">
|
99
|
+
<wsdl:input wsaw:Action="http://bydexchange.nbs-us.com/IBYDExchangeServer/AddOrder" message="tns:IBYDExchangeServer_AddOrder_InputMessage"/>
|
100
|
+
<wsdl:output wsaw:Action="http://bydexchange.nbs-us.com/IBYDExchangeServer/AddOrderResponse" message="tns:IBYDExchangeServer_AddOrder_OutputMessage"/>
|
101
|
+
</wsdl:operation>
|
102
|
+
<wsdl:operation name="GetOrder">
|
103
|
+
<wsdl:input wsaw:Action="http://bydexchange.nbs-us.com/IBYDExchangeServer/GetOrder" message="tns:IBYDExchangeServer_GetOrder_InputMessage"/>
|
104
|
+
<wsdl:output wsaw:Action="http://bydexchange.nbs-us.com/IBYDExchangeServer/GetOrderResponse" message="tns:IBYDExchangeServer_GetOrder_OutputMessage"/>
|
105
|
+
</wsdl:operation>
|
106
|
+
<wsdl:operation name="AddCustomer">
|
107
|
+
<wsdl:input wsaw:Action="http://bydexchange.nbs-us.com/IBYDExchangeServer/AddCustomer" message="tns:IBYDExchangeServer_AddCustomer_InputMessage"/>
|
108
|
+
<wsdl:output wsaw:Action="http://bydexchange.nbs-us.com/IBYDExchangeServer/AddCustomerResponse" message="tns:IBYDExchangeServer_AddCustomer_OutputMessage"/>
|
109
|
+
</wsdl:operation>
|
110
|
+
<wsdl:operation name="GetCustomer">
|
111
|
+
<wsdl:input wsaw:Action="http://bydexchange.nbs-us.com/IBYDExchangeServer/GetCustomer" message="tns:IBYDExchangeServer_GetCustomer_InputMessage"/>
|
112
|
+
<wsdl:output wsaw:Action="http://bydexchange.nbs-us.com/IBYDExchangeServer/GetCustomerResponse" message="tns:IBYDExchangeServer_GetCustomer_OutputMessage"/>
|
113
|
+
</wsdl:operation>
|
114
|
+
<wsdl:operation name="Authenticate">
|
115
|
+
<wsdl:input wsaw:Action="http://bydexchange.nbs-us.com/IBYDExchangeServer/Authenticate" message="tns:IBYDExchangeServer_Authenticate_InputMessage"/>
|
116
|
+
<wsdl:output wsaw:Action="http://bydexchange.nbs-us.com/IBYDExchangeServer/AuthenticateResponse" message="tns:IBYDExchangeServer_Authenticate_OutputMessage"/>
|
117
|
+
</wsdl:operation>
|
118
|
+
</wsdl:portType>
|
119
|
+
</wsdl:definitions>
|
@@ -0,0 +1 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?><xs:schema elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/BYDConnector.QuerySo3" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://schemas.datacontract.org/2004/07/BYDConnector.QuerySo3"><xs:complexType name="ArrayOfSalesOrderByElementsResponse"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="SalesOrderByElementsResponse" nillable="true" type="tns:SalesOrderByElementsResponse"/></xs:sequence></xs:complexType><xs:element name="ArrayOfSalesOrderByElementsResponse" nillable="true" type="tns:ArrayOfSalesOrderByElementsResponse"/><xs:complexType name="SalesOrderByElementsResponse"><xs:sequence><xs:element name="accountPartyField" nillable="true" type="tns:SalesOrderByElementsResponseParty"/><xs:element name="attachmentFolderField" nillable="true" type="tns:AccessAttachmentFolder"/><xs:element name="billFromPartyField" nillable="true" type="tns:SalesOrderByElementsResponseParty"/><xs:element name="billToPartyField" nillable="true" type="tns:SalesOrderByElementsResponseParty"/><xs:element name="businessTransactionDocumentReferenceField" nillable="true" type="tns:ArrayOfSalesOrderByElementsResponseBusinessTransactionDocumentReference"/><xs:element name="buyerIDField" nillable="true" type="tns:BusinessTransactionDocumentID"/><xs:element name="cashDiscountTermsField" nillable="true" type="tns:SalesOrderByElementsResponseCashDiscountTerms"/><xs:element name="changeStateIDField" nillable="true" type="xs:string"/><xs:element name="dataOriginTypeCodeField" nillable="true" type="xs:string"/><xs:element name="deliveryTermsField" nillable="true" type="tns:SalesOrderByElementsResponseDeliveryTerms"/><xs:element name="employeeResponsiblePartyField" nillable="true" type="tns:SalesOrderByElementsResponseParty"/><xs:element name="freightForwarderPartyField" nillable="true" type="tns:SalesOrderByElementsResponseParty"/><xs:element name="fulfillmentBlockingReasonCodeField" nillable="true" type="xs:string"/><xs:element name="idField" nillable="true" type="tns:BusinessTransactionDocumentID"/><xs:element name="invoiceTermsField" nillable="true" type="tns:SalesOrderByElementsResponseInvoiceTerms"/><xs:element name="itemField" nillable="true" type="tns:ArrayOfSalesOrderByElementsResponseItem"/><xs:element name="nameField" nillable="true" type="tns:EXTENDED_Name"/><xs:element name="payerPartyField" nillable="true" type="tns:SalesOrderByElementsResponseParty"/><xs:element name="paymentControlField" nillable="true" type="tns:SalesOrderByElementsResponsePaymentControl"/><xs:element name="postingDateField" type="xs:dateTime"/><xs:element name="postingDateFieldSpecified" type="xs:boolean"/><xs:element name="priceAndTaxCalculationField" nillable="true" type="tns:SalesOrderByElementsResponsePriceAndTaxCalculation"/><xs:element name="pricingTermsField" nillable="true" type="tns:SalesOrderByElementsResponsePricingTerms"/><xs:element name="productRecipientPartyField" nillable="true" type="tns:SalesOrderByElementsResponseParty"/><xs:element name="requestedFulfillmentPeriodPeriodTermsField" nillable="true" type="tns:SalesOrderByElementsResponseRequestedFulfillmentPeriodPeriodTerms"/><xs:element name="salesAndServiceBusinessAreaField" nillable="true" type="tns:SalesOrderByElementsResponseSalesAndServiceBusinessArea"/><xs:element name="salesEmployeePartyField" nillable="true" type="tns:SalesOrderByElementsResponseParty"/><xs:element name="salesPartnerPartyField" nillable="true" type="tns:SalesOrderByElementsResponseParty"/><xs:element name="salesTermsField" nillable="true" type="tns:SalesOrderByElementsResponseSalesTerms"/><xs:element name="salesUnitPartyField" nillable="true" type="tns:SalesOrderByElementsResponseParty"/><xs:element name="sellerPartyField" nillable="true" type="tns:SalesOrderByElementsResponseParty"/><xs:element name="serviceConfirmationCreationCodeField" nillable="true" type="tns:CustomerTransactionDocumentServiceConfirmationCreationCode"/><xs:element name="serviceExecutionTeamPartyField" nillable="true" type="tns:SalesOrderByElementsResponseParty"/><xs:element name="servicePerformerPartyField" nillable="true" type="tns:SalesOrderByElementsResponseParty"/><xs:element name="statusField" nillable="true" type="tns:SalesOrderByElementsResponseStatus"/><xs:element name="textCollectionField" nillable="true" type="tns:ArrayOfSalesOrderByElementsResponseTextCollectionText"/><xs:element name="uUIDField" nillable="true" type="tns:UUID"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponse" nillable="true" type="tns:SalesOrderByElementsResponse"/><xs:complexType name="SalesOrderByElementsResponseParty"><xs:sequence><xs:element name="addressField" nillable="true" type="tns:SalesOrderMaintainRequestPartyAddress"/><xs:element name="addressHostUUIDField" nillable="true" type="tns:UUID"/><xs:element name="contactPartyField" nillable="true" type="tns:ArrayOfSalesOrderByElementsResponsePartyContactParty"/><xs:element name="partyIDField" nillable="true" type="tns:PartyID"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponseParty" nillable="true" type="tns:SalesOrderByElementsResponseParty"/><xs:complexType name="SalesOrderMaintainRequestPartyAddress"><xs:sequence><xs:element name="correspondenceLanguageCodeField" nillable="true" type="xs:string"/><xs:element name="displayNameField" nillable="true" type="tns:ArrayOfSalesOrderMaintainRequestPartyAddressDisplayName"/><xs:element name="emailField" nillable="true" type="tns:ArrayOfSalesOrderMaintainRequestPartyAddressEmail"/><xs:element name="facsimileField" nillable="true" type="tns:ArrayOfSalesOrderMaintainRequestPartyAddressFascmile"/><xs:element name="nameField" nillable="true" type="tns:ArrayOfSalesOrderMaintainRequestPartyAddressName"/><xs:element name="postalAddressField" nillable="true" type="tns:ArrayOfSalesOrderMaintainRequestPartyAddressPostalAddress"/><xs:element name="telephoneField" nillable="true" type="tns:ArrayOfSalesOrderMaintainRequestPartyAddressTelephone"/><xs:element name="webField" nillable="true" type="tns:ArrayOfSalesOrderMaintainRequestPartyAddressWeb"/></xs:sequence></xs:complexType><xs:element name="SalesOrderMaintainRequestPartyAddress" nillable="true" type="tns:SalesOrderMaintainRequestPartyAddress"/><xs:complexType name="ArrayOfSalesOrderMaintainRequestPartyAddressDisplayName"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="SalesOrderMaintainRequestPartyAddressDisplayName" nillable="true" type="tns:SalesOrderMaintainRequestPartyAddressDisplayName"/></xs:sequence></xs:complexType><xs:element name="ArrayOfSalesOrderMaintainRequestPartyAddressDisplayName" nillable="true" type="tns:ArrayOfSalesOrderMaintainRequestPartyAddressDisplayName"/><xs:complexType name="SalesOrderMaintainRequestPartyAddressDisplayName"><xs:sequence><xs:element name="formattedNameField" nillable="true" type="tns:LONG_Name"/></xs:sequence></xs:complexType><xs:element name="SalesOrderMaintainRequestPartyAddressDisplayName" nillable="true" type="tns:SalesOrderMaintainRequestPartyAddressDisplayName"/><xs:complexType name="LONG_Name"><xs:sequence><xs:element name="languageCodeField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="LONG_Name" nillable="true" type="tns:LONG_Name"/><xs:complexType name="ArrayOfSalesOrderMaintainRequestPartyAddressEmail"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="SalesOrderMaintainRequestPartyAddressEmail" nillable="true" type="tns:SalesOrderMaintainRequestPartyAddressEmail"/></xs:sequence></xs:complexType><xs:element name="ArrayOfSalesOrderMaintainRequestPartyAddressEmail" nillable="true" type="tns:ArrayOfSalesOrderMaintainRequestPartyAddressEmail"/><xs:complexType name="SalesOrderMaintainRequestPartyAddressEmail"><xs:sequence><xs:element name="defaultIndicatorField" type="xs:boolean"/><xs:element name="defaultIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="uRIField" nillable="true" type="tns:EmailURI"/><xs:element name="usageDeniedIndicatorField" type="xs:boolean"/><xs:element name="usageDeniedIndicatorFieldSpecified" type="xs:boolean"/></xs:sequence></xs:complexType><xs:element name="SalesOrderMaintainRequestPartyAddressEmail" nillable="true" type="tns:SalesOrderMaintainRequestPartyAddressEmail"/><xs:complexType name="EmailURI"><xs:sequence><xs:element name="schemeIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="EmailURI" nillable="true" type="tns:EmailURI"/><xs:complexType name="ArrayOfSalesOrderMaintainRequestPartyAddressFascmile"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="SalesOrderMaintainRequestPartyAddressFascmile" nillable="true" type="tns:SalesOrderMaintainRequestPartyAddressFascmile"/></xs:sequence></xs:complexType><xs:element name="ArrayOfSalesOrderMaintainRequestPartyAddressFascmile" nillable="true" type="tns:ArrayOfSalesOrderMaintainRequestPartyAddressFascmile"/><xs:complexType name="SalesOrderMaintainRequestPartyAddressFascmile"><xs:sequence><xs:element name="defaultIndicatorField" type="xs:boolean"/><xs:element name="defaultIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="formattedNumberDescriptionField" nillable="true" type="xs:string"/><xs:element name="numberField" nillable="true" type="tns:PhoneNumber"/><xs:element name="usageDeniedIndicatorField" type="xs:boolean"/><xs:element name="usageDeniedIndicatorFieldSpecified" type="xs:boolean"/></xs:sequence></xs:complexType><xs:element name="SalesOrderMaintainRequestPartyAddressFascmile" nillable="true" type="tns:SalesOrderMaintainRequestPartyAddressFascmile"/><xs:complexType name="PhoneNumber"><xs:sequence><xs:element name="areaIDField" nillable="true" type="xs:string"/><xs:element name="countryCodeField" nillable="true" type="xs:string"/><xs:element name="countryDiallingCodeField" nillable="true" type="xs:string"/><xs:element name="countryNameField" nillable="true" type="tns:MEDIUM_Name"/><xs:element name="extensionIDField" nillable="true" type="xs:string"/><xs:element name="subscriberIDField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="PhoneNumber" nillable="true" type="tns:PhoneNumber"/><xs:complexType name="MEDIUM_Name"><xs:sequence><xs:element name="languageCodeField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="MEDIUM_Name" nillable="true" type="tns:MEDIUM_Name"/><xs:complexType name="ArrayOfSalesOrderMaintainRequestPartyAddressName"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="SalesOrderMaintainRequestPartyAddressName" nillable="true" type="tns:SalesOrderMaintainRequestPartyAddressName"/></xs:sequence></xs:complexType><xs:element name="ArrayOfSalesOrderMaintainRequestPartyAddressName" nillable="true" type="tns:ArrayOfSalesOrderMaintainRequestPartyAddressName"/><xs:complexType name="SalesOrderMaintainRequestPartyAddressName"><xs:sequence><xs:element name="addressRepresentationCodeField" nillable="true" type="tns:AddressRepresentationCode"/><xs:element name="nameField" nillable="true" type="tns:OrganisationName"/></xs:sequence></xs:complexType><xs:element name="SalesOrderMaintainRequestPartyAddressName" nillable="true" type="tns:SalesOrderMaintainRequestPartyAddressName"/><xs:complexType name="AddressRepresentationCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="listAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="AddressRepresentationCode" nillable="true" type="tns:AddressRepresentationCode"/><xs:simpleType name="AgencyIdentificationCode"><xs:restriction base="xs:string"><xs:enumeration value="Item1"/><xs:enumeration value="Item5"/><xs:enumeration value="Item6"/><xs:enumeration value="Item16"/><xs:enumeration value="Item17"/><xs:enumeration value="Item84"/><xs:enumeration value="Item107"/><xs:enumeration value="Item109"/><xs:enumeration value="Item112"/><xs:enumeration value="Item113"/><xs:enumeration value="Item114"/><xs:enumeration value="Item116"/><xs:enumeration value="Item117"/><xs:enumeration value="Item124"/><xs:enumeration value="Item130"/><xs:enumeration value="Item131"/><xs:enumeration value="Item138"/><xs:enumeration value="Item142"/><xs:enumeration value="Item146"/><xs:enumeration value="Item262"/><xs:enumeration value="Item296"/><xs:enumeration value="Item310"/></xs:restriction></xs:simpleType><xs:element name="AgencyIdentificationCode" nillable="true" type="tns:AgencyIdentificationCode"/><xs:complexType name="OrganisationName"><xs:sequence><xs:element name="firstLineNameField" nillable="true" type="xs:string"/><xs:element name="formOfAddressCodeField" nillable="true" type="tns:FormOfAddressCode"/><xs:element name="fourthLineNameField" nillable="true" type="xs:string"/><xs:element name="secondLineNameField" nillable="true" type="xs:string"/><xs:element name="thirdLineNameField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="OrganisationName" nillable="true" type="tns:OrganisationName"/><xs:complexType name="FormOfAddressCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="FormOfAddressCode" nillable="true" type="tns:FormOfAddressCode"/><xs:complexType name="ArrayOfSalesOrderMaintainRequestPartyAddressPostalAddress"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="SalesOrderMaintainRequestPartyAddressPostalAddress" nillable="true" type="tns:SalesOrderMaintainRequestPartyAddressPostalAddress"/></xs:sequence></xs:complexType><xs:element name="ArrayOfSalesOrderMaintainRequestPartyAddressPostalAddress" nillable="true" type="tns:ArrayOfSalesOrderMaintainRequestPartyAddressPostalAddress"/><xs:complexType name="SalesOrderMaintainRequestPartyAddressPostalAddress"><xs:sequence><xs:element name="additionalCityNameField" nillable="true" type="xs:string"/><xs:element name="additionalStreetPrefixNameField" nillable="true" type="xs:string"/><xs:element name="additionalStreetSuffixNameField" nillable="true" type="xs:string"/><xs:element name="addressRepresentationCodeField" nillable="true" type="tns:AddressRepresentationCode"/><xs:element name="buildingIDField" nillable="true" type="xs:string"/><xs:element name="careOfNameField" nillable="true" type="xs:string"/><xs:element name="cityNameField" nillable="true" type="xs:string"/><xs:element name="companyPostalCodeField" nillable="true" type="xs:string"/><xs:element name="countryCodeField" nillable="true" type="xs:string"/><xs:element name="countyNameField" nillable="true" type="xs:string"/><xs:element name="districtNameField" nillable="true" type="xs:string"/><xs:element name="floorIDField" nillable="true" type="xs:string"/><xs:element name="houseIDField" nillable="true" type="xs:string"/><xs:element name="pOBoxDeviatingCityNameField" nillable="true" type="xs:string"/><xs:element name="pOBoxDeviatingCountryCodeField" nillable="true" type="xs:string"/><xs:element name="pOBoxDeviatingRegionCodeField" nillable="true" type="tns:RegionCode"/><xs:element name="pOBoxIDField" nillable="true" type="xs:string"/><xs:element name="pOBoxIndicatorField" type="xs:boolean"/><xs:element name="pOBoxIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="pOBoxPostalCodeField" nillable="true" type="xs:string"/><xs:element name="regionCodeField" nillable="true" type="tns:RegionCode"/><xs:element name="roomIDField" nillable="true" type="xs:string"/><xs:element name="streetNameField" nillable="true" type="xs:string"/><xs:element name="streetPostalCodeField" nillable="true" type="xs:string"/><xs:element name="streetPrefixNameField" nillable="true" type="xs:string"/><xs:element name="streetSuffixNameField" nillable="true" type="xs:string"/><xs:element name="taxJurisdictionCodeField" nillable="true" type="tns:TaxJurisdictionCode"/><xs:element name="timeZoneCodeField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="SalesOrderMaintainRequestPartyAddressPostalAddress" nillable="true" type="tns:SalesOrderMaintainRequestPartyAddressPostalAddress"/><xs:complexType name="RegionCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="listAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="RegionCode" nillable="true" type="tns:RegionCode"/><xs:complexType name="TaxJurisdictionCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="listAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="TaxJurisdictionCode" nillable="true" type="tns:TaxJurisdictionCode"/><xs:complexType name="ArrayOfSalesOrderMaintainRequestPartyAddressTelephone"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="SalesOrderMaintainRequestPartyAddressTelephone" nillable="true" type="tns:SalesOrderMaintainRequestPartyAddressTelephone"/></xs:sequence></xs:complexType><xs:element name="ArrayOfSalesOrderMaintainRequestPartyAddressTelephone" nillable="true" type="tns:ArrayOfSalesOrderMaintainRequestPartyAddressTelephone"/><xs:complexType name="SalesOrderMaintainRequestPartyAddressTelephone"><xs:sequence><xs:element name="defaultConventionalPhoneNumberIndicatorField" type="xs:boolean"/><xs:element name="defaultConventionalPhoneNumberIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="defaultMobilePhoneNumberIndicatorField" type="xs:boolean"/><xs:element name="defaultMobilePhoneNumberIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="formattedNumberDescriptionField" nillable="true" type="xs:string"/><xs:element name="mobilePhoneNumberIndicatorField" type="xs:boolean"/><xs:element name="mobilePhoneNumberIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="numberField" nillable="true" type="tns:PhoneNumber"/><xs:element name="sMSEnabledIndicatorField" type="xs:boolean"/><xs:element name="sMSEnabledIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="usageDeniedIndicatorField" type="xs:boolean"/><xs:element name="usageDeniedIndicatorFieldSpecified" type="xs:boolean"/></xs:sequence></xs:complexType><xs:element name="SalesOrderMaintainRequestPartyAddressTelephone" nillable="true" type="tns:SalesOrderMaintainRequestPartyAddressTelephone"/><xs:complexType name="ArrayOfSalesOrderMaintainRequestPartyAddressWeb"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="SalesOrderMaintainRequestPartyAddressWeb" nillable="true" type="tns:SalesOrderMaintainRequestPartyAddressWeb"/></xs:sequence></xs:complexType><xs:element name="ArrayOfSalesOrderMaintainRequestPartyAddressWeb" nillable="true" type="tns:ArrayOfSalesOrderMaintainRequestPartyAddressWeb"/><xs:complexType name="SalesOrderMaintainRequestPartyAddressWeb"><xs:sequence><xs:element name="defaultIndicatorField" type="xs:boolean"/><xs:element name="defaultIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="uRIField" nillable="true" type="xs:string"/><xs:element name="usageDeniedIndicatorField" type="xs:boolean"/><xs:element name="usageDeniedIndicatorFieldSpecified" type="xs:boolean"/></xs:sequence></xs:complexType><xs:element name="SalesOrderMaintainRequestPartyAddressWeb" nillable="true" type="tns:SalesOrderMaintainRequestPartyAddressWeb"/><xs:complexType name="UUID"><xs:sequence><xs:element name="schemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="schemeIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="UUID" nillable="true" type="tns:UUID"/><xs:complexType name="ArrayOfSalesOrderByElementsResponsePartyContactParty"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="SalesOrderByElementsResponsePartyContactParty" nillable="true" type="tns:SalesOrderByElementsResponsePartyContactParty"/></xs:sequence></xs:complexType><xs:element name="ArrayOfSalesOrderByElementsResponsePartyContactParty" nillable="true" type="tns:ArrayOfSalesOrderByElementsResponsePartyContactParty"/><xs:complexType name="SalesOrderByElementsResponsePartyContactParty"><xs:sequence><xs:element name="addressField" nillable="true" type="tns:SalesOrderMaintainRequestPartyAddress"/><xs:element name="addressHostUUIDField" nillable="true" type="tns:UUID"/><xs:element name="mainIndicatorField" type="xs:boolean"/><xs:element name="mainIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="partyIDField" nillable="true" type="tns:PartyID"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponsePartyContactParty" nillable="true" type="tns:SalesOrderByElementsResponsePartyContactParty"/><xs:complexType name="PartyID"><xs:sequence><xs:element name="schemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="schemeAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="schemeAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="schemeAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="schemeIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="PartyID" nillable="true" type="tns:PartyID"/><xs:complexType name="AccessAttachmentFolder"><xs:sequence><xs:element name="documentField" nillable="true" type="tns:ArrayOfAccessAttachmentFolderDocument"/><xs:element name="uUIDField" nillable="true" type="tns:UUID"/></xs:sequence></xs:complexType><xs:element name="AccessAttachmentFolder" nillable="true" type="tns:AccessAttachmentFolder"/><xs:complexType name="ArrayOfAccessAttachmentFolderDocument"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="AccessAttachmentFolderDocument" nillable="true" type="tns:AccessAttachmentFolderDocument"/></xs:sequence></xs:complexType><xs:element name="ArrayOfAccessAttachmentFolderDocument" nillable="true" type="tns:ArrayOfAccessAttachmentFolderDocument"/><xs:complexType name="AccessAttachmentFolderDocument"><xs:sequence><xs:element name="alternativeNameField" nillable="true" type="xs:string"/><xs:element name="categoryCodeField" nillable="true" type="xs:string"/><xs:element name="categoryNameField" nillable="true" type="xs:string"/><xs:element name="checkedOutIndicatorField" type="xs:boolean"/><xs:element name="checkedOutIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="descriptionField" nillable="true" type="tns:Description"/><xs:element name="externalLinkWebURIField" nillable="true" type="xs:string"/><xs:element name="fileContentURIField" nillable="true" type="tns:URI"/><xs:element name="filesizeMeasureField" nillable="true" type="tns:Measure"/><xs:element name="internalLinkUUIDField" nillable="true" type="tns:UUID"/><xs:element name="linkInternalIndicatorField" type="xs:boolean"/><xs:element name="linkInternalIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="mIMECodeField" nillable="true" type="xs:string"/><xs:element name="mIMENameField" nillable="true" type="xs:string"/><xs:element name="nameField" nillable="true" type="xs:string"/><xs:element name="pathNameField" nillable="true" type="xs:string"/><xs:element name="propertyField" nillable="true" type="tns:ArrayOfAccessAttachmentFolderDocumentProperty"/><xs:element name="systemAdministrativeDataField" nillable="true" type="tns:SystemAdministrativeData"/><xs:element name="typeCodeField" nillable="true" type="tns:DocumentTypeCode"/><xs:element name="typeNameField" nillable="true" type="xs:string"/><xs:element name="uUIDField" nillable="true" type="tns:UUID"/><xs:element name="versionIDField" nillable="true" type="xs:string"/><xs:element name="versioningEnabledIndicatorField" type="xs:boolean"/><xs:element name="versioningEnabledIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="visibleIndicatorField" type="xs:boolean"/><xs:element name="visibleIndicatorFieldSpecified" type="xs:boolean"/></xs:sequence></xs:complexType><xs:element name="AccessAttachmentFolderDocument" nillable="true" type="tns:AccessAttachmentFolderDocument"/><xs:complexType name="Description"><xs:sequence><xs:element name="languageCodeField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="Description" nillable="true" type="tns:Description"/><xs:complexType name="URI"><xs:sequence><xs:element name="schemeIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="URI" nillable="true" type="tns:URI"/><xs:complexType name="Measure"><xs:sequence><xs:element name="unitCodeField" nillable="true" type="xs:string"/><xs:element name="valueField" type="xs:decimal"/></xs:sequence></xs:complexType><xs:element name="Measure" nillable="true" type="tns:Measure"/><xs:complexType name="ArrayOfAccessAttachmentFolderDocumentProperty"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="AccessAttachmentFolderDocumentProperty" nillable="true" type="tns:AccessAttachmentFolderDocumentProperty"/></xs:sequence></xs:complexType><xs:element name="ArrayOfAccessAttachmentFolderDocumentProperty" nillable="true" type="tns:ArrayOfAccessAttachmentFolderDocumentProperty"/><xs:complexType name="AccessAttachmentFolderDocumentProperty"><xs:sequence><xs:element name="changeAllowedIndicatorField" type="xs:boolean"/><xs:element name="changeAllowedIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="dataTypeFormatCodeField" nillable="true" type="xs:string"/><xs:element name="dataTypeFormatNameField" nillable="true" type="xs:string"/><xs:element name="descriptionField" nillable="true" type="tns:Description"/><xs:element name="multipleValueIndicatorField" type="xs:boolean"/><xs:element name="multipleValueIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="nameField" nillable="true" type="xs:string"/><xs:element name="namespaceURIField" nillable="true" type="tns:NamespaceURI"/><xs:element name="propertyValueField" nillable="true" type="tns:ArrayOfAccessAttachmentFolderDocumentPropertyPropertyValue"/><xs:element name="technicalIDField" nillable="true" type="xs:string"/><xs:element name="visibleIndicatorField" type="xs:boolean"/><xs:element name="visibleIndicatorFieldSpecified" type="xs:boolean"/></xs:sequence></xs:complexType><xs:element name="AccessAttachmentFolderDocumentProperty" nillable="true" type="tns:AccessAttachmentFolderDocumentProperty"/><xs:complexType name="NamespaceURI"><xs:sequence><xs:element name="schemeIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="NamespaceURI" nillable="true" type="tns:NamespaceURI"/><xs:complexType name="ArrayOfAccessAttachmentFolderDocumentPropertyPropertyValue"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="AccessAttachmentFolderDocumentPropertyPropertyValue" nillable="true" type="tns:AccessAttachmentFolderDocumentPropertyPropertyValue"/></xs:sequence></xs:complexType><xs:element name="ArrayOfAccessAttachmentFolderDocumentPropertyPropertyValue" nillable="true" type="tns:ArrayOfAccessAttachmentFolderDocumentPropertyPropertyValue"/><xs:complexType name="AccessAttachmentFolderDocumentPropertyPropertyValue"><xs:sequence><xs:element name="dateTimeField" type="xs:dateTime"/><xs:element name="dateTimeFieldSpecified" type="xs:boolean"/><xs:element name="indicatorField" type="xs:boolean"/><xs:element name="indicatorFieldSpecified" type="xs:boolean"/><xs:element name="integerValueField" type="xs:int"/><xs:element name="integerValueFieldSpecified" type="xs:boolean"/><xs:element name="technicalIDField" nillable="true" type="xs:string"/><xs:element name="textField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="AccessAttachmentFolderDocumentPropertyPropertyValue" nillable="true" type="tns:AccessAttachmentFolderDocumentPropertyPropertyValue"/><xs:complexType name="SystemAdministrativeData"><xs:sequence><xs:element name="creationDateTimeField" type="xs:dateTime"/><xs:element name="creationIdentityUUIDField" nillable="true" type="tns:UUID"/><xs:element name="lastChangeDateTimeField" type="xs:dateTime"/><xs:element name="lastChangeDateTimeFieldSpecified" type="xs:boolean"/><xs:element name="lastChangeIdentityUUIDField" nillable="true" type="tns:UUID"/></xs:sequence></xs:complexType><xs:element name="SystemAdministrativeData" nillable="true" type="tns:SystemAdministrativeData"/><xs:complexType name="DocumentTypeCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="listAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="DocumentTypeCode" nillable="true" type="tns:DocumentTypeCode"/><xs:complexType name="ArrayOfSalesOrderByElementsResponseBusinessTransactionDocumentReference"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="SalesOrderByElementsResponseBusinessTransactionDocumentReference" nillable="true" type="tns:SalesOrderByElementsResponseBusinessTransactionDocumentReference"/></xs:sequence></xs:complexType><xs:element name="ArrayOfSalesOrderByElementsResponseBusinessTransactionDocumentReference" nillable="true" type="tns:ArrayOfSalesOrderByElementsResponseBusinessTransactionDocumentReference"/><xs:complexType name="SalesOrderByElementsResponseBusinessTransactionDocumentReference"><xs:sequence><xs:element name="businessTransactionDocumentReferenceField" nillable="true" type="tns:BusinessTransactionDocumentReference"/><xs:element name="businessTransactionDocumentRelationshipRoleCodeField" nillable="true" type="xs:string"/><xs:element name="dataProviderIndicatorField" type="xs:boolean"/><xs:element name="dataProviderIndicatorFieldSpecified" type="xs:boolean"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponseBusinessTransactionDocumentReference" nillable="true" type="tns:SalesOrderByElementsResponseBusinessTransactionDocumentReference"/><xs:complexType name="BusinessTransactionDocumentReference"><xs:sequence><xs:element name="idField" nillable="true" type="tns:BusinessTransactionDocumentID"/><xs:element name="itemIDField" nillable="true" type="xs:string"/><xs:element name="itemTypeCodeField" nillable="true" type="xs:string"/><xs:element name="itemUUIDField" nillable="true" type="tns:UUID"/><xs:element name="typeCodeField" nillable="true" type="tns:BusinessTransactionDocumentTypeCode"/><xs:element name="uUIDField" nillable="true" type="tns:UUID"/></xs:sequence></xs:complexType><xs:element name="BusinessTransactionDocumentReference" nillable="true" type="tns:BusinessTransactionDocumentReference"/><xs:complexType name="BusinessTransactionDocumentID"><xs:sequence><xs:element name="schemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="schemeAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="schemeAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="schemeIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="BusinessTransactionDocumentID" nillable="true" type="tns:BusinessTransactionDocumentID"/><xs:complexType name="BusinessTransactionDocumentTypeCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="BusinessTransactionDocumentTypeCode" nillable="true" type="tns:BusinessTransactionDocumentTypeCode"/><xs:complexType name="SalesOrderByElementsResponseCashDiscountTerms"><xs:sequence><xs:element name="codeField" nillable="true" type="tns:CashDiscountTermsCode"/><xs:element name="paymentBaselineDateField" type="xs:dateTime"/><xs:element name="paymentBaselineDateFieldSpecified" type="xs:boolean"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponseCashDiscountTerms" nillable="true" type="tns:SalesOrderByElementsResponseCashDiscountTerms"/><xs:complexType name="CashDiscountTermsCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="listAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="CashDiscountTermsCode" nillable="true" type="tns:CashDiscountTermsCode"/><xs:complexType name="SalesOrderByElementsResponseDeliveryTerms"><xs:sequence><xs:element name="completeDeliveryRequestedIndicatorField" type="xs:boolean"/><xs:element name="completeDeliveryRequestedIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="deliveryPriorityCodeField" nillable="true" type="xs:string"/><xs:element name="incotermsField" nillable="true" type="tns:Incoterms"/><xs:element name="partialDeliveryControlCodeField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponseDeliveryTerms" nillable="true" type="tns:SalesOrderByElementsResponseDeliveryTerms"/><xs:complexType name="Incoterms"><xs:sequence><xs:element name="classificationCodeField" nillable="true" type="xs:string"/><xs:element name="transferLocationNameField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="Incoterms" nillable="true" type="tns:Incoterms"/><xs:complexType name="SalesOrderByElementsResponseInvoiceTerms"><xs:sequence><xs:element name="invoicingBlockingReasonCodeField" nillable="true" type="xs:string"/><xs:element name="proposedInvoiceDateField" type="xs:dateTime"/><xs:element name="proposedInvoiceDateFieldSpecified" type="xs:boolean"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponseInvoiceTerms" nillable="true" type="tns:SalesOrderByElementsResponseInvoiceTerms"/><xs:complexType name="ArrayOfSalesOrderByElementsResponseItem"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="SalesOrderByElementsResponseItem" nillable="true" type="tns:SalesOrderByElementsResponseItem"/></xs:sequence></xs:complexType><xs:element name="ArrayOfSalesOrderByElementsResponseItem" nillable="true" type="tns:ArrayOfSalesOrderByElementsResponseItem"/><xs:complexType name="SalesOrderByElementsResponseItem"><xs:sequence><xs:element name="buyerIDField" nillable="true" type="xs:string"/><xs:element name="descriptionField" nillable="true" type="tns:SHORT_Description"/><xs:element name="fulfilmentPartyCategoryCodeField" nillable="true" type="tns:FulfilmentPartyCategoryCode"/><xs:element name="idField" nillable="true" type="xs:string"/><xs:element name="itemAccountingCodingBlockDistributionField" nillable="true" type="tns:SalesOrderByElementsResponseItemAccountingCodingBlockDistribution"/><xs:element name="itemAttachmentFolderField" nillable="true" type="tns:AccessAttachmentFolder"/><xs:element name="itemBusinessTransactionDocumentReferenceField" nillable="true" type="tns:ArrayOfSalesOrderByElementsResponseBusinessTransactionDocumentReference"/><xs:element name="itemDeliveryTermsField" nillable="true" type="tns:SalesOrderByElementsResponseItemDeliveryTerms"/><xs:element name="itemProductField" nillable="true" type="tns:SalesOrderByElementsResponseItemProduct"/><xs:element name="itemSalesTermsField" nillable="true" type="tns:SalesOrderByElementsResponseItemSalesTerms"/><xs:element name="itemScheduleLineField" nillable="true" type="tns:ArrayOfSalesOrderByElementsResponseItemScheduleLine"/><xs:element name="itemServiceTermsField" nillable="true" type="tns:SalesOrderByElementsResponseItemServiceTerms"/><xs:element name="itemTextCollectionField" nillable="true" type="tns:ArrayOfSalesOrderByElementsResponseTextCollectionText"/><xs:element name="postingDateField" type="xs:dateTime"/><xs:element name="postingDateFieldSpecified" type="xs:boolean"/><xs:element name="priceAndTaxCalculationItemField" nillable="true" type="tns:SalesOrderByElementsResponsePriceAndTaxCalculationItem"/><xs:element name="processingTypeCodeField" nillable="true" type="xs:string"/><xs:element name="productRecipientItemPartyField" nillable="true" type="tns:SalesOrderByElementsResponseParty"/><xs:element name="servicePerformerItemPartyField" nillable="true" type="tns:SalesOrderByElementsResponseParty"/><xs:element name="shipFromItemLocationField" nillable="true" type="tns:SalesOrderByElementsResponseItemLocation"/><xs:element name="statusField" nillable="true" type="tns:SalesOrderByElementsResponseItemStatus"/><xs:element name="vendorItemPartyField" nillable="true" type="tns:SalesOrderByElementsResponseParty"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponseItem" nillable="true" type="tns:SalesOrderByElementsResponseItem"/><xs:complexType name="SHORT_Description"><xs:sequence><xs:element name="languageCodeField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="SHORT_Description" nillable="true" type="tns:SHORT_Description"/><xs:complexType name="FulfilmentPartyCategoryCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="FulfilmentPartyCategoryCode" nillable="true" type="tns:FulfilmentPartyCategoryCode"/><xs:complexType name="SalesOrderByElementsResponseItemAccountingCodingBlockDistribution"><xs:sequence><xs:element name="accountingCodingBlockAssignmentProjectTaskKeyField" nillable="true" type="tns:ProjectTaskKey"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponseItemAccountingCodingBlockDistribution" nillable="true" type="tns:SalesOrderByElementsResponseItemAccountingCodingBlockDistribution"/><xs:complexType name="ProjectTaskKey"><xs:sequence><xs:element name="taskIDField" nillable="true" type="tns:ProjectElementID"/></xs:sequence></xs:complexType><xs:element name="ProjectTaskKey" nillable="true" type="tns:ProjectTaskKey"/><xs:complexType name="ProjectElementID"><xs:sequence><xs:element name="schemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="schemeAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="schemeAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="schemeIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="ProjectElementID" nillable="true" type="tns:ProjectElementID"/><xs:complexType name="SalesOrderByElementsResponseItemDeliveryTerms"><xs:sequence><xs:element name="deliveryPriorityCodeField" nillable="true" type="xs:string"/><xs:element name="incotermsField" nillable="true" type="tns:Incoterms"/><xs:element name="partialDeliveryControlCodeField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponseItemDeliveryTerms" nillable="true" type="tns:SalesOrderByElementsResponseItemDeliveryTerms"/><xs:complexType name="SalesOrderByElementsResponseItemProduct"><xs:sequence><xs:element name="productBuyerIDField" nillable="true" type="xs:string"/><xs:element name="productIDField" nillable="true" type="tns:NOCONVERSION_ProductID"/><xs:element name="productInternalIDField" nillable="true" type="tns:ProductInternalID"/><xs:element name="productRequirementSpecificationKeyField" nillable="true" type="tns:RequirementSpecificationKey"/><xs:element name="productStandardIDField" nillable="true" type="tns:ProductStandardID"/><xs:element name="unitOfMeasureField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponseItemProduct" nillable="true" type="tns:SalesOrderByElementsResponseItemProduct"/><xs:complexType name="NOCONVERSION_ProductID"><xs:sequence><xs:element name="schemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="schemeAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="schemeAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="schemeAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="schemeIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="NOCONVERSION_ProductID" nillable="true" type="tns:NOCONVERSION_ProductID"/><xs:complexType name="ProductInternalID"><xs:sequence><xs:element name="schemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="schemeIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="ProductInternalID" nillable="true" type="tns:ProductInternalID"/><xs:complexType name="RequirementSpecificationKey"><xs:sequence><xs:element name="requirementSpecificationIDField" nillable="true" type="tns:RequirementSpecificationID"/><xs:element name="requirementSpecificationVersionIDField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="RequirementSpecificationKey" nillable="true" type="tns:RequirementSpecificationKey"/><xs:complexType name="RequirementSpecificationID"><xs:sequence><xs:element name="schemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="schemeIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="RequirementSpecificationID" nillable="true" type="tns:RequirementSpecificationID"/><xs:complexType name="ProductStandardID"><xs:sequence><xs:element name="schemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="schemeIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="ProductStandardID" nillable="true" type="tns:ProductStandardID"/><xs:complexType name="SalesOrderByElementsResponseItemSalesTerms"><xs:sequence><xs:element name="cancellationReasonCodeField" nillable="true" type="tns:CancellationReasonCode"/><xs:element name="industrialSectorCodeField" nillable="true" type="tns:IndustrialSectorCode"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponseItemSalesTerms" nillable="true" type="tns:SalesOrderByElementsResponseItemSalesTerms"/><xs:complexType name="CancellationReasonCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="listAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="CancellationReasonCode" nillable="true" type="tns:CancellationReasonCode"/><xs:complexType name="IndustrialSectorCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="listAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="IndustrialSectorCode" nillable="true" type="tns:IndustrialSectorCode"/><xs:complexType name="ArrayOfSalesOrderByElementsResponseItemScheduleLine"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="SalesOrderByElementsResponseItemScheduleLine" nillable="true" type="tns:SalesOrderByElementsResponseItemScheduleLine"/></xs:sequence></xs:complexType><xs:element name="ArrayOfSalesOrderByElementsResponseItemScheduleLine" nillable="true" type="tns:ArrayOfSalesOrderByElementsResponseItemScheduleLine"/><xs:complexType name="SalesOrderByElementsResponseItemScheduleLine"><xs:sequence><xs:element name="dateTimePeriodField" nillable="true" type="tns:UPPEROPEN_LOCALNORMALISED_DateTimePeriod"/><xs:element name="idField" nillable="true" type="xs:string"/><xs:element name="productAvailabilityConfirmationCommitmentCodeField" nillable="true" type="tns:ProductAvailabilityConfirmationCommitmentCode"/><xs:element name="quantityField" nillable="true" type="tns:Quantity"/><xs:element name="quantityTypeCodeField" nillable="true" type="tns:QuantityTypeCode"/><xs:element name="relatedIDField" nillable="true" type="xs:string"/><xs:element name="typeCodeField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponseItemScheduleLine" nillable="true" type="tns:SalesOrderByElementsResponseItemScheduleLine"/><xs:complexType name="UPPEROPEN_LOCALNORMALISED_DateTimePeriod"><xs:sequence><xs:element name="endDateTimeField" nillable="true" type="tns:LOCALNORMALISED_DateTime1"/><xs:element name="startDateTimeField" nillable="true" type="tns:LOCALNORMALISED_DateTime1"/></xs:sequence></xs:complexType><xs:element name="UPPEROPEN_LOCALNORMALISED_DateTimePeriod" nillable="true" type="tns:UPPEROPEN_LOCALNORMALISED_DateTimePeriod"/><xs:complexType name="LOCALNORMALISED_DateTime1"><xs:sequence><xs:element name="timeZoneCodeField" nillable="true" type="xs:string"/><xs:element name="valueField" type="xs:dateTime"/></xs:sequence></xs:complexType><xs:element name="LOCALNORMALISED_DateTime1" nillable="true" type="tns:LOCALNORMALISED_DateTime1"/><xs:complexType name="ProductAvailabilityConfirmationCommitmentCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="ProductAvailabilityConfirmationCommitmentCode" nillable="true" type="tns:ProductAvailabilityConfirmationCommitmentCode"/><xs:complexType name="Quantity"><xs:sequence><xs:element name="unitCodeField" nillable="true" type="xs:string"/><xs:element name="valueField" type="xs:decimal"/></xs:sequence></xs:complexType><xs:element name="Quantity" nillable="true" type="tns:Quantity"/><xs:complexType name="QuantityTypeCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="listAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="QuantityTypeCode" nillable="true" type="tns:QuantityTypeCode"/><xs:complexType name="SalesOrderByElementsResponseItemServiceTerms"><xs:sequence><xs:element name="confirmationRelevanceIndicatorField" type="xs:boolean"/><xs:element name="confirmationRelevanceIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="employeeTimeConfirmationRelevanceIndicatorField" type="xs:boolean"/><xs:element name="employeeTimeConfirmationRelevanceIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="expenseReportingConfirmationRelevanceIndicatorField" type="xs:boolean"/><xs:element name="expenseReportingConfirmationRelevanceIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="projectTaskIDField" nillable="true" type="tns:ProjectElementID"/><xs:element name="resourceIDField" nillable="true" type="tns:ResourceID"/><xs:element name="servicePlannedDurationField" nillable="true" type="xs:string"/><xs:element name="serviceWorkingConditionsCodeField" nillable="true" type="tns:ServiceWorkingConditionsCode"/><xs:element name="warrantyKeyField" nillable="true" type="tns:ProductKey"/><xs:element name="warrantyValidityPeriodField" nillable="true" type="tns:CLOSED_DatePeriod"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponseItemServiceTerms" nillable="true" type="tns:SalesOrderByElementsResponseItemServiceTerms"/><xs:complexType name="ResourceID"><xs:sequence><xs:element name="schemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="schemeIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="ResourceID" nillable="true" type="tns:ResourceID"/><xs:complexType name="ServiceWorkingConditionsCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="ServiceWorkingConditionsCode" nillable="true" type="tns:ServiceWorkingConditionsCode"/><xs:complexType name="ProductKey"><xs:sequence><xs:element name="productIDField" nillable="true" type="tns:ProductID"/><xs:element name="productIdentifierTypeCodeField" nillable="true" type="xs:string"/><xs:element name="productTypeCodeField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="ProductKey" nillable="true" type="tns:ProductKey"/><xs:complexType name="ProductID"><xs:sequence><xs:element name="schemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="schemeAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="schemeAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="schemeAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="schemeIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="ProductID" nillable="true" type="tns:ProductID"/><xs:complexType name="CLOSED_DatePeriod"><xs:sequence><xs:element name="endDateField" type="xs:dateTime"/><xs:element name="startDateField" type="xs:dateTime"/></xs:sequence></xs:complexType><xs:element name="CLOSED_DatePeriod" nillable="true" type="tns:CLOSED_DatePeriod"/><xs:complexType name="ArrayOfSalesOrderByElementsResponseTextCollectionText"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="SalesOrderByElementsResponseTextCollectionText" nillable="true" type="tns:SalesOrderByElementsResponseTextCollectionText"/></xs:sequence></xs:complexType><xs:element name="ArrayOfSalesOrderByElementsResponseTextCollectionText" nillable="true" type="tns:ArrayOfSalesOrderByElementsResponseTextCollectionText"/><xs:complexType name="SalesOrderByElementsResponseTextCollectionText"><xs:sequence><xs:element name="contentTextField" nillable="true" type="xs:string"/><xs:element name="creationDateTimeField" type="xs:dateTime"/><xs:element name="creationDateTimeFieldSpecified" type="xs:boolean"/><xs:element name="typeCodeField" nillable="true" type="tns:TextCollectionTextTypeCode"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponseTextCollectionText" nillable="true" type="tns:SalesOrderByElementsResponseTextCollectionText"/><xs:complexType name="TextCollectionTextTypeCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="listAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="TextCollectionTextTypeCode" nillable="true" type="tns:TextCollectionTextTypeCode"/><xs:complexType name="SalesOrderByElementsResponsePriceAndTaxCalculationItem"><xs:sequence><xs:element name="countryCodeField" nillable="true" type="xs:string"/><xs:element name="itemMainDiscountField" nillable="true" type="tns:SalesOrderByElementsResponsePriceAndTaxCalculationItemMainPriceComponent"/><xs:element name="itemMainPriceField" nillable="true" type="tns:SalesOrderByElementsResponsePriceAndTaxCalculationItemMainPriceComponent"/><xs:element name="itemMainSurchargeField" nillable="true" type="tns:SalesOrderByElementsResponsePriceAndTaxCalculationItemMainPriceComponent"/><xs:element name="itemMainTotalField" nillable="true" type="tns:SalesOrderByElementsResponsePriceAndTaxCalculationItemMainPriceComponent"/><xs:element name="itemPriceComponentField" nillable="true" type="tns:ArrayOfSalesOrderByElementsResponsePriceAndTaxCalculationItemPriceComponent"/><xs:element name="itemProductTaxDetailsField" nillable="true" type="tns:ArrayOfSalesOrderByElementsResponsePriceAndTaxCalculationItemProductTaxDetails"/><xs:element name="itemTaxationTermsField" nillable="true" type="tns:SalesOrderByElementsResponsePriceAndTaxCalculationItemItemTaxationTerms"/><xs:element name="itemWithholdingTaxDetailsField" nillable="true" type="tns:ArrayOfSalesOrderByElementsResponsePriceAndTaxCalculationItemItemProductTaxDetails"/><xs:element name="statusField" nillable="true" type="tns:PriceAndTaxCalculationItemStatus"/><xs:element name="taxJurisdictionCodeField" nillable="true" type="tns:TaxJurisdictionCode"/><xs:element name="taxRegionCodeField" nillable="true" type="tns:RegionCode"/><xs:element name="taxationCharacteristicsCodeField" nillable="true" type="tns:ProductTaxationCharacteristicsCode"/><xs:element name="taxationCharacteristicsDeterminationMethodCodeField" nillable="true" type="xs:string"/><xs:element name="withholdingTaxationCharacteristicsCodeField" nillable="true" type="tns:WithholdingTaxationCharacteristicsCode"/><xs:element name="withholdingTaxationCharacteristicsDeterminationMethodCodeField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponsePriceAndTaxCalculationItem" nillable="true" type="tns:SalesOrderByElementsResponsePriceAndTaxCalculationItem"/><xs:complexType name="SalesOrderByElementsResponsePriceAndTaxCalculationItemMainPriceComponent"><xs:sequence><xs:element name="calculatedAmountField" nillable="true" type="tns:Amount"/><xs:element name="calculationBasisField" nillable="true" type="tns:PriceComponentCalculationBasis"/><xs:element name="categoryCodeField" nillable="true" type="tns:PriceSpecificationElementCategoryCode"/><xs:element name="descriptionField" nillable="true" type="tns:SHORT_Description"/><xs:element name="descriptionManuallyChangedIndicatorField" type="xs:boolean"/><xs:element name="descriptionManuallyChangedIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="effectiveIndicatorField" type="xs:boolean"/><xs:element name="effectiveIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="fixationCodeField" nillable="true" type="xs:string"/><xs:element name="groupedIndicatorField" type="xs:boolean"/><xs:element name="groupedIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="inactivityReasonCodeField" nillable="true" type="xs:string"/><xs:element name="manuallyChangedIndicatorField" type="xs:boolean"/><xs:element name="manuallyChangedIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="originCodeField" nillable="true" type="xs:string"/><xs:element name="purposeCodeField" nillable="true" type="tns:PriceSpecificationElementPurposeCode"/><xs:element name="rateBaseQuantityTypeCodeField" nillable="true" type="tns:QuantityTypeCode"/><xs:element name="rateField" nillable="true" type="tns:Rate"/><xs:element name="roundingDifferenceAmountField" nillable="true" type="tns:Amount"/><xs:element name="typeCodeField" nillable="true" type="tns:PriceSpecificationElementTypeCode"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponsePriceAndTaxCalculationItemMainPriceComponent" nillable="true" type="tns:SalesOrderByElementsResponsePriceAndTaxCalculationItemMainPriceComponent"/><xs:complexType name="Amount"><xs:sequence><xs:element name="currencyCodeField" nillable="true" type="xs:string"/><xs:element name="valueField" type="xs:decimal"/></xs:sequence></xs:complexType><xs:element name="Amount" nillable="true" type="tns:Amount"/><xs:complexType name="PriceComponentCalculationBasis"><xs:sequence><xs:element name="adaptationFactorDecimalValueField" type="xs:decimal"/><xs:element name="adaptationFactorDecimalValueFieldSpecified" type="xs:boolean"/><xs:element name="amountField" nillable="true" type="tns:Amount"/><xs:element name="baseCodeField" nillable="true" type="xs:string"/><xs:element name="quantityField" nillable="true" type="tns:Quantity"/><xs:element name="quantityTypeCodeField" nillable="true" type="tns:QuantityTypeCode"/></xs:sequence></xs:complexType><xs:element name="PriceComponentCalculationBasis" nillable="true" type="tns:PriceComponentCalculationBasis"/><xs:complexType name="PriceSpecificationElementCategoryCode"><xs:sequence><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="PriceSpecificationElementCategoryCode" nillable="true" type="tns:PriceSpecificationElementCategoryCode"/><xs:complexType name="PriceSpecificationElementPurposeCode"><xs:sequence><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="PriceSpecificationElementPurposeCode" nillable="true" type="tns:PriceSpecificationElementPurposeCode"/><xs:complexType name="Rate"><xs:sequence><xs:element name="baseCurrencyCodeField" nillable="true" type="xs:string"/><xs:element name="baseDecimalValueField" type="xs:decimal"/><xs:element name="baseMeasureUnitCodeField" nillable="true" type="xs:string"/><xs:element name="currencyCodeField" nillable="true" type="xs:string"/><xs:element name="decimalValueField" type="xs:decimal"/><xs:element name="measureUnitCodeField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="Rate" nillable="true" type="tns:Rate"/><xs:complexType name="PriceSpecificationElementTypeCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="listAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="PriceSpecificationElementTypeCode" nillable="true" type="tns:PriceSpecificationElementTypeCode"/><xs:complexType name="ArrayOfSalesOrderByElementsResponsePriceAndTaxCalculationItemPriceComponent"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="SalesOrderByElementsResponsePriceAndTaxCalculationItemPriceComponent" nillable="true" type="tns:SalesOrderByElementsResponsePriceAndTaxCalculationItemPriceComponent"/></xs:sequence></xs:complexType><xs:element name="ArrayOfSalesOrderByElementsResponsePriceAndTaxCalculationItemPriceComponent" nillable="true" type="tns:ArrayOfSalesOrderByElementsResponsePriceAndTaxCalculationItemPriceComponent"/><xs:complexType name="SalesOrderByElementsResponsePriceAndTaxCalculationItemPriceComponent"><xs:sequence><xs:element name="calculatedAmountField" nillable="true" type="tns:Amount"/><xs:element name="calculationBasisField" nillable="true" type="tns:PriceComponentCalculationBasis"/><xs:element name="categoryCodeField" nillable="true" type="tns:PriceSpecificationElementCategoryCode"/><xs:element name="descriptionField" nillable="true" type="tns:SHORT_Description"/><xs:element name="descriptionManuallyChangedIndicatorField" type="xs:boolean"/><xs:element name="descriptionManuallyChangedIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="effectiveIndicatorField" type="xs:boolean"/><xs:element name="effectiveIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="fixationCodeField" nillable="true" type="xs:string"/><xs:element name="groupedIndicatorField" type="xs:boolean"/><xs:element name="groupedIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="inactivityReasonCodeField" nillable="true" type="xs:string"/><xs:element name="majorLevelOrdinalNumberValueField" type="xs:int"/><xs:element name="majorLevelOrdinalNumberValueFieldSpecified" type="xs:boolean"/><xs:element name="manuallyChangedIndicatorField" type="xs:boolean"/><xs:element name="manuallyChangedIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="minorLevelOrdinalNumberValueField" type="xs:int"/><xs:element name="minorLevelOrdinalNumberValueFieldSpecified" type="xs:boolean"/><xs:element name="originCodeField" nillable="true" type="xs:string"/><xs:element name="purposeCodeField" nillable="true" type="tns:PriceSpecificationElementPurposeCode"/><xs:element name="rateBaseQuantityTypeCodeField" nillable="true" type="tns:QuantityTypeCode"/><xs:element name="rateField" nillable="true" type="tns:Rate"/><xs:element name="roundingDifferenceAmountField" nillable="true" type="tns:Amount"/><xs:element name="typeCodeField" nillable="true" type="tns:PriceSpecificationElementTypeCode"/><xs:element name="uUIDField" nillable="true" type="tns:UUID"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponsePriceAndTaxCalculationItemPriceComponent" nillable="true" type="tns:SalesOrderByElementsResponsePriceAndTaxCalculationItemPriceComponent"/><xs:complexType name="ArrayOfSalesOrderByElementsResponsePriceAndTaxCalculationItemProductTaxDetails"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="SalesOrderByElementsResponsePriceAndTaxCalculationItemProductTaxDetails" nillable="true" type="tns:SalesOrderByElementsResponsePriceAndTaxCalculationItemProductTaxDetails"/></xs:sequence></xs:complexType><xs:element name="ArrayOfSalesOrderByElementsResponsePriceAndTaxCalculationItemProductTaxDetails" nillable="true" type="tns:ArrayOfSalesOrderByElementsResponsePriceAndTaxCalculationItemProductTaxDetails"/><xs:complexType name="SalesOrderByElementsResponsePriceAndTaxCalculationItemProductTaxDetails"><xs:sequence><xs:element name="productTaxField" nillable="true" type="tns:ProductTax"/><xs:element name="transactionCurrencyProductTaxField" nillable="true" type="tns:ProductTax"/><xs:element name="uUIDField" nillable="true" type="tns:UUID"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponsePriceAndTaxCalculationItemProductTaxDetails" nillable="true" type="tns:SalesOrderByElementsResponsePriceAndTaxCalculationItemProductTaxDetails"/><xs:complexType name="ProductTax"><xs:sequence><xs:element name="amountField" nillable="true" type="tns:Amount"/><xs:element name="baseAmountField" nillable="true" type="tns:Amount"/><xs:element name="baseQuantityField" nillable="true" type="tns:Quantity"/><xs:element name="baseQuantityTypeCodeField" nillable="true" type="tns:QuantityTypeCode"/><xs:element name="businessTransactionDocumentItemGroupIDField" nillable="true" type="xs:string"/><xs:element name="countryCodeField" nillable="true" type="xs:string"/><xs:element name="currencyCodeField" nillable="true" type="xs:string"/><xs:element name="deductibilityCodeField" nillable="true" type="tns:TaxDeductibilityCode"/><xs:element name="deductibleAmountField" nillable="true" type="tns:Amount"/><xs:element name="deferredIndicatorField" type="xs:boolean"/><xs:element name="deferredIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="dueCategoryCodeField" nillable="true" type="xs:string"/><xs:element name="europeanCommunityVATTriangulationIndicatorField" type="xs:boolean"/><xs:element name="europeanCommunityVATTriangulationIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="eventTypeCodeField" nillable="true" type="tns:ProductTaxEventTypeCode"/><xs:element name="exchangeRateField" nillable="true" type="tns:ExchangeRate"/><xs:element name="exemptionField" nillable="true" type="tns:TaxExemption"/><xs:element name="followUpExemptionField" nillable="true" type="tns:TaxExemption"/><xs:element name="internalAmountField" nillable="true" type="tns:Amount"/><xs:element name="jurisdictionCodeField" nillable="true" type="tns:TaxJurisdictionCode"/><xs:element name="jurisdictionSubdivisionCodeField" nillable="true" type="tns:TaxJurisdictionSubdivisionCode"/><xs:element name="jurisdictionSubdivisionTypeCodeField" nillable="true" type="tns:TaxJurisdictionSubdivisionTypeCode"/><xs:element name="legallyRequiredPhraseField" nillable="true" type="xs:string"/><xs:element name="nonDeductibleAmountField" nillable="true" type="tns:Amount"/><xs:element name="nonDeductiblePercentField" type="xs:decimal"/><xs:element name="nonDeductiblePercentFieldSpecified" type="xs:boolean"/><xs:element name="percentField" type="xs:decimal"/><xs:element name="percentFieldSpecified" type="xs:boolean"/><xs:element name="rateField" nillable="true" type="tns:Rate"/><xs:element name="rateTypeCodeField" nillable="true" type="tns:TaxRateTypeCode"/><xs:element name="regionCodeField" nillable="true" type="tns:RegionCode"/><xs:element name="statisticRelevanceIndicatorField" type="xs:boolean"/><xs:element name="statisticRelevanceIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="typeCodeField" nillable="true" type="tns:TaxTypeCode"/></xs:sequence></xs:complexType><xs:element name="ProductTax" nillable="true" type="tns:ProductTax"/><xs:complexType name="TaxDeductibilityCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="listAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="TaxDeductibilityCode" nillable="true" type="tns:TaxDeductibilityCode"/><xs:complexType name="ProductTaxEventTypeCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="ProductTaxEventTypeCode" nillable="true" type="tns:ProductTaxEventTypeCode"/><xs:complexType name="ExchangeRate"><xs:sequence><xs:element name="quotationDateTimeField" type="xs:dateTime"/><xs:element name="quotationDateTimeFieldSpecified" type="xs:boolean"/><xs:element name="quotedCurrencyField" nillable="true" type="xs:string"/><xs:element name="rateField" type="xs:decimal"/><xs:element name="unitCurrencyField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="ExchangeRate" nillable="true" type="tns:ExchangeRate"/><xs:complexType name="TaxExemption"><xs:sequence><xs:element name="amountField" nillable="true" type="tns:Amount"/><xs:element name="certificateIDField" nillable="true" type="tns:TaxExemptionCertificateID"/><xs:element name="internalCertificateIDField" nillable="true" type="tns:TaxExemptionCertificateID"/><xs:element name="percentField" type="xs:decimal"/><xs:element name="percentFieldSpecified" type="xs:boolean"/><xs:element name="reasonCodeField" nillable="true" type="tns:TaxExemptionReasonCode"/><xs:element name="validityPeriodField" nillable="true" type="tns:DatePeriod"/></xs:sequence></xs:complexType><xs:element name="TaxExemption" nillable="true" type="tns:TaxExemption"/><xs:complexType name="TaxExemptionCertificateID"><xs:sequence><xs:element name="schemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="schemeAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="schemeAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="schemeAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="TaxExemptionCertificateID" nillable="true" type="tns:TaxExemptionCertificateID"/><xs:complexType name="TaxExemptionReasonCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="TaxExemptionReasonCode" nillable="true" type="tns:TaxExemptionReasonCode"/><xs:complexType name="DatePeriod"><xs:sequence><xs:element name="durationField" nillable="true" type="xs:string"/><xs:element name="endDateField" type="xs:dateTime"/><xs:element name="endDateFieldSpecified" type="xs:boolean"/><xs:element name="startDateField" type="xs:dateTime"/><xs:element name="startDateFieldSpecified" type="xs:boolean"/></xs:sequence></xs:complexType><xs:element name="DatePeriod" nillable="true" type="tns:DatePeriod"/><xs:complexType name="TaxJurisdictionSubdivisionCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="TaxJurisdictionSubdivisionCode" nillable="true" type="tns:TaxJurisdictionSubdivisionCode"/><xs:complexType name="TaxJurisdictionSubdivisionTypeCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="TaxJurisdictionSubdivisionTypeCode" nillable="true" type="tns:TaxJurisdictionSubdivisionTypeCode"/><xs:complexType name="TaxRateTypeCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="TaxRateTypeCode" nillable="true" type="tns:TaxRateTypeCode"/><xs:complexType name="TaxTypeCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="TaxTypeCode" nillable="true" type="tns:TaxTypeCode"/><xs:complexType name="SalesOrderByElementsResponsePriceAndTaxCalculationItemItemTaxationTerms"><xs:sequence><xs:element name="buyerCountryCodeField" nillable="true" type="xs:string"/><xs:element name="buyerTaxIDField" nillable="true" type="tns:PartyTaxID"/><xs:element name="buyerTaxIdentificationNumberTypeCodeField" nillable="true" type="tns:TaxIdentificationNumberTypeCode"/><xs:element name="europeanCommunityVATTriangulationIndicatorField" type="xs:boolean"/><xs:element name="europeanCommunityVATTriangulationIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="followUpTaxExemptionCertificateIDField" nillable="true" type="tns:TaxExemptionCertificateID"/><xs:element name="productTaxStandardClassificationCodeField" nillable="true" type="tns:ProductTaxStandardClassificationCode"/><xs:element name="productTaxStandardClassificationSystemCodeField" nillable="true" type="tns:ProductTaxStandardClassificationSystemCode"/><xs:element name="sellerCountryCodeField" nillable="true" type="xs:string"/><xs:element name="sellerTaxIDField" nillable="true" type="tns:PartyTaxID"/><xs:element name="sellerTaxIdentificationNumberTypeCodeField" nillable="true" type="tns:TaxIdentificationNumberTypeCode"/><xs:element name="taxDateField" type="xs:dateTime"/><xs:element name="taxDateFieldSpecified" type="xs:boolean"/><xs:element name="taxDueDateField" type="xs:dateTime"/><xs:element name="taxDueDateFieldSpecified" type="xs:boolean"/><xs:element name="taxExemptionCertificateIDField" nillable="true" type="tns:TaxExemptionCertificateID"/><xs:element name="taxExemptionReasonCodeField" nillable="true" type="tns:TaxExemptionReasonCode"/><xs:element name="taxExemptionReasonCodeRelevanceIndicatorField" type="xs:boolean"/><xs:element name="taxExemptionReasonCodeRelevanceIndicatorFieldSpecified" type="xs:boolean"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponsePriceAndTaxCalculationItemItemTaxationTerms" nillable="true" type="tns:SalesOrderByElementsResponsePriceAndTaxCalculationItemItemTaxationTerms"/><xs:complexType name="PartyTaxID"><xs:sequence><xs:element name="schemeIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="PartyTaxID" nillable="true" type="tns:PartyTaxID"/><xs:complexType name="TaxIdentificationNumberTypeCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="TaxIdentificationNumberTypeCode" nillable="true" type="tns:TaxIdentificationNumberTypeCode"/><xs:complexType name="ProductTaxStandardClassificationCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="ProductTaxStandardClassificationCode" nillable="true" type="tns:ProductTaxStandardClassificationCode"/><xs:complexType name="ProductTaxStandardClassificationSystemCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="ProductTaxStandardClassificationSystemCode" nillable="true" type="tns:ProductTaxStandardClassificationSystemCode"/><xs:complexType name="ArrayOfSalesOrderByElementsResponsePriceAndTaxCalculationItemItemProductTaxDetails"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="SalesOrderByElementsResponsePriceAndTaxCalculationItemItemProductTaxDetails" nillable="true" type="tns:SalesOrderByElementsResponsePriceAndTaxCalculationItemItemProductTaxDetails"/></xs:sequence></xs:complexType><xs:element name="ArrayOfSalesOrderByElementsResponsePriceAndTaxCalculationItemItemProductTaxDetails" nillable="true" type="tns:ArrayOfSalesOrderByElementsResponsePriceAndTaxCalculationItemItemProductTaxDetails"/><xs:complexType name="SalesOrderByElementsResponsePriceAndTaxCalculationItemItemProductTaxDetails"><xs:sequence><xs:element name="transactionCurrencyWithholdingTaxField" nillable="true" type="tns:WithholdingTax"/><xs:element name="uUIDField" nillable="true" type="tns:UUID"/><xs:element name="withholdingTaxField" nillable="true" type="tns:WithholdingTax"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponsePriceAndTaxCalculationItemItemProductTaxDetails" nillable="true" type="tns:SalesOrderByElementsResponsePriceAndTaxCalculationItemItemProductTaxDetails"/><xs:complexType name="WithholdingTax"><xs:sequence><xs:element name="amountField" nillable="true" type="tns:Amount"/><xs:element name="baseAmountField" nillable="true" type="tns:Amount"/><xs:element name="businessTransactionDocumentItemGroupIDField" nillable="true" type="xs:string"/><xs:element name="countryCodeField" nillable="true" type="xs:string"/><xs:element name="currencyCodeField" nillable="true" type="xs:string"/><xs:element name="eventTypeCodeField" nillable="true" type="tns:WithholdingTaxEventTypeCode"/><xs:element name="exchangeRateField" nillable="true" type="tns:ExchangeRate"/><xs:element name="excludedAmountField" nillable="true" type="tns:Amount"/><xs:element name="incomeTypeCodeField" nillable="true" type="tns:WithholdingTaxIncomeTypeCode"/><xs:element name="percentField" type="xs:decimal"/><xs:element name="percentFieldSpecified" type="xs:boolean"/><xs:element name="plannedIndicatorField" type="xs:boolean"/><xs:element name="plannedIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="rateTypeCodeField" nillable="true" type="tns:TaxRateTypeCode"/><xs:element name="regionCodeField" nillable="true" type="tns:RegionCode"/><xs:element name="statisticRelevanceIndicatorField" type="xs:boolean"/><xs:element name="statisticRelevanceIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="typeCodeField" nillable="true" type="tns:TaxTypeCode"/></xs:sequence></xs:complexType><xs:element name="WithholdingTax" nillable="true" type="tns:WithholdingTax"/><xs:complexType name="WithholdingTaxEventTypeCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="WithholdingTaxEventTypeCode" nillable="true" type="tns:WithholdingTaxEventTypeCode"/><xs:complexType name="WithholdingTaxIncomeTypeCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="listAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="WithholdingTaxIncomeTypeCode" nillable="true" type="tns:WithholdingTaxIncomeTypeCode"/><xs:complexType name="PriceAndTaxCalculationItemStatus"><xs:sequence><xs:element name="calculationStatusCodeField" type="tns:CalculationStatusCode"/></xs:sequence></xs:complexType><xs:element name="PriceAndTaxCalculationItemStatus" nillable="true" type="tns:PriceAndTaxCalculationItemStatus"/><xs:simpleType name="CalculationStatusCode"><xs:restriction base="xs:string"><xs:enumeration value="Item1"/><xs:enumeration value="Item2"/><xs:enumeration value="Item3"/><xs:enumeration value="Item4"/><xs:enumeration value="Item5"/><xs:enumeration value="Item6"/></xs:restriction></xs:simpleType><xs:element name="CalculationStatusCode" nillable="true" type="tns:CalculationStatusCode"/><xs:complexType name="ProductTaxationCharacteristicsCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="ProductTaxationCharacteristicsCode" nillable="true" type="tns:ProductTaxationCharacteristicsCode"/><xs:complexType name="WithholdingTaxationCharacteristicsCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="WithholdingTaxationCharacteristicsCode" nillable="true" type="tns:WithholdingTaxationCharacteristicsCode"/><xs:complexType name="SalesOrderByElementsResponseItemLocation"><xs:sequence><xs:element name="locationIDField" nillable="true" type="tns:LocationID"/><xs:element name="usedAddressField" nillable="true" type="tns:SalesOrderMaintainRequestPartyAddress"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponseItemLocation" nillable="true" type="tns:SalesOrderByElementsResponseItemLocation"/><xs:complexType name="LocationID"><xs:sequence><xs:element name="schemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="schemeAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="schemeAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="schemeAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="schemeIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="LocationID" nillable="true" type="tns:LocationID"/><xs:complexType name="SalesOrderByElementsResponseItemStatus"><xs:sequence><xs:element name="approvalStatusCodeField" type="tns:ApprovalStatusCode"/><xs:element name="approvalStatusCodeFieldSpecified" type="xs:boolean"/><xs:element name="cancellationStatusCodeField" type="tns:CancellationStatusCode"/><xs:element name="cancellationStatusCodeFieldSpecified" type="xs:boolean"/><xs:element name="consistencyStatusCodeField" type="tns:ConsistencyStatusCode"/><xs:element name="consistencyStatusCodeFieldSpecified" type="xs:boolean"/><xs:element name="customerOrderLifeCycleStatusCodeField" type="tns:CustomerOrderLifeCycleStatusCode"/><xs:element name="customerOrderLifeCycleStatusCodeFieldSpecified" type="xs:boolean"/><xs:element name="executionReleaseStatusCodeField" type="tns:ReleaseStatusCode"/><xs:element name="executionReleaseStatusCodeFieldSpecified" type="xs:boolean"/><xs:element name="fulfilmentDataCompletenessStatusCodeField" type="tns:DataCompletenessStatusCode"/><xs:element name="fulfilmentDataCompletenessStatusCodeFieldSpecified" type="xs:boolean"/><xs:element name="fulfilmentProcessingStatusCodeField" type="tns:ProcessingStatusCode"/><xs:element name="fulfilmentProcessingStatusCodeFieldSpecified" type="xs:boolean"/><xs:element name="generalDataCompletenessStatusCodeField" type="tns:DataCompletenessStatusCode"/><xs:element name="generalDataCompletenessStatusCodeFieldSpecified" type="xs:boolean"/><xs:element name="invoiceProcessingStatusCodeField" type="tns:ProcessingStatusCode"/><xs:element name="invoiceProcessingStatusCodeFieldSpecified" type="xs:boolean"/><xs:element name="invoicingDataCompletenessStatusCodeField" type="tns:DataCompletenessStatusCode"/><xs:element name="invoicingDataCompletenessStatusCodeFieldSpecified" type="xs:boolean"/><xs:element name="planningReleaseStatusCodeField" type="tns:ReleaseStatusCode"/><xs:element name="planningReleaseStatusCodeFieldSpecified" type="xs:boolean"/><xs:element name="pricingDataCompletenessStatusCodeField" type="tns:DataCompletenessStatusCode"/><xs:element name="pricingDataCompletenessStatusCodeFieldSpecified" type="xs:boolean"/><xs:element name="productAvailabilityConfirmationStatusCodeField" type="tns:ProductAvailabilityConfirmationStatusCode"/><xs:element name="productAvailabilityConfirmationStatusCodeFieldSpecified" type="xs:boolean"/><xs:element name="releaseStatusCodeField" type="tns:ReleaseStatusCode"/><xs:element name="releaseStatusCodeFieldSpecified" type="xs:boolean"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponseItemStatus" nillable="true" type="tns:SalesOrderByElementsResponseItemStatus"/><xs:simpleType name="ApprovalStatusCode"><xs:restriction base="xs:string"><xs:enumeration value="Item1"/><xs:enumeration value="Item2"/><xs:enumeration value="Item3"/><xs:enumeration value="Item4"/><xs:enumeration value="Item5"/><xs:enumeration value="Item6"/><xs:enumeration value="Item7"/></xs:restriction></xs:simpleType><xs:element name="ApprovalStatusCode" nillable="true" type="tns:ApprovalStatusCode"/><xs:simpleType name="CancellationStatusCode"><xs:restriction base="xs:string"><xs:enumeration value="Item1"/><xs:enumeration value="Item2"/><xs:enumeration value="Item3"/><xs:enumeration value="Item4"/><xs:enumeration value="Item5"/><xs:enumeration value="Item6"/></xs:restriction></xs:simpleType><xs:element name="CancellationStatusCode" nillable="true" type="tns:CancellationStatusCode"/><xs:simpleType name="ConsistencyStatusCode"><xs:restriction base="xs:string"><xs:enumeration value="Item1"/><xs:enumeration value="Item2"/><xs:enumeration value="Item3"/></xs:restriction></xs:simpleType><xs:element name="ConsistencyStatusCode" nillable="true" type="tns:ConsistencyStatusCode"/><xs:simpleType name="CustomerOrderLifeCycleStatusCode"><xs:restriction base="xs:string"><xs:enumeration value="Item4"/><xs:enumeration value="Item1"/><xs:enumeration value="Item2"/><xs:enumeration value="Item3"/></xs:restriction></xs:simpleType><xs:element name="CustomerOrderLifeCycleStatusCode" nillable="true" type="tns:CustomerOrderLifeCycleStatusCode"/><xs:simpleType name="ReleaseStatusCode"><xs:restriction base="xs:string"><xs:enumeration value="Item1"/><xs:enumeration value="Item2"/><xs:enumeration value="Item3"/><xs:enumeration value="Item4"/><xs:enumeration value="Item5"/><xs:enumeration value="Item6"/><xs:enumeration value="Item7"/></xs:restriction></xs:simpleType><xs:element name="ReleaseStatusCode" nillable="true" type="tns:ReleaseStatusCode"/><xs:simpleType name="DataCompletenessStatusCode"><xs:restriction base="xs:string"><xs:enumeration value="Item1"/><xs:enumeration value="Item2"/><xs:enumeration value="Item3"/></xs:restriction></xs:simpleType><xs:element name="DataCompletenessStatusCode" nillable="true" type="tns:DataCompletenessStatusCode"/><xs:simpleType name="ProcessingStatusCode"><xs:restriction base="xs:string"><xs:enumeration value="Item1"/><xs:enumeration value="Item2"/><xs:enumeration value="Item3"/><xs:enumeration value="Item4"/><xs:enumeration value="Item5"/></xs:restriction></xs:simpleType><xs:element name="ProcessingStatusCode" nillable="true" type="tns:ProcessingStatusCode"/><xs:simpleType name="ProductAvailabilityConfirmationStatusCode"><xs:restriction base="xs:string"><xs:enumeration value="Item1"/><xs:enumeration value="Item2"/><xs:enumeration value="Item3"/><xs:enumeration value="Item4"/></xs:restriction></xs:simpleType><xs:element name="ProductAvailabilityConfirmationStatusCode" nillable="true" type="tns:ProductAvailabilityConfirmationStatusCode"/><xs:complexType name="EXTENDED_Name"><xs:sequence><xs:element name="languageCodeField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="EXTENDED_Name" nillable="true" type="tns:EXTENDED_Name"/><xs:complexType name="SalesOrderByElementsResponsePaymentControl"><xs:sequence><xs:element name="bankChargeBearerCodeField" nillable="true" type="xs:string"/><xs:element name="creditCardPaymentField" nillable="true" type="tns:ArrayOfSalesOrderByElementsResponsePaymentControlCreditCardPayment"/><xs:element name="creditValueDateField" type="xs:dateTime"/><xs:element name="creditValueDateFieldSpecified" type="xs:boolean"/><xs:element name="debitValueDateField" type="xs:dateTime"/><xs:element name="debitValueDateFieldSpecified" type="xs:boolean"/><xs:element name="exchangeRateField" nillable="true" type="tns:ExchangeRate"/><xs:element name="externalPaymentField" nillable="true" type="tns:ArrayOfSalesOrderByElementsResponsePaymentControlExternalPayment"/><xs:element name="firstPaymentInstructionTypeCodeField" nillable="true" type="xs:string"/><xs:element name="fourthPaymentInstructionTypeCodeField" nillable="true" type="xs:string"/><xs:element name="noteField" nillable="true" type="tns:MEDIUM_Note"/><xs:element name="paymentAmountField" nillable="true" type="tns:Amount"/><xs:element name="paymentBlockField" nillable="true" type="tns:PaymentBlock"/><xs:element name="paymentFormCodeField" nillable="true" type="xs:string"/><xs:element name="paymentPriorityCodeField" nillable="true" type="xs:string"/><xs:element name="paymentProcessingBusinessPartnerIDField" nillable="true" type="xs:string"/><xs:element name="paymentProcessingBusinessPartnerUUIDField" nillable="true" type="tns:UUID"/><xs:element name="paymentProcessingCompanyIDField" nillable="true" type="xs:string"/><xs:element name="paymentProcessingCompanyUUIDField" nillable="true" type="tns:UUID"/><xs:element name="paymentReceivablesPayablesGroupIDField" nillable="true" type="xs:string"/><xs:element name="paymentReferenceIDField" nillable="true" type="xs:string"/><xs:element name="paymentReferenceTypeCodeField" nillable="true" type="xs:string"/><xs:element name="propertyMovementDirectionCodeField" nillable="true" type="xs:string"/><xs:element name="responsibleEmployeeIDField" nillable="true" type="xs:string"/><xs:element name="responsibleEmployeeUUIDField" nillable="true" type="tns:UUID"/><xs:element name="secondPaymentInstructionTypeCodeField" nillable="true" type="xs:string"/><xs:element name="singlePaymentIndicatorField" type="xs:boolean"/><xs:element name="singlePaymentIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="thirdPaymentInstructionTypeCodeField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponsePaymentControl" nillable="true" type="tns:SalesOrderByElementsResponsePaymentControl"/><xs:complexType name="ArrayOfSalesOrderByElementsResponsePaymentControlCreditCardPayment"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="SalesOrderByElementsResponsePaymentControlCreditCardPayment" nillable="true" type="tns:SalesOrderByElementsResponsePaymentControlCreditCardPayment"/></xs:sequence></xs:complexType><xs:element name="ArrayOfSalesOrderByElementsResponsePaymentControlCreditCardPayment" nillable="true" type="tns:ArrayOfSalesOrderByElementsResponsePaymentControlCreditCardPayment"/><xs:complexType name="SalesOrderByElementsResponsePaymentControlCreditCardPayment"><xs:sequence><xs:element name="amountField" nillable="true" type="tns:Amount"/><xs:element name="authorisationLimitAmountField" nillable="true" type="tns:Amount"/><xs:element name="authorisationRequiredIndicatorField" type="xs:boolean"/><xs:element name="authorisationRequiredIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="authorisationValueUnlimitedIndicatorField" type="xs:boolean"/><xs:element name="authorisationValueUnlimitedIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="businessPartnerPaymentCardDetailsKeyIDField" nillable="true" type="xs:string"/><xs:element name="clearingHouseAccountKeyIDField" nillable="true" type="tns:ClearingHouseAccountID"/><xs:element name="clearingHouseAccountUUIDField" nillable="true" type="tns:UUID"/><xs:element name="companyClearingHouseIDField" nillable="true" type="xs:string"/><xs:element name="creditCardPaymentAuthorisationField" nillable="true" type="tns:ArrayOfSalesOrderByElementsResponsePaymentControlCreditCardPaymentCreditCardPaymentAuthorisation"/><xs:element name="deviceIDField" nillable="true" type="tns:DeviceID"/><xs:element name="locationInternalIDField" nillable="true" type="tns:LocationInternalID"/><xs:element name="paymentAuthorisedAmountField" nillable="true" type="tns:Amount"/><xs:element name="paymentCardAutomaticallyGeneratedIndicatorField" type="xs:boolean"/><xs:element name="paymentCardAutomaticallyGeneratedIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="paymentCardDataOriginTypeCodeField" nillable="true" type="tns:DataOriginTypeCode"/><xs:element name="paymentCardKeyField" nillable="true" type="tns:PaymentCardKey"/><xs:element name="paymentCardUUIDField" nillable="true" type="tns:UUID"/><xs:element name="paymentCardVerificationValueAvailabilityCodeField" nillable="true" type="tns:PaymentCardVerificationValueAvailabilityCode"/><xs:element name="paymentCardVerificationValueCheckRequiredIndicatorField" type="xs:boolean"/><xs:element name="paymentCardVerificationValueCheckRequiredIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="paymentCardVerificationValueTextField" nillable="true" type="xs:string"/><xs:element name="uUIDField" nillable="true" type="tns:UUID"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponsePaymentControlCreditCardPayment" nillable="true" type="tns:SalesOrderByElementsResponsePaymentControlCreditCardPayment"/><xs:complexType name="ClearingHouseAccountID"><xs:sequence><xs:element name="schemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="ClearingHouseAccountID" nillable="true" type="tns:ClearingHouseAccountID"/><xs:complexType name="ArrayOfSalesOrderByElementsResponsePaymentControlCreditCardPaymentCreditCardPaymentAuthorisation"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="SalesOrderByElementsResponsePaymentControlCreditCardPaymentCreditCardPaymentAuthorisation" nillable="true" type="tns:SalesOrderByElementsResponsePaymentControlCreditCardPaymentCreditCardPaymentAuthorisation"/></xs:sequence></xs:complexType><xs:element name="ArrayOfSalesOrderByElementsResponsePaymentControlCreditCardPaymentCreditCardPaymentAuthorisation" nillable="true" type="tns:ArrayOfSalesOrderByElementsResponsePaymentControlCreditCardPaymentCreditCardPaymentAuthorisation"/><xs:complexType name="SalesOrderByElementsResponsePaymentControlCreditCardPaymentCreditCardPaymentAuthorisation"><xs:sequence><xs:element name="activeIndicatorField" type="xs:boolean"/><xs:element name="activeIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="amountField" nillable="true" type="tns:Amount"/><xs:element name="appliedIndicatorField" type="xs:boolean"/><xs:element name="appliedIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="clearingHouseIDField" nillable="true" type="tns:PaymentCardPaymentAuthorisationPartyID_V1"/><xs:element name="dateTimeField" type="xs:dateTime"/><xs:element name="dateTimeFieldSpecified" type="xs:boolean"/><xs:element name="expirationDateTimeField" type="xs:dateTime"/><xs:element name="expirationDateTimeFieldSpecified" type="xs:boolean"/><xs:element name="idField" nillable="true" type="tns:PaymentCardPaymentAuthorisationPartyID_V1"/><xs:element name="paymentCardAddressVerificationResultCodeField" nillable="true" type="xs:string"/><xs:element name="paymentCardHolderAuthenticationIDField" nillable="true" type="tns:PaymentCardHolderAuthenticationID"/><xs:element name="paymentCardHolderAuthenticationResultCodeField" nillable="true" type="tns:PaymentCardHolderAuthenticationResultCode"/><xs:element name="paymentCardHolderAuthenticationTokenTextField" nillable="true" type="xs:string"/><xs:element name="paymentCardTransactionTypeCodeField" nillable="true" type="xs:string"/><xs:element name="paymentCardVerificationResultCodeField" nillable="true" type="xs:string"/><xs:element name="paymentCardVerificationValueVerificationResultCodeField" nillable="true" type="xs:string"/><xs:element name="preAuthorisationIndicatorField" type="xs:boolean"/><xs:element name="preAuthorisationIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="productRecipientPartyPaymentCardAddressVerificationResultCodeField" nillable="true" type="xs:string"/><xs:element name="providerIDField" nillable="true" type="tns:PaymentCardPaymentAuthorisationPartyID_V1"/><xs:element name="resultCodeField" nillable="true" type="xs:string"/><xs:element name="resultDescriptionField" nillable="true" type="tns:SHORT_Description"/><xs:element name="uUIDField" nillable="true" type="tns:UUID"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponsePaymentControlCreditCardPaymentCreditCardPaymentAuthorisation" nillable="true" type="tns:SalesOrderByElementsResponsePaymentControlCreditCardPaymentCreditCardPaymentAuthorisation"/><xs:complexType name="PaymentCardPaymentAuthorisationPartyID_V1"><xs:sequence><xs:element name="schemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="schemeIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="PaymentCardPaymentAuthorisationPartyID_V1" nillable="true" type="tns:PaymentCardPaymentAuthorisationPartyID_V1"/><xs:complexType name="PaymentCardHolderAuthenticationID"><xs:sequence><xs:element name="schemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="schemeAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="schemeAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="schemeAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="schemeIDField" nillable="true" type="xs:string"/><xs:element name="schemeVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="PaymentCardHolderAuthenticationID" nillable="true" type="tns:PaymentCardHolderAuthenticationID"/><xs:complexType name="PaymentCardHolderAuthenticationResultCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="listAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="PaymentCardHolderAuthenticationResultCode" nillable="true" type="tns:PaymentCardHolderAuthenticationResultCode"/><xs:complexType name="DeviceID"><xs:sequence><xs:element name="schemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="DeviceID" nillable="true" type="tns:DeviceID"/><xs:complexType name="LocationInternalID"><xs:sequence><xs:element name="schemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="schemeIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="LocationInternalID" nillable="true" type="tns:LocationInternalID"/><xs:complexType name="DataOriginTypeCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="listAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="DataOriginTypeCode" nillable="true" type="tns:DataOriginTypeCode"/><xs:complexType name="PaymentCardKey"><xs:sequence><xs:element name="idField" nillable="true" type="tns:PaymentCardID"/><xs:element name="typeCodeField" nillable="true" type="tns:PaymentCardTypeCode"/></xs:sequence></xs:complexType><xs:element name="PaymentCardKey" nillable="true" type="tns:PaymentCardKey"/><xs:complexType name="PaymentCardID"><xs:sequence><xs:element name="schemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="schemeAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="schemeAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="schemeAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="schemeIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="PaymentCardID" nillable="true" type="tns:PaymentCardID"/><xs:complexType name="PaymentCardTypeCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="PaymentCardTypeCode" nillable="true" type="tns:PaymentCardTypeCode"/><xs:complexType name="PaymentCardVerificationValueAvailabilityCode"><xs:sequence><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="PaymentCardVerificationValueAvailabilityCode" nillable="true" type="tns:PaymentCardVerificationValueAvailabilityCode"/><xs:complexType name="ArrayOfSalesOrderByElementsResponsePaymentControlExternalPayment"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="SalesOrderByElementsResponsePaymentControlExternalPayment" nillable="true" type="tns:SalesOrderByElementsResponsePaymentControlExternalPayment"/></xs:sequence></xs:complexType><xs:element name="ArrayOfSalesOrderByElementsResponsePaymentControlExternalPayment" nillable="true" type="tns:ArrayOfSalesOrderByElementsResponsePaymentControlExternalPayment"/><xs:complexType name="SalesOrderByElementsResponsePaymentControlExternalPayment"><xs:sequence><xs:element name="amountField" nillable="true" type="tns:Amount"/><xs:element name="documentDateField" type="xs:dateTime"/><xs:element name="documentDateFieldSpecified" type="xs:boolean"/><xs:element name="houseBankAccountKeyInternalIDField" nillable="true" type="tns:BankAccountInternalID"/><xs:element name="houseBankAccountUUIDField" nillable="true" type="tns:UUID"/><xs:element name="paymentTransactionReferenceIDField" nillable="true" type="xs:string"/><xs:element name="uUIDField" nillable="true" type="tns:UUID"/><xs:element name="valueDateField" type="xs:dateTime"/><xs:element name="valueDateFieldSpecified" type="xs:boolean"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponsePaymentControlExternalPayment" nillable="true" type="tns:SalesOrderByElementsResponsePaymentControlExternalPayment"/><xs:complexType name="BankAccountInternalID"><xs:sequence><xs:element name="schemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="BankAccountInternalID" nillable="true" type="tns:BankAccountInternalID"/><xs:complexType name="MEDIUM_Note"><xs:sequence><xs:element name="languageCodeField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="MEDIUM_Note" nillable="true" type="tns:MEDIUM_Note"/><xs:complexType name="PaymentBlock"><xs:sequence><xs:element name="creationDateTimeField" type="xs:dateTime"/><xs:element name="creationDateTimeFieldSpecified" type="xs:boolean"/><xs:element name="creationIdentityUUIDField" nillable="true" type="tns:UUID"/><xs:element name="expirationDateTimeField" type="xs:dateTime"/><xs:element name="paymentBlockingReasonCodeField" nillable="true" type="tns:PaymentBlockingReasonCode"/></xs:sequence></xs:complexType><xs:element name="PaymentBlock" nillable="true" type="tns:PaymentBlock"/><xs:complexType name="PaymentBlockingReasonCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="PaymentBlockingReasonCode" nillable="true" type="tns:PaymentBlockingReasonCode"/><xs:complexType name="SalesOrderByElementsResponsePriceAndTaxCalculation"><xs:sequence><xs:element name="mainDiscountField" nillable="true" type="tns:SalesOrderByElementsResponsePriceAndTaxCalculationMainPriceComponent"/><xs:element name="mainPriceField" nillable="true" type="tns:SalesOrderByElementsResponsePriceAndTaxCalculationMainPriceComponent"/><xs:element name="mainSurchargeField" nillable="true" type="tns:SalesOrderByElementsResponsePriceAndTaxCalculationMainPriceComponent"/><xs:element name="mainTotalField" nillable="true" type="tns:SalesOrderByElementsResponsePriceAndTaxCalculationMainPriceComponent"/><xs:element name="priceComponentField" nillable="true" type="tns:ArrayOfSalesOrderByElementsResponsePriceAndTaxCalculationPriceComponent"/><xs:element name="productTaxDetailsField" nillable="true" type="tns:ArrayOfSalesOrderByElementsResponsePriceAndTaxCalculationProductTaxDetails"/><xs:element name="taxationTermsField" nillable="true" type="tns:SalesOrderByElementsResponsePriceAndTaxCalculationTaxationTerms"/><xs:element name="withholdingTaxDetailsField" nillable="true" type="tns:ArrayOfSalesOrderByElementsResponsePriceAndTaxCalculationWithholdingTaxDetails"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponsePriceAndTaxCalculation" nillable="true" type="tns:SalesOrderByElementsResponsePriceAndTaxCalculation"/><xs:complexType name="SalesOrderByElementsResponsePriceAndTaxCalculationMainPriceComponent"><xs:sequence><xs:element name="calculatedAmountField" nillable="true" type="tns:Amount"/><xs:element name="calculationBasisField" nillable="true" type="tns:PriceComponentCalculationBasis"/><xs:element name="categoryCodeField" nillable="true" type="tns:PriceSpecificationElementCategoryCode"/><xs:element name="descriptionField" nillable="true" type="tns:SHORT_Description"/><xs:element name="descriptionManuallyChangedIndicatorField" type="xs:boolean"/><xs:element name="descriptionManuallyChangedIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="effectiveIndicatorField" type="xs:boolean"/><xs:element name="effectiveIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="fixationCodeField" nillable="true" type="xs:string"/><xs:element name="groupedIndicatorField" type="xs:boolean"/><xs:element name="groupedIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="inactivityReasonCodeField" nillable="true" type="xs:string"/><xs:element name="manuallyChangedIndicatorField" type="xs:boolean"/><xs:element name="manuallyChangedIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="originCodeField" nillable="true" type="xs:string"/><xs:element name="purposeCodeField" nillable="true" type="tns:PriceSpecificationElementPurposeCode"/><xs:element name="rateBaseQuantityTypeCodeField" nillable="true" type="tns:QuantityTypeCode"/><xs:element name="rateField" nillable="true" type="tns:Rate"/><xs:element name="roundingDifferenceAmountField" nillable="true" type="tns:Amount"/><xs:element name="typeCodeField" nillable="true" type="tns:PriceSpecificationElementTypeCode"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponsePriceAndTaxCalculationMainPriceComponent" nillable="true" type="tns:SalesOrderByElementsResponsePriceAndTaxCalculationMainPriceComponent"/><xs:complexType name="ArrayOfSalesOrderByElementsResponsePriceAndTaxCalculationPriceComponent"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="SalesOrderByElementsResponsePriceAndTaxCalculationPriceComponent" nillable="true" type="tns:SalesOrderByElementsResponsePriceAndTaxCalculationPriceComponent"/></xs:sequence></xs:complexType><xs:element name="ArrayOfSalesOrderByElementsResponsePriceAndTaxCalculationPriceComponent" nillable="true" type="tns:ArrayOfSalesOrderByElementsResponsePriceAndTaxCalculationPriceComponent"/><xs:complexType name="SalesOrderByElementsResponsePriceAndTaxCalculationPriceComponent"><xs:sequence><xs:element name="calculatedAmountField" nillable="true" type="tns:Amount"/><xs:element name="calculationBasisField" nillable="true" type="tns:PriceComponentCalculationBasis"/><xs:element name="categoryCodeField" nillable="true" type="tns:PriceSpecificationElementCategoryCode"/><xs:element name="descriptionField" nillable="true" type="tns:SHORT_Description"/><xs:element name="descriptionManuallyChangedIndicatorField" type="xs:boolean"/><xs:element name="descriptionManuallyChangedIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="effectiveIndicatorField" type="xs:boolean"/><xs:element name="effectiveIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="fixationCodeField" nillable="true" type="xs:string"/><xs:element name="groupedIndicatorField" type="xs:boolean"/><xs:element name="groupedIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="inactivityReasonCodeField" nillable="true" type="xs:string"/><xs:element name="majorLevelOrdinalNumberValueField" type="xs:int"/><xs:element name="majorLevelOrdinalNumberValueFieldSpecified" type="xs:boolean"/><xs:element name="manuallyChangedIndicatorField" type="xs:boolean"/><xs:element name="manuallyChangedIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="minorLevelOrdinalNumberValueField" type="xs:int"/><xs:element name="minorLevelOrdinalNumberValueFieldSpecified" type="xs:boolean"/><xs:element name="originCodeField" nillable="true" type="xs:string"/><xs:element name="purposeCodeField" nillable="true" type="tns:PriceSpecificationElementPurposeCode"/><xs:element name="rateBaseQuantityTypeCodeField" nillable="true" type="tns:QuantityTypeCode"/><xs:element name="rateField" nillable="true" type="tns:Rate"/><xs:element name="roundingDifferenceAmountField" nillable="true" type="tns:Amount"/><xs:element name="typeCodeField" nillable="true" type="tns:PriceSpecificationElementTypeCode"/><xs:element name="uUIDField" nillable="true" type="tns:UUID"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponsePriceAndTaxCalculationPriceComponent" nillable="true" type="tns:SalesOrderByElementsResponsePriceAndTaxCalculationPriceComponent"/><xs:complexType name="ArrayOfSalesOrderByElementsResponsePriceAndTaxCalculationProductTaxDetails"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="SalesOrderByElementsResponsePriceAndTaxCalculationProductTaxDetails" nillable="true" type="tns:SalesOrderByElementsResponsePriceAndTaxCalculationProductTaxDetails"/></xs:sequence></xs:complexType><xs:element name="ArrayOfSalesOrderByElementsResponsePriceAndTaxCalculationProductTaxDetails" nillable="true" type="tns:ArrayOfSalesOrderByElementsResponsePriceAndTaxCalculationProductTaxDetails"/><xs:complexType name="SalesOrderByElementsResponsePriceAndTaxCalculationProductTaxDetails"><xs:sequence><xs:element name="productTaxField" nillable="true" type="tns:ProductTax"/><xs:element name="taxationCharacteristicsCodeField" nillable="true" type="tns:ProductTaxationCharacteristicsCode"/><xs:element name="transactionCurrencyProductTaxField" nillable="true" type="tns:ProductTax"/><xs:element name="uUIDField" nillable="true" type="tns:UUID"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponsePriceAndTaxCalculationProductTaxDetails" nillable="true" type="tns:SalesOrderByElementsResponsePriceAndTaxCalculationProductTaxDetails"/><xs:complexType name="SalesOrderByElementsResponsePriceAndTaxCalculationTaxationTerms"><xs:sequence><xs:element name="buyerCountryCodeField" nillable="true" type="xs:string"/><xs:element name="buyerTaxIDField" nillable="true" type="tns:PartyTaxID"/><xs:element name="buyerTaxIdentificationNumberTypeCodeField" nillable="true" type="tns:TaxIdentificationNumberTypeCode"/><xs:element name="europeanCommunityVATTriangulationIndicatorField" type="xs:boolean"/><xs:element name="europeanCommunityVATTriangulationIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="sellerCountryCodeField" nillable="true" type="xs:string"/><xs:element name="sellerTaxIDField" nillable="true" type="tns:PartyTaxID"/><xs:element name="sellerTaxIdentificationNumberTypeCodeField" nillable="true" type="tns:TaxIdentificationNumberTypeCode"/><xs:element name="taxDateField" type="xs:dateTime"/><xs:element name="taxDateFieldSpecified" type="xs:boolean"/><xs:element name="taxDueDateField" type="xs:dateTime"/><xs:element name="taxDueDateFieldSpecified" type="xs:boolean"/><xs:element name="taxExemptionCertificateIDField" nillable="true" type="tns:TaxExemptionCertificateID"/><xs:element name="taxExemptionReasonCodeField" nillable="true" type="tns:TaxExemptionReasonCode"/><xs:element name="taxExemptionReasonCodeRelevanceIndicatorField" type="xs:boolean"/><xs:element name="taxExemptionReasonCodeRelevanceIndicatorFieldSpecified" type="xs:boolean"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponsePriceAndTaxCalculationTaxationTerms" nillable="true" type="tns:SalesOrderByElementsResponsePriceAndTaxCalculationTaxationTerms"/><xs:complexType name="ArrayOfSalesOrderByElementsResponsePriceAndTaxCalculationWithholdingTaxDetails"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="SalesOrderByElementsResponsePriceAndTaxCalculationWithholdingTaxDetails" nillable="true" type="tns:SalesOrderByElementsResponsePriceAndTaxCalculationWithholdingTaxDetails"/></xs:sequence></xs:complexType><xs:element name="ArrayOfSalesOrderByElementsResponsePriceAndTaxCalculationWithholdingTaxDetails" nillable="true" type="tns:ArrayOfSalesOrderByElementsResponsePriceAndTaxCalculationWithholdingTaxDetails"/><xs:complexType name="SalesOrderByElementsResponsePriceAndTaxCalculationWithholdingTaxDetails"><xs:sequence><xs:element name="transactionCurrencyWithholdingTaxField" nillable="true" type="tns:WithholdingTax"/><xs:element name="uUIDField" nillable="true" type="tns:UUID"/><xs:element name="withholdingTaxField" nillable="true" type="tns:WithholdingTax"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponsePriceAndTaxCalculationWithholdingTaxDetails" nillable="true" type="tns:SalesOrderByElementsResponsePriceAndTaxCalculationWithholdingTaxDetails"/><xs:complexType name="SalesOrderByElementsResponsePricingTerms"><xs:sequence><xs:element name="currencyCodeField" nillable="true" type="xs:string"/><xs:element name="grossAmountIndicatorField" type="xs:boolean"/><xs:element name="priceDateTimeField" nillable="true" type="tns:LOCALNORMALISED_DateTime1"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponsePricingTerms" nillable="true" type="tns:SalesOrderByElementsResponsePricingTerms"/><xs:complexType name="SalesOrderByElementsResponseRequestedFulfillmentPeriodPeriodTerms"><xs:sequence><xs:element name="endDateTimeField" nillable="true" type="tns:LOCALNORMALISED_DateTime"/><xs:element name="startDateTimeField" nillable="true" type="tns:LOCALNORMALISED_DateTime"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponseRequestedFulfillmentPeriodPeriodTerms" nillable="true" type="tns:SalesOrderByElementsResponseRequestedFulfillmentPeriodPeriodTerms"/><xs:complexType name="LOCALNORMALISED_DateTime"><xs:sequence><xs:element name="timeZoneCodeField" nillable="true" type="xs:string"/><xs:element name="valueField" type="xs:dateTime"/></xs:sequence></xs:complexType><xs:element name="LOCALNORMALISED_DateTime" nillable="true" type="tns:LOCALNORMALISED_DateTime"/><xs:complexType name="SalesOrderByElementsResponseSalesAndServiceBusinessArea"><xs:sequence><xs:element name="distributionChannelCodeField" nillable="true" type="tns:DistributionChannelCode"/><xs:element name="salesGroupIDField" nillable="true" type="xs:string"/><xs:element name="salesOfficeIDField" nillable="true" type="xs:string"/><xs:element name="salesOrganisationIDField" nillable="true" type="xs:string"/><xs:element name="serviceOrganisationIDField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponseSalesAndServiceBusinessArea" nillable="true" type="tns:SalesOrderByElementsResponseSalesAndServiceBusinessArea"/><xs:complexType name="DistributionChannelCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="listAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="DistributionChannelCode" nillable="true" type="tns:DistributionChannelCode"/><xs:complexType name="SalesOrderByElementsResponseSalesTerms"><xs:sequence><xs:element name="cancellationReasonCodeField" nillable="true" type="tns:CancellationReasonCode"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponseSalesTerms" nillable="true" type="tns:SalesOrderByElementsResponseSalesTerms"/><xs:complexType name="CustomerTransactionDocumentServiceConfirmationCreationCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="CustomerTransactionDocumentServiceConfirmationCreationCode" nillable="true" type="tns:CustomerTransactionDocumentServiceConfirmationCreationCode"/><xs:complexType name="SalesOrderByElementsResponseStatus"><xs:sequence><xs:element name="approvalStatusCodeField" type="tns:ApprovalStatusCode"/><xs:element name="approvalStatusCodeFieldSpecified" type="xs:boolean"/><xs:element name="cancellationStatusCodeField" type="tns:CancellationStatusCode"/><xs:element name="cancellationStatusCodeFieldSpecified" type="xs:boolean"/><xs:element name="confirmationIssuingStatusCodeField" type="tns:IssuingStatusCode"/><xs:element name="confirmationIssuingStatusCodeFieldSpecified" type="xs:boolean"/><xs:element name="consistencyStatusCodeField" type="tns:ConsistencyStatusCode"/><xs:element name="consistencyStatusCodeFieldSpecified" type="xs:boolean"/><xs:element name="customerRequestReleaseStatusCodeField" type="tns:ReleaseStatusCode"/><xs:element name="customerRequestReleaseStatusCodeFieldSpecified" type="xs:boolean"/><xs:element name="fulfilmentBlockingStatusCodeField" type="tns:BlockingStatusCode"/><xs:element name="fulfilmentBlockingStatusCodeFieldSpecified" type="xs:boolean"/><xs:element name="generalDataCompletenessStatusCodeField" type="tns:DataCompletenessStatusCode"/><xs:element name="generalDataCompletenessStatusCodeFieldSpecified" type="xs:boolean"/><xs:element name="invoicingBlockingStatusCodeField" type="tns:BlockingStatusCode"/><xs:element name="invoicingBlockingStatusCodeFieldSpecified" type="xs:boolean"/><xs:element name="itemListCancellationStatusCodeField" type="tns:CancellationStatusCode"/><xs:element name="itemListCancellationStatusCodeFieldSpecified" type="xs:boolean"/><xs:element name="itemListCustomerOrderLifeCycleStatusCodeField" type="tns:CustomerOrderLifeCycleStatusCode"/><xs:element name="itemListCustomerOrderLifeCycleStatusCodeFieldSpecified" type="xs:boolean"/><xs:element name="itemListExecutionReleaseStatusCodeField" type="tns:ReleaseStatusCode"/><xs:element name="itemListExecutionReleaseStatusCodeFieldSpecified" type="xs:boolean"/><xs:element name="itemListFulfilmentProcessingStatusCodeField" type="tns:ProcessingStatusCode"/><xs:element name="itemListFulfilmentProcessingStatusCodeFieldSpecified" type="xs:boolean"/><xs:element name="itemListInvoiceProcessingStatusCodeField" type="tns:ProcessingStatusCode"/><xs:element name="itemListInvoiceProcessingStatusCodeFieldSpecified" type="xs:boolean"/><xs:element name="itemListPlanningReleaseStatusCodeField" type="tns:ReleaseStatusCode"/><xs:element name="itemListPlanningReleaseStatusCodeFieldSpecified" type="xs:boolean"/><xs:element name="itemListProductAvailabilityConfirmationStatusCodeField" type="tns:ProductAvailabilityConfirmationStatusCode"/><xs:element name="itemListProductAvailabilityConfirmationStatusCodeFieldSpecified" type="xs:boolean"/><xs:element name="paymentAuthorisationStatusCodeField" type="tns:AuthorisationStatusCode"/><xs:element name="paymentAuthorisationStatusCodeFieldSpecified" type="xs:boolean"/><xs:element name="releaseStatusCodeField" type="tns:ReleaseStatusCode"/><xs:element name="releaseStatusCodeFieldSpecified" type="xs:boolean"/></xs:sequence></xs:complexType><xs:element name="SalesOrderByElementsResponseStatus" nillable="true" type="tns:SalesOrderByElementsResponseStatus"/><xs:simpleType name="IssuingStatusCode"><xs:restriction base="xs:string"><xs:enumeration value="Item1"/><xs:enumeration value="Item2"/><xs:enumeration value="Item3"/><xs:enumeration value="Item4"/></xs:restriction></xs:simpleType><xs:element name="IssuingStatusCode" nillable="true" type="tns:IssuingStatusCode"/><xs:simpleType name="BlockingStatusCode"><xs:restriction base="xs:string"><xs:enumeration value="Item1"/><xs:enumeration value="Item2"/><xs:enumeration value="Item3"/></xs:restriction></xs:simpleType><xs:element name="BlockingStatusCode" nillable="true" type="tns:BlockingStatusCode"/><xs:simpleType name="AuthorisationStatusCode"><xs:restriction base="xs:string"><xs:enumeration value="Item1"/><xs:enumeration value="Item2"/><xs:enumeration value="Item3"/><xs:enumeration value="Item4"/></xs:restriction></xs:simpleType><xs:element name="AuthorisationStatusCode" nillable="true" type="tns:AuthorisationStatusCode"/></xs:schema>
|
@@ -0,0 +1 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?><xs:schema elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/BYDConnector.ProductAvail" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://schemas.datacontract.org/2004/07/BYDConnector.ProductAvail"><xs:complexType name="ProductAvailabilityDeterminationResponseMessage_sync"><xs:sequence><xs:element name="logField" nillable="true" type="tns:Log"/><xs:element name="productAvailabilityDeterminationResponseField" nillable="true" type="tns:ArrayOfProductAvailabilityDeterminationResponse"/></xs:sequence></xs:complexType><xs:element name="ProductAvailabilityDeterminationResponseMessage_sync" nillable="true" type="tns:ProductAvailabilityDeterminationResponseMessage_sync"/><xs:complexType name="Log"><xs:sequence><xs:element name="businessDocumentProcessingResultCodeField" nillable="true" type="xs:string"/><xs:element name="itemField" nillable="true" type="tns:ArrayOfLogItem"/><xs:element name="maximumLogItemSeverityCodeField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="Log" nillable="true" type="tns:Log"/><xs:complexType name="ArrayOfLogItem"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="LogItem" nillable="true" type="tns:LogItem"/></xs:sequence></xs:complexType><xs:element name="ArrayOfLogItem" nillable="true" type="tns:ArrayOfLogItem"/><xs:complexType name="LogItem"><xs:sequence><xs:element name="categoryCodeField" nillable="true" type="tns:LogItemCategoryCode"/><xs:element name="logItemNotePlaceholderSubstitutionListField" nillable="true" type="tns:LogItemNotePlaceholderSubstitutionList"/><xs:element name="noteField" nillable="true" type="xs:string"/><xs:element name="noteTemplateTextField" nillable="true" type="xs:string"/><xs:element name="referenceMessageElementNameField" nillable="true" type="xs:string"/><xs:element name="referenceObjectNodeSenderTechnicalIDField" nillable="true" type="xs:string"/><xs:element name="severityCodeField" nillable="true" type="xs:string"/><xs:element name="typeIDField" nillable="true" type="xs:string"/><xs:element name="webURIField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="LogItem" nillable="true" type="tns:LogItem"/><xs:complexType name="LogItemCategoryCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="LogItemCategoryCode" nillable="true" type="tns:LogItemCategoryCode"/><xs:complexType name="LogItemNotePlaceholderSubstitutionList"><xs:sequence><xs:element name="firstPlaceholderIDField" nillable="true" type="xs:string"/><xs:element name="firstPlaceholderSubstitutionTextField" nillable="true" type="xs:string"/><xs:element name="fourthPlaceholderIDField" nillable="true" type="xs:string"/><xs:element name="fourthPlaceholderSubstitutionTextField" nillable="true" type="xs:string"/><xs:element name="secondPlaceholderIDField" nillable="true" type="xs:string"/><xs:element name="secondPlaceholderSubstitutionTextField" nillable="true" type="xs:string"/><xs:element name="thirdPlaceholderIDField" nillable="true" type="xs:string"/><xs:element name="thirdPlaceholderSubstitutionTextField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="LogItemNotePlaceholderSubstitutionList" nillable="true" type="tns:LogItemNotePlaceholderSubstitutionList"/><xs:complexType name="ArrayOfProductAvailabilityDeterminationResponse"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="ProductAvailabilityDeterminationResponse" nillable="true" type="tns:ProductAvailabilityDeterminationResponse"/></xs:sequence></xs:complexType><xs:element name="ArrayOfProductAvailabilityDeterminationResponse" nillable="true" type="tns:ArrayOfProductAvailabilityDeterminationResponse"/><xs:complexType name="ProductAvailabilityDeterminationResponse"><xs:sequence><xs:element name="availableQuantityField" nillable="true" type="tns:Quantity"/><xs:element name="availableQuantityTypeCodeField" nillable="true" type="tns:QuantityTypeCode"/><xs:element name="currentStockQuantityField" nillable="true" type="tns:Quantity"/><xs:element name="currentStockQuantityTypeCodeField" nillable="true" type="tns:QuantityTypeCode"/><xs:element name="productInternalIDField" nillable="true" type="tns:ProductInternalID"/><xs:element name="productRequirementSpecificationIDField" nillable="true" type="tns:RequirementSpecificationID"/><xs:element name="productRequirementSpecificationVersionIDField" nillable="true" type="xs:string"/><xs:element name="productTypeCodeField" nillable="true" type="xs:string"/><xs:element name="productTypeNameField" nillable="true" type="tns:MEDIUM_Name"/><xs:element name="receiptQuantityField" nillable="true" type="tns:Quantity"/><xs:element name="receiptQuantityTypeCodeField" nillable="true" type="tns:QuantityTypeCode"/><xs:element name="requirementQuantityField" nillable="true" type="tns:Quantity"/><xs:element name="requirementQuantityTypeCodeField" nillable="true" type="tns:QuantityTypeCode"/><xs:element name="supplyPlanningAreaIDField" nillable="true" type="tns:SupplyPlanningAreaID"/></xs:sequence></xs:complexType><xs:element name="ProductAvailabilityDeterminationResponse" nillable="true" type="tns:ProductAvailabilityDeterminationResponse"/><xs:complexType name="Quantity"><xs:sequence><xs:element name="unitCodeField" nillable="true" type="xs:string"/><xs:element name="valueField" type="xs:decimal"/></xs:sequence></xs:complexType><xs:element name="Quantity" nillable="true" type="tns:Quantity"/><xs:complexType name="QuantityTypeCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="QuantityTypeCode" nillable="true" type="tns:QuantityTypeCode"/><xs:complexType name="ProductInternalID"><xs:sequence><xs:element name="schemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="schemeIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="ProductInternalID" nillable="true" type="tns:ProductInternalID"/><xs:complexType name="RequirementSpecificationID"><xs:sequence><xs:element name="schemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="schemeIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="RequirementSpecificationID" nillable="true" type="tns:RequirementSpecificationID"/><xs:complexType name="MEDIUM_Name"><xs:sequence><xs:element name="languageCodeField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="MEDIUM_Name" nillable="true" type="tns:MEDIUM_Name"/><xs:complexType name="SupplyPlanningAreaID"><xs:sequence><xs:element name="schemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="schemeIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="SupplyPlanningAreaID" nillable="true" type="tns:SupplyPlanningAreaID"/></xs:schema>
|
@@ -0,0 +1 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?><xs:schema elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/BYDConnector.QUERYCUSTOMERIN1" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://schemas.datacontract.org/2004/07/BYDConnector.QUERYCUSTOMERIN1"><xs:complexType name="ArrayOfCustomerReponseCustomer"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="CustomerReponseCustomer" nillable="true" type="tns:CustomerReponseCustomer"/></xs:sequence></xs:complexType><xs:element name="ArrayOfCustomerReponseCustomer" nillable="true" type="tns:ArrayOfCustomerReponseCustomer"/><xs:complexType name="CustomerReponseCustomer"><xs:sequence><xs:element name="aBCClassificationCodeField" nillable="true" type="tns:CustomerABCClassificationCode"/><xs:element name="addressInformationField" nillable="true" type="tns:ArrayOfCustomerReponseCustomerAddressInformation"/><xs:element name="attachmentFolderField" nillable="true" type="tns:AccessAttachmentFolder"/><xs:element name="bankDetailsField" nillable="true" type="tns:ArrayOfCustomerReponseCustomerBankDetails"/><xs:element name="categoryCodeField" nillable="true" type="xs:string"/><xs:element name="changeStateIDField" nillable="true" type="xs:string"/><xs:element name="communicationArrangementField" nillable="true" type="tns:ArrayOfCustomerReponseCustomerCommunicationArrangement"/><xs:element name="contactAllowedCodeField" nillable="true" type="xs:string"/><xs:element name="contactPersonField" nillable="true" type="tns:ArrayOfCustomerReponseCustomerContactPerson"/><xs:element name="customerBlockingReasonCodeField" nillable="true" type="xs:string"/><xs:element name="customerIndicatorField" type="xs:boolean"/><xs:element name="customerIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="customerTransactionDocumentFulfilmentBlockingReasonCodeField" nillable="true" type="xs:string"/><xs:element name="directResponsibilityField" nillable="true" type="tns:ArrayOfCustomerReponseCustomerDirectResponsibility"/><xs:element name="dunAndBradstreetNumberIDField" nillable="true" type="xs:string"/><xs:element name="enterpriseIdentificationNumberField" nillable="true" type="xs:string"/><xs:element name="enterpriseIdentificationSupplementCodeField" nillable="true" type="xs:string"/><xs:element name="generalProductTaxExemptionField" nillable="true" type="tns:ArrayOfCustomerReponseCustomerGeneralProductTaxExemption"/><xs:element name="globalLocationNumberIDField" nillable="true" type="xs:string"/><xs:element name="industrialSectorCodeField" nillable="true" type="tns:IndustrialSectorCode"/><xs:element name="internalIDField" nillable="true" type="xs:string"/><xs:element name="invoicingBlockingReasonCodeField" nillable="true" type="xs:string"/><xs:element name="legalCompetenceIndicatorField" type="xs:boolean"/><xs:element name="legalCompetenceIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="lifeCycleStatusCodeField" type="tns:PartyLifeCycleStatusCode"/><xs:element name="lifeCycleStatusCodeFieldSpecified" type="xs:boolean"/><xs:element name="nielsenRegionCodeField" nillable="true" type="tns:NielsenRegionCode"/><xs:element name="operatingHoursInformationField" nillable="true" type="tns:ArrayOfCustomerReponseCustomerOperatingHoursInformation"/><xs:element name="organisationField" nillable="true" type="tns:CustomerReponseCustomerOrganisation"/><xs:element name="paymentCardDetailsField" nillable="true" type="tns:ArrayOfCustomerReponseCustomerPaymentCardDetails"/><xs:element name="paymentDataField" nillable="true" type="tns:ArrayOfCustomerReponseCustomerPaymentData"/><xs:element name="personField" nillable="true" type="tns:CustomerReponseCustomerPerson"/><xs:element name="prospectIndicatorField" type="xs:boolean"/><xs:element name="prospectIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="relationshipField" nillable="true" type="tns:ArrayOfCustomerReponseCustomerRelationship"/><xs:element name="salesArrangementField" nillable="true" type="tns:ArrayOfCustomerReponseCustomerSalesArrangement"/><xs:element name="systemAdministrativeDataField" nillable="true" type="tns:SystemAdministrativeData"/><xs:element name="taxNumberField" nillable="true" type="tns:ArrayOfCustomerReponseCustomerTaxNumber"/><xs:element name="taxPayerCategoryCodeField" nillable="true" type="tns:TaxPayerCategoryCode"/><xs:element name="textField" nillable="true" type="tns:ArrayOfCustomerReponseCustomerText"/><xs:element name="uUIDField" nillable="true" type="tns:UUID"/><xs:element name="verbalCommunicationLanguageCodeField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="CustomerReponseCustomer" nillable="true" type="tns:CustomerReponseCustomer"/><xs:complexType name="CustomerABCClassificationCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="listAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="CustomerABCClassificationCode" nillable="true" type="tns:CustomerABCClassificationCode"/><xs:simpleType name="AgencyIdentificationCode"><xs:restriction base="xs:string"><xs:enumeration value="Item1"/><xs:enumeration value="Item5"/><xs:enumeration value="Item6"/><xs:enumeration value="Item16"/><xs:enumeration value="Item17"/><xs:enumeration value="Item84"/><xs:enumeration value="Item107"/><xs:enumeration value="Item109"/><xs:enumeration value="Item112"/><xs:enumeration value="Item113"/><xs:enumeration value="Item114"/><xs:enumeration value="Item116"/><xs:enumeration value="Item117"/><xs:enumeration value="Item124"/><xs:enumeration value="Item130"/><xs:enumeration value="Item131"/><xs:enumeration value="Item138"/><xs:enumeration value="Item142"/><xs:enumeration value="Item146"/><xs:enumeration value="Item262"/><xs:enumeration value="Item296"/><xs:enumeration value="Item310"/></xs:restriction></xs:simpleType><xs:element name="AgencyIdentificationCode" nillable="true" type="tns:AgencyIdentificationCode"/><xs:complexType name="ArrayOfCustomerReponseCustomerAddressInformation"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="CustomerReponseCustomerAddressInformation" nillable="true" type="tns:CustomerReponseCustomerAddressInformation"/></xs:sequence></xs:complexType><xs:element name="ArrayOfCustomerReponseCustomerAddressInformation" nillable="true" type="tns:ArrayOfCustomerReponseCustomerAddressInformation"/><xs:complexType name="CustomerReponseCustomerAddressInformation"><xs:sequence><xs:element name="addressField" nillable="true" type="tns:CustomerReponseCustomerAddress"/><xs:element name="addressUsageField" nillable="true" type="tns:ArrayOfCustomerReponseCustomerAddressUsage"/><xs:element name="currentAddressSnapshotUUIDField" nillable="true" type="tns:UUID"/><xs:element name="uUIDField" nillable="true" type="tns:UUID"/></xs:sequence></xs:complexType><xs:element name="CustomerReponseCustomerAddressInformation" nillable="true" type="tns:CustomerReponseCustomerAddressInformation"/><xs:complexType name="CustomerReponseCustomerAddress"><xs:sequence><xs:element name="correspondenceLanguageCodeField" nillable="true" type="xs:string"/><xs:element name="emailURIField" nillable="true" type="tns:EmailURI"/><xs:element name="facsimileFormattedNumberDescriptionField" nillable="true" type="xs:string"/><xs:element name="formattedAddressField" nillable="true" type="tns:CustomerReponseCustomerFormattedAddress"/><xs:element name="postalAddressField" nillable="true" type="tns:CustomerReponseCustomerAddressPostalAddress"/><xs:element name="preferredCommunicationMediumTypeCodeField" nillable="true" type="tns:CommunicationMediumTypeCode"/><xs:element name="telephoneField" nillable="true" type="tns:ArrayOfCustomerReponseCustomerAddressTelephone"/><xs:element name="webURIField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="CustomerReponseCustomerAddress" nillable="true" type="tns:CustomerReponseCustomerAddress"/><xs:complexType name="EmailURI"><xs:sequence><xs:element name="schemeIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="EmailURI" nillable="true" type="tns:EmailURI"/><xs:complexType name="CustomerReponseCustomerFormattedAddress"><xs:sequence><xs:element name="formattedAddressDescriptionField" nillable="true" type="xs:string"/><xs:element name="formattedAddressField" nillable="true" type="tns:FormattedAddress"/><xs:element name="formattedPostalAddressDescriptionField" nillable="true" type="xs:string"/><xs:element name="formattedPostalAddressField" nillable="true" type="tns:FormattedPostalAddress"/></xs:sequence></xs:complexType><xs:element name="CustomerReponseCustomerFormattedAddress" nillable="true" type="tns:CustomerReponseCustomerFormattedAddress"/><xs:complexType name="FormattedAddress"><xs:sequence><xs:element name="firstLineDescriptionField" nillable="true" type="xs:string"/><xs:element name="fourthLineDescriptionField" nillable="true" type="xs:string"/><xs:element name="secondLineDescriptionField" nillable="true" type="xs:string"/><xs:element name="thirdLineDescriptionField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="FormattedAddress" nillable="true" type="tns:FormattedAddress"/><xs:complexType name="FormattedPostalAddress"><xs:sequence><xs:element name="firstLineDescriptionField" nillable="true" type="xs:string"/><xs:element name="secondLineDescriptionField" nillable="true" type="xs:string"/><xs:element name="thirdLineDescriptionField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="FormattedPostalAddress" nillable="true" type="tns:FormattedPostalAddress"/><xs:complexType name="CustomerReponseCustomerAddressPostalAddress"><xs:sequence><xs:element name="additionalCityNameField" nillable="true" type="xs:string"/><xs:element name="additionalStreetPrefixNameField" nillable="true" type="xs:string"/><xs:element name="additionalStreetSuffixNameField" nillable="true" type="xs:string"/><xs:element name="careOfNameField" nillable="true" type="xs:string"/><xs:element name="cityNameField" nillable="true" type="xs:string"/><xs:element name="companyPostalCodeField" nillable="true" type="xs:string"/><xs:element name="countryCodeField" nillable="true" type="xs:string"/><xs:element name="countyNameField" nillable="true" type="xs:string"/><xs:element name="districtNameField" nillable="true" type="xs:string"/><xs:element name="houseIDField" nillable="true" type="xs:string"/><xs:element name="pOBoxDeviatingCityNameField" nillable="true" type="xs:string"/><xs:element name="pOBoxDeviatingCountryCodeField" nillable="true" type="xs:string"/><xs:element name="pOBoxDeviatingRegionCodeField" nillable="true" type="tns:RegionCode"/><xs:element name="pOBoxIDField" nillable="true" type="xs:string"/><xs:element name="pOBoxIndicatorField" type="xs:boolean"/><xs:element name="pOBoxIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="pOBoxPostalCodeField" nillable="true" type="xs:string"/><xs:element name="regionCodeField" nillable="true" type="tns:RegionCode"/><xs:element name="streetNameField" nillable="true" type="xs:string"/><xs:element name="streetPostalCodeField" nillable="true" type="xs:string"/><xs:element name="streetPrefixNameField" nillable="true" type="xs:string"/><xs:element name="streetSuffixNameField" nillable="true" type="xs:string"/><xs:element name="taxJurisdictionCodeField" nillable="true" type="tns:TaxJurisdictionCode"/><xs:element name="timeZoneCodeField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="CustomerReponseCustomerAddressPostalAddress" nillable="true" type="tns:CustomerReponseCustomerAddressPostalAddress"/><xs:complexType name="RegionCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="listAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="RegionCode" nillable="true" type="tns:RegionCode"/><xs:complexType name="TaxJurisdictionCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="listAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="TaxJurisdictionCode" nillable="true" type="tns:TaxJurisdictionCode"/><xs:complexType name="CommunicationMediumTypeCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="CommunicationMediumTypeCode" nillable="true" type="tns:CommunicationMediumTypeCode"/><xs:complexType name="ArrayOfCustomerReponseCustomerAddressTelephone"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="CustomerReponseCustomerAddressTelephone" nillable="true" type="tns:CustomerReponseCustomerAddressTelephone"/></xs:sequence></xs:complexType><xs:element name="ArrayOfCustomerReponseCustomerAddressTelephone" nillable="true" type="tns:ArrayOfCustomerReponseCustomerAddressTelephone"/><xs:complexType name="CustomerReponseCustomerAddressTelephone"><xs:sequence><xs:element name="formattedNumberDescriptionField" nillable="true" type="xs:string"/><xs:element name="mobilePhoneNumberIndicatorField" type="xs:boolean"/><xs:element name="mobilePhoneNumberIndicatorFieldSpecified" type="xs:boolean"/></xs:sequence></xs:complexType><xs:element name="CustomerReponseCustomerAddressTelephone" nillable="true" type="tns:CustomerReponseCustomerAddressTelephone"/><xs:complexType name="ArrayOfCustomerReponseCustomerAddressUsage"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="CustomerReponseCustomerAddressUsage" nillable="true" type="tns:CustomerReponseCustomerAddressUsage"/></xs:sequence></xs:complexType><xs:element name="ArrayOfCustomerReponseCustomerAddressUsage" nillable="true" type="tns:ArrayOfCustomerReponseCustomerAddressUsage"/><xs:complexType name="CustomerReponseCustomerAddressUsage"><xs:sequence><xs:element name="addressUsageCodeField" nillable="true" type="tns:AddressUsageCode"/><xs:element name="defaultIndicatorField" type="xs:boolean"/><xs:element name="defaultIndicatorFieldSpecified" type="xs:boolean"/></xs:sequence></xs:complexType><xs:element name="CustomerReponseCustomerAddressUsage" nillable="true" type="tns:CustomerReponseCustomerAddressUsage"/><xs:complexType name="AddressUsageCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="listAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="AddressUsageCode" nillable="true" type="tns:AddressUsageCode"/><xs:complexType name="UUID"><xs:sequence><xs:element name="schemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="schemeIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="UUID" nillable="true" type="tns:UUID"/><xs:complexType name="AccessAttachmentFolder"><xs:sequence><xs:element name="documentField" nillable="true" type="tns:ArrayOfAccessAttachmentFolderDocument"/><xs:element name="uUIDField" nillable="true" type="tns:UUID"/></xs:sequence></xs:complexType><xs:element name="AccessAttachmentFolder" nillable="true" type="tns:AccessAttachmentFolder"/><xs:complexType name="ArrayOfAccessAttachmentFolderDocument"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="AccessAttachmentFolderDocument" nillable="true" type="tns:AccessAttachmentFolderDocument"/></xs:sequence></xs:complexType><xs:element name="ArrayOfAccessAttachmentFolderDocument" nillable="true" type="tns:ArrayOfAccessAttachmentFolderDocument"/><xs:complexType name="AccessAttachmentFolderDocument"><xs:sequence><xs:element name="alternativeNameField" nillable="true" type="xs:string"/><xs:element name="categoryCodeField" nillable="true" type="xs:string"/><xs:element name="categoryNameField" nillable="true" type="xs:string"/><xs:element name="checkedOutIndicatorField" type="xs:boolean"/><xs:element name="checkedOutIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="descriptionField" nillable="true" type="tns:Description"/><xs:element name="externalLinkWebURIField" nillable="true" type="xs:string"/><xs:element name="fileContentURIField" nillable="true" type="tns:URI"/><xs:element name="filesizeMeasureField" nillable="true" type="tns:Measure"/><xs:element name="internalLinkUUIDField" nillable="true" type="tns:UUID"/><xs:element name="linkInternalIndicatorField" type="xs:boolean"/><xs:element name="linkInternalIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="mIMECodeField" nillable="true" type="xs:string"/><xs:element name="mIMENameField" nillable="true" type="xs:string"/><xs:element name="nameField" nillable="true" type="xs:string"/><xs:element name="pathNameField" nillable="true" type="xs:string"/><xs:element name="propertyField" nillable="true" type="tns:ArrayOfAccessAttachmentFolderDocumentProperty"/><xs:element name="systemAdministrativeDataField" nillable="true" type="tns:SystemAdministrativeData"/><xs:element name="typeCodeField" nillable="true" type="tns:DocumentTypeCode"/><xs:element name="typeNameField" nillable="true" type="xs:string"/><xs:element name="uUIDField" nillable="true" type="tns:UUID"/><xs:element name="versionIDField" nillable="true" type="xs:string"/><xs:element name="versioningEnabledIndicatorField" type="xs:boolean"/><xs:element name="versioningEnabledIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="visibleIndicatorField" type="xs:boolean"/><xs:element name="visibleIndicatorFieldSpecified" type="xs:boolean"/></xs:sequence></xs:complexType><xs:element name="AccessAttachmentFolderDocument" nillable="true" type="tns:AccessAttachmentFolderDocument"/><xs:complexType name="Description"><xs:sequence><xs:element name="languageCodeField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="Description" nillable="true" type="tns:Description"/><xs:complexType name="URI"><xs:sequence><xs:element name="schemeIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="URI" nillable="true" type="tns:URI"/><xs:complexType name="Measure"><xs:sequence><xs:element name="unitCodeField" nillable="true" type="xs:string"/><xs:element name="valueField" type="xs:decimal"/></xs:sequence></xs:complexType><xs:element name="Measure" nillable="true" type="tns:Measure"/><xs:complexType name="ArrayOfAccessAttachmentFolderDocumentProperty"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="AccessAttachmentFolderDocumentProperty" nillable="true" type="tns:AccessAttachmentFolderDocumentProperty"/></xs:sequence></xs:complexType><xs:element name="ArrayOfAccessAttachmentFolderDocumentProperty" nillable="true" type="tns:ArrayOfAccessAttachmentFolderDocumentProperty"/><xs:complexType name="AccessAttachmentFolderDocumentProperty"><xs:sequence><xs:element name="changeAllowedIndicatorField" type="xs:boolean"/><xs:element name="changeAllowedIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="dataTypeFormatCodeField" nillable="true" type="xs:string"/><xs:element name="dataTypeFormatNameField" nillable="true" type="xs:string"/><xs:element name="descriptionField" nillable="true" type="tns:Description"/><xs:element name="multipleValueIndicatorField" type="xs:boolean"/><xs:element name="multipleValueIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="nameField" nillable="true" type="xs:string"/><xs:element name="namespaceURIField" nillable="true" type="tns:NamespaceURI"/><xs:element name="propertyValueField" nillable="true" type="tns:ArrayOfAccessAttachmentFolderDocumentPropertyPropertyValue"/><xs:element name="technicalIDField" nillable="true" type="xs:string"/><xs:element name="visibleIndicatorField" type="xs:boolean"/><xs:element name="visibleIndicatorFieldSpecified" type="xs:boolean"/></xs:sequence></xs:complexType><xs:element name="AccessAttachmentFolderDocumentProperty" nillable="true" type="tns:AccessAttachmentFolderDocumentProperty"/><xs:complexType name="NamespaceURI"><xs:sequence><xs:element name="schemeIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="NamespaceURI" nillable="true" type="tns:NamespaceURI"/><xs:complexType name="ArrayOfAccessAttachmentFolderDocumentPropertyPropertyValue"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="AccessAttachmentFolderDocumentPropertyPropertyValue" nillable="true" type="tns:AccessAttachmentFolderDocumentPropertyPropertyValue"/></xs:sequence></xs:complexType><xs:element name="ArrayOfAccessAttachmentFolderDocumentPropertyPropertyValue" nillable="true" type="tns:ArrayOfAccessAttachmentFolderDocumentPropertyPropertyValue"/><xs:complexType name="AccessAttachmentFolderDocumentPropertyPropertyValue"><xs:sequence><xs:element name="dateTimeField" type="xs:dateTime"/><xs:element name="dateTimeFieldSpecified" type="xs:boolean"/><xs:element name="indicatorField" type="xs:boolean"/><xs:element name="indicatorFieldSpecified" type="xs:boolean"/><xs:element name="integerValueField" type="xs:int"/><xs:element name="integerValueFieldSpecified" type="xs:boolean"/><xs:element name="technicalIDField" nillable="true" type="xs:string"/><xs:element name="textField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="AccessAttachmentFolderDocumentPropertyPropertyValue" nillable="true" type="tns:AccessAttachmentFolderDocumentPropertyPropertyValue"/><xs:complexType name="SystemAdministrativeData"><xs:sequence><xs:element name="creationDateTimeField" type="xs:dateTime"/><xs:element name="creationIdentityUUIDField" nillable="true" type="tns:UUID"/><xs:element name="lastChangeDateTimeField" type="xs:dateTime"/><xs:element name="lastChangeDateTimeFieldSpecified" type="xs:boolean"/><xs:element name="lastChangeIdentityUUIDField" nillable="true" type="tns:UUID"/></xs:sequence></xs:complexType><xs:element name="SystemAdministrativeData" nillable="true" type="tns:SystemAdministrativeData"/><xs:complexType name="DocumentTypeCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="listAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="DocumentTypeCode" nillable="true" type="tns:DocumentTypeCode"/><xs:complexType name="ArrayOfCustomerReponseCustomerBankDetails"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="CustomerReponseCustomerBankDetails" nillable="true" type="tns:CustomerReponseCustomerBankDetails"/></xs:sequence></xs:complexType><xs:element name="ArrayOfCustomerReponseCustomerBankDetails" nillable="true" type="tns:ArrayOfCustomerReponseCustomerBankDetails"/><xs:complexType name="CustomerReponseCustomerBankDetails"><xs:sequence><xs:element name="bankAccountHolderNameField" nillable="true" type="xs:string"/><xs:element name="bankAccountIDCheckDigitValueField" nillable="true" type="xs:string"/><xs:element name="bankAccountIDField" nillable="true" type="xs:string"/><xs:element name="bankAccountStandardIDField" nillable="true" type="xs:string"/><xs:element name="bankAccountTypeCodeField" nillable="true" type="xs:string"/><xs:element name="bankDirectoryBranchIDField" nillable="true" type="tns:BankBranchID"/><xs:element name="bankInternalIDField" nillable="true" type="tns:BankInternalID"/><xs:element name="bankRoutingIDField" nillable="true" type="xs:string"/><xs:element name="bankRoutingIDTypeCodeField" nillable="true" type="xs:string"/><xs:element name="bankStandardIDField" nillable="true" type="xs:string"/><xs:element name="bankUUIDField" nillable="true" type="tns:UUID"/><xs:element name="goldenTaxRelevanceIndicatorField" type="xs:boolean"/><xs:element name="goldenTaxRelevanceIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="idField" nillable="true" type="xs:string"/><xs:element name="validityPeriodField" nillable="true" type="tns:CLOSED_DatePeriod"/></xs:sequence></xs:complexType><xs:element name="CustomerReponseCustomerBankDetails" nillable="true" type="tns:CustomerReponseCustomerBankDetails"/><xs:complexType name="BankBranchID"><xs:sequence><xs:element name="schemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="BankBranchID" nillable="true" type="tns:BankBranchID"/><xs:complexType name="BankInternalID"><xs:sequence><xs:element name="schemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="BankInternalID" nillable="true" type="tns:BankInternalID"/><xs:complexType name="CLOSED_DatePeriod"><xs:sequence><xs:element name="endDateField" type="xs:dateTime"/><xs:element name="startDateField" type="xs:dateTime"/></xs:sequence></xs:complexType><xs:element name="CLOSED_DatePeriod" nillable="true" type="tns:CLOSED_DatePeriod"/><xs:complexType name="ArrayOfCustomerReponseCustomerCommunicationArrangement"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="CustomerReponseCustomerCommunicationArrangement" nillable="true" type="tns:CustomerReponseCustomerCommunicationArrangement"/></xs:sequence></xs:complexType><xs:element name="ArrayOfCustomerReponseCustomerCommunicationArrangement" nillable="true" type="tns:ArrayOfCustomerReponseCustomerCommunicationArrangement"/><xs:complexType name="CustomerReponseCustomerCommunicationArrangement"><xs:sequence><xs:element name="communicationMediumTypeCodeField" nillable="true" type="tns:CommunicationMediumTypeCode"/><xs:element name="compoundServiceInterfaceCodeField" nillable="true" type="tns:CompoundServiceInterfaceCode"/><xs:element name="eMailURIField" nillable="true" type="tns:EmailURI"/><xs:element name="enabledIndicatorField" type="xs:boolean"/><xs:element name="enabledIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="facsimileFormattedNumberDescriptionField" nillable="true" type="xs:string"/><xs:element name="outputCopyNumberValueField" type="xs:int"/><xs:element name="outputCopyNumberValueFieldSpecified" type="xs:boolean"/><xs:element name="outputRequestFormTemplateCodeField" nillable="true" type="tns:OutputRequestFormTemplateCode"/><xs:element name="uUIDField" nillable="true" type="tns:UUID"/></xs:sequence></xs:complexType><xs:element name="CustomerReponseCustomerCommunicationArrangement" nillable="true" type="tns:CustomerReponseCustomerCommunicationArrangement"/><xs:complexType name="CompoundServiceInterfaceCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="CompoundServiceInterfaceCode" nillable="true" type="tns:CompoundServiceInterfaceCode"/><xs:complexType name="OutputRequestFormTemplateCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="listAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="OutputRequestFormTemplateCode" nillable="true" type="tns:OutputRequestFormTemplateCode"/><xs:complexType name="ArrayOfCustomerReponseCustomerContactPerson"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="CustomerReponseCustomerContactPerson" nillable="true" type="tns:CustomerReponseCustomerContactPerson"/></xs:sequence></xs:complexType><xs:element name="ArrayOfCustomerReponseCustomerContactPerson" nillable="true" type="tns:ArrayOfCustomerReponseCustomerContactPerson"/><xs:complexType name="CustomerReponseCustomerContactPerson"><xs:sequence><xs:element name="academicTitleCodeField" nillable="true" type="tns:AcademicTitleCode"/><xs:element name="addressInformationField" nillable="true" type="tns:ArrayOfCustomerReponseCustomerContactPersonAddressInformation"/><xs:element name="birthDateField" type="xs:dateTime"/><xs:element name="birthDateFieldSpecified" type="xs:boolean"/><xs:element name="birthNameField" nillable="true" type="xs:string"/><xs:element name="businessPartnerContactInternalIDField" nillable="true" type="xs:string"/><xs:element name="businessPartnerContactUUIDField" nillable="true" type="tns:UUID"/><xs:element name="businessPartnerFunctionTypeCodeField" nillable="true" type="tns:BusinessPartnerFunctionTypeCode"/><xs:element name="businessPartnerFunctionalAreaCodeField" nillable="true" type="tns:BusinessPartnerFunctionalAreaCode"/><xs:element name="currentWorkplaceAddressSnapshotUUIDField" nillable="true" type="tns:UUID"/><xs:element name="defaultContactPersonIndicatorField" type="xs:boolean"/><xs:element name="defaultContactPersonIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="familyNameField" nillable="true" type="xs:string"/><xs:element name="formOfAddressCodeField" nillable="true" type="tns:FormOfAddressCode"/><xs:element name="genderCodeField" nillable="true" type="xs:string"/><xs:element name="givenNameField" nillable="true" type="xs:string"/><xs:element name="lifeCycleStatusCodeField" type="tns:PartyLifeCycleStatusCode"/><xs:element name="lifeCycleStatusCodeFieldSpecified" type="xs:boolean"/><xs:element name="maritalStatusCodeField" nillable="true" type="tns:MaritalStatusCode"/><xs:element name="middleNameField" nillable="true" type="xs:string"/><xs:element name="nickNameField" nillable="true" type="xs:string"/><xs:element name="nonVerbalCommunicationLanguageCodeField" nillable="true" type="xs:string"/><xs:element name="occupationCodeField" nillable="true" type="tns:OccupationCode"/><xs:element name="vIPReasonCodeField" nillable="true" type="tns:VIPReasonCode"/><xs:element name="workplaceBuildingIDField" nillable="true" type="xs:string"/><xs:element name="workplaceBusinessAddressUUIDField" nillable="true" type="tns:UUID"/><xs:element name="workplaceDepartmentNameField" nillable="true" type="xs:string"/><xs:element name="workplaceEmailURIField" nillable="true" type="tns:EmailURI"/><xs:element name="workplaceFacsimileFormattedNumberDescriptionField" nillable="true" type="xs:string"/><xs:element name="workplaceFloorIDField" nillable="true" type="xs:string"/><xs:element name="workplaceFormattedAddressField" nillable="true" type="tns:CustomerReponseCustomerFormattedAddress"/><xs:element name="workplaceFunctionalTitleNameField" nillable="true" type="xs:string"/><xs:element name="workplacePreferredCommunicationMediumTypeCodeField" nillable="true" type="tns:CommunicationMediumTypeCode"/><xs:element name="workplaceRoomIDField" nillable="true" type="xs:string"/><xs:element name="workplaceTelephoneField" nillable="true" type="tns:ArrayOfCustomerReponseCustomerWorkplaceTelephone"/><xs:element name="workplaceWebURIField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="CustomerReponseCustomerContactPerson" nillable="true" type="tns:CustomerReponseCustomerContactPerson"/><xs:complexType name="AcademicTitleCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="listAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="AcademicTitleCode" nillable="true" type="tns:AcademicTitleCode"/><xs:complexType name="ArrayOfCustomerReponseCustomerContactPersonAddressInformation"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="CustomerReponseCustomerContactPersonAddressInformation" nillable="true" type="tns:CustomerReponseCustomerContactPersonAddressInformation"/></xs:sequence></xs:complexType><xs:element name="ArrayOfCustomerReponseCustomerContactPersonAddressInformation" nillable="true" type="tns:ArrayOfCustomerReponseCustomerContactPersonAddressInformation"/><xs:complexType name="CustomerReponseCustomerContactPersonAddressInformation"><xs:sequence><xs:element name="addressField" nillable="true" type="tns:CustomerReponseCustomerContactPersonAddress"/><xs:element name="addressUsageField" nillable="true" type="tns:CustomerReponseCustomerAddressUsage"/><xs:element name="currentAddressSnapshotUUIDField" nillable="true" type="tns:UUID"/><xs:element name="uUIDField" nillable="true" type="tns:UUID"/></xs:sequence></xs:complexType><xs:element name="CustomerReponseCustomerContactPersonAddressInformation" nillable="true" type="tns:CustomerReponseCustomerContactPersonAddressInformation"/><xs:complexType name="CustomerReponseCustomerContactPersonAddress"><xs:sequence><xs:element name="emailURIField" nillable="true" type="tns:EmailURI"/><xs:element name="facsimileFormattedNumberDescriptionField" nillable="true" type="xs:string"/><xs:element name="formattedAddressField" nillable="true" type="tns:CustomerReponseCustomerFormattedAddress"/><xs:element name="postalAddressField" nillable="true" type="tns:CustomerReponseCustomerAddressPostalAddress"/><xs:element name="telephoneField" nillable="true" type="tns:ArrayOfCustomerReponseCustomerContactPersonTelephone"/></xs:sequence></xs:complexType><xs:element name="CustomerReponseCustomerContactPersonAddress" nillable="true" type="tns:CustomerReponseCustomerContactPersonAddress"/><xs:complexType name="ArrayOfCustomerReponseCustomerContactPersonTelephone"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="CustomerReponseCustomerContactPersonTelephone" nillable="true" type="tns:CustomerReponseCustomerContactPersonTelephone"/></xs:sequence></xs:complexType><xs:element name="ArrayOfCustomerReponseCustomerContactPersonTelephone" nillable="true" type="tns:ArrayOfCustomerReponseCustomerContactPersonTelephone"/><xs:complexType name="CustomerReponseCustomerContactPersonTelephone"><xs:sequence><xs:element name="formattedNumberDescriptionField" nillable="true" type="xs:string"/><xs:element name="mobilePhoneNumberIndicatorField" type="xs:boolean"/><xs:element name="mobilePhoneNumberIndicatorFieldSpecified" type="xs:boolean"/></xs:sequence></xs:complexType><xs:element name="CustomerReponseCustomerContactPersonTelephone" nillable="true" type="tns:CustomerReponseCustomerContactPersonTelephone"/><xs:complexType name="BusinessPartnerFunctionTypeCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="listAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="BusinessPartnerFunctionTypeCode" nillable="true" type="tns:BusinessPartnerFunctionTypeCode"/><xs:complexType name="BusinessPartnerFunctionalAreaCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="listAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="BusinessPartnerFunctionalAreaCode" nillable="true" type="tns:BusinessPartnerFunctionalAreaCode"/><xs:complexType name="FormOfAddressCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="FormOfAddressCode" nillable="true" type="tns:FormOfAddressCode"/><xs:simpleType name="PartyLifeCycleStatusCode"><xs:restriction base="xs:string"><xs:enumeration value="Item1"/><xs:enumeration value="Item2"/><xs:enumeration value="Item3"/><xs:enumeration value="Item4"/><xs:enumeration value="Item5"/></xs:restriction></xs:simpleType><xs:element name="PartyLifeCycleStatusCode" nillable="true" type="tns:PartyLifeCycleStatusCode"/><xs:complexType name="MaritalStatusCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="listAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="MaritalStatusCode" nillable="true" type="tns:MaritalStatusCode"/><xs:complexType name="OccupationCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="OccupationCode" nillable="true" type="tns:OccupationCode"/><xs:complexType name="VIPReasonCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="listAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="VIPReasonCode" nillable="true" type="tns:VIPReasonCode"/><xs:complexType name="ArrayOfCustomerReponseCustomerWorkplaceTelephone"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="CustomerReponseCustomerWorkplaceTelephone" nillable="true" type="tns:CustomerReponseCustomerWorkplaceTelephone"/></xs:sequence></xs:complexType><xs:element name="ArrayOfCustomerReponseCustomerWorkplaceTelephone" nillable="true" type="tns:ArrayOfCustomerReponseCustomerWorkplaceTelephone"/><xs:complexType name="CustomerReponseCustomerWorkplaceTelephone"><xs:sequence><xs:element name="formattedNumberDescriptionField" nillable="true" type="xs:string"/><xs:element name="mobilePhoneNumberIndicatorField" type="xs:boolean"/><xs:element name="mobilePhoneNumberIndicatorFieldSpecified" type="xs:boolean"/></xs:sequence></xs:complexType><xs:element name="CustomerReponseCustomerWorkplaceTelephone" nillable="true" type="tns:CustomerReponseCustomerWorkplaceTelephone"/><xs:complexType name="ArrayOfCustomerReponseCustomerDirectResponsibility"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="CustomerReponseCustomerDirectResponsibility" nillable="true" type="tns:CustomerReponseCustomerDirectResponsibility"/></xs:sequence></xs:complexType><xs:element name="ArrayOfCustomerReponseCustomerDirectResponsibility" nillable="true" type="tns:ArrayOfCustomerReponseCustomerDirectResponsibility"/><xs:complexType name="CustomerReponseCustomerDirectResponsibility"><xs:sequence><xs:element name="employeeIDField" nillable="true" type="tns:EmployeeID"/><xs:element name="partyRoleCodeField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="CustomerReponseCustomerDirectResponsibility" nillable="true" type="tns:CustomerReponseCustomerDirectResponsibility"/><xs:complexType name="EmployeeID"><xs:sequence><xs:element name="schemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="schemeIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="EmployeeID" nillable="true" type="tns:EmployeeID"/><xs:complexType name="ArrayOfCustomerReponseCustomerGeneralProductTaxExemption"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="CustomerReponseCustomerGeneralProductTaxExemption" nillable="true" type="tns:CustomerReponseCustomerGeneralProductTaxExemption"/></xs:sequence></xs:complexType><xs:element name="ArrayOfCustomerReponseCustomerGeneralProductTaxExemption" nillable="true" type="tns:ArrayOfCustomerReponseCustomerGeneralProductTaxExemption"/><xs:complexType name="CustomerReponseCustomerGeneralProductTaxExemption"><xs:sequence><xs:element name="countryCodeField" nillable="true" type="xs:string"/><xs:element name="reasonCodeField" nillable="true" type="tns:TaxExemptionReasonCode"/><xs:element name="regionCodeField" nillable="true" type="tns:RegionCode"/><xs:element name="taxTypeCodeField" nillable="true" type="tns:TaxTypeCode"/></xs:sequence></xs:complexType><xs:element name="CustomerReponseCustomerGeneralProductTaxExemption" nillable="true" type="tns:CustomerReponseCustomerGeneralProductTaxExemption"/><xs:complexType name="TaxExemptionReasonCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="TaxExemptionReasonCode" nillable="true" type="tns:TaxExemptionReasonCode"/><xs:complexType name="TaxTypeCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="TaxTypeCode" nillable="true" type="tns:TaxTypeCode"/><xs:complexType name="IndustrialSectorCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="listAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="IndustrialSectorCode" nillable="true" type="tns:IndustrialSectorCode"/><xs:complexType name="NielsenRegionCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="listAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="NielsenRegionCode" nillable="true" type="tns:NielsenRegionCode"/><xs:complexType name="ArrayOfCustomerReponseCustomerOperatingHoursInformation"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="CustomerReponseCustomerOperatingHoursInformation" nillable="true" type="tns:CustomerReponseCustomerOperatingHoursInformation"/></xs:sequence></xs:complexType><xs:element name="ArrayOfCustomerReponseCustomerOperatingHoursInformation" nillable="true" type="tns:ArrayOfCustomerReponseCustomerOperatingHoursInformation"/><xs:complexType name="CustomerReponseCustomerOperatingHoursInformation"><xs:sequence><xs:element name="recurringDayProgrammeField" nillable="true" type="tns:ArrayOfCustomerReponseCustomerOperatingHoursInformationRecurringDayProgramme"/><xs:element name="roleCodeField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="CustomerReponseCustomerOperatingHoursInformation" nillable="true" type="tns:CustomerReponseCustomerOperatingHoursInformation"/><xs:complexType name="ArrayOfCustomerReponseCustomerOperatingHoursInformationRecurringDayProgramme"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="CustomerReponseCustomerOperatingHoursInformationRecurringDayProgramme" nillable="true" type="tns:CustomerReponseCustomerOperatingHoursInformationRecurringDayProgramme"/></xs:sequence></xs:complexType><xs:element name="ArrayOfCustomerReponseCustomerOperatingHoursInformationRecurringDayProgramme" nillable="true" type="tns:ArrayOfCustomerReponseCustomerOperatingHoursInformationRecurringDayProgramme"/><xs:complexType name="CustomerReponseCustomerOperatingHoursInformationRecurringDayProgramme"><xs:sequence><xs:element name="operatingHoursField" nillable="true" type="tns:ArrayOfCustomerReponseCustomerRecurringDayProgrammeOperationHours"/><xs:element name="weekdaySelectionField" nillable="true" type="tns:WeekdaySelection"/></xs:sequence></xs:complexType><xs:element name="CustomerReponseCustomerOperatingHoursInformationRecurringDayProgramme" nillable="true" type="tns:CustomerReponseCustomerOperatingHoursInformationRecurringDayProgramme"/><xs:complexType name="ArrayOfCustomerReponseCustomerRecurringDayProgrammeOperationHours"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="CustomerReponseCustomerRecurringDayProgrammeOperationHours" nillable="true" type="tns:CustomerReponseCustomerRecurringDayProgrammeOperationHours"/></xs:sequence></xs:complexType><xs:element name="ArrayOfCustomerReponseCustomerRecurringDayProgrammeOperationHours" nillable="true" type="tns:ArrayOfCustomerReponseCustomerRecurringDayProgrammeOperationHours"/><xs:complexType name="CustomerReponseCustomerRecurringDayProgrammeOperationHours"><xs:sequence><xs:element name="timePeriodField" nillable="true" type="tns:UPPEROPEN_TimePeriod"/></xs:sequence></xs:complexType><xs:element name="CustomerReponseCustomerRecurringDayProgrammeOperationHours" nillable="true" type="tns:CustomerReponseCustomerRecurringDayProgrammeOperationHours"/><xs:complexType name="UPPEROPEN_TimePeriod"><xs:sequence><xs:element name="endTimeField" type="xs:dateTime"/><xs:element name="endTimeFieldSpecified" type="xs:boolean"/><xs:element name="startTimeField" type="xs:dateTime"/><xs:element name="startTimeFieldSpecified" type="xs:boolean"/></xs:sequence></xs:complexType><xs:element name="UPPEROPEN_TimePeriod" nillable="true" type="tns:UPPEROPEN_TimePeriod"/><xs:complexType name="WeekdaySelection"><xs:sequence><xs:element name="fridayIndicatorField" type="xs:boolean"/><xs:element name="fridayIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="mondayIndicatorField" type="xs:boolean"/><xs:element name="mondayIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="saturdayIndicatorField" type="xs:boolean"/><xs:element name="saturdayIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="sundayIndicatorField" type="xs:boolean"/><xs:element name="sundayIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="thursdayIndicatorField" type="xs:boolean"/><xs:element name="thursdayIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="tuesdayIndicatorField" type="xs:boolean"/><xs:element name="tuesdayIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="wednesdayIndicatorField" type="xs:boolean"/><xs:element name="wednesdayIndicatorFieldSpecified" type="xs:boolean"/></xs:sequence></xs:complexType><xs:element name="WeekdaySelection" nillable="true" type="tns:WeekdaySelection"/><xs:complexType name="CustomerReponseCustomerOrganisation"><xs:sequence><xs:element name="companyLegalFormCodeField" nillable="true" type="tns:CompanyLegalFormCode"/><xs:element name="firstLineNameField" nillable="true" type="xs:string"/><xs:element name="secondLineNameField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="CustomerReponseCustomerOrganisation" nillable="true" type="tns:CustomerReponseCustomerOrganisation"/><xs:complexType name="CompanyLegalFormCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="listAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="CompanyLegalFormCode" nillable="true" type="tns:CompanyLegalFormCode"/><xs:complexType name="ArrayOfCustomerReponseCustomerPaymentCardDetails"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="CustomerReponseCustomerPaymentCardDetails" nillable="true" type="tns:CustomerReponseCustomerPaymentCardDetails"/></xs:sequence></xs:complexType><xs:element name="ArrayOfCustomerReponseCustomerPaymentCardDetails" nillable="true" type="tns:ArrayOfCustomerReponseCustomerPaymentCardDetails"/><xs:complexType name="CustomerReponseCustomerPaymentCardDetails"><xs:sequence><xs:element name="blockingReasonCodeField" nillable="true" type="tns:PaymentCardBlockingReasonCode"/><xs:element name="cityNameField" nillable="true" type="xs:string"/><xs:element name="countryCodeField" nillable="true" type="xs:string"/><xs:element name="defaultIndicatorField" type="xs:boolean"/><xs:element name="defaultIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="houseIDField" nillable="true" type="xs:string"/><xs:element name="idField" nillable="true" type="xs:string"/><xs:element name="paymentCardExpirationDateField" type="xs:dateTime"/><xs:element name="paymentCardExpirationDateFieldSpecified" type="xs:boolean"/><xs:element name="paymentCardHolderNameField" nillable="true" type="xs:string"/><xs:element name="paymentCardIDField" nillable="true" type="tns:PaymentCardID"/><xs:element name="paymentCardTypeCodeField" nillable="true" type="tns:PaymentCardTypeCode"/><xs:element name="postalCodeField" nillable="true" type="xs:string"/><xs:element name="regionCodeField" nillable="true" type="tns:RegionCode"/><xs:element name="streetNameField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="CustomerReponseCustomerPaymentCardDetails" nillable="true" type="tns:CustomerReponseCustomerPaymentCardDetails"/><xs:complexType name="PaymentCardBlockingReasonCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="listAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="PaymentCardBlockingReasonCode" nillable="true" type="tns:PaymentCardBlockingReasonCode"/><xs:complexType name="PaymentCardID"><xs:sequence><xs:element name="schemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="schemeAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="schemeAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="schemeAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="schemeIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="PaymentCardID" nillable="true" type="tns:PaymentCardID"/><xs:complexType name="PaymentCardTypeCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="PaymentCardTypeCode" nillable="true" type="tns:PaymentCardTypeCode"/><xs:complexType name="ArrayOfCustomerReponseCustomerPaymentData"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="CustomerReponseCustomerPaymentData" nillable="true" type="tns:CustomerReponseCustomerPaymentData"/></xs:sequence></xs:complexType><xs:element name="ArrayOfCustomerReponseCustomerPaymentData" nillable="true" type="tns:ArrayOfCustomerReponseCustomerPaymentData"/><xs:complexType name="CustomerReponseCustomerPaymentData"><xs:sequence><xs:element name="accountDebtorExternalIDField" nillable="true" type="xs:string"/><xs:element name="accountDeterminationDebtorGroupCodeField" nillable="true" type="tns:AccountDeterminationDebtorGroupCode"/><xs:element name="bankChargeBearerCodeField" nillable="true" type="xs:string"/><xs:element name="billOfExchangeBankDetailsIDField" nillable="true" type="xs:string"/><xs:element name="companyIDField" nillable="true" type="xs:string"/><xs:element name="creditLimitAmountField" nillable="true" type="tns:Amount"/><xs:element name="directDebitBankDetailsIDField" nillable="true" type="xs:string"/><xs:element name="directDebitValidityPeriodField" nillable="true" type="tns:CLOSED_DatePeriod"/><xs:element name="firstPaymentInstructionCodeField" nillable="true" type="xs:string"/><xs:element name="fourthPaymentInstructionCodeField" nillable="true" type="xs:string"/><xs:element name="paymentAdviceRequiredIndicatorField" type="xs:boolean"/><xs:element name="paymentAdviceRequiredIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="paymentBlockExpirationDateTimeField" type="xs:dateTime"/><xs:element name="paymentBlockExpirationDateTimeFieldSpecified" type="xs:boolean"/><xs:element name="paymentBlockingReasonCodeField" nillable="true" type="tns:PaymentBlockingReasonCode"/><xs:element name="paymentCardDetailsIDField" nillable="true" type="xs:string"/><xs:element name="paymentCardValidityPeriodField" nillable="true" type="tns:CLOSED_DatePeriod"/><xs:element name="paymentFormField" nillable="true" type="tns:ArrayOfCustomerReponseCustomerPaymentDataPaymentForm"/><xs:element name="secondPaymentInstructionCodeField" nillable="true" type="xs:string"/><xs:element name="thirdPaymentInstructionCodeField" nillable="true" type="xs:string"/><xs:element name="uUIDField" nillable="true" type="tns:UUID"/></xs:sequence></xs:complexType><xs:element name="CustomerReponseCustomerPaymentData" nillable="true" type="tns:CustomerReponseCustomerPaymentData"/><xs:complexType name="AccountDeterminationDebtorGroupCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="AccountDeterminationDebtorGroupCode" nillable="true" type="tns:AccountDeterminationDebtorGroupCode"/><xs:complexType name="Amount"><xs:sequence><xs:element name="currencyCodeField" nillable="true" type="xs:string"/><xs:element name="valueField" type="xs:decimal"/></xs:sequence></xs:complexType><xs:element name="Amount" nillable="true" type="tns:Amount"/><xs:complexType name="PaymentBlockingReasonCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="PaymentBlockingReasonCode" nillable="true" type="tns:PaymentBlockingReasonCode"/><xs:complexType name="ArrayOfCustomerReponseCustomerPaymentDataPaymentForm"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="CustomerReponseCustomerPaymentDataPaymentForm" nillable="true" type="tns:CustomerReponseCustomerPaymentDataPaymentForm"/></xs:sequence></xs:complexType><xs:element name="ArrayOfCustomerReponseCustomerPaymentDataPaymentForm" nillable="true" type="tns:ArrayOfCustomerReponseCustomerPaymentDataPaymentForm"/><xs:complexType name="CustomerReponseCustomerPaymentDataPaymentForm"><xs:sequence><xs:element name="paymentFormCodeField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="CustomerReponseCustomerPaymentDataPaymentForm" nillable="true" type="tns:CustomerReponseCustomerPaymentDataPaymentForm"/><xs:complexType name="CustomerReponseCustomerPerson"><xs:sequence><xs:element name="academicTitleCodeField" nillable="true" type="tns:AcademicTitleCode"/><xs:element name="birthDateField" type="xs:dateTime"/><xs:element name="birthDateFieldSpecified" type="xs:boolean"/><xs:element name="birthNameField" nillable="true" type="xs:string"/><xs:element name="familyNameField" nillable="true" type="xs:string"/><xs:element name="formOfAddressCodeField" nillable="true" type="tns:FormOfAddressCode"/><xs:element name="genderCodeField" nillable="true" type="xs:string"/><xs:element name="givenNameField" nillable="true" type="xs:string"/><xs:element name="middleNameField" nillable="true" type="xs:string"/><xs:element name="nameFormatCountryCodeField" nillable="true" type="xs:string"/><xs:element name="nickNameField" nillable="true" type="xs:string"/><xs:element name="nonVerbalCommunicationLanguageCodeField" nillable="true" type="xs:string"/><xs:element name="occupationCodeField" nillable="true" type="tns:OccupationCode"/></xs:sequence></xs:complexType><xs:element name="CustomerReponseCustomerPerson" nillable="true" type="tns:CustomerReponseCustomerPerson"/><xs:complexType name="ArrayOfCustomerReponseCustomerRelationship"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="CustomerReponseCustomerRelationship" nillable="true" type="tns:CustomerReponseCustomerRelationship"/></xs:sequence></xs:complexType><xs:element name="ArrayOfCustomerReponseCustomerRelationship" nillable="true" type="tns:ArrayOfCustomerReponseCustomerRelationship"/><xs:complexType name="CustomerReponseCustomerRelationship"><xs:sequence><xs:element name="relationshipBusinessPartnerInternalIDField" nillable="true" type="xs:string"/><xs:element name="relationshipBusinessPartnerUUIDField" nillable="true" type="tns:UUID"/><xs:element name="roleCodeField" nillable="true" type="tns:BusinessPartnerRelationshipRoleCode"/></xs:sequence></xs:complexType><xs:element name="CustomerReponseCustomerRelationship" nillable="true" type="tns:CustomerReponseCustomerRelationship"/><xs:complexType name="BusinessPartnerRelationshipRoleCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="BusinessPartnerRelationshipRoleCode" nillable="true" type="tns:BusinessPartnerRelationshipRoleCode"/><xs:complexType name="ArrayOfCustomerReponseCustomerSalesArrangement"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="CustomerReponseCustomerSalesArrangement" nillable="true" type="tns:CustomerReponseCustomerSalesArrangement"/></xs:sequence></xs:complexType><xs:element name="ArrayOfCustomerReponseCustomerSalesArrangement" nillable="true" type="tns:ArrayOfCustomerReponseCustomerSalesArrangement"/><xs:complexType name="CustomerReponseCustomerSalesArrangement"><xs:sequence><xs:element name="cashDiscountTermsCodeField" nillable="true" type="tns:CashDiscountTermsCode"/><xs:element name="completeDeliveryRequestedIndicatorField" type="xs:boolean"/><xs:element name="completeDeliveryRequestedIndicatorFieldSpecified" type="xs:boolean"/><xs:element name="currencyCodeField" nillable="true" type="xs:string"/><xs:element name="customerGroupCodeField" nillable="true" type="tns:CustomerGroupCode"/><xs:element name="deliveryPriorityCodeField" nillable="true" type="xs:string"/><xs:element name="distributionChannelCodeField" nillable="true" type="tns:DistributionChannelCode"/><xs:element name="incotermsField" nillable="true" type="tns:Incoterms"/><xs:element name="salesOrganisationIDField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="CustomerReponseCustomerSalesArrangement" nillable="true" type="tns:CustomerReponseCustomerSalesArrangement"/><xs:complexType name="CashDiscountTermsCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="listAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="CashDiscountTermsCode" nillable="true" type="tns:CashDiscountTermsCode"/><xs:complexType name="CustomerGroupCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="listAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="CustomerGroupCode" nillable="true" type="tns:CustomerGroupCode"/><xs:complexType name="DistributionChannelCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="listAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="DistributionChannelCode" nillable="true" type="tns:DistributionChannelCode"/><xs:complexType name="Incoterms"><xs:sequence><xs:element name="classificationCodeField" nillable="true" type="xs:string"/><xs:element name="transferLocationNameField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="Incoterms" nillable="true" type="tns:Incoterms"/><xs:complexType name="ArrayOfCustomerReponseCustomerTaxNumber"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="CustomerReponseCustomerTaxNumber" nillable="true" type="tns:CustomerReponseCustomerTaxNumber"/></xs:sequence></xs:complexType><xs:element name="ArrayOfCustomerReponseCustomerTaxNumber" nillable="true" type="tns:ArrayOfCustomerReponseCustomerTaxNumber"/><xs:complexType name="CustomerReponseCustomerTaxNumber"><xs:sequence><xs:element name="countryCodeField" nillable="true" type="xs:string"/><xs:element name="partyTaxIDField" nillable="true" type="tns:PartyTaxID"/><xs:element name="taxIdentificationNumberTypeCodeField" nillable="true" type="tns:TaxIdentificationNumberTypeCode"/></xs:sequence></xs:complexType><xs:element name="CustomerReponseCustomerTaxNumber" nillable="true" type="tns:CustomerReponseCustomerTaxNumber"/><xs:complexType name="PartyTaxID"><xs:sequence><xs:element name="schemeIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="PartyTaxID" nillable="true" type="tns:PartyTaxID"/><xs:complexType name="TaxIdentificationNumberTypeCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="TaxIdentificationNumberTypeCode" nillable="true" type="tns:TaxIdentificationNumberTypeCode"/><xs:complexType name="TaxPayerCategoryCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="TaxPayerCategoryCode" nillable="true" type="tns:TaxPayerCategoryCode"/><xs:complexType name="ArrayOfCustomerReponseCustomerText"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="CustomerReponseCustomerText" nillable="true" type="tns:CustomerReponseCustomerText"/></xs:sequence></xs:complexType><xs:element name="ArrayOfCustomerReponseCustomerText" nillable="true" type="tns:ArrayOfCustomerReponseCustomerText"/><xs:complexType name="CustomerReponseCustomerText"><xs:sequence><xs:element name="contentTextField" nillable="true" type="xs:string"/><xs:element name="typeCodeField" nillable="true" type="tns:TextCollectionTextTypeCode"/></xs:sequence></xs:complexType><xs:element name="CustomerReponseCustomerText" nillable="true" type="tns:CustomerReponseCustomerText"/><xs:complexType name="TextCollectionTextTypeCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="listAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="TextCollectionTextTypeCode" nillable="true" type="tns:TextCollectionTextTypeCode"/></xs:schema>
|
@@ -0,0 +1 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?><xs:schema elementFormDefault="qualified" targetNamespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://schemas.microsoft.com/2003/10/Serialization/Arrays"><xs:complexType name="ArrayOfstring"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="string" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="ArrayOfstring" nillable="true" type="tns:ArrayOfstring"/></xs:schema>
|
@@ -0,0 +1 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?><xs:schema elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/NBSBYDLibrary" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://schemas.datacontract.org/2004/07/NBSBYDLibrary"><xs:import schemaLocation="http://bydexchange.nbs-us.com/BYDExchangeServer.svc?xsd=xsd1" namespace="http://schemas.microsoft.com/2003/10/Serialization/"/><xs:complexType name="ArrayOfSalesOrder"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="SalesOrder" nillable="true" type="tns:SalesOrder"/></xs:sequence></xs:complexType><xs:element name="ArrayOfSalesOrder" nillable="true" type="tns:ArrayOfSalesOrder"/><xs:complexType name="SalesOrder"><xs:sequence><xs:element name="_Billto" nillable="true" type="tns:CustomerAddress"/><xs:element name="_CustID" nillable="true" type="xs:string"/><xs:element name="_ExtID" nillable="true" type="xs:string"/><xs:element name="_Shipping" type="xs:double"/><xs:element name="_Shipto" nillable="true" type="tns:CustomerAddress"/><xs:element name="_items" nillable="true" type="tns:ArrayOfSalesOrder.Line"/></xs:sequence></xs:complexType><xs:element name="SalesOrder" nillable="true" type="tns:SalesOrder"/><xs:complexType name="CustomerAddress"><xs:sequence><xs:element name="_CareOf" nillable="true" type="xs:string"/><xs:element name="_CityName" nillable="true" type="xs:string"/><xs:element name="_CountryCode" nillable="true" type="xs:string"/><xs:element name="_Default" type="xs:boolean"/><xs:element name="_Email" nillable="true" type="xs:string"/><xs:element name="_InternalID" nillable="true" type="xs:string"/><xs:element name="_Phone" nillable="true" type="xs:string"/><xs:element name="_PostalCode" nillable="true" type="xs:string"/><xs:element name="_RegionCode" nillable="true" type="xs:string"/><xs:element name="_StreetName" nillable="true" type="xs:string"/><xs:element name="_Type" nillable="true" type="tns:CustomerAddress.CustAddType"/><xs:element name="_fax" nillable="true" type="xs:string"/><xs:element name="_telephone" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="CustomerAddress" nillable="true" type="tns:CustomerAddress"/><xs:simpleType name="CustomerAddress.CustAddType"><xs:restriction base="xs:string"><xs:enumeration value="Shipping"><xs:annotation><xs:appinfo><EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</EnumerationValue></xs:appinfo></xs:annotation></xs:enumeration><xs:enumeration value="Billing"><xs:annotation><xs:appinfo><EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">2</EnumerationValue></xs:appinfo></xs:annotation></xs:enumeration><xs:enumeration value="Default"><xs:annotation><xs:appinfo><EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">3</EnumerationValue></xs:appinfo></xs:annotation></xs:enumeration></xs:restriction></xs:simpleType><xs:element name="CustomerAddress.CustAddType" nillable="true" type="tns:CustomerAddress.CustAddType"/><xs:complexType name="ArrayOfSalesOrder.Line"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="SalesOrder.Line" nillable="true" type="tns:SalesOrder.Line"/></xs:sequence></xs:complexType><xs:element name="ArrayOfSalesOrder.Line" nillable="true" type="tns:ArrayOfSalesOrder.Line"/><xs:complexType name="SalesOrder.Line"><xs:sequence><xs:element name="_Discount" type="xs:double"/><xs:element name="_LineTotal" type="xs:double"/><xs:element name="_Qty" type="xs:double"/><xs:element name="_SKU" nillable="true" type="xs:string"/><xs:element name="_UnitPrice" type="xs:double"/></xs:sequence></xs:complexType><xs:element name="SalesOrder.Line" nillable="true" type="tns:SalesOrder.Line"/><xs:complexType name="Customer"><xs:sequence><xs:element name="_AccountDeterminationDebtorGroupCode" nillable="true" type="xs:string"/><xs:element name="_Addresses" nillable="true" type="tns:ArrayOfCustomerAddress"/><xs:element name="_BYDID" nillable="true" type="xs:string"/><xs:element name="_CompanyName" nillable="true" type="xs:string"/><xs:element name="_DistChannel" nillable="true" type="xs:string"/><xs:element name="_ExternalId" nillable="true" type="xs:string"/><xs:element name="_FamilyName" nillable="true" type="xs:string"/><xs:element name="_GivenName" nillable="true" type="xs:string"/><xs:element name="_MasterCompanyCustomerID" nillable="true" type="xs:string"/><xs:element name="_SalesOrg" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="Customer" nillable="true" type="tns:Customer"/><xs:complexType name="ArrayOfCustomerAddress"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="CustomerAddress" nillable="true" type="tns:CustomerAddress"/></xs:sequence></xs:complexType><xs:element name="ArrayOfCustomerAddress" nillable="true" type="tns:ArrayOfCustomerAddress"/></xs:schema>
|
@@ -0,0 +1 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?><xs:schema elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/BYDConnector.SalesOrderin5" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://schemas.datacontract.org/2004/07/BYDConnector.SalesOrderin5"><xs:complexType name="SalesOrderMaintainConfirmationBundleMessage_sync"><xs:sequence><xs:element name="logField" nillable="true" type="tns:Log"/><xs:element name="salesOrderField" nillable="true" type="tns:ArrayOfSalesOrderMaintainConfirmationBundle"/></xs:sequence></xs:complexType><xs:element name="SalesOrderMaintainConfirmationBundleMessage_sync" nillable="true" type="tns:SalesOrderMaintainConfirmationBundleMessage_sync"/><xs:complexType name="Log"><xs:sequence><xs:element name="businessDocumentProcessingResultCodeField" nillable="true" type="xs:string"/><xs:element name="itemField" nillable="true" type="tns:ArrayOfLogItem"/><xs:element name="maximumLogItemSeverityCodeField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="Log" nillable="true" type="tns:Log"/><xs:complexType name="ArrayOfLogItem"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="LogItem" nillable="true" type="tns:LogItem"/></xs:sequence></xs:complexType><xs:element name="ArrayOfLogItem" nillable="true" type="tns:ArrayOfLogItem"/><xs:complexType name="LogItem"><xs:sequence><xs:element name="categoryCodeField" nillable="true" type="tns:LogItemCategoryCode"/><xs:element name="logItemNotePlaceholderSubstitutionListField" nillable="true" type="tns:LogItemNotePlaceholderSubstitutionList"/><xs:element name="noteField" nillable="true" type="xs:string"/><xs:element name="noteTemplateTextField" nillable="true" type="xs:string"/><xs:element name="referenceMessageElementNameField" nillable="true" type="xs:string"/><xs:element name="referenceObjectNodeSenderTechnicalIDField" nillable="true" type="xs:string"/><xs:element name="severityCodeField" nillable="true" type="xs:string"/><xs:element name="typeIDField" nillable="true" type="xs:string"/><xs:element name="webURIField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="LogItem" nillable="true" type="tns:LogItem"/><xs:complexType name="LogItemCategoryCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="LogItemCategoryCode" nillable="true" type="tns:LogItemCategoryCode"/><xs:complexType name="LogItemNotePlaceholderSubstitutionList"><xs:sequence><xs:element name="firstPlaceholderIDField" nillable="true" type="xs:string"/><xs:element name="firstPlaceholderSubstitutionTextField" nillable="true" type="xs:string"/><xs:element name="fourthPlaceholderIDField" nillable="true" type="xs:string"/><xs:element name="fourthPlaceholderSubstitutionTextField" nillable="true" type="xs:string"/><xs:element name="secondPlaceholderIDField" nillable="true" type="xs:string"/><xs:element name="secondPlaceholderSubstitutionTextField" nillable="true" type="xs:string"/><xs:element name="thirdPlaceholderIDField" nillable="true" type="xs:string"/><xs:element name="thirdPlaceholderSubstitutionTextField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="LogItemNotePlaceholderSubstitutionList" nillable="true" type="tns:LogItemNotePlaceholderSubstitutionList"/><xs:complexType name="ArrayOfSalesOrderMaintainConfirmationBundle"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="SalesOrderMaintainConfirmationBundle" nillable="true" type="tns:SalesOrderMaintainConfirmationBundle"/></xs:sequence></xs:complexType><xs:element name="ArrayOfSalesOrderMaintainConfirmationBundle" nillable="true" type="tns:ArrayOfSalesOrderMaintainConfirmationBundle"/><xs:complexType name="SalesOrderMaintainConfirmationBundle"><xs:sequence><xs:element name="changeStateIDField" nillable="true" type="xs:string"/><xs:element name="idField" nillable="true" type="tns:BusinessTransactionDocumentID"/><xs:element name="referenceObjectNodeSenderTechnicalIDField" nillable="true" type="xs:string"/><xs:element name="uUIDField" nillable="true" type="tns:UUID"/></xs:sequence></xs:complexType><xs:element name="SalesOrderMaintainConfirmationBundle" nillable="true" type="tns:SalesOrderMaintainConfirmationBundle"/><xs:complexType name="BusinessTransactionDocumentID"><xs:sequence><xs:element name="schemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="schemeAgencySchemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="schemeIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="BusinessTransactionDocumentID" nillable="true" type="tns:BusinessTransactionDocumentID"/><xs:complexType name="UUID"><xs:sequence><xs:element name="schemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="schemeIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="UUID" nillable="true" type="tns:UUID"/></xs:schema>
|
@@ -0,0 +1 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?><xs:schema elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/BYDConnector.CustomerIN_V1" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://schemas.datacontract.org/2004/07/BYDConnector.CustomerIN_V1"><xs:complexType name="CustomerBundleMaintainConfirmationMessage_sync_V1"><xs:sequence><xs:element name="customerField" nillable="true" type="tns:ArrayOfCustomerMaintainConfirmationBundleCustomer_V1"/><xs:element name="logField" nillable="true" type="tns:Log"/></xs:sequence></xs:complexType><xs:element name="CustomerBundleMaintainConfirmationMessage_sync_V1" nillable="true" type="tns:CustomerBundleMaintainConfirmationMessage_sync_V1"/><xs:complexType name="ArrayOfCustomerMaintainConfirmationBundleCustomer_V1"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="CustomerMaintainConfirmationBundleCustomer_V1" nillable="true" type="tns:CustomerMaintainConfirmationBundleCustomer_V1"/></xs:sequence></xs:complexType><xs:element name="ArrayOfCustomerMaintainConfirmationBundleCustomer_V1" nillable="true" type="tns:ArrayOfCustomerMaintainConfirmationBundleCustomer_V1"/><xs:complexType name="CustomerMaintainConfirmationBundleCustomer_V1"><xs:sequence><xs:element name="changeStateIDField" nillable="true" type="xs:string"/><xs:element name="internalIDField" nillable="true" type="xs:string"/><xs:element name="referenceObjectNodeSenderTechnicalIDField" nillable="true" type="xs:string"/><xs:element name="uUIDField" nillable="true" type="tns:UUID"/></xs:sequence></xs:complexType><xs:element name="CustomerMaintainConfirmationBundleCustomer_V1" nillable="true" type="tns:CustomerMaintainConfirmationBundleCustomer_V1"/><xs:complexType name="UUID"><xs:sequence><xs:element name="schemeAgencyIDField" nillable="true" type="xs:string"/><xs:element name="schemeIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="UUID" nillable="true" type="tns:UUID"/><xs:complexType name="Log"><xs:sequence><xs:element name="businessDocumentProcessingResultCodeField" nillable="true" type="xs:string"/><xs:element name="itemField" nillable="true" type="tns:ArrayOfLogItem"/><xs:element name="maximumLogItemSeverityCodeField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="Log" nillable="true" type="tns:Log"/><xs:complexType name="ArrayOfLogItem"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="LogItem" nillable="true" type="tns:LogItem"/></xs:sequence></xs:complexType><xs:element name="ArrayOfLogItem" nillable="true" type="tns:ArrayOfLogItem"/><xs:complexType name="LogItem"><xs:sequence><xs:element name="categoryCodeField" nillable="true" type="tns:LogItemCategoryCode"/><xs:element name="logItemNotePlaceholderSubstitutionListField" nillable="true" type="tns:LogItemNotePlaceholderSubstitutionList"/><xs:element name="noteField" nillable="true" type="xs:string"/><xs:element name="noteTemplateTextField" nillable="true" type="xs:string"/><xs:element name="referenceMessageElementNameField" nillable="true" type="xs:string"/><xs:element name="referenceObjectNodeSenderTechnicalIDField" nillable="true" type="xs:string"/><xs:element name="severityCodeField" nillable="true" type="xs:string"/><xs:element name="typeIDField" nillable="true" type="xs:string"/><xs:element name="webURIField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="LogItem" nillable="true" type="tns:LogItem"/><xs:complexType name="LogItemCategoryCode"><xs:sequence><xs:element name="listAgencyIDField" nillable="true" type="xs:string"/><xs:element name="listAgencySchemeAgencyIDField" type="tns:AgencyIdentificationCode"/><xs:element name="listAgencySchemeAgencyIDFieldSpecified" type="xs:boolean"/><xs:element name="listAgencySchemeIDField" nillable="true" type="xs:string"/><xs:element name="listIDField" nillable="true" type="xs:string"/><xs:element name="listVersionIDField" nillable="true" type="xs:string"/><xs:element name="valueField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="LogItemCategoryCode" nillable="true" type="tns:LogItemCategoryCode"/><xs:simpleType name="AgencyIdentificationCode"><xs:restriction base="xs:string"><xs:enumeration value="Item1"/><xs:enumeration value="Item5"/><xs:enumeration value="Item6"/><xs:enumeration value="Item16"/><xs:enumeration value="Item17"/><xs:enumeration value="Item84"/><xs:enumeration value="Item107"/><xs:enumeration value="Item109"/><xs:enumeration value="Item112"/><xs:enumeration value="Item113"/><xs:enumeration value="Item114"/><xs:enumeration value="Item116"/><xs:enumeration value="Item117"/><xs:enumeration value="Item124"/><xs:enumeration value="Item130"/><xs:enumeration value="Item131"/><xs:enumeration value="Item138"/><xs:enumeration value="Item142"/><xs:enumeration value="Item146"/><xs:enumeration value="Item262"/><xs:enumeration value="Item296"/><xs:enumeration value="Item310"/></xs:restriction></xs:simpleType><xs:element name="AgencyIdentificationCode" nillable="true" type="tns:AgencyIdentificationCode"/><xs:complexType name="LogItemNotePlaceholderSubstitutionList"><xs:sequence><xs:element name="firstPlaceholderIDField" nillable="true" type="xs:string"/><xs:element name="firstPlaceholderSubstitutionTextField" nillable="true" type="xs:string"/><xs:element name="fourthPlaceholderIDField" nillable="true" type="xs:string"/><xs:element name="fourthPlaceholderSubstitutionTextField" nillable="true" type="xs:string"/><xs:element name="secondPlaceholderIDField" nillable="true" type="xs:string"/><xs:element name="secondPlaceholderSubstitutionTextField" nillable="true" type="xs:string"/><xs:element name="thirdPlaceholderIDField" nillable="true" type="xs:string"/><xs:element name="thirdPlaceholderSubstitutionTextField" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="LogItemNotePlaceholderSubstitutionList" nillable="true" type="tns:LogItemNotePlaceholderSubstitutionList"/></xs:schema>
|
@@ -0,0 +1,2437 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<wsdl:definitions targetNamespace="urn:SecurityServer" xmlns:soapenc12="http://www.w3.org/2003/05/soap-encoding" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:ns5="http://rmi.java" xmlns:ns6="http://model.integration.crowd.atlassian.com" xmlns:ns7="http://user.model.integration.crowd.atlassian.com" xmlns:ns2="http://soap.integration.crowd.atlassian.com" xmlns:ns1="http://authentication.integration.crowd.atlassian.com" xmlns:ns4="http://lang.java" xmlns:ns3="http://exception.integration.crowd.atlassian.com" xmlns:tns="urn:SecurityServer" xmlns:soap11="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc11="http://schemas.xmlsoap.org/soap/encoding/" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
|
3
|
+
<wsdl:types>
|
4
|
+
<xsd:schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://authentication.integration.crowd.atlassian.com">
|
5
|
+
<xsd:complexType name="AuthenticatedToken">
|
6
|
+
<xsd:sequence>
|
7
|
+
<xsd:element minOccurs="0" name="name" nillable="true" type="xsd:string"/>
|
8
|
+
<xsd:element minOccurs="0" name="token" nillable="true" type="xsd:string"/>
|
9
|
+
</xsd:sequence>
|
10
|
+
</xsd:complexType>
|
11
|
+
<xsd:complexType name="PasswordCredential">
|
12
|
+
<xsd:sequence>
|
13
|
+
<xsd:element minOccurs="0" name="credential" nillable="true" type="xsd:string"/>
|
14
|
+
<xsd:element minOccurs="0" name="encryptedCredential" type="xsd:boolean"/>
|
15
|
+
</xsd:sequence>
|
16
|
+
</xsd:complexType>
|
17
|
+
<xsd:complexType name="ArrayOfValidationFactor">
|
18
|
+
<xsd:sequence>
|
19
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="ValidationFactor" nillable="true" type="ns1:ValidationFactor"/>
|
20
|
+
</xsd:sequence>
|
21
|
+
</xsd:complexType>
|
22
|
+
<xsd:complexType name="ValidationFactor">
|
23
|
+
<xsd:sequence>
|
24
|
+
<xsd:element minOccurs="0" name="name" nillable="true" type="xsd:string"/>
|
25
|
+
<xsd:element minOccurs="0" name="value" nillable="true" type="xsd:string"/>
|
26
|
+
</xsd:sequence>
|
27
|
+
</xsd:complexType>
|
28
|
+
<xsd:complexType name="UserAuthenticationContext">
|
29
|
+
<xsd:sequence>
|
30
|
+
<xsd:element minOccurs="0" name="application" nillable="true" type="xsd:string"/>
|
31
|
+
<xsd:element minOccurs="0" name="credential" nillable="true" type="ns1:PasswordCredential"/>
|
32
|
+
<xsd:element minOccurs="0" name="name" nillable="true" type="xsd:string"/>
|
33
|
+
<xsd:element minOccurs="0" name="validationFactors" nillable="true" type="ns1:ArrayOfValidationFactor"/>
|
34
|
+
</xsd:sequence>
|
35
|
+
</xsd:complexType>
|
36
|
+
<xsd:complexType name="ApplicationAuthenticationContext">
|
37
|
+
<xsd:sequence>
|
38
|
+
<xsd:element minOccurs="0" name="credential" nillable="true" type="ns1:PasswordCredential"/>
|
39
|
+
<xsd:element minOccurs="0" name="name" nillable="true" type="xsd:string"/>
|
40
|
+
<xsd:element minOccurs="0" name="validationFactors" nillable="true" type="ns1:ArrayOfValidationFactor"/>
|
41
|
+
</xsd:sequence>
|
42
|
+
</xsd:complexType>
|
43
|
+
</xsd:schema>
|
44
|
+
<xsd:schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="urn:SecurityServer">
|
45
|
+
<xsd:element name="findAllGroupRelationships">
|
46
|
+
<xsd:complexType>
|
47
|
+
<xsd:sequence>
|
48
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
49
|
+
</xsd:sequence>
|
50
|
+
</xsd:complexType>
|
51
|
+
</xsd:element>
|
52
|
+
<xsd:complexType name="ArrayOfString">
|
53
|
+
<xsd:sequence>
|
54
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="string" nillable="true" type="xsd:string"/>
|
55
|
+
</xsd:sequence>
|
56
|
+
</xsd:complexType>
|
57
|
+
<xsd:element name="findAllGroupRelationshipsResponse">
|
58
|
+
<xsd:complexType>
|
59
|
+
<xsd:sequence>
|
60
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="ns2:ArrayOfSOAPNestableGroup"/>
|
61
|
+
</xsd:sequence>
|
62
|
+
</xsd:complexType>
|
63
|
+
</xsd:element>
|
64
|
+
<xsd:element name="InvalidAuthorizationTokenException" type="ns3:InvalidAuthorizationTokenException"/>
|
65
|
+
<xsd:element name="RemoteException" type="ns5:RemoteException"/>
|
66
|
+
<xsd:element name="addGroup">
|
67
|
+
<xsd:complexType>
|
68
|
+
<xsd:sequence>
|
69
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
70
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="ns2:SOAPGroup"/>
|
71
|
+
</xsd:sequence>
|
72
|
+
</xsd:complexType>
|
73
|
+
</xsd:element>
|
74
|
+
<xsd:element name="addGroupResponse">
|
75
|
+
<xsd:complexType>
|
76
|
+
<xsd:sequence>
|
77
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="ns2:SOAPGroup"/>
|
78
|
+
</xsd:sequence>
|
79
|
+
</xsd:complexType>
|
80
|
+
</xsd:element>
|
81
|
+
<xsd:element name="InvalidGroupException" type="ns3:InvalidGroupException"/>
|
82
|
+
<xsd:element name="ApplicationPermissionException" type="ns3:ApplicationPermissionException"/>
|
83
|
+
<xsd:element name="addPrincipalToRole">
|
84
|
+
<xsd:complexType>
|
85
|
+
<xsd:sequence>
|
86
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
87
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="xsd:string"/>
|
88
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in2" nillable="true" type="xsd:string"/>
|
89
|
+
</xsd:sequence>
|
90
|
+
</xsd:complexType>
|
91
|
+
</xsd:element>
|
92
|
+
<xsd:element name="addPrincipalToRoleResponse">
|
93
|
+
<xsd:complexType/>
|
94
|
+
</xsd:element>
|
95
|
+
<xsd:element name="ObjectNotFoundException" type="ns3:ObjectNotFoundException"/>
|
96
|
+
<xsd:element name="findPrincipalByToken">
|
97
|
+
<xsd:complexType>
|
98
|
+
<xsd:sequence>
|
99
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
100
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="xsd:string"/>
|
101
|
+
</xsd:sequence>
|
102
|
+
</xsd:complexType>
|
103
|
+
</xsd:element>
|
104
|
+
<xsd:element name="findPrincipalByTokenResponse">
|
105
|
+
<xsd:complexType>
|
106
|
+
<xsd:sequence>
|
107
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="ns2:SOAPPrincipal"/>
|
108
|
+
</xsd:sequence>
|
109
|
+
</xsd:complexType>
|
110
|
+
</xsd:element>
|
111
|
+
<xsd:element name="InvalidTokenException" type="ns3:InvalidTokenException"/>
|
112
|
+
<xsd:element name="updatePrincipalCredential">
|
113
|
+
<xsd:complexType>
|
114
|
+
<xsd:sequence>
|
115
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
116
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="xsd:string"/>
|
117
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in2" nillable="true" type="ns1:PasswordCredential"/>
|
118
|
+
</xsd:sequence>
|
119
|
+
</xsd:complexType>
|
120
|
+
</xsd:element>
|
121
|
+
<xsd:element name="updatePrincipalCredentialResponse">
|
122
|
+
<xsd:complexType/>
|
123
|
+
</xsd:element>
|
124
|
+
<xsd:element name="InvalidCredentialException" type="ns3:InvalidCredentialException"/>
|
125
|
+
<xsd:element name="getGrantedAuthorities">
|
126
|
+
<xsd:complexType>
|
127
|
+
<xsd:sequence>
|
128
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
129
|
+
</xsd:sequence>
|
130
|
+
</xsd:complexType>
|
131
|
+
</xsd:element>
|
132
|
+
<xsd:element name="getGrantedAuthoritiesResponse">
|
133
|
+
<xsd:complexType>
|
134
|
+
<xsd:sequence>
|
135
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="tns:ArrayOfString"/>
|
136
|
+
</xsd:sequence>
|
137
|
+
</xsd:complexType>
|
138
|
+
</xsd:element>
|
139
|
+
<xsd:element name="addPrincipal">
|
140
|
+
<xsd:complexType>
|
141
|
+
<xsd:sequence>
|
142
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
143
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="ns2:SOAPPrincipal"/>
|
144
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in2" nillable="true" type="ns1:PasswordCredential"/>
|
145
|
+
</xsd:sequence>
|
146
|
+
</xsd:complexType>
|
147
|
+
</xsd:element>
|
148
|
+
<xsd:element name="addPrincipalResponse">
|
149
|
+
<xsd:complexType>
|
150
|
+
<xsd:sequence>
|
151
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="ns2:SOAPPrincipal"/>
|
152
|
+
</xsd:sequence>
|
153
|
+
</xsd:complexType>
|
154
|
+
</xsd:element>
|
155
|
+
<xsd:element name="InvalidUserException" type="ns3:InvalidUserException"/>
|
156
|
+
<xsd:element name="addAttributeToPrincipal">
|
157
|
+
<xsd:complexType>
|
158
|
+
<xsd:sequence>
|
159
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
160
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="xsd:string"/>
|
161
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in2" nillable="true" type="ns2:SOAPAttribute"/>
|
162
|
+
</xsd:sequence>
|
163
|
+
</xsd:complexType>
|
164
|
+
</xsd:element>
|
165
|
+
<xsd:element name="addAttributeToPrincipalResponse">
|
166
|
+
<xsd:complexType/>
|
167
|
+
</xsd:element>
|
168
|
+
<xsd:element name="invalidatePrincipalToken">
|
169
|
+
<xsd:complexType>
|
170
|
+
<xsd:sequence>
|
171
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
172
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="xsd:string"/>
|
173
|
+
</xsd:sequence>
|
174
|
+
</xsd:complexType>
|
175
|
+
</xsd:element>
|
176
|
+
<xsd:element name="invalidatePrincipalTokenResponse">
|
177
|
+
<xsd:complexType/>
|
178
|
+
</xsd:element>
|
179
|
+
<xsd:element name="findAllGroupNames">
|
180
|
+
<xsd:complexType>
|
181
|
+
<xsd:sequence>
|
182
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
183
|
+
</xsd:sequence>
|
184
|
+
</xsd:complexType>
|
185
|
+
</xsd:element>
|
186
|
+
<xsd:element name="findAllGroupNamesResponse">
|
187
|
+
<xsd:complexType>
|
188
|
+
<xsd:sequence>
|
189
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="tns:ArrayOfString"/>
|
190
|
+
</xsd:sequence>
|
191
|
+
</xsd:complexType>
|
192
|
+
</xsd:element>
|
193
|
+
<xsd:element name="findRoleMemberships">
|
194
|
+
<xsd:complexType>
|
195
|
+
<xsd:sequence>
|
196
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
197
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="xsd:string"/>
|
198
|
+
</xsd:sequence>
|
199
|
+
</xsd:complexType>
|
200
|
+
</xsd:element>
|
201
|
+
<xsd:element name="findRoleMembershipsResponse">
|
202
|
+
<xsd:complexType>
|
203
|
+
<xsd:sequence>
|
204
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="tns:ArrayOfString"/>
|
205
|
+
</xsd:sequence>
|
206
|
+
</xsd:complexType>
|
207
|
+
</xsd:element>
|
208
|
+
<xsd:element name="removePrincipal">
|
209
|
+
<xsd:complexType>
|
210
|
+
<xsd:sequence>
|
211
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
212
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="xsd:string"/>
|
213
|
+
</xsd:sequence>
|
214
|
+
</xsd:complexType>
|
215
|
+
</xsd:element>
|
216
|
+
<xsd:element name="removePrincipalResponse">
|
217
|
+
<xsd:complexType/>
|
218
|
+
</xsd:element>
|
219
|
+
<xsd:element name="isValidPrincipalToken">
|
220
|
+
<xsd:complexType>
|
221
|
+
<xsd:sequence>
|
222
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
223
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="xsd:string"/>
|
224
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in2" nillable="true" type="ns1:ArrayOfValidationFactor"/>
|
225
|
+
</xsd:sequence>
|
226
|
+
</xsd:complexType>
|
227
|
+
</xsd:element>
|
228
|
+
<xsd:element name="isValidPrincipalTokenResponse">
|
229
|
+
<xsd:complexType>
|
230
|
+
<xsd:sequence>
|
231
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="out" type="xsd:boolean"/>
|
232
|
+
</xsd:sequence>
|
233
|
+
</xsd:complexType>
|
234
|
+
</xsd:element>
|
235
|
+
<xsd:element name="ApplicationAccessDeniedException" type="ns3:ApplicationAccessDeniedException"/>
|
236
|
+
<xsd:element name="authenticatePrincipalSimple">
|
237
|
+
<xsd:complexType>
|
238
|
+
<xsd:sequence>
|
239
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
240
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="xsd:string"/>
|
241
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in2" nillable="true" type="xsd:string"/>
|
242
|
+
</xsd:sequence>
|
243
|
+
</xsd:complexType>
|
244
|
+
</xsd:element>
|
245
|
+
<xsd:element name="authenticatePrincipalSimpleResponse">
|
246
|
+
<xsd:complexType>
|
247
|
+
<xsd:sequence>
|
248
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="xsd:string"/>
|
249
|
+
</xsd:sequence>
|
250
|
+
</xsd:complexType>
|
251
|
+
</xsd:element>
|
252
|
+
<xsd:element name="InvalidAuthenticationException" type="ns3:InvalidAuthenticationException"/>
|
253
|
+
<xsd:element name="InactiveAccountException" type="ns3:InactiveAccountException"/>
|
254
|
+
<xsd:element name="removeRole">
|
255
|
+
<xsd:complexType>
|
256
|
+
<xsd:sequence>
|
257
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
258
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="xsd:string"/>
|
259
|
+
</xsd:sequence>
|
260
|
+
</xsd:complexType>
|
261
|
+
</xsd:element>
|
262
|
+
<xsd:element name="removeRoleResponse">
|
263
|
+
<xsd:complexType/>
|
264
|
+
</xsd:element>
|
265
|
+
<xsd:element name="getCookieInfo">
|
266
|
+
<xsd:complexType>
|
267
|
+
<xsd:sequence>
|
268
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
269
|
+
</xsd:sequence>
|
270
|
+
</xsd:complexType>
|
271
|
+
</xsd:element>
|
272
|
+
<xsd:element name="getCookieInfoResponse">
|
273
|
+
<xsd:complexType>
|
274
|
+
<xsd:sequence>
|
275
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="ns2:SOAPCookieInfo"/>
|
276
|
+
</xsd:sequence>
|
277
|
+
</xsd:complexType>
|
278
|
+
</xsd:element>
|
279
|
+
<xsd:element name="updatePrincipalAttribute">
|
280
|
+
<xsd:complexType>
|
281
|
+
<xsd:sequence>
|
282
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
283
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="xsd:string"/>
|
284
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in2" nillable="true" type="ns2:SOAPAttribute"/>
|
285
|
+
</xsd:sequence>
|
286
|
+
</xsd:complexType>
|
287
|
+
</xsd:element>
|
288
|
+
<xsd:element name="updatePrincipalAttributeResponse">
|
289
|
+
<xsd:complexType/>
|
290
|
+
</xsd:element>
|
291
|
+
<xsd:element name="searchGroups">
|
292
|
+
<xsd:complexType>
|
293
|
+
<xsd:sequence>
|
294
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
295
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="ns2:ArrayOfSearchRestriction"/>
|
296
|
+
</xsd:sequence>
|
297
|
+
</xsd:complexType>
|
298
|
+
</xsd:element>
|
299
|
+
<xsd:element name="searchGroupsResponse">
|
300
|
+
<xsd:complexType>
|
301
|
+
<xsd:sequence>
|
302
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="ns2:ArrayOfSOAPGroup"/>
|
303
|
+
</xsd:sequence>
|
304
|
+
</xsd:complexType>
|
305
|
+
</xsd:element>
|
306
|
+
<xsd:element name="getCacheTime">
|
307
|
+
<xsd:complexType>
|
308
|
+
<xsd:sequence>
|
309
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
310
|
+
</xsd:sequence>
|
311
|
+
</xsd:complexType>
|
312
|
+
</xsd:element>
|
313
|
+
<xsd:element name="getCacheTimeResponse">
|
314
|
+
<xsd:complexType>
|
315
|
+
<xsd:sequence>
|
316
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="out" type="xsd:long"/>
|
317
|
+
</xsd:sequence>
|
318
|
+
</xsd:complexType>
|
319
|
+
</xsd:element>
|
320
|
+
<xsd:element name="isRoleMember">
|
321
|
+
<xsd:complexType>
|
322
|
+
<xsd:sequence>
|
323
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
324
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="xsd:string"/>
|
325
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in2" nillable="true" type="xsd:string"/>
|
326
|
+
</xsd:sequence>
|
327
|
+
</xsd:complexType>
|
328
|
+
</xsd:element>
|
329
|
+
<xsd:element name="isRoleMemberResponse">
|
330
|
+
<xsd:complexType>
|
331
|
+
<xsd:sequence>
|
332
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="out" type="xsd:boolean"/>
|
333
|
+
</xsd:sequence>
|
334
|
+
</xsd:complexType>
|
335
|
+
</xsd:element>
|
336
|
+
<xsd:element name="updateGroup">
|
337
|
+
<xsd:complexType>
|
338
|
+
<xsd:sequence>
|
339
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
340
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="xsd:string"/>
|
341
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in2" nillable="true" type="xsd:string"/>
|
342
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in3" type="xsd:boolean"/>
|
343
|
+
</xsd:sequence>
|
344
|
+
</xsd:complexType>
|
345
|
+
</xsd:element>
|
346
|
+
<xsd:element name="updateGroupResponse">
|
347
|
+
<xsd:complexType/>
|
348
|
+
</xsd:element>
|
349
|
+
<xsd:element name="addAttributeToGroup">
|
350
|
+
<xsd:complexType>
|
351
|
+
<xsd:sequence>
|
352
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
353
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="xsd:string"/>
|
354
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in2" nillable="true" type="ns2:SOAPAttribute"/>
|
355
|
+
</xsd:sequence>
|
356
|
+
</xsd:complexType>
|
357
|
+
</xsd:element>
|
358
|
+
<xsd:element name="addAttributeToGroupResponse">
|
359
|
+
<xsd:complexType/>
|
360
|
+
</xsd:element>
|
361
|
+
<xsd:element name="findAllRoleNames">
|
362
|
+
<xsd:complexType>
|
363
|
+
<xsd:sequence>
|
364
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
365
|
+
</xsd:sequence>
|
366
|
+
</xsd:complexType>
|
367
|
+
</xsd:element>
|
368
|
+
<xsd:element name="findAllRoleNamesResponse">
|
369
|
+
<xsd:complexType>
|
370
|
+
<xsd:sequence>
|
371
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="tns:ArrayOfString"/>
|
372
|
+
</xsd:sequence>
|
373
|
+
</xsd:complexType>
|
374
|
+
</xsd:element>
|
375
|
+
<xsd:element name="findRoleByName">
|
376
|
+
<xsd:complexType>
|
377
|
+
<xsd:sequence>
|
378
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
379
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="xsd:string"/>
|
380
|
+
</xsd:sequence>
|
381
|
+
</xsd:complexType>
|
382
|
+
</xsd:element>
|
383
|
+
<xsd:element name="findRoleByNameResponse">
|
384
|
+
<xsd:complexType>
|
385
|
+
<xsd:sequence>
|
386
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="ns2:SOAPRole"/>
|
387
|
+
</xsd:sequence>
|
388
|
+
</xsd:complexType>
|
389
|
+
</xsd:element>
|
390
|
+
<xsd:element name="isCacheEnabled">
|
391
|
+
<xsd:complexType>
|
392
|
+
<xsd:sequence>
|
393
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
394
|
+
</xsd:sequence>
|
395
|
+
</xsd:complexType>
|
396
|
+
</xsd:element>
|
397
|
+
<xsd:element name="isCacheEnabledResponse">
|
398
|
+
<xsd:complexType>
|
399
|
+
<xsd:sequence>
|
400
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="out" type="xsd:boolean"/>
|
401
|
+
</xsd:sequence>
|
402
|
+
</xsd:complexType>
|
403
|
+
</xsd:element>
|
404
|
+
<xsd:element name="findGroupByName">
|
405
|
+
<xsd:complexType>
|
406
|
+
<xsd:sequence>
|
407
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
408
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="xsd:string"/>
|
409
|
+
</xsd:sequence>
|
410
|
+
</xsd:complexType>
|
411
|
+
</xsd:element>
|
412
|
+
<xsd:element name="findGroupByNameResponse">
|
413
|
+
<xsd:complexType>
|
414
|
+
<xsd:sequence>
|
415
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="ns2:SOAPGroup"/>
|
416
|
+
</xsd:sequence>
|
417
|
+
</xsd:complexType>
|
418
|
+
</xsd:element>
|
419
|
+
<xsd:element name="findGroupWithAttributesByName">
|
420
|
+
<xsd:complexType>
|
421
|
+
<xsd:sequence>
|
422
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
423
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="xsd:string"/>
|
424
|
+
</xsd:sequence>
|
425
|
+
</xsd:complexType>
|
426
|
+
</xsd:element>
|
427
|
+
<xsd:element name="findGroupWithAttributesByNameResponse">
|
428
|
+
<xsd:complexType>
|
429
|
+
<xsd:sequence>
|
430
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="ns2:SOAPGroup"/>
|
431
|
+
</xsd:sequence>
|
432
|
+
</xsd:complexType>
|
433
|
+
</xsd:element>
|
434
|
+
<xsd:element name="removePrincipalFromRole">
|
435
|
+
<xsd:complexType>
|
436
|
+
<xsd:sequence>
|
437
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
438
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="xsd:string"/>
|
439
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in2" nillable="true" type="xsd:string"/>
|
440
|
+
</xsd:sequence>
|
441
|
+
</xsd:complexType>
|
442
|
+
</xsd:element>
|
443
|
+
<xsd:element name="removePrincipalFromRoleResponse">
|
444
|
+
<xsd:complexType/>
|
445
|
+
</xsd:element>
|
446
|
+
<xsd:element name="findPrincipalWithAttributesByName">
|
447
|
+
<xsd:complexType>
|
448
|
+
<xsd:sequence>
|
449
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
450
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="xsd:string"/>
|
451
|
+
</xsd:sequence>
|
452
|
+
</xsd:complexType>
|
453
|
+
</xsd:element>
|
454
|
+
<xsd:element name="findPrincipalWithAttributesByNameResponse">
|
455
|
+
<xsd:complexType>
|
456
|
+
<xsd:sequence>
|
457
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="ns2:SOAPPrincipal"/>
|
458
|
+
</xsd:sequence>
|
459
|
+
</xsd:complexType>
|
460
|
+
</xsd:element>
|
461
|
+
<xsd:element name="authenticatePrincipal">
|
462
|
+
<xsd:complexType>
|
463
|
+
<xsd:sequence>
|
464
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
465
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="ns1:UserAuthenticationContext"/>
|
466
|
+
</xsd:sequence>
|
467
|
+
</xsd:complexType>
|
468
|
+
</xsd:element>
|
469
|
+
<xsd:element name="authenticatePrincipalResponse">
|
470
|
+
<xsd:complexType>
|
471
|
+
<xsd:sequence>
|
472
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="xsd:string"/>
|
473
|
+
</xsd:sequence>
|
474
|
+
</xsd:complexType>
|
475
|
+
</xsd:element>
|
476
|
+
<xsd:element name="findGroupMemberships">
|
477
|
+
<xsd:complexType>
|
478
|
+
<xsd:sequence>
|
479
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
480
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="xsd:string"/>
|
481
|
+
</xsd:sequence>
|
482
|
+
</xsd:complexType>
|
483
|
+
</xsd:element>
|
484
|
+
<xsd:element name="findGroupMembershipsResponse">
|
485
|
+
<xsd:complexType>
|
486
|
+
<xsd:sequence>
|
487
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="tns:ArrayOfString"/>
|
488
|
+
</xsd:sequence>
|
489
|
+
</xsd:complexType>
|
490
|
+
</xsd:element>
|
491
|
+
<xsd:element name="addPrincipalToGroup">
|
492
|
+
<xsd:complexType>
|
493
|
+
<xsd:sequence>
|
494
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
495
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="xsd:string"/>
|
496
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in2" nillable="true" type="xsd:string"/>
|
497
|
+
</xsd:sequence>
|
498
|
+
</xsd:complexType>
|
499
|
+
</xsd:element>
|
500
|
+
<xsd:element name="addPrincipalToGroupResponse">
|
501
|
+
<xsd:complexType/>
|
502
|
+
</xsd:element>
|
503
|
+
<xsd:element name="removeGroup">
|
504
|
+
<xsd:complexType>
|
505
|
+
<xsd:sequence>
|
506
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
507
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="xsd:string"/>
|
508
|
+
</xsd:sequence>
|
509
|
+
</xsd:complexType>
|
510
|
+
</xsd:element>
|
511
|
+
<xsd:element name="removeGroupResponse">
|
512
|
+
<xsd:complexType/>
|
513
|
+
</xsd:element>
|
514
|
+
<xsd:element name="removeAttributeFromGroup">
|
515
|
+
<xsd:complexType>
|
516
|
+
<xsd:sequence>
|
517
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
518
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="xsd:string"/>
|
519
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in2" nillable="true" type="xsd:string"/>
|
520
|
+
</xsd:sequence>
|
521
|
+
</xsd:complexType>
|
522
|
+
</xsd:element>
|
523
|
+
<xsd:element name="removeAttributeFromGroupResponse">
|
524
|
+
<xsd:complexType/>
|
525
|
+
</xsd:element>
|
526
|
+
<xsd:element name="removeAttributeFromPrincipal">
|
527
|
+
<xsd:complexType>
|
528
|
+
<xsd:sequence>
|
529
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
530
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="xsd:string"/>
|
531
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in2" nillable="true" type="xsd:string"/>
|
532
|
+
</xsd:sequence>
|
533
|
+
</xsd:complexType>
|
534
|
+
</xsd:element>
|
535
|
+
<xsd:element name="removeAttributeFromPrincipalResponse">
|
536
|
+
<xsd:complexType/>
|
537
|
+
</xsd:element>
|
538
|
+
<xsd:element name="addRole">
|
539
|
+
<xsd:complexType>
|
540
|
+
<xsd:sequence>
|
541
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
542
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="ns2:SOAPRole"/>
|
543
|
+
</xsd:sequence>
|
544
|
+
</xsd:complexType>
|
545
|
+
</xsd:element>
|
546
|
+
<xsd:element name="addRoleResponse">
|
547
|
+
<xsd:complexType>
|
548
|
+
<xsd:sequence>
|
549
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="ns2:SOAPRole"/>
|
550
|
+
</xsd:sequence>
|
551
|
+
</xsd:complexType>
|
552
|
+
</xsd:element>
|
553
|
+
<xsd:element name="InvalidRoleException" type="ns3:InvalidRoleException"/>
|
554
|
+
<xsd:element name="findAllPrincipalNames">
|
555
|
+
<xsd:complexType>
|
556
|
+
<xsd:sequence>
|
557
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
558
|
+
</xsd:sequence>
|
559
|
+
</xsd:complexType>
|
560
|
+
</xsd:element>
|
561
|
+
<xsd:element name="findAllPrincipalNamesResponse">
|
562
|
+
<xsd:complexType>
|
563
|
+
<xsd:sequence>
|
564
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="tns:ArrayOfString"/>
|
565
|
+
</xsd:sequence>
|
566
|
+
</xsd:complexType>
|
567
|
+
</xsd:element>
|
568
|
+
<xsd:element name="createPrincipalToken">
|
569
|
+
<xsd:complexType>
|
570
|
+
<xsd:sequence>
|
571
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
572
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="xsd:string"/>
|
573
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in2" nillable="true" type="ns1:ArrayOfValidationFactor"/>
|
574
|
+
</xsd:sequence>
|
575
|
+
</xsd:complexType>
|
576
|
+
</xsd:element>
|
577
|
+
<xsd:element name="createPrincipalTokenResponse">
|
578
|
+
<xsd:complexType>
|
579
|
+
<xsd:sequence>
|
580
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="xsd:string"/>
|
581
|
+
</xsd:sequence>
|
582
|
+
</xsd:complexType>
|
583
|
+
</xsd:element>
|
584
|
+
<xsd:element name="searchRoles">
|
585
|
+
<xsd:complexType>
|
586
|
+
<xsd:sequence>
|
587
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
588
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="ns2:ArrayOfSearchRestriction"/>
|
589
|
+
</xsd:sequence>
|
590
|
+
</xsd:complexType>
|
591
|
+
</xsd:element>
|
592
|
+
<xsd:element name="searchRolesResponse">
|
593
|
+
<xsd:complexType>
|
594
|
+
<xsd:sequence>
|
595
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="ns2:ArrayOfSOAPRole"/>
|
596
|
+
</xsd:sequence>
|
597
|
+
</xsd:complexType>
|
598
|
+
</xsd:element>
|
599
|
+
<xsd:element name="removePrincipalFromGroup">
|
600
|
+
<xsd:complexType>
|
601
|
+
<xsd:sequence>
|
602
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
603
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="xsd:string"/>
|
604
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in2" nillable="true" type="xsd:string"/>
|
605
|
+
</xsd:sequence>
|
606
|
+
</xsd:complexType>
|
607
|
+
</xsd:element>
|
608
|
+
<xsd:element name="removePrincipalFromGroupResponse">
|
609
|
+
<xsd:complexType/>
|
610
|
+
</xsd:element>
|
611
|
+
<xsd:element name="findPrincipalByName">
|
612
|
+
<xsd:complexType>
|
613
|
+
<xsd:sequence>
|
614
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
615
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="xsd:string"/>
|
616
|
+
</xsd:sequence>
|
617
|
+
</xsd:complexType>
|
618
|
+
</xsd:element>
|
619
|
+
<xsd:element name="findPrincipalByNameResponse">
|
620
|
+
<xsd:complexType>
|
621
|
+
<xsd:sequence>
|
622
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="ns2:SOAPPrincipal"/>
|
623
|
+
</xsd:sequence>
|
624
|
+
</xsd:complexType>
|
625
|
+
</xsd:element>
|
626
|
+
<xsd:element name="resetPrincipalCredential">
|
627
|
+
<xsd:complexType>
|
628
|
+
<xsd:sequence>
|
629
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
630
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="xsd:string"/>
|
631
|
+
</xsd:sequence>
|
632
|
+
</xsd:complexType>
|
633
|
+
</xsd:element>
|
634
|
+
<xsd:element name="resetPrincipalCredentialResponse">
|
635
|
+
<xsd:complexType/>
|
636
|
+
</xsd:element>
|
637
|
+
<xsd:element name="InvalidEmailAddressException" type="ns3:InvalidEmailAddressException"/>
|
638
|
+
<xsd:element name="updateGroupAttribute">
|
639
|
+
<xsd:complexType>
|
640
|
+
<xsd:sequence>
|
641
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
642
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="xsd:string"/>
|
643
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in2" nillable="true" type="ns2:SOAPAttribute"/>
|
644
|
+
</xsd:sequence>
|
645
|
+
</xsd:complexType>
|
646
|
+
</xsd:element>
|
647
|
+
<xsd:element name="updateGroupAttributeResponse">
|
648
|
+
<xsd:complexType/>
|
649
|
+
</xsd:element>
|
650
|
+
<xsd:element name="isGroupMember">
|
651
|
+
<xsd:complexType>
|
652
|
+
<xsd:sequence>
|
653
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
654
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="xsd:string"/>
|
655
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in2" nillable="true" type="xsd:string"/>
|
656
|
+
</xsd:sequence>
|
657
|
+
</xsd:complexType>
|
658
|
+
</xsd:element>
|
659
|
+
<xsd:element name="isGroupMemberResponse">
|
660
|
+
<xsd:complexType>
|
661
|
+
<xsd:sequence>
|
662
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="out" type="xsd:boolean"/>
|
663
|
+
</xsd:sequence>
|
664
|
+
</xsd:complexType>
|
665
|
+
</xsd:element>
|
666
|
+
<xsd:element name="searchPrincipals">
|
667
|
+
<xsd:complexType>
|
668
|
+
<xsd:sequence>
|
669
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
670
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="ns2:ArrayOfSearchRestriction"/>
|
671
|
+
</xsd:sequence>
|
672
|
+
</xsd:complexType>
|
673
|
+
</xsd:element>
|
674
|
+
<xsd:element name="searchPrincipalsResponse">
|
675
|
+
<xsd:complexType>
|
676
|
+
<xsd:sequence>
|
677
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="ns2:ArrayOfSOAPPrincipal"/>
|
678
|
+
</xsd:sequence>
|
679
|
+
</xsd:complexType>
|
680
|
+
</xsd:element>
|
681
|
+
<xsd:element name="getDomain">
|
682
|
+
<xsd:complexType>
|
683
|
+
<xsd:sequence>
|
684
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:AuthenticatedToken"/>
|
685
|
+
</xsd:sequence>
|
686
|
+
</xsd:complexType>
|
687
|
+
</xsd:element>
|
688
|
+
<xsd:element name="getDomainResponse">
|
689
|
+
<xsd:complexType>
|
690
|
+
<xsd:sequence>
|
691
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="xsd:string"/>
|
692
|
+
</xsd:sequence>
|
693
|
+
</xsd:complexType>
|
694
|
+
</xsd:element>
|
695
|
+
<xsd:element name="authenticateApplication">
|
696
|
+
<xsd:complexType>
|
697
|
+
<xsd:sequence>
|
698
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:ApplicationAuthenticationContext"/>
|
699
|
+
</xsd:sequence>
|
700
|
+
</xsd:complexType>
|
701
|
+
</xsd:element>
|
702
|
+
<xsd:element name="authenticateApplicationResponse">
|
703
|
+
<xsd:complexType>
|
704
|
+
<xsd:sequence>
|
705
|
+
<xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="ns1:AuthenticatedToken"/>
|
706
|
+
</xsd:sequence>
|
707
|
+
</xsd:complexType>
|
708
|
+
</xsd:element>
|
709
|
+
</xsd:schema>
|
710
|
+
<xsd:schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://soap.integration.crowd.atlassian.com">
|
711
|
+
<xsd:complexType name="ArrayOfSOAPNestableGroup">
|
712
|
+
<xsd:sequence>
|
713
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="SOAPNestableGroup" nillable="true" type="ns2:SOAPNestableGroup"/>
|
714
|
+
</xsd:sequence>
|
715
|
+
</xsd:complexType>
|
716
|
+
<xsd:complexType name="SOAPNestableGroup">
|
717
|
+
<xsd:sequence>
|
718
|
+
<xsd:element minOccurs="0" name="ID" type="xsd:long"/>
|
719
|
+
<xsd:element minOccurs="0" name="active" type="xsd:boolean"/>
|
720
|
+
<xsd:element minOccurs="0" name="attributes" nillable="true" type="ns2:ArrayOfSOAPAttribute"/>
|
721
|
+
<xsd:element minOccurs="0" name="conception" type="xsd:dateTime"/>
|
722
|
+
<xsd:element minOccurs="0" name="description" nillable="true" type="xsd:string"/>
|
723
|
+
<xsd:element minOccurs="0" name="directoryId" type="xsd:long"/>
|
724
|
+
<xsd:element minOccurs="0" name="groupMembers" nillable="true" type="tns:ArrayOfString"/>
|
725
|
+
<xsd:element minOccurs="0" name="lastModified" type="xsd:dateTime"/>
|
726
|
+
<xsd:element minOccurs="0" name="name" nillable="true" type="xsd:string"/>
|
727
|
+
</xsd:sequence>
|
728
|
+
</xsd:complexType>
|
729
|
+
<xsd:complexType name="ArrayOfSOAPAttribute">
|
730
|
+
<xsd:sequence>
|
731
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="SOAPAttribute" nillable="true" type="ns2:SOAPAttribute"/>
|
732
|
+
</xsd:sequence>
|
733
|
+
</xsd:complexType>
|
734
|
+
<xsd:complexType name="SOAPAttribute">
|
735
|
+
<xsd:sequence>
|
736
|
+
<xsd:element minOccurs="0" name="name" nillable="true" type="xsd:string"/>
|
737
|
+
<xsd:element minOccurs="0" name="values" nillable="true" type="tns:ArrayOfString"/>
|
738
|
+
</xsd:sequence>
|
739
|
+
</xsd:complexType>
|
740
|
+
<xsd:complexType name="SOAPGroup">
|
741
|
+
<xsd:sequence>
|
742
|
+
<xsd:element minOccurs="0" name="ID" type="xsd:long"/>
|
743
|
+
<xsd:element minOccurs="0" name="active" type="xsd:boolean"/>
|
744
|
+
<xsd:element minOccurs="0" name="attributes" nillable="true" type="ns2:ArrayOfSOAPAttribute"/>
|
745
|
+
<xsd:element minOccurs="0" name="conception" type="xsd:dateTime"/>
|
746
|
+
<xsd:element minOccurs="0" name="description" nillable="true" type="xsd:string"/>
|
747
|
+
<xsd:element minOccurs="0" name="directoryId" type="xsd:long"/>
|
748
|
+
<xsd:element minOccurs="0" name="lastModified" type="xsd:dateTime"/>
|
749
|
+
<xsd:element minOccurs="0" name="members" nillable="true" type="tns:ArrayOfString"/>
|
750
|
+
<xsd:element minOccurs="0" name="name" nillable="true" type="xsd:string"/>
|
751
|
+
</xsd:sequence>
|
752
|
+
</xsd:complexType>
|
753
|
+
<xsd:complexType name="SOAPPrincipal">
|
754
|
+
<xsd:sequence>
|
755
|
+
<xsd:element minOccurs="0" name="ID" type="xsd:long"/>
|
756
|
+
<xsd:element minOccurs="0" name="active" type="xsd:boolean"/>
|
757
|
+
<xsd:element minOccurs="0" name="attributes" nillable="true" type="ns2:ArrayOfSOAPAttribute"/>
|
758
|
+
<xsd:element minOccurs="0" name="conception" type="xsd:dateTime"/>
|
759
|
+
<xsd:element minOccurs="0" name="description" nillable="true" type="xsd:string"/>
|
760
|
+
<xsd:element minOccurs="0" name="directoryId" type="xsd:long"/>
|
761
|
+
<xsd:element minOccurs="0" name="lastModified" type="xsd:dateTime"/>
|
762
|
+
<xsd:element minOccurs="0" name="name" nillable="true" type="xsd:string"/>
|
763
|
+
</xsd:sequence>
|
764
|
+
</xsd:complexType>
|
765
|
+
<xsd:complexType name="SOAPCookieInfo">
|
766
|
+
<xsd:sequence>
|
767
|
+
<xsd:element minOccurs="0" name="domain" nillable="true" type="xsd:string"/>
|
768
|
+
<xsd:element minOccurs="0" name="secure" type="xsd:boolean"/>
|
769
|
+
</xsd:sequence>
|
770
|
+
</xsd:complexType>
|
771
|
+
<xsd:complexType name="ArrayOfSearchRestriction">
|
772
|
+
<xsd:sequence>
|
773
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="SearchRestriction" nillable="true" type="ns2:SearchRestriction"/>
|
774
|
+
</xsd:sequence>
|
775
|
+
</xsd:complexType>
|
776
|
+
<xsd:complexType name="SearchRestriction">
|
777
|
+
<xsd:sequence>
|
778
|
+
<xsd:element minOccurs="0" name="name" nillable="true" type="xsd:string"/>
|
779
|
+
<xsd:element minOccurs="0" name="value" nillable="true" type="xsd:string"/>
|
780
|
+
</xsd:sequence>
|
781
|
+
</xsd:complexType>
|
782
|
+
<xsd:complexType name="ArrayOfSOAPGroup">
|
783
|
+
<xsd:sequence>
|
784
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="SOAPGroup" nillable="true" type="ns2:SOAPGroup"/>
|
785
|
+
</xsd:sequence>
|
786
|
+
</xsd:complexType>
|
787
|
+
<xsd:complexType name="SOAPRole">
|
788
|
+
<xsd:sequence>
|
789
|
+
<xsd:element minOccurs="0" name="ID" type="xsd:long"/>
|
790
|
+
<xsd:element minOccurs="0" name="active" type="xsd:boolean"/>
|
791
|
+
<xsd:element minOccurs="0" name="attributes" nillable="true" type="ns2:ArrayOfSOAPAttribute"/>
|
792
|
+
<xsd:element minOccurs="0" name="conception" type="xsd:dateTime"/>
|
793
|
+
<xsd:element minOccurs="0" name="description" nillable="true" type="xsd:string"/>
|
794
|
+
<xsd:element minOccurs="0" name="directoryId" type="xsd:long"/>
|
795
|
+
<xsd:element minOccurs="0" name="lastModified" type="xsd:dateTime"/>
|
796
|
+
<xsd:element minOccurs="0" name="members" nillable="true" type="tns:ArrayOfString"/>
|
797
|
+
<xsd:element minOccurs="0" name="name" nillable="true" type="xsd:string"/>
|
798
|
+
</xsd:sequence>
|
799
|
+
</xsd:complexType>
|
800
|
+
<xsd:complexType name="ArrayOfSOAPRole">
|
801
|
+
<xsd:sequence>
|
802
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="SOAPRole" nillable="true" type="ns2:SOAPRole"/>
|
803
|
+
</xsd:sequence>
|
804
|
+
</xsd:complexType>
|
805
|
+
<xsd:complexType name="ArrayOfSOAPPrincipal">
|
806
|
+
<xsd:sequence>
|
807
|
+
<xsd:element maxOccurs="unbounded" minOccurs="0" name="SOAPPrincipal" nillable="true" type="ns2:SOAPPrincipal"/>
|
808
|
+
</xsd:sequence>
|
809
|
+
</xsd:complexType>
|
810
|
+
</xsd:schema>
|
811
|
+
<xsd:schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://exception.integration.crowd.atlassian.com">
|
812
|
+
<xsd:complexType name="InvalidAuthorizationTokenException"/>
|
813
|
+
<xsd:complexType name="InvalidGroupException">
|
814
|
+
<xsd:sequence>
|
815
|
+
<xsd:element minOccurs="0" name="entity" nillable="true" type="ns6:DirectoryEntity"/>
|
816
|
+
</xsd:sequence>
|
817
|
+
</xsd:complexType>
|
818
|
+
<xsd:complexType name="ApplicationPermissionException"/>
|
819
|
+
<xsd:complexType name="ObjectNotFoundException"/>
|
820
|
+
<xsd:complexType name="InvalidTokenException"/>
|
821
|
+
<xsd:complexType name="InvalidCredentialException"/>
|
822
|
+
<xsd:complexType name="InvalidUserException">
|
823
|
+
<xsd:sequence>
|
824
|
+
<xsd:element minOccurs="0" name="entity" nillable="true" type="ns6:DirectoryEntity"/>
|
825
|
+
</xsd:sequence>
|
826
|
+
</xsd:complexType>
|
827
|
+
<xsd:complexType name="ApplicationAccessDeniedException"/>
|
828
|
+
<xsd:complexType name="InvalidAuthenticationException"/>
|
829
|
+
<xsd:complexType name="InactiveAccountException">
|
830
|
+
<xsd:sequence>
|
831
|
+
<xsd:element minOccurs="0" name="user" nillable="true" type="ns7:User"/>
|
832
|
+
</xsd:sequence>
|
833
|
+
</xsd:complexType>
|
834
|
+
<xsd:complexType name="InvalidRoleException">
|
835
|
+
<xsd:sequence>
|
836
|
+
<xsd:element minOccurs="0" name="entity" nillable="true" type="ns6:DirectoryEntity"/>
|
837
|
+
</xsd:sequence>
|
838
|
+
</xsd:complexType>
|
839
|
+
<xsd:complexType name="InvalidEmailAddressException"/>
|
840
|
+
</xsd:schema>
|
841
|
+
<xsd:schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://rmi.java">
|
842
|
+
<xsd:complexType name="RemoteException">
|
843
|
+
<xsd:sequence>
|
844
|
+
<xsd:element minOccurs="0" name="cause" nillable="true" type="ns4:Throwable"/>
|
845
|
+
<xsd:element minOccurs="0" name="message" nillable="true" type="xsd:string"/>
|
846
|
+
</xsd:sequence>
|
847
|
+
</xsd:complexType>
|
848
|
+
</xsd:schema>
|
849
|
+
<xsd:schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://lang.java">
|
850
|
+
<xsd:complexType name="Throwable"/>
|
851
|
+
</xsd:schema>
|
852
|
+
<xsd:schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://model.integration.crowd.atlassian.com">
|
853
|
+
<xsd:complexType name="DirectoryEntity">
|
854
|
+
<xsd:sequence>
|
855
|
+
<xsd:element minOccurs="0" name="directoryId" nillable="true" type="xsd:long"/>
|
856
|
+
<xsd:element minOccurs="0" name="name" nillable="true" type="xsd:string"/>
|
857
|
+
</xsd:sequence>
|
858
|
+
</xsd:complexType>
|
859
|
+
</xsd:schema>
|
860
|
+
<xsd:schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://user.model.integration.crowd.atlassian.com">
|
861
|
+
<xsd:complexType name="User">
|
862
|
+
<xsd:sequence>
|
863
|
+
<xsd:element minOccurs="0" name="active" type="xsd:boolean"/>
|
864
|
+
<xsd:element minOccurs="0" name="displayName" nillable="true" type="xsd:string"/>
|
865
|
+
<xsd:element minOccurs="0" name="emailAddress" nillable="true" type="xsd:string"/>
|
866
|
+
<xsd:element minOccurs="0" name="firstName" nillable="true" type="xsd:string"/>
|
867
|
+
<xsd:element minOccurs="0" name="iconLocation" nillable="true" type="xsd:string"/>
|
868
|
+
<xsd:element minOccurs="0" name="lastName" nillable="true" type="xsd:string"/>
|
869
|
+
<xsd:element minOccurs="0" name="directoryId" nillable="true" type="xsd:long"/>
|
870
|
+
<xsd:element minOccurs="0" name="name" nillable="true" type="xsd:string"/>
|
871
|
+
</xsd:sequence>
|
872
|
+
</xsd:complexType>
|
873
|
+
</xsd:schema>
|
874
|
+
</wsdl:types>
|
875
|
+
<wsdl:message name="searchRolesRequest">
|
876
|
+
<wsdl:part name="parameters" element="tns:searchRoles"></wsdl:part>
|
877
|
+
</wsdl:message>
|
878
|
+
<wsdl:message name="findPrincipalWithAttributesByNameRequest">
|
879
|
+
<wsdl:part name="parameters" element="tns:findPrincipalWithAttributesByName"></wsdl:part>
|
880
|
+
</wsdl:message>
|
881
|
+
<wsdl:message name="addPrincipalResponse">
|
882
|
+
<wsdl:part name="parameters" element="tns:addPrincipalResponse"></wsdl:part>
|
883
|
+
</wsdl:message>
|
884
|
+
<wsdl:message name="findRoleMembershipsRequest">
|
885
|
+
<wsdl:part name="parameters" element="tns:findRoleMemberships"></wsdl:part>
|
886
|
+
</wsdl:message>
|
887
|
+
<wsdl:message name="updateGroupAttributeRequest">
|
888
|
+
<wsdl:part name="parameters" element="tns:updateGroupAttribute"></wsdl:part>
|
889
|
+
</wsdl:message>
|
890
|
+
<wsdl:message name="removePrincipalFromGroupResponse">
|
891
|
+
<wsdl:part name="parameters" element="tns:removePrincipalFromGroupResponse"></wsdl:part>
|
892
|
+
</wsdl:message>
|
893
|
+
<wsdl:message name="isRoleMemberRequest">
|
894
|
+
<wsdl:part name="parameters" element="tns:isRoleMember"></wsdl:part>
|
895
|
+
</wsdl:message>
|
896
|
+
<wsdl:message name="removeAttributeFromPrincipalResponse">
|
897
|
+
<wsdl:part name="parameters" element="tns:removeAttributeFromPrincipalResponse"></wsdl:part>
|
898
|
+
</wsdl:message>
|
899
|
+
<wsdl:message name="InvalidCredentialException">
|
900
|
+
<wsdl:part name="InvalidCredentialException" element="tns:InvalidCredentialException"></wsdl:part>
|
901
|
+
</wsdl:message>
|
902
|
+
<wsdl:message name="addAttributeToPrincipalResponse">
|
903
|
+
<wsdl:part name="parameters" element="tns:addAttributeToPrincipalResponse"></wsdl:part>
|
904
|
+
</wsdl:message>
|
905
|
+
<wsdl:message name="updatePrincipalAttributeResponse">
|
906
|
+
<wsdl:part name="parameters" element="tns:updatePrincipalAttributeResponse"></wsdl:part>
|
907
|
+
</wsdl:message>
|
908
|
+
<wsdl:message name="InvalidTokenException">
|
909
|
+
<wsdl:part name="InvalidTokenException" element="tns:InvalidTokenException"></wsdl:part>
|
910
|
+
</wsdl:message>
|
911
|
+
<wsdl:message name="findGroupWithAttributesByNameResponse">
|
912
|
+
<wsdl:part name="parameters" element="tns:findGroupWithAttributesByNameResponse"></wsdl:part>
|
913
|
+
</wsdl:message>
|
914
|
+
<wsdl:message name="authenticatePrincipalSimpleResponse">
|
915
|
+
<wsdl:part name="parameters" element="tns:authenticatePrincipalSimpleResponse"></wsdl:part>
|
916
|
+
</wsdl:message>
|
917
|
+
<wsdl:message name="searchPrincipalsResponse">
|
918
|
+
<wsdl:part name="parameters" element="tns:searchPrincipalsResponse"></wsdl:part>
|
919
|
+
</wsdl:message>
|
920
|
+
<wsdl:message name="removeAttributeFromPrincipalRequest">
|
921
|
+
<wsdl:part name="parameters" element="tns:removeAttributeFromPrincipal"></wsdl:part>
|
922
|
+
</wsdl:message>
|
923
|
+
<wsdl:message name="updatePrincipalAttributeRequest">
|
924
|
+
<wsdl:part name="parameters" element="tns:updatePrincipalAttribute"></wsdl:part>
|
925
|
+
</wsdl:message>
|
926
|
+
<wsdl:message name="findAllGroupRelationshipsRequest">
|
927
|
+
<wsdl:part name="parameters" element="tns:findAllGroupRelationships"></wsdl:part>
|
928
|
+
</wsdl:message>
|
929
|
+
<wsdl:message name="removeRoleRequest">
|
930
|
+
<wsdl:part name="parameters" element="tns:removeRole"></wsdl:part>
|
931
|
+
</wsdl:message>
|
932
|
+
<wsdl:message name="findAllGroupNamesResponse">
|
933
|
+
<wsdl:part name="parameters" element="tns:findAllGroupNamesResponse"></wsdl:part>
|
934
|
+
</wsdl:message>
|
935
|
+
<wsdl:message name="authenticateApplicationResponse">
|
936
|
+
<wsdl:part name="parameters" element="tns:authenticateApplicationResponse"></wsdl:part>
|
937
|
+
</wsdl:message>
|
938
|
+
<wsdl:message name="addPrincipalToGroupResponse">
|
939
|
+
<wsdl:part name="parameters" element="tns:addPrincipalToGroupResponse"></wsdl:part>
|
940
|
+
</wsdl:message>
|
941
|
+
<wsdl:message name="InvalidAuthenticationException">
|
942
|
+
<wsdl:part name="InvalidAuthenticationException" element="tns:InvalidAuthenticationException"></wsdl:part>
|
943
|
+
</wsdl:message>
|
944
|
+
<wsdl:message name="addPrincipalToRoleResponse">
|
945
|
+
<wsdl:part name="parameters" element="tns:addPrincipalToRoleResponse"></wsdl:part>
|
946
|
+
</wsdl:message>
|
947
|
+
<wsdl:message name="updateGroupResponse">
|
948
|
+
<wsdl:part name="parameters" element="tns:updateGroupResponse"></wsdl:part>
|
949
|
+
</wsdl:message>
|
950
|
+
<wsdl:message name="createPrincipalTokenResponse">
|
951
|
+
<wsdl:part name="parameters" element="tns:createPrincipalTokenResponse"></wsdl:part>
|
952
|
+
</wsdl:message>
|
953
|
+
<wsdl:message name="isGroupMemberRequest">
|
954
|
+
<wsdl:part name="parameters" element="tns:isGroupMember"></wsdl:part>
|
955
|
+
</wsdl:message>
|
956
|
+
<wsdl:message name="addGroupResponse">
|
957
|
+
<wsdl:part name="parameters" element="tns:addGroupResponse"></wsdl:part>
|
958
|
+
</wsdl:message>
|
959
|
+
<wsdl:message name="removePrincipalFromGroupRequest">
|
960
|
+
<wsdl:part name="parameters" element="tns:removePrincipalFromGroup"></wsdl:part>
|
961
|
+
</wsdl:message>
|
962
|
+
<wsdl:message name="findPrincipalByNameResponse">
|
963
|
+
<wsdl:part name="parameters" element="tns:findPrincipalByNameResponse"></wsdl:part>
|
964
|
+
</wsdl:message>
|
965
|
+
<wsdl:message name="findRoleMembershipsResponse">
|
966
|
+
<wsdl:part name="parameters" element="tns:findRoleMembershipsResponse"></wsdl:part>
|
967
|
+
</wsdl:message>
|
968
|
+
<wsdl:message name="addAttributeToGroupResponse">
|
969
|
+
<wsdl:part name="parameters" element="tns:addAttributeToGroupResponse"></wsdl:part>
|
970
|
+
</wsdl:message>
|
971
|
+
<wsdl:message name="findGroupByNameResponse">
|
972
|
+
<wsdl:part name="parameters" element="tns:findGroupByNameResponse"></wsdl:part>
|
973
|
+
</wsdl:message>
|
974
|
+
<wsdl:message name="findRoleByNameRequest">
|
975
|
+
<wsdl:part name="parameters" element="tns:findRoleByName"></wsdl:part>
|
976
|
+
</wsdl:message>
|
977
|
+
<wsdl:message name="findAllGroupRelationshipsResponse">
|
978
|
+
<wsdl:part name="parameters" element="tns:findAllGroupRelationshipsResponse"></wsdl:part>
|
979
|
+
</wsdl:message>
|
980
|
+
<wsdl:message name="addRoleRequest">
|
981
|
+
<wsdl:part name="parameters" element="tns:addRole"></wsdl:part>
|
982
|
+
</wsdl:message>
|
983
|
+
<wsdl:message name="resetPrincipalCredentialResponse">
|
984
|
+
<wsdl:part name="parameters" element="tns:resetPrincipalCredentialResponse"></wsdl:part>
|
985
|
+
</wsdl:message>
|
986
|
+
<wsdl:message name="findAllRoleNamesResponse">
|
987
|
+
<wsdl:part name="parameters" element="tns:findAllRoleNamesResponse"></wsdl:part>
|
988
|
+
</wsdl:message>
|
989
|
+
<wsdl:message name="InactiveAccountException">
|
990
|
+
<wsdl:part name="InactiveAccountException" element="tns:InactiveAccountException"></wsdl:part>
|
991
|
+
</wsdl:message>
|
992
|
+
<wsdl:message name="removeRoleResponse">
|
993
|
+
<wsdl:part name="parameters" element="tns:removeRoleResponse"></wsdl:part>
|
994
|
+
</wsdl:message>
|
995
|
+
<wsdl:message name="findPrincipalByTokenResponse">
|
996
|
+
<wsdl:part name="parameters" element="tns:findPrincipalByTokenResponse"></wsdl:part>
|
997
|
+
</wsdl:message>
|
998
|
+
<wsdl:message name="invalidatePrincipalTokenResponse">
|
999
|
+
<wsdl:part name="parameters" element="tns:invalidatePrincipalTokenResponse"></wsdl:part>
|
1000
|
+
</wsdl:message>
|
1001
|
+
<wsdl:message name="findGroupWithAttributesByNameRequest">
|
1002
|
+
<wsdl:part name="parameters" element="tns:findGroupWithAttributesByName"></wsdl:part>
|
1003
|
+
</wsdl:message>
|
1004
|
+
<wsdl:message name="addAttributeToPrincipalRequest">
|
1005
|
+
<wsdl:part name="parameters" element="tns:addAttributeToPrincipal"></wsdl:part>
|
1006
|
+
</wsdl:message>
|
1007
|
+
<wsdl:message name="removePrincipalFromRoleResponse">
|
1008
|
+
<wsdl:part name="parameters" element="tns:removePrincipalFromRoleResponse"></wsdl:part>
|
1009
|
+
</wsdl:message>
|
1010
|
+
<wsdl:message name="addPrincipalToRoleRequest">
|
1011
|
+
<wsdl:part name="parameters" element="tns:addPrincipalToRole"></wsdl:part>
|
1012
|
+
</wsdl:message>
|
1013
|
+
<wsdl:message name="findPrincipalByNameRequest">
|
1014
|
+
<wsdl:part name="parameters" element="tns:findPrincipalByName"></wsdl:part>
|
1015
|
+
</wsdl:message>
|
1016
|
+
<wsdl:message name="findPrincipalWithAttributesByNameResponse">
|
1017
|
+
<wsdl:part name="parameters" element="tns:findPrincipalWithAttributesByNameResponse"></wsdl:part>
|
1018
|
+
</wsdl:message>
|
1019
|
+
<wsdl:message name="findAllPrincipalNamesResponse">
|
1020
|
+
<wsdl:part name="parameters" element="tns:findAllPrincipalNamesResponse"></wsdl:part>
|
1021
|
+
</wsdl:message>
|
1022
|
+
<wsdl:message name="InvalidUserException">
|
1023
|
+
<wsdl:part name="InvalidUserException" element="tns:InvalidUserException"></wsdl:part>
|
1024
|
+
</wsdl:message>
|
1025
|
+
<wsdl:message name="removeAttributeFromGroupResponse">
|
1026
|
+
<wsdl:part name="parameters" element="tns:removeAttributeFromGroupResponse"></wsdl:part>
|
1027
|
+
</wsdl:message>
|
1028
|
+
<wsdl:message name="updateGroupRequest">
|
1029
|
+
<wsdl:part name="parameters" element="tns:updateGroup"></wsdl:part>
|
1030
|
+
</wsdl:message>
|
1031
|
+
<wsdl:message name="isValidPrincipalTokenResponse">
|
1032
|
+
<wsdl:part name="parameters" element="tns:isValidPrincipalTokenResponse"></wsdl:part>
|
1033
|
+
</wsdl:message>
|
1034
|
+
<wsdl:message name="getGrantedAuthoritiesRequest">
|
1035
|
+
<wsdl:part name="parameters" element="tns:getGrantedAuthorities"></wsdl:part>
|
1036
|
+
</wsdl:message>
|
1037
|
+
<wsdl:message name="invalidatePrincipalTokenRequest">
|
1038
|
+
<wsdl:part name="parameters" element="tns:invalidatePrincipalToken"></wsdl:part>
|
1039
|
+
</wsdl:message>
|
1040
|
+
<wsdl:message name="findRoleByNameResponse">
|
1041
|
+
<wsdl:part name="parameters" element="tns:findRoleByNameResponse"></wsdl:part>
|
1042
|
+
</wsdl:message>
|
1043
|
+
<wsdl:message name="isCacheEnabledResponse">
|
1044
|
+
<wsdl:part name="parameters" element="tns:isCacheEnabledResponse"></wsdl:part>
|
1045
|
+
</wsdl:message>
|
1046
|
+
<wsdl:message name="findPrincipalByTokenRequest">
|
1047
|
+
<wsdl:part name="parameters" element="tns:findPrincipalByToken"></wsdl:part>
|
1048
|
+
</wsdl:message>
|
1049
|
+
<wsdl:message name="addRoleResponse">
|
1050
|
+
<wsdl:part name="parameters" element="tns:addRoleResponse"></wsdl:part>
|
1051
|
+
</wsdl:message>
|
1052
|
+
<wsdl:message name="getCacheTimeRequest">
|
1053
|
+
<wsdl:part name="parameters" element="tns:getCacheTime"></wsdl:part>
|
1054
|
+
</wsdl:message>
|
1055
|
+
<wsdl:message name="removeGroupRequest">
|
1056
|
+
<wsdl:part name="parameters" element="tns:removeGroup"></wsdl:part>
|
1057
|
+
</wsdl:message>
|
1058
|
+
<wsdl:message name="findAllRoleNamesRequest">
|
1059
|
+
<wsdl:part name="parameters" element="tns:findAllRoleNames"></wsdl:part>
|
1060
|
+
</wsdl:message>
|
1061
|
+
<wsdl:message name="isCacheEnabledRequest">
|
1062
|
+
<wsdl:part name="parameters" element="tns:isCacheEnabled"></wsdl:part>
|
1063
|
+
</wsdl:message>
|
1064
|
+
<wsdl:message name="searchGroupsResponse">
|
1065
|
+
<wsdl:part name="parameters" element="tns:searchGroupsResponse"></wsdl:part>
|
1066
|
+
</wsdl:message>
|
1067
|
+
<wsdl:message name="getGrantedAuthoritiesResponse">
|
1068
|
+
<wsdl:part name="parameters" element="tns:getGrantedAuthoritiesResponse"></wsdl:part>
|
1069
|
+
</wsdl:message>
|
1070
|
+
<wsdl:message name="InvalidRoleException">
|
1071
|
+
<wsdl:part name="InvalidRoleException" element="tns:InvalidRoleException"></wsdl:part>
|
1072
|
+
</wsdl:message>
|
1073
|
+
<wsdl:message name="findAllPrincipalNamesRequest">
|
1074
|
+
<wsdl:part name="parameters" element="tns:findAllPrincipalNames"></wsdl:part>
|
1075
|
+
</wsdl:message>
|
1076
|
+
<wsdl:message name="updateGroupAttributeResponse">
|
1077
|
+
<wsdl:part name="parameters" element="tns:updateGroupAttributeResponse"></wsdl:part>
|
1078
|
+
</wsdl:message>
|
1079
|
+
<wsdl:message name="findGroupByNameRequest">
|
1080
|
+
<wsdl:part name="parameters" element="tns:findGroupByName"></wsdl:part>
|
1081
|
+
</wsdl:message>
|
1082
|
+
<wsdl:message name="searchGroupsRequest">
|
1083
|
+
<wsdl:part name="parameters" element="tns:searchGroups"></wsdl:part>
|
1084
|
+
</wsdl:message>
|
1085
|
+
<wsdl:message name="removeAttributeFromGroupRequest">
|
1086
|
+
<wsdl:part name="parameters" element="tns:removeAttributeFromGroup"></wsdl:part>
|
1087
|
+
</wsdl:message>
|
1088
|
+
<wsdl:message name="isValidPrincipalTokenRequest">
|
1089
|
+
<wsdl:part name="parameters" element="tns:isValidPrincipalToken"></wsdl:part>
|
1090
|
+
</wsdl:message>
|
1091
|
+
<wsdl:message name="createPrincipalTokenRequest">
|
1092
|
+
<wsdl:part name="parameters" element="tns:createPrincipalToken"></wsdl:part>
|
1093
|
+
</wsdl:message>
|
1094
|
+
<wsdl:message name="ApplicationPermissionException">
|
1095
|
+
<wsdl:part name="ApplicationPermissionException" element="tns:ApplicationPermissionException"></wsdl:part>
|
1096
|
+
</wsdl:message>
|
1097
|
+
<wsdl:message name="removePrincipalFromRoleRequest">
|
1098
|
+
<wsdl:part name="parameters" element="tns:removePrincipalFromRole"></wsdl:part>
|
1099
|
+
</wsdl:message>
|
1100
|
+
<wsdl:message name="ObjectNotFoundException">
|
1101
|
+
<wsdl:part name="ObjectNotFoundException" element="tns:ObjectNotFoundException"></wsdl:part>
|
1102
|
+
</wsdl:message>
|
1103
|
+
<wsdl:message name="getCacheTimeResponse">
|
1104
|
+
<wsdl:part name="parameters" element="tns:getCacheTimeResponse"></wsdl:part>
|
1105
|
+
</wsdl:message>
|
1106
|
+
<wsdl:message name="resetPrincipalCredentialRequest">
|
1107
|
+
<wsdl:part name="parameters" element="tns:resetPrincipalCredential"></wsdl:part>
|
1108
|
+
</wsdl:message>
|
1109
|
+
<wsdl:message name="InvalidAuthorizationTokenException">
|
1110
|
+
<wsdl:part name="InvalidAuthorizationTokenException" element="tns:InvalidAuthorizationTokenException"></wsdl:part>
|
1111
|
+
</wsdl:message>
|
1112
|
+
<wsdl:message name="removePrincipalResponse">
|
1113
|
+
<wsdl:part name="parameters" element="tns:removePrincipalResponse"></wsdl:part>
|
1114
|
+
</wsdl:message>
|
1115
|
+
<wsdl:message name="addPrincipalToGroupRequest">
|
1116
|
+
<wsdl:part name="parameters" element="tns:addPrincipalToGroup"></wsdl:part>
|
1117
|
+
</wsdl:message>
|
1118
|
+
<wsdl:message name="ApplicationAccessDeniedException">
|
1119
|
+
<wsdl:part name="ApplicationAccessDeniedException" element="tns:ApplicationAccessDeniedException"></wsdl:part>
|
1120
|
+
</wsdl:message>
|
1121
|
+
<wsdl:message name="isGroupMemberResponse">
|
1122
|
+
<wsdl:part name="parameters" element="tns:isGroupMemberResponse"></wsdl:part>
|
1123
|
+
</wsdl:message>
|
1124
|
+
<wsdl:message name="authenticateApplicationRequest">
|
1125
|
+
<wsdl:part name="parameters" element="tns:authenticateApplication"></wsdl:part>
|
1126
|
+
</wsdl:message>
|
1127
|
+
<wsdl:message name="updatePrincipalCredentialRequest">
|
1128
|
+
<wsdl:part name="parameters" element="tns:updatePrincipalCredential"></wsdl:part>
|
1129
|
+
</wsdl:message>
|
1130
|
+
<wsdl:message name="updatePrincipalCredentialResponse">
|
1131
|
+
<wsdl:part name="parameters" element="tns:updatePrincipalCredentialResponse"></wsdl:part>
|
1132
|
+
</wsdl:message>
|
1133
|
+
<wsdl:message name="searchRolesResponse">
|
1134
|
+
<wsdl:part name="parameters" element="tns:searchRolesResponse"></wsdl:part>
|
1135
|
+
</wsdl:message>
|
1136
|
+
<wsdl:message name="getDomainResponse">
|
1137
|
+
<wsdl:part name="parameters" element="tns:getDomainResponse"></wsdl:part>
|
1138
|
+
</wsdl:message>
|
1139
|
+
<wsdl:message name="addPrincipalRequest">
|
1140
|
+
<wsdl:part name="parameters" element="tns:addPrincipal"></wsdl:part>
|
1141
|
+
</wsdl:message>
|
1142
|
+
<wsdl:message name="searchPrincipalsRequest">
|
1143
|
+
<wsdl:part name="parameters" element="tns:searchPrincipals"></wsdl:part>
|
1144
|
+
</wsdl:message>
|
1145
|
+
<wsdl:message name="RemoteException">
|
1146
|
+
<wsdl:part name="RemoteException" element="tns:RemoteException"></wsdl:part>
|
1147
|
+
</wsdl:message>
|
1148
|
+
<wsdl:message name="addAttributeToGroupRequest">
|
1149
|
+
<wsdl:part name="parameters" element="tns:addAttributeToGroup"></wsdl:part>
|
1150
|
+
</wsdl:message>
|
1151
|
+
<wsdl:message name="getCookieInfoResponse">
|
1152
|
+
<wsdl:part name="parameters" element="tns:getCookieInfoResponse"></wsdl:part>
|
1153
|
+
</wsdl:message>
|
1154
|
+
<wsdl:message name="findAllGroupNamesRequest">
|
1155
|
+
<wsdl:part name="parameters" element="tns:findAllGroupNames"></wsdl:part>
|
1156
|
+
</wsdl:message>
|
1157
|
+
<wsdl:message name="isRoleMemberResponse">
|
1158
|
+
<wsdl:part name="parameters" element="tns:isRoleMemberResponse"></wsdl:part>
|
1159
|
+
</wsdl:message>
|
1160
|
+
<wsdl:message name="InvalidEmailAddressException">
|
1161
|
+
<wsdl:part name="InvalidEmailAddressException" element="tns:InvalidEmailAddressException"></wsdl:part>
|
1162
|
+
</wsdl:message>
|
1163
|
+
<wsdl:message name="authenticatePrincipalRequest">
|
1164
|
+
<wsdl:part name="parameters" element="tns:authenticatePrincipal"></wsdl:part>
|
1165
|
+
</wsdl:message>
|
1166
|
+
<wsdl:message name="addGroupRequest">
|
1167
|
+
<wsdl:part name="parameters" element="tns:addGroup"></wsdl:part>
|
1168
|
+
</wsdl:message>
|
1169
|
+
<wsdl:message name="authenticatePrincipalResponse">
|
1170
|
+
<wsdl:part name="parameters" element="tns:authenticatePrincipalResponse"></wsdl:part>
|
1171
|
+
</wsdl:message>
|
1172
|
+
<wsdl:message name="InvalidGroupException">
|
1173
|
+
<wsdl:part name="InvalidGroupException" element="tns:InvalidGroupException"></wsdl:part>
|
1174
|
+
</wsdl:message>
|
1175
|
+
<wsdl:message name="getDomainRequest">
|
1176
|
+
<wsdl:part name="parameters" element="tns:getDomain"></wsdl:part>
|
1177
|
+
</wsdl:message>
|
1178
|
+
<wsdl:message name="findGroupMembershipsRequest">
|
1179
|
+
<wsdl:part name="parameters" element="tns:findGroupMemberships"></wsdl:part>
|
1180
|
+
</wsdl:message>
|
1181
|
+
<wsdl:message name="getCookieInfoRequest">
|
1182
|
+
<wsdl:part name="parameters" element="tns:getCookieInfo"></wsdl:part>
|
1183
|
+
</wsdl:message>
|
1184
|
+
<wsdl:message name="authenticatePrincipalSimpleRequest">
|
1185
|
+
<wsdl:part name="parameters" element="tns:authenticatePrincipalSimple"></wsdl:part>
|
1186
|
+
</wsdl:message>
|
1187
|
+
<wsdl:message name="findGroupMembershipsResponse">
|
1188
|
+
<wsdl:part name="parameters" element="tns:findGroupMembershipsResponse"></wsdl:part>
|
1189
|
+
</wsdl:message>
|
1190
|
+
<wsdl:message name="removePrincipalRequest">
|
1191
|
+
<wsdl:part name="parameters" element="tns:removePrincipal"></wsdl:part>
|
1192
|
+
</wsdl:message>
|
1193
|
+
<wsdl:message name="removeGroupResponse">
|
1194
|
+
<wsdl:part name="parameters" element="tns:removeGroupResponse"></wsdl:part>
|
1195
|
+
</wsdl:message>
|
1196
|
+
<wsdl:portType name="SecurityServerPortType">
|
1197
|
+
<wsdl:operation name="findAllGroupRelationships">
|
1198
|
+
<wsdl:input name="findAllGroupRelationshipsRequest" message="tns:findAllGroupRelationshipsRequest"></wsdl:input>
|
1199
|
+
<wsdl:output name="findAllGroupRelationshipsResponse" message="tns:findAllGroupRelationshipsResponse"></wsdl:output>
|
1200
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1201
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1202
|
+
</wsdl:operation>
|
1203
|
+
<wsdl:operation name="addGroup">
|
1204
|
+
<wsdl:input name="addGroupRequest" message="tns:addGroupRequest"></wsdl:input>
|
1205
|
+
<wsdl:output name="addGroupResponse" message="tns:addGroupResponse"></wsdl:output>
|
1206
|
+
<wsdl:fault name="InvalidGroupException" message="tns:InvalidGroupException"></wsdl:fault>
|
1207
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1208
|
+
<wsdl:fault name="ApplicationPermissionException" message="tns:ApplicationPermissionException"></wsdl:fault>
|
1209
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1210
|
+
</wsdl:operation>
|
1211
|
+
<wsdl:operation name="addPrincipalToRole">
|
1212
|
+
<wsdl:input name="addPrincipalToRoleRequest" message="tns:addPrincipalToRoleRequest"></wsdl:input>
|
1213
|
+
<wsdl:output name="addPrincipalToRoleResponse" message="tns:addPrincipalToRoleResponse"></wsdl:output>
|
1214
|
+
<wsdl:fault name="ObjectNotFoundException" message="tns:ObjectNotFoundException"></wsdl:fault>
|
1215
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1216
|
+
<wsdl:fault name="ApplicationPermissionException" message="tns:ApplicationPermissionException"></wsdl:fault>
|
1217
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1218
|
+
</wsdl:operation>
|
1219
|
+
<wsdl:operation name="findPrincipalByToken">
|
1220
|
+
<wsdl:input name="findPrincipalByTokenRequest" message="tns:findPrincipalByTokenRequest"></wsdl:input>
|
1221
|
+
<wsdl:output name="findPrincipalByTokenResponse" message="tns:findPrincipalByTokenResponse"></wsdl:output>
|
1222
|
+
<wsdl:fault name="InvalidTokenException" message="tns:InvalidTokenException"></wsdl:fault>
|
1223
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1224
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1225
|
+
</wsdl:operation>
|
1226
|
+
<wsdl:operation name="updatePrincipalCredential">
|
1227
|
+
<wsdl:input name="updatePrincipalCredentialRequest" message="tns:updatePrincipalCredentialRequest"></wsdl:input>
|
1228
|
+
<wsdl:output name="updatePrincipalCredentialResponse" message="tns:updatePrincipalCredentialResponse"></wsdl:output>
|
1229
|
+
<wsdl:fault name="ObjectNotFoundException" message="tns:ObjectNotFoundException"></wsdl:fault>
|
1230
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1231
|
+
<wsdl:fault name="ApplicationPermissionException" message="tns:ApplicationPermissionException"></wsdl:fault>
|
1232
|
+
<wsdl:fault name="InvalidCredentialException" message="tns:InvalidCredentialException"></wsdl:fault>
|
1233
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1234
|
+
</wsdl:operation>
|
1235
|
+
<wsdl:operation name="getGrantedAuthorities">
|
1236
|
+
<wsdl:input name="getGrantedAuthoritiesRequest" message="tns:getGrantedAuthoritiesRequest"></wsdl:input>
|
1237
|
+
<wsdl:output name="getGrantedAuthoritiesResponse" message="tns:getGrantedAuthoritiesResponse"></wsdl:output>
|
1238
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1239
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1240
|
+
</wsdl:operation>
|
1241
|
+
<wsdl:operation name="addPrincipal">
|
1242
|
+
<wsdl:input name="addPrincipalRequest" message="tns:addPrincipalRequest"></wsdl:input>
|
1243
|
+
<wsdl:output name="addPrincipalResponse" message="tns:addPrincipalResponse"></wsdl:output>
|
1244
|
+
<wsdl:fault name="InvalidUserException" message="tns:InvalidUserException"></wsdl:fault>
|
1245
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1246
|
+
<wsdl:fault name="ApplicationPermissionException" message="tns:ApplicationPermissionException"></wsdl:fault>
|
1247
|
+
<wsdl:fault name="InvalidCredentialException" message="tns:InvalidCredentialException"></wsdl:fault>
|
1248
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1249
|
+
</wsdl:operation>
|
1250
|
+
<wsdl:operation name="addAttributeToPrincipal">
|
1251
|
+
<wsdl:input name="addAttributeToPrincipalRequest" message="tns:addAttributeToPrincipalRequest"></wsdl:input>
|
1252
|
+
<wsdl:output name="addAttributeToPrincipalResponse" message="tns:addAttributeToPrincipalResponse"></wsdl:output>
|
1253
|
+
<wsdl:fault name="ObjectNotFoundException" message="tns:ObjectNotFoundException"></wsdl:fault>
|
1254
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1255
|
+
<wsdl:fault name="ApplicationPermissionException" message="tns:ApplicationPermissionException"></wsdl:fault>
|
1256
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1257
|
+
</wsdl:operation>
|
1258
|
+
<wsdl:operation name="invalidatePrincipalToken">
|
1259
|
+
<wsdl:input name="invalidatePrincipalTokenRequest" message="tns:invalidatePrincipalTokenRequest"></wsdl:input>
|
1260
|
+
<wsdl:output name="invalidatePrincipalTokenResponse" message="tns:invalidatePrincipalTokenResponse"></wsdl:output>
|
1261
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1262
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1263
|
+
</wsdl:operation>
|
1264
|
+
<wsdl:operation name="findAllGroupNames">
|
1265
|
+
<wsdl:input name="findAllGroupNamesRequest" message="tns:findAllGroupNamesRequest"></wsdl:input>
|
1266
|
+
<wsdl:output name="findAllGroupNamesResponse" message="tns:findAllGroupNamesResponse"></wsdl:output>
|
1267
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1268
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1269
|
+
</wsdl:operation>
|
1270
|
+
<wsdl:operation name="findRoleMemberships">
|
1271
|
+
<wsdl:input name="findRoleMembershipsRequest" message="tns:findRoleMembershipsRequest"></wsdl:input>
|
1272
|
+
<wsdl:output name="findRoleMembershipsResponse" message="tns:findRoleMembershipsResponse"></wsdl:output>
|
1273
|
+
<wsdl:fault name="ObjectNotFoundException" message="tns:ObjectNotFoundException"></wsdl:fault>
|
1274
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1275
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1276
|
+
</wsdl:operation>
|
1277
|
+
<wsdl:operation name="removePrincipal">
|
1278
|
+
<wsdl:input name="removePrincipalRequest" message="tns:removePrincipalRequest"></wsdl:input>
|
1279
|
+
<wsdl:output name="removePrincipalResponse" message="tns:removePrincipalResponse"></wsdl:output>
|
1280
|
+
<wsdl:fault name="ObjectNotFoundException" message="tns:ObjectNotFoundException"></wsdl:fault>
|
1281
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1282
|
+
<wsdl:fault name="ApplicationPermissionException" message="tns:ApplicationPermissionException"></wsdl:fault>
|
1283
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1284
|
+
</wsdl:operation>
|
1285
|
+
<wsdl:operation name="isValidPrincipalToken">
|
1286
|
+
<wsdl:input name="isValidPrincipalTokenRequest" message="tns:isValidPrincipalTokenRequest"></wsdl:input>
|
1287
|
+
<wsdl:output name="isValidPrincipalTokenResponse" message="tns:isValidPrincipalTokenResponse"></wsdl:output>
|
1288
|
+
<wsdl:fault name="ApplicationAccessDeniedException" message="tns:ApplicationAccessDeniedException"></wsdl:fault>
|
1289
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1290
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1291
|
+
</wsdl:operation>
|
1292
|
+
<wsdl:operation name="authenticatePrincipalSimple">
|
1293
|
+
<wsdl:input name="authenticatePrincipalSimpleRequest" message="tns:authenticatePrincipalSimpleRequest"></wsdl:input>
|
1294
|
+
<wsdl:output name="authenticatePrincipalSimpleResponse" message="tns:authenticatePrincipalSimpleResponse"></wsdl:output>
|
1295
|
+
<wsdl:fault name="ApplicationAccessDeniedException" message="tns:ApplicationAccessDeniedException"></wsdl:fault>
|
1296
|
+
<wsdl:fault name="InvalidAuthenticationException" message="tns:InvalidAuthenticationException"></wsdl:fault>
|
1297
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1298
|
+
<wsdl:fault name="InactiveAccountException" message="tns:InactiveAccountException"></wsdl:fault>
|
1299
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1300
|
+
</wsdl:operation>
|
1301
|
+
<wsdl:operation name="removeRole">
|
1302
|
+
<wsdl:input name="removeRoleRequest" message="tns:removeRoleRequest"></wsdl:input>
|
1303
|
+
<wsdl:output name="removeRoleResponse" message="tns:removeRoleResponse"></wsdl:output>
|
1304
|
+
<wsdl:fault name="ObjectNotFoundException" message="tns:ObjectNotFoundException"></wsdl:fault>
|
1305
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1306
|
+
<wsdl:fault name="ApplicationPermissionException" message="tns:ApplicationPermissionException"></wsdl:fault>
|
1307
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1308
|
+
</wsdl:operation>
|
1309
|
+
<wsdl:operation name="getCookieInfo">
|
1310
|
+
<wsdl:input name="getCookieInfoRequest" message="tns:getCookieInfoRequest"></wsdl:input>
|
1311
|
+
<wsdl:output name="getCookieInfoResponse" message="tns:getCookieInfoResponse"></wsdl:output>
|
1312
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1313
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1314
|
+
</wsdl:operation>
|
1315
|
+
<wsdl:operation name="updatePrincipalAttribute">
|
1316
|
+
<wsdl:input name="updatePrincipalAttributeRequest" message="tns:updatePrincipalAttributeRequest"></wsdl:input>
|
1317
|
+
<wsdl:output name="updatePrincipalAttributeResponse" message="tns:updatePrincipalAttributeResponse"></wsdl:output>
|
1318
|
+
<wsdl:fault name="ObjectNotFoundException" message="tns:ObjectNotFoundException"></wsdl:fault>
|
1319
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1320
|
+
<wsdl:fault name="ApplicationPermissionException" message="tns:ApplicationPermissionException"></wsdl:fault>
|
1321
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1322
|
+
</wsdl:operation>
|
1323
|
+
<wsdl:operation name="searchGroups">
|
1324
|
+
<wsdl:input name="searchGroupsRequest" message="tns:searchGroupsRequest"></wsdl:input>
|
1325
|
+
<wsdl:output name="searchGroupsResponse" message="tns:searchGroupsResponse"></wsdl:output>
|
1326
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1327
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1328
|
+
</wsdl:operation>
|
1329
|
+
<wsdl:operation name="getCacheTime">
|
1330
|
+
<wsdl:input name="getCacheTimeRequest" message="tns:getCacheTimeRequest"></wsdl:input>
|
1331
|
+
<wsdl:output name="getCacheTimeResponse" message="tns:getCacheTimeResponse"></wsdl:output>
|
1332
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1333
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1334
|
+
</wsdl:operation>
|
1335
|
+
<wsdl:operation name="isRoleMember">
|
1336
|
+
<wsdl:input name="isRoleMemberRequest" message="tns:isRoleMemberRequest"></wsdl:input>
|
1337
|
+
<wsdl:output name="isRoleMemberResponse" message="tns:isRoleMemberResponse"></wsdl:output>
|
1338
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1339
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1340
|
+
</wsdl:operation>
|
1341
|
+
<wsdl:operation name="updateGroup">
|
1342
|
+
<wsdl:input name="updateGroupRequest" message="tns:updateGroupRequest"></wsdl:input>
|
1343
|
+
<wsdl:output name="updateGroupResponse" message="tns:updateGroupResponse"></wsdl:output>
|
1344
|
+
<wsdl:fault name="ObjectNotFoundException" message="tns:ObjectNotFoundException"></wsdl:fault>
|
1345
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1346
|
+
<wsdl:fault name="ApplicationPermissionException" message="tns:ApplicationPermissionException"></wsdl:fault>
|
1347
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1348
|
+
</wsdl:operation>
|
1349
|
+
<wsdl:operation name="addAttributeToGroup">
|
1350
|
+
<wsdl:input name="addAttributeToGroupRequest" message="tns:addAttributeToGroupRequest"></wsdl:input>
|
1351
|
+
<wsdl:output name="addAttributeToGroupResponse" message="tns:addAttributeToGroupResponse"></wsdl:output>
|
1352
|
+
<wsdl:fault name="ObjectNotFoundException" message="tns:ObjectNotFoundException"></wsdl:fault>
|
1353
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1354
|
+
<wsdl:fault name="ApplicationPermissionException" message="tns:ApplicationPermissionException"></wsdl:fault>
|
1355
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1356
|
+
</wsdl:operation>
|
1357
|
+
<wsdl:operation name="findAllRoleNames">
|
1358
|
+
<wsdl:input name="findAllRoleNamesRequest" message="tns:findAllRoleNamesRequest"></wsdl:input>
|
1359
|
+
<wsdl:output name="findAllRoleNamesResponse" message="tns:findAllRoleNamesResponse"></wsdl:output>
|
1360
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1361
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1362
|
+
</wsdl:operation>
|
1363
|
+
<wsdl:operation name="findRoleByName">
|
1364
|
+
<wsdl:input name="findRoleByNameRequest" message="tns:findRoleByNameRequest"></wsdl:input>
|
1365
|
+
<wsdl:output name="findRoleByNameResponse" message="tns:findRoleByNameResponse"></wsdl:output>
|
1366
|
+
<wsdl:fault name="ObjectNotFoundException" message="tns:ObjectNotFoundException"></wsdl:fault>
|
1367
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1368
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1369
|
+
</wsdl:operation>
|
1370
|
+
<wsdl:operation name="isCacheEnabled">
|
1371
|
+
<wsdl:input name="isCacheEnabledRequest" message="tns:isCacheEnabledRequest"></wsdl:input>
|
1372
|
+
<wsdl:output name="isCacheEnabledResponse" message="tns:isCacheEnabledResponse"></wsdl:output>
|
1373
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1374
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1375
|
+
</wsdl:operation>
|
1376
|
+
<wsdl:operation name="findGroupByName">
|
1377
|
+
<wsdl:input name="findGroupByNameRequest" message="tns:findGroupByNameRequest"></wsdl:input>
|
1378
|
+
<wsdl:output name="findGroupByNameResponse" message="tns:findGroupByNameResponse"></wsdl:output>
|
1379
|
+
<wsdl:fault name="ObjectNotFoundException" message="tns:ObjectNotFoundException"></wsdl:fault>
|
1380
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1381
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1382
|
+
</wsdl:operation>
|
1383
|
+
<wsdl:operation name="findGroupWithAttributesByName">
|
1384
|
+
<wsdl:input name="findGroupWithAttributesByNameRequest" message="tns:findGroupWithAttributesByNameRequest"></wsdl:input>
|
1385
|
+
<wsdl:output name="findGroupWithAttributesByNameResponse" message="tns:findGroupWithAttributesByNameResponse"></wsdl:output>
|
1386
|
+
<wsdl:fault name="ObjectNotFoundException" message="tns:ObjectNotFoundException"></wsdl:fault>
|
1387
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1388
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1389
|
+
</wsdl:operation>
|
1390
|
+
<wsdl:operation name="removePrincipalFromRole">
|
1391
|
+
<wsdl:input name="removePrincipalFromRoleRequest" message="tns:removePrincipalFromRoleRequest"></wsdl:input>
|
1392
|
+
<wsdl:output name="removePrincipalFromRoleResponse" message="tns:removePrincipalFromRoleResponse"></wsdl:output>
|
1393
|
+
<wsdl:fault name="ObjectNotFoundException" message="tns:ObjectNotFoundException"></wsdl:fault>
|
1394
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1395
|
+
<wsdl:fault name="ApplicationPermissionException" message="tns:ApplicationPermissionException"></wsdl:fault>
|
1396
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1397
|
+
</wsdl:operation>
|
1398
|
+
<wsdl:operation name="findPrincipalWithAttributesByName">
|
1399
|
+
<wsdl:input name="findPrincipalWithAttributesByNameRequest" message="tns:findPrincipalWithAttributesByNameRequest"></wsdl:input>
|
1400
|
+
<wsdl:output name="findPrincipalWithAttributesByNameResponse" message="tns:findPrincipalWithAttributesByNameResponse"></wsdl:output>
|
1401
|
+
<wsdl:fault name="ObjectNotFoundException" message="tns:ObjectNotFoundException"></wsdl:fault>
|
1402
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1403
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1404
|
+
</wsdl:operation>
|
1405
|
+
<wsdl:operation name="authenticatePrincipal">
|
1406
|
+
<wsdl:input name="authenticatePrincipalRequest" message="tns:authenticatePrincipalRequest"></wsdl:input>
|
1407
|
+
<wsdl:output name="authenticatePrincipalResponse" message="tns:authenticatePrincipalResponse"></wsdl:output>
|
1408
|
+
<wsdl:fault name="ApplicationAccessDeniedException" message="tns:ApplicationAccessDeniedException"></wsdl:fault>
|
1409
|
+
<wsdl:fault name="InvalidAuthenticationException" message="tns:InvalidAuthenticationException"></wsdl:fault>
|
1410
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1411
|
+
<wsdl:fault name="InactiveAccountException" message="tns:InactiveAccountException"></wsdl:fault>
|
1412
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1413
|
+
</wsdl:operation>
|
1414
|
+
<wsdl:operation name="findGroupMemberships">
|
1415
|
+
<wsdl:input name="findGroupMembershipsRequest" message="tns:findGroupMembershipsRequest"></wsdl:input>
|
1416
|
+
<wsdl:output name="findGroupMembershipsResponse" message="tns:findGroupMembershipsResponse"></wsdl:output>
|
1417
|
+
<wsdl:fault name="ObjectNotFoundException" message="tns:ObjectNotFoundException"></wsdl:fault>
|
1418
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1419
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1420
|
+
</wsdl:operation>
|
1421
|
+
<wsdl:operation name="addPrincipalToGroup">
|
1422
|
+
<wsdl:input name="addPrincipalToGroupRequest" message="tns:addPrincipalToGroupRequest"></wsdl:input>
|
1423
|
+
<wsdl:output name="addPrincipalToGroupResponse" message="tns:addPrincipalToGroupResponse"></wsdl:output>
|
1424
|
+
<wsdl:fault name="ObjectNotFoundException" message="tns:ObjectNotFoundException"></wsdl:fault>
|
1425
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1426
|
+
<wsdl:fault name="ApplicationPermissionException" message="tns:ApplicationPermissionException"></wsdl:fault>
|
1427
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1428
|
+
</wsdl:operation>
|
1429
|
+
<wsdl:operation name="removeGroup">
|
1430
|
+
<wsdl:input name="removeGroupRequest" message="tns:removeGroupRequest"></wsdl:input>
|
1431
|
+
<wsdl:output name="removeGroupResponse" message="tns:removeGroupResponse"></wsdl:output>
|
1432
|
+
<wsdl:fault name="ObjectNotFoundException" message="tns:ObjectNotFoundException"></wsdl:fault>
|
1433
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1434
|
+
<wsdl:fault name="ApplicationPermissionException" message="tns:ApplicationPermissionException"></wsdl:fault>
|
1435
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1436
|
+
</wsdl:operation>
|
1437
|
+
<wsdl:operation name="removeAttributeFromGroup">
|
1438
|
+
<wsdl:input name="removeAttributeFromGroupRequest" message="tns:removeAttributeFromGroupRequest"></wsdl:input>
|
1439
|
+
<wsdl:output name="removeAttributeFromGroupResponse" message="tns:removeAttributeFromGroupResponse"></wsdl:output>
|
1440
|
+
<wsdl:fault name="ObjectNotFoundException" message="tns:ObjectNotFoundException"></wsdl:fault>
|
1441
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1442
|
+
<wsdl:fault name="ApplicationPermissionException" message="tns:ApplicationPermissionException"></wsdl:fault>
|
1443
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1444
|
+
</wsdl:operation>
|
1445
|
+
<wsdl:operation name="removeAttributeFromPrincipal">
|
1446
|
+
<wsdl:input name="removeAttributeFromPrincipalRequest" message="tns:removeAttributeFromPrincipalRequest"></wsdl:input>
|
1447
|
+
<wsdl:output name="removeAttributeFromPrincipalResponse" message="tns:removeAttributeFromPrincipalResponse"></wsdl:output>
|
1448
|
+
<wsdl:fault name="ObjectNotFoundException" message="tns:ObjectNotFoundException"></wsdl:fault>
|
1449
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1450
|
+
<wsdl:fault name="ApplicationPermissionException" message="tns:ApplicationPermissionException"></wsdl:fault>
|
1451
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1452
|
+
</wsdl:operation>
|
1453
|
+
<wsdl:operation name="addRole">
|
1454
|
+
<wsdl:input name="addRoleRequest" message="tns:addRoleRequest"></wsdl:input>
|
1455
|
+
<wsdl:output name="addRoleResponse" message="tns:addRoleResponse"></wsdl:output>
|
1456
|
+
<wsdl:fault name="InvalidRoleException" message="tns:InvalidRoleException"></wsdl:fault>
|
1457
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1458
|
+
<wsdl:fault name="ApplicationPermissionException" message="tns:ApplicationPermissionException"></wsdl:fault>
|
1459
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1460
|
+
</wsdl:operation>
|
1461
|
+
<wsdl:operation name="findAllPrincipalNames">
|
1462
|
+
<wsdl:input name="findAllPrincipalNamesRequest" message="tns:findAllPrincipalNamesRequest"></wsdl:input>
|
1463
|
+
<wsdl:output name="findAllPrincipalNamesResponse" message="tns:findAllPrincipalNamesResponse"></wsdl:output>
|
1464
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1465
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1466
|
+
</wsdl:operation>
|
1467
|
+
<wsdl:operation name="createPrincipalToken">
|
1468
|
+
<wsdl:input name="createPrincipalTokenRequest" message="tns:createPrincipalTokenRequest"></wsdl:input>
|
1469
|
+
<wsdl:output name="createPrincipalTokenResponse" message="tns:createPrincipalTokenResponse"></wsdl:output>
|
1470
|
+
<wsdl:fault name="ApplicationAccessDeniedException" message="tns:ApplicationAccessDeniedException"></wsdl:fault>
|
1471
|
+
<wsdl:fault name="InvalidAuthenticationException" message="tns:InvalidAuthenticationException"></wsdl:fault>
|
1472
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1473
|
+
<wsdl:fault name="InactiveAccountException" message="tns:InactiveAccountException"></wsdl:fault>
|
1474
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1475
|
+
</wsdl:operation>
|
1476
|
+
<wsdl:operation name="searchRoles">
|
1477
|
+
<wsdl:input name="searchRolesRequest" message="tns:searchRolesRequest"></wsdl:input>
|
1478
|
+
<wsdl:output name="searchRolesResponse" message="tns:searchRolesResponse"></wsdl:output>
|
1479
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1480
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1481
|
+
</wsdl:operation>
|
1482
|
+
<wsdl:operation name="removePrincipalFromGroup">
|
1483
|
+
<wsdl:input name="removePrincipalFromGroupRequest" message="tns:removePrincipalFromGroupRequest"></wsdl:input>
|
1484
|
+
<wsdl:output name="removePrincipalFromGroupResponse" message="tns:removePrincipalFromGroupResponse"></wsdl:output>
|
1485
|
+
<wsdl:fault name="ObjectNotFoundException" message="tns:ObjectNotFoundException"></wsdl:fault>
|
1486
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1487
|
+
<wsdl:fault name="ApplicationPermissionException" message="tns:ApplicationPermissionException"></wsdl:fault>
|
1488
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1489
|
+
</wsdl:operation>
|
1490
|
+
<wsdl:operation name="findPrincipalByName">
|
1491
|
+
<wsdl:input name="findPrincipalByNameRequest" message="tns:findPrincipalByNameRequest"></wsdl:input>
|
1492
|
+
<wsdl:output name="findPrincipalByNameResponse" message="tns:findPrincipalByNameResponse"></wsdl:output>
|
1493
|
+
<wsdl:fault name="ObjectNotFoundException" message="tns:ObjectNotFoundException"></wsdl:fault>
|
1494
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1495
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1496
|
+
</wsdl:operation>
|
1497
|
+
<wsdl:operation name="resetPrincipalCredential">
|
1498
|
+
<wsdl:input name="resetPrincipalCredentialRequest" message="tns:resetPrincipalCredentialRequest"></wsdl:input>
|
1499
|
+
<wsdl:output name="resetPrincipalCredentialResponse" message="tns:resetPrincipalCredentialResponse"></wsdl:output>
|
1500
|
+
<wsdl:fault name="ObjectNotFoundException" message="tns:ObjectNotFoundException"></wsdl:fault>
|
1501
|
+
<wsdl:fault name="InvalidEmailAddressException" message="tns:InvalidEmailAddressException"></wsdl:fault>
|
1502
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1503
|
+
<wsdl:fault name="ApplicationPermissionException" message="tns:ApplicationPermissionException"></wsdl:fault>
|
1504
|
+
<wsdl:fault name="InvalidCredentialException" message="tns:InvalidCredentialException"></wsdl:fault>
|
1505
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1506
|
+
</wsdl:operation>
|
1507
|
+
<wsdl:operation name="updateGroupAttribute">
|
1508
|
+
<wsdl:input name="updateGroupAttributeRequest" message="tns:updateGroupAttributeRequest"></wsdl:input>
|
1509
|
+
<wsdl:output name="updateGroupAttributeResponse" message="tns:updateGroupAttributeResponse"></wsdl:output>
|
1510
|
+
<wsdl:fault name="ObjectNotFoundException" message="tns:ObjectNotFoundException"></wsdl:fault>
|
1511
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1512
|
+
<wsdl:fault name="ApplicationPermissionException" message="tns:ApplicationPermissionException"></wsdl:fault>
|
1513
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1514
|
+
</wsdl:operation>
|
1515
|
+
<wsdl:operation name="isGroupMember">
|
1516
|
+
<wsdl:input name="isGroupMemberRequest" message="tns:isGroupMemberRequest"></wsdl:input>
|
1517
|
+
<wsdl:output name="isGroupMemberResponse" message="tns:isGroupMemberResponse"></wsdl:output>
|
1518
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1519
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1520
|
+
</wsdl:operation>
|
1521
|
+
<wsdl:operation name="searchPrincipals">
|
1522
|
+
<wsdl:input name="searchPrincipalsRequest" message="tns:searchPrincipalsRequest"></wsdl:input>
|
1523
|
+
<wsdl:output name="searchPrincipalsResponse" message="tns:searchPrincipalsResponse"></wsdl:output>
|
1524
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1525
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1526
|
+
</wsdl:operation>
|
1527
|
+
<wsdl:operation name="getDomain">
|
1528
|
+
<wsdl:input name="getDomainRequest" message="tns:getDomainRequest"></wsdl:input>
|
1529
|
+
<wsdl:output name="getDomainResponse" message="tns:getDomainResponse"></wsdl:output>
|
1530
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1531
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1532
|
+
</wsdl:operation>
|
1533
|
+
<wsdl:operation name="authenticateApplication">
|
1534
|
+
<wsdl:input name="authenticateApplicationRequest" message="tns:authenticateApplicationRequest"></wsdl:input>
|
1535
|
+
<wsdl:output name="authenticateApplicationResponse" message="tns:authenticateApplicationResponse"></wsdl:output>
|
1536
|
+
<wsdl:fault name="InvalidAuthenticationException" message="tns:InvalidAuthenticationException"></wsdl:fault>
|
1537
|
+
<wsdl:fault name="InvalidAuthorizationTokenException" message="tns:InvalidAuthorizationTokenException"></wsdl:fault>
|
1538
|
+
<wsdl:fault name="RemoteException" message="tns:RemoteException"></wsdl:fault>
|
1539
|
+
</wsdl:operation>
|
1540
|
+
</wsdl:portType>
|
1541
|
+
<wsdl:binding name="SecurityServerHttpBinding" type="tns:SecurityServerPortType">
|
1542
|
+
<wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
|
1543
|
+
<wsdl:operation name="findAllGroupRelationships">
|
1544
|
+
<wsdlsoap:operation soapAction=""/>
|
1545
|
+
<wsdl:input name="findAllGroupRelationshipsRequest">
|
1546
|
+
<wsdlsoap:body use="literal"/>
|
1547
|
+
</wsdl:input>
|
1548
|
+
<wsdl:output name="findAllGroupRelationshipsResponse">
|
1549
|
+
<wsdlsoap:body use="literal"/>
|
1550
|
+
</wsdl:output>
|
1551
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
1552
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
1553
|
+
</wsdl:fault>
|
1554
|
+
<wsdl:fault name="RemoteException">
|
1555
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
1556
|
+
</wsdl:fault>
|
1557
|
+
</wsdl:operation>
|
1558
|
+
<wsdl:operation name="addGroup">
|
1559
|
+
<wsdlsoap:operation soapAction=""/>
|
1560
|
+
<wsdl:input name="addGroupRequest">
|
1561
|
+
<wsdlsoap:body use="literal"/>
|
1562
|
+
</wsdl:input>
|
1563
|
+
<wsdl:output name="addGroupResponse">
|
1564
|
+
<wsdlsoap:body use="literal"/>
|
1565
|
+
</wsdl:output>
|
1566
|
+
<wsdl:fault name="InvalidGroupException">
|
1567
|
+
<wsdlsoap:fault name="InvalidGroupException" use="literal"/>
|
1568
|
+
</wsdl:fault>
|
1569
|
+
<wsdl:fault name="ApplicationPermissionException">
|
1570
|
+
<wsdlsoap:fault name="ApplicationPermissionException" use="literal"/>
|
1571
|
+
</wsdl:fault>
|
1572
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
1573
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
1574
|
+
</wsdl:fault>
|
1575
|
+
<wsdl:fault name="RemoteException">
|
1576
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
1577
|
+
</wsdl:fault>
|
1578
|
+
</wsdl:operation>
|
1579
|
+
<wsdl:operation name="addPrincipalToRole">
|
1580
|
+
<wsdlsoap:operation soapAction=""/>
|
1581
|
+
<wsdl:input name="addPrincipalToRoleRequest">
|
1582
|
+
<wsdlsoap:body use="literal"/>
|
1583
|
+
</wsdl:input>
|
1584
|
+
<wsdl:output name="addPrincipalToRoleResponse">
|
1585
|
+
<wsdlsoap:body use="literal"/>
|
1586
|
+
</wsdl:output>
|
1587
|
+
<wsdl:fault name="ObjectNotFoundException">
|
1588
|
+
<wsdlsoap:fault name="ObjectNotFoundException" use="literal"/>
|
1589
|
+
</wsdl:fault>
|
1590
|
+
<wsdl:fault name="ApplicationPermissionException">
|
1591
|
+
<wsdlsoap:fault name="ApplicationPermissionException" use="literal"/>
|
1592
|
+
</wsdl:fault>
|
1593
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
1594
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
1595
|
+
</wsdl:fault>
|
1596
|
+
<wsdl:fault name="RemoteException">
|
1597
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
1598
|
+
</wsdl:fault>
|
1599
|
+
</wsdl:operation>
|
1600
|
+
<wsdl:operation name="findPrincipalByToken">
|
1601
|
+
<wsdlsoap:operation soapAction=""/>
|
1602
|
+
<wsdl:input name="findPrincipalByTokenRequest">
|
1603
|
+
<wsdlsoap:body use="literal"/>
|
1604
|
+
</wsdl:input>
|
1605
|
+
<wsdl:output name="findPrincipalByTokenResponse">
|
1606
|
+
<wsdlsoap:body use="literal"/>
|
1607
|
+
</wsdl:output>
|
1608
|
+
<wsdl:fault name="InvalidTokenException">
|
1609
|
+
<wsdlsoap:fault name="InvalidTokenException" use="literal"/>
|
1610
|
+
</wsdl:fault>
|
1611
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
1612
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
1613
|
+
</wsdl:fault>
|
1614
|
+
<wsdl:fault name="RemoteException">
|
1615
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
1616
|
+
</wsdl:fault>
|
1617
|
+
</wsdl:operation>
|
1618
|
+
<wsdl:operation name="updatePrincipalCredential">
|
1619
|
+
<wsdlsoap:operation soapAction=""/>
|
1620
|
+
<wsdl:input name="updatePrincipalCredentialRequest">
|
1621
|
+
<wsdlsoap:body use="literal"/>
|
1622
|
+
</wsdl:input>
|
1623
|
+
<wsdl:output name="updatePrincipalCredentialResponse">
|
1624
|
+
<wsdlsoap:body use="literal"/>
|
1625
|
+
</wsdl:output>
|
1626
|
+
<wsdl:fault name="ObjectNotFoundException">
|
1627
|
+
<wsdlsoap:fault name="ObjectNotFoundException" use="literal"/>
|
1628
|
+
</wsdl:fault>
|
1629
|
+
<wsdl:fault name="ApplicationPermissionException">
|
1630
|
+
<wsdlsoap:fault name="ApplicationPermissionException" use="literal"/>
|
1631
|
+
</wsdl:fault>
|
1632
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
1633
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
1634
|
+
</wsdl:fault>
|
1635
|
+
<wsdl:fault name="InvalidCredentialException">
|
1636
|
+
<wsdlsoap:fault name="InvalidCredentialException" use="literal"/>
|
1637
|
+
</wsdl:fault>
|
1638
|
+
<wsdl:fault name="RemoteException">
|
1639
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
1640
|
+
</wsdl:fault>
|
1641
|
+
</wsdl:operation>
|
1642
|
+
<wsdl:operation name="getGrantedAuthorities">
|
1643
|
+
<wsdlsoap:operation soapAction=""/>
|
1644
|
+
<wsdl:input name="getGrantedAuthoritiesRequest">
|
1645
|
+
<wsdlsoap:body use="literal"/>
|
1646
|
+
</wsdl:input>
|
1647
|
+
<wsdl:output name="getGrantedAuthoritiesResponse">
|
1648
|
+
<wsdlsoap:body use="literal"/>
|
1649
|
+
</wsdl:output>
|
1650
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
1651
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
1652
|
+
</wsdl:fault>
|
1653
|
+
<wsdl:fault name="RemoteException">
|
1654
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
1655
|
+
</wsdl:fault>
|
1656
|
+
</wsdl:operation>
|
1657
|
+
<wsdl:operation name="addPrincipal">
|
1658
|
+
<wsdlsoap:operation soapAction=""/>
|
1659
|
+
<wsdl:input name="addPrincipalRequest">
|
1660
|
+
<wsdlsoap:body use="literal"/>
|
1661
|
+
</wsdl:input>
|
1662
|
+
<wsdl:output name="addPrincipalResponse">
|
1663
|
+
<wsdlsoap:body use="literal"/>
|
1664
|
+
</wsdl:output>
|
1665
|
+
<wsdl:fault name="InvalidUserException">
|
1666
|
+
<wsdlsoap:fault name="InvalidUserException" use="literal"/>
|
1667
|
+
</wsdl:fault>
|
1668
|
+
<wsdl:fault name="ApplicationPermissionException">
|
1669
|
+
<wsdlsoap:fault name="ApplicationPermissionException" use="literal"/>
|
1670
|
+
</wsdl:fault>
|
1671
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
1672
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
1673
|
+
</wsdl:fault>
|
1674
|
+
<wsdl:fault name="InvalidCredentialException">
|
1675
|
+
<wsdlsoap:fault name="InvalidCredentialException" use="literal"/>
|
1676
|
+
</wsdl:fault>
|
1677
|
+
<wsdl:fault name="RemoteException">
|
1678
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
1679
|
+
</wsdl:fault>
|
1680
|
+
</wsdl:operation>
|
1681
|
+
<wsdl:operation name="addAttributeToPrincipal">
|
1682
|
+
<wsdlsoap:operation soapAction=""/>
|
1683
|
+
<wsdl:input name="addAttributeToPrincipalRequest">
|
1684
|
+
<wsdlsoap:body use="literal"/>
|
1685
|
+
</wsdl:input>
|
1686
|
+
<wsdl:output name="addAttributeToPrincipalResponse">
|
1687
|
+
<wsdlsoap:body use="literal"/>
|
1688
|
+
</wsdl:output>
|
1689
|
+
<wsdl:fault name="ObjectNotFoundException">
|
1690
|
+
<wsdlsoap:fault name="ObjectNotFoundException" use="literal"/>
|
1691
|
+
</wsdl:fault>
|
1692
|
+
<wsdl:fault name="ApplicationPermissionException">
|
1693
|
+
<wsdlsoap:fault name="ApplicationPermissionException" use="literal"/>
|
1694
|
+
</wsdl:fault>
|
1695
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
1696
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
1697
|
+
</wsdl:fault>
|
1698
|
+
<wsdl:fault name="RemoteException">
|
1699
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
1700
|
+
</wsdl:fault>
|
1701
|
+
</wsdl:operation>
|
1702
|
+
<wsdl:operation name="invalidatePrincipalToken">
|
1703
|
+
<wsdlsoap:operation soapAction=""/>
|
1704
|
+
<wsdl:input name="invalidatePrincipalTokenRequest">
|
1705
|
+
<wsdlsoap:body use="literal"/>
|
1706
|
+
</wsdl:input>
|
1707
|
+
<wsdl:output name="invalidatePrincipalTokenResponse">
|
1708
|
+
<wsdlsoap:body use="literal"/>
|
1709
|
+
</wsdl:output>
|
1710
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
1711
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
1712
|
+
</wsdl:fault>
|
1713
|
+
<wsdl:fault name="RemoteException">
|
1714
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
1715
|
+
</wsdl:fault>
|
1716
|
+
</wsdl:operation>
|
1717
|
+
<wsdl:operation name="findAllGroupNames">
|
1718
|
+
<wsdlsoap:operation soapAction=""/>
|
1719
|
+
<wsdl:input name="findAllGroupNamesRequest">
|
1720
|
+
<wsdlsoap:body use="literal"/>
|
1721
|
+
</wsdl:input>
|
1722
|
+
<wsdl:output name="findAllGroupNamesResponse">
|
1723
|
+
<wsdlsoap:body use="literal"/>
|
1724
|
+
</wsdl:output>
|
1725
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
1726
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
1727
|
+
</wsdl:fault>
|
1728
|
+
<wsdl:fault name="RemoteException">
|
1729
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
1730
|
+
</wsdl:fault>
|
1731
|
+
</wsdl:operation>
|
1732
|
+
<wsdl:operation name="findRoleMemberships">
|
1733
|
+
<wsdlsoap:operation soapAction=""/>
|
1734
|
+
<wsdl:input name="findRoleMembershipsRequest">
|
1735
|
+
<wsdlsoap:body use="literal"/>
|
1736
|
+
</wsdl:input>
|
1737
|
+
<wsdl:output name="findRoleMembershipsResponse">
|
1738
|
+
<wsdlsoap:body use="literal"/>
|
1739
|
+
</wsdl:output>
|
1740
|
+
<wsdl:fault name="ObjectNotFoundException">
|
1741
|
+
<wsdlsoap:fault name="ObjectNotFoundException" use="literal"/>
|
1742
|
+
</wsdl:fault>
|
1743
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
1744
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
1745
|
+
</wsdl:fault>
|
1746
|
+
<wsdl:fault name="RemoteException">
|
1747
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
1748
|
+
</wsdl:fault>
|
1749
|
+
</wsdl:operation>
|
1750
|
+
<wsdl:operation name="removePrincipal">
|
1751
|
+
<wsdlsoap:operation soapAction=""/>
|
1752
|
+
<wsdl:input name="removePrincipalRequest">
|
1753
|
+
<wsdlsoap:body use="literal"/>
|
1754
|
+
</wsdl:input>
|
1755
|
+
<wsdl:output name="removePrincipalResponse">
|
1756
|
+
<wsdlsoap:body use="literal"/>
|
1757
|
+
</wsdl:output>
|
1758
|
+
<wsdl:fault name="ObjectNotFoundException">
|
1759
|
+
<wsdlsoap:fault name="ObjectNotFoundException" use="literal"/>
|
1760
|
+
</wsdl:fault>
|
1761
|
+
<wsdl:fault name="ApplicationPermissionException">
|
1762
|
+
<wsdlsoap:fault name="ApplicationPermissionException" use="literal"/>
|
1763
|
+
</wsdl:fault>
|
1764
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
1765
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
1766
|
+
</wsdl:fault>
|
1767
|
+
<wsdl:fault name="RemoteException">
|
1768
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
1769
|
+
</wsdl:fault>
|
1770
|
+
</wsdl:operation>
|
1771
|
+
<wsdl:operation name="isValidPrincipalToken">
|
1772
|
+
<wsdlsoap:operation soapAction=""/>
|
1773
|
+
<wsdl:input name="isValidPrincipalTokenRequest">
|
1774
|
+
<wsdlsoap:body use="literal"/>
|
1775
|
+
</wsdl:input>
|
1776
|
+
<wsdl:output name="isValidPrincipalTokenResponse">
|
1777
|
+
<wsdlsoap:body use="literal"/>
|
1778
|
+
</wsdl:output>
|
1779
|
+
<wsdl:fault name="ApplicationAccessDeniedException">
|
1780
|
+
<wsdlsoap:fault name="ApplicationAccessDeniedException" use="literal"/>
|
1781
|
+
</wsdl:fault>
|
1782
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
1783
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
1784
|
+
</wsdl:fault>
|
1785
|
+
<wsdl:fault name="RemoteException">
|
1786
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
1787
|
+
</wsdl:fault>
|
1788
|
+
</wsdl:operation>
|
1789
|
+
<wsdl:operation name="authenticatePrincipalSimple">
|
1790
|
+
<wsdlsoap:operation soapAction=""/>
|
1791
|
+
<wsdl:input name="authenticatePrincipalSimpleRequest">
|
1792
|
+
<wsdlsoap:body use="literal"/>
|
1793
|
+
</wsdl:input>
|
1794
|
+
<wsdl:output name="authenticatePrincipalSimpleResponse">
|
1795
|
+
<wsdlsoap:body use="literal"/>
|
1796
|
+
</wsdl:output>
|
1797
|
+
<wsdl:fault name="ApplicationAccessDeniedException">
|
1798
|
+
<wsdlsoap:fault name="ApplicationAccessDeniedException" use="literal"/>
|
1799
|
+
</wsdl:fault>
|
1800
|
+
<wsdl:fault name="InvalidAuthenticationException">
|
1801
|
+
<wsdlsoap:fault name="InvalidAuthenticationException" use="literal"/>
|
1802
|
+
</wsdl:fault>
|
1803
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
1804
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
1805
|
+
</wsdl:fault>
|
1806
|
+
<wsdl:fault name="InactiveAccountException">
|
1807
|
+
<wsdlsoap:fault name="InactiveAccountException" use="literal"/>
|
1808
|
+
</wsdl:fault>
|
1809
|
+
<wsdl:fault name="RemoteException">
|
1810
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
1811
|
+
</wsdl:fault>
|
1812
|
+
</wsdl:operation>
|
1813
|
+
<wsdl:operation name="removeRole">
|
1814
|
+
<wsdlsoap:operation soapAction=""/>
|
1815
|
+
<wsdl:input name="removeRoleRequest">
|
1816
|
+
<wsdlsoap:body use="literal"/>
|
1817
|
+
</wsdl:input>
|
1818
|
+
<wsdl:output name="removeRoleResponse">
|
1819
|
+
<wsdlsoap:body use="literal"/>
|
1820
|
+
</wsdl:output>
|
1821
|
+
<wsdl:fault name="ObjectNotFoundException">
|
1822
|
+
<wsdlsoap:fault name="ObjectNotFoundException" use="literal"/>
|
1823
|
+
</wsdl:fault>
|
1824
|
+
<wsdl:fault name="ApplicationPermissionException">
|
1825
|
+
<wsdlsoap:fault name="ApplicationPermissionException" use="literal"/>
|
1826
|
+
</wsdl:fault>
|
1827
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
1828
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
1829
|
+
</wsdl:fault>
|
1830
|
+
<wsdl:fault name="RemoteException">
|
1831
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
1832
|
+
</wsdl:fault>
|
1833
|
+
</wsdl:operation>
|
1834
|
+
<wsdl:operation name="getCookieInfo">
|
1835
|
+
<wsdlsoap:operation soapAction=""/>
|
1836
|
+
<wsdl:input name="getCookieInfoRequest">
|
1837
|
+
<wsdlsoap:body use="literal"/>
|
1838
|
+
</wsdl:input>
|
1839
|
+
<wsdl:output name="getCookieInfoResponse">
|
1840
|
+
<wsdlsoap:body use="literal"/>
|
1841
|
+
</wsdl:output>
|
1842
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
1843
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
1844
|
+
</wsdl:fault>
|
1845
|
+
<wsdl:fault name="RemoteException">
|
1846
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
1847
|
+
</wsdl:fault>
|
1848
|
+
</wsdl:operation>
|
1849
|
+
<wsdl:operation name="updatePrincipalAttribute">
|
1850
|
+
<wsdlsoap:operation soapAction=""/>
|
1851
|
+
<wsdl:input name="updatePrincipalAttributeRequest">
|
1852
|
+
<wsdlsoap:body use="literal"/>
|
1853
|
+
</wsdl:input>
|
1854
|
+
<wsdl:output name="updatePrincipalAttributeResponse">
|
1855
|
+
<wsdlsoap:body use="literal"/>
|
1856
|
+
</wsdl:output>
|
1857
|
+
<wsdl:fault name="ObjectNotFoundException">
|
1858
|
+
<wsdlsoap:fault name="ObjectNotFoundException" use="literal"/>
|
1859
|
+
</wsdl:fault>
|
1860
|
+
<wsdl:fault name="ApplicationPermissionException">
|
1861
|
+
<wsdlsoap:fault name="ApplicationPermissionException" use="literal"/>
|
1862
|
+
</wsdl:fault>
|
1863
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
1864
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
1865
|
+
</wsdl:fault>
|
1866
|
+
<wsdl:fault name="RemoteException">
|
1867
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
1868
|
+
</wsdl:fault>
|
1869
|
+
</wsdl:operation>
|
1870
|
+
<wsdl:operation name="searchGroups">
|
1871
|
+
<wsdlsoap:operation soapAction=""/>
|
1872
|
+
<wsdl:input name="searchGroupsRequest">
|
1873
|
+
<wsdlsoap:body use="literal"/>
|
1874
|
+
</wsdl:input>
|
1875
|
+
<wsdl:output name="searchGroupsResponse">
|
1876
|
+
<wsdlsoap:body use="literal"/>
|
1877
|
+
</wsdl:output>
|
1878
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
1879
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
1880
|
+
</wsdl:fault>
|
1881
|
+
<wsdl:fault name="RemoteException">
|
1882
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
1883
|
+
</wsdl:fault>
|
1884
|
+
</wsdl:operation>
|
1885
|
+
<wsdl:operation name="getCacheTime">
|
1886
|
+
<wsdlsoap:operation soapAction=""/>
|
1887
|
+
<wsdl:input name="getCacheTimeRequest">
|
1888
|
+
<wsdlsoap:body use="literal"/>
|
1889
|
+
</wsdl:input>
|
1890
|
+
<wsdl:output name="getCacheTimeResponse">
|
1891
|
+
<wsdlsoap:body use="literal"/>
|
1892
|
+
</wsdl:output>
|
1893
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
1894
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
1895
|
+
</wsdl:fault>
|
1896
|
+
<wsdl:fault name="RemoteException">
|
1897
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
1898
|
+
</wsdl:fault>
|
1899
|
+
</wsdl:operation>
|
1900
|
+
<wsdl:operation name="isRoleMember">
|
1901
|
+
<wsdlsoap:operation soapAction=""/>
|
1902
|
+
<wsdl:input name="isRoleMemberRequest">
|
1903
|
+
<wsdlsoap:body use="literal"/>
|
1904
|
+
</wsdl:input>
|
1905
|
+
<wsdl:output name="isRoleMemberResponse">
|
1906
|
+
<wsdlsoap:body use="literal"/>
|
1907
|
+
</wsdl:output>
|
1908
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
1909
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
1910
|
+
</wsdl:fault>
|
1911
|
+
<wsdl:fault name="RemoteException">
|
1912
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
1913
|
+
</wsdl:fault>
|
1914
|
+
</wsdl:operation>
|
1915
|
+
<wsdl:operation name="updateGroup">
|
1916
|
+
<wsdlsoap:operation soapAction=""/>
|
1917
|
+
<wsdl:input name="updateGroupRequest">
|
1918
|
+
<wsdlsoap:body use="literal"/>
|
1919
|
+
</wsdl:input>
|
1920
|
+
<wsdl:output name="updateGroupResponse">
|
1921
|
+
<wsdlsoap:body use="literal"/>
|
1922
|
+
</wsdl:output>
|
1923
|
+
<wsdl:fault name="ObjectNotFoundException">
|
1924
|
+
<wsdlsoap:fault name="ObjectNotFoundException" use="literal"/>
|
1925
|
+
</wsdl:fault>
|
1926
|
+
<wsdl:fault name="ApplicationPermissionException">
|
1927
|
+
<wsdlsoap:fault name="ApplicationPermissionException" use="literal"/>
|
1928
|
+
</wsdl:fault>
|
1929
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
1930
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
1931
|
+
</wsdl:fault>
|
1932
|
+
<wsdl:fault name="RemoteException">
|
1933
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
1934
|
+
</wsdl:fault>
|
1935
|
+
</wsdl:operation>
|
1936
|
+
<wsdl:operation name="addAttributeToGroup">
|
1937
|
+
<wsdlsoap:operation soapAction=""/>
|
1938
|
+
<wsdl:input name="addAttributeToGroupRequest">
|
1939
|
+
<wsdlsoap:body use="literal"/>
|
1940
|
+
</wsdl:input>
|
1941
|
+
<wsdl:output name="addAttributeToGroupResponse">
|
1942
|
+
<wsdlsoap:body use="literal"/>
|
1943
|
+
</wsdl:output>
|
1944
|
+
<wsdl:fault name="ObjectNotFoundException">
|
1945
|
+
<wsdlsoap:fault name="ObjectNotFoundException" use="literal"/>
|
1946
|
+
</wsdl:fault>
|
1947
|
+
<wsdl:fault name="ApplicationPermissionException">
|
1948
|
+
<wsdlsoap:fault name="ApplicationPermissionException" use="literal"/>
|
1949
|
+
</wsdl:fault>
|
1950
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
1951
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
1952
|
+
</wsdl:fault>
|
1953
|
+
<wsdl:fault name="RemoteException">
|
1954
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
1955
|
+
</wsdl:fault>
|
1956
|
+
</wsdl:operation>
|
1957
|
+
<wsdl:operation name="findAllRoleNames">
|
1958
|
+
<wsdlsoap:operation soapAction=""/>
|
1959
|
+
<wsdl:input name="findAllRoleNamesRequest">
|
1960
|
+
<wsdlsoap:body use="literal"/>
|
1961
|
+
</wsdl:input>
|
1962
|
+
<wsdl:output name="findAllRoleNamesResponse">
|
1963
|
+
<wsdlsoap:body use="literal"/>
|
1964
|
+
</wsdl:output>
|
1965
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
1966
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
1967
|
+
</wsdl:fault>
|
1968
|
+
<wsdl:fault name="RemoteException">
|
1969
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
1970
|
+
</wsdl:fault>
|
1971
|
+
</wsdl:operation>
|
1972
|
+
<wsdl:operation name="findRoleByName">
|
1973
|
+
<wsdlsoap:operation soapAction=""/>
|
1974
|
+
<wsdl:input name="findRoleByNameRequest">
|
1975
|
+
<wsdlsoap:body use="literal"/>
|
1976
|
+
</wsdl:input>
|
1977
|
+
<wsdl:output name="findRoleByNameResponse">
|
1978
|
+
<wsdlsoap:body use="literal"/>
|
1979
|
+
</wsdl:output>
|
1980
|
+
<wsdl:fault name="ObjectNotFoundException">
|
1981
|
+
<wsdlsoap:fault name="ObjectNotFoundException" use="literal"/>
|
1982
|
+
</wsdl:fault>
|
1983
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
1984
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
1985
|
+
</wsdl:fault>
|
1986
|
+
<wsdl:fault name="RemoteException">
|
1987
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
1988
|
+
</wsdl:fault>
|
1989
|
+
</wsdl:operation>
|
1990
|
+
<wsdl:operation name="isCacheEnabled">
|
1991
|
+
<wsdlsoap:operation soapAction=""/>
|
1992
|
+
<wsdl:input name="isCacheEnabledRequest">
|
1993
|
+
<wsdlsoap:body use="literal"/>
|
1994
|
+
</wsdl:input>
|
1995
|
+
<wsdl:output name="isCacheEnabledResponse">
|
1996
|
+
<wsdlsoap:body use="literal"/>
|
1997
|
+
</wsdl:output>
|
1998
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
1999
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
2000
|
+
</wsdl:fault>
|
2001
|
+
<wsdl:fault name="RemoteException">
|
2002
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
2003
|
+
</wsdl:fault>
|
2004
|
+
</wsdl:operation>
|
2005
|
+
<wsdl:operation name="findGroupByName">
|
2006
|
+
<wsdlsoap:operation soapAction=""/>
|
2007
|
+
<wsdl:input name="findGroupByNameRequest">
|
2008
|
+
<wsdlsoap:body use="literal"/>
|
2009
|
+
</wsdl:input>
|
2010
|
+
<wsdl:output name="findGroupByNameResponse">
|
2011
|
+
<wsdlsoap:body use="literal"/>
|
2012
|
+
</wsdl:output>
|
2013
|
+
<wsdl:fault name="ObjectNotFoundException">
|
2014
|
+
<wsdlsoap:fault name="ObjectNotFoundException" use="literal"/>
|
2015
|
+
</wsdl:fault>
|
2016
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
2017
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
2018
|
+
</wsdl:fault>
|
2019
|
+
<wsdl:fault name="RemoteException">
|
2020
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
2021
|
+
</wsdl:fault>
|
2022
|
+
</wsdl:operation>
|
2023
|
+
<wsdl:operation name="findGroupWithAttributesByName">
|
2024
|
+
<wsdlsoap:operation soapAction=""/>
|
2025
|
+
<wsdl:input name="findGroupWithAttributesByNameRequest">
|
2026
|
+
<wsdlsoap:body use="literal"/>
|
2027
|
+
</wsdl:input>
|
2028
|
+
<wsdl:output name="findGroupWithAttributesByNameResponse">
|
2029
|
+
<wsdlsoap:body use="literal"/>
|
2030
|
+
</wsdl:output>
|
2031
|
+
<wsdl:fault name="ObjectNotFoundException">
|
2032
|
+
<wsdlsoap:fault name="ObjectNotFoundException" use="literal"/>
|
2033
|
+
</wsdl:fault>
|
2034
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
2035
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
2036
|
+
</wsdl:fault>
|
2037
|
+
<wsdl:fault name="RemoteException">
|
2038
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
2039
|
+
</wsdl:fault>
|
2040
|
+
</wsdl:operation>
|
2041
|
+
<wsdl:operation name="removePrincipalFromRole">
|
2042
|
+
<wsdlsoap:operation soapAction=""/>
|
2043
|
+
<wsdl:input name="removePrincipalFromRoleRequest">
|
2044
|
+
<wsdlsoap:body use="literal"/>
|
2045
|
+
</wsdl:input>
|
2046
|
+
<wsdl:output name="removePrincipalFromRoleResponse">
|
2047
|
+
<wsdlsoap:body use="literal"/>
|
2048
|
+
</wsdl:output>
|
2049
|
+
<wsdl:fault name="ObjectNotFoundException">
|
2050
|
+
<wsdlsoap:fault name="ObjectNotFoundException" use="literal"/>
|
2051
|
+
</wsdl:fault>
|
2052
|
+
<wsdl:fault name="ApplicationPermissionException">
|
2053
|
+
<wsdlsoap:fault name="ApplicationPermissionException" use="literal"/>
|
2054
|
+
</wsdl:fault>
|
2055
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
2056
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
2057
|
+
</wsdl:fault>
|
2058
|
+
<wsdl:fault name="RemoteException">
|
2059
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
2060
|
+
</wsdl:fault>
|
2061
|
+
</wsdl:operation>
|
2062
|
+
<wsdl:operation name="findPrincipalWithAttributesByName">
|
2063
|
+
<wsdlsoap:operation soapAction=""/>
|
2064
|
+
<wsdl:input name="findPrincipalWithAttributesByNameRequest">
|
2065
|
+
<wsdlsoap:body use="literal"/>
|
2066
|
+
</wsdl:input>
|
2067
|
+
<wsdl:output name="findPrincipalWithAttributesByNameResponse">
|
2068
|
+
<wsdlsoap:body use="literal"/>
|
2069
|
+
</wsdl:output>
|
2070
|
+
<wsdl:fault name="ObjectNotFoundException">
|
2071
|
+
<wsdlsoap:fault name="ObjectNotFoundException" use="literal"/>
|
2072
|
+
</wsdl:fault>
|
2073
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
2074
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
2075
|
+
</wsdl:fault>
|
2076
|
+
<wsdl:fault name="RemoteException">
|
2077
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
2078
|
+
</wsdl:fault>
|
2079
|
+
</wsdl:operation>
|
2080
|
+
<wsdl:operation name="authenticatePrincipal">
|
2081
|
+
<wsdlsoap:operation soapAction=""/>
|
2082
|
+
<wsdl:input name="authenticatePrincipalRequest">
|
2083
|
+
<wsdlsoap:body use="literal"/>
|
2084
|
+
</wsdl:input>
|
2085
|
+
<wsdl:output name="authenticatePrincipalResponse">
|
2086
|
+
<wsdlsoap:body use="literal"/>
|
2087
|
+
</wsdl:output>
|
2088
|
+
<wsdl:fault name="ApplicationAccessDeniedException">
|
2089
|
+
<wsdlsoap:fault name="ApplicationAccessDeniedException" use="literal"/>
|
2090
|
+
</wsdl:fault>
|
2091
|
+
<wsdl:fault name="InvalidAuthenticationException">
|
2092
|
+
<wsdlsoap:fault name="InvalidAuthenticationException" use="literal"/>
|
2093
|
+
</wsdl:fault>
|
2094
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
2095
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
2096
|
+
</wsdl:fault>
|
2097
|
+
<wsdl:fault name="InactiveAccountException">
|
2098
|
+
<wsdlsoap:fault name="InactiveAccountException" use="literal"/>
|
2099
|
+
</wsdl:fault>
|
2100
|
+
<wsdl:fault name="RemoteException">
|
2101
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
2102
|
+
</wsdl:fault>
|
2103
|
+
</wsdl:operation>
|
2104
|
+
<wsdl:operation name="findGroupMemberships">
|
2105
|
+
<wsdlsoap:operation soapAction=""/>
|
2106
|
+
<wsdl:input name="findGroupMembershipsRequest">
|
2107
|
+
<wsdlsoap:body use="literal"/>
|
2108
|
+
</wsdl:input>
|
2109
|
+
<wsdl:output name="findGroupMembershipsResponse">
|
2110
|
+
<wsdlsoap:body use="literal"/>
|
2111
|
+
</wsdl:output>
|
2112
|
+
<wsdl:fault name="ObjectNotFoundException">
|
2113
|
+
<wsdlsoap:fault name="ObjectNotFoundException" use="literal"/>
|
2114
|
+
</wsdl:fault>
|
2115
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
2116
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
2117
|
+
</wsdl:fault>
|
2118
|
+
<wsdl:fault name="RemoteException">
|
2119
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
2120
|
+
</wsdl:fault>
|
2121
|
+
</wsdl:operation>
|
2122
|
+
<wsdl:operation name="addPrincipalToGroup">
|
2123
|
+
<wsdlsoap:operation soapAction=""/>
|
2124
|
+
<wsdl:input name="addPrincipalToGroupRequest">
|
2125
|
+
<wsdlsoap:body use="literal"/>
|
2126
|
+
</wsdl:input>
|
2127
|
+
<wsdl:output name="addPrincipalToGroupResponse">
|
2128
|
+
<wsdlsoap:body use="literal"/>
|
2129
|
+
</wsdl:output>
|
2130
|
+
<wsdl:fault name="ObjectNotFoundException">
|
2131
|
+
<wsdlsoap:fault name="ObjectNotFoundException" use="literal"/>
|
2132
|
+
</wsdl:fault>
|
2133
|
+
<wsdl:fault name="ApplicationPermissionException">
|
2134
|
+
<wsdlsoap:fault name="ApplicationPermissionException" use="literal"/>
|
2135
|
+
</wsdl:fault>
|
2136
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
2137
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
2138
|
+
</wsdl:fault>
|
2139
|
+
<wsdl:fault name="RemoteException">
|
2140
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
2141
|
+
</wsdl:fault>
|
2142
|
+
</wsdl:operation>
|
2143
|
+
<wsdl:operation name="removeGroup">
|
2144
|
+
<wsdlsoap:operation soapAction=""/>
|
2145
|
+
<wsdl:input name="removeGroupRequest">
|
2146
|
+
<wsdlsoap:body use="literal"/>
|
2147
|
+
</wsdl:input>
|
2148
|
+
<wsdl:output name="removeGroupResponse">
|
2149
|
+
<wsdlsoap:body use="literal"/>
|
2150
|
+
</wsdl:output>
|
2151
|
+
<wsdl:fault name="ObjectNotFoundException">
|
2152
|
+
<wsdlsoap:fault name="ObjectNotFoundException" use="literal"/>
|
2153
|
+
</wsdl:fault>
|
2154
|
+
<wsdl:fault name="ApplicationPermissionException">
|
2155
|
+
<wsdlsoap:fault name="ApplicationPermissionException" use="literal"/>
|
2156
|
+
</wsdl:fault>
|
2157
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
2158
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
2159
|
+
</wsdl:fault>
|
2160
|
+
<wsdl:fault name="RemoteException">
|
2161
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
2162
|
+
</wsdl:fault>
|
2163
|
+
</wsdl:operation>
|
2164
|
+
<wsdl:operation name="removeAttributeFromGroup">
|
2165
|
+
<wsdlsoap:operation soapAction=""/>
|
2166
|
+
<wsdl:input name="removeAttributeFromGroupRequest">
|
2167
|
+
<wsdlsoap:body use="literal"/>
|
2168
|
+
</wsdl:input>
|
2169
|
+
<wsdl:output name="removeAttributeFromGroupResponse">
|
2170
|
+
<wsdlsoap:body use="literal"/>
|
2171
|
+
</wsdl:output>
|
2172
|
+
<wsdl:fault name="ObjectNotFoundException">
|
2173
|
+
<wsdlsoap:fault name="ObjectNotFoundException" use="literal"/>
|
2174
|
+
</wsdl:fault>
|
2175
|
+
<wsdl:fault name="ApplicationPermissionException">
|
2176
|
+
<wsdlsoap:fault name="ApplicationPermissionException" use="literal"/>
|
2177
|
+
</wsdl:fault>
|
2178
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
2179
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
2180
|
+
</wsdl:fault>
|
2181
|
+
<wsdl:fault name="RemoteException">
|
2182
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
2183
|
+
</wsdl:fault>
|
2184
|
+
</wsdl:operation>
|
2185
|
+
<wsdl:operation name="removeAttributeFromPrincipal">
|
2186
|
+
<wsdlsoap:operation soapAction=""/>
|
2187
|
+
<wsdl:input name="removeAttributeFromPrincipalRequest">
|
2188
|
+
<wsdlsoap:body use="literal"/>
|
2189
|
+
</wsdl:input>
|
2190
|
+
<wsdl:output name="removeAttributeFromPrincipalResponse">
|
2191
|
+
<wsdlsoap:body use="literal"/>
|
2192
|
+
</wsdl:output>
|
2193
|
+
<wsdl:fault name="ObjectNotFoundException">
|
2194
|
+
<wsdlsoap:fault name="ObjectNotFoundException" use="literal"/>
|
2195
|
+
</wsdl:fault>
|
2196
|
+
<wsdl:fault name="ApplicationPermissionException">
|
2197
|
+
<wsdlsoap:fault name="ApplicationPermissionException" use="literal"/>
|
2198
|
+
</wsdl:fault>
|
2199
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
2200
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
2201
|
+
</wsdl:fault>
|
2202
|
+
<wsdl:fault name="RemoteException">
|
2203
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
2204
|
+
</wsdl:fault>
|
2205
|
+
</wsdl:operation>
|
2206
|
+
<wsdl:operation name="addRole">
|
2207
|
+
<wsdlsoap:operation soapAction=""/>
|
2208
|
+
<wsdl:input name="addRoleRequest">
|
2209
|
+
<wsdlsoap:body use="literal"/>
|
2210
|
+
</wsdl:input>
|
2211
|
+
<wsdl:output name="addRoleResponse">
|
2212
|
+
<wsdlsoap:body use="literal"/>
|
2213
|
+
</wsdl:output>
|
2214
|
+
<wsdl:fault name="InvalidRoleException">
|
2215
|
+
<wsdlsoap:fault name="InvalidRoleException" use="literal"/>
|
2216
|
+
</wsdl:fault>
|
2217
|
+
<wsdl:fault name="ApplicationPermissionException">
|
2218
|
+
<wsdlsoap:fault name="ApplicationPermissionException" use="literal"/>
|
2219
|
+
</wsdl:fault>
|
2220
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
2221
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
2222
|
+
</wsdl:fault>
|
2223
|
+
<wsdl:fault name="RemoteException">
|
2224
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
2225
|
+
</wsdl:fault>
|
2226
|
+
</wsdl:operation>
|
2227
|
+
<wsdl:operation name="findAllPrincipalNames">
|
2228
|
+
<wsdlsoap:operation soapAction=""/>
|
2229
|
+
<wsdl:input name="findAllPrincipalNamesRequest">
|
2230
|
+
<wsdlsoap:body use="literal"/>
|
2231
|
+
</wsdl:input>
|
2232
|
+
<wsdl:output name="findAllPrincipalNamesResponse">
|
2233
|
+
<wsdlsoap:body use="literal"/>
|
2234
|
+
</wsdl:output>
|
2235
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
2236
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
2237
|
+
</wsdl:fault>
|
2238
|
+
<wsdl:fault name="RemoteException">
|
2239
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
2240
|
+
</wsdl:fault>
|
2241
|
+
</wsdl:operation>
|
2242
|
+
<wsdl:operation name="createPrincipalToken">
|
2243
|
+
<wsdlsoap:operation soapAction=""/>
|
2244
|
+
<wsdl:input name="createPrincipalTokenRequest">
|
2245
|
+
<wsdlsoap:body use="literal"/>
|
2246
|
+
</wsdl:input>
|
2247
|
+
<wsdl:output name="createPrincipalTokenResponse">
|
2248
|
+
<wsdlsoap:body use="literal"/>
|
2249
|
+
</wsdl:output>
|
2250
|
+
<wsdl:fault name="ApplicationAccessDeniedException">
|
2251
|
+
<wsdlsoap:fault name="ApplicationAccessDeniedException" use="literal"/>
|
2252
|
+
</wsdl:fault>
|
2253
|
+
<wsdl:fault name="InvalidAuthenticationException">
|
2254
|
+
<wsdlsoap:fault name="InvalidAuthenticationException" use="literal"/>
|
2255
|
+
</wsdl:fault>
|
2256
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
2257
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
2258
|
+
</wsdl:fault>
|
2259
|
+
<wsdl:fault name="InactiveAccountException">
|
2260
|
+
<wsdlsoap:fault name="InactiveAccountException" use="literal"/>
|
2261
|
+
</wsdl:fault>
|
2262
|
+
<wsdl:fault name="RemoteException">
|
2263
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
2264
|
+
</wsdl:fault>
|
2265
|
+
</wsdl:operation>
|
2266
|
+
<wsdl:operation name="searchRoles">
|
2267
|
+
<wsdlsoap:operation soapAction=""/>
|
2268
|
+
<wsdl:input name="searchRolesRequest">
|
2269
|
+
<wsdlsoap:body use="literal"/>
|
2270
|
+
</wsdl:input>
|
2271
|
+
<wsdl:output name="searchRolesResponse">
|
2272
|
+
<wsdlsoap:body use="literal"/>
|
2273
|
+
</wsdl:output>
|
2274
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
2275
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
2276
|
+
</wsdl:fault>
|
2277
|
+
<wsdl:fault name="RemoteException">
|
2278
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
2279
|
+
</wsdl:fault>
|
2280
|
+
</wsdl:operation>
|
2281
|
+
<wsdl:operation name="removePrincipalFromGroup">
|
2282
|
+
<wsdlsoap:operation soapAction=""/>
|
2283
|
+
<wsdl:input name="removePrincipalFromGroupRequest">
|
2284
|
+
<wsdlsoap:body use="literal"/>
|
2285
|
+
</wsdl:input>
|
2286
|
+
<wsdl:output name="removePrincipalFromGroupResponse">
|
2287
|
+
<wsdlsoap:body use="literal"/>
|
2288
|
+
</wsdl:output>
|
2289
|
+
<wsdl:fault name="ObjectNotFoundException">
|
2290
|
+
<wsdlsoap:fault name="ObjectNotFoundException" use="literal"/>
|
2291
|
+
</wsdl:fault>
|
2292
|
+
<wsdl:fault name="ApplicationPermissionException">
|
2293
|
+
<wsdlsoap:fault name="ApplicationPermissionException" use="literal"/>
|
2294
|
+
</wsdl:fault>
|
2295
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
2296
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
2297
|
+
</wsdl:fault>
|
2298
|
+
<wsdl:fault name="RemoteException">
|
2299
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
2300
|
+
</wsdl:fault>
|
2301
|
+
</wsdl:operation>
|
2302
|
+
<wsdl:operation name="findPrincipalByName">
|
2303
|
+
<wsdlsoap:operation soapAction=""/>
|
2304
|
+
<wsdl:input name="findPrincipalByNameRequest">
|
2305
|
+
<wsdlsoap:body use="literal"/>
|
2306
|
+
</wsdl:input>
|
2307
|
+
<wsdl:output name="findPrincipalByNameResponse">
|
2308
|
+
<wsdlsoap:body use="literal"/>
|
2309
|
+
</wsdl:output>
|
2310
|
+
<wsdl:fault name="ObjectNotFoundException">
|
2311
|
+
<wsdlsoap:fault name="ObjectNotFoundException" use="literal"/>
|
2312
|
+
</wsdl:fault>
|
2313
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
2314
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
2315
|
+
</wsdl:fault>
|
2316
|
+
<wsdl:fault name="RemoteException">
|
2317
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
2318
|
+
</wsdl:fault>
|
2319
|
+
</wsdl:operation>
|
2320
|
+
<wsdl:operation name="resetPrincipalCredential">
|
2321
|
+
<wsdlsoap:operation soapAction=""/>
|
2322
|
+
<wsdl:input name="resetPrincipalCredentialRequest">
|
2323
|
+
<wsdlsoap:body use="literal"/>
|
2324
|
+
</wsdl:input>
|
2325
|
+
<wsdl:output name="resetPrincipalCredentialResponse">
|
2326
|
+
<wsdlsoap:body use="literal"/>
|
2327
|
+
</wsdl:output>
|
2328
|
+
<wsdl:fault name="ObjectNotFoundException">
|
2329
|
+
<wsdlsoap:fault name="ObjectNotFoundException" use="literal"/>
|
2330
|
+
</wsdl:fault>
|
2331
|
+
<wsdl:fault name="InvalidEmailAddressException">
|
2332
|
+
<wsdlsoap:fault name="InvalidEmailAddressException" use="literal"/>
|
2333
|
+
</wsdl:fault>
|
2334
|
+
<wsdl:fault name="ApplicationPermissionException">
|
2335
|
+
<wsdlsoap:fault name="ApplicationPermissionException" use="literal"/>
|
2336
|
+
</wsdl:fault>
|
2337
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
2338
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
2339
|
+
</wsdl:fault>
|
2340
|
+
<wsdl:fault name="InvalidCredentialException">
|
2341
|
+
<wsdlsoap:fault name="InvalidCredentialException" use="literal"/>
|
2342
|
+
</wsdl:fault>
|
2343
|
+
<wsdl:fault name="RemoteException">
|
2344
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
2345
|
+
</wsdl:fault>
|
2346
|
+
</wsdl:operation>
|
2347
|
+
<wsdl:operation name="updateGroupAttribute">
|
2348
|
+
<wsdlsoap:operation soapAction=""/>
|
2349
|
+
<wsdl:input name="updateGroupAttributeRequest">
|
2350
|
+
<wsdlsoap:body use="literal"/>
|
2351
|
+
</wsdl:input>
|
2352
|
+
<wsdl:output name="updateGroupAttributeResponse">
|
2353
|
+
<wsdlsoap:body use="literal"/>
|
2354
|
+
</wsdl:output>
|
2355
|
+
<wsdl:fault name="ObjectNotFoundException">
|
2356
|
+
<wsdlsoap:fault name="ObjectNotFoundException" use="literal"/>
|
2357
|
+
</wsdl:fault>
|
2358
|
+
<wsdl:fault name="ApplicationPermissionException">
|
2359
|
+
<wsdlsoap:fault name="ApplicationPermissionException" use="literal"/>
|
2360
|
+
</wsdl:fault>
|
2361
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
2362
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
2363
|
+
</wsdl:fault>
|
2364
|
+
<wsdl:fault name="RemoteException">
|
2365
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
2366
|
+
</wsdl:fault>
|
2367
|
+
</wsdl:operation>
|
2368
|
+
<wsdl:operation name="isGroupMember">
|
2369
|
+
<wsdlsoap:operation soapAction=""/>
|
2370
|
+
<wsdl:input name="isGroupMemberRequest">
|
2371
|
+
<wsdlsoap:body use="literal"/>
|
2372
|
+
</wsdl:input>
|
2373
|
+
<wsdl:output name="isGroupMemberResponse">
|
2374
|
+
<wsdlsoap:body use="literal"/>
|
2375
|
+
</wsdl:output>
|
2376
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
2377
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
2378
|
+
</wsdl:fault>
|
2379
|
+
<wsdl:fault name="RemoteException">
|
2380
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
2381
|
+
</wsdl:fault>
|
2382
|
+
</wsdl:operation>
|
2383
|
+
<wsdl:operation name="searchPrincipals">
|
2384
|
+
<wsdlsoap:operation soapAction=""/>
|
2385
|
+
<wsdl:input name="searchPrincipalsRequest">
|
2386
|
+
<wsdlsoap:body use="literal"/>
|
2387
|
+
</wsdl:input>
|
2388
|
+
<wsdl:output name="searchPrincipalsResponse">
|
2389
|
+
<wsdlsoap:body use="literal"/>
|
2390
|
+
</wsdl:output>
|
2391
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
2392
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
2393
|
+
</wsdl:fault>
|
2394
|
+
<wsdl:fault name="RemoteException">
|
2395
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
2396
|
+
</wsdl:fault>
|
2397
|
+
</wsdl:operation>
|
2398
|
+
<wsdl:operation name="getDomain">
|
2399
|
+
<wsdlsoap:operation soapAction=""/>
|
2400
|
+
<wsdl:input name="getDomainRequest">
|
2401
|
+
<wsdlsoap:body use="literal"/>
|
2402
|
+
</wsdl:input>
|
2403
|
+
<wsdl:output name="getDomainResponse">
|
2404
|
+
<wsdlsoap:body use="literal"/>
|
2405
|
+
</wsdl:output>
|
2406
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
2407
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
2408
|
+
</wsdl:fault>
|
2409
|
+
<wsdl:fault name="RemoteException">
|
2410
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
2411
|
+
</wsdl:fault>
|
2412
|
+
</wsdl:operation>
|
2413
|
+
<wsdl:operation name="authenticateApplication">
|
2414
|
+
<wsdlsoap:operation soapAction=""/>
|
2415
|
+
<wsdl:input name="authenticateApplicationRequest">
|
2416
|
+
<wsdlsoap:body use="literal"/>
|
2417
|
+
</wsdl:input>
|
2418
|
+
<wsdl:output name="authenticateApplicationResponse">
|
2419
|
+
<wsdlsoap:body use="literal"/>
|
2420
|
+
</wsdl:output>
|
2421
|
+
<wsdl:fault name="InvalidAuthenticationException">
|
2422
|
+
<wsdlsoap:fault name="InvalidAuthenticationException" use="literal"/>
|
2423
|
+
</wsdl:fault>
|
2424
|
+
<wsdl:fault name="InvalidAuthorizationTokenException">
|
2425
|
+
<wsdlsoap:fault name="InvalidAuthorizationTokenException" use="literal"/>
|
2426
|
+
</wsdl:fault>
|
2427
|
+
<wsdl:fault name="RemoteException">
|
2428
|
+
<wsdlsoap:fault name="RemoteException" use="literal"/>
|
2429
|
+
</wsdl:fault>
|
2430
|
+
</wsdl:operation>
|
2431
|
+
</wsdl:binding>
|
2432
|
+
<wsdl:service name="SecurityServer">
|
2433
|
+
<wsdl:port name="SecurityServerHttpPort" binding="tns:SecurityServerHttpBinding">
|
2434
|
+
<wsdlsoap:address location="http://magnesium:8095/crowd/services/SecurityServer"/>
|
2435
|
+
</wsdl:port>
|
2436
|
+
</wsdl:service>
|
2437
|
+
</wsdl:definitions>
|