sekken 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (176) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +13 -0
  3. data/.travis.yml +11 -0
  4. data/.yardopts +6 -0
  5. data/CONTRIBUTING.md +46 -0
  6. data/Gemfile +27 -0
  7. data/MIT-LICENSE +20 -0
  8. data/README.md +28 -0
  9. data/Rakefile +21 -0
  10. data/donate.png +0 -0
  11. data/lib/sekken.rb +75 -0
  12. data/lib/sekken/envelope.rb +92 -0
  13. data/lib/sekken/errors.rb +9 -0
  14. data/lib/sekken/example_message.rb +41 -0
  15. data/lib/sekken/httpclient.rb +35 -0
  16. data/lib/sekken/importer.rb +77 -0
  17. data/lib/sekken/message.rb +135 -0
  18. data/lib/sekken/operation.rb +100 -0
  19. data/lib/sekken/resolver.rb +20 -0
  20. data/lib/sekken/response.rb +50 -0
  21. data/lib/sekken/version.rb +5 -0
  22. data/lib/sekken/wsdl.rb +86 -0
  23. data/lib/sekken/wsdl/binding.rb +64 -0
  24. data/lib/sekken/wsdl/binding_operation.rb +85 -0
  25. data/lib/sekken/wsdl/document.rb +83 -0
  26. data/lib/sekken/wsdl/document_collection.rb +61 -0
  27. data/lib/sekken/wsdl/input_output.rb +84 -0
  28. data/lib/sekken/wsdl/message.rb +38 -0
  29. data/lib/sekken/wsdl/operation.rb +47 -0
  30. data/lib/sekken/wsdl/port.rb +29 -0
  31. data/lib/sekken/wsdl/port_type.rb +38 -0
  32. data/lib/sekken/wsdl/port_type_operation.rb +42 -0
  33. data/lib/sekken/wsdl/service.rb +55 -0
  34. data/lib/sekken/xml/attribute.rb +13 -0
  35. data/lib/sekken/xml/element.rb +82 -0
  36. data/lib/sekken/xml/element_builder.rb +220 -0
  37. data/lib/sekken/xs/schema.rb +57 -0
  38. data/lib/sekken/xs/schema_collection.rb +49 -0
  39. data/lib/sekken/xs/types.rb +272 -0
  40. data/sekken.gemspec +42 -0
  41. data/spec/fixtures/response/another_soap_fault.xml +14 -0
  42. data/spec/fixtures/response/authentication.xml +14 -0
  43. data/spec/fixtures/response/header.xml +13 -0
  44. data/spec/fixtures/response/list.xml +18 -0
  45. data/spec/fixtures/response/multi_ref.xml +39 -0
  46. data/spec/fixtures/response/soap_fault.xml +8 -0
  47. data/spec/fixtures/response/soap_fault12.xml +18 -0
  48. data/spec/fixtures/response/taxcloud.xml +1 -0
  49. data/spec/fixtures/wsdl/amazon.wsdl +1920 -0
  50. data/spec/fixtures/wsdl/arrays_with_attributes.wsdl +117 -0
  51. data/spec/fixtures/wsdl/authentication.wsdl +63 -0
  52. data/spec/fixtures/wsdl/awse.wsdl +1510 -0
  53. data/spec/fixtures/wsdl/betfair.wsdl +2981 -0
  54. data/spec/fixtures/wsdl/blz_service.wsdl +88 -0
  55. data/spec/fixtures/wsdl/bookt/bookt.wsdl +11 -0
  56. data/spec/fixtures/wsdl/bookt/bookt0.xsd +433 -0
  57. data/spec/fixtures/wsdl/bookt/bookt1.xsd +42 -0
  58. data/spec/fixtures/wsdl/bookt/bookt10.xsd +38 -0
  59. data/spec/fixtures/wsdl/bookt/bookt11.xsd +17 -0
  60. data/spec/fixtures/wsdl/bookt/bookt12.xsd +18 -0
  61. data/spec/fixtures/wsdl/bookt/bookt13.xsd +22 -0
  62. data/spec/fixtures/wsdl/bookt/bookt14.xsd +27 -0
  63. data/spec/fixtures/wsdl/bookt/bookt15.xsd +28 -0
  64. data/spec/fixtures/wsdl/bookt/bookt2.wsdl +243 -0
  65. data/spec/fixtures/wsdl/bookt/bookt2.xsd +81 -0
  66. data/spec/fixtures/wsdl/bookt/bookt3.wsdl +286 -0
  67. data/spec/fixtures/wsdl/bookt/bookt3.xsd +61 -0
  68. data/spec/fixtures/wsdl/bookt/bookt4.xsd +35 -0
  69. data/spec/fixtures/wsdl/bookt/bookt5.xsd +22 -0
  70. data/spec/fixtures/wsdl/bookt/bookt6.xsd +26 -0
  71. data/spec/fixtures/wsdl/bookt/bookt7.xsd +18 -0
  72. data/spec/fixtures/wsdl/bookt/bookt8.xsd +22 -0
  73. data/spec/fixtures/wsdl/bookt/bookt9.xsd +29 -0
  74. data/spec/fixtures/wsdl/bronto.wsdl +3285 -0
  75. data/spec/fixtures/wsdl/bydexchange/bydexchange.wsdl +104 -0
  76. data/spec/fixtures/wsdl/bydexchange/bydexchange0.xsd +1 -0
  77. data/spec/fixtures/wsdl/bydexchange/bydexchange1.xsd +1 -0
  78. data/spec/fixtures/wsdl/bydexchange/bydexchange2.wsdl +119 -0
  79. data/spec/fixtures/wsdl/bydexchange/bydexchange2.xsd +1 -0
  80. data/spec/fixtures/wsdl/bydexchange/bydexchange3.xsd +1 -0
  81. data/spec/fixtures/wsdl/bydexchange/bydexchange4.xsd +1 -0
  82. data/spec/fixtures/wsdl/bydexchange/bydexchange5.xsd +1 -0
  83. data/spec/fixtures/wsdl/bydexchange/bydexchange6.xsd +1 -0
  84. data/spec/fixtures/wsdl/bydexchange/bydexchange7.xsd +1 -0
  85. data/spec/fixtures/wsdl/bydexchange/bydexchange8.xsd +1 -0
  86. data/spec/fixtures/wsdl/crowd.wsdl +2437 -0
  87. data/spec/fixtures/wsdl/data_exchange.wsdl +98 -0
  88. data/spec/fixtures/wsdl/document_literal_wrapped.wsdl +153 -0
  89. data/spec/fixtures/wsdl/economic.wsdl +65660 -0
  90. data/spec/fixtures/wsdl/edialog.wsdl +13148 -0
  91. data/spec/fixtures/wsdl/email_verification.wsdl +394 -0
  92. data/spec/fixtures/wsdl/equifax.wsdl +794 -0
  93. data/spec/fixtures/wsdl/geotrust.wsdl +156 -0
  94. data/spec/fixtures/wsdl/interhome.wsdl +2137 -0
  95. data/spec/fixtures/wsdl/iws.wsdl +695 -0
  96. data/spec/fixtures/wsdl/jetairways.wsdl +156 -0
  97. data/spec/fixtures/wsdl/jira.wsdl +3890 -0
  98. data/spec/fixtures/wsdl/juniper.wsdl +215 -0
  99. data/spec/fixtures/wsdl/namespaced_actions.wsdl +307 -0
  100. data/spec/fixtures/wsdl/oracle.wsdl +3629 -0
  101. data/spec/fixtures/wsdl/ratp.wsdl +955 -0
  102. data/spec/fixtures/wsdl/rio2/rio2.wsdl +74 -0
  103. data/spec/fixtures/wsdl/rio2/rio2_0.wsdl +55 -0
  104. data/spec/fixtures/wsdl/rio2/rio2_0.xsd +58 -0
  105. data/spec/fixtures/wsdl/rio2/rio2_1.xsd +41 -0
  106. data/spec/fixtures/wsdl/rio2/rio2_2.xsd +222 -0
  107. data/spec/fixtures/wsdl/rio2/rio2_3.xsd +10 -0
  108. data/spec/fixtures/wsdl/rpc_literal.wsdl +105 -0
  109. data/spec/fixtures/wsdl/spyne.wsdl +70 -0
  110. data/spec/fixtures/wsdl/stockquote.wsdl +124 -0
  111. data/spec/fixtures/wsdl/taxcloud.wsdl +934 -0
  112. data/spec/fixtures/wsdl/team_software/team_software.wsdl +542 -0
  113. data/spec/fixtures/wsdl/team_software/team_software0.xsd +448 -0
  114. data/spec/fixtures/wsdl/team_software/team_software1.xsd +41 -0
  115. data/spec/fixtures/wsdl/team_software/team_software2.xsd +258 -0
  116. data/spec/fixtures/wsdl/team_software/team_software3.xsd +14 -0
  117. data/spec/fixtures/wsdl/telefonkatalogen.wsdl +45 -0
  118. data/spec/fixtures/wsdl/temperature.wsdl +136 -0
  119. data/spec/fixtures/wsdl/wasmuth/wasmuth.wsdl +157 -0
  120. data/spec/fixtures/wsdl/wasmuth/wasmuth1.xsd +210 -0
  121. data/spec/fixtures/wsdl/wasmuth/wasmuth2.xsd +549 -0
  122. data/spec/fixtures/wsdl/xignite.wsdl +3470 -0
  123. data/spec/fixtures/wsdl/yahoo.wsdl +2425 -0
  124. data/spec/fixtures/wsdl/zanox_export_service.xml +520 -0
  125. data/spec/integration/amazon_spec.rb +51 -0
  126. data/spec/integration/authentication_spec.rb +38 -0
  127. data/spec/integration/awse_spec.rb +95 -0
  128. data/spec/integration/betfair_spec.rb +179 -0
  129. data/spec/integration/blz_service_spec.rb +46 -0
  130. data/spec/integration/bookt_spec.rb +59 -0
  131. data/spec/integration/bronto_spec.rb +178 -0
  132. data/spec/integration/bydexchange_spec.rb +40 -0
  133. data/spec/integration/crowd_spec.rb +44 -0
  134. data/spec/integration/data_exchange_spec.rb +27 -0
  135. data/spec/integration/document_literal_spec.rb +104 -0
  136. data/spec/integration/economic_spec.rb +64 -0
  137. data/spec/integration/email_verification_spec.rb +82 -0
  138. data/spec/integration/equifax_spec.rb +216 -0
  139. data/spec/integration/geotrust_spec.rb +17 -0
  140. data/spec/integration/interhome_spec.rb +156 -0
  141. data/spec/integration/iws_spec.rb +27 -0
  142. data/spec/integration/jetairways_spec.rb +142 -0
  143. data/spec/integration/jira_spec.rb +27 -0
  144. data/spec/integration/juniper_spec.rb +20 -0
  145. data/spec/integration/namespaced_actions_spec.rb +37 -0
  146. data/spec/integration/oracle_spec.rb +61 -0
  147. data/spec/integration/ratp_spec.rb +178 -0
  148. data/spec/integration/rio2_spec.rb +56 -0
  149. data/spec/integration/rpc_literal_spec.rb +101 -0
  150. data/spec/integration/spyne_spec.rb +60 -0
  151. data/spec/integration/stockquote_spec.rb +46 -0
  152. data/spec/integration/taxcloud_spec.rb +45 -0
  153. data/spec/integration/team_software_spec.rb +51 -0
  154. data/spec/integration/telefonkatalogen_spec.rb +42 -0
  155. data/spec/integration/temperature_spec.rb +71 -0
  156. data/spec/integration/wasmuth_spec.rb +47 -0
  157. data/spec/integration/xignite_spec.rb +112 -0
  158. data/spec/integration/yahoo_spec.rb +116 -0
  159. data/spec/sekken/httpclient_spec.rb +41 -0
  160. data/spec/sekken/operation/build_spec.rb +308 -0
  161. data/spec/sekken/operation/document_literal_spec.rb +53 -0
  162. data/spec/sekken/operation/example_body_spec.rb +95 -0
  163. data/spec/sekken/operation/rpc_literal_spec.rb +50 -0
  164. data/spec/sekken/operation_spec.rb +169 -0
  165. data/spec/sekken/resolver_spec.rb +38 -0
  166. data/spec/sekken/response_spec.rb +17 -0
  167. data/spec/sekken/wsdl/document_spec.rb +191 -0
  168. data/spec/sekken/wsdl_spec.rb +46 -0
  169. data/spec/sekken/xs/complex_type_spec.rb +197 -0
  170. data/spec/sekken/xs/element_spec.rb +82 -0
  171. data/spec/sekken/xs/simple_type_spec.rb +39 -0
  172. data/spec/sekken_spec.rb +128 -0
  173. data/spec/spec_helper.rb +37 -0
  174. data/spec/support/fixture.rb +19 -0
  175. data/spec/support/http_mock.rb +43 -0
  176. metadata +344 -0
@@ -0,0 +1,157 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <!-- http://www3.mediaservice-wasmuth.de/online-ws-2.0/OnlineSync?wsdl -->
3
+ <!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.1-b01-. -->
4
+ <!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.1-b01-. -->
5
+ <definitions targetNamespace="http://ws.online.msw/" name="OnlineSyncService" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:wsp="http://www.w3.org/ns/ws-policy" xmlns:wsp1_2="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://ws.online.msw/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/">
6
+ <types>
7
+ <xsd:schema>
8
+ <xsd:import namespace="http://ws.online.msw/" schemaLocation="http://www3.mediaservice-wasmuth.de:80/online-ws-2.0/OnlineSync?xsd=1"/>
9
+ </xsd:schema>
10
+ <xsd:schema>
11
+ <xsd:import namespace="customers.model.online.msw" schemaLocation="http://www3.mediaservice-wasmuth.de:80/online-ws-2.0/OnlineSync?xsd=2"/>
12
+ </xsd:schema>
13
+ </types>
14
+ <message name="getStTables">
15
+ <part name="parameters" element="tns:getStTables"/>
16
+ </message>
17
+ <message name="getStTablesResponse">
18
+ <part name="parameters" element="tns:getStTablesResponse"/>
19
+ </message>
20
+ <message name="getDbManager">
21
+ <part name="parameters" element="tns:getDbManager"/>
22
+ </message>
23
+ <message name="getDbManagerResponse">
24
+ <part name="parameters" element="tns:getDbManagerResponse"/>
25
+ </message>
26
+ <message name="getVermarkterData">
27
+ <part name="parameters" element="tns:getVermarkterData"/>
28
+ </message>
29
+ <message name="getVermarkterDataResponse">
30
+ <part name="parameters" element="tns:getVermarkterDataResponse"/>
31
+ </message>
32
+ <message name="getBelegungseinheitData">
33
+ <part name="parameters" element="tns:getBelegungseinheitData"/>
34
+ </message>
35
+ <message name="getBelegungseinheitDataResponse">
36
+ <part name="parameters" element="tns:getBelegungseinheitDataResponse"/>
37
+ </message>
38
+ <message name="getOnlineResponseData">
39
+ <part name="parameters" element="tns:getOnlineResponseData"/>
40
+ </message>
41
+ <message name="getOnlineResponseDataResponse">
42
+ <part name="parameters" element="tns:getOnlineResponseDataResponse"/>
43
+ </message>
44
+ <message name="getVermarkterList">
45
+ <part name="parameters" element="tns:getVermarkterList"/>
46
+ </message>
47
+ <message name="getVermarkterListResponse">
48
+ <part name="parameters" element="tns:getVermarkterListResponse"/>
49
+ </message>
50
+ <message name="getBelegungseinheitList">
51
+ <part name="parameters" element="tns:getBelegungseinheitList"/>
52
+ </message>
53
+ <message name="getBelegungseinheitListResponse">
54
+ <part name="parameters" element="tns:getBelegungseinheitListResponse"/>
55
+ </message>
56
+ <portType name="OnlineSync">
57
+ <operation name="getStTables">
58
+ <input wsam:Action="http://ws.online.msw/OnlineSync/getStTablesRequest" message="tns:getStTables"/>
59
+ <output wsam:Action="http://ws.online.msw/OnlineSync/getStTablesResponse" message="tns:getStTablesResponse"/>
60
+ </operation>
61
+ <operation name="getDbManager">
62
+ <input wsam:Action="http://ws.online.msw/OnlineSync/getDbManagerRequest" message="tns:getDbManager"/>
63
+ <output wsam:Action="http://ws.online.msw/OnlineSync/getDbManagerResponse" message="tns:getDbManagerResponse"/>
64
+ </operation>
65
+ <operation name="getVermarkterData">
66
+ <input wsam:Action="http://ws.online.msw/OnlineSync/getVermarkterDataRequest" message="tns:getVermarkterData"/>
67
+ <output wsam:Action="http://ws.online.msw/OnlineSync/getVermarkterDataResponse" message="tns:getVermarkterDataResponse"/>
68
+ </operation>
69
+ <operation name="getBelegungseinheitData">
70
+ <input wsam:Action="http://ws.online.msw/OnlineSync/getBelegungseinheitDataRequest" message="tns:getBelegungseinheitData"/>
71
+ <output wsam:Action="http://ws.online.msw/OnlineSync/getBelegungseinheitDataResponse" message="tns:getBelegungseinheitDataResponse"/>
72
+ </operation>
73
+ <operation name="getOnlineResponseData">
74
+ <input wsam:Action="http://ws.online.msw/OnlineSync/getOnlineResponseDataRequest" message="tns:getOnlineResponseData"/>
75
+ <output wsam:Action="http://ws.online.msw/OnlineSync/getOnlineResponseDataResponse" message="tns:getOnlineResponseDataResponse"/>
76
+ </operation>
77
+ <operation name="getVermarkterList">
78
+ <input wsam:Action="http://ws.online.msw/OnlineSync/getVermarkterListRequest" message="tns:getVermarkterList"/>
79
+ <output wsam:Action="http://ws.online.msw/OnlineSync/getVermarkterListResponse" message="tns:getVermarkterListResponse"/>
80
+ </operation>
81
+ <operation name="getBelegungseinheitList">
82
+ <input wsam:Action="http://ws.online.msw/OnlineSync/getBelegungseinheitListRequest" message="tns:getBelegungseinheitList"/>
83
+ <output wsam:Action="http://ws.online.msw/OnlineSync/getBelegungseinheitListResponse" message="tns:getBelegungseinheitListResponse"/>
84
+ </operation>
85
+ </portType>
86
+ <binding name="OnlineSyncPortBinding" type="tns:OnlineSync">
87
+ <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
88
+ <operation name="getStTables">
89
+ <soap:operation soapAction=""/>
90
+ <input>
91
+ <soap:body use="literal"/>
92
+ </input>
93
+ <output>
94
+ <soap:body use="literal"/>
95
+ </output>
96
+ </operation>
97
+ <operation name="getDbManager">
98
+ <soap:operation soapAction=""/>
99
+ <input>
100
+ <soap:body use="literal"/>
101
+ </input>
102
+ <output>
103
+ <soap:body use="literal"/>
104
+ </output>
105
+ </operation>
106
+ <operation name="getVermarkterData">
107
+ <soap:operation soapAction=""/>
108
+ <input>
109
+ <soap:body use="literal"/>
110
+ </input>
111
+ <output>
112
+ <soap:body use="literal"/>
113
+ </output>
114
+ </operation>
115
+ <operation name="getBelegungseinheitData">
116
+ <soap:operation soapAction=""/>
117
+ <input>
118
+ <soap:body use="literal"/>
119
+ </input>
120
+ <output>
121
+ <soap:body use="literal"/>
122
+ </output>
123
+ </operation>
124
+ <operation name="getOnlineResponseData">
125
+ <soap:operation soapAction=""/>
126
+ <input>
127
+ <soap:body use="literal"/>
128
+ </input>
129
+ <output>
130
+ <soap:body use="literal"/>
131
+ </output>
132
+ </operation>
133
+ <operation name="getVermarkterList">
134
+ <soap:operation soapAction=""/>
135
+ <input>
136
+ <soap:body use="literal"/>
137
+ </input>
138
+ <output>
139
+ <soap:body use="literal"/>
140
+ </output>
141
+ </operation>
142
+ <operation name="getBelegungseinheitList">
143
+ <soap:operation soapAction=""/>
144
+ <input>
145
+ <soap:body use="literal"/>
146
+ </input>
147
+ <output>
148
+ <soap:body use="literal"/>
149
+ </output>
150
+ </operation>
151
+ </binding>
152
+ <service name="OnlineSyncService">
153
+ <port name="OnlineSyncPort" binding="tns:OnlineSyncPortBinding">
154
+ <soap:address location="http://www3.mediaservice-wasmuth.de:80/online-ws-2.0/OnlineSync"/>
155
+ </port>
156
+ </service>
157
+ </definitions>
@@ -0,0 +1,210 @@
1
+ <?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.1-b01-. --><xs:schema xmlns:tns="http://ws.online.msw/" xmlns:ns1="customers.model.online.msw" xmlns:xs="http://www.w3.org/2001/XMLSchema" version="1.0" targetNamespace="http://ws.online.msw/">
2
+
3
+ <xs:import namespace="customers.model.online.msw" schemaLocation="http://www3.mediaservice-wasmuth.de:80/online-ws-2.0/OnlineSync?xsd=2"></xs:import>
4
+
5
+ <xs:element name="getBelegungseinheitData" type="tns:getBelegungseinheitData"></xs:element>
6
+
7
+ <xs:element name="getBelegungseinheitDataResponse" type="tns:getBelegungseinheitDataResponse"></xs:element>
8
+
9
+ <xs:element name="getBelegungseinheitList" type="tns:getBelegungseinheitList"></xs:element>
10
+
11
+ <xs:element name="getBelegungseinheitListResponse" type="tns:getBelegungseinheitListResponse"></xs:element>
12
+
13
+ <xs:element name="getDbManager" type="tns:getDbManager"></xs:element>
14
+
15
+ <xs:element name="getDbManagerResponse" type="tns:getDbManagerResponse"></xs:element>
16
+
17
+ <xs:element name="getOnlineResponseData" type="tns:getOnlineResponseData"></xs:element>
18
+
19
+ <xs:element name="getOnlineResponseDataResponse" type="tns:getOnlineResponseDataResponse"></xs:element>
20
+
21
+ <xs:element name="getStTables" type="tns:getStTables"></xs:element>
22
+
23
+ <xs:element name="getStTablesResponse" type="tns:getStTablesResponse"></xs:element>
24
+
25
+ <xs:element name="getVermarkterData" type="tns:getVermarkterData"></xs:element>
26
+
27
+ <xs:element name="getVermarkterDataResponse" type="tns:getVermarkterDataResponse"></xs:element>
28
+
29
+ <xs:element name="getVermarkterList" type="tns:getVermarkterList"></xs:element>
30
+
31
+ <xs:element name="getVermarkterListResponse" type="tns:getVermarkterListResponse"></xs:element>
32
+
33
+ <xs:complexType name="getBelegungseinheitData">
34
+ <xs:sequence>
35
+ <xs:element name="username" type="xs:string" minOccurs="0"></xs:element>
36
+ <xs:element name="password" type="xs:string" minOccurs="0"></xs:element>
37
+ <xs:element name="objektuid" type="xs:string" minOccurs="0"></xs:element>
38
+ <xs:element name="version" type="tns:versionTypes" minOccurs="0"></xs:element>
39
+ </xs:sequence>
40
+ </xs:complexType>
41
+
42
+ <xs:complexType name="getBelegungseinheitDataResponse">
43
+ <xs:sequence>
44
+ <xs:element name="return" type="tns:belegungseinheitResponse" minOccurs="0"></xs:element>
45
+ </xs:sequence>
46
+ </xs:complexType>
47
+
48
+ <xs:complexType name="belegungseinheitResponse">
49
+ <xs:sequence>
50
+ <xs:element name="adressen" type="ns1:adressen" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
51
+ <xs:element name="authenticationError" type="xs:boolean"></xs:element>
52
+ <xs:element name="banken_NEU" type="ns1:bankenNEU" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
53
+ <xs:element name="belegungseinheit" type="ns1:belegungseinheit" minOccurs="0"></xs:element>
54
+ <xs:element name="datenanlieferung_NEU" type="ns1:datenanlieferungNEU" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
55
+ <xs:element name="erweiterte_eigenschaften" type="ns1:erweiterteEigenschaften" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
56
+ <xs:element name="frequencycapping_NEU" type="ns1:frequencycappingNEU" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
57
+ <xs:element name="newsletter_aussand" type="ns1:newsletterAussand" minOccurs="0"></xs:element>
58
+ <xs:element name="omc_match" type="ns1:omcMatch" minOccurs="0"></xs:element>
59
+ <xs:element name="preise_NEU" type="ns1:preiseNEU" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
60
+ <xs:element name="rabatte_NEU" type="ns1:rabatteNEU" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
61
+ <xs:element name="rabattstaffeln_NEU" type="ns1:rabattstaffelnNEU" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
62
+ <xs:element name="sachgruppen" type="ns1:sachgruppen" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
63
+ <xs:element name="targeting_NEU" type="ns1:targetingNEU" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
64
+ <xs:element name="werbeform_groessen" type="ns1:werbeformGroessen" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
65
+ <xs:element name="werbeform_kombinationen" type="ns1:werbeformKombinationen" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
66
+ <xs:element name="werbeformen" type="ns1:werbeformen" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
67
+ <xs:element name="zahlungsbedingungen_NEU" type="ns1:zahlungsbedingungenNEU" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
68
+ <xs:element name="zahlungsbedingungen_zuordnung" type="ns1:zahlungsbedingungenZuordnung" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
69
+ </xs:sequence>
70
+ </xs:complexType>
71
+
72
+ <xs:complexType name="getBelegungseinheitList">
73
+ <xs:sequence>
74
+ <xs:element name="username" type="xs:string" minOccurs="0"></xs:element>
75
+ <xs:element name="password" type="xs:string" minOccurs="0"></xs:element>
76
+ <xs:element name="changedate" type="xs:dateTime" minOccurs="0"></xs:element>
77
+ <xs:element name="version" type="tns:versionTypes" minOccurs="0"></xs:element>
78
+ </xs:sequence>
79
+ </xs:complexType>
80
+
81
+ <xs:complexType name="getBelegungseinheitListResponse">
82
+ <xs:sequence>
83
+ <xs:element name="return" type="tns:onlineResponse" minOccurs="0"></xs:element>
84
+ </xs:sequence>
85
+ </xs:complexType>
86
+
87
+ <xs:complexType name="onlineResponse">
88
+ <xs:sequence>
89
+ <xs:element name="authenticationError" type="xs:boolean"></xs:element>
90
+ <xs:element name="belegungseinheiten" type="ns1:belegungseinheit" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
91
+ <xs:element name="vermarkter" type="ns1:vermarkter" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
92
+ </xs:sequence>
93
+ </xs:complexType>
94
+
95
+ <xs:complexType name="getVermarkterData">
96
+ <xs:sequence>
97
+ <xs:element name="username" type="xs:string" minOccurs="0"></xs:element>
98
+ <xs:element name="password" type="xs:string" minOccurs="0"></xs:element>
99
+ <xs:element name="vermarkterid" type="xs:int"></xs:element>
100
+ <xs:element name="version" type="tns:versionTypes" minOccurs="0"></xs:element>
101
+ </xs:sequence>
102
+ </xs:complexType>
103
+
104
+ <xs:complexType name="getVermarkterDataResponse">
105
+ <xs:sequence>
106
+ <xs:element name="return" type="tns:vermarkterResponse" minOccurs="0"></xs:element>
107
+ </xs:sequence>
108
+ </xs:complexType>
109
+
110
+ <xs:complexType name="vermarkterResponse">
111
+ <xs:sequence>
112
+ <xs:element name="authenticationError" type="xs:boolean"></xs:element>
113
+ <xs:element name="belegungseinheiten" type="ns1:belegungseinheit" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
114
+ <xs:element name="erikaAbfragen" type="ns1:erikaAbfrage" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
115
+ <xs:element name="vermarkter" type="ns1:vermarkter" minOccurs="0"></xs:element>
116
+ </xs:sequence>
117
+ </xs:complexType>
118
+
119
+ <xs:complexType name="getOnlineResponseData">
120
+ <xs:sequence>
121
+ <xs:element name="username" type="xs:string" minOccurs="0"></xs:element>
122
+ <xs:element name="password" type="xs:string" minOccurs="0"></xs:element>
123
+ <xs:element name="changedate" type="xs:dateTime" minOccurs="0"></xs:element>
124
+ <xs:element name="version" type="tns:versionTypes" minOccurs="0"></xs:element>
125
+ </xs:sequence>
126
+ </xs:complexType>
127
+
128
+ <xs:complexType name="getOnlineResponseDataResponse">
129
+ <xs:sequence>
130
+ <xs:element name="return" type="tns:onlineResponse" minOccurs="0"></xs:element>
131
+ </xs:sequence>
132
+ </xs:complexType>
133
+
134
+ <xs:complexType name="getVermarkterList">
135
+ <xs:sequence>
136
+ <xs:element name="username" type="xs:string" minOccurs="0"></xs:element>
137
+ <xs:element name="password" type="xs:string" minOccurs="0"></xs:element>
138
+ <xs:element name="changedate" type="xs:dateTime" minOccurs="0"></xs:element>
139
+ <xs:element name="version" type="tns:versionTypes" minOccurs="0"></xs:element>
140
+ </xs:sequence>
141
+ </xs:complexType>
142
+
143
+ <xs:complexType name="getVermarkterListResponse">
144
+ <xs:sequence>
145
+ <xs:element name="return" type="tns:onlineResponse" minOccurs="0"></xs:element>
146
+ </xs:sequence>
147
+ </xs:complexType>
148
+
149
+ <xs:complexType name="getStTables">
150
+ <xs:sequence>
151
+ <xs:element name="username" type="xs:string" minOccurs="0"></xs:element>
152
+ <xs:element name="password" type="xs:string" minOccurs="0"></xs:element>
153
+ <xs:element name="version" type="tns:versionTypes" minOccurs="0"></xs:element>
154
+ </xs:sequence>
155
+ </xs:complexType>
156
+
157
+ <xs:complexType name="getStTablesResponse">
158
+ <xs:sequence>
159
+ <xs:element name="return" type="tns:stResponse" minOccurs="0"></xs:element>
160
+ </xs:sequence>
161
+ </xs:complexType>
162
+
163
+ <xs:complexType name="stResponse">
164
+ <xs:sequence>
165
+ <xs:element name="authenticationError" type="xs:boolean"></xs:element>
166
+ <xs:element name="sachgruppenpool" type="ns1:sachgruppenpool" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
167
+ <xs:element name="stAnsprechpartnertypen" type="ns1:stAnsprechpartnertypen" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
168
+ <xs:element name="stAufschlagart" type="ns1:stAufschlagart" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
169
+ <xs:element name="stDateiformate" type="ns1:stDateiformate" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
170
+ <xs:element name="stEinheiten" type="ns1:stEinheiten" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
171
+ <xs:element name="stErscheinungsweisen" type="ns1:stErscheinungsweisen" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
172
+ <xs:element name="stFreqcaparten" type="ns1:stFreqcaparten" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
173
+ <xs:element name="stGattungen" type="ns1:stGattungen" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
174
+ <xs:element name="stLaender" type="ns1:stLaender" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
175
+ <xs:element name="stPlatzierungen" type="ns1:stPlatzierungen" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
176
+ <xs:element name="stPreistypen" type="ns1:stPreistypen" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
177
+ <xs:element name="stRabatttypen" type="ns1:stRabatttypen" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
178
+ <xs:element name="stSachgruppen" type="ns1:stSachgruppen" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
179
+ <xs:element name="stTargetingarten" type="ns1:stTargetingarten" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
180
+ <xs:element name="stTargetingmerkmale" type="ns1:stTargetingmerkmale" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
181
+ <xs:element name="stWerbeformKategorien" type="ns1:stWerbeformKategorien" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
182
+ <xs:element name="stWerbeformenNEU" type="ns1:stWerbeformenNEU" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
183
+ <xs:element name="stZahlungBasen" type="ns1:stZahlungBasen" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
184
+ <xs:element name="stZahlungTypen" type="ns1:stZahlungTypen" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
185
+ <xs:element name="stZahlungZeiten" type="ns1:stZahlungZeiten" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
186
+ <xs:element name="werbeformenpool" type="ns1:werbeformenpool" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
187
+ </xs:sequence>
188
+ </xs:complexType>
189
+
190
+ <xs:complexType name="getDbManager">
191
+ <xs:sequence></xs:sequence>
192
+ </xs:complexType>
193
+
194
+ <xs:complexType name="getDbManagerResponse">
195
+ <xs:sequence>
196
+ <xs:element name="return" type="tns:dbManager" minOccurs="0"></xs:element>
197
+ </xs:sequence>
198
+ </xs:complexType>
199
+
200
+ <xs:complexType name="dbManager">
201
+ <xs:sequence></xs:sequence>
202
+ </xs:complexType>
203
+
204
+ <xs:simpleType name="versionTypes">
205
+ <xs:restriction base="xs:string">
206
+ <xs:enumeration value="Version_1"></xs:enumeration>
207
+ <xs:enumeration value="Version_2"></xs:enumeration>
208
+ </xs:restriction>
209
+ </xs:simpleType>
210
+ </xs:schema>
@@ -0,0 +1,549 @@
1
+ <?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.1-b01-. --><xs:schema xmlns:tns="customers.model.online.msw" xmlns:xs="http://www.w3.org/2001/XMLSchema" version="1.0" targetNamespace="customers.model.online.msw">
2
+
3
+ <xs:complexType name="adressen">
4
+ <xs:sequence>
5
+ <xs:element name="adressUid" type="xs:string" minOccurs="0"></xs:element>
6
+ <xs:element name="anrede" type="xs:string" minOccurs="0"></xs:element>
7
+ <xs:element name="durchwahlFax" type="xs:string" minOccurs="0"></xs:element>
8
+ <xs:element name="durchwahlTelefon" type="xs:string" minOccurs="0"></xs:element>
9
+ <xs:element name="email" type="xs:string" minOccurs="0"></xs:element>
10
+ <xs:element name="internet" type="xs:string" minOccurs="0"></xs:element>
11
+ <xs:element name="land" type="xs:string" minOccurs="0"></xs:element>
12
+ <xs:element name="nachname" type="xs:string" minOccurs="0"></xs:element>
13
+ <xs:element name="name1" type="xs:string" minOccurs="0"></xs:element>
14
+ <xs:element name="name2" type="xs:string" minOccurs="0"></xs:element>
15
+ <xs:element name="ort" type="xs:string" minOccurs="0"></xs:element>
16
+ <xs:element name="pk" type="tns:adressenPK" minOccurs="0"></xs:element>
17
+ <xs:element name="plz" type="xs:string" minOccurs="0"></xs:element>
18
+ <xs:element name="postfach" type="xs:string" minOccurs="0"></xs:element>
19
+ <xs:element name="postfachOrt" type="xs:string" minOccurs="0"></xs:element>
20
+ <xs:element name="postfachPlz" type="xs:string" minOccurs="0"></xs:element>
21
+ <xs:element name="strasse" type="xs:string" minOccurs="0"></xs:element>
22
+ <xs:element name="vorname" type="xs:string" minOccurs="0"></xs:element>
23
+ <xs:element name="vorwahlFax" type="xs:string" minOccurs="0"></xs:element>
24
+ <xs:element name="vorwahlTelefon" type="xs:string" minOccurs="0"></xs:element>
25
+ </xs:sequence>
26
+ </xs:complexType>
27
+
28
+ <xs:complexType name="adressenPK">
29
+ <xs:sequence>
30
+ <xs:element name="adresstypId" type="xs:int"></xs:element>
31
+ <xs:element name="objektUid" type="xs:string" minOccurs="0"></xs:element>
32
+ </xs:sequence>
33
+ </xs:complexType>
34
+
35
+ <xs:complexType name="bankenNEU">
36
+ <xs:sequence>
37
+ <xs:element name="bankName" type="xs:string" minOccurs="0"></xs:element>
38
+ <xs:element name="bankUid" type="xs:string" minOccurs="0"></xs:element>
39
+ <xs:element name="bankleitzahl" type="xs:string" minOccurs="0"></xs:element>
40
+ <xs:element name="bic" type="xs:string" minOccurs="0"></xs:element>
41
+ <xs:element name="iban" type="xs:string" minOccurs="0"></xs:element>
42
+ <xs:element name="kontonummer" type="xs:string" minOccurs="0"></xs:element>
43
+ <xs:element name="lkz" type="xs:string" minOccurs="0"></xs:element>
44
+ <xs:element name="objektUid" type="xs:string" minOccurs="0"></xs:element>
45
+ </xs:sequence>
46
+ </xs:complexType>
47
+
48
+ <xs:complexType name="belegungseinheit">
49
+ <xs:sequence></xs:sequence>
50
+ <xs:attribute name="beName" type="xs:string"></xs:attribute>
51
+ <xs:attribute name="beschreibung" type="xs:string"></xs:attribute>
52
+ <xs:attribute name="buchbar" type="xs:boolean" use="required"></xs:attribute>
53
+ <xs:attribute name="changedate" type="xs:dateTime"></xs:attribute>
54
+ <xs:attribute name="gattung" type="xs:int" use="required"></xs:attribute>
55
+ <xs:attribute name="gesamtangebot" type="xs:boolean" use="required"></xs:attribute>
56
+ <xs:attribute name="gueltigAb" type="xs:dateTime"></xs:attribute>
57
+ <xs:attribute name="gueltigBis" type="xs:dateTime"></xs:attribute>
58
+ <xs:attribute name="kombination" type="xs:boolean" use="required"></xs:attribute>
59
+ <xs:attribute name="landId" type="xs:int" use="required"></xs:attribute>
60
+ <xs:attribute name="newIdDate" type="xs:dateTime"></xs:attribute>
61
+ <xs:attribute name="newPlDate" type="xs:dateTime"></xs:attribute>
62
+ <xs:attribute name="objektUid" type="xs:string"></xs:attribute>
63
+ <xs:attribute name="omc" type="xs:string"></xs:attribute>
64
+ <xs:attribute name="platzierung" type="xs:int" use="required"></xs:attribute>
65
+ <xs:attribute name="preiseAufAnfrage" type="xs:boolean" use="required"></xs:attribute>
66
+ <xs:attribute name="preislistennummer" type="xs:string"></xs:attribute>
67
+ <xs:attribute name="vermarkterChangeDate" type="xs:dateTime"></xs:attribute>
68
+ <xs:attribute name="vermarkterId" type="xs:int" use="required"></xs:attribute>
69
+ <xs:attribute name="waehrung" type="xs:string"></xs:attribute>
70
+ <xs:attribute name="zugeordneteSites" type="xs:string"></xs:attribute>
71
+ </xs:complexType>
72
+
73
+ <xs:complexType name="datenanlieferungNEU">
74
+ <xs:sequence>
75
+ <xs:element name="anlieferschluss" type="xs:string" minOccurs="0"></xs:element>
76
+ <xs:element name="email" type="xs:string" minOccurs="0"></xs:element>
77
+ <xs:element name="hinweis" type="xs:string" minOccurs="0"></xs:element>
78
+ <xs:element name="maxGewicht" type="xs:int"></xs:element>
79
+ <xs:element name="pk" type="tns:datenanlieferungNEUPK" minOccurs="0"></xs:element>
80
+ </xs:sequence>
81
+ </xs:complexType>
82
+
83
+ <xs:complexType name="datenanlieferungNEUPK">
84
+ <xs:sequence>
85
+ <xs:element name="dateiformatId" type="xs:int"></xs:element>
86
+ <xs:element name="werbeformUid" type="xs:string" minOccurs="0"></xs:element>
87
+ </xs:sequence>
88
+ </xs:complexType>
89
+
90
+ <xs:complexType name="erweiterteEigenschaften">
91
+ <xs:sequence></xs:sequence>
92
+ <xs:attribute name="bezeichnung" type="xs:string"></xs:attribute>
93
+ <xs:attribute name="datentyp" type="xs:string"></xs:attribute>
94
+ <xs:attribute name="einheit" type="xs:string"></xs:attribute>
95
+ <xs:attribute name="fkTyp" type="xs:string"></xs:attribute>
96
+ <xs:attribute name="fkUid" type="xs:string"></xs:attribute>
97
+ <xs:attribute name="hinweis" type="xs:string"></xs:attribute>
98
+ <xs:attribute name="id" type="xs:int" use="required"></xs:attribute>
99
+ <xs:attribute name="wert" type="xs:string"></xs:attribute>
100
+ <xs:attribute name="zusatz" type="xs:string"></xs:attribute>
101
+ </xs:complexType>
102
+
103
+ <xs:complexType name="frequencycappingNEU">
104
+ <xs:sequence>
105
+ <xs:element name="aufschlag" type="xs:decimal" minOccurs="0"></xs:element>
106
+ <xs:element name="aufschlagartId" type="xs:int"></xs:element>
107
+ <xs:element name="maxCap" type="xs:int"></xs:element>
108
+ <xs:element name="minCap" type="xs:int"></xs:element>
109
+ <xs:element name="pk" type="tns:frequencycappingNEUPK" minOccurs="0"></xs:element>
110
+ </xs:sequence>
111
+ </xs:complexType>
112
+
113
+ <xs:complexType name="frequencycappingNEUPK">
114
+ <xs:sequence>
115
+ <xs:element name="freqcapartId" type="xs:int"></xs:element>
116
+ <xs:element name="objektUid" type="xs:string" minOccurs="0"></xs:element>
117
+ <xs:element name="werbeformUid" type="xs:string" minOccurs="0"></xs:element>
118
+ </xs:sequence>
119
+ </xs:complexType>
120
+
121
+ <xs:complexType name="newsletterAussand">
122
+ <xs:sequence></xs:sequence>
123
+ <xs:attribute name="aboZahl" type="xs:int" use="required"></xs:attribute>
124
+ <xs:attribute name="ewId" type="xs:int" use="required"></xs:attribute>
125
+ <xs:attribute name="objektUid" type="xs:string"></xs:attribute>
126
+ </xs:complexType>
127
+
128
+ <xs:complexType name="omcMatch">
129
+ <xs:sequence></xs:sequence>
130
+ <xs:attribute name="agof" type="xs:string"></xs:attribute>
131
+ <xs:attribute name="dmc" type="xs:int" use="required"></xs:attribute>
132
+ <xs:attribute name="ivw" type="xs:string"></xs:attribute>
133
+ <xs:attribute name="mds" type="xs:string"></xs:attribute>
134
+ <xs:attribute name="netmetrix" type="xs:string"></xs:attribute>
135
+ <xs:attribute name="omc" type="xs:string"></xs:attribute>
136
+ <xs:attribute name="xenion" type="xs:string"></xs:attribute>
137
+ </xs:complexType>
138
+
139
+ <xs:complexType name="preiseNEU">
140
+ <xs:sequence>
141
+ <xs:element name="garantierteReichweite" type="xs:int"></xs:element>
142
+ <xs:element name="pk" type="tns:preiseNEUPK" minOccurs="0"></xs:element>
143
+ <xs:element name="preis" type="xs:decimal" minOccurs="0"></xs:element>
144
+ </xs:sequence>
145
+ </xs:complexType>
146
+
147
+ <xs:complexType name="preiseNEUPK">
148
+ <xs:sequence>
149
+ <xs:element name="objektUid" type="xs:string" minOccurs="0"></xs:element>
150
+ <xs:element name="preistypId" type="xs:int"></xs:element>
151
+ <xs:element name="werbeformUid" type="xs:string" minOccurs="0"></xs:element>
152
+ </xs:sequence>
153
+ </xs:complexType>
154
+
155
+ <xs:complexType name="rabatteNEU">
156
+ <xs:sequence>
157
+ <xs:element name="hinweis" type="xs:string" minOccurs="0"></xs:element>
158
+ <xs:element name="pk" type="tns:rabatteNEUPK" minOccurs="0"></xs:element>
159
+ <xs:element name="rabattUid" type="xs:string" minOccurs="0"></xs:element>
160
+ </xs:sequence>
161
+ </xs:complexType>
162
+
163
+ <xs:complexType name="rabatteNEUPK">
164
+ <xs:sequence>
165
+ <xs:element name="objektUid" type="xs:string" minOccurs="0"></xs:element>
166
+ <xs:element name="rabatttypId" type="xs:int"></xs:element>
167
+ </xs:sequence>
168
+ </xs:complexType>
169
+
170
+ <xs:complexType name="rabattstaffelnNEU">
171
+ <xs:sequence>
172
+ <xs:element name="pk" type="tns:rabattstaffelnNEUPK" minOccurs="0"></xs:element>
173
+ </xs:sequence>
174
+ <xs:attribute name="abBis" type="xs:string"></xs:attribute>
175
+ <xs:attribute name="rabatt" type="xs:decimal"></xs:attribute>
176
+ <xs:attribute name="rabattEinheitId" type="xs:int" use="required"></xs:attribute>
177
+ <xs:attribute name="schwelleEinheitId" type="xs:int" use="required"></xs:attribute>
178
+ </xs:complexType>
179
+
180
+ <xs:complexType name="rabattstaffelnNEUPK">
181
+ <xs:sequence>
182
+ <xs:element name="rabattUid" type="xs:string" minOccurs="0"></xs:element>
183
+ <xs:element name="schwelle" type="xs:int"></xs:element>
184
+ </xs:sequence>
185
+ </xs:complexType>
186
+
187
+ <xs:complexType name="sachgruppen">
188
+ <xs:sequence>
189
+ <xs:element name="pk" type="tns:sachgruppenPK" minOccurs="0"></xs:element>
190
+ </xs:sequence>
191
+ <xs:attribute name="modifydate" type="xs:dateTime"></xs:attribute>
192
+ <xs:attribute name="vermarkterId" type="xs:int" use="required"></xs:attribute>
193
+ </xs:complexType>
194
+
195
+ <xs:complexType name="sachgruppenPK">
196
+ <xs:sequence></xs:sequence>
197
+ <xs:attribute name="objektUid" type="xs:string"></xs:attribute>
198
+ <xs:attribute name="sachgruppenUid" type="xs:string"></xs:attribute>
199
+ </xs:complexType>
200
+
201
+ <xs:complexType name="targetingNEU">
202
+ <xs:sequence>
203
+ <xs:element name="aufschlag" type="xs:decimal" minOccurs="0"></xs:element>
204
+ <xs:element name="aufschlagartId" type="xs:int"></xs:element>
205
+ <xs:element name="pk" type="tns:targetingNEUPK" minOccurs="0"></xs:element>
206
+ </xs:sequence>
207
+ </xs:complexType>
208
+
209
+ <xs:complexType name="targetingNEUPK">
210
+ <xs:sequence>
211
+ <xs:element name="objektUid" type="xs:string" minOccurs="0"></xs:element>
212
+ <xs:element name="targetingId" type="xs:int"></xs:element>
213
+ <xs:element name="targetingmerkmalId" type="xs:int"></xs:element>
214
+ <xs:element name="werbeformUid" type="xs:string" minOccurs="0"></xs:element>
215
+ </xs:sequence>
216
+ </xs:complexType>
217
+
218
+ <xs:complexType name="werbeformGroessen">
219
+ <xs:sequence>
220
+ <xs:element name="pk" type="tns:werbeformGroessenPK" minOccurs="0"></xs:element>
221
+ </xs:sequence>
222
+ </xs:complexType>
223
+
224
+ <xs:complexType name="werbeformGroessenPK">
225
+ <xs:sequence></xs:sequence>
226
+ <xs:attribute name="maxBreite" type="xs:int" use="required"></xs:attribute>
227
+ <xs:attribute name="maxHoehe" type="xs:int" use="required"></xs:attribute>
228
+ <xs:attribute name="minBreite" type="xs:int" use="required"></xs:attribute>
229
+ <xs:attribute name="minHoehe" type="xs:int" use="required"></xs:attribute>
230
+ <xs:attribute name="werbeformUid" type="xs:string"></xs:attribute>
231
+ </xs:complexType>
232
+
233
+ <xs:complexType name="werbeformKombinationen">
234
+ <xs:sequence>
235
+ <xs:element name="pk" type="tns:werbeformKombinationenPK" minOccurs="0"></xs:element>
236
+ </xs:sequence>
237
+ </xs:complexType>
238
+
239
+ <xs:complexType name="werbeformKombinationenPK">
240
+ <xs:sequence></xs:sequence>
241
+ <xs:attribute name="kombiWerbeformUid" type="xs:string"></xs:attribute>
242
+ <xs:attribute name="mitgliedWerbeformUid" type="xs:string"></xs:attribute>
243
+ </xs:complexType>
244
+
245
+ <xs:complexType name="werbeformen">
246
+ <xs:sequence></xs:sequence>
247
+ <xs:attribute name="extProperties" type="xs:int" use="required"></xs:attribute>
248
+ <xs:attribute name="extraBezeichnung" type="xs:string"></xs:attribute>
249
+ <xs:attribute name="hinweis" type="xs:string"></xs:attribute>
250
+ <xs:attribute name="kategorieWerbeformUid" type="xs:string"></xs:attribute>
251
+ <xs:attribute name="masterWerbeformUid" type="xs:string"></xs:attribute>
252
+ <xs:attribute name="objektUid" type="xs:string"></xs:attribute>
253
+ <xs:attribute name="werbeformUid" type="xs:string"></xs:attribute>
254
+ </xs:complexType>
255
+
256
+ <xs:complexType name="zahlungsbedingungenNEU">
257
+ <xs:sequence>
258
+ <xs:element name="pk" type="tns:zahlungsbedingungenNEUPK" minOccurs="0"></xs:element>
259
+ <xs:element name="zahlungProzent" type="xs:decimal" minOccurs="0"></xs:element>
260
+ </xs:sequence>
261
+ </xs:complexType>
262
+
263
+ <xs:complexType name="zahlungsbedingungenNEUPK">
264
+ <xs:sequence>
265
+ <xs:element name="zahlungBasis" type="xs:short"></xs:element>
266
+ <xs:element name="zahlungTage" type="xs:short"></xs:element>
267
+ <xs:element name="zahlungTyp" type="xs:short"></xs:element>
268
+ <xs:element name="zahlungZeit" type="xs:short"></xs:element>
269
+ <xs:element name="zahlungsbedingungenUid" type="xs:string" minOccurs="0"></xs:element>
270
+ </xs:sequence>
271
+ </xs:complexType>
272
+
273
+ <xs:complexType name="zahlungsbedingungenZuordnung">
274
+ <xs:sequence>
275
+ <xs:element name="mindestvolumen" type="xs:decimal" minOccurs="0"></xs:element>
276
+ <xs:element name="objektUid" type="xs:string" minOccurs="0"></xs:element>
277
+ <xs:element name="zahlungsbedingungenUid" type="xs:string" minOccurs="0"></xs:element>
278
+ </xs:sequence>
279
+ </xs:complexType>
280
+
281
+ <xs:complexType name="vermarkter">
282
+ <xs:sequence></xs:sequence>
283
+ <xs:attribute name="erikaModifydate" type="xs:dateTime"></xs:attribute>
284
+ <xs:attribute name="gattung" type="xs:int" use="required"></xs:attribute>
285
+ <xs:attribute name="handelsregisterEintrag" type="xs:string"></xs:attribute>
286
+ <xs:attribute name="landId" type="xs:int" use="required"></xs:attribute>
287
+ <xs:attribute name="modifydate" type="xs:dateTime"></xs:attribute>
288
+ <xs:attribute name="umsatzsteuerId" type="xs:string"></xs:attribute>
289
+ <xs:attribute name="vermarkterAgofId" type="xs:string"></xs:attribute>
290
+ <xs:attribute name="vermarkterBezeichnung" type="xs:string"></xs:attribute>
291
+ <xs:attribute name="vermarkterId" type="xs:int" use="required"></xs:attribute>
292
+ <xs:attribute name="vermarkterPraefix" type="xs:string"></xs:attribute>
293
+ <xs:attribute name="vermarkterStatus" type="xs:string"></xs:attribute>
294
+ </xs:complexType>
295
+
296
+ <xs:complexType name="erikaAbfrage">
297
+ <xs:sequence>
298
+ <xs:element name="bezugsgroesseRabattstaffel" type="tns:erikaBezugsgroesseRabattstaffel" minOccurs="0"></xs:element>
299
+ <xs:element name="gueltigkeitRabattstaffel" type="tns:erikaGueltigkeitRabattstaffel" minOccurs="0"></xs:element>
300
+ <xs:element name="konzernuebergreifenderabatte" type="tns:erikaKonzernuebergreifenderabatte" minOccurs="0"></xs:element>
301
+ <xs:element name="rabattbildend" type="tns:erikaRabattbildend" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
302
+ <xs:element name="rabattfaehig" type="tns:erikaRabattfaehig" nillable="true" minOccurs="0" maxOccurs="unbounded"></xs:element>
303
+ <xs:element name="rabattstaffelverlauf" type="tns:erikaRabattstaffelverlauf" minOccurs="0"></xs:element>
304
+ <xs:element name="rabattvolumen" type="tns:erikaRabattvolumen" minOccurs="0"></xs:element>
305
+ <xs:element name="rueckrabattierung" type="tns:erikaRueckrabattierung" minOccurs="0"></xs:element>
306
+ </xs:sequence>
307
+ <xs:attribute name="abfrageDatum" type="xs:dateTime"></xs:attribute>
308
+ <xs:attribute name="abfrageEndeDatum" type="xs:dateTime"></xs:attribute>
309
+ <xs:attribute name="abfrageId" type="xs:int" use="required"></xs:attribute>
310
+ <xs:attribute name="ansprechpartnerId" type="xs:int" use="required"></xs:attribute>
311
+ <xs:attribute name="antwortDatum" type="xs:dateTime"></xs:attribute>
312
+ <xs:attribute name="bezeichnung" type="xs:string"></xs:attribute>
313
+ <xs:attribute name="fertig" type="xs:boolean" use="required"></xs:attribute>
314
+ </xs:complexType>
315
+
316
+ <xs:complexType name="erikaBezugsgroesseRabattstaffel">
317
+ <xs:sequence></xs:sequence>
318
+ <xs:attribute name="abfrageId" type="xs:int" use="required"></xs:attribute>
319
+ <xs:attribute name="bestaetigungsdatum" type="xs:dateTime"></xs:attribute>
320
+ <xs:attribute name="bezugsgroesse" type="xs:short" use="required"></xs:attribute>
321
+ </xs:complexType>
322
+
323
+ <xs:complexType name="erikaGueltigkeitRabattstaffel">
324
+ <xs:sequence>
325
+ <xs:element name="stGueltigkeitrabattstaffel" type="tns:erikaStGueltigkeitrabattstaffel" minOccurs="0"></xs:element>
326
+ </xs:sequence>
327
+ <xs:attribute name="abfrageId" type="xs:int" use="required"></xs:attribute>
328
+ <xs:attribute name="bestaetigungsdatum" type="xs:dateTime"></xs:attribute>
329
+ </xs:complexType>
330
+
331
+ <xs:complexType name="erikaStGueltigkeitrabattstaffel">
332
+ <xs:sequence></xs:sequence>
333
+ <xs:attribute name="bezeichnung" type="xs:string"></xs:attribute>
334
+ <xs:attribute name="id" type="xs:int" use="required"></xs:attribute>
335
+ </xs:complexType>
336
+
337
+ <xs:complexType name="erikaKonzernuebergreifenderabatte">
338
+ <xs:sequence></xs:sequence>
339
+ <xs:attribute name="abfrageId" type="xs:int" use="required"></xs:attribute>
340
+ <xs:attribute name="bestaetigungsdatum" type="xs:dateTime"></xs:attribute>
341
+ <xs:attribute name="konzernrabatt" type="xs:short" use="required"></xs:attribute>
342
+ </xs:complexType>
343
+
344
+ <xs:complexType name="erikaRabattbildend">
345
+ <xs:sequence>
346
+ <xs:element name="stRabattfaehigBildend" type="tns:erikaStRabattfaehigBildend" minOccurs="0"></xs:element>
347
+ </xs:sequence>
348
+ <xs:attribute name="abfrageId" type="xs:int" use="required"></xs:attribute>
349
+ <xs:attribute name="bestaetigungsdatum" type="xs:dateTime"></xs:attribute>
350
+ <xs:attribute name="id" type="xs:int" use="required"></xs:attribute>
351
+ </xs:complexType>
352
+
353
+ <xs:complexType name="erikaStRabattfaehigBildend">
354
+ <xs:sequence></xs:sequence>
355
+ <xs:attribute name="bezeichnung" type="xs:string"></xs:attribute>
356
+ <xs:attribute name="id" type="xs:int" use="required"></xs:attribute>
357
+ </xs:complexType>
358
+
359
+ <xs:complexType name="erikaRabattfaehig">
360
+ <xs:sequence>
361
+ <xs:element name="stRabattfaehigBildend" type="tns:erikaStRabattfaehigBildend" minOccurs="0"></xs:element>
362
+ </xs:sequence>
363
+ <xs:attribute name="abfrageId" type="xs:int" use="required"></xs:attribute>
364
+ <xs:attribute name="bestaetigungsdatum" type="xs:dateTime"></xs:attribute>
365
+ <xs:attribute name="id" type="xs:int" use="required"></xs:attribute>
366
+ </xs:complexType>
367
+
368
+ <xs:complexType name="erikaRabattstaffelverlauf">
369
+ <xs:sequence>
370
+ <xs:element name="stStaffelverlauf" type="tns:erikaStStaffelverlauf" minOccurs="0"></xs:element>
371
+ </xs:sequence>
372
+ <xs:attribute name="abfrageId" type="xs:int" use="required"></xs:attribute>
373
+ <xs:attribute name="bestaetigungsdatum" type="xs:dateTime"></xs:attribute>
374
+ </xs:complexType>
375
+
376
+ <xs:complexType name="erikaStStaffelverlauf">
377
+ <xs:sequence></xs:sequence>
378
+ <xs:attribute name="bezeichnung" type="xs:string"></xs:attribute>
379
+ <xs:attribute name="id" type="xs:int" use="required"></xs:attribute>
380
+ </xs:complexType>
381
+
382
+ <xs:complexType name="erikaRabattvolumen">
383
+ <xs:sequence>
384
+ <xs:element name="stVolumen" type="tns:erikaStVolumen" minOccurs="0"></xs:element>
385
+ </xs:sequence>
386
+ <xs:attribute name="abfrageId" type="xs:int" use="required"></xs:attribute>
387
+ <xs:attribute name="bestaetigungsdatum" type="xs:dateTime"></xs:attribute>
388
+ </xs:complexType>
389
+
390
+ <xs:complexType name="erikaStVolumen">
391
+ <xs:sequence></xs:sequence>
392
+ <xs:attribute name="bezeichnung" type="xs:string"></xs:attribute>
393
+ <xs:attribute name="id" type="xs:int" use="required"></xs:attribute>
394
+ </xs:complexType>
395
+
396
+ <xs:complexType name="erikaRueckrabattierung">
397
+ <xs:sequence></xs:sequence>
398
+ <xs:attribute name="abfrageId" type="xs:int" use="required"></xs:attribute>
399
+ <xs:attribute name="bestaetigungsdatum" type="xs:dateTime"></xs:attribute>
400
+ <xs:attribute name="rueckrabattierung" type="xs:short" use="required"></xs:attribute>
401
+ </xs:complexType>
402
+
403
+ <xs:complexType name="sachgruppenpool">
404
+ <xs:sequence></xs:sequence>
405
+ <xs:attribute name="ebene1" type="xs:int" use="required"></xs:attribute>
406
+ <xs:attribute name="ebene2" type="xs:int" use="required"></xs:attribute>
407
+ <xs:attribute name="ebene3" type="xs:int" use="required"></xs:attribute>
408
+ <xs:attribute name="sachgruppenUid" type="xs:string"></xs:attribute>
409
+ </xs:complexType>
410
+
411
+ <xs:complexType name="stAnsprechpartnertypen">
412
+ <xs:sequence></xs:sequence>
413
+ <xs:attribute name="ansprechpartnerTypId" type="xs:int" use="required"></xs:attribute>
414
+ <xs:attribute name="ansprechpartnerTypName" type="xs:string"></xs:attribute>
415
+ </xs:complexType>
416
+
417
+ <xs:complexType name="stAufschlagart">
418
+ <xs:sequence></xs:sequence>
419
+ <xs:attribute name="aufschlagart" type="xs:int" use="required"></xs:attribute>
420
+ <xs:attribute name="aufschlagartBeschreibung" type="xs:string"></xs:attribute>
421
+ </xs:complexType>
422
+
423
+ <xs:complexType name="stDateiformate">
424
+ <xs:sequence></xs:sequence>
425
+ <xs:attribute name="dateiformatId" type="xs:int" use="required"></xs:attribute>
426
+ <xs:attribute name="dateiformatName" type="xs:string"></xs:attribute>
427
+ </xs:complexType>
428
+
429
+ <xs:complexType name="stEinheiten">
430
+ <xs:sequence></xs:sequence>
431
+ <xs:attribute name="einheitId" type="xs:int" use="required"></xs:attribute>
432
+ <xs:attribute name="einheitName" type="xs:string"></xs:attribute>
433
+ </xs:complexType>
434
+
435
+ <xs:complexType name="stErscheinungsweisen">
436
+ <xs:sequence></xs:sequence>
437
+ <xs:attribute name="ewId" type="xs:int" use="required"></xs:attribute>
438
+ <xs:attribute name="ewName" type="xs:string"></xs:attribute>
439
+ </xs:complexType>
440
+
441
+ <xs:complexType name="stFreqcaparten">
442
+ <xs:sequence></xs:sequence>
443
+ <xs:attribute name="freqcapartId" type="xs:int" use="required"></xs:attribute>
444
+ <xs:attribute name="frequencycappingart" type="xs:string"></xs:attribute>
445
+ </xs:complexType>
446
+
447
+ <xs:complexType name="stGattungen">
448
+ <xs:sequence></xs:sequence>
449
+ <xs:attribute name="gattungId" type="xs:int" use="required"></xs:attribute>
450
+ <xs:attribute name="gattungKuerzel" type="xs:string"></xs:attribute>
451
+ <xs:attribute name="gattungName" type="xs:string"></xs:attribute>
452
+ </xs:complexType>
453
+
454
+ <xs:complexType name="stLaender">
455
+ <xs:sequence></xs:sequence>
456
+ <xs:attribute name="isoLandBezeichnung" type="xs:string"></xs:attribute>
457
+ <xs:attribute name="isoLandCode" type="xs:string"></xs:attribute>
458
+ <xs:attribute name="landBezeichnung" type="xs:string"></xs:attribute>
459
+ <xs:attribute name="landCode" type="xs:string"></xs:attribute>
460
+ <xs:attribute name="landId" type="xs:int" use="required"></xs:attribute>
461
+ <xs:attribute name="waehrungCode" type="xs:string"></xs:attribute>
462
+ </xs:complexType>
463
+
464
+ <xs:complexType name="stPlatzierungen">
465
+ <xs:sequence></xs:sequence>
466
+ <xs:attribute name="platzierungId" type="xs:int" use="required"></xs:attribute>
467
+ <xs:attribute name="platzierungName" type="xs:string"></xs:attribute>
468
+ </xs:complexType>
469
+
470
+ <xs:complexType name="stPreistypen">
471
+ <xs:sequence>
472
+ <xs:element name="preistypId" type="xs:int"></xs:element>
473
+ <xs:element name="preistypName" type="xs:string" minOccurs="0"></xs:element>
474
+ </xs:sequence>
475
+ </xs:complexType>
476
+
477
+ <xs:complexType name="stRabatttypen">
478
+ <xs:sequence></xs:sequence>
479
+ <xs:attribute name="rabatttypId" type="xs:int" use="required"></xs:attribute>
480
+ <xs:attribute name="rabatttypName" type="xs:string"></xs:attribute>
481
+ </xs:complexType>
482
+
483
+ <xs:complexType name="stSachgruppen">
484
+ <xs:sequence></xs:sequence>
485
+ <xs:attribute name="hierarchie" type="xs:int" use="required"></xs:attribute>
486
+ <xs:attribute name="sachgruppenId" type="xs:int" use="required"></xs:attribute>
487
+ <xs:attribute name="sachgruppenName" type="xs:string"></xs:attribute>
488
+ </xs:complexType>
489
+
490
+ <xs:complexType name="stTargetingarten">
491
+ <xs:sequence></xs:sequence>
492
+ <xs:attribute name="kombiwarnung" type="xs:short" use="required"></xs:attribute>
493
+ <xs:attribute name="targetingId" type="xs:int" use="required"></xs:attribute>
494
+ <xs:attribute name="targetingName" type="xs:string"></xs:attribute>
495
+ </xs:complexType>
496
+
497
+ <xs:complexType name="stTargetingmerkmale">
498
+ <xs:sequence>
499
+ <xs:element name="pk" type="tns:stTargetingmerkmalePK" minOccurs="0"></xs:element>
500
+ </xs:sequence>
501
+ <xs:attribute name="merkmalBeschreibung" type="xs:string"></xs:attribute>
502
+ </xs:complexType>
503
+
504
+ <xs:complexType name="stTargetingmerkmalePK">
505
+ <xs:sequence></xs:sequence>
506
+ <xs:attribute name="merkmal" type="xs:int" use="required"></xs:attribute>
507
+ <xs:attribute name="targetingId" type="xs:int" use="required"></xs:attribute>
508
+ </xs:complexType>
509
+
510
+ <xs:complexType name="stWerbeformKategorien">
511
+ <xs:sequence></xs:sequence>
512
+ <xs:attribute name="kategorieId" type="xs:int" use="required"></xs:attribute>
513
+ <xs:attribute name="kategorieName" type="xs:string"></xs:attribute>
514
+ </xs:complexType>
515
+
516
+ <xs:complexType name="stWerbeformenNEU">
517
+ <xs:sequence></xs:sequence>
518
+ <xs:attribute name="breite" type="xs:int" use="required"></xs:attribute>
519
+ <xs:attribute name="hoehe" type="xs:int" use="required"></xs:attribute>
520
+ <xs:attribute name="werbeformId" type="xs:int" use="required"></xs:attribute>
521
+ <xs:attribute name="werbeformName" type="xs:string"></xs:attribute>
522
+ </xs:complexType>
523
+
524
+ <xs:complexType name="stZahlungBasen">
525
+ <xs:sequence></xs:sequence>
526
+ <xs:attribute name="zahlungBasisId" type="xs:short" use="required"></xs:attribute>
527
+ <xs:attribute name="zahlungBasisName" type="xs:string"></xs:attribute>
528
+ </xs:complexType>
529
+
530
+ <xs:complexType name="stZahlungTypen">
531
+ <xs:sequence></xs:sequence>
532
+ <xs:attribute name="zahlungTypId" type="xs:short" use="required"></xs:attribute>
533
+ <xs:attribute name="zahlungTypName" type="xs:string"></xs:attribute>
534
+ </xs:complexType>
535
+
536
+ <xs:complexType name="stZahlungZeiten">
537
+ <xs:sequence></xs:sequence>
538
+ <xs:attribute name="zahlungZeitId" type="xs:short" use="required"></xs:attribute>
539
+ <xs:attribute name="zahlungZeitName" type="xs:string"></xs:attribute>
540
+ </xs:complexType>
541
+
542
+ <xs:complexType name="werbeformenpool">
543
+ <xs:sequence></xs:sequence>
544
+ <xs:attribute name="isStandard" type="xs:boolean" use="required"></xs:attribute>
545
+ <xs:attribute name="kategorieId" type="xs:int" use="required"></xs:attribute>
546
+ <xs:attribute name="kategorieWerbeformUid" type="xs:string"></xs:attribute>
547
+ <xs:attribute name="werbeformId" type="xs:int" use="required"></xs:attribute>
548
+ </xs:complexType>
549
+ </xs:schema>