TodoPagoConectorSS 1.8.0 → 1.8.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/issue_template.md +34 -0
- data/.gitignore +37 -0
- data/README.md +1553 -0
- data/TodoPago/DataProvider.rb +273 -0
- data/TodoPago/DiscoverPaymentMethodsTest.rb +71 -0
- data/TodoPago/GetAuthorizeAnswerTest.rb +61 -0
- data/TodoPago/GetCredentialsTest.rb +70 -0
- data/TodoPago/GetOperationsTest.rb +72 -0
- data/TodoPago/MockClient.rb +195 -0
- data/TodoPago/ReturnRequestTest.rb +64 -0
- data/TodoPago/SendAuthorizeRequestTest.rb +63 -0
- data/TodoPago/coverage/.last_run.json +5 -0
- data/TodoPago/coverage/.resultset.json +892 -0
- data/TodoPago/coverage/.resultset.json.lock +0 -0
- data/TodoPago/coverage/assets/0.10.0/application.css +799 -0
- data/TodoPago/coverage/assets/0.10.0/application.js +1707 -0
- data/TodoPago/coverage/assets/0.10.0/colorbox/border.png +0 -0
- data/TodoPago/coverage/assets/0.10.0/colorbox/controls.png +0 -0
- data/TodoPago/coverage/assets/0.10.0/colorbox/loading.gif +0 -0
- data/TodoPago/coverage/assets/0.10.0/colorbox/loading_background.png +0 -0
- data/TodoPago/coverage/assets/0.10.0/favicon_green.png +0 -0
- data/TodoPago/coverage/assets/0.10.0/favicon_red.png +0 -0
- data/TodoPago/coverage/assets/0.10.0/favicon_yellow.png +0 -0
- data/TodoPago/coverage/assets/0.10.0/loading.gif +0 -0
- data/TodoPago/coverage/assets/0.10.0/magnify.png +0 -0
- data/TodoPago/coverage/assets/0.10.0/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/TodoPago/coverage/assets/0.10.0/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/TodoPago/coverage/assets/0.10.0/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/TodoPago/coverage/assets/0.10.0/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/TodoPago/coverage/assets/0.10.0/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/TodoPago/coverage/assets/0.10.0/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/TodoPago/coverage/assets/0.10.0/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/TodoPago/coverage/assets/0.10.0/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/TodoPago/coverage/assets/0.10.0/smoothness/images/ui-icons_222222_256x240.png +0 -0
- data/TodoPago/coverage/assets/0.10.0/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
- data/TodoPago/coverage/assets/0.10.0/smoothness/images/ui-icons_454545_256x240.png +0 -0
- data/TodoPago/coverage/assets/0.10.0/smoothness/images/ui-icons_888888_256x240.png +0 -0
- data/TodoPago/coverage/assets/0.10.0/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/TodoPago/coverage/index.html +5510 -0
- data/TodoPago/test.rb +203 -0
- data/TodoPago/test_validations.rb +108 -0
- data/TodoPago/tests_coverage.rb +11 -0
- data/TodoPagoConector.gemspec +14 -0
- data/lib/Authorize.wsdl +320 -0
- data/lib/Classes/user.rb +30 -0
- data/lib/Connectors/RestConnector.rb +65 -0
- data/lib/Connectors/ServiceConnector.rb +32 -0
- data/lib/Connectors/SoapConnector.rb +139 -0
- data/lib/Exceptions/connection_exception.rb +6 -0
- data/lib/Exceptions/empty_field_exception.rb +6 -0
- data/lib/Exceptions/empty_field_password_exception.rb +8 -0
- data/lib/Exceptions/empty_field_user_exception.rb +8 -0
- data/lib/Exceptions/prueba.rb +5 -0
- data/lib/Exceptions/response_exception.rb +6 -0
- data/lib/FraudControlValidation.rb +406 -0
- data/lib/Operations.wsdl +319 -0
- data/lib/ServiceReferences/Authorize.wsdl +320 -0
- data/lib/ServiceReferences/EchoService.wsdl +125 -0
- data/lib/ServiceReferences/Operations.wsdl +319 -0
- data/lib/Validation/FraudControlValidation.rb +406 -0
- data/lib/config/postalCodes.json +26 -0
- data/lib/config/validations.json +623 -0
- data/lib/prueba.rb +4 -0
- data/lib/user.rb +41 -0
- metadata +65 -1
data/lib/Operations.wsdl
ADDED
@@ -0,0 +1,319 @@
|
|
1
|
+
<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:ns1="http://ws.wso2.org/dataservice" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:ns0="http://api.todopago.com.ar" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" targetNamespace="http://api.todopago.com.ar">
|
2
|
+
<wsdl:documentation>Servicio de Consulta de Operaciones o Transacciones </wsdl:documentation>
|
3
|
+
<wsdl:types>
|
4
|
+
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://api.todopago.com.ar">
|
5
|
+
<xs:element name="GetByRangeDateTime">
|
6
|
+
<xs:complexType>
|
7
|
+
<xs:sequence>
|
8
|
+
<xs:element name="MERCHANT" nillable="true" type="xs:string"/>
|
9
|
+
<xs:element name="STARTDATE" nillable="true" type="xs:date"/>
|
10
|
+
<xs:element name="ENDDATE" nillable="true" type="xs:date"/>
|
11
|
+
</xs:sequence>
|
12
|
+
</xs:complexType>
|
13
|
+
</xs:element>
|
14
|
+
<xs:element name="OperationsColections" type="ns0:OperationsColections"/>
|
15
|
+
<xs:complexType name="OperationsColections">
|
16
|
+
<xs:sequence>
|
17
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="Operations" type="ns0:Operations"/>
|
18
|
+
</xs:sequence>
|
19
|
+
</xs:complexType>
|
20
|
+
<xs:complexType name="Operations">
|
21
|
+
<xs:sequence>
|
22
|
+
<xs:element name="RESULTCODE" nillable="true" type="xs:string"/>
|
23
|
+
<xs:element name="RESULTMESSAGE" nillable="true" type="xs:string"/>
|
24
|
+
<xs:element name="DATETIME" nillable="true" type="xs:dateTime"/>
|
25
|
+
<xs:element name="OPERATIONID" nillable="true" type="xs:string"/>
|
26
|
+
<xs:element name="CURRENCYCODE" nillable="true" type="xs:string"/>
|
27
|
+
<xs:element name="AMOUNT" nillable="true" type="xs:float"/>
|
28
|
+
<xs:element name="AMOUNTBUYER" nillable="true" type="xs:float"/>
|
29
|
+
<xs:element name="BANKID" nillable="true" type="xs:float"/>
|
30
|
+
<xs:element name="PROMOTIONID" nillable="true" type="xs:float"/>
|
31
|
+
<xs:element name="TYPE" nillable="true" type="xs:string"/>
|
32
|
+
<xs:element name="INSTALLMENTPAYMENTS" nillable="true" type="xs:string"/>
|
33
|
+
<xs:element name="CUSTOMEREMAIL" nillable="true" type="xs:string"/>
|
34
|
+
<xs:element name="IDENTIFICATIONTYPE" nillable="true" type="xs:string"/>
|
35
|
+
<xs:element name="IDENTIFICATION" nillable="true" type="xs:string"/>
|
36
|
+
<xs:element name="CARDNUMBER" nillable="true" type="xs:string"/>
|
37
|
+
<xs:element name="CARDHOLDERNAME" nillable="true" type="xs:string"/>
|
38
|
+
<xs:element name="TICKETNUMBER" nillable="true" type="xs:integer"/>
|
39
|
+
<xs:element name="AUTHORIZATIONCODE" nillable="true" type="xs:string"/>
|
40
|
+
<xs:element name="BARCODE" nillable="true" type="xs:string"/>
|
41
|
+
<xs:element name="COUPONEXPDATE" nillable="true" type="xs:string"/>
|
42
|
+
<xs:element name="COUPONSECEXPDATE" nillable="true" type="xs:string"/>
|
43
|
+
<xs:element name="COUPONSUBSCRIBER" nillable="true" type="xs:string"/>
|
44
|
+
<xs:element name="PAYMENTMETHODCODE" nillable="true" type="xs:string"/>
|
45
|
+
<xs:element name="PAYMENTMETHODNAME" nillable="true" type="xs:string"/>
|
46
|
+
<xs:element name="PAYMENTMETHODTYPE" nillable="true" type="xs:string"/>
|
47
|
+
<xs:element name="REFUNDED" nillable="true" type="xs:string"/>
|
48
|
+
</xs:sequence>
|
49
|
+
</xs:complexType>
|
50
|
+
<xs:element name="GetByOperationId">
|
51
|
+
<xs:complexType>
|
52
|
+
<xs:sequence>
|
53
|
+
<xs:element name="MERCHANT" nillable="true" type="xs:string"/>
|
54
|
+
<xs:element name="OPERATIONID" nillable="true" type="xs:string"/>
|
55
|
+
</xs:sequence>
|
56
|
+
</xs:complexType>
|
57
|
+
</xs:element>
|
58
|
+
<xs:element name="_getgetbyoperationid">
|
59
|
+
<xs:complexType>
|
60
|
+
<xs:sequence>
|
61
|
+
<xs:element name="MERCHANT" nillable="true" type="xs:string"/>
|
62
|
+
<xs:element name="OPERATIONID" nillable="true" type="xs:string"/>
|
63
|
+
</xs:sequence>
|
64
|
+
</xs:complexType>
|
65
|
+
</xs:element>
|
66
|
+
<xs:element name="_getgetbyrangedatetime">
|
67
|
+
<xs:complexType>
|
68
|
+
<xs:sequence>
|
69
|
+
<xs:element name="MERCHANT" nillable="true" type="xs:string"/>
|
70
|
+
<xs:element name="STARTDATE" nillable="true" type="xs:date"/>
|
71
|
+
<xs:element name="ENDDATE" nillable="true" type="xs:date"/>
|
72
|
+
</xs:sequence>
|
73
|
+
</xs:complexType>
|
74
|
+
</xs:element>
|
75
|
+
</xs:schema>
|
76
|
+
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://ws.wso2.org/dataservice">
|
77
|
+
<xs:element name="DataServiceFault">
|
78
|
+
<xs:complexType>
|
79
|
+
<xs:sequence>
|
80
|
+
<xs:element name="current_params" type="xs:string"/>
|
81
|
+
<xs:element name="current_request_name" type="xs:string"/>
|
82
|
+
<xs:element name="nested_exception" type="xs:string"/>
|
83
|
+
<xs:element name="source_data_service">
|
84
|
+
<xs:complexType>
|
85
|
+
<xs:sequence>
|
86
|
+
<xs:element name="location" type="xs:string"/>
|
87
|
+
<xs:element name="default_namespace" type="xs:string"/>
|
88
|
+
<xs:element name="description" type="xs:string"/>
|
89
|
+
<xs:element name="data_service_name" type="xs:string"/>
|
90
|
+
</xs:sequence>
|
91
|
+
</xs:complexType>
|
92
|
+
</xs:element>
|
93
|
+
<xs:element name="ds_code" type="xs:string"/>
|
94
|
+
</xs:sequence>
|
95
|
+
</xs:complexType>
|
96
|
+
</xs:element>
|
97
|
+
<xs:element name="REQUEST_STATUS" type="xs:string"/>
|
98
|
+
<xs:element name="DATA_SERVICE_RESPONSE">
|
99
|
+
<xs:complexType>
|
100
|
+
<xs:sequence>
|
101
|
+
<xs:any minOccurs="0"/>
|
102
|
+
</xs:sequence>
|
103
|
+
</xs:complexType>
|
104
|
+
</xs:element>
|
105
|
+
</xs:schema>
|
106
|
+
</wsdl:types>
|
107
|
+
<wsdl:message name="_getgetbyrangedatetimeRequest">
|
108
|
+
<wsdl:part name="parameters" element="ns0:_getgetbyrangedatetime"/>
|
109
|
+
</wsdl:message>
|
110
|
+
<wsdl:message name="_getgetbyrangedatetimeResponse">
|
111
|
+
<wsdl:part name="parameters" element="ns0:OperationsColections"/>
|
112
|
+
</wsdl:message>
|
113
|
+
<wsdl:message name="DataServiceFault">
|
114
|
+
<wsdl:part name="parameters" element="ns1:DataServiceFault"/>
|
115
|
+
</wsdl:message>
|
116
|
+
<wsdl:message name="GetByRangeDateTimeRequest">
|
117
|
+
<wsdl:part name="parameters" element="ns0:GetByRangeDateTime"/>
|
118
|
+
</wsdl:message>
|
119
|
+
<wsdl:message name="GetByRangeDateTimeResponse">
|
120
|
+
<wsdl:part name="parameters" element="ns0:OperationsColections"/>
|
121
|
+
</wsdl:message>
|
122
|
+
<wsdl:message name="GetByOperationIdRequest">
|
123
|
+
<wsdl:part name="parameters" element="ns0:GetByOperationId"/>
|
124
|
+
</wsdl:message>
|
125
|
+
<wsdl:message name="GetByOperationIdResponse">
|
126
|
+
<wsdl:part name="parameters" element="ns0:OperationsColections"/>
|
127
|
+
</wsdl:message>
|
128
|
+
<wsdl:message name="_getgetbyoperationidRequest">
|
129
|
+
<wsdl:part name="parameters" element="ns0:_getgetbyoperationid"/>
|
130
|
+
</wsdl:message>
|
131
|
+
<wsdl:message name="_getgetbyoperationidResponse">
|
132
|
+
<wsdl:part name="parameters" element="ns0:OperationsColections"/>
|
133
|
+
</wsdl:message>
|
134
|
+
<wsdl:portType name="OperationsPortType">
|
135
|
+
<wsdl:operation name="_getgetbyrangedatetime">
|
136
|
+
<wsdl:input message="ns0:_getgetbyrangedatetimeRequest" wsaw:Action="urn:_getgetbyrangedatetime"/>
|
137
|
+
<wsdl:output message="ns0:_getgetbyrangedatetimeResponse" wsaw:Action="urn:_getgetbyrangedatetimeResponse"/>
|
138
|
+
<wsdl:fault message="ns0:DataServiceFault" name="DataServiceFault" wsaw:Action="urn:_getgetbyrangedatetimeDataServiceFault"/>
|
139
|
+
</wsdl:operation>
|
140
|
+
<wsdl:operation name="GetByRangeDateTime">
|
141
|
+
<wsdl:documentation>Consulta por Comercio y Fecha de Creacion</wsdl:documentation>
|
142
|
+
<wsdl:input message="ns0:GetByRangeDateTimeRequest" wsaw:Action="urn:GetByRangeDateTime"/>
|
143
|
+
<wsdl:output message="ns0:GetByRangeDateTimeResponse" wsaw:Action="urn:GetByRangeDateTimeResponse"/>
|
144
|
+
<wsdl:fault message="ns0:DataServiceFault" name="DataServiceFault" wsaw:Action="urn:GetByRangeDateTimeDataServiceFault"/>
|
145
|
+
</wsdl:operation>
|
146
|
+
<wsdl:operation name="GetByOperationId">
|
147
|
+
<wsdl:documentation>Consulta por id De Operacion y Comercio</wsdl:documentation>
|
148
|
+
<wsdl:input message="ns0:GetByOperationIdRequest" wsaw:Action="urn:GetByOperationId"/>
|
149
|
+
<wsdl:output message="ns0:GetByOperationIdResponse" wsaw:Action="urn:GetByOperationIdResponse"/>
|
150
|
+
<wsdl:fault message="ns0:DataServiceFault" name="DataServiceFault" wsaw:Action="urn:GetByOperationIdDataServiceFault"/>
|
151
|
+
</wsdl:operation>
|
152
|
+
<wsdl:operation name="_getgetbyoperationid">
|
153
|
+
<wsdl:input message="ns0:_getgetbyoperationidRequest" wsaw:Action="urn:_getgetbyoperationid"/>
|
154
|
+
<wsdl:output message="ns0:_getgetbyoperationidResponse" wsaw:Action="urn:_getgetbyoperationidResponse"/>
|
155
|
+
<wsdl:fault message="ns0:DataServiceFault" name="DataServiceFault" wsaw:Action="urn:_getgetbyoperationidDataServiceFault"/>
|
156
|
+
</wsdl:operation>
|
157
|
+
</wsdl:portType>
|
158
|
+
<wsdl:binding name="OperationsSoap11Binding" type="ns0:OperationsPortType">
|
159
|
+
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
|
160
|
+
<wsdl:operation name="_getgetbyrangedatetime">
|
161
|
+
<soap:operation soapAction="urn:_getgetbyrangedatetime" style="document"/>
|
162
|
+
<wsdl:input>
|
163
|
+
<soap:body use="literal"/>
|
164
|
+
</wsdl:input>
|
165
|
+
<wsdl:output>
|
166
|
+
<soap:body use="literal"/>
|
167
|
+
</wsdl:output>
|
168
|
+
<wsdl:fault name="DataServiceFault">
|
169
|
+
<soap:fault use="literal" name="DataServiceFault"/>
|
170
|
+
</wsdl:fault>
|
171
|
+
</wsdl:operation>
|
172
|
+
<wsdl:operation name="GetByRangeDateTime">
|
173
|
+
<soap:operation soapAction="urn:GetByRangeDateTime" style="document"/>
|
174
|
+
<wsdl:input>
|
175
|
+
<soap:body use="literal"/>
|
176
|
+
</wsdl:input>
|
177
|
+
<wsdl:output>
|
178
|
+
<soap:body use="literal"/>
|
179
|
+
</wsdl:output>
|
180
|
+
<wsdl:fault name="DataServiceFault">
|
181
|
+
<soap:fault use="literal" name="DataServiceFault"/>
|
182
|
+
</wsdl:fault>
|
183
|
+
</wsdl:operation>
|
184
|
+
<wsdl:operation name="GetByOperationId">
|
185
|
+
<soap:operation soapAction="urn:GetByOperationId" style="document"/>
|
186
|
+
<wsdl:input>
|
187
|
+
<soap:body use="literal"/>
|
188
|
+
</wsdl:input>
|
189
|
+
<wsdl:output>
|
190
|
+
<soap:body use="literal"/>
|
191
|
+
</wsdl:output>
|
192
|
+
<wsdl:fault name="DataServiceFault">
|
193
|
+
<soap:fault use="literal" name="DataServiceFault"/>
|
194
|
+
</wsdl:fault>
|
195
|
+
</wsdl:operation>
|
196
|
+
<wsdl:operation name="_getgetbyoperationid">
|
197
|
+
<soap:operation soapAction="urn:_getgetbyoperationid" style="document"/>
|
198
|
+
<wsdl:input>
|
199
|
+
<soap:body use="literal"/>
|
200
|
+
</wsdl:input>
|
201
|
+
<wsdl:output>
|
202
|
+
<soap:body use="literal"/>
|
203
|
+
</wsdl:output>
|
204
|
+
<wsdl:fault name="DataServiceFault">
|
205
|
+
<soap:fault use="literal" name="DataServiceFault"/>
|
206
|
+
</wsdl:fault>
|
207
|
+
</wsdl:operation>
|
208
|
+
</wsdl:binding>
|
209
|
+
<wsdl:binding name="OperationsSoap12Binding" type="ns0:OperationsPortType">
|
210
|
+
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
|
211
|
+
<wsdl:operation name="_getgetbyrangedatetime">
|
212
|
+
<soap12:operation soapAction="urn:_getgetbyrangedatetime" style="document"/>
|
213
|
+
<wsdl:input>
|
214
|
+
<soap12:body use="literal"/>
|
215
|
+
</wsdl:input>
|
216
|
+
<wsdl:output>
|
217
|
+
<soap12:body use="literal"/>
|
218
|
+
</wsdl:output>
|
219
|
+
<wsdl:fault name="DataServiceFault">
|
220
|
+
<soap12:fault use="literal" name="DataServiceFault"/>
|
221
|
+
</wsdl:fault>
|
222
|
+
</wsdl:operation>
|
223
|
+
<wsdl:operation name="GetByRangeDateTime">
|
224
|
+
<soap12:operation soapAction="urn:GetByRangeDateTime" style="document"/>
|
225
|
+
<wsdl:input>
|
226
|
+
<soap12:body use="literal"/>
|
227
|
+
</wsdl:input>
|
228
|
+
<wsdl:output>
|
229
|
+
<soap12:body use="literal"/>
|
230
|
+
</wsdl:output>
|
231
|
+
<wsdl:fault name="DataServiceFault">
|
232
|
+
<soap12:fault use="literal" name="DataServiceFault"/>
|
233
|
+
</wsdl:fault>
|
234
|
+
</wsdl:operation>
|
235
|
+
<wsdl:operation name="GetByOperationId">
|
236
|
+
<soap12:operation soapAction="urn:GetByOperationId" style="document"/>
|
237
|
+
<wsdl:input>
|
238
|
+
<soap12:body use="literal"/>
|
239
|
+
</wsdl:input>
|
240
|
+
<wsdl:output>
|
241
|
+
<soap12:body use="literal"/>
|
242
|
+
</wsdl:output>
|
243
|
+
<wsdl:fault name="DataServiceFault">
|
244
|
+
<soap12:fault use="literal" name="DataServiceFault"/>
|
245
|
+
</wsdl:fault>
|
246
|
+
</wsdl:operation>
|
247
|
+
<wsdl:operation name="_getgetbyoperationid">
|
248
|
+
<soap12:operation soapAction="urn:_getgetbyoperationid" style="document"/>
|
249
|
+
<wsdl:input>
|
250
|
+
<soap12:body use="literal"/>
|
251
|
+
</wsdl:input>
|
252
|
+
<wsdl:output>
|
253
|
+
<soap12:body use="literal"/>
|
254
|
+
</wsdl:output>
|
255
|
+
<wsdl:fault name="DataServiceFault">
|
256
|
+
<soap12:fault use="literal" name="DataServiceFault"/>
|
257
|
+
</wsdl:fault>
|
258
|
+
</wsdl:operation>
|
259
|
+
</wsdl:binding>
|
260
|
+
<wsdl:binding name="OperationsHttpBinding" type="ns0:OperationsPortType">
|
261
|
+
<http:binding verb="POST"/>
|
262
|
+
<wsdl:operation name="_getgetbyrangedatetime">
|
263
|
+
<http:operation location="_getgetbyrangedatetime"/>
|
264
|
+
<wsdl:input>
|
265
|
+
<mime:content type="text/xml" part="parameters"/>
|
266
|
+
</wsdl:input>
|
267
|
+
<wsdl:output>
|
268
|
+
<mime:content type="text/xml" part="parameters"/>
|
269
|
+
</wsdl:output>
|
270
|
+
</wsdl:operation>
|
271
|
+
<wsdl:operation name="GetByRangeDateTime">
|
272
|
+
<http:operation location="GetByRangeDateTime"/>
|
273
|
+
<wsdl:input>
|
274
|
+
<mime:content type="text/xml" part="parameters"/>
|
275
|
+
</wsdl:input>
|
276
|
+
<wsdl:output>
|
277
|
+
<mime:content type="text/xml" part="parameters"/>
|
278
|
+
</wsdl:output>
|
279
|
+
</wsdl:operation>
|
280
|
+
<wsdl:operation name="GetByOperationId">
|
281
|
+
<http:operation location="GetByOperationId"/>
|
282
|
+
<wsdl:input>
|
283
|
+
<mime:content type="text/xml" part="parameters"/>
|
284
|
+
</wsdl:input>
|
285
|
+
<wsdl:output>
|
286
|
+
<mime:content type="text/xml" part="parameters"/>
|
287
|
+
</wsdl:output>
|
288
|
+
</wsdl:operation>
|
289
|
+
<wsdl:operation name="_getgetbyoperationid">
|
290
|
+
<http:operation location="_getgetbyoperationid"/>
|
291
|
+
<wsdl:input>
|
292
|
+
<mime:content type="text/xml" part="parameters"/>
|
293
|
+
</wsdl:input>
|
294
|
+
<wsdl:output>
|
295
|
+
<mime:content type="text/xml" part="parameters"/>
|
296
|
+
</wsdl:output>
|
297
|
+
</wsdl:operation>
|
298
|
+
</wsdl:binding>
|
299
|
+
<wsdl:service name="Operations">
|
300
|
+
<wsdl:port name="OperationsHttpsSoap11Endpoint" binding="ns0:OperationsSoap11Binding">
|
301
|
+
<soap:address location="https://10.123.4.121:8243/services/t/1.1/Operations.OperationsHttpsSoap11Endpoint"/>
|
302
|
+
</wsdl:port>
|
303
|
+
<wsdl:port name="OperationsHttpSoap11Endpoint" binding="ns0:OperationsSoap11Binding">
|
304
|
+
<soap:address location="http://10.123.4.121:8280/services/t/1.1/Operations.OperationsHttpSoap11Endpoint"/>
|
305
|
+
</wsdl:port>
|
306
|
+
<wsdl:port name="OperationsHttpsSoap12Endpoint" binding="ns0:OperationsSoap12Binding">
|
307
|
+
<soap12:address location="https://10.123.4.121:8243/services/t/1.1/Operations.OperationsHttpsSoap12Endpoint"/>
|
308
|
+
</wsdl:port>
|
309
|
+
<wsdl:port name="OperationsHttpSoap12Endpoint" binding="ns0:OperationsSoap12Binding">
|
310
|
+
<soap12:address location="http://10.123.4.121:8280/services/t/1.1/Operations.OperationsHttpSoap12Endpoint"/>
|
311
|
+
</wsdl:port>
|
312
|
+
<wsdl:port name="OperationsHttpsEndpoint" binding="ns0:OperationsHttpBinding">
|
313
|
+
<http:address location="https://10.123.4.121:8243/services/t/1.1/Operations.OperationsHttpsEndpoint"/>
|
314
|
+
</wsdl:port>
|
315
|
+
<wsdl:port name="OperationsHttpEndpoint" binding="ns0:OperationsHttpBinding">
|
316
|
+
<http:address location="http://10.123.4.121:8280/services/t/1.1/Operations.OperationsHttpEndpoint"/>
|
317
|
+
</wsdl:port>
|
318
|
+
</wsdl:service>
|
319
|
+
</wsdl:definitions>
|
@@ -0,0 +1,320 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
|
3
|
+
xmlns="http://schemas.xmlsoap.org/wsdl/"
|
4
|
+
xmlns:ns="http://api.todopago.com.ar"
|
5
|
+
xmlns:SOAP="http://schemas.xmlsoap.org/wsdl/soap/"
|
6
|
+
xmlns:MIME="http://schemas.xmlsoap.org/wsdl/mime/"
|
7
|
+
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
|
8
|
+
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
|
9
|
+
xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl"
|
10
|
+
xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
|
11
|
+
xmlns:tns="http://api.todopago.com.ar"
|
12
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
13
|
+
xmlns:WSDL="http://schemas.xmlsoap.org/wsdl/"
|
14
|
+
xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
|
15
|
+
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
|
16
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
17
|
+
xmlns:DIME="http://schemas.xmlsoap.org/ws/2002/04/dime/wsdl/"
|
18
|
+
xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
|
19
|
+
targetNamespace="http://api.todopago.com.ar">
|
20
|
+
<wsdl:types>
|
21
|
+
<schema xmlns="http://www.w3.org/2001/XMLSchema"
|
22
|
+
attributeFormDefault="unqualified"
|
23
|
+
elementFormDefault="qualified"
|
24
|
+
targetNamespace="http://api.todopago.com.ar">
|
25
|
+
<import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
|
26
|
+
<element name="SendAuthorizeRequest">
|
27
|
+
<complexType>
|
28
|
+
<sequence>
|
29
|
+
<element name="Security" type="string"/>
|
30
|
+
<element name="Session" type="string" minOccurs="0" nillable="true"/>
|
31
|
+
<element name="Merchant" type="string"/>
|
32
|
+
<element name="URL_OK" type="string" minOccurs="0" nillable="true"/>
|
33
|
+
<element name="URL_ERROR" type="string" minOccurs="0" nillable="true"/>
|
34
|
+
<element name="EncodingMethod"
|
35
|
+
type="string"
|
36
|
+
minOccurs="0"
|
37
|
+
nillable="true"/>
|
38
|
+
<element name="Payload" type="anyType" minOccurs="0" nillable="true"/>
|
39
|
+
</sequence>
|
40
|
+
</complexType>
|
41
|
+
</element>
|
42
|
+
<element name="SendAuthorizeRequestResponse">
|
43
|
+
<complexType>
|
44
|
+
<sequence>
|
45
|
+
<element name="StatusCode" type="int"/>
|
46
|
+
<element name="StatusMessage"
|
47
|
+
type="string"
|
48
|
+
minOccurs="0"
|
49
|
+
nillable="true"/>
|
50
|
+
<element name="URL_Request" type="string" minOccurs="0" nillable="true"/>
|
51
|
+
<element name="RequestKey" type="string" minOccurs="0" nillable="true"/>
|
52
|
+
<element name="PublicRequestKey" type="string" minOccurs="0" nillable="true"/>
|
53
|
+
</sequence>
|
54
|
+
</complexType>
|
55
|
+
</element>
|
56
|
+
<element name="GetAuthorizeAnswer">
|
57
|
+
<complexType>
|
58
|
+
<sequence>
|
59
|
+
<element name="Security" type="string"/>
|
60
|
+
<element name="Session" type="string" minOccurs="0" nillable="true"/>
|
61
|
+
<element name="Merchant" type="string"/>
|
62
|
+
<element name="RequestKey" type="string" minOccurs="0" nillable="true"/>
|
63
|
+
<element name="AnswerKey" type="string" minOccurs="0" nillable="true"/>
|
64
|
+
</sequence>
|
65
|
+
</complexType>
|
66
|
+
</element>
|
67
|
+
<element name="GetAuthorizeAnswerResponse">
|
68
|
+
<complexType>
|
69
|
+
<sequence>
|
70
|
+
<element name="StatusCode" type="int"/>
|
71
|
+
<element name="StatusMessage"
|
72
|
+
type="string"
|
73
|
+
minOccurs="0"
|
74
|
+
nillable="true"/>
|
75
|
+
<element name="AuthorizationKey"
|
76
|
+
type="string"
|
77
|
+
minOccurs="0"
|
78
|
+
nillable="true"/>
|
79
|
+
<element name="EncodingMethod"
|
80
|
+
type="string"
|
81
|
+
minOccurs="0"
|
82
|
+
nillable="true"/>
|
83
|
+
<element name="Payload" type="anyType" minOccurs="0" nillable="true"/>
|
84
|
+
</sequence>
|
85
|
+
</complexType>
|
86
|
+
</element>
|
87
|
+
<element name="VoidRequest">
|
88
|
+
<complexType>
|
89
|
+
<sequence>
|
90
|
+
<element name="Security" type="string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
91
|
+
<element name="Merchant" type="string" minOccurs="1" maxOccurs="1" nillable="false"/>
|
92
|
+
<element name="Channel" type="string" minOccurs="1" maxOccurs="1" nillable="false"/>
|
93
|
+
<element name="AuthorizationKey" type="string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
94
|
+
<element name="RequestKey" type="string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
95
|
+
</sequence>
|
96
|
+
</complexType>
|
97
|
+
</element>
|
98
|
+
<element name="VoidResponse">
|
99
|
+
<complexType>
|
100
|
+
<sequence>
|
101
|
+
<element name="StatusCode" type="int" minOccurs="1" maxOccurs="1" nillable="false"/>
|
102
|
+
<element name="StatusMessage" type="string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
103
|
+
<element name="AuthorizationKey" type="string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
104
|
+
<element name="AUTHORIZATIONCODE" type="string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
105
|
+
</sequence>
|
106
|
+
</complexType>
|
107
|
+
</element>
|
108
|
+
<element name="ReturnRequest">
|
109
|
+
<complexType>
|
110
|
+
<sequence>
|
111
|
+
<element name="Security" type="string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
112
|
+
<element name="Merchant" type="string" minOccurs="1" maxOccurs="1" nillable="false"/>
|
113
|
+
<element name="Channel" type="string" minOccurs="1" maxOccurs="1" nillable="false"/>
|
114
|
+
<element name="AuthorizationKey" type="string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
115
|
+
<element name="RequestKey" type="string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
116
|
+
<element name="CURRENCYCODE" type="string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
117
|
+
<element name="AMOUNT" type="float" minOccurs="0" maxOccurs="1" nillable="true"/>
|
118
|
+
</sequence>
|
119
|
+
</complexType>
|
120
|
+
</element>
|
121
|
+
<element name="ReturnResponse">
|
122
|
+
<complexType>
|
123
|
+
<sequence>
|
124
|
+
<element name="StatusCode" type="int" minOccurs="1" maxOccurs="1" nillable="false"/>
|
125
|
+
<element name="StatusMessage" type="string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
126
|
+
<element name="AuthorizationKey" type="string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
127
|
+
<element name="AUTHORIZATIONCODE" type="string" minOccurs="0" maxOccurs="1" nillable="true"/>
|
128
|
+
</sequence>
|
129
|
+
</complexType>
|
130
|
+
</element>
|
131
|
+
</schema>
|
132
|
+
</wsdl:types>
|
133
|
+
<wsdl:message name="GetAuthorizeAnswer">
|
134
|
+
<wsdl:part name="parameters" element="ns:GetAuthorizeAnswer"/>
|
135
|
+
</wsdl:message>
|
136
|
+
<wsdl:message name="GetAuthorizeAnswerResponse">
|
137
|
+
<wsdl:part name="parameters" element="ns:GetAuthorizeAnswerResponse"/>
|
138
|
+
</wsdl:message>
|
139
|
+
<wsdl:message name="SendAuthorizeRequest">
|
140
|
+
<wsdl:part name="parameters" element="ns:SendAuthorizeRequest"/>
|
141
|
+
</wsdl:message>
|
142
|
+
<wsdl:message name="SendAuthorizeRequestResponse">
|
143
|
+
<wsdl:part name="parameters" element="ns:SendAuthorizeRequestResponse"/>
|
144
|
+
</wsdl:message>
|
145
|
+
<wsdl:message name="VoidRequest">
|
146
|
+
<wsdl:part name="parameters" element="ns:VoidRequest"/>
|
147
|
+
</wsdl:message>
|
148
|
+
<wsdl:message name="VoidResponse">
|
149
|
+
<wsdl:part name="parameters" element="ns:VoidResponse"/>
|
150
|
+
</wsdl:message>
|
151
|
+
<wsdl:message name="ReturnRequest">
|
152
|
+
<wsdl:part name="parameters" element="ns:ReturnRequest"/>
|
153
|
+
</wsdl:message>
|
154
|
+
<wsdl:message name="ReturnResponse">
|
155
|
+
<wsdl:part name="parameters" element="ns:ReturnResponse"/>
|
156
|
+
</wsdl:message>
|
157
|
+
<wsdl:portType name="AuthorizePortType">
|
158
|
+
<wsdl:operation name="GetAuthorizeAnswer">
|
159
|
+
<wsdl:documentation>Service definition of Operation GetAuthorizeAnswer: Utilizada para recuerar los datos de la Respuesta de la Autorizacion en el Caso de Clientes no PCI</wsdl:documentation>
|
160
|
+
<wsdl:input message="ns:GetAuthorizeAnswer"/>
|
161
|
+
<wsdl:output message="ns:GetAuthorizeAnswerResponse"
|
162
|
+
wsaw:Action="//api.todopago.com.ar/AuthorizePortType/GetAuthorizeAnswerResponse"/>
|
163
|
+
</wsdl:operation>
|
164
|
+
<wsdl:operation name="SendAuthorizeRequest">
|
165
|
+
<wsdl:documentation>Service definition of Operation SendAuthorizeRequest: Utilizada para enviar los datos que se utilizaran en el requerimiento de Autorizacion, para Clientes PCI</wsdl:documentation>
|
166
|
+
<wsdl:input message="ns:SendAuthorizeRequest"/>
|
167
|
+
<wsdl:output message="ns:SendAuthorizeRequestResponse"
|
168
|
+
wsaw:Action="//api.todopago.com.ar/AuthorizePortType/SendAuthorizeRequestResponse"/>
|
169
|
+
</wsdl:operation>
|
170
|
+
<wsdl:operation name="VoidRequest">
|
171
|
+
<wsdl:documentation>Service definition of Operation Void: Utilizada para Anular una Transaccion</wsdl:documentation>
|
172
|
+
<wsdl:input message="ns:VoidRequest"/>
|
173
|
+
<wsdl:output message="ns:VoidResponse"
|
174
|
+
wsaw:Action="//api.todopago.com.ar/AuthorizePortType/VoidResponse"/>
|
175
|
+
</wsdl:operation>
|
176
|
+
<wsdl:operation name="ReturnRequest">
|
177
|
+
<wsdl:documentation>Service definition of Operation Return: Utilizada para Devolver total o parcialmente una Transaccion</wsdl:documentation>
|
178
|
+
<wsdl:input message="ns:ReturnRequest"/>
|
179
|
+
<wsdl:output message="ns:ReturnResponse"
|
180
|
+
wsaw:Action="//api.todopago.com.ar/AuthorizePortType/ReturnResponse"/>
|
181
|
+
</wsdl:operation>
|
182
|
+
</wsdl:portType>
|
183
|
+
<wsdl:binding name="AuthorizeSoap11Binding" type="ns:AuthorizePortType">
|
184
|
+
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
|
185
|
+
<wsdl:operation name="SendAuthorizeRequest">
|
186
|
+
<soap:operation soapAction="" style="document"/>
|
187
|
+
<wsdl:input>
|
188
|
+
<soap:body use="literal"/>
|
189
|
+
</wsdl:input>
|
190
|
+
<wsdl:output>
|
191
|
+
<soap:body use="literal"/>
|
192
|
+
</wsdl:output>
|
193
|
+
</wsdl:operation>
|
194
|
+
<wsdl:operation name="GetAuthorizeAnswer">
|
195
|
+
<soap:operation soapAction="" style="document"/>
|
196
|
+
<wsdl:input>
|
197
|
+
<soap:body use="literal"/>
|
198
|
+
</wsdl:input>
|
199
|
+
<wsdl:output>
|
200
|
+
<soap:body use="literal"/>
|
201
|
+
</wsdl:output>
|
202
|
+
</wsdl:operation>
|
203
|
+
<wsdl:operation name="VoidRequest">
|
204
|
+
<soap:operation soapAction="" style="document"/>
|
205
|
+
<wsdl:input>
|
206
|
+
<soap:body use="literal"/>
|
207
|
+
</wsdl:input>
|
208
|
+
<wsdl:output>
|
209
|
+
<soap:body use="literal"/>
|
210
|
+
</wsdl:output>
|
211
|
+
</wsdl:operation>
|
212
|
+
<wsdl:operation name="ReturnRequest">
|
213
|
+
<soap:operation soapAction="" style="document"/>
|
214
|
+
<wsdl:input>
|
215
|
+
<soap:body use="literal"/>
|
216
|
+
</wsdl:input>
|
217
|
+
<wsdl:output>
|
218
|
+
<soap:body use="literal"/>
|
219
|
+
</wsdl:output>
|
220
|
+
</wsdl:operation>
|
221
|
+
</wsdl:binding>
|
222
|
+
<wsdl:binding name="AuthorizeSoap12Binding" type="ns:AuthorizePortType">
|
223
|
+
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
|
224
|
+
<wsdl:operation name="SendAuthorizeRequest">
|
225
|
+
<soap12:operation soapAction="" style="document"/>
|
226
|
+
<wsdl:input>
|
227
|
+
<soap12:body use="literal"/>
|
228
|
+
</wsdl:input>
|
229
|
+
<wsdl:output>
|
230
|
+
<soap12:body use="literal"/>
|
231
|
+
</wsdl:output>
|
232
|
+
</wsdl:operation>
|
233
|
+
<wsdl:operation name="GetAuthorizeAnswer">
|
234
|
+
<soap12:operation soapAction="" style="document"/>
|
235
|
+
<wsdl:input>
|
236
|
+
<soap12:body use="literal"/>
|
237
|
+
</wsdl:input>
|
238
|
+
<wsdl:output>
|
239
|
+
<soap12:body use="literal"/>
|
240
|
+
</wsdl:output>
|
241
|
+
</wsdl:operation>
|
242
|
+
<wsdl:operation name="VoidRequest">
|
243
|
+
<soap12:operation soapAction="" style="document"/>
|
244
|
+
<wsdl:input>
|
245
|
+
<soap12:body use="literal"/>
|
246
|
+
</wsdl:input>
|
247
|
+
<wsdl:output>
|
248
|
+
<soap12:body use="literal"/>
|
249
|
+
</wsdl:output>
|
250
|
+
</wsdl:operation>
|
251
|
+
<wsdl:operation name="ReturnRequest">
|
252
|
+
<soap12:operation soapAction="" style="document"/>
|
253
|
+
<wsdl:input>
|
254
|
+
<soap12:body use="literal"/>
|
255
|
+
</wsdl:input>
|
256
|
+
<wsdl:output>
|
257
|
+
<soap12:body use="literal"/>
|
258
|
+
</wsdl:output>
|
259
|
+
</wsdl:operation>
|
260
|
+
</wsdl:binding>
|
261
|
+
<wsdl:binding name="AuthorizeHttpBinding" type="ns:AuthorizePortType">
|
262
|
+
<http:binding verb="POST"/>
|
263
|
+
<wsdl:operation name="SendAuthorizeRequest">
|
264
|
+
<http:operation location="SendAuthorizeRequest"/>
|
265
|
+
<wsdl:input>
|
266
|
+
<mime:content type="text/xml" part="parameters"/>
|
267
|
+
</wsdl:input>
|
268
|
+
<wsdl:output>
|
269
|
+
<mime:content type="text/xml" part="parameters"/>
|
270
|
+
</wsdl:output>
|
271
|
+
</wsdl:operation>
|
272
|
+
<wsdl:operation name="GetAuthorizeAnswer">
|
273
|
+
<http:operation location="GetAuthorizeAnswer"/>
|
274
|
+
<wsdl:input>
|
275
|
+
<mime:content type="text/xml" part="parameters"/>
|
276
|
+
</wsdl:input>
|
277
|
+
<wsdl:output>
|
278
|
+
<mime:content type="text/xml" part="parameters"/>
|
279
|
+
</wsdl:output>
|
280
|
+
</wsdl:operation>
|
281
|
+
<wsdl:operation name="VoidRequest">
|
282
|
+
<http:operation location="VoidRequest"/>
|
283
|
+
<wsdl:input>
|
284
|
+
<mime:content type="text/xml" part="parameters"/>
|
285
|
+
</wsdl:input>
|
286
|
+
<wsdl:output>
|
287
|
+
<mime:content type="text/xml" part="parameters"/>
|
288
|
+
</wsdl:output>
|
289
|
+
</wsdl:operation>
|
290
|
+
<wsdl:operation name="ReturnRequest">
|
291
|
+
<http:operation location="ReturnRequest"/>
|
292
|
+
<wsdl:input>
|
293
|
+
<mime:content type="text/xml" part="parameters"/>
|
294
|
+
</wsdl:input>
|
295
|
+
<wsdl:output>
|
296
|
+
<mime:content type="text/xml" part="parameters"/>
|
297
|
+
</wsdl:output>
|
298
|
+
</wsdl:operation>
|
299
|
+
</wsdl:binding>
|
300
|
+
<wsdl:service name="Authorize">
|
301
|
+
<wsdl:port name="AuthorizeHttpsSoap11Endpoint" binding="ns:AuthorizeSoap11Binding">
|
302
|
+
<soap:address location="https://192.168.135.35:8443/services/Authorize.AuthorizeHttpsSoap11Endpoint"/>
|
303
|
+
</wsdl:port>
|
304
|
+
<wsdl:port name="AuthorizeHttpSoap11Endpoint" binding="ns:AuthorizeSoap11Binding">
|
305
|
+
<soap:address location="http://192.168.135.35:8480/services/Authorize.AuthorizeHttpSoap11Endpoint"/>
|
306
|
+
</wsdl:port>
|
307
|
+
<wsdl:port name="AuthorizeHttpSoap12Endpoint" binding="ns:AuthorizeSoap12Binding">
|
308
|
+
<soap12:address location="http://192.168.135.35:8480/services/Authorize.AuthorizeHttpSoap12Endpoint"/>
|
309
|
+
</wsdl:port>
|
310
|
+
<wsdl:port name="AuthorizeHttpsSoap12Endpoint" binding="ns:AuthorizeSoap12Binding">
|
311
|
+
<soap12:address location="https://192.168.135.35:8443/services/Authorize.AuthorizeHttpsSoap12Endpoint"/>
|
312
|
+
</wsdl:port>
|
313
|
+
<wsdl:port name="AuthorizeHttpsEndpoint" binding="ns:AuthorizeHttpBinding">
|
314
|
+
<http:address location="https://192.168.135.35:8443/services/Authorize.AuthorizeHttpsEndpoint"/>
|
315
|
+
</wsdl:port>
|
316
|
+
<wsdl:port name="AuthorizeHttpEndpoint" binding="ns:AuthorizeHttpBinding">
|
317
|
+
<http:address location="http://192.168.135.35:8480/services/Authorize.AuthorizeHttpEndpoint"/>
|
318
|
+
</wsdl:port>
|
319
|
+
</wsdl:service>
|
320
|
+
</wsdl:definitions>
|