sepafm 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (90) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +35 -0
  3. data/.ruby-version +1 -0
  4. data/Gemfile +4 -0
  5. data/LICENSE +8 -0
  6. data/README.md +236 -0
  7. data/Rakefile +10 -0
  8. data/lib/danske_get_bank_certificate_test.rb +15 -0
  9. data/lib/sepa/application_request.rb +182 -0
  10. data/lib/sepa/application_response.rb +123 -0
  11. data/lib/sepa/client.rb +79 -0
  12. data/lib/sepa/danske_testing/keys/danske_encryption.crt +24 -0
  13. data/lib/sepa/filedescriptor.rb +7 -0
  14. data/lib/sepa/filetypeservice.rb +6 -0
  15. data/lib/sepa/nordea_testing/keys/CSR.csr +0 -0
  16. data/lib/sepa/nordea_testing/keys/nordea.crt +27 -0
  17. data/lib/sepa/nordea_testing/keys/nordea.key +19 -0
  18. data/lib/sepa/nordea_testing/response/content_053.xml +998 -0
  19. data/lib/sepa/nordea_testing/response/content_054.xml +1 -0
  20. data/lib/sepa/nordea_testing/response/download_file_response.xml +14 -0
  21. data/lib/sepa/nordea_testing/response/download_filelist_response.xml +14 -0
  22. data/lib/sepa/nordea_testing/response/get_user_info_response.xml +14 -0
  23. data/lib/sepa/nordea_testing/response/upload_file_response.xml +14 -0
  24. data/lib/sepa/response.rb +177 -0
  25. data/lib/sepa/sender_verifier.rb +15 -0
  26. data/lib/sepa/signature.rb +7 -0
  27. data/lib/sepa/soap_builder.rb +395 -0
  28. data/lib/sepa/soap_danske.rb +47 -0
  29. data/lib/sepa/soap_nordea.rb +68 -0
  30. data/lib/sepa/userfiletype.rb +16 -0
  31. data/lib/sepa/version.rb +3 -0
  32. data/lib/sepa/wsdl/wsdl_danske.xml +234 -0
  33. data/lib/sepa/wsdl/wsdl_danske_cert.xml +280 -0
  34. data/lib/sepa/wsdl/wsdl_nordea.xml +234 -0
  35. data/lib/sepa/wsdl/wsdl_nordea_cert.xml +187 -0
  36. data/lib/sepa/xml_parser.rb +291 -0
  37. data/lib/sepa/xml_schemas/application_request.xsd +135 -0
  38. data/lib/sepa/xml_schemas/application_response.xsd +311 -0
  39. data/lib/sepa/xml_schemas/cert_application_request.xsd +107 -0
  40. data/lib/sepa/xml_schemas/danske_pki.xsd +334 -0
  41. data/lib/sepa/xml_schemas/oasis-200401-wss-wssecurity-secext-1.0.xsd +195 -0
  42. data/lib/sepa/xml_schemas/oasis-200401-wss-wssecurity-utility-1.0.xsd +108 -0
  43. data/lib/sepa/xml_schemas/soap.xsd +126 -0
  44. data/lib/sepa/xml_schemas/wsdl.xml +310 -0
  45. data/lib/sepa/xml_schemas/xml.xsd +287 -0
  46. data/lib/sepa/xml_schemas/xmldsig-core-schema.xsd +318 -0
  47. data/lib/sepa/xml_templates/application_request/create_certificate.xml +10 -0
  48. data/lib/sepa/xml_templates/application_request/danske_get_bank_certificate.xml +10 -0
  49. data/lib/sepa/xml_templates/application_request/download_file.xml +32 -0
  50. data/lib/sepa/xml_templates/application_request/download_file_list.xml +29 -0
  51. data/lib/sepa/xml_templates/application_request/get_certificate.xml +10 -0
  52. data/lib/sepa/xml_templates/application_request/get_user_info.xml +26 -0
  53. data/lib/sepa/xml_templates/application_request/upload_file.xml +29 -0
  54. data/lib/sepa/xml_templates/soap/create_certificate.xml +15 -0
  55. data/lib/sepa/xml_templates/soap/danske_get_bank_certificate.xml +14 -0
  56. data/lib/sepa/xml_templates/soap/download_file.xml +16 -0
  57. data/lib/sepa/xml_templates/soap/download_file_list.xml +16 -0
  58. data/lib/sepa/xml_templates/soap/get_certificate.xml +13 -0
  59. data/lib/sepa/xml_templates/soap/get_user_info.xml +16 -0
  60. data/lib/sepa/xml_templates/soap/header.xml +37 -0
  61. data/lib/sepa/xml_templates/soap/upload_file.xml +16 -0
  62. data/lib/sepa.rb +21 -0
  63. data/lib/sepa_client_testing_mika.rb +32 -0
  64. data/lib/sepa_client_testing_tiere.rb +80 -0
  65. data/sepa.gemspec +29 -0
  66. data/test/sepa/application_request_test.rb +423 -0
  67. data/test/sepa/application_response_test.rb +238 -0
  68. data/test/sepa/cert_application_request_test.rb +99 -0
  69. data/test/sepa/client_test.rb +425 -0
  70. data/test/sepa/danske_test_keys/danskeroot.pem +25 -0
  71. data/test/sepa/danske_test_keys/encryption_pkcs.csr +0 -0
  72. data/test/sepa/danske_test_keys/signing_key.pem +27 -0
  73. data/test/sepa/danske_test_keys/signing_pkcs.csr +0 -0
  74. data/test/sepa/nordea_cert_request_soap_builder_test.rb +112 -0
  75. data/test/sepa/nordea_generic_soap_builder_test.rb +427 -0
  76. data/test/sepa/nordea_test_keys/nordea.crt +27 -0
  77. data/test/sepa/nordea_test_keys/nordea.key +19 -0
  78. data/test/sepa/nordea_test_keys/root_cert.cer +0 -0
  79. data/test/sepa/nordea_test_keys/testcert.csr +0 -0
  80. data/test/sepa/response_test.rb +269 -0
  81. data/test/sepa/sepa_test.rb +20 -0
  82. data/test/sepa/test_files/invalid.wsdl +1 -0
  83. data/test/sepa/test_files/test_responses/df.xml +20 -0
  84. data/test/sepa/test_files/test_responses/dfl.xml +20 -0
  85. data/test/sepa/test_files/test_responses/gui.xml +20 -0
  86. data/test/sepa/test_files/test_responses/uf.xml +20 -0
  87. data/test/sepa/user_file_type_test.rb +21 -0
  88. data/test/sepa/xml_parser_test.rb +73 -0
  89. data/test/test_helper.rb +9 -0
  90. metadata +256 -0
@@ -0,0 +1,126 @@
1
+ <?xml version='1.0' encoding='UTF-8' ?>
2
+
3
+ <!-- Schema for the SOAP/1.1 envelope
4
+
5
+ Portions © 2001 DevelopMentor.
6
+ © 2001 W3C (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved.
7
+
8
+ This document is governed by the W3C Software License [1] as described in the FAQ [2].
9
+ [1] http://www.w3.org/Consortium/Legal/copyright-software-19980720
10
+ [2] http://www.w3.org/Consortium/Legal/IPR-FAQ-20000620.html#DTD
11
+ By obtaining, using and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions:
12
+
13
+ Permission to use, copy, modify, and distribute this software and its documentation, with or without modification, for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the software and documentation or portions thereof, including modifications, that you make:
14
+
15
+ 1. The full text of this NOTICE in a location viewable to users of the redistributed or derivative work.
16
+
17
+ 2. Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, a short notice of the following form (hypertext is preferred, text is permitted) should be used within the body of any redistributed or derivative code: "Copyright © 2001 World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved. http://www.w3.org/Consortium/Legal/"
18
+
19
+ 3. Notice of any changes or modifications to the W3C files, including the date changes were made. (We recommend you provide URIs to the location from which the code is derived.)
20
+
21
+ Original W3C files; http://www.w3.org/2001/06/soap-envelope
22
+ Changes made:
23
+ - reverted namespace to http://schemas.xmlsoap.org/soap/envelope/
24
+ - reverted mustUnderstand to only allow 0 and 1 as lexical values
25
+ - made encodingStyle a global attribute 20020825
26
+ - removed default value from mustUnderstand attribute declaration
27
+
28
+ THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
29
+
30
+ COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION.
31
+
32
+ The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the software without specific, written prior permission. Title to copyright in this software and any associated documentation will at all times remain with copyright holders.
33
+
34
+ -->
35
+ <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
36
+ xmlns:tns="http://schemas.xmlsoap.org/soap/envelope/"
37
+ targetNamespace="http://schemas.xmlsoap.org/soap/envelope/" >
38
+
39
+
40
+ <!-- Envelope, header and body -->
41
+ <xs:element name="Envelope" type="tns:Envelope" />
42
+ <xs:complexType name="Envelope" >
43
+ <xs:sequence>
44
+ <xs:element ref="tns:Header" minOccurs="0" />
45
+ <xs:element ref="tns:Body" minOccurs="1" />
46
+ <xs:any namespace="##other" minOccurs="0" maxOccurs="unbounded" processContents="lax" />
47
+ </xs:sequence>
48
+ <xs:anyAttribute namespace="##other" processContents="lax" />
49
+ </xs:complexType>
50
+
51
+ <xs:element name="Header" type="tns:Header" />
52
+ <xs:complexType name="Header" >
53
+ <xs:sequence>
54
+ <xs:any namespace="##other" minOccurs="0" maxOccurs="unbounded" processContents="lax" />
55
+ </xs:sequence>
56
+ <xs:anyAttribute namespace="##other" processContents="lax" />
57
+ </xs:complexType>
58
+
59
+ <xs:element name="Body" type="tns:Body" />
60
+ <xs:complexType name="Body" >
61
+ <xs:sequence>
62
+ <xs:any namespace="##any" minOccurs="0" maxOccurs="unbounded" processContents="lax" />
63
+ </xs:sequence>
64
+ <xs:anyAttribute namespace="##any" processContents="lax" >
65
+ <xs:annotation>
66
+ <xs:documentation>
67
+ Prose in the spec does not specify that attributes are allowed on the Body element
68
+ </xs:documentation>
69
+ </xs:annotation>
70
+ </xs:anyAttribute>
71
+ </xs:complexType>
72
+
73
+
74
+ <!-- Global Attributes. The following attributes are intended to be usable via qualified attribute names on any complex type referencing them. -->
75
+ <xs:attribute name="mustUnderstand" >
76
+ <xs:simpleType>
77
+ <xs:restriction base='xs:boolean'>
78
+ <xs:pattern value='0|1' />
79
+ </xs:restriction>
80
+ </xs:simpleType>
81
+ </xs:attribute>
82
+ <xs:attribute name="actor" type="xs:anyURI" />
83
+
84
+ <xs:simpleType name="encodingStyle" >
85
+ <xs:annotation>
86
+ <xs:documentation>
87
+ 'encodingStyle' indicates any canonicalization conventions followed in the contents of the containing element. For example, the value 'http://schemas.xmlsoap.org/soap/encoding/' indicates the pattern described in SOAP specification
88
+ </xs:documentation>
89
+ </xs:annotation>
90
+ <xs:list itemType="xs:anyURI" />
91
+ </xs:simpleType>
92
+
93
+ <xs:attribute name="encodingStyle" type="tns:encodingStyle" />
94
+ <xs:attributeGroup name="encodingStyle" >
95
+ <xs:attribute ref="tns:encodingStyle" />
96
+ </xs:attributeGroup>
97
+
98
+ <xs:element name="Fault" type="tns:Fault" />
99
+ <xs:complexType name="Fault" final="extension" >
100
+ <xs:annotation>
101
+ <xs:documentation>
102
+ Fault reporting structure
103
+ </xs:documentation>
104
+ </xs:annotation>
105
+ <xs:sequence>
106
+ <xs:element name="faultcode" type="xs:QName" />
107
+ <xs:element name="faultstring" type="xs:string" />
108
+ <xs:element name="faultactor" type="xs:anyURI" minOccurs="0" />
109
+ <xs:element name="detail" type="tns:detail" minOccurs="0" />
110
+ </xs:sequence>
111
+ </xs:complexType>
112
+
113
+ <xs:complexType name="detail">
114
+ <xs:sequence>
115
+ <xs:any namespace="##any" minOccurs="0" maxOccurs="unbounded" processContents="lax" />
116
+ </xs:sequence>
117
+ <xs:anyAttribute namespace="##any" processContents="lax" />
118
+ </xs:complexType>
119
+
120
+ </xs:schema>
121
+
122
+
123
+
124
+
125
+
126
+
@@ -0,0 +1,310 @@
1
+ <?xml version="1.0" encoding="UTF-8" ?>
2
+ <!--
3
+
4
+ Copyright 2001 - 2005, International Business Machines Corporation and Microsoft Corporation
5
+ All Rights Reserved
6
+
7
+ License for WSDL Schema Files
8
+
9
+ The Authors grant permission to copy and distribute the WSDL Schema
10
+ Files in any medium without fee or royalty as long as this notice and
11
+ license are distributed with them. The originals of these files can
12
+ be located at:
13
+
14
+ http://schemas.xmlsoap.org/wsdl/2003-02-11.xsd
15
+
16
+ THESE SCHEMA FILES ARE PROVIDED "AS IS," AND THE AUTHORS MAKE NO REPRESENTATIONS
17
+ OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THESE FILES, INCLUDING, BUT NOT
18
+ LIMITED TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,
19
+ NON-INFRINGEMENT OR TITLE. THE AUTHORS WILL NOT BE LIABLE FOR ANY DIRECT,
20
+ INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR
21
+ RELATING TO ANY USE OR DISTRIBUTION OF THESE FILES.
22
+
23
+ The name and trademarks of the Authors may NOT be used in any manner,
24
+ including advertising or publicity pertaining to these files or any program
25
+ or service that uses these files, written prior permission. Title to copyright
26
+ in these files will at all times remain with the Authors.
27
+
28
+ No other rights are granted by implication, estoppel or otherwise.
29
+
30
+
31
+ -->
32
+ <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
33
+ xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
34
+ targetNamespace="http://schemas.xmlsoap.org/wsdl/"
35
+ elementFormDefault="qualified" >
36
+
37
+ <xs:complexType mixed="true" name="tDocumentation" >
38
+ <xs:sequence>
39
+ <xs:any minOccurs="0" maxOccurs="unbounded" processContents="lax" />
40
+ </xs:sequence>
41
+ </xs:complexType>
42
+
43
+ <xs:complexType name="tDocumented" >
44
+ <xs:annotation>
45
+ <xs:documentation>
46
+ This type is extended by component types to allow them to be documented
47
+ </xs:documentation>
48
+ </xs:annotation>
49
+ <xs:sequence>
50
+ <xs:element name="documentation" type="wsdl:tDocumentation" minOccurs="0" />
51
+ </xs:sequence>
52
+ </xs:complexType>
53
+
54
+ <xs:complexType name="tExtensibleAttributesDocumented" abstract="true" >
55
+ <xs:complexContent>
56
+ <xs:extension base="wsdl:tDocumented" >
57
+ <xs:annotation>
58
+ <xs:documentation>
59
+ This type is extended by component types to allow attributes from other namespaces to be added.
60
+ </xs:documentation>
61
+ </xs:annotation>
62
+ <xs:anyAttribute namespace="##other" processContents="lax" />
63
+ </xs:extension>
64
+ </xs:complexContent>
65
+ </xs:complexType>
66
+
67
+ <xs:complexType name="tExtensibleDocumented" abstract="true" >
68
+ <xs:complexContent>
69
+ <xs:extension base="wsdl:tDocumented" >
70
+ <xs:annotation>
71
+ <xs:documentation>
72
+ This type is extended by component types to allow elements from other namespaces to be added.
73
+ </xs:documentation>
74
+ </xs:annotation>
75
+ <xs:sequence>
76
+ <xs:any namespace="##other" minOccurs="0" maxOccurs="unbounded" processContents="lax" />
77
+ </xs:sequence>
78
+ </xs:extension>
79
+ </xs:complexContent>
80
+ </xs:complexType>
81
+
82
+ <xs:element name="definitions" type="wsdl:tDefinitions" >
83
+ <xs:key name="message" >
84
+ <xs:selector xpath="wsdl:message" />
85
+ <xs:field xpath="@name" />
86
+ </xs:key>
87
+ <xs:key name="portType" >
88
+ <xs:selector xpath="wsdl:portType" />
89
+ <xs:field xpath="@name" />
90
+ </xs:key>
91
+ <xs:key name="binding" >
92
+ <xs:selector xpath="wsdl:binding" />
93
+ <xs:field xpath="@name" />
94
+ </xs:key>
95
+ <xs:key name="service" >
96
+ <xs:selector xpath="wsdl:service" />
97
+ <xs:field xpath="@name" />
98
+ </xs:key>
99
+ <xs:key name="import" >
100
+ <xs:selector xpath="wsdl:import" />
101
+ <xs:field xpath="@namespace" />
102
+ </xs:key>
103
+ </xs:element>
104
+
105
+ <xs:group name="anyTopLevelOptionalElement" >
106
+ <xs:annotation>
107
+ <xs:documentation>
108
+ Any top level optional element allowed to appear more then once - any child of definitions element except wsdl:types. Any extensibility element is allowed in any place.
109
+ </xs:documentation>
110
+ </xs:annotation>
111
+ <xs:choice>
112
+ <xs:element name="import" type="wsdl:tImport" />
113
+ <xs:element name="types" type="wsdl:tTypes" />
114
+ <xs:element name="message" type="wsdl:tMessage" >
115
+ <xs:unique name="part" >
116
+ <xs:selector xpath="wsdl:part" />
117
+ <xs:field xpath="@name" />
118
+ </xs:unique>
119
+ </xs:element>
120
+ <xs:element name="portType" type="wsdl:tPortType" />
121
+ <xs:element name="binding" type="wsdl:tBinding" />
122
+ <xs:element name="service" type="wsdl:tService" >
123
+ <xs:unique name="port" >
124
+ <xs:selector xpath="wsdl:port" />
125
+ <xs:field xpath="@name" />
126
+ </xs:unique>
127
+ </xs:element>
128
+ </xs:choice>
129
+ </xs:group>
130
+
131
+ <xs:complexType name="tDefinitions" >
132
+ <xs:complexContent>
133
+ <xs:extension base="wsdl:tExtensibleDocumented" >
134
+ <xs:sequence>
135
+ <xs:group ref="wsdl:anyTopLevelOptionalElement" minOccurs="0" maxOccurs="unbounded" />
136
+ </xs:sequence>
137
+ <xs:attribute name="targetNamespace" type="xs:anyURI" use="optional" />
138
+ <xs:attribute name="name" type="xs:NCName" use="optional" />
139
+ </xs:extension>
140
+ </xs:complexContent>
141
+ </xs:complexType>
142
+
143
+ <xs:complexType name="tImport" >
144
+ <xs:complexContent>
145
+ <xs:extension base="wsdl:tExtensibleAttributesDocumented" >
146
+ <xs:attribute name="namespace" type="xs:anyURI" use="required" />
147
+ <xs:attribute name="location" type="xs:anyURI" use="required" />
148
+ </xs:extension>
149
+ </xs:complexContent>
150
+ </xs:complexType>
151
+
152
+ <xs:complexType name="tTypes" >
153
+ <xs:complexContent>
154
+ <xs:extension base="wsdl:tExtensibleDocumented" />
155
+ </xs:complexContent>
156
+ </xs:complexType>
157
+
158
+ <xs:complexType name="tMessage" >
159
+ <xs:complexContent>
160
+ <xs:extension base="wsdl:tExtensibleDocumented" >
161
+ <xs:sequence>
162
+ <xs:element name="part" type="wsdl:tPart" minOccurs="0" maxOccurs="unbounded" />
163
+ </xs:sequence>
164
+ <xs:attribute name="name" type="xs:NCName" use="required" />
165
+ </xs:extension>
166
+ </xs:complexContent>
167
+ </xs:complexType>
168
+
169
+ <xs:complexType name="tPart" >
170
+ <xs:complexContent>
171
+ <xs:extension base="wsdl:tExtensibleAttributesDocumented" >
172
+ <xs:attribute name="name" type="xs:NCName" use="required" />
173
+ <xs:attribute name="element" type="xs:QName" use="optional" />
174
+ <xs:attribute name="type" type="xs:QName" use="optional" />
175
+ </xs:extension>
176
+ </xs:complexContent>
177
+ </xs:complexType>
178
+
179
+ <xs:complexType name="tPortType" >
180
+ <xs:complexContent>
181
+ <xs:extension base="wsdl:tExtensibleAttributesDocumented" >
182
+ <xs:sequence>
183
+ <xs:element name="operation" type="wsdl:tOperation" minOccurs="0" maxOccurs="unbounded" />
184
+ </xs:sequence>
185
+ <xs:attribute name="name" type="xs:NCName" use="required" />
186
+ </xs:extension>
187
+ </xs:complexContent>
188
+ </xs:complexType>
189
+
190
+ <xs:complexType name="tOperation" >
191
+ <xs:complexContent>
192
+ <xs:extension base="wsdl:tExtensibleDocumented" >
193
+ <xs:sequence>
194
+ <xs:choice>
195
+ <xs:group ref="wsdl:request-response-or-one-way-operation" />
196
+ <xs:group ref="wsdl:solicit-response-or-notification-operation" />
197
+ </xs:choice>
198
+ </xs:sequence>
199
+ <xs:attribute name="name" type="xs:NCName" use="required" />
200
+ <xs:attribute name="parameterOrder" type="xs:NMTOKENS" use="optional" />
201
+ </xs:extension>
202
+ </xs:complexContent>
203
+ </xs:complexType>
204
+
205
+ <xs:group name="request-response-or-one-way-operation" >
206
+ <xs:sequence>
207
+ <xs:element name="input" type="wsdl:tParam" />
208
+ <xs:sequence minOccurs='0' >
209
+ <xs:element name="output" type="wsdl:tParam" />
210
+ <xs:element name="fault" type="wsdl:tFault" minOccurs="0" maxOccurs="unbounded" />
211
+ </xs:sequence>
212
+ </xs:sequence>
213
+ </xs:group>
214
+
215
+ <xs:group name="solicit-response-or-notification-operation" >
216
+ <xs:sequence>
217
+ <xs:element name="output" type="wsdl:tParam" />
218
+ <xs:sequence minOccurs='0' >
219
+ <xs:element name="input" type="wsdl:tParam" />
220
+ <xs:element name="fault" type="wsdl:tFault" minOccurs="0" maxOccurs="unbounded" />
221
+ </xs:sequence>
222
+ </xs:sequence>
223
+ </xs:group>
224
+
225
+ <xs:complexType name="tParam" >
226
+ <xs:complexContent>
227
+ <xs:extension base="wsdl:tExtensibleAttributesDocumented" >
228
+ <xs:attribute name="name" type="xs:NCName" use="optional" />
229
+ <xs:attribute name="message" type="xs:QName" use="required" />
230
+ </xs:extension>
231
+ </xs:complexContent>
232
+ </xs:complexType>
233
+
234
+ <xs:complexType name="tFault" >
235
+ <xs:complexContent>
236
+ <xs:extension base="wsdl:tExtensibleAttributesDocumented" >
237
+ <xs:attribute name="name" type="xs:NCName" use="required" />
238
+ <xs:attribute name="message" type="xs:QName" use="required" />
239
+ </xs:extension>
240
+ </xs:complexContent>
241
+ </xs:complexType>
242
+
243
+ <xs:complexType name="tBinding" >
244
+ <xs:complexContent>
245
+ <xs:extension base="wsdl:tExtensibleDocumented" >
246
+ <xs:sequence>
247
+ <xs:element name="operation" type="wsdl:tBindingOperation" minOccurs="0" maxOccurs="unbounded" />
248
+ </xs:sequence>
249
+ <xs:attribute name="name" type="xs:NCName" use="required" />
250
+ <xs:attribute name="type" type="xs:QName" use="required" />
251
+ </xs:extension>
252
+ </xs:complexContent>
253
+ </xs:complexType>
254
+
255
+ <xs:complexType name="tBindingOperationMessage" >
256
+ <xs:complexContent>
257
+ <xs:extension base="wsdl:tExtensibleDocumented" >
258
+ <xs:attribute name="name" type="xs:NCName" use="optional" />
259
+ </xs:extension>
260
+ </xs:complexContent>
261
+ </xs:complexType>
262
+
263
+ <xs:complexType name="tBindingOperationFault" >
264
+ <xs:complexContent>
265
+ <xs:extension base="wsdl:tExtensibleDocumented" >
266
+ <xs:attribute name="name" type="xs:NCName" use="required" />
267
+ </xs:extension>
268
+ </xs:complexContent>
269
+ </xs:complexType>
270
+
271
+ <xs:complexType name="tBindingOperation" >
272
+ <xs:complexContent>
273
+ <xs:extension base="wsdl:tExtensibleDocumented" >
274
+ <xs:sequence>
275
+ <xs:element name="input" type="wsdl:tBindingOperationMessage" minOccurs="0" />
276
+ <xs:element name="output" type="wsdl:tBindingOperationMessage" minOccurs="0" />
277
+ <xs:element name="fault" type="wsdl:tBindingOperationFault" minOccurs="0" maxOccurs="unbounded" />
278
+ </xs:sequence>
279
+ <xs:attribute name="name" type="xs:NCName" use="required" />
280
+ </xs:extension>
281
+ </xs:complexContent>
282
+ </xs:complexType>
283
+
284
+ <xs:complexType name="tService" >
285
+ <xs:complexContent>
286
+ <xs:extension base="wsdl:tExtensibleDocumented" >
287
+ <xs:sequence>
288
+ <xs:element name="port" type="wsdl:tPort" minOccurs="0" maxOccurs="unbounded" />
289
+ </xs:sequence>
290
+ <xs:attribute name="name" type="xs:NCName" use="required" />
291
+ </xs:extension>
292
+ </xs:complexContent>
293
+ </xs:complexType>
294
+
295
+ <xs:complexType name="tPort" >
296
+ <xs:complexContent>
297
+ <xs:extension base="wsdl:tExtensibleDocumented" >
298
+ <xs:attribute name="name" type="xs:NCName" use="required" />
299
+ <xs:attribute name="binding" type="xs:QName" use="required" />
300
+ </xs:extension>
301
+ </xs:complexContent>
302
+ </xs:complexType>
303
+
304
+ <xs:attribute name="arrayType" type="xs:string" />
305
+ <xs:attribute name="required" type="xs:boolean" />
306
+ <xs:complexType name="tExtensibilityElement" abstract="true" >
307
+ <xs:attribute ref="wsdl:required" use="optional" />
308
+ </xs:complexType>
309
+
310
+ </xs:schema>