pagopa-soap 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 (48) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +8 -0
  3. data/.rubocop.yml +137 -0
  4. data/.travis.yml +14 -0
  5. data/CODE_OF_CONDUCT.md +75 -0
  6. data/Gemfile +9 -0
  7. data/LICENSE.txt +29 -0
  8. data/README.md +229 -0
  9. data/Rakefile +13 -0
  10. data/bin/console +15 -0
  11. data/bin/setup +8 -0
  12. data/diagrams/diagrammi-psp.jpg +0 -0
  13. data/diagrams/diagrammi-revoca.jpg +0 -0
  14. data/diagrams/diagrammi-wisp.jpg +0 -0
  15. data/lib/pago_pa.rb +14 -0
  16. data/lib/pago_pa/soap.rb +17 -0
  17. data/lib/pago_pa/soap/configurable.rb +38 -0
  18. data/lib/pago_pa/soap/message/domain.rb +31 -0
  19. data/lib/pago_pa/soap/message/institution.rb +42 -0
  20. data/lib/pago_pa/soap/message/payer.rb +42 -0
  21. data/lib/pago_pa/soap/message/payment.rb +61 -0
  22. data/lib/pago_pa/soap/message/rpt.rb +86 -0
  23. data/lib/pago_pa/soap/message/rt.rb +43 -0
  24. data/lib/pago_pa/soap/message/single_payment.rb +18 -0
  25. data/lib/pago_pa/soap/version.rb +8 -0
  26. data/lib/pago_pa/soap/wsdl_loader.rb +66 -0
  27. data/lib/soap.rb +126 -0
  28. data/lib/soap/parser.rb +74 -0
  29. data/lib/soap/parser/binding.rb +53 -0
  30. data/lib/soap/parser/message.rb +27 -0
  31. data/lib/soap/parser/port_type.rb +42 -0
  32. data/lib/soap/parser/service.rb +25 -0
  33. data/lib/soap/parser/types.rb +97 -0
  34. data/lib/soap/string.rb +33 -0
  35. data/lib/soap/webservice.rb +4 -0
  36. data/lib/soap/webservice/client.rb +37 -0
  37. data/lib/soap/webservice/error.rb +17 -0
  38. data/lib/soap/webservice/fault_error.rb +12 -0
  39. data/lib/soap/webservice/request.rb +118 -0
  40. data/lib/soap/webservice/response.rb +88 -0
  41. data/pagopa-soap.gemspec +45 -0
  42. data/resources/PaPerNodo.wsdl +214 -0
  43. data/resources/PaPerNodoChiediElencoAvvisiDigitali.wsdl +93 -0
  44. data/resources/PaPerNodoPagamentoPsp.wsdl +241 -0
  45. data/resources/PaPerNodoRichiestaAvvisi.wsdl +202 -0
  46. data/resources/pagopa_avvisi.wsdl +98 -0
  47. data/resources/pagopa_base.wsdl +869 -0
  48. metadata +245 -0
@@ -0,0 +1,98 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- Questo WSDL rappresenta l'interfaccia esposta dal p2g per l'invio di un avviso di pagamento. -->
3
+ <wsdl:definitions xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata"
4
+ xmlns:sac="http://ws.pagamenti.telematici.gov/"
5
+ xmlns:sachead="http://ws.pagamenti.telematici.gov/sachead"
6
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
7
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
8
+ xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
9
+ xmlns:tns="http://PuntoAccessoPA.spcoop.gov.it/servizi/AvvisiDigitali"
10
+ targetNamespace="http://PuntoAccessoPA.spcoop.gov.it/servizi/AvvisiDigitali">
11
+
12
+ <wsdl:types>
13
+ <xsd:schema version="2.1" targetNamespace="http://ws.pagamenti.telematici.gov/sachead">
14
+
15
+ <xsd:simpleType name="stText35">
16
+ <xsd:restriction base="xsd:string">
17
+ <xsd:minLength value="1"/>
18
+ <xsd:maxLength value="35"/>
19
+ </xsd:restriction>
20
+ </xsd:simpleType>
21
+
22
+ <xsd:element name="intestazionePPT">
23
+ <xsd:complexType>
24
+ <xsd:sequence>
25
+ <xsd:element name="identificativoIntermediarioPA" type="sachead:stText35"/>
26
+ <xsd:element name="identificativoStazioneIntermediarioPA" type="sachead:stText35"/>
27
+ <xsd:element name="identificativoDominio" type="sachead:stText35"/>
28
+ </xsd:sequence>
29
+ </xsd:complexType>
30
+ </xsd:element>
31
+
32
+ </xsd:schema>
33
+
34
+ <xsd:schema version="1.0" targetNamespace="http://ws.pagamenti.telematici.gov/">
35
+
36
+ <xsd:include schemaLocation="avvisi-digitali-1.0.xsd"/>
37
+
38
+ <xsd:complexType name="ctNodoInviaAvvisoDigitale">
39
+ <xsd:sequence>
40
+ <xsd:element name="password" type="sac:stText35"/>
41
+ <xsd:element name="avvisoDigitaleWS" type="sac:ctAvvisoDigitale"/>
42
+ </xsd:sequence>
43
+ </xsd:complexType>
44
+
45
+ <xsd:complexType name="ctNodoInviaAvvisoDigitaleRisposta">
46
+ <xsd:complexContent>
47
+ <xsd:extension base="sac:ctRisposta">
48
+ <xsd:sequence>
49
+ <xsd:element name="esitoOperazione" type="sac:stEsitoOperazione"/>
50
+ <xsd:element name="esitoAvvisoDigitaleWS" type="sac:ctEsitoAvvisoDigitale" minOccurs="0" maxOccurs="1"/>
51
+ </xsd:sequence>
52
+ </xsd:extension>
53
+ </xsd:complexContent>
54
+ </xsd:complexType>
55
+
56
+ <xsd:element name="nodoInviaAvvisoDigitale" type="sac:ctNodoInviaAvvisoDigitale"/>
57
+ <xsd:element name="nodoInviaAvvisoDigitaleRisposta" type="sac:ctNodoInviaAvvisoDigitaleRisposta"/>
58
+
59
+ </xsd:schema>
60
+ </wsdl:types>
61
+
62
+ <wsdl:message name="nodoInviaAvvisoDigitale">
63
+ <wsdl:part name="header" element="sachead:intestazionePPT"/>
64
+ <wsdl:part name="bodyrichiesta" element="sac:nodoInviaAvvisoDigitale"/>
65
+ </wsdl:message>
66
+ <wsdl:message name="nodoInviaAvvisoDigitaleRisposta">
67
+ <wsdl:part name="bodyrisposta" element="sac:nodoInviaAvvisoDigitaleRisposta"/>
68
+ </wsdl:message>
69
+
70
+ <wsdl:portType name="NodoInviaAvvisoDigitale">
71
+ <wsdl:operation name="nodoInviaAvvisoDigitale">
72
+ <wsdl:input message="tns:nodoInviaAvvisoDigitale"
73
+ wsam:Action="http://ws.pagamenti.telematici.gov/PPT/nodoInviaAvvisoDigitale"/>
74
+ <wsdl:output message="tns:nodoInviaAvvisoDigitaleRisposta"
75
+ wsam:Action="http://ws.pagamenti.telematici.gov/PPT/nodoInviaAvvisoDigitaleRisposta"/>
76
+ </wsdl:operation>
77
+
78
+ </wsdl:portType>
79
+
80
+ <wsdl:binding name="NodoInviaAvvisoDigitaleBinding" type="tns:NodoInviaAvvisoDigitale">
81
+ <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
82
+ <wsdl:operation name="nodoInviaAvvisoDigitale">
83
+ <soap:operation soapAction="nodoInviaAvvisoDigitale" />
84
+ <wsdl:input>
85
+ <soap:header message="tns:nodoInviaAvvisoDigitale" part="header" use="literal" />
86
+ <soap:body parts="bodyrichiesta" use="literal"/>
87
+ </wsdl:input>
88
+ <wsdl:output>
89
+ <soap:body use="literal"/>
90
+ </wsdl:output>
91
+ </wsdl:operation>
92
+ </wsdl:binding>
93
+ <wsdl:service name="NodoInviaAvvisoDigitaleService">
94
+ <wsdl:port name="PPTPort" binding="tns:NodoInviaAvvisoDigitaleBinding">
95
+ <soap:address location="http://PuntoAccessoPA.spcoop.gov.it/"/>
96
+ </wsdl:port>
97
+ </wsdl:service>
98
+ </wsdl:definitions>
@@ -0,0 +1,869 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!--
3
+ Questo WSDL rappresenta l'interfaccia esposta dal Nodo dei Pagamenti
4
+ per la ricezione delle RPT.
5
+ Versione 6.2.0 di RPT/RT.
6
+ Renaming delle primitive.
7
+ -->
8
+ <wsdl:definitions
9
+ xmlns:ppt="http://ws.pagamenti.telematici.gov/"
10
+ xmlns:ppthead="http://ws.pagamenti.telematici.gov/ppthead"
11
+ xmlns:tns="http://NodoPagamentiSPC.spcoop.gov.it/servizi/PagamentiTelematiciRPT"
12
+ xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata"
13
+ xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl"
14
+ xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
15
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
16
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
17
+ name="PagamentiTelematiciRPTservice"
18
+ targetNamespace="http://NodoPagamentiSPC.spcoop.gov.it/servizi/PagamentiTelematiciRPT"
19
+ >
20
+ <wsdl:types>
21
+ <xsd:schema version="2.1.1" targetNamespace="http://ws.pagamenti.telematici.gov/ppthead">
22
+ <xsd:import schemaLocation="http://schemas.xmlsoap.org/soap/envelope/" namespace="http://schemas.xmlsoap.org/soap/envelope/" />
23
+ <xsd:simpleType name="stText35">
24
+ <xsd:restriction base="xsd:string">
25
+ <xsd:minLength value="1" />
26
+ <xsd:maxLength value="35" />
27
+ </xsd:restriction>
28
+ </xsd:simpleType>
29
+ <xsd:element name="intestazionePPT" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
30
+ <xsd:complexType>
31
+ <xsd:sequence>
32
+ <xsd:element name="identificativoIntermediarioPA" type="ppthead:stText35" />
33
+ <xsd:element name="identificativoStazioneIntermediarioPA" type="ppthead:stText35" />
34
+ <xsd:element name="identificativoDominio" type="ppthead:stText35" />
35
+ <xsd:element name="identificativoUnivocoVersamento" type="ppthead:stText35" />
36
+ <xsd:element name="codiceContestoPagamento" type="ppthead:stText35" />
37
+ </xsd:sequence>
38
+ <xsd:attribute ref="soapenv:actor" use="optional" />
39
+ <xsd:attribute ref="soapenv:mustUnderstand" use="optional" />
40
+ </xsd:complexType>
41
+ </xsd:element>
42
+ <xsd:element name="intestazioneCarrelloPPT" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
43
+ <xsd:complexType>
44
+ <xsd:sequence>
45
+ <xsd:element name="identificativoIntermediarioPA" type="ppthead:stText35" />
46
+ <xsd:element name="identificativoStazioneIntermediarioPA" type="ppthead:stText35" />
47
+ <xsd:element name="identificativoCarrello" type="ppthead:stText35" />
48
+ </xsd:sequence>
49
+ <xsd:attribute ref="soapenv:actor" use="optional" />
50
+ <xsd:attribute ref="soapenv:mustUnderstand" use="optional" />
51
+ </xsd:complexType>
52
+ </xsd:element>
53
+ </xsd:schema>
54
+ <xsd:schema version="1.0" targetNamespace="http://ws.pagamenti.telematici.gov/">
55
+ <xsd:simpleType name="stText35">
56
+ <xsd:restriction base="xsd:string">
57
+ <xsd:minLength value="1" />
58
+ <xsd:maxLength value="35" />
59
+ </xsd:restriction>
60
+ </xsd:simpleType>
61
+ <xsd:simpleType name="stPassword">
62
+ <xsd:restriction base="xsd:string">
63
+ <xsd:minLength value="8" />
64
+ <xsd:maxLength value="15" />
65
+ </xsd:restriction>
66
+ </xsd:simpleType>
67
+ <xsd:simpleType name="stEffettuazioneScelta">
68
+ <xsd:restriction base="xsd:string">
69
+ <xsd:enumeration value="SI" />
70
+ <xsd:enumeration value="NO" />
71
+ <xsd:enumeration value="PO" />
72
+ </xsd:restriction>
73
+ </xsd:simpleType>
74
+ <xsd:simpleType name="stTipoVersamento">
75
+ <xsd:restriction base="xsd:string">
76
+ <xsd:enumeration value="BBT" /> <!-- Bonifico Bancario di Tesoreria -->
77
+ <xsd:enumeration value="BP" /> <!-- Bollettino Postale -->
78
+ <xsd:enumeration value="AD" /> <!-- Addebito Diretto -->
79
+ <xsd:enumeration value="CP" /> <!-- Carta di Pagamento -->
80
+ <xsd:enumeration value="PO" /> <!-- Pagamento attivato presso PSP -->
81
+ <xsd:enumeration value="OBEP" /> <!-- Online Banking Electronic Payment -->
82
+ <xsd:maxLength value="4" />
83
+ </xsd:restriction>
84
+ </xsd:simpleType>
85
+ <xsd:element name="nodoChiediCopiaRT" type="ppt:nodoChiediCopiaRT" />
86
+ <xsd:element name="nodoChiediCopiaRTRisposta" type="ppt:nodoChiediCopiaRTRisposta" />
87
+
88
+ <xsd:element name="nodoInviaRichiestaStorno" type="ppt:nodoInviaRichiestaStorno" />
89
+ <xsd:element name="nodoInviaRichiestaStornoRisposta" type="ppt:nodoInviaRichiestaStornoRisposta" />
90
+
91
+ <xsd:element name="nodoInviaRispostaRevoca" type="ppt:nodoInviaRispostaRevoca" />
92
+ <xsd:element name="nodoInviaRispostaRevocaRisposta" type="ppt:nodoInviaRispostaRevocaRisposta" />
93
+
94
+ <xsd:element name="nodoChiediListaPendentiRPT" type="ppt:nodoChiediListaPendentiRPT" />
95
+ <xsd:element name="nodoChiediListaPendentiRPTRisposta" type="ppt:nodoChiediListaPendentiRPTRisposta" />
96
+
97
+ <xsd:element name="nodoChiediStatoRPT" type="ppt:nodoChiediStatoRPT" />
98
+ <xsd:element name="nodoChiediStatoRPTRisposta" type="ppt:nodoChiediStatoRPTRisposta" />
99
+
100
+ <xsd:element name="nodoInviaRPT" type="ppt:nodoInviaRPT" />
101
+ <xsd:element name="nodoInviaRPTRisposta" type="ppt:nodoInviaRPTRisposta" />
102
+
103
+ <xsd:element name="nodoInviaCarrelloRPT" type="ppt:nodoInviaCarrelloRPT" />
104
+ <xsd:element name="nodoInviaCarrelloRPTRisposta" type="ppt:nodoInviaCarrelloRPTRisposta" />
105
+
106
+ <xsd:element name="nodoChiediInformativaPSP" type="ppt:nodoChiediInformativaPSP" />
107
+ <xsd:element name="nodoChiediInformativaPSPRisposta" type="ppt:nodoChiediInformativaPSPRisposta" />
108
+
109
+ <xsd:element name="nodoPAChiediInformativaPA" type="ppt:nodoPAChiediInformativaPA" />
110
+ <xsd:element name="nodoPAChiediInformativaPARisposta" type="ppt:nodoPAChiediInformativaPARisposta" />
111
+
112
+ <xsd:element name="nodoChiediElencoQuadraturePA" type="ppt:nodoChiediElencoQuadraturePA" />
113
+ <xsd:element name="nodoChiediElencoQuadraturePARisposta" type="ppt:nodoChiediElencoQuadraturePARisposta" />
114
+
115
+ <xsd:element name="nodoChiediQuadraturaPA" type="ppt:nodoChiediQuadraturaPA" />
116
+ <xsd:element name="nodoChiediQuadraturaPARisposta" type="ppt:nodoChiediQuadraturaPARisposta" />
117
+
118
+ <xsd:element name="nodoChiediElencoFlussiRendicontazione" type="ppt:nodoChiediElencoFlussiRendicontazione" />
119
+ <xsd:element name="nodoChiediElencoFlussiRendicontazioneRisposta" type="ppt:nodoChiediElencoFlussiRendicontazioneRisposta" />
120
+
121
+ <xsd:element name="nodoChiediFlussoRendicontazione" type="ppt:nodoChiediFlussoRendicontazione" />
122
+ <xsd:element name="nodoChiediFlussoRendicontazioneRisposta" type="ppt:nodoChiediFlussoRendicontazioneRisposta" />
123
+
124
+ <xsd:element name="nodoChiediSceltaWISP" type="ppt:nodoChiediSceltaWISP" />
125
+ <xsd:element name="nodoChiediSceltaWISPRisposta" type="ppt:nodoChiediSceltaWISPRisposta" />
126
+
127
+ <xsd:complexType name="risposta">
128
+ <xsd:sequence>
129
+ <xsd:element name="fault" type="ppt:faultBean" minOccurs="0" />
130
+ </xsd:sequence>
131
+ </xsd:complexType>
132
+
133
+ <xsd:complexType name="faultBean">
134
+ <xsd:sequence>
135
+ <xsd:element name="faultCode" type="xsd:string" />
136
+ <xsd:element name="faultString" type="xsd:string" />
137
+ <xsd:element name="id" type="xsd:string" />
138
+ <xsd:element name="description" type="xsd:string" minOccurs="0" />
139
+ <xsd:element name="serial" type="xsd:int" minOccurs="0" />
140
+ <xsd:element name="originalFaultCode" type="xsd:string" minOccurs="0" />
141
+ <xsd:element name="originalFaultString" type="xsd:string" minOccurs="0" />
142
+ <xsd:element name="originalDescription" type="xsd:string" minOccurs="0" />
143
+ </xsd:sequence>
144
+ </xsd:complexType>
145
+
146
+ <xsd:complexType name="nodoChiediStatoRPT">
147
+ <xsd:sequence>
148
+ <xsd:element name="identificativoIntermediarioPA" type="ppt:stText35" />
149
+ <xsd:element name="identificativoStazioneIntermediarioPA" type="ppt:stText35" />
150
+ <xsd:element name="password" type="ppt:stPassword" />
151
+ <xsd:element name="identificativoDominio" type="ppt:stText35" />
152
+ <xsd:element name="identificativoUnivocoVersamento" type="ppt:stText35" />
153
+ <xsd:element name="codiceContestoPagamento" type="ppt:stText35" />
154
+ </xsd:sequence>
155
+ </xsd:complexType>
156
+
157
+ <xsd:complexType name="nodoChiediStatoRPTRisposta">
158
+ <xsd:complexContent>
159
+ <xsd:extension base="ppt:risposta">
160
+ <xsd:sequence>
161
+ <xsd:element name="esito" type="ppt:esitoChiediStatoRPT" minOccurs="0" />
162
+ </xsd:sequence>
163
+ </xsd:extension>
164
+ </xsd:complexContent>
165
+ </xsd:complexType>
166
+
167
+ <xsd:complexType name="esitoChiediStatoRPT">
168
+ <xsd:sequence>
169
+ <xsd:element name="stato" type="xsd:string" />
170
+ <xsd:element name="redirect" type="xsd:int" default="0" minOccurs="0" />
171
+ <xsd:element name="url" type="xsd:string" default="" minOccurs="0" />
172
+ <xsd:element name="elementoStoricoRPT" type="ppt:tipoStoricoRPT" nillable="true" minOccurs="0" maxOccurs="unbounded" />
173
+ <xsd:element name="elementoStoricoVersamento" type="ppt:tipoStoricoVersamento" nillable="true" minOccurs="0" maxOccurs="unbounded" />
174
+ </xsd:sequence>
175
+ </xsd:complexType>
176
+
177
+ <xsd:complexType name="tipoStoricoRPT">
178
+ <xsd:sequence>
179
+ <xsd:element name="data" type="xsd:dateTime" />
180
+ <xsd:element name="stato" type="xsd:string" />
181
+ <xsd:element name="descrizione" type="xsd:string" />
182
+ </xsd:sequence>
183
+ </xsd:complexType>
184
+
185
+ <xsd:complexType name="tipoStoricoVersamento">
186
+ <xsd:sequence>
187
+ <xsd:element name="progressivo" type="xsd:int" />
188
+ <xsd:element name="data" type="xsd:dateTime" />
189
+ <xsd:element name="stato" type="xsd:string" />
190
+ <xsd:element name="descrizione" type="xsd:string" />
191
+ </xsd:sequence>
192
+ </xsd:complexType>
193
+
194
+ <xsd:complexType name="nodoChiediCopiaRT">
195
+ <xsd:sequence>
196
+ <xsd:element name="identificativoIntermediarioPA" type="ppt:stText35" />
197
+ <xsd:element name="identificativoStazioneIntermediarioPA" type="ppt:stText35" />
198
+ <xsd:element name="password" type="ppt:stPassword" />
199
+ <xsd:element name="identificativoDominio" type="ppt:stText35" />
200
+ <xsd:element name="identificativoUnivocoVersamento" type="ppt:stText35" />
201
+ <xsd:element name="codiceContestoPagamento" type="ppt:stText35" />
202
+ </xsd:sequence>
203
+ </xsd:complexType>
204
+
205
+ <xsd:complexType name="nodoChiediCopiaRTRisposta">
206
+ <xsd:complexContent>
207
+ <xsd:extension base="ppt:risposta">
208
+ <xsd:sequence>
209
+ <xsd:element name="tipoFirma" type="xsd:string" minOccurs="0" />
210
+ <xsd:element name="rt" type="xsd:base64Binary" minOccurs="0" xmime:expectedContentTypes="application/octet-stream" xmlns:xmime="http://www.w3.org/2005/05/xmlmime" />
211
+ </xsd:sequence>
212
+ </xsd:extension>
213
+ </xsd:complexContent>
214
+ </xsd:complexType>
215
+
216
+ <xsd:complexType name="nodoInviaRichiestaStorno">
217
+ <xsd:sequence>
218
+ <xsd:element name="identificativoIntermediarioPA" type="ppt:stText35" />
219
+ <xsd:element name="identificativoStazioneIntermediarioPA" type="ppt:stText35" />
220
+ <xsd:element name="password" type="ppt:stPassword" />
221
+ <xsd:element name="identificativoDominio" type="ppt:stText35" />
222
+ <xsd:element name="identificativoUnivocoVersamento" type="ppt:stText35" />
223
+ <xsd:element name="codiceContestoPagamento" type="ppt:stText35" />
224
+ <xsd:element name="rr" type="xsd:base64Binary" />
225
+ </xsd:sequence>
226
+ </xsd:complexType>
227
+
228
+ <xsd:complexType name="nodoInviaRichiestaStornoRisposta">
229
+ <xsd:complexContent>
230
+ <xsd:extension base="ppt:risposta">
231
+ <xsd:sequence>
232
+ <xsd:element name="esito" type="xsd:string" minOccurs="0" />
233
+ </xsd:sequence>
234
+ </xsd:extension>
235
+ </xsd:complexContent>
236
+ </xsd:complexType>
237
+
238
+ <xsd:complexType name="nodoInviaRispostaRevoca">
239
+ <xsd:sequence>
240
+ <xsd:element name="identificativoIntermediarioPA" type="ppt:stText35" />
241
+ <xsd:element name="identificativoStazioneIntermediarioPA" type="ppt:stText35" />
242
+ <xsd:element name="password" type="ppt:stPassword" />
243
+ <xsd:element name="identificativoDominio" type="ppt:stText35" />
244
+ <xsd:element name="identificativoUnivocoVersamento" type="ppt:stText35" />
245
+ <xsd:element name="codiceContestoPagamento" type="ppt:stText35" />
246
+ <xsd:element name="er" type="xsd:base64Binary" />
247
+ </xsd:sequence>
248
+ </xsd:complexType>
249
+
250
+ <xsd:complexType name="nodoInviaRispostaRevocaRisposta">
251
+ <xsd:complexContent>
252
+ <xsd:extension base="ppt:risposta">
253
+ <xsd:sequence>
254
+ <xsd:element name="esito" type="xsd:string" />
255
+ </xsd:sequence>
256
+ </xsd:extension>
257
+ </xsd:complexContent>
258
+ </xsd:complexType>
259
+
260
+ <xsd:complexType name="nodoInviaRPT">
261
+ <xsd:sequence>
262
+ <xsd:element name="password" type="ppt:stPassword" />
263
+ <xsd:element name="identificativoPSP" type="ppt:stText35" />
264
+ <xsd:element name="identificativoIntermediarioPSP" type="ppt:stText35" minOccurs="0" />
265
+ <xsd:element name="identificativoCanale" type="ppt:stText35" minOccurs="0" />
266
+ <xsd:element name="tipoFirma" type="xsd:string" />
267
+ <xsd:element name="rpt" type="xsd:base64Binary" />
268
+ </xsd:sequence>
269
+ </xsd:complexType>
270
+
271
+ <xsd:complexType name="nodoInviaRPTRisposta">
272
+ <xsd:complexContent>
273
+ <xsd:extension base="ppt:risposta">
274
+ <xsd:sequence>
275
+ <xsd:element name="esito" type="xsd:string" minOccurs="0" />
276
+ <xsd:element name="redirect" type="xsd:int" default="0" minOccurs="0" />
277
+ <xsd:element name="url" type="xsd:string" default="" minOccurs="0" />
278
+ </xsd:sequence>
279
+ </xsd:extension>
280
+ </xsd:complexContent>
281
+ </xsd:complexType>
282
+
283
+ <xsd:complexType name="nodoInviaCarrelloRPT">
284
+ <xsd:sequence>
285
+ <xsd:element name="password" type="ppt:stPassword" />
286
+ <xsd:element name="identificativoPSP" type="ppt:stText35" />
287
+ <xsd:element name="identificativoIntermediarioPSP" type="ppt:stText35" minOccurs="0" />
288
+ <xsd:element name="identificativoCanale" type="ppt:stText35" minOccurs="0" />
289
+ <xsd:element name="listaRPT" type="ppt:tipoListaRPT" />
290
+ </xsd:sequence>
291
+ </xsd:complexType>
292
+
293
+ <xsd:complexType name="tipoListaRPT">
294
+ <xsd:sequence>
295
+ <xsd:element name="elementoListaRPT" type="ppt:tipoElementoListaRPT" minOccurs="1" maxOccurs="unbounded" />
296
+ </xsd:sequence>
297
+ </xsd:complexType>
298
+
299
+ <xsd:complexType name="tipoElementoListaRPT">
300
+ <xsd:sequence>
301
+ <xsd:element name="identificativoDominio" type="ppt:stText35" />
302
+ <xsd:element name="identificativoUnivocoVersamento" type="ppt:stText35" />
303
+ <xsd:element name="codiceContestoPagamento" type="ppt:stText35" />
304
+ <xsd:element name="tipoFirma" type="xsd:string" minOccurs="0" />
305
+ <xsd:element name="rpt" type="xsd:base64Binary" />
306
+ </xsd:sequence>
307
+ </xsd:complexType>
308
+
309
+ <xsd:complexType name="nodoInviaCarrelloRPTRisposta">
310
+ <xsd:complexContent>
311
+ <xsd:extension base="ppt:risposta">
312
+ <xsd:sequence>
313
+ <xsd:element name="esitoComplessivoOperazione" type="xsd:string" />
314
+ <xsd:element name="url" type="xsd:string" default="" minOccurs="0" />
315
+ <xsd:element name="listaErroriRPT" type="ppt:listaErroriRPT" minOccurs="0" />
316
+ </xsd:sequence>
317
+ </xsd:extension>
318
+ </xsd:complexContent>
319
+ </xsd:complexType>
320
+
321
+ <xsd:complexType name="listaErroriRPT">
322
+ <xsd:sequence>
323
+ <xsd:element name="fault" type="ppt:faultBean" minOccurs="0" maxOccurs="unbounded" />
324
+ </xsd:sequence>
325
+ </xsd:complexType>
326
+
327
+ <xsd:complexType name="nodoChiediListaPendentiRPT">
328
+ <xsd:sequence>
329
+ <xsd:element name="identificativoIntermediarioPA" type="ppt:stText35" />
330
+ <xsd:element name="identificativoStazioneIntermediarioPA" type="ppt:stText35" />
331
+ <xsd:element name="password" type="ppt:stPassword" />
332
+ <xsd:element name="identificativoDominio" type="ppt:stText35" minOccurs="0" />
333
+ <xsd:element name="rangeDa" type="xsd:dateTime" minOccurs="0" />
334
+ <xsd:element name="rangeA" type="xsd:dateTime" minOccurs="0" />
335
+ <xsd:element name="dimensioneLista" type="xsd:positiveInteger" />
336
+ </xsd:sequence>
337
+ </xsd:complexType>
338
+
339
+ <xsd:complexType name="nodoChiediListaPendentiRPTRisposta">
340
+ <xsd:complexContent>
341
+ <xsd:extension base="ppt:risposta">
342
+ <xsd:sequence>
343
+ <xsd:element name="listaRPTPendenti" type="ppt:tipoListaRPTPendenti" minOccurs="0" />
344
+ </xsd:sequence>
345
+ </xsd:extension>
346
+ </xsd:complexContent>
347
+ </xsd:complexType>
348
+
349
+ <xsd:complexType name="tipoListaRPTPendenti">
350
+ <xsd:sequence>
351
+ <xsd:element name="totRestituiti" type="xsd:int" />
352
+ <xsd:element name="rptPendente" type="ppt:tipoRPTPendente" nillable="true" minOccurs="0" maxOccurs="unbounded" />
353
+ </xsd:sequence>
354
+ </xsd:complexType>
355
+
356
+ <xsd:complexType name="tipoRPTPendente">
357
+ <xsd:sequence>
358
+ <xsd:element name="identificativoDominio" type="ppt:stText35" />
359
+ <xsd:element name="identificativoUnivocoVersamento" type="ppt:stText35" />
360
+ <xsd:element name="codiceContestoPagamento" type="ppt:stText35" />
361
+ <xsd:element name="stato" type="xsd:string" />
362
+ </xsd:sequence>
363
+ </xsd:complexType>
364
+
365
+ <xsd:complexType name="nodoChiediInformativaPSP">
366
+ <xsd:sequence>
367
+ <xsd:element name="identificativoIntermediarioPA" type="ppt:stText35" />
368
+ <xsd:element name="identificativoStazioneIntermediarioPA" type="ppt:stText35" />
369
+ <xsd:element name="password" type="ppt:stPassword" />
370
+ <xsd:element name="identificativoDominio" type="ppt:stText35" minOccurs="0" />
371
+ <xsd:element name="identificativoPSP" type="ppt:stText35" minOccurs="0" />
372
+ </xsd:sequence>
373
+ </xsd:complexType>
374
+
375
+ <xsd:complexType name="nodoChiediInformativaPSPRisposta">
376
+ <xsd:complexContent>
377
+ <xsd:extension base="ppt:risposta">
378
+ <xsd:sequence>
379
+ <xsd:element name="xmlInformativa" type="xsd:base64Binary" minOccurs="0" xmime:expectedContentTypes="application/octet-stream" xmlns:xmime="http://www.w3.org/2005/05/xmlmime" />
380
+ </xsd:sequence>
381
+ </xsd:extension>
382
+ </xsd:complexContent>
383
+ </xsd:complexType>
384
+
385
+ <xsd:complexType name="nodoPAChiediInformativaPA">
386
+ <xsd:sequence>
387
+ <xsd:element name="identificativoIntermediarioPA" type="ppt:stText35" />
388
+ <xsd:element name="identificativoStazioneIntermediarioPA" type="ppt:stText35" />
389
+ <xsd:element name="password" type="ppt:stPassword" />
390
+ <xsd:element name="identificativoDominio" type="ppt:stText35" />
391
+ </xsd:sequence>
392
+ </xsd:complexType>
393
+
394
+ <xsd:complexType name="nodoPAChiediInformativaPARisposta">
395
+ <xsd:complexContent>
396
+ <xsd:extension base="ppt:risposta">
397
+ <xsd:sequence>
398
+ <xsd:element name="xmlInformativa" type="xsd:base64Binary" minOccurs="0" xmime:expectedContentTypes="application/octet-stream" xmlns:xmime="http://www.w3.org/2005/05/xmlmime" />
399
+ </xsd:sequence>
400
+ </xsd:extension>
401
+ </xsd:complexContent>
402
+ </xsd:complexType>
403
+
404
+ <xsd:complexType name="nodoChiediElencoQuadraturePA">
405
+ <xsd:sequence>
406
+ <xsd:element name="identificativoIntermediarioPA" type="ppt:stText35" />
407
+ <xsd:element name="identificativoStazioneIntermediarioPA" type="ppt:stText35" />
408
+ <xsd:element name="password" type="ppt:stPassword" />
409
+ <xsd:element name="identificativoDominio" type="ppt:stText35" minOccurs="0" />
410
+ </xsd:sequence>
411
+ </xsd:complexType>
412
+
413
+ <xsd:complexType name="nodoChiediElencoQuadraturePARisposta">
414
+ <xsd:complexContent>
415
+ <xsd:extension base="ppt:risposta">
416
+ <xsd:sequence>
417
+ <xsd:element name="listaQuadrature" type="ppt:tipoListaQuadrature" minOccurs="0" />
418
+ </xsd:sequence>
419
+ </xsd:extension>
420
+ </xsd:complexContent>
421
+ </xsd:complexType>
422
+
423
+ <xsd:complexType name="tipoListaQuadrature">
424
+ <xsd:sequence>
425
+ <xsd:element name="totRestituiti" type="xsd:int" />
426
+ <xsd:element name="idQuadratura" type="ppt:tipoIdQuadratura" nillable="true" minOccurs="0" maxOccurs="unbounded" />
427
+ </xsd:sequence>
428
+ </xsd:complexType>
429
+
430
+ <xsd:complexType name="tipoIdQuadratura">
431
+ <xsd:sequence>
432
+ <xsd:element name="identificativoFlusso" type="xsd:string" />
433
+ <xsd:element name="dataOraFlusso" type="xsd:dateTime" />
434
+ </xsd:sequence>
435
+ </xsd:complexType>
436
+
437
+ <xsd:complexType name="nodoChiediQuadraturaPA">
438
+ <xsd:sequence>
439
+ <xsd:element name="identificativoIntermediarioPA" type="ppt:stText35" />
440
+ <xsd:element name="identificativoStazioneIntermediarioPA" type="ppt:stText35" />
441
+ <xsd:element name="password" type="ppt:stPassword" />
442
+ <xsd:element name="identificativoDominio" type="ppt:stText35" minOccurs="0" />
443
+ <xsd:element name="identificativoFlusso" type="xsd:string" />
444
+ </xsd:sequence>
445
+ </xsd:complexType>
446
+
447
+ <xsd:complexType name="nodoChiediQuadraturaPARisposta">
448
+ <xsd:complexContent>
449
+ <xsd:extension base="ppt:risposta">
450
+ <xsd:sequence>
451
+ <xsd:element name="xmlQuadratura" type="xsd:base64Binary" minOccurs="0" xmime:expectedContentTypes="application/octet-stream" xmlns:xmime="http://www.w3.org/2005/05/xmlmime" />
452
+ </xsd:sequence>
453
+ </xsd:extension>
454
+ </xsd:complexContent>
455
+ </xsd:complexType>
456
+
457
+ <xsd:complexType name="nodoChiediElencoFlussiRendicontazione">
458
+ <xsd:sequence>
459
+ <xsd:element name="identificativoIntermediarioPA" type="ppt:stText35" />
460
+ <xsd:element name="identificativoStazioneIntermediarioPA" type="ppt:stText35" />
461
+ <xsd:element name="password" type="ppt:stPassword" />
462
+ <xsd:element name="identificativoDominio" type="ppt:stText35" minOccurs="0" />
463
+ <xsd:element name="identificativoPSP" type="ppt:stText35" minOccurs="0" />
464
+ </xsd:sequence>
465
+ </xsd:complexType>
466
+
467
+ <xsd:complexType name="nodoChiediElencoFlussiRendicontazioneRisposta">
468
+ <xsd:complexContent>
469
+ <xsd:extension base="ppt:risposta">
470
+ <xsd:sequence>
471
+ <xsd:element name="elencoFlussiRendicontazione" type="ppt:tipoElencoFlussiRendicontazione" minOccurs="0" />
472
+ </xsd:sequence>
473
+ </xsd:extension>
474
+ </xsd:complexContent>
475
+ </xsd:complexType>
476
+
477
+ <xsd:complexType name="tipoElencoFlussiRendicontazione">
478
+ <xsd:sequence>
479
+ <xsd:element name="totRestituiti" type="xsd:int" />
480
+ <xsd:element name="idRendicontazione" type="ppt:tipoIdRendicontazione" nillable="true" minOccurs="0" maxOccurs="unbounded" />
481
+ </xsd:sequence>
482
+ </xsd:complexType>
483
+
484
+ <xsd:complexType name="tipoIdRendicontazione">
485
+ <xsd:sequence>
486
+ <xsd:element name="identificativoFlusso" type="xsd:string" />
487
+ <xsd:element name="dataOraFlusso" type="xsd:dateTime" />
488
+ </xsd:sequence>
489
+ </xsd:complexType>
490
+
491
+ <xsd:complexType name="nodoChiediFlussoRendicontazione">
492
+ <xsd:sequence>
493
+ <xsd:element name="identificativoIntermediarioPA" type="ppt:stText35" />
494
+ <xsd:element name="identificativoStazioneIntermediarioPA" type="ppt:stText35" />
495
+ <xsd:element name="password" type="ppt:stPassword" />
496
+ <xsd:element name="identificativoDominio" type="ppt:stText35" minOccurs="0" />
497
+ <xsd:element name="identificativoPSP" type="ppt:stText35" minOccurs="0" />
498
+ <xsd:element name="identificativoFlusso" type="xsd:string" />
499
+ </xsd:sequence>
500
+ </xsd:complexType>
501
+
502
+ <xsd:complexType name="nodoChiediFlussoRendicontazioneRisposta">
503
+ <xsd:complexContent>
504
+ <xsd:extension base="ppt:risposta">
505
+ <xsd:sequence>
506
+ <xsd:element name="xmlRendicontazione" type="xsd:base64Binary" minOccurs="0" xmime:expectedContentTypes="application/octet-stream" xmlns:xmime="http://www.w3.org/2005/05/xmlmime" />
507
+ </xsd:sequence>
508
+ </xsd:extension>
509
+ </xsd:complexContent>
510
+ </xsd:complexType>
511
+
512
+ <xsd:complexType name="nodoChiediSceltaWISP">
513
+ <xsd:sequence>
514
+ <xsd:element name="identificativoIntermediarioPA" type="ppt:stText35" />
515
+ <xsd:element name="identificativoStazioneIntermediarioPA" type="ppt:stText35" />
516
+ <xsd:element name="password" type="ppt:stPassword" />
517
+ <xsd:element name="identificativoDominio" type="ppt:stText35" />
518
+ <xsd:element name="keyPA" type="ppt:stText35" />
519
+ <xsd:element name="keyWISP" type="ppt:stText35" />
520
+ </xsd:sequence>
521
+ </xsd:complexType>
522
+
523
+ <xsd:complexType name="nodoChiediSceltaWISPRisposta">
524
+ <xsd:complexContent>
525
+ <xsd:extension base="ppt:risposta">
526
+ <xsd:sequence>
527
+ <xsd:element name="effettuazioneScelta" type="ppt:stEffettuazioneScelta" minOccurs="0" />
528
+ <xsd:element name="identificativoPSP" type="ppt:stText35" minOccurs="0" />
529
+ <xsd:element name="identificativoIntermediarioPSP" type="ppt:stText35" minOccurs="0" />
530
+ <xsd:element name="identificativoCanale" type="ppt:stText35" minOccurs="0" />
531
+ <xsd:element name="tipoVersamento" type="ppt:stTipoVersamento" minOccurs="0" />
532
+ </xsd:sequence>
533
+ </xsd:extension>
534
+ </xsd:complexContent>
535
+ </xsd:complexType>
536
+ </xsd:schema>
537
+ </wsdl:types>
538
+ <wsdl:message name="nodoChiediStatoRPT">
539
+ <wsdl:part name="bodyrichiesta" element="ppt:nodoChiediStatoRPT">
540
+ </wsdl:part>
541
+ </wsdl:message>
542
+ <wsdl:message name="nodoChiediStatoRPTResponse">
543
+ <wsdl:part name="bodyrisposta" element="ppt:nodoChiediStatoRPTRisposta">
544
+ </wsdl:part>
545
+ </wsdl:message>
546
+
547
+ <wsdl:message name="nodoChiediCopiaRT">
548
+ <wsdl:part name="bodyrichiesta" element="ppt:nodoChiediCopiaRT">
549
+ </wsdl:part>
550
+ </wsdl:message>
551
+ <wsdl:message name="nodoChiediCopiaRTResponse">
552
+ <wsdl:part name="bodyrisposta" element="ppt:nodoChiediCopiaRTRisposta">
553
+ </wsdl:part>
554
+ </wsdl:message>
555
+
556
+ <wsdl:message name="nodoInviaRPT">
557
+ <wsdl:part name="bodyrichiesta" element="ppt:nodoInviaRPT">
558
+ </wsdl:part>
559
+ <wsdl:part name="header" element="ppthead:intestazionePPT">
560
+ </wsdl:part>
561
+ </wsdl:message>
562
+
563
+ <wsdl:message name="nodoInviaRPTResponse">
564
+ <wsdl:part name="bodyrisposta" element="ppt:nodoInviaRPTRisposta">
565
+ </wsdl:part>
566
+ </wsdl:message>
567
+
568
+ <wsdl:message name="nodoInviaCarrelloRPT">
569
+ <wsdl:part name="bodyrichiesta" element="ppt:nodoInviaCarrelloRPT">
570
+ </wsdl:part>
571
+ <wsdl:part name="header" element="ppthead:intestazioneCarrelloPPT">
572
+ </wsdl:part>
573
+ </wsdl:message>
574
+
575
+ <wsdl:message name="nodoInviaCarrelloRPTResponse">
576
+ <wsdl:part name="bodyrisposta" element="ppt:nodoInviaCarrelloRPTRisposta">
577
+ </wsdl:part>
578
+ </wsdl:message>
579
+
580
+ <wsdl:message name="nodoChiediListaPendentiRPT">
581
+ <wsdl:part name="bodyrichiesta" element="ppt:nodoChiediListaPendentiRPT">
582
+ </wsdl:part>
583
+ </wsdl:message>
584
+ <wsdl:message name="nodoChiediListaPendentiRPTResponse">
585
+ <wsdl:part name="bodyrisposta" element="ppt:nodoChiediListaPendentiRPTRisposta">
586
+ </wsdl:part>
587
+ </wsdl:message>
588
+
589
+ <wsdl:message name="nodoChiediInformativaPSP">
590
+ <wsdl:part name="bodyrichiesta" element="ppt:nodoChiediInformativaPSP" />
591
+ </wsdl:message>
592
+
593
+ <wsdl:message name="nodoChiediInformativaPSPResponse">
594
+ <wsdl:part name="bodyrisposta" element="ppt:nodoChiediInformativaPSPRisposta" />
595
+ </wsdl:message>
596
+
597
+ <wsdl:message name="nodoPAChiediInformativaPA">
598
+ <wsdl:part name="bodyrichiesta" element="ppt:nodoPAChiediInformativaPA">
599
+ </wsdl:part>
600
+ </wsdl:message>
601
+
602
+ <wsdl:message name="nodoPAChiediInformativaPAResponse">
603
+ <wsdl:part name="bodyrisposta" element="ppt:nodoPAChiediInformativaPARisposta">
604
+ </wsdl:part>
605
+ </wsdl:message>
606
+
607
+ <wsdl:message name="nodoChiediElencoQuadraturePA">
608
+ <wsdl:part name="bodyrichiesta" element="ppt:nodoChiediElencoQuadraturePA" />
609
+ </wsdl:message>
610
+ <wsdl:message name="nodoChiediElencoQuadraturePAResponse">
611
+ <wsdl:part name="bodyrisposta" element="ppt:nodoChiediElencoQuadraturePARisposta" />
612
+ </wsdl:message>
613
+
614
+ <wsdl:message name="nodoChiediQuadraturaPA">
615
+ <wsdl:part name="parameters" element="ppt:nodoChiediQuadraturaPA" />
616
+ </wsdl:message>
617
+ <wsdl:message name="nodoChiediQuadraturaPAResponse">
618
+ <wsdl:part name="parameters" element="ppt:nodoChiediQuadraturaPARisposta" />
619
+ </wsdl:message>
620
+
621
+ <wsdl:message name="nodoChiediElencoFlussiRendicontazione">
622
+ <wsdl:part name="parameters" element="ppt:nodoChiediElencoFlussiRendicontazione" />
623
+ </wsdl:message>
624
+ <wsdl:message name="nodoChiediElencoFlussiRendicontazioneResponse">
625
+ <wsdl:part name="parameters" element="ppt:nodoChiediElencoFlussiRendicontazioneRisposta" />
626
+ </wsdl:message>
627
+
628
+ <wsdl:message name="nodoChiediFlussoRendicontazione">
629
+ <wsdl:part name="parameters" element="ppt:nodoChiediFlussoRendicontazione" />
630
+ </wsdl:message>
631
+ <wsdl:message name="nodoChiediFlussoRendicontazioneResponse">
632
+ <wsdl:part name="parameters" element="ppt:nodoChiediFlussoRendicontazioneRisposta" />
633
+ </wsdl:message>
634
+
635
+ <wsdl:message name="nodoInviaRichiestaStorno">
636
+ <wsdl:part name="parameters" element="ppt:nodoInviaRichiestaStorno" />
637
+ </wsdl:message>
638
+ <wsdl:message name="nodoInviaRichiestaStornoResponse">
639
+ <wsdl:part name="parameters" element="ppt:nodoInviaRichiestaStornoRisposta" />
640
+ </wsdl:message>
641
+
642
+ <wsdl:message name="nodoInviaRispostaRevoca">
643
+ <wsdl:part name="parameters" element="ppt:nodoInviaRispostaRevoca" />
644
+ </wsdl:message>
645
+ <wsdl:message name="nodoInviaRispostaRevocaResponse">
646
+ <wsdl:part name="parameters" element="ppt:nodoInviaRispostaRevocaRisposta" />
647
+ </wsdl:message>
648
+
649
+
650
+ <wsdl:message name="nodoChiediSceltaWISP">
651
+ <wsdl:part name="bodyrichiesta" element="ppt:nodoChiediSceltaWISP">
652
+ </wsdl:part>
653
+ </wsdl:message>
654
+ <wsdl:message name="nodoChiediSceltaWISPResponse">
655
+ <wsdl:part name="bodyrisposta" element="ppt:nodoChiediSceltaWISPRisposta">
656
+ </wsdl:part>
657
+ </wsdl:message>
658
+
659
+ <wsdl:portType name="PagamentiTelematiciRPT">
660
+ <wsdl:operation name="nodoChiediStatoRPT">
661
+ <wsdl:input name="nodoChiediStatoRPT" message="tns:nodoChiediStatoRPT" wsam:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediStatoRPTRichiesta" wsaw:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediStatoRPTRichiesta">
662
+ </wsdl:input>
663
+ <wsdl:output name="nodoChiediStatoRPTResponse" message="tns:nodoChiediStatoRPTResponse" wsam:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediStatoRPTRisposta" wsaw:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediStatoRPTRisposta">
664
+ </wsdl:output>
665
+ </wsdl:operation>
666
+ <wsdl:operation name="nodoChiediListaPendentiRPT">
667
+ <wsdl:input name="nodoChiediListaPendentiRPT" message="tns:nodoChiediListaPendentiRPT" wsam:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediListaPendentiRPT" wsaw:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediListaPendentiRPTRichiesta">
668
+ </wsdl:input>
669
+ <wsdl:output name="nodoChiediListaPendentiRPTResponse" message="tns:nodoChiediListaPendentiRPTResponse" wsam:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediListaPendentiRPTRisposta" wsaw:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediListaPendentiRPTRisposta">
670
+ </wsdl:output>
671
+ </wsdl:operation>
672
+ <wsdl:operation name="nodoInviaRPT">
673
+ <wsdl:input name="nodoInviaRPT" message="tns:nodoInviaRPT" wsam:Action="http://ws.pagamenti.telematici.gov/PPT/nodoInviaRPTRichiesta" wsaw:Action="http://ws.pagamenti.telematici.gov/PPT/nodoInviaRPTRichiesta">
674
+ </wsdl:input>
675
+ <wsdl:output name="nodoInviaRPTResponse" message="tns:nodoInviaRPTResponse" wsam:Action="http://ws.pagamenti.telematici.gov/PPT/nodoInviaRPTRisposta" wsaw:Action="http://ws.pagamenti.telematici.gov/PPT/nodoInviaRPTRisposta">
676
+ </wsdl:output>
677
+ </wsdl:operation>
678
+ <wsdl:operation name="nodoInviaCarrelloRPT">
679
+ <wsdl:input name="nodoInviaCarrelloRPT" message="tns:nodoInviaCarrelloRPT" wsam:Action="http://ws.pagamenti.telematici.gov/PPT/nodoInviaCarrelloRPTRichiesta" wsaw:Action="http://ws.pagamenti.telematici.gov/PPT/nodoInviaCarrelloRPTRichiesta">
680
+ </wsdl:input>
681
+ <wsdl:output name="nodoInviaCarrelloRPTResponse" message="tns:nodoInviaCarrelloRPTResponse" wsam:Action="http://ws.pagamenti.telematici.gov/PPT/nodoInviaCarrelloRPTRisposta" wsaw:Action="http://ws.pagamenti.telematici.gov/PPT/nodoInviaCarrelloRPTRisposta">
682
+ </wsdl:output>
683
+ </wsdl:operation>
684
+ <wsdl:operation name="nodoChiediCopiaRT">
685
+ <wsdl:input name="nodoChiediCopiaRT" message="tns:nodoChiediCopiaRT" wsam:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediCopiaRTRichiesta" wsaw:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediCopiaRTRichiesta">
686
+ </wsdl:input>
687
+ <wsdl:output name="nodoChiediCopiaRTResponse" message="tns:nodoChiediCopiaRTResponse" wsam:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediCopiaRTRisposta" wsaw:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediCopiaRTRisposta">
688
+ </wsdl:output>
689
+ </wsdl:operation>
690
+ <wsdl:operation name="nodoChiediInformativaPSP">
691
+ <wsdl:input name="nodoChiediInformativaPSP" message="tns:nodoChiediInformativaPSP" wsam:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediInformativaPSPRichiesta" wsaw:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediInformativaPSPRichiesta" />
692
+ <wsdl:output name="nodoChiediInformativaPSPResponse" message="tns:nodoChiediInformativaPSPResponse" wsam:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediInformativaPSPRisposta" wsaw:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediInformativaPSPRisposta" />
693
+ </wsdl:operation>
694
+ <wsdl:operation name="nodoPAChiediInformativaPA">
695
+ <wsdl:input name="nodoPAChiediInformativaPA" message="tns:nodoPAChiediInformativaPA" wsam:Action="http://ws.pagamenti.telematici.gov/PPT/nodoPAChiediInformativaPARichiesta" wsaw:Action="http://ws.pagamenti.telematici.gov/PPT/nodoPAChiediInformativaPARichiesta" />
696
+ <wsdl:output name="nodoPAChiediInformativaPAResponse" message="tns:nodoPAChiediInformativaPAResponse" wsam:Action="http://ws.pagamenti.telematici.gov/PPT/nodoPAChiediInformativaPARisposta" wsaw:Action="http://ws.pagamenti.telematici.gov/PPT/nodoPAChiediInformativaPARisposta" />
697
+ </wsdl:operation>
698
+ <wsdl:operation name="nodoChiediElencoQuadraturePA">
699
+ <wsdl:input name="nodoChiediElencoQuadraturePA" message="tns:nodoChiediElencoQuadraturePA" wsam:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediElencoQuadraturePARichiesta" wsaw:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediElencoQuadraturePARichiesta" />
700
+ <wsdl:output name="nodoChiediElencoQuadraturePAResponse" message="tns:nodoChiediElencoQuadraturePAResponse" wsam:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediElencoQuadraturePARisposta" wsaw:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediElencoQuadraturePARisposta" />
701
+ </wsdl:operation>
702
+ <wsdl:operation name="nodoChiediQuadraturaPA">
703
+ <wsdl:input name="nodoChiediQuadraturaPA" message="tns:nodoChiediQuadraturaPA" wsam:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediQuadraturaPARichiesta" wsaw:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediQuadraturaPARichiesta" />
704
+ <wsdl:output name="nodoChiediQuadraturaPAResponse" message="tns:nodoChiediQuadraturaPAResponse" wsam:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediQuadraturaPARisposta" wsaw:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediQuadraturaPARisposta" />
705
+ </wsdl:operation>
706
+ <wsdl:operation name="nodoChiediElencoFlussiRendicontazione">
707
+ <wsdl:input name="nodoChiediElencoFlussiRendicontazione" message="tns:nodoChiediElencoFlussiRendicontazione" wsam:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediElencoFlussiRendicontazioneRichiesta" wsaw:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediElencoFlussiRendicontazioneRichiesta" />
708
+ <wsdl:output name="nodoChiediElencoFlussiRendicontazioneResponse" message="tns:nodoChiediElencoFlussiRendicontazioneResponse" wsam:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediElencoFlussiRendicontazioneRisposta" wsaw:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediElencoFlussiRendicontazioneRisposta" />
709
+ </wsdl:operation>
710
+ <wsdl:operation name="nodoChiediFlussoRendicontazione">
711
+ <wsdl:input name="nodoChiediFlussoRendicontazione" message="tns:nodoChiediFlussoRendicontazione" wsam:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediFlussoRendicontazioneRichiesta" wsaw:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediFlussoRendicontazioneRichiesta" />
712
+ <wsdl:output name="nodoChiediFlussoRendicontazioneResponse" message="tns:nodoChiediFlussoRendicontazioneResponse" wsam:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediFlussoRendicontazioneRisposta" wsaw:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediFlussoRendicontazioneRisposta" />
713
+ </wsdl:operation>
714
+ <wsdl:operation name="nodoInviaRichiestaStorno">
715
+ <wsdl:input name="nodoInviaRichiestaStorno" message="tns:nodoInviaRichiestaStorno" wsam:Action="http://ws.pagamenti.telematici.gov/PPT/nodoInviaRichiestaStorno" wsaw:Action="http://ws.pagamenti.telematici.gov/PPT/nodoInviaRichiestaStorno" />
716
+ <wsdl:output name="nodoInviaRichiestaStornoResponse" message="tns:nodoInviaRichiestaStornoResponse" wsam:Action="http://ws.pagamenti.telematici.gov/PPT/nodoInviaRichiestaStornoRisposta" wsaw:Action="http://ws.pagamenti.telematici.gov/PPT/nodoInviaRichiestaStornoRisposta" />
717
+ </wsdl:operation>
718
+ <wsdl:operation name="nodoInviaRispostaRevoca">
719
+ <wsdl:input name="nodoInviaRispostaRevoca" message="tns:nodoInviaRispostaRevoca" wsam:Action="http://ws.pagamenti.telematici.gov/PPT/nodoInviaRispostaRevoca" wsaw:Action="http://ws.pagamenti.telematici.gov/PPT/nodoInviaRispostaRevoca" />
720
+ <wsdl:output name="nodoInviaRispostaRevocaResponse" message="tns:nodoInviaRispostaRevocaResponse" wsam:Action="http://ws.pagamenti.telematici.gov/PPT/nodoInviaRispostaRevocaRisposta" wsaw:Action="http://ws.pagamenti.telematici.gov/PPT/nodoInviaRispostaRevocaRisposta" />
721
+ </wsdl:operation>
722
+ <wsdl:operation name="nodoChiediSceltaWISP">
723
+ <wsdl:input name="nodoChiediSceltaWISP" message="tns:nodoChiediSceltaWISP" wsam:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediSceltaWISPRichiesta" wsaw:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediSceltaWISPRichiesta">
724
+ </wsdl:input>
725
+ <wsdl:output name="nodoChiediSceltaWISPResponse" message="tns:nodoChiediSceltaWISPResponse" wsam:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediSceltaWISPRisposta" wsaw:Action="http://ws.pagamenti.telematici.gov/PPT/nodoChiediSceltaWISPRisposta">
726
+ </wsdl:output>
727
+ </wsdl:operation>
728
+ </wsdl:portType>
729
+
730
+ <wsdl:binding name="PagamentiTelematiciRPTbinding" type="tns:PagamentiTelematiciRPT">
731
+ <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" />
732
+ <wsdl:operation name="nodoChiediStatoRPT">
733
+ <soap:operation soapAction="nodoChiediStatoRPT" style="document" />
734
+ <wsdl:input name="nodoChiediStatoRPT">
735
+ <soap:body use="literal" />
736
+ </wsdl:input>
737
+ <wsdl:output name="nodoChiediStatoRPTResponse">
738
+ <soap:body use="literal" />
739
+ </wsdl:output>
740
+ </wsdl:operation>
741
+
742
+ <wsdl:operation name="nodoChiediListaPendentiRPT">
743
+ <soap:operation soapAction="nodoChiediListaPendentiRPT" style="document" />
744
+ <wsdl:input name="nodoChiediListaPendentiRPT">
745
+ <soap:body use="literal" />
746
+ </wsdl:input>
747
+ <wsdl:output name="nodoChiediListaPendentiRPTResponse">
748
+ <soap:body use="literal" />
749
+ </wsdl:output>
750
+ </wsdl:operation>
751
+ <wsdl:operation name="nodoInviaRPT">
752
+ <soap:operation soapAction="nodoInviaRPT" style="document" />
753
+ <wsdl:input name="nodoInviaRPT">
754
+ <soap:header message="tns:nodoInviaRPT" part="header" use="literal">
755
+ </soap:header>
756
+ <soap:body parts="bodyrichiesta" use="literal" />
757
+ </wsdl:input>
758
+ <wsdl:output name="nodoInviaRPTResponse">
759
+ <soap:body use="literal" />
760
+ </wsdl:output>
761
+ </wsdl:operation>
762
+ <wsdl:operation name="nodoInviaCarrelloRPT">
763
+ <soap:operation soapAction="nodoInviaCarrelloRPT" style="document" />
764
+ <wsdl:input name="nodoInviaCarrelloRPT">
765
+ <soap:header message="tns:nodoInviaCarrelloRPT" part="header" use="literal">
766
+ </soap:header>
767
+ <soap:body parts="bodyrichiesta" use="literal" />
768
+ </wsdl:input>
769
+ <wsdl:output name="nodoInviaCarrelloRPTResponse">
770
+ <soap:body use="literal" />
771
+ </wsdl:output>
772
+ </wsdl:operation>
773
+ <wsdl:operation name="nodoChiediCopiaRT">
774
+ <soap:operation soapAction="nodoChiediCopiaRT" style="document" />
775
+ <wsdl:input name="nodoChiediCopiaRT">
776
+ <soap:body use="literal" />
777
+ </wsdl:input>
778
+ <wsdl:output name="nodoChiediCopiaRTResponse">
779
+ <soap:body use="literal" />
780
+ </wsdl:output>
781
+ </wsdl:operation>
782
+ <wsdl:operation name="nodoChiediInformativaPSP">
783
+ <soap:operation soapAction="nodoChiediInformativaPSP" style="document" />
784
+ <wsdl:input name="nodoChiediInformativaPSP">
785
+ <soap:body use="literal" />
786
+ </wsdl:input>
787
+ <wsdl:output name="nodoChiediInformativaPSPResponse">
788
+ <soap:body use="literal" />
789
+ </wsdl:output>
790
+ </wsdl:operation>
791
+ <wsdl:operation name="nodoPAChiediInformativaPA">
792
+ <soap:operation soapAction="nodoPAChiediInformativaPA" style="document" />
793
+ <wsdl:input name="nodoPAChiediInformativaPA">
794
+ <soap:body use="literal" />
795
+ </wsdl:input>
796
+ <wsdl:output name="nodoPAChiediInformativaPAResponse">
797
+ <soap:body use="literal" />
798
+ </wsdl:output>
799
+ </wsdl:operation>
800
+ <wsdl:operation name="nodoChiediElencoQuadraturePA">
801
+ <soap:operation soapAction="nodoChiediElencoQuadraturePA" style="document" />
802
+ <wsdl:input name="nodoChiediElencoQuadraturePA">
803
+ <soap:body use="literal" />
804
+ </wsdl:input>
805
+ <wsdl:output name="nodoChiediElencoQuadraturePAResponse">
806
+ <soap:body use="literal" />
807
+ </wsdl:output>
808
+ </wsdl:operation>
809
+ <wsdl:operation name="nodoChiediQuadraturaPA">
810
+ <soap:operation soapAction="nodoChiediQuadraturaPA" style="document" />
811
+ <wsdl:input name="nodoChiediQuadraturaPA">
812
+ <soap:body use="literal" />
813
+ </wsdl:input>
814
+ <wsdl:output name="nodoChiediQuadraturaPAResponse">
815
+ <soap:body use="literal" />
816
+ </wsdl:output>
817
+ </wsdl:operation>
818
+ <wsdl:operation name="nodoChiediElencoFlussiRendicontazione">
819
+ <soap:operation soapAction="nodoChiediElencoFlussiRendicontazione" style="document" />
820
+ <wsdl:input name="nodoChiediElencoFlussiRendicontazione">
821
+ <soap:body use="literal" />
822
+ </wsdl:input>
823
+ <wsdl:output name="nodoChiediElencoFlussiRendicontazioneResponse">
824
+ <soap:body use="literal" />
825
+ </wsdl:output>
826
+ </wsdl:operation>
827
+ <wsdl:operation name="nodoChiediFlussoRendicontazione">
828
+ <soap:operation soapAction="nodoChiediFlussoRendicontazione" style="document" />
829
+ <wsdl:input name="nodoChiediFlussoRendicontazione">
830
+ <soap:body use="literal" />
831
+ </wsdl:input>
832
+ <wsdl:output name="nodoChiediFlussoRendicontazioneResponse">
833
+ <soap:body use="literal" />
834
+ </wsdl:output>
835
+ </wsdl:operation>
836
+ <wsdl:operation name="nodoInviaRichiestaStorno">
837
+ <soap:operation soapAction="nodoInviaRichiestaStorno" style="document" />
838
+ <wsdl:input name="nodoInviaRichiestaStorno">
839
+ <soap:body use="literal" />
840
+ </wsdl:input>
841
+ <wsdl:output name="nodoInviaRichiestaStornoResponse">
842
+ <soap:body use="literal" />
843
+ </wsdl:output>
844
+ </wsdl:operation>
845
+ <wsdl:operation name="nodoInviaRispostaRevoca">
846
+ <soap:operation soapAction="nodoInviaRispostaRevoca" style="document" />
847
+ <wsdl:input name="nodoInviaRispostaRevoca">
848
+ <soap:body use="literal" />
849
+ </wsdl:input>
850
+ <wsdl:output name="nodoInviaRispostaRevocaResponse">
851
+ <soap:body use="literal" />
852
+ </wsdl:output>
853
+ </wsdl:operation>
854
+ <wsdl:operation name="nodoChiediSceltaWISP">
855
+ <soap:operation soapAction="nodoChiediSceltaWISP" style="document" />
856
+ <wsdl:input name="nodoChiediSceltaWISP">
857
+ <soap:body use="literal" />
858
+ </wsdl:input>
859
+ <wsdl:output name="nodoChiediSceltaWISPResponse">
860
+ <soap:body use="literal" />
861
+ </wsdl:output>
862
+ </wsdl:operation>
863
+ </wsdl:binding>
864
+ <wsdl:service name="PagamentiTelematiciRPTservice">
865
+ <wsdl:port name="PagamentiTelematiciRPTPort" binding="tns:PagamentiTelematiciRPTbinding">
866
+ <soap:address location="http://NodoPagamentiSPC.spcoop.gov.it/" />
867
+ </wsdl:port>
868
+ </wsdl:service>
869
+ </wsdl:definitions>