sekken 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +13 -0
- data/.travis.yml +11 -0
- data/.yardopts +6 -0
- data/CONTRIBUTING.md +46 -0
- data/Gemfile +27 -0
- data/MIT-LICENSE +20 -0
- data/README.md +28 -0
- data/Rakefile +21 -0
- data/donate.png +0 -0
- data/lib/sekken.rb +75 -0
- data/lib/sekken/envelope.rb +92 -0
- data/lib/sekken/errors.rb +9 -0
- data/lib/sekken/example_message.rb +41 -0
- data/lib/sekken/httpclient.rb +35 -0
- data/lib/sekken/importer.rb +77 -0
- data/lib/sekken/message.rb +135 -0
- data/lib/sekken/operation.rb +100 -0
- data/lib/sekken/resolver.rb +20 -0
- data/lib/sekken/response.rb +50 -0
- data/lib/sekken/version.rb +5 -0
- data/lib/sekken/wsdl.rb +86 -0
- data/lib/sekken/wsdl/binding.rb +64 -0
- data/lib/sekken/wsdl/binding_operation.rb +85 -0
- data/lib/sekken/wsdl/document.rb +83 -0
- data/lib/sekken/wsdl/document_collection.rb +61 -0
- data/lib/sekken/wsdl/input_output.rb +84 -0
- data/lib/sekken/wsdl/message.rb +38 -0
- data/lib/sekken/wsdl/operation.rb +47 -0
- data/lib/sekken/wsdl/port.rb +29 -0
- data/lib/sekken/wsdl/port_type.rb +38 -0
- data/lib/sekken/wsdl/port_type_operation.rb +42 -0
- data/lib/sekken/wsdl/service.rb +55 -0
- data/lib/sekken/xml/attribute.rb +13 -0
- data/lib/sekken/xml/element.rb +82 -0
- data/lib/sekken/xml/element_builder.rb +220 -0
- data/lib/sekken/xs/schema.rb +57 -0
- data/lib/sekken/xs/schema_collection.rb +49 -0
- data/lib/sekken/xs/types.rb +272 -0
- data/sekken.gemspec +42 -0
- data/spec/fixtures/response/another_soap_fault.xml +14 -0
- data/spec/fixtures/response/authentication.xml +14 -0
- data/spec/fixtures/response/header.xml +13 -0
- data/spec/fixtures/response/list.xml +18 -0
- data/spec/fixtures/response/multi_ref.xml +39 -0
- data/spec/fixtures/response/soap_fault.xml +8 -0
- data/spec/fixtures/response/soap_fault12.xml +18 -0
- data/spec/fixtures/response/taxcloud.xml +1 -0
- data/spec/fixtures/wsdl/amazon.wsdl +1920 -0
- data/spec/fixtures/wsdl/arrays_with_attributes.wsdl +117 -0
- data/spec/fixtures/wsdl/authentication.wsdl +63 -0
- data/spec/fixtures/wsdl/awse.wsdl +1510 -0
- data/spec/fixtures/wsdl/betfair.wsdl +2981 -0
- data/spec/fixtures/wsdl/blz_service.wsdl +88 -0
- data/spec/fixtures/wsdl/bookt/bookt.wsdl +11 -0
- data/spec/fixtures/wsdl/bookt/bookt0.xsd +433 -0
- data/spec/fixtures/wsdl/bookt/bookt1.xsd +42 -0
- data/spec/fixtures/wsdl/bookt/bookt10.xsd +38 -0
- data/spec/fixtures/wsdl/bookt/bookt11.xsd +17 -0
- data/spec/fixtures/wsdl/bookt/bookt12.xsd +18 -0
- data/spec/fixtures/wsdl/bookt/bookt13.xsd +22 -0
- data/spec/fixtures/wsdl/bookt/bookt14.xsd +27 -0
- data/spec/fixtures/wsdl/bookt/bookt15.xsd +28 -0
- data/spec/fixtures/wsdl/bookt/bookt2.wsdl +243 -0
- data/spec/fixtures/wsdl/bookt/bookt2.xsd +81 -0
- data/spec/fixtures/wsdl/bookt/bookt3.wsdl +286 -0
- data/spec/fixtures/wsdl/bookt/bookt3.xsd +61 -0
- data/spec/fixtures/wsdl/bookt/bookt4.xsd +35 -0
- data/spec/fixtures/wsdl/bookt/bookt5.xsd +22 -0
- data/spec/fixtures/wsdl/bookt/bookt6.xsd +26 -0
- data/spec/fixtures/wsdl/bookt/bookt7.xsd +18 -0
- data/spec/fixtures/wsdl/bookt/bookt8.xsd +22 -0
- data/spec/fixtures/wsdl/bookt/bookt9.xsd +29 -0
- data/spec/fixtures/wsdl/bronto.wsdl +3285 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange.wsdl +104 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange0.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange1.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange2.wsdl +119 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange2.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange3.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange4.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange5.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange6.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange7.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange8.xsd +1 -0
- data/spec/fixtures/wsdl/crowd.wsdl +2437 -0
- data/spec/fixtures/wsdl/data_exchange.wsdl +98 -0
- data/spec/fixtures/wsdl/document_literal_wrapped.wsdl +153 -0
- data/spec/fixtures/wsdl/economic.wsdl +65660 -0
- data/spec/fixtures/wsdl/edialog.wsdl +13148 -0
- data/spec/fixtures/wsdl/email_verification.wsdl +394 -0
- data/spec/fixtures/wsdl/equifax.wsdl +794 -0
- data/spec/fixtures/wsdl/geotrust.wsdl +156 -0
- data/spec/fixtures/wsdl/interhome.wsdl +2137 -0
- data/spec/fixtures/wsdl/iws.wsdl +695 -0
- data/spec/fixtures/wsdl/jetairways.wsdl +156 -0
- data/spec/fixtures/wsdl/jira.wsdl +3890 -0
- data/spec/fixtures/wsdl/juniper.wsdl +215 -0
- data/spec/fixtures/wsdl/namespaced_actions.wsdl +307 -0
- data/spec/fixtures/wsdl/oracle.wsdl +3629 -0
- data/spec/fixtures/wsdl/ratp.wsdl +955 -0
- data/spec/fixtures/wsdl/rio2/rio2.wsdl +74 -0
- data/spec/fixtures/wsdl/rio2/rio2_0.wsdl +55 -0
- data/spec/fixtures/wsdl/rio2/rio2_0.xsd +58 -0
- data/spec/fixtures/wsdl/rio2/rio2_1.xsd +41 -0
- data/spec/fixtures/wsdl/rio2/rio2_2.xsd +222 -0
- data/spec/fixtures/wsdl/rio2/rio2_3.xsd +10 -0
- data/spec/fixtures/wsdl/rpc_literal.wsdl +105 -0
- data/spec/fixtures/wsdl/spyne.wsdl +70 -0
- data/spec/fixtures/wsdl/stockquote.wsdl +124 -0
- data/spec/fixtures/wsdl/taxcloud.wsdl +934 -0
- data/spec/fixtures/wsdl/team_software/team_software.wsdl +542 -0
- data/spec/fixtures/wsdl/team_software/team_software0.xsd +448 -0
- data/spec/fixtures/wsdl/team_software/team_software1.xsd +41 -0
- data/spec/fixtures/wsdl/team_software/team_software2.xsd +258 -0
- data/spec/fixtures/wsdl/team_software/team_software3.xsd +14 -0
- data/spec/fixtures/wsdl/telefonkatalogen.wsdl +45 -0
- data/spec/fixtures/wsdl/temperature.wsdl +136 -0
- data/spec/fixtures/wsdl/wasmuth/wasmuth.wsdl +157 -0
- data/spec/fixtures/wsdl/wasmuth/wasmuth1.xsd +210 -0
- data/spec/fixtures/wsdl/wasmuth/wasmuth2.xsd +549 -0
- data/spec/fixtures/wsdl/xignite.wsdl +3470 -0
- data/spec/fixtures/wsdl/yahoo.wsdl +2425 -0
- data/spec/fixtures/wsdl/zanox_export_service.xml +520 -0
- data/spec/integration/amazon_spec.rb +51 -0
- data/spec/integration/authentication_spec.rb +38 -0
- data/spec/integration/awse_spec.rb +95 -0
- data/spec/integration/betfair_spec.rb +179 -0
- data/spec/integration/blz_service_spec.rb +46 -0
- data/spec/integration/bookt_spec.rb +59 -0
- data/spec/integration/bronto_spec.rb +178 -0
- data/spec/integration/bydexchange_spec.rb +40 -0
- data/spec/integration/crowd_spec.rb +44 -0
- data/spec/integration/data_exchange_spec.rb +27 -0
- data/spec/integration/document_literal_spec.rb +104 -0
- data/spec/integration/economic_spec.rb +64 -0
- data/spec/integration/email_verification_spec.rb +82 -0
- data/spec/integration/equifax_spec.rb +216 -0
- data/spec/integration/geotrust_spec.rb +17 -0
- data/spec/integration/interhome_spec.rb +156 -0
- data/spec/integration/iws_spec.rb +27 -0
- data/spec/integration/jetairways_spec.rb +142 -0
- data/spec/integration/jira_spec.rb +27 -0
- data/spec/integration/juniper_spec.rb +20 -0
- data/spec/integration/namespaced_actions_spec.rb +37 -0
- data/spec/integration/oracle_spec.rb +61 -0
- data/spec/integration/ratp_spec.rb +178 -0
- data/spec/integration/rio2_spec.rb +56 -0
- data/spec/integration/rpc_literal_spec.rb +101 -0
- data/spec/integration/spyne_spec.rb +60 -0
- data/spec/integration/stockquote_spec.rb +46 -0
- data/spec/integration/taxcloud_spec.rb +45 -0
- data/spec/integration/team_software_spec.rb +51 -0
- data/spec/integration/telefonkatalogen_spec.rb +42 -0
- data/spec/integration/temperature_spec.rb +71 -0
- data/spec/integration/wasmuth_spec.rb +47 -0
- data/spec/integration/xignite_spec.rb +112 -0
- data/spec/integration/yahoo_spec.rb +116 -0
- data/spec/sekken/httpclient_spec.rb +41 -0
- data/spec/sekken/operation/build_spec.rb +308 -0
- data/spec/sekken/operation/document_literal_spec.rb +53 -0
- data/spec/sekken/operation/example_body_spec.rb +95 -0
- data/spec/sekken/operation/rpc_literal_spec.rb +50 -0
- data/spec/sekken/operation_spec.rb +169 -0
- data/spec/sekken/resolver_spec.rb +38 -0
- data/spec/sekken/response_spec.rb +17 -0
- data/spec/sekken/wsdl/document_spec.rb +191 -0
- data/spec/sekken/wsdl_spec.rb +46 -0
- data/spec/sekken/xs/complex_type_spec.rb +197 -0
- data/spec/sekken/xs/element_spec.rb +82 -0
- data/spec/sekken/xs/simple_type_spec.rb +39 -0
- data/spec/sekken_spec.rb +128 -0
- data/spec/spec_helper.rb +37 -0
- data/spec/support/fixture.rb +19 -0
- data/spec/support/http_mock.rb +43 -0
- metadata +344 -0
@@ -0,0 +1,394 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!-- http://ws.cdyne.com/emailverify/Emailvernotestemail.asmx?wsdl -->
|
3
|
+
<wsdl:definitions xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://ws.cdyne.com/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" targetNamespace="http://ws.cdyne.com/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
|
4
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">These functions deal with Email Address Verification. <b>CDYNE advertises a 100% SLA. Try to find that kind of SLA from other web service vendors!</b></wsdl:documentation>
|
5
|
+
<wsdl:types>
|
6
|
+
<s:schema elementFormDefault="qualified" targetNamespace="http://ws.cdyne.com/">
|
7
|
+
<s:element name="VerifyMXRecord">
|
8
|
+
<s:complexType>
|
9
|
+
<s:sequence>
|
10
|
+
<s:element minOccurs="0" maxOccurs="1" name="email" type="s:string" />
|
11
|
+
<s:element minOccurs="0" maxOccurs="1" name="LicenseKey" type="s:string" />
|
12
|
+
</s:sequence>
|
13
|
+
</s:complexType>
|
14
|
+
</s:element>
|
15
|
+
<s:element name="VerifyMXRecordResponse">
|
16
|
+
<s:complexType>
|
17
|
+
<s:sequence>
|
18
|
+
<s:element minOccurs="1" maxOccurs="1" name="VerifyMXRecordResult" type="s:int" />
|
19
|
+
</s:sequence>
|
20
|
+
</s:complexType>
|
21
|
+
</s:element>
|
22
|
+
<s:element name="AdvancedVerifyEmail">
|
23
|
+
<s:complexType>
|
24
|
+
<s:sequence>
|
25
|
+
<s:element minOccurs="0" maxOccurs="1" name="email" type="s:string" />
|
26
|
+
<s:element minOccurs="1" maxOccurs="1" name="timeout" type="s:int" />
|
27
|
+
<s:element minOccurs="0" maxOccurs="1" name="LicenseKey" type="s:string" />
|
28
|
+
</s:sequence>
|
29
|
+
</s:complexType>
|
30
|
+
</s:element>
|
31
|
+
<s:element name="AdvancedVerifyEmailResponse">
|
32
|
+
<s:complexType>
|
33
|
+
<s:sequence>
|
34
|
+
<s:element minOccurs="0" maxOccurs="1" name="AdvancedVerifyEmailResult" type="tns:ReturnIndicator" />
|
35
|
+
</s:sequence>
|
36
|
+
</s:complexType>
|
37
|
+
</s:element>
|
38
|
+
<s:complexType name="ReturnIndicator">
|
39
|
+
<s:sequence>
|
40
|
+
<s:element minOccurs="0" maxOccurs="1" name="ResponseText" type="s:string" />
|
41
|
+
<s:element minOccurs="1" maxOccurs="1" name="ResponseCode" type="s:int" />
|
42
|
+
<s:element minOccurs="0" maxOccurs="1" name="LastMailServer" type="s:string" />
|
43
|
+
<s:element minOccurs="1" maxOccurs="1" name="GoodEmail" type="s:boolean" />
|
44
|
+
</s:sequence>
|
45
|
+
</s:complexType>
|
46
|
+
<s:element name="VerifyEmail">
|
47
|
+
<s:complexType>
|
48
|
+
<s:sequence>
|
49
|
+
<s:element minOccurs="0" maxOccurs="1" name="email" type="s:string" />
|
50
|
+
<s:element minOccurs="0" maxOccurs="1" name="LicenseKey" type="s:string" />
|
51
|
+
</s:sequence>
|
52
|
+
</s:complexType>
|
53
|
+
</s:element>
|
54
|
+
<s:element name="VerifyEmailResponse">
|
55
|
+
<s:complexType>
|
56
|
+
<s:sequence>
|
57
|
+
<s:element minOccurs="0" maxOccurs="1" name="VerifyEmailResult" type="tns:ReturnIndicator" />
|
58
|
+
</s:sequence>
|
59
|
+
</s:complexType>
|
60
|
+
</s:element>
|
61
|
+
<s:element name="ReturnCodes">
|
62
|
+
<s:complexType />
|
63
|
+
</s:element>
|
64
|
+
<s:element name="ReturnCodesResponse">
|
65
|
+
<s:complexType>
|
66
|
+
<s:sequence>
|
67
|
+
<s:element minOccurs="0" maxOccurs="1" name="ReturnCodesResult" type="tns:ArrayOfAnyType" />
|
68
|
+
</s:sequence>
|
69
|
+
</s:complexType>
|
70
|
+
</s:element>
|
71
|
+
<s:complexType name="ArrayOfAnyType">
|
72
|
+
<s:sequence>
|
73
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="anyType" nillable="true" />
|
74
|
+
</s:sequence>
|
75
|
+
</s:complexType>
|
76
|
+
<s:element name="int" type="s:int" />
|
77
|
+
<s:element name="ReturnIndicator" nillable="true" type="tns:ReturnIndicator" />
|
78
|
+
<s:element name="ArrayOfAnyType" nillable="true" type="tns:ArrayOfAnyType" />
|
79
|
+
</s:schema>
|
80
|
+
</wsdl:types>
|
81
|
+
<wsdl:message name="VerifyMXRecordSoapIn">
|
82
|
+
<wsdl:part name="parameters" element="tns:VerifyMXRecord" />
|
83
|
+
</wsdl:message>
|
84
|
+
<wsdl:message name="VerifyMXRecordSoapOut">
|
85
|
+
<wsdl:part name="parameters" element="tns:VerifyMXRecordResponse" />
|
86
|
+
</wsdl:message>
|
87
|
+
<wsdl:message name="AdvancedVerifyEmailSoapIn">
|
88
|
+
<wsdl:part name="parameters" element="tns:AdvancedVerifyEmail" />
|
89
|
+
</wsdl:message>
|
90
|
+
<wsdl:message name="AdvancedVerifyEmailSoapOut">
|
91
|
+
<wsdl:part name="parameters" element="tns:AdvancedVerifyEmailResponse" />
|
92
|
+
</wsdl:message>
|
93
|
+
<wsdl:message name="VerifyEmailSoapIn">
|
94
|
+
<wsdl:part name="parameters" element="tns:VerifyEmail" />
|
95
|
+
</wsdl:message>
|
96
|
+
<wsdl:message name="VerifyEmailSoapOut">
|
97
|
+
<wsdl:part name="parameters" element="tns:VerifyEmailResponse" />
|
98
|
+
</wsdl:message>
|
99
|
+
<wsdl:message name="ReturnCodesSoapIn">
|
100
|
+
<wsdl:part name="parameters" element="tns:ReturnCodes" />
|
101
|
+
</wsdl:message>
|
102
|
+
<wsdl:message name="ReturnCodesSoapOut">
|
103
|
+
<wsdl:part name="parameters" element="tns:ReturnCodesResponse" />
|
104
|
+
</wsdl:message>
|
105
|
+
<wsdl:message name="VerifyMXRecordHttpGetIn">
|
106
|
+
<wsdl:part name="email" type="s:string" />
|
107
|
+
<wsdl:part name="LicenseKey" type="s:string" />
|
108
|
+
</wsdl:message>
|
109
|
+
<wsdl:message name="VerifyMXRecordHttpGetOut">
|
110
|
+
<wsdl:part name="Body" element="tns:int" />
|
111
|
+
</wsdl:message>
|
112
|
+
<wsdl:message name="AdvancedVerifyEmailHttpGetIn">
|
113
|
+
<wsdl:part name="email" type="s:string" />
|
114
|
+
<wsdl:part name="timeout" type="s:string" />
|
115
|
+
<wsdl:part name="LicenseKey" type="s:string" />
|
116
|
+
</wsdl:message>
|
117
|
+
<wsdl:message name="AdvancedVerifyEmailHttpGetOut">
|
118
|
+
<wsdl:part name="Body" element="tns:ReturnIndicator" />
|
119
|
+
</wsdl:message>
|
120
|
+
<wsdl:message name="VerifyEmailHttpGetIn">
|
121
|
+
<wsdl:part name="email" type="s:string" />
|
122
|
+
<wsdl:part name="LicenseKey" type="s:string" />
|
123
|
+
</wsdl:message>
|
124
|
+
<wsdl:message name="VerifyEmailHttpGetOut">
|
125
|
+
<wsdl:part name="Body" element="tns:ReturnIndicator" />
|
126
|
+
</wsdl:message>
|
127
|
+
<wsdl:message name="ReturnCodesHttpGetIn" />
|
128
|
+
<wsdl:message name="ReturnCodesHttpGetOut">
|
129
|
+
<wsdl:part name="Body" element="tns:ArrayOfAnyType" />
|
130
|
+
</wsdl:message>
|
131
|
+
<wsdl:message name="VerifyMXRecordHttpPostIn">
|
132
|
+
<wsdl:part name="email" type="s:string" />
|
133
|
+
<wsdl:part name="LicenseKey" type="s:string" />
|
134
|
+
</wsdl:message>
|
135
|
+
<wsdl:message name="VerifyMXRecordHttpPostOut">
|
136
|
+
<wsdl:part name="Body" element="tns:int" />
|
137
|
+
</wsdl:message>
|
138
|
+
<wsdl:message name="AdvancedVerifyEmailHttpPostIn">
|
139
|
+
<wsdl:part name="email" type="s:string" />
|
140
|
+
<wsdl:part name="timeout" type="s:string" />
|
141
|
+
<wsdl:part name="LicenseKey" type="s:string" />
|
142
|
+
</wsdl:message>
|
143
|
+
<wsdl:message name="AdvancedVerifyEmailHttpPostOut">
|
144
|
+
<wsdl:part name="Body" element="tns:ReturnIndicator" />
|
145
|
+
</wsdl:message>
|
146
|
+
<wsdl:message name="VerifyEmailHttpPostIn">
|
147
|
+
<wsdl:part name="email" type="s:string" />
|
148
|
+
<wsdl:part name="LicenseKey" type="s:string" />
|
149
|
+
</wsdl:message>
|
150
|
+
<wsdl:message name="VerifyEmailHttpPostOut">
|
151
|
+
<wsdl:part name="Body" element="tns:ReturnIndicator" />
|
152
|
+
</wsdl:message>
|
153
|
+
<wsdl:message name="ReturnCodesHttpPostIn" />
|
154
|
+
<wsdl:message name="ReturnCodesHttpPostOut">
|
155
|
+
<wsdl:part name="Body" element="tns:ArrayOfAnyType" />
|
156
|
+
</wsdl:message>
|
157
|
+
<wsdl:portType name="EmailVerNoTestEmailSoap">
|
158
|
+
<wsdl:operation name="VerifyMXRecord">
|
159
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">This function will verify the domains DNS (MX) mail entries. If the function returns 0 the persons email domain is invalid. More than 0 will indicate there is mail servers to accept an email. This function is great for quick email domain verification. It is not as powerful as the other email routines. Use a LicenseKey of 0 for testing. A -9999 as a result means that you have tested to many emails. Please try again later if you get this value.</wsdl:documentation>
|
160
|
+
<wsdl:input message="tns:VerifyMXRecordSoapIn" />
|
161
|
+
<wsdl:output message="tns:VerifyMXRecordSoapOut" />
|
162
|
+
</wsdl:operation>
|
163
|
+
<wsdl:operation name="AdvancedVerifyEmail">
|
164
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">This function will verify an email address and also includes the ability to timeout the verification process. The Verification can be slowed down by the email server being verified against. <b>Timeout is in seconds</b> Use a licensekey of 0 for testing <br> NOTE: A timeout error (7) does not mean an email will not go through. You should treat this as a good email address.</wsdl:documentation>
|
165
|
+
<wsdl:input message="tns:AdvancedVerifyEmailSoapIn" />
|
166
|
+
<wsdl:output message="tns:AdvancedVerifyEmailSoapOut" />
|
167
|
+
</wsdl:operation>
|
168
|
+
<wsdl:operation name="VerifyEmail">
|
169
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">This function allows you to verify an email address against the mail servers it belongs to. This function differs from the advanced function only by it automatically setting a timeout of 5 seconds</wsdl:documentation>
|
170
|
+
<wsdl:input message="tns:VerifyEmailSoapIn" />
|
171
|
+
<wsdl:output message="tns:VerifyEmailSoapOut" />
|
172
|
+
</wsdl:operation>
|
173
|
+
<wsdl:operation name="ReturnCodes">
|
174
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">This function will give you all the possible code returns</wsdl:documentation>
|
175
|
+
<wsdl:input message="tns:ReturnCodesSoapIn" />
|
176
|
+
<wsdl:output message="tns:ReturnCodesSoapOut" />
|
177
|
+
</wsdl:operation>
|
178
|
+
</wsdl:portType>
|
179
|
+
<wsdl:portType name="EmailVerNoTestEmailHttpGet">
|
180
|
+
<wsdl:operation name="VerifyMXRecord">
|
181
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">This function will verify the domains DNS (MX) mail entries. If the function returns 0 the persons email domain is invalid. More than 0 will indicate there is mail servers to accept an email. This function is great for quick email domain verification. It is not as powerful as the other email routines. Use a LicenseKey of 0 for testing. A -9999 as a result means that you have tested to many emails. Please try again later if you get this value.</wsdl:documentation>
|
182
|
+
<wsdl:input message="tns:VerifyMXRecordHttpGetIn" />
|
183
|
+
<wsdl:output message="tns:VerifyMXRecordHttpGetOut" />
|
184
|
+
</wsdl:operation>
|
185
|
+
<wsdl:operation name="AdvancedVerifyEmail">
|
186
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">This function will verify an email address and also includes the ability to timeout the verification process. The Verification can be slowed down by the email server being verified against. <b>Timeout is in seconds</b> Use a licensekey of 0 for testing <br> NOTE: A timeout error (7) does not mean an email will not go through. You should treat this as a good email address.</wsdl:documentation>
|
187
|
+
<wsdl:input message="tns:AdvancedVerifyEmailHttpGetIn" />
|
188
|
+
<wsdl:output message="tns:AdvancedVerifyEmailHttpGetOut" />
|
189
|
+
</wsdl:operation>
|
190
|
+
<wsdl:operation name="VerifyEmail">
|
191
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">This function allows you to verify an email address against the mail servers it belongs to. This function differs from the advanced function only by it automatically setting a timeout of 5 seconds</wsdl:documentation>
|
192
|
+
<wsdl:input message="tns:VerifyEmailHttpGetIn" />
|
193
|
+
<wsdl:output message="tns:VerifyEmailHttpGetOut" />
|
194
|
+
</wsdl:operation>
|
195
|
+
<wsdl:operation name="ReturnCodes">
|
196
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">This function will give you all the possible code returns</wsdl:documentation>
|
197
|
+
<wsdl:input message="tns:ReturnCodesHttpGetIn" />
|
198
|
+
<wsdl:output message="tns:ReturnCodesHttpGetOut" />
|
199
|
+
</wsdl:operation>
|
200
|
+
</wsdl:portType>
|
201
|
+
<wsdl:portType name="EmailVerNoTestEmailHttpPost">
|
202
|
+
<wsdl:operation name="VerifyMXRecord">
|
203
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">This function will verify the domains DNS (MX) mail entries. If the function returns 0 the persons email domain is invalid. More than 0 will indicate there is mail servers to accept an email. This function is great for quick email domain verification. It is not as powerful as the other email routines. Use a LicenseKey of 0 for testing. A -9999 as a result means that you have tested to many emails. Please try again later if you get this value.</wsdl:documentation>
|
204
|
+
<wsdl:input message="tns:VerifyMXRecordHttpPostIn" />
|
205
|
+
<wsdl:output message="tns:VerifyMXRecordHttpPostOut" />
|
206
|
+
</wsdl:operation>
|
207
|
+
<wsdl:operation name="AdvancedVerifyEmail">
|
208
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">This function will verify an email address and also includes the ability to timeout the verification process. The Verification can be slowed down by the email server being verified against. <b>Timeout is in seconds</b> Use a licensekey of 0 for testing <br> NOTE: A timeout error (7) does not mean an email will not go through. You should treat this as a good email address.</wsdl:documentation>
|
209
|
+
<wsdl:input message="tns:AdvancedVerifyEmailHttpPostIn" />
|
210
|
+
<wsdl:output message="tns:AdvancedVerifyEmailHttpPostOut" />
|
211
|
+
</wsdl:operation>
|
212
|
+
<wsdl:operation name="VerifyEmail">
|
213
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">This function allows you to verify an email address against the mail servers it belongs to. This function differs from the advanced function only by it automatically setting a timeout of 5 seconds</wsdl:documentation>
|
214
|
+
<wsdl:input message="tns:VerifyEmailHttpPostIn" />
|
215
|
+
<wsdl:output message="tns:VerifyEmailHttpPostOut" />
|
216
|
+
</wsdl:operation>
|
217
|
+
<wsdl:operation name="ReturnCodes">
|
218
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">This function will give you all the possible code returns</wsdl:documentation>
|
219
|
+
<wsdl:input message="tns:ReturnCodesHttpPostIn" />
|
220
|
+
<wsdl:output message="tns:ReturnCodesHttpPostOut" />
|
221
|
+
</wsdl:operation>
|
222
|
+
</wsdl:portType>
|
223
|
+
<wsdl:binding name="EmailVerNoTestEmailSoap" type="tns:EmailVerNoTestEmailSoap">
|
224
|
+
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
|
225
|
+
<wsdl:operation name="VerifyMXRecord">
|
226
|
+
<soap:operation soapAction="http://ws.cdyne.com/VerifyMXRecord" style="document" />
|
227
|
+
<wsdl:input>
|
228
|
+
<soap:body use="literal" />
|
229
|
+
</wsdl:input>
|
230
|
+
<wsdl:output>
|
231
|
+
<soap:body use="literal" />
|
232
|
+
</wsdl:output>
|
233
|
+
</wsdl:operation>
|
234
|
+
<wsdl:operation name="AdvancedVerifyEmail">
|
235
|
+
<soap:operation soapAction="http://ws.cdyne.com/AdvancedVerifyEmail" style="document" />
|
236
|
+
<wsdl:input>
|
237
|
+
<soap:body use="literal" />
|
238
|
+
</wsdl:input>
|
239
|
+
<wsdl:output>
|
240
|
+
<soap:body use="literal" />
|
241
|
+
</wsdl:output>
|
242
|
+
</wsdl:operation>
|
243
|
+
<wsdl:operation name="VerifyEmail">
|
244
|
+
<soap:operation soapAction="http://ws.cdyne.com/VerifyEmail" style="document" />
|
245
|
+
<wsdl:input>
|
246
|
+
<soap:body use="literal" />
|
247
|
+
</wsdl:input>
|
248
|
+
<wsdl:output>
|
249
|
+
<soap:body use="literal" />
|
250
|
+
</wsdl:output>
|
251
|
+
</wsdl:operation>
|
252
|
+
<wsdl:operation name="ReturnCodes">
|
253
|
+
<soap:operation soapAction="http://ws.cdyne.com/ReturnCodes" style="document" />
|
254
|
+
<wsdl:input>
|
255
|
+
<soap:body use="literal" />
|
256
|
+
</wsdl:input>
|
257
|
+
<wsdl:output>
|
258
|
+
<soap:body use="literal" />
|
259
|
+
</wsdl:output>
|
260
|
+
</wsdl:operation>
|
261
|
+
</wsdl:binding>
|
262
|
+
<wsdl:binding name="EmailVerNoTestEmailSoap12" type="tns:EmailVerNoTestEmailSoap">
|
263
|
+
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
|
264
|
+
<wsdl:operation name="VerifyMXRecord">
|
265
|
+
<soap12:operation soapAction="http://ws.cdyne.com/VerifyMXRecord" style="document" />
|
266
|
+
<wsdl:input>
|
267
|
+
<soap12:body use="literal" />
|
268
|
+
</wsdl:input>
|
269
|
+
<wsdl:output>
|
270
|
+
<soap12:body use="literal" />
|
271
|
+
</wsdl:output>
|
272
|
+
</wsdl:operation>
|
273
|
+
<wsdl:operation name="AdvancedVerifyEmail">
|
274
|
+
<soap12:operation soapAction="http://ws.cdyne.com/AdvancedVerifyEmail" style="document" />
|
275
|
+
<wsdl:input>
|
276
|
+
<soap12:body use="literal" />
|
277
|
+
</wsdl:input>
|
278
|
+
<wsdl:output>
|
279
|
+
<soap12:body use="literal" />
|
280
|
+
</wsdl:output>
|
281
|
+
</wsdl:operation>
|
282
|
+
<wsdl:operation name="VerifyEmail">
|
283
|
+
<soap12:operation soapAction="http://ws.cdyne.com/VerifyEmail" style="document" />
|
284
|
+
<wsdl:input>
|
285
|
+
<soap12:body use="literal" />
|
286
|
+
</wsdl:input>
|
287
|
+
<wsdl:output>
|
288
|
+
<soap12:body use="literal" />
|
289
|
+
</wsdl:output>
|
290
|
+
</wsdl:operation>
|
291
|
+
<wsdl:operation name="ReturnCodes">
|
292
|
+
<soap12:operation soapAction="http://ws.cdyne.com/ReturnCodes" style="document" />
|
293
|
+
<wsdl:input>
|
294
|
+
<soap12:body use="literal" />
|
295
|
+
</wsdl:input>
|
296
|
+
<wsdl:output>
|
297
|
+
<soap12:body use="literal" />
|
298
|
+
</wsdl:output>
|
299
|
+
</wsdl:operation>
|
300
|
+
</wsdl:binding>
|
301
|
+
<wsdl:binding name="EmailVerNoTestEmailHttpGet" type="tns:EmailVerNoTestEmailHttpGet">
|
302
|
+
<http:binding verb="GET" />
|
303
|
+
<wsdl:operation name="VerifyMXRecord">
|
304
|
+
<http:operation location="/VerifyMXRecord" />
|
305
|
+
<wsdl:input>
|
306
|
+
<http:urlEncoded />
|
307
|
+
</wsdl:input>
|
308
|
+
<wsdl:output>
|
309
|
+
<mime:mimeXml part="Body" />
|
310
|
+
</wsdl:output>
|
311
|
+
</wsdl:operation>
|
312
|
+
<wsdl:operation name="AdvancedVerifyEmail">
|
313
|
+
<http:operation location="/AdvancedVerifyEmail" />
|
314
|
+
<wsdl:input>
|
315
|
+
<http:urlEncoded />
|
316
|
+
</wsdl:input>
|
317
|
+
<wsdl:output>
|
318
|
+
<mime:mimeXml part="Body" />
|
319
|
+
</wsdl:output>
|
320
|
+
</wsdl:operation>
|
321
|
+
<wsdl:operation name="VerifyEmail">
|
322
|
+
<http:operation location="/VerifyEmail" />
|
323
|
+
<wsdl:input>
|
324
|
+
<http:urlEncoded />
|
325
|
+
</wsdl:input>
|
326
|
+
<wsdl:output>
|
327
|
+
<mime:mimeXml part="Body" />
|
328
|
+
</wsdl:output>
|
329
|
+
</wsdl:operation>
|
330
|
+
<wsdl:operation name="ReturnCodes">
|
331
|
+
<http:operation location="/ReturnCodes" />
|
332
|
+
<wsdl:input>
|
333
|
+
<http:urlEncoded />
|
334
|
+
</wsdl:input>
|
335
|
+
<wsdl:output>
|
336
|
+
<mime:mimeXml part="Body" />
|
337
|
+
</wsdl:output>
|
338
|
+
</wsdl:operation>
|
339
|
+
</wsdl:binding>
|
340
|
+
<wsdl:binding name="EmailVerNoTestEmailHttpPost" type="tns:EmailVerNoTestEmailHttpPost">
|
341
|
+
<http:binding verb="POST" />
|
342
|
+
<wsdl:operation name="VerifyMXRecord">
|
343
|
+
<http:operation location="/VerifyMXRecord" />
|
344
|
+
<wsdl:input>
|
345
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
346
|
+
</wsdl:input>
|
347
|
+
<wsdl:output>
|
348
|
+
<mime:mimeXml part="Body" />
|
349
|
+
</wsdl:output>
|
350
|
+
</wsdl:operation>
|
351
|
+
<wsdl:operation name="AdvancedVerifyEmail">
|
352
|
+
<http:operation location="/AdvancedVerifyEmail" />
|
353
|
+
<wsdl:input>
|
354
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
355
|
+
</wsdl:input>
|
356
|
+
<wsdl:output>
|
357
|
+
<mime:mimeXml part="Body" />
|
358
|
+
</wsdl:output>
|
359
|
+
</wsdl:operation>
|
360
|
+
<wsdl:operation name="VerifyEmail">
|
361
|
+
<http:operation location="/VerifyEmail" />
|
362
|
+
<wsdl:input>
|
363
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
364
|
+
</wsdl:input>
|
365
|
+
<wsdl:output>
|
366
|
+
<mime:mimeXml part="Body" />
|
367
|
+
</wsdl:output>
|
368
|
+
</wsdl:operation>
|
369
|
+
<wsdl:operation name="ReturnCodes">
|
370
|
+
<http:operation location="/ReturnCodes" />
|
371
|
+
<wsdl:input>
|
372
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
373
|
+
</wsdl:input>
|
374
|
+
<wsdl:output>
|
375
|
+
<mime:mimeXml part="Body" />
|
376
|
+
</wsdl:output>
|
377
|
+
</wsdl:operation>
|
378
|
+
</wsdl:binding>
|
379
|
+
<wsdl:service name="EmailVerNoTestEmail">
|
380
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">These functions deal with Email Address Verification. <b>CDYNE advertises a 100% SLA. Try to find that kind of SLA from other web service vendors!</b></wsdl:documentation>
|
381
|
+
<wsdl:port name="EmailVerNoTestEmailSoap" binding="tns:EmailVerNoTestEmailSoap">
|
382
|
+
<soap:address location="http://ws.cdyne.com/emailverify/Emailvernotestemail.asmx" />
|
383
|
+
</wsdl:port>
|
384
|
+
<wsdl:port name="EmailVerNoTestEmailSoap12" binding="tns:EmailVerNoTestEmailSoap12">
|
385
|
+
<soap12:address location="http://ws.cdyne.com/emailverify/Emailvernotestemail.asmx" />
|
386
|
+
</wsdl:port>
|
387
|
+
<wsdl:port name="EmailVerNoTestEmailHttpGet" binding="tns:EmailVerNoTestEmailHttpGet">
|
388
|
+
<http:address location="http://ws.cdyne.com/emailverify/Emailvernotestemail.asmx" />
|
389
|
+
</wsdl:port>
|
390
|
+
<wsdl:port name="EmailVerNoTestEmailHttpPost" binding="tns:EmailVerNoTestEmailHttpPost">
|
391
|
+
<http:address location="http://ws.cdyne.com/emailverify/Emailvernotestemail.asmx" />
|
392
|
+
</wsdl:port>
|
393
|
+
</wsdl:service>
|
394
|
+
</wsdl:definitions>
|
@@ -0,0 +1,794 @@
|
|
1
|
+
<?xml version='1.0' encoding='UTF-8'?><wsdl:definitions targetNamespace="http://eid.equifax.com/soap/schema/canada/v2/wsdl" xmlns:ns1="http://eid.equifax.com/soap/schema/canada/v2" xmlns:soap11="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope" xmlns:soapenc11="http://schemas.xmlsoap.org/soap/encoding/" xmlns:soapenc12="http://www.w3.org/2003/05/soap-encoding" xmlns:tns="http://eid.equifax.com/soap/schema/canada/v2/wsdl" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
2
|
+
<wsdl:types>
|
3
|
+
<schema elementFormDefault="qualified" targetNamespace="http://eid.equifax.com/soap/schema/canada/v2" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:eid="http://eid.equifax.com/soap/schema/canada/v2" xmlns:ns1="http://eid.equifax.com/soap/schema/canada/v2" xmlns:soap11="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope" xmlns:soapenc11="http://schemas.xmlsoap.org/soap/encoding/" xmlns:soapenc12="http://www.w3.org/2003/05/soap-encoding" xmlns:tns="http://eid.equifax.com/soap/schema/canada/v2/wsdl" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
4
|
+
<element name="InitialRequest">
|
5
|
+
<complexType>
|
6
|
+
<sequence>
|
7
|
+
<element ref="eid:Identity"/>
|
8
|
+
<element name="ProcessingOptions">
|
9
|
+
<complexType>
|
10
|
+
|
11
|
+
<sequence>
|
12
|
+
<element name="Language">
|
13
|
+
<simpleType>
|
14
|
+
<restriction base="string">
|
15
|
+
<enumeration value="English"/>
|
16
|
+
<enumeration value="French"/>
|
17
|
+
</restriction>
|
18
|
+
</simpleType>
|
19
|
+
</element>
|
20
|
+
|
21
|
+
<element minOccurs="0" name="EnvironmentOverride">
|
22
|
+
<simpleType>
|
23
|
+
<restriction base="string">
|
24
|
+
<minLength value="1"/>
|
25
|
+
<enumeration value="dev"/>
|
26
|
+
<enumeration value="qa"/>
|
27
|
+
<enumeration value="uat"/>
|
28
|
+
<enumeration value="production"/>
|
29
|
+
<enumeration value="batch"/>
|
30
|
+
|
31
|
+
</restriction>
|
32
|
+
</simpleType>
|
33
|
+
</element>
|
34
|
+
</sequence>
|
35
|
+
</complexType>
|
36
|
+
</element>
|
37
|
+
</sequence>
|
38
|
+
</complexType>
|
39
|
+
</element>
|
40
|
+
|
41
|
+
<element name="InitialResponse">
|
42
|
+
<complexType>
|
43
|
+
<choice>
|
44
|
+
<element ref="eid:FieldChecksFailed"/>
|
45
|
+
<element ref="eid:ApplicationVerification"/>
|
46
|
+
<element ref="eid:FraudCheckFailed"/>
|
47
|
+
<element ref="eid:InteractiveQuery"/>
|
48
|
+
<element ref="eid:AssesmentComplete"/>
|
49
|
+
<element ref="eid:SystemProblem"/>
|
50
|
+
|
51
|
+
</choice>
|
52
|
+
<attributeGroup ref="eid:TransactionKey"/>
|
53
|
+
</complexType>
|
54
|
+
</element>
|
55
|
+
<element name="UpdateRequest">
|
56
|
+
<complexType>
|
57
|
+
<sequence>
|
58
|
+
<element maxOccurs="3" minOccurs="0" ref="eid:Address"/>
|
59
|
+
<element minOccurs="0" ref="eid:SIN"/>
|
60
|
+
|
61
|
+
<element minOccurs="0" ref="eid:DateOfBirth"/>
|
62
|
+
<element minOccurs="0" ref="eid:DriversLicense"/>
|
63
|
+
<element maxOccurs="3" minOccurs="0" ref="eid:PhoneNumber"/>
|
64
|
+
</sequence>
|
65
|
+
<attributeGroup ref="eid:TransactionKey"/>
|
66
|
+
</complexType>
|
67
|
+
</element>
|
68
|
+
<element name="UpdateResponse">
|
69
|
+
<complexType>
|
70
|
+
|
71
|
+
<choice>
|
72
|
+
<element ref="eid:FieldChecksFailed"/>
|
73
|
+
<element ref="eid:ApplicationVerification"/>
|
74
|
+
<element ref="eid:FraudCheckFailed"/>
|
75
|
+
<element ref="eid:InteractiveQuery"/>
|
76
|
+
<element ref="eid:AssesmentComplete"/>
|
77
|
+
<element ref="eid:SystemProblem"/>
|
78
|
+
</choice>
|
79
|
+
<attributeGroup ref="eid:TransactionKey"/>
|
80
|
+
|
81
|
+
</complexType>
|
82
|
+
</element>
|
83
|
+
<element name="IQAnswerRequest">
|
84
|
+
<complexType>
|
85
|
+
<choice>
|
86
|
+
<element maxOccurs="6" name="Answer">
|
87
|
+
<complexType>
|
88
|
+
<attributeGroup ref="eid:QuestionAttributes"/>
|
89
|
+
<attributeGroup ref="eid:AnswerAttributes"/>
|
90
|
+
|
91
|
+
</complexType>
|
92
|
+
</element>
|
93
|
+
</choice>
|
94
|
+
<attributeGroup ref="eid:TransactionKey"/>
|
95
|
+
<attributeGroup ref="eid:InteractiveQueryAttributes"/>
|
96
|
+
</complexType>
|
97
|
+
</element>
|
98
|
+
<element name="FinalResponse">
|
99
|
+
<complexType>
|
100
|
+
<choice>
|
101
|
+
<element ref="eid:InteractiveQuery"/>
|
102
|
+
<element ref="eid:AssesmentComplete"/>
|
103
|
+
<element ref="eid:SystemProblem"/>
|
104
|
+
</choice>
|
105
|
+
<attributeGroup ref="eid:TransactionKey"/>
|
106
|
+
</complexType>
|
107
|
+
</element>
|
108
|
+
<element name="Identity">
|
109
|
+
<complexType>
|
110
|
+
<sequence>
|
111
|
+
|
112
|
+
<element name="Name">
|
113
|
+
<complexType>
|
114
|
+
<sequence>
|
115
|
+
<element name="FirstName">
|
116
|
+
<simpleType>
|
117
|
+
<restriction base="string">
|
118
|
+
<minLength value="1"/>
|
119
|
+
<pattern value="([a-zA-ZÀàÂâÇçÉéÈèÊêËëÎîÏïÔôÙùÛûÜü](\. |[\-'\. ])?)*"/>
|
120
|
+
</restriction>
|
121
|
+
|
122
|
+
</simpleType>
|
123
|
+
</element>
|
124
|
+
<choice minOccurs="0">
|
125
|
+
<element name="MiddleName">
|
126
|
+
<simpleType>
|
127
|
+
<restriction base="string">
|
128
|
+
<minLength value="1"/>
|
129
|
+
<pattern value="([a-zA-ZÀàÂâÇçÉéÈèÊêËëÎîÏïÔôÙùÛûÜü](\. |[\-'\. ])?)*"/>
|
130
|
+
</restriction>
|
131
|
+
|
132
|
+
</simpleType>
|
133
|
+
</element>
|
134
|
+
<element name="MiddleInitial">
|
135
|
+
<simpleType>
|
136
|
+
<restriction base="string">
|
137
|
+
<length value="1"/>
|
138
|
+
<pattern value="([a-zA-ZÀàÂâÇçÉéÈèÊêËëÎîÏïÔôÙùÛûÜü](\. |[\-'\. ])?)*"/>
|
139
|
+
</restriction>
|
140
|
+
</simpleType>
|
141
|
+
|
142
|
+
</element>
|
143
|
+
</choice>
|
144
|
+
<element name="LastName">
|
145
|
+
<simpleType>
|
146
|
+
<restriction base="string">
|
147
|
+
<minLength value="1"/>
|
148
|
+
<pattern value="([a-zA-ZÀàÂâÇçÉéÈèÊêËëÎîÏïÔôÙùÛûÜü](\. |[\-'\. ])?)*"/>
|
149
|
+
</restriction>
|
150
|
+
</simpleType>
|
151
|
+
|
152
|
+
</element>
|
153
|
+
<element minOccurs="0" name="Suffix">
|
154
|
+
<simpleType>
|
155
|
+
<restriction base="string">
|
156
|
+
<minLength value="1"/>
|
157
|
+
<enumeration value="JR"/>
|
158
|
+
<enumeration value="SR"/>
|
159
|
+
<enumeration value="I"/>
|
160
|
+
<enumeration value="II"/>
|
161
|
+
|
162
|
+
<enumeration value="III"/>
|
163
|
+
<enumeration value="IV"/>
|
164
|
+
<enumeration value="V"/>
|
165
|
+
<enumeration value="VI"/>
|
166
|
+
<enumeration value="VII"/>
|
167
|
+
<enumeration value="VIII"/>
|
168
|
+
<enumeration value="IX"/>
|
169
|
+
</restriction>
|
170
|
+
</simpleType>
|
171
|
+
|
172
|
+
</element>
|
173
|
+
</sequence>
|
174
|
+
</complexType>
|
175
|
+
</element>
|
176
|
+
<element maxOccurs="3" ref="eid:Address"/>
|
177
|
+
<element minOccurs="0" ref="eid:SIN"/>
|
178
|
+
<element minOccurs="0" ref="eid:DateOfBirth"/>
|
179
|
+
<element minOccurs="0" ref="eid:DriversLicense"/>
|
180
|
+
<element maxOccurs="3" minOccurs="0" ref="eid:PhoneNumber"/>
|
181
|
+
|
182
|
+
<element minOccurs="0" ref="eid:Email"/>
|
183
|
+
<element minOccurs="0" name="IPAddress">
|
184
|
+
<simpleType>
|
185
|
+
<restriction base="string">
|
186
|
+
<maxLength value="15"/>
|
187
|
+
<minLength value="7"/>
|
188
|
+
<pattern value="[0-9][0-9]?[0-9]?[\.][0-9][0-9]?[0-9]?[\.][0-9][0-9]?[0-9]?[\.][0-9][0-9]?[0-9]?"/>
|
189
|
+
</restriction>
|
190
|
+
</simpleType>
|
191
|
+
|
192
|
+
</element>
|
193
|
+
<element minOccurs="0" name="CreditCardNumber">
|
194
|
+
<simpleType>
|
195
|
+
<restriction base="string">
|
196
|
+
<minLength value="13"/>
|
197
|
+
<maxLength value="20"/>
|
198
|
+
</restriction>
|
199
|
+
</simpleType>
|
200
|
+
</element>
|
201
|
+
|
202
|
+
<element minOccurs="0" name="CustomerId">
|
203
|
+
<simpleType>
|
204
|
+
<restriction base="string">
|
205
|
+
<maxLength value="30"/>
|
206
|
+
</restriction>
|
207
|
+
</simpleType>
|
208
|
+
</element>
|
209
|
+
</sequence>
|
210
|
+
</complexType>
|
211
|
+
|
212
|
+
</element>
|
213
|
+
<element name="AddressLine">
|
214
|
+
<simpleType>
|
215
|
+
<restriction base="string">
|
216
|
+
<maxLength value="60"/>
|
217
|
+
<minLength value="1"/>
|
218
|
+
<pattern value="[a-zA-Z0-9#/,\- .ÀàÂâÇçÉéÈèÊêËëÎîÏïÔôÙùÛûÜü]*"/>
|
219
|
+
</restriction>
|
220
|
+
</simpleType>
|
221
|
+
|
222
|
+
</element>
|
223
|
+
<element name="City">
|
224
|
+
<simpleType>
|
225
|
+
<restriction base="string">
|
226
|
+
<minLength value="1"/>
|
227
|
+
<maxLength value="25"/>
|
228
|
+
<pattern value="[a-zA-Z0-9 .'\-ÀàÂâÇçÉéÈèÊêËëÎîÏïÔôÙùÛûÜü]*"/>
|
229
|
+
</restriction>
|
230
|
+
</simpleType>
|
231
|
+
|
232
|
+
</element>
|
233
|
+
<element name="Province">
|
234
|
+
<simpleType>
|
235
|
+
<restriction base="string">
|
236
|
+
<length value="2"/>
|
237
|
+
<pattern value="[A-Z][A-Z]"/>
|
238
|
+
</restriction>
|
239
|
+
</simpleType>
|
240
|
+
</element>
|
241
|
+
|
242
|
+
<element name="PostalCode">
|
243
|
+
<simpleType>
|
244
|
+
<restriction base="string">
|
245
|
+
<minLength value="5"/>
|
246
|
+
<maxLength value="6"/>
|
247
|
+
<pattern value="[a-zA-Z][0-9][a-zA-Z]*[0-9][a-zA-Z][0-9]"/>
|
248
|
+
</restriction>
|
249
|
+
</simpleType>
|
250
|
+
</element>
|
251
|
+
|
252
|
+
<attributeGroup name="TransactionKey">
|
253
|
+
<attribute name="transactionKey" use="required">
|
254
|
+
<simpleType>
|
255
|
+
<restriction base="string">
|
256
|
+
<length value="25"/>
|
257
|
+
<pattern value="[0-9]+"/>
|
258
|
+
</restriction>
|
259
|
+
</simpleType>
|
260
|
+
</attribute>
|
261
|
+
|
262
|
+
</attributeGroup>
|
263
|
+
<attributeGroup name="AddressAttributes">
|
264
|
+
<attribute name="addressType" use="required">
|
265
|
+
<simpleType>
|
266
|
+
<restriction base="string">
|
267
|
+
<enumeration value="Current"/>
|
268
|
+
<enumeration value="Former"/>
|
269
|
+
<enumeration value="Other"/>
|
270
|
+
</restriction>
|
271
|
+
|
272
|
+
</simpleType>
|
273
|
+
</attribute>
|
274
|
+
</attributeGroup>
|
275
|
+
<attributeGroup name="DLAddressAttributes">
|
276
|
+
<attribute name="driversLicenseAddressType" use="optional">
|
277
|
+
<simpleType>
|
278
|
+
<restriction base="string">
|
279
|
+
<enumeration value="Current"/>
|
280
|
+
<enumeration value="Former"/>
|
281
|
+
|
282
|
+
<enumeration value="Other"/>
|
283
|
+
</restriction>
|
284
|
+
</simpleType>
|
285
|
+
</attribute>
|
286
|
+
</attributeGroup>
|
287
|
+
<element name="Address">
|
288
|
+
<complexType>
|
289
|
+
<choice>
|
290
|
+
<element ref="eid:FreeFormAddress"/>
|
291
|
+
|
292
|
+
<element ref="eid:HybridAddress"/>
|
293
|
+
</choice>
|
294
|
+
<attribute name="timeAtAddress">
|
295
|
+
<simpleType>
|
296
|
+
<restriction base="nonNegativeInteger">
|
297
|
+
<minInclusive value="0"/>
|
298
|
+
<maxInclusive value="120"/>
|
299
|
+
</restriction>
|
300
|
+
</simpleType>
|
301
|
+
|
302
|
+
</attribute>
|
303
|
+
<attributeGroup ref="eid:AddressAttributes"/>
|
304
|
+
</complexType>
|
305
|
+
</element>
|
306
|
+
<element name="SIN">
|
307
|
+
<simpleType>
|
308
|
+
<restriction base="string">
|
309
|
+
<length value="9"/>
|
310
|
+
<pattern value="[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]"/>
|
311
|
+
|
312
|
+
</restriction>
|
313
|
+
</simpleType>
|
314
|
+
</element>
|
315
|
+
<element name="DateOfBirth">
|
316
|
+
<complexType>
|
317
|
+
<sequence>
|
318
|
+
<element name="Day">
|
319
|
+
<simpleType>
|
320
|
+
<restriction base="positiveInteger">
|
321
|
+
|
322
|
+
<minInclusive value="1"/>
|
323
|
+
<maxInclusive value="31"/>
|
324
|
+
</restriction>
|
325
|
+
</simpleType>
|
326
|
+
</element>
|
327
|
+
<element name="Month">
|
328
|
+
<simpleType>
|
329
|
+
<restriction base="positiveInteger">
|
330
|
+
<minInclusive value="1"/>
|
331
|
+
|
332
|
+
<maxInclusive value="12"/>
|
333
|
+
</restriction>
|
334
|
+
</simpleType>
|
335
|
+
</element>
|
336
|
+
<element name="Year">
|
337
|
+
<simpleType>
|
338
|
+
<restriction base="positiveInteger">
|
339
|
+
<minInclusive value="1890"/>
|
340
|
+
<maxInclusive value="2099"/>
|
341
|
+
|
342
|
+
</restriction>
|
343
|
+
</simpleType>
|
344
|
+
</element>
|
345
|
+
</sequence>
|
346
|
+
</complexType>
|
347
|
+
</element>
|
348
|
+
<element name="DriversLicense">
|
349
|
+
<complexType>
|
350
|
+
<sequence>
|
351
|
+
|
352
|
+
<element name="Number">
|
353
|
+
<simpleType>
|
354
|
+
<restriction base="string">
|
355
|
+
<maxLength value="30"/>
|
356
|
+
<minLength value="1"/>
|
357
|
+
</restriction>
|
358
|
+
</simpleType>
|
359
|
+
</element>
|
360
|
+
<element ref="eid:Province"/>
|
361
|
+
|
362
|
+
</sequence>
|
363
|
+
<attributeGroup ref="eid:DLAddressAttributes"/>
|
364
|
+
</complexType>
|
365
|
+
</element>
|
366
|
+
<element name="PhoneNumber">
|
367
|
+
<complexType>
|
368
|
+
<choice>
|
369
|
+
<sequence>
|
370
|
+
<element name="AreaCode">
|
371
|
+
|
372
|
+
<simpleType>
|
373
|
+
<restriction base="string">
|
374
|
+
<length value="3"/>
|
375
|
+
<pattern value="[0-9]+"/>
|
376
|
+
</restriction>
|
377
|
+
</simpleType>
|
378
|
+
</element>
|
379
|
+
<element name="Exchange">
|
380
|
+
<simpleType>
|
381
|
+
|
382
|
+
<restriction base="string">
|
383
|
+
<length value="3"/>
|
384
|
+
<pattern value="[0-9]+"/>
|
385
|
+
</restriction>
|
386
|
+
</simpleType>
|
387
|
+
</element>
|
388
|
+
<element name="Number">
|
389
|
+
<simpleType>
|
390
|
+
<restriction base="string">
|
391
|
+
|
392
|
+
<length value="4"/>
|
393
|
+
<pattern value="[0-9]+"/>
|
394
|
+
</restriction>
|
395
|
+
</simpleType>
|
396
|
+
</element>
|
397
|
+
</sequence>
|
398
|
+
<element name="PhoneNumber">
|
399
|
+
<simpleType>
|
400
|
+
<restriction base="string">
|
401
|
+
|
402
|
+
<length value="10"/>
|
403
|
+
<pattern value="[0-9]+"/>
|
404
|
+
</restriction>
|
405
|
+
</simpleType>
|
406
|
+
</element>
|
407
|
+
</choice>
|
408
|
+
<attribute name="phoneType">
|
409
|
+
<simpleType>
|
410
|
+
<restriction base="string">
|
411
|
+
|
412
|
+
<enumeration value="Home"/>
|
413
|
+
<enumeration value="Work"/>
|
414
|
+
<enumeration value="Mobile"/>
|
415
|
+
<enumeration value="Other"/>
|
416
|
+
</restriction>
|
417
|
+
</simpleType>
|
418
|
+
</attribute>
|
419
|
+
</complexType>
|
420
|
+
</element>
|
421
|
+
|
422
|
+
<element name="Email">
|
423
|
+
<simpleType>
|
424
|
+
<restriction base="string">
|
425
|
+
<maxLength value="60"/>
|
426
|
+
<minLength value="1"/>
|
427
|
+
<pattern value="\S*[0-9a-zA-Z]+\S*@\S*[0-9a-zA-Z]+\S*\.\S*[0-9a-zA-Z]+\S*"/>
|
428
|
+
</restriction>
|
429
|
+
</simpleType>
|
430
|
+
</element>
|
431
|
+
|
432
|
+
<element name="FieldInErrorXPath" type="string"/>
|
433
|
+
<element name="OutputAddress">
|
434
|
+
<complexType>
|
435
|
+
<choice>
|
436
|
+
<element ref="eid:FreeFormAddress"/>
|
437
|
+
<element ref="eid:HybridAddress"/>
|
438
|
+
</choice>
|
439
|
+
<attribute name="isStandardized" type="boolean" use="required"/>
|
440
|
+
<attributeGroup ref="eid:AddressAttributes"/>
|
441
|
+
|
442
|
+
</complexType>
|
443
|
+
</element>
|
444
|
+
<attributeGroup name="InteractiveQueryAttributes">
|
445
|
+
<attribute name="interactiveQueryId" use="required">
|
446
|
+
<simpleType>
|
447
|
+
<restriction base="positiveInteger">
|
448
|
+
<minInclusive value="1"/>
|
449
|
+
<maxInclusive value="99"/>
|
450
|
+
</restriction>
|
451
|
+
</simpleType>
|
452
|
+
|
453
|
+
</attribute>
|
454
|
+
</attributeGroup>
|
455
|
+
<attributeGroup name="QuestionAttributes">
|
456
|
+
<attribute name="questionId" use="required">
|
457
|
+
<simpleType>
|
458
|
+
<restriction base="positiveInteger">
|
459
|
+
<minInclusive value="1"/>
|
460
|
+
<maxInclusive value="6"/>
|
461
|
+
</restriction>
|
462
|
+
|
463
|
+
</simpleType>
|
464
|
+
</attribute>
|
465
|
+
</attributeGroup>
|
466
|
+
<element name="FreeFormAddress">
|
467
|
+
<complexType>
|
468
|
+
<choice>
|
469
|
+
<element maxOccurs="6" ref="eid:AddressLine"/>
|
470
|
+
</choice>
|
471
|
+
</complexType>
|
472
|
+
|
473
|
+
</element>
|
474
|
+
<element name="HybridAddress">
|
475
|
+
<complexType>
|
476
|
+
<sequence>
|
477
|
+
<element maxOccurs="6" ref="eid:AddressLine"/>
|
478
|
+
<element ref="eid:City"/>
|
479
|
+
<element ref="eid:Province"/>
|
480
|
+
<element ref="eid:PostalCode"/>
|
481
|
+
</sequence>
|
482
|
+
|
483
|
+
</complexType>
|
484
|
+
</element>
|
485
|
+
<element name="ReasonCode">
|
486
|
+
<complexType>
|
487
|
+
<simpleContent>
|
488
|
+
<extension base="string">
|
489
|
+
<attribute name="description" type="string" use="optional"/>
|
490
|
+
</extension>
|
491
|
+
</simpleContent>
|
492
|
+
|
493
|
+
</complexType>
|
494
|
+
</element>
|
495
|
+
<attributeGroup name="AnswerAttributes">
|
496
|
+
<attribute name="answerId" use="required">
|
497
|
+
<simpleType>
|
498
|
+
<restriction base="positiveInteger">
|
499
|
+
<minInclusive value="1"/>
|
500
|
+
<maxInclusive value="5"/>
|
501
|
+
</restriction>
|
502
|
+
|
503
|
+
</simpleType>
|
504
|
+
</attribute>
|
505
|
+
</attributeGroup>
|
506
|
+
<element name="FieldChecksFailed">
|
507
|
+
<complexType>
|
508
|
+
<choice>
|
509
|
+
<element maxOccurs="unbounded" ref="eid:FieldInErrorXPath"/>
|
510
|
+
</choice>
|
511
|
+
</complexType>
|
512
|
+
|
513
|
+
</element>
|
514
|
+
<element name="ApplicationVerification">
|
515
|
+
<complexType>
|
516
|
+
<sequence>
|
517
|
+
<element maxOccurs="3" ref="eid:OutputAddress"/>
|
518
|
+
<element maxOccurs="50" ref="eid:ReasonCode"/>
|
519
|
+
</sequence>
|
520
|
+
<attribute name="retryPossible" type="boolean" use="required"/>
|
521
|
+
</complexType>
|
522
|
+
|
523
|
+
</element>
|
524
|
+
<element name="FraudCheckFailed">
|
525
|
+
<complexType>
|
526
|
+
<sequence>
|
527
|
+
<element maxOccurs="3" ref="eid:OutputAddress"/>
|
528
|
+
<element maxOccurs="50" ref="eid:ReasonCode"/>
|
529
|
+
</sequence>
|
530
|
+
</complexType>
|
531
|
+
</element>
|
532
|
+
|
533
|
+
<element name="InteractiveQuery">
|
534
|
+
<complexType>
|
535
|
+
<choice>
|
536
|
+
<element maxOccurs="6" name="Question">
|
537
|
+
<complexType>
|
538
|
+
<sequence>
|
539
|
+
<element name="QuestionText" type="string"/>
|
540
|
+
<element maxOccurs="5" minOccurs="5" name="AnswerChoice">
|
541
|
+
<complexType>
|
542
|
+
|
543
|
+
<simpleContent>
|
544
|
+
<extension base="string">
|
545
|
+
<attributeGroup ref="eid:AnswerAttributes"/>
|
546
|
+
<attribute name="correctAnswer" type="boolean" use="optional"/>
|
547
|
+
</extension>
|
548
|
+
</simpleContent>
|
549
|
+
</complexType>
|
550
|
+
</element>
|
551
|
+
</sequence>
|
552
|
+
|
553
|
+
<attributeGroup ref="eid:QuestionAttributes"/>
|
554
|
+
</complexType>
|
555
|
+
</element>
|
556
|
+
</choice>
|
557
|
+
<attributeGroup ref="eid:InteractiveQueryAttributes"/>
|
558
|
+
</complexType>
|
559
|
+
</element>
|
560
|
+
<element name="AssesmentComplete">
|
561
|
+
<complexType>
|
562
|
+
<sequence>
|
563
|
+
|
564
|
+
<element maxOccurs="3" ref="eid:OutputAddress"/>
|
565
|
+
<element maxOccurs="50" ref="eid:ReasonCode"/>
|
566
|
+
<element minOccurs="0" name="Score">
|
567
|
+
<simpleType>
|
568
|
+
<restriction base="nonNegativeInteger">
|
569
|
+
<minInclusive value="0"/>
|
570
|
+
<maxInclusive value="999"/>
|
571
|
+
</restriction>
|
572
|
+
</simpleType>
|
573
|
+
|
574
|
+
</element>
|
575
|
+
<element minOccurs="0" name="RiskStrategyDecision">
|
576
|
+
<simpleType>
|
577
|
+
<restriction base="string">
|
578
|
+
<length value="1"/>
|
579
|
+
</restriction>
|
580
|
+
</simpleType>
|
581
|
+
</element>
|
582
|
+
<element maxOccurs="unbounded" minOccurs="0" name="RiskStrategyComponent">
|
583
|
+
<complexType>
|
584
|
+
<simpleContent>
|
585
|
+
<extension base="boolean">
|
586
|
+
<attribute name="name" type="string" use="required"/>
|
587
|
+
</extension>
|
588
|
+
</simpleContent>
|
589
|
+
</complexType>
|
590
|
+
</element>
|
591
|
+
<element minOccurs="0" name="AtomicScores">
|
592
|
+
<complexType>
|
593
|
+
<sequence>
|
594
|
+
<element minOccurs="0" name="SimpleInteractiveQueryScore">
|
595
|
+
<simpleType>
|
596
|
+
<restriction base="integer">
|
597
|
+
<minInclusive value="-1"/>
|
598
|
+
<maxInclusive value="100"/>
|
599
|
+
</restriction>
|
600
|
+
</simpleType>
|
601
|
+
</element>
|
602
|
+
</sequence>
|
603
|
+
</complexType>
|
604
|
+
</element>
|
605
|
+
</sequence>
|
606
|
+
</complexType>
|
607
|
+
</element>
|
608
|
+
|
609
|
+
<element name="SystemProblem">
|
610
|
+
<simpleType>
|
611
|
+
<restriction base="string">
|
612
|
+
<maxLength value="1000"/>
|
613
|
+
</restriction>
|
614
|
+
</simpleType>
|
615
|
+
</element>
|
616
|
+
<element name="InvalidTransactionKeyFault">
|
617
|
+
<complexType>
|
618
|
+
|
619
|
+
<attributeGroup ref="eid:TransactionKey"/>
|
620
|
+
</complexType>
|
621
|
+
</element>
|
622
|
+
<element name="ValidationErrorFault">
|
623
|
+
<complexType>
|
624
|
+
<sequence>
|
625
|
+
<element maxOccurs="unbounded" name="ValidationError">
|
626
|
+
<complexType>
|
627
|
+
<sequence>
|
628
|
+
|
629
|
+
<element name="Message" type="string"/>
|
630
|
+
<element name="Line">
|
631
|
+
<simpleType>
|
632
|
+
<restriction base="short">
|
633
|
+
<minInclusive value="0"/>
|
634
|
+
</restriction>
|
635
|
+
</simpleType>
|
636
|
+
</element>
|
637
|
+
<element name="Column">
|
638
|
+
|
639
|
+
<simpleType>
|
640
|
+
<restriction base="short">
|
641
|
+
<minInclusive value="0"/>
|
642
|
+
</restriction>
|
643
|
+
</simpleType>
|
644
|
+
</element>
|
645
|
+
</sequence>
|
646
|
+
</complexType>
|
647
|
+
</element>
|
648
|
+
|
649
|
+
<element name="OriginalXML" type="anyType"/>
|
650
|
+
</sequence>
|
651
|
+
</complexType>
|
652
|
+
</element>
|
653
|
+
<element name="CredentialsErrorFault">
|
654
|
+
<complexType>
|
655
|
+
<choice>
|
656
|
+
<element minOccurs="0" name="Reason" type="string"/>
|
657
|
+
</choice>
|
658
|
+
|
659
|
+
</complexType>
|
660
|
+
</element>
|
661
|
+
</schema>
|
662
|
+
</wsdl:types>
|
663
|
+
<wsdl:message name="startTransactionRequest">
|
664
|
+
<wsdl:part element="ns1:InitialRequest" name="InitialRequest">
|
665
|
+
</wsdl:part>
|
666
|
+
</wsdl:message>
|
667
|
+
<wsdl:message name="avCorrectionRequest">
|
668
|
+
<wsdl:part element="ns1:UpdateRequest" name="UpdateRequest">
|
669
|
+
</wsdl:part>
|
670
|
+
</wsdl:message>
|
671
|
+
<wsdl:message name="ValidationErrorFault">
|
672
|
+
<wsdl:part element="ns1:ValidationErrorFault" name="ValidationErrorFault">
|
673
|
+
</wsdl:part>
|
674
|
+
</wsdl:message>
|
675
|
+
<wsdl:message name="startTransactionResponse">
|
676
|
+
<wsdl:part element="ns1:InitialResponse" name="InitialResponse">
|
677
|
+
</wsdl:part>
|
678
|
+
</wsdl:message>
|
679
|
+
<wsdl:message name="avCorrectionResponse">
|
680
|
+
<wsdl:part element="ns1:UpdateResponse" name="UpdateResponse">
|
681
|
+
</wsdl:part>
|
682
|
+
</wsdl:message>
|
683
|
+
<wsdl:message name="interactiveQueryResponseRequest">
|
684
|
+
<wsdl:part element="ns1:IQAnswerRequest" name="IQAnswerRequest">
|
685
|
+
</wsdl:part>
|
686
|
+
</wsdl:message>
|
687
|
+
<wsdl:message name="InvalidTransactionKeyFault">
|
688
|
+
<wsdl:part element="ns1:InvalidTransactionKeyFault" name="InvalidTransactionKeyFault">
|
689
|
+
</wsdl:part>
|
690
|
+
</wsdl:message>
|
691
|
+
<wsdl:message name="CredentialsErrorFault">
|
692
|
+
<wsdl:part element="ns1:CredentialsErrorFault" name="CredentialsErrorFault">
|
693
|
+
</wsdl:part>
|
694
|
+
</wsdl:message>
|
695
|
+
<wsdl:message name="interactiveQueryResponseResponse">
|
696
|
+
<wsdl:part element="ns1:FinalResponse" name="FinalResponse">
|
697
|
+
</wsdl:part>
|
698
|
+
</wsdl:message>
|
699
|
+
<wsdl:portType name="canadaPortTypeV2">
|
700
|
+
<wsdl:operation name="startTransaction">
|
701
|
+
<wsdl:input message="tns:startTransactionRequest" name="startTransactionRequest">
|
702
|
+
</wsdl:input>
|
703
|
+
<wsdl:output message="tns:startTransactionResponse" name="startTransactionResponse">
|
704
|
+
</wsdl:output>
|
705
|
+
<wsdl:fault message="tns:ValidationErrorFault" name="ValidationErrorFault">
|
706
|
+
</wsdl:fault>
|
707
|
+
<wsdl:fault message="tns:CredentialsErrorFault" name="CredentialsErrorFault">
|
708
|
+
</wsdl:fault>
|
709
|
+
</wsdl:operation>
|
710
|
+
<wsdl:operation name="interactiveQueryResponse">
|
711
|
+
<wsdl:input message="tns:interactiveQueryResponseRequest" name="interactiveQueryResponseRequest">
|
712
|
+
</wsdl:input>
|
713
|
+
<wsdl:output message="tns:interactiveQueryResponseResponse" name="interactiveQueryResponseResponse">
|
714
|
+
</wsdl:output>
|
715
|
+
<wsdl:fault message="tns:InvalidTransactionKeyFault" name="InvalidTransactionKeyFault">
|
716
|
+
</wsdl:fault>
|
717
|
+
<wsdl:fault message="tns:ValidationErrorFault" name="ValidationErrorFault">
|
718
|
+
</wsdl:fault>
|
719
|
+
<wsdl:fault message="tns:CredentialsErrorFault" name="CredentialsErrorFault">
|
720
|
+
</wsdl:fault>
|
721
|
+
</wsdl:operation>
|
722
|
+
<wsdl:operation name="avCorrection">
|
723
|
+
<wsdl:input message="tns:avCorrectionRequest" name="avCorrectionRequest">
|
724
|
+
</wsdl:input>
|
725
|
+
<wsdl:output message="tns:avCorrectionResponse" name="avCorrectionResponse">
|
726
|
+
</wsdl:output>
|
727
|
+
<wsdl:fault message="tns:InvalidTransactionKeyFault" name="InvalidTransactionKeyFault">
|
728
|
+
</wsdl:fault>
|
729
|
+
<wsdl:fault message="tns:ValidationErrorFault" name="ValidationErrorFault">
|
730
|
+
</wsdl:fault>
|
731
|
+
<wsdl:fault message="tns:CredentialsErrorFault" name="CredentialsErrorFault">
|
732
|
+
</wsdl:fault>
|
733
|
+
</wsdl:operation>
|
734
|
+
</wsdl:portType>
|
735
|
+
<wsdl:binding name="canadaHttpBindingV2" type="tns:canadaPortTypeV2">
|
736
|
+
<wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
|
737
|
+
<wsdl:operation name="startTransaction">
|
738
|
+
<wsdlsoap:operation soapAction=""/>
|
739
|
+
<wsdl:input name="startTransactionRequest">
|
740
|
+
<wsdlsoap:body use="literal"/>
|
741
|
+
</wsdl:input>
|
742
|
+
<wsdl:output name="startTransactionResponse">
|
743
|
+
<wsdlsoap:body use="literal"/>
|
744
|
+
</wsdl:output>
|
745
|
+
<wsdl:fault name="ValidationErrorFault">
|
746
|
+
<wsdlsoap:fault name="ValidationErrorFault" use="literal"/>
|
747
|
+
</wsdl:fault>
|
748
|
+
<wsdl:fault name="CredentialsErrorFault">
|
749
|
+
<wsdlsoap:fault name="CredentialsErrorFault" use="literal"/>
|
750
|
+
</wsdl:fault>
|
751
|
+
</wsdl:operation>
|
752
|
+
<wsdl:operation name="interactiveQueryResponse">
|
753
|
+
<wsdlsoap:operation soapAction=""/>
|
754
|
+
<wsdl:input name="interactiveQueryResponseRequest">
|
755
|
+
<wsdlsoap:body use="literal"/>
|
756
|
+
</wsdl:input>
|
757
|
+
<wsdl:output name="interactiveQueryResponseResponse">
|
758
|
+
<wsdlsoap:body use="literal"/>
|
759
|
+
</wsdl:output>
|
760
|
+
<wsdl:fault name="InvalidTransactionKeyFault">
|
761
|
+
<wsdlsoap:fault name="InvalidTransactionKeyFault" use="literal"/>
|
762
|
+
</wsdl:fault>
|
763
|
+
<wsdl:fault name="ValidationErrorFault">
|
764
|
+
<wsdlsoap:fault name="ValidationErrorFault" use="literal"/>
|
765
|
+
</wsdl:fault>
|
766
|
+
<wsdl:fault name="CredentialsErrorFault">
|
767
|
+
<wsdlsoap:fault name="CredentialsErrorFault" use="literal"/>
|
768
|
+
</wsdl:fault>
|
769
|
+
</wsdl:operation>
|
770
|
+
<wsdl:operation name="avCorrection">
|
771
|
+
<wsdlsoap:operation soapAction=""/>
|
772
|
+
<wsdl:input name="avCorrectionRequest">
|
773
|
+
<wsdlsoap:body use="literal"/>
|
774
|
+
</wsdl:input>
|
775
|
+
<wsdl:output name="avCorrectionResponse">
|
776
|
+
<wsdlsoap:body use="literal"/>
|
777
|
+
</wsdl:output>
|
778
|
+
<wsdl:fault name="InvalidTransactionKeyFault">
|
779
|
+
<wsdlsoap:fault name="InvalidTransactionKeyFault" use="literal"/>
|
780
|
+
</wsdl:fault>
|
781
|
+
<wsdl:fault name="ValidationErrorFault">
|
782
|
+
<wsdlsoap:fault name="ValidationErrorFault" use="literal"/>
|
783
|
+
</wsdl:fault>
|
784
|
+
<wsdl:fault name="CredentialsErrorFault">
|
785
|
+
<wsdlsoap:fault name="CredentialsErrorFault" use="literal"/>
|
786
|
+
</wsdl:fault>
|
787
|
+
</wsdl:operation>
|
788
|
+
</wsdl:binding>
|
789
|
+
<wsdl:service name="canadav2">
|
790
|
+
<wsdl:port binding="tns:canadaHttpBindingV2" name="canadaHttpPortV2">
|
791
|
+
<wsdlsoap:address location="https://pilot.eidverifier.com/uru/soap/cert/canadav2"/>
|
792
|
+
</wsdl:port>
|
793
|
+
</wsdl:service>
|
794
|
+
</wsdl:definitions>
|