bigcharger 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.
- data/LICENSE +20 -0
- data/README.markdown +149 -0
- data/lib/bigcharger.rb +21 -0
- data/lib/bigcharger/config.rb +32 -0
- data/lib/bigcharger/ops.rb +148 -0
- data/lib/bigcharger/utils.rb +115 -0
- data/spec/bigcharger_spec.rb +591 -0
- data/spec/messages/create_customer_request.xml +35 -0
- data/spec/messages/create_customer_response.xml +7 -0
- data/spec/messages/fault_response.xml +8 -0
- data/spec/messages/process_payment_request.xml +18 -0
- data/spec/messages/process_payment_response.xml +14 -0
- data/spec/messages/process_payment_with_cvn_request.xml +19 -0
- data/spec/messages/process_payment_with_cvn_response.xml +14 -0
- data/spec/messages/query_customer_by_reference_request.xml +15 -0
- data/spec/messages/query_customer_by_reference_response.xml +30 -0
- data/spec/messages/query_customer_request.xml +15 -0
- data/spec/messages/query_customer_response.xml +30 -0
- data/spec/messages/query_payment_request.xml +15 -0
- data/spec/messages/query_payment_response.xml +22 -0
- data/spec/messages/update_customer_request.xml +36 -0
- data/spec/messages/update_customer_response.xml +7 -0
- data/spec/service.wsdl +473 -0
- data/spec/spec_helper.rb +24 -0
- metadata +178 -0
@@ -0,0 +1,35 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:man="https://www.eway.com.au/gateway/managedpayment">
|
3
|
+
<soap:Header>
|
4
|
+
<man:eWAYHeader>
|
5
|
+
<man:eWAYCustomerID>87654321</man:eWAYCustomerID>
|
6
|
+
<man:Username>test@eway.com.au</man:Username>
|
7
|
+
<man:Password>test123</man:Password>
|
8
|
+
</man:eWAYHeader>
|
9
|
+
</soap:Header>
|
10
|
+
<soap:Body>
|
11
|
+
<man:CreateCustomer>
|
12
|
+
<man:Title>Mr.</man:Title>
|
13
|
+
<man:FirstName>Jo</man:FirstName>
|
14
|
+
<man:LastName>Smith</man:LastName>
|
15
|
+
<man:Address>15 Dundas Court</man:Address>
|
16
|
+
<man:Suburb>phillip</man:Suburb>
|
17
|
+
<man:State>act</man:State>
|
18
|
+
<man:Company>company</man:Company>
|
19
|
+
<man:PostCode>2606</man:PostCode>
|
20
|
+
<man:Country>au</man:Country>
|
21
|
+
<man:Email>test@eway.com.au</man:Email>
|
22
|
+
<man:Fax>111122222</man:Fax>
|
23
|
+
<man:Phone>02111111111</man:Phone>
|
24
|
+
<man:Mobile>04111111111</man:Mobile>
|
25
|
+
<man:CustomerRef>Test 123</man:CustomerRef>
|
26
|
+
<man:JobDesc>Analyst</man:JobDesc>
|
27
|
+
<man:Comments>Comments</man:Comments>
|
28
|
+
<man:URL>http://eway.com.au</man:URL>
|
29
|
+
<man:CCNumber>444433XXXXXX1111</man:CCNumber>
|
30
|
+
<man:CCNameOnCard>Jo Smith</man:CCNameOnCard>
|
31
|
+
<man:CCExpiryMonth>08</man:CCExpiryMonth>
|
32
|
+
<man:CCExpiryYear>15</man:CCExpiryYear>
|
33
|
+
</man:CreateCustomer>
|
34
|
+
</soap:Body>
|
35
|
+
</soap:Envelope>
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:man="https://www.eway.com.au/gateway/managedpayment">
|
2
|
+
<soap:Body>
|
3
|
+
<man:CreateCustomerResponse>
|
4
|
+
<man:CreateCustomerResult>9876543211000</man:CreateCustomerResult>
|
5
|
+
</man:CreateCustomerResponse>
|
6
|
+
</soap:Body>
|
7
|
+
</soap:Envelope>
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
2
|
+
<soap:Body>
|
3
|
+
<soap:Fault>
|
4
|
+
<faultcode>soap:Client</faultcode>
|
5
|
+
<faultstring>Login failed.</faultstring>
|
6
|
+
</soap:Fault>
|
7
|
+
</soap:Body>
|
8
|
+
</soap:Envelope>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:man="https://www.eway.com.au/gateway/managedpayment">
|
3
|
+
<soap:Header>
|
4
|
+
<man:eWAYHeader>
|
5
|
+
<man:eWAYCustomerID>87654321</man:eWAYCustomerID>
|
6
|
+
<man:Username>test@eway.com.au</man:Username>
|
7
|
+
<man:Password>test123</man:Password>
|
8
|
+
</man:eWAYHeader>
|
9
|
+
</soap:Header>
|
10
|
+
<soap:Body>
|
11
|
+
<man:ProcessPayment>
|
12
|
+
<man:managedCustomerID>9876543211000</man:managedCustomerID>
|
13
|
+
<man:amount>1000</man:amount>
|
14
|
+
<man:invoiceReference>INV-80123</man:invoiceReference>
|
15
|
+
<man:invoiceDescription>Payment for services rendered</man:invoiceDescription>
|
16
|
+
</man:ProcessPayment>
|
17
|
+
</soap:Body>
|
18
|
+
</soap:Envelope>
|
@@ -0,0 +1,14 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
3
|
+
<soap:Body>
|
4
|
+
<ProcessPaymentResponse xmlns="https://www.eway.com.au/gateway/managedpayment">
|
5
|
+
<ewayResponse>
|
6
|
+
<ewayTrxnError>00,Transaction Approved(Test Gateway)</ewayTrxnError>
|
7
|
+
<ewayTrxnStatus>True</ewayTrxnStatus>
|
8
|
+
<ewayTrxnNumber>1011634</ewayTrxnNumber>
|
9
|
+
<ewayReturnAmount>1000</ewayReturnAmount>
|
10
|
+
<ewayAuthCode>123456</ewayAuthCode>
|
11
|
+
</ewayResponse>
|
12
|
+
</ProcessPaymentResponse>
|
13
|
+
</soap:Body>
|
14
|
+
</soap:Envelope>
|
@@ -0,0 +1,19 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:man="https://www.eway.com.au/gateway/managedpayment">
|
3
|
+
<soap:Header>
|
4
|
+
<man:eWAYHeader>
|
5
|
+
<man:eWAYCustomerID>87654321</man:eWAYCustomerID>
|
6
|
+
<man:Username>test@eway.com.au</man:Username>
|
7
|
+
<man:Password>test123</man:Password>
|
8
|
+
</man:eWAYHeader>
|
9
|
+
</soap:Header>
|
10
|
+
<soap:Body>
|
11
|
+
<man:ProcessPaymentWithCVN>
|
12
|
+
<man:managedCustomerID>9876543211000</man:managedCustomerID>
|
13
|
+
<man:amount>1000</man:amount>
|
14
|
+
<man:invoiceReference>INV-80123</man:invoiceReference>
|
15
|
+
<man:invoiceDescription>Payment for services rendered</man:invoiceDescription>
|
16
|
+
<man:cvn>123</man:cvn>
|
17
|
+
</man:ProcessPaymentWithCVN>
|
18
|
+
</soap:Body>
|
19
|
+
</soap:Envelope>
|
@@ -0,0 +1,14 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
3
|
+
<soap:Body>
|
4
|
+
<ProcessPaymentWithCVNResponse xmlns="https://www.eway.com.au/gateway/managedpayment">
|
5
|
+
<ewayResponse>
|
6
|
+
<ewayTrxnError>00,Transaction Approved(Test CVN Gateway)</ewayTrxnError>
|
7
|
+
<ewayTrxnStatus>True</ewayTrxnStatus>
|
8
|
+
<ewayTrxnNumber>21803</ewayTrxnNumber>
|
9
|
+
<ewayReturnAmount>1000</ewayReturnAmount>
|
10
|
+
<ewayAuthCode>123456</ewayAuthCode>
|
11
|
+
</ewayResponse>
|
12
|
+
</ProcessPaymentWithCVNResponse>
|
13
|
+
</soap:Body>
|
14
|
+
</soap:Envelope>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:man="https://www.eway.com.au/gateway/managedpayment">
|
3
|
+
<soap:Header>
|
4
|
+
<man:eWAYHeader>
|
5
|
+
<man:eWAYCustomerID>87654321</man:eWAYCustomerID>
|
6
|
+
<man:Username>test@eway.com.au</man:Username>
|
7
|
+
<man:Password>test123</man:Password>
|
8
|
+
</man:eWAYHeader>
|
9
|
+
</soap:Header>
|
10
|
+
<soap:Body>
|
11
|
+
<man:QueryCustomerByReference>
|
12
|
+
<man:CustomerReference>Test 123</man:CustomerReference>
|
13
|
+
</man:QueryCustomerByReference>
|
14
|
+
</soap:Body>
|
15
|
+
</soap:Envelope>
|
@@ -0,0 +1,30 @@
|
|
1
|
+
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
2
|
+
<soap:Body>
|
3
|
+
<QueryCustomerByReferenceResponse xmlns="https://www.eway.com.au/gateway/managedpayment">
|
4
|
+
<QueryCustomerByReferenceResult>
|
5
|
+
<ManagedCustomerID>9876543211000</ManagedCustomerID>
|
6
|
+
<CustomerRef>TEST 123</CustomerRef>
|
7
|
+
<CustomerTitle>Mr.</CustomerTitle>
|
8
|
+
<CustomerFirstName>Jo</CustomerFirstName>
|
9
|
+
<CustomerLastName>Smith</CustomerLastName>
|
10
|
+
<CustomerCompany>company</CustomerCompany>
|
11
|
+
<CustomerJobDesc/>
|
12
|
+
<CustomerEmail>test@eway.com.au</CustomerEmail>
|
13
|
+
<CustomerAddress>15 Dundas Court</CustomerAddress>
|
14
|
+
<CustomerSuburb>phillip</CustomerSuburb>
|
15
|
+
<CustomerState>act</CustomerState>
|
16
|
+
<CustomerPostCode>2606</CustomerPostCode>
|
17
|
+
<CustomerCountry>au</CustomerCountry>
|
18
|
+
<CustomerPhone1>02111111111</CustomerPhone1>
|
19
|
+
<CustomerPhone2>04111111111</CustomerPhone2>
|
20
|
+
<CustomerFax>111122222</CustomerFax>
|
21
|
+
<CustomerURL>http://eway.com.au</CustomerURL>
|
22
|
+
<CustomerComments>Comments</CustomerComments>
|
23
|
+
<CCName>Jo Smith</CCName>
|
24
|
+
<CCNumber>444433XXXXXX1111</CCNumber>
|
25
|
+
<CCExpiryMonth>08</CCExpiryMonth>
|
26
|
+
<CCExpiryYear>15</CCExpiryYear>
|
27
|
+
</QueryCustomerByReferenceResult>
|
28
|
+
</QueryCustomerByReferenceResponse>
|
29
|
+
</soap:Body>
|
30
|
+
</soap:Envelope>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:man="https://www.eway.com.au/gateway/managedpayment">
|
3
|
+
<soap:Header>
|
4
|
+
<man:eWAYHeader>
|
5
|
+
<man:eWAYCustomerID>87654321</man:eWAYCustomerID>
|
6
|
+
<man:Username>test@eway.com.au</man:Username>
|
7
|
+
<man:Password>test123</man:Password>
|
8
|
+
</man:eWAYHeader>
|
9
|
+
</soap:Header>
|
10
|
+
<soap:Body>
|
11
|
+
<man:QueryCustomer>
|
12
|
+
<man:managedCustomerID>9876543211000</man:managedCustomerID>
|
13
|
+
</man:QueryCustomer>
|
14
|
+
</soap:Body>
|
15
|
+
</soap:Envelope>
|
@@ -0,0 +1,30 @@
|
|
1
|
+
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:man="https://www.eway.com.au/gateway/managedpayment">
|
2
|
+
<soap:Body>
|
3
|
+
<man:QueryCustomerResponse>
|
4
|
+
<man:QueryCustomerResult>
|
5
|
+
<man:ManagedCustomerID>9876543211000</man:ManagedCustomerID>
|
6
|
+
<man:CustomerRef>Test 123</man:CustomerRef>
|
7
|
+
<man:CustomerTitle>Mr.</man:CustomerTitle>
|
8
|
+
<man:CustomerFirstName>Jo</man:CustomerFirstName>
|
9
|
+
<man:CustomerLastName>Smith</man:CustomerLastName>
|
10
|
+
<man:CustomerCompany>company</man:CustomerCompany>
|
11
|
+
<man:CustomerJobDesc/>
|
12
|
+
<man:CustomerEmail>test@eway.com.au</man:CustomerEmail>
|
13
|
+
<man:CustomerAddress>15 Dundas Court</man:CustomerAddress>
|
14
|
+
<man:CustomerSuburb>phillip</man:CustomerSuburb>
|
15
|
+
<man:CustomerState>act</man:CustomerState>
|
16
|
+
<man:CustomerPostCode>2606</man:CustomerPostCode>
|
17
|
+
<man:CustomerCountry>au</man:CustomerCountry>
|
18
|
+
<man:CustomerPhone1>02111111111</man:CustomerPhone1>
|
19
|
+
<man:CustomerPhone2>04111111111</man:CustomerPhone2>
|
20
|
+
<man:CustomerFax>111122222</man:CustomerFax>
|
21
|
+
<man:CustomerURL>http://eway.com.au</man:CustomerURL>
|
22
|
+
<man:CustomerComments>Comments</man:CustomerComments>
|
23
|
+
<man:CCName>Jo Smith</man:CCName>
|
24
|
+
<man:CCNumber>444433XXXXXX1111</man:CCNumber>
|
25
|
+
<man:CCExpiryMonth>08</man:CCExpiryMonth>
|
26
|
+
<man:CCExpiryYear>15</man:CCExpiryYear>
|
27
|
+
</man:QueryCustomerResult>
|
28
|
+
</man:QueryCustomerResponse>
|
29
|
+
</soap:Body>
|
30
|
+
</soap:Envelope>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:man="https://www.eway.com.au/gateway/managedpayment">
|
3
|
+
<soap:Header>
|
4
|
+
<man:eWAYHeader>
|
5
|
+
<man:eWAYCustomerID>87654321</man:eWAYCustomerID>
|
6
|
+
<man:Username>test@eway.com.au</man:Username>
|
7
|
+
<man:Password>test123</man:Password>
|
8
|
+
</man:eWAYHeader>
|
9
|
+
</soap:Header>
|
10
|
+
<soap:Body>
|
11
|
+
<man:QueryPayment>
|
12
|
+
<man:managedCustomerID>9876543211000</man:managedCustomerID>
|
13
|
+
</man:QueryPayment>
|
14
|
+
</soap:Body>
|
15
|
+
</soap:Envelope>
|
@@ -0,0 +1,22 @@
|
|
1
|
+
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
2
|
+
<soap:Body>
|
3
|
+
<QueryPaymentResponse xmlns="https://www.eway.com.au/gateway/managedpayment">
|
4
|
+
<QueryPaymentResult>
|
5
|
+
<ManagedTransaction>
|
6
|
+
<TotalAmount>1000</TotalAmount>
|
7
|
+
<Result>1</Result>
|
8
|
+
<ResponseText>Approved</ResponseText>
|
9
|
+
<TransactionDate>2012-02-16T00:00:00+11:00</TransactionDate>
|
10
|
+
<ewayTrxnNumber>1</ewayTrxnNumber>
|
11
|
+
</ManagedTransaction>
|
12
|
+
<ManagedTransaction>
|
13
|
+
<TotalAmount>1008</TotalAmount>
|
14
|
+
<Result>1</Result>
|
15
|
+
<ResponseText>Approved</ResponseText>
|
16
|
+
<TransactionDate>2012-02-16T00:00:00+11:00</TransactionDate>
|
17
|
+
<ewayTrxnNumber>2</ewayTrxnNumber>
|
18
|
+
</ManagedTransaction>
|
19
|
+
</QueryPaymentResult>
|
20
|
+
</QueryPaymentResponse>
|
21
|
+
</soap:Body>
|
22
|
+
</soap:Envelope>
|
@@ -0,0 +1,36 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:man="https://www.eway.com.au/gateway/managedpayment">
|
3
|
+
<soap:Header>
|
4
|
+
<man:eWAYHeader>
|
5
|
+
<man:eWAYCustomerID>87654321</man:eWAYCustomerID>
|
6
|
+
<man:Username>test@eway.com.au</man:Username>
|
7
|
+
<man:Password>test123</man:Password>
|
8
|
+
</man:eWAYHeader>
|
9
|
+
</soap:Header>
|
10
|
+
<soap:Body>
|
11
|
+
<man:UpdateCustomer>
|
12
|
+
<man:managedCustomerID>9876543211000</man:managedCustomerID>
|
13
|
+
<man:Title>Mr.</man:Title>
|
14
|
+
<man:FirstName>Jo</man:FirstName>
|
15
|
+
<man:LastName>Smith</man:LastName>
|
16
|
+
<man:Address>15 Dundas Court</man:Address>
|
17
|
+
<man:Suburb>phillip</man:Suburb>
|
18
|
+
<man:State>act</man:State>
|
19
|
+
<man:Company>company</man:Company>
|
20
|
+
<man:PostCode>2606</man:PostCode>
|
21
|
+
<man:Country>au</man:Country>
|
22
|
+
<man:Email>test@eway.com.au</man:Email>
|
23
|
+
<man:Fax>111122222</man:Fax>
|
24
|
+
<man:Phone>02111111111</man:Phone>
|
25
|
+
<man:Mobile>04111111111</man:Mobile>
|
26
|
+
<man:CustomerRef>Test 123</man:CustomerRef>
|
27
|
+
<man:JobDesc>Analyst</man:JobDesc>
|
28
|
+
<man:Comments>Comments</man:Comments>
|
29
|
+
<man:URL>http://eway.com.au</man:URL>
|
30
|
+
<man:CCNumber>444433XXXXXX1111</man:CCNumber>
|
31
|
+
<man:CCNameOnCard>Jo Smith</man:CCNameOnCard>
|
32
|
+
<man:CCExpiryMonth>08</man:CCExpiryMonth>
|
33
|
+
<man:CCExpiryYear>15</man:CCExpiryYear>
|
34
|
+
</man:UpdateCustomer>
|
35
|
+
</soap:Body>
|
36
|
+
</soap:Envelope>
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
2
|
+
<soap:Body>
|
3
|
+
<UpdateCustomerResponse xmlns="https://www.eway.com.au/gateway/managedpayment">
|
4
|
+
<UpdateCustomerResult>true</UpdateCustomerResult>
|
5
|
+
</UpdateCustomerResponse>
|
6
|
+
</soap:Body>
|
7
|
+
</soap:Envelope>
|
data/spec/service.wsdl
ADDED
@@ -0,0 +1,473 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="https://www.eway.com.au/gateway/managedpayment" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" targetNamespace="https://www.eway.com.au/gateway/managedpayment" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
|
3
|
+
<wsdl:types>
|
4
|
+
<s:schema elementFormDefault="qualified" targetNamespace="https://www.eway.com.au/gateway/managedpayment">
|
5
|
+
<s:element name="CreateCustomer">
|
6
|
+
<s:complexType>
|
7
|
+
<s:sequence>
|
8
|
+
<s:element minOccurs="0" maxOccurs="1" name="Title" type="s:string" />
|
9
|
+
<s:element minOccurs="0" maxOccurs="1" name="FirstName" type="s:string" />
|
10
|
+
<s:element minOccurs="0" maxOccurs="1" name="LastName" type="s:string" />
|
11
|
+
<s:element minOccurs="0" maxOccurs="1" name="Address" type="s:string" />
|
12
|
+
<s:element minOccurs="0" maxOccurs="1" name="Suburb" type="s:string" />
|
13
|
+
<s:element minOccurs="0" maxOccurs="1" name="State" type="s:string" />
|
14
|
+
<s:element minOccurs="0" maxOccurs="1" name="Company" type="s:string" />
|
15
|
+
<s:element minOccurs="0" maxOccurs="1" name="PostCode" type="s:string" />
|
16
|
+
<s:element minOccurs="0" maxOccurs="1" name="Country" type="s:string" />
|
17
|
+
<s:element minOccurs="0" maxOccurs="1" name="Email" type="s:string" />
|
18
|
+
<s:element minOccurs="0" maxOccurs="1" name="Fax" type="s:string" />
|
19
|
+
<s:element minOccurs="0" maxOccurs="1" name="Phone" type="s:string" />
|
20
|
+
<s:element minOccurs="0" maxOccurs="1" name="Mobile" type="s:string" />
|
21
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomerRef" type="s:string" />
|
22
|
+
<s:element minOccurs="0" maxOccurs="1" name="JobDesc" type="s:string" />
|
23
|
+
<s:element minOccurs="0" maxOccurs="1" name="Comments" type="s:string" />
|
24
|
+
<s:element minOccurs="0" maxOccurs="1" name="URL" type="s:string" />
|
25
|
+
<s:element minOccurs="0" maxOccurs="1" name="CCNumber" type="s:string" />
|
26
|
+
<s:element minOccurs="0" maxOccurs="1" name="CCNameOnCard" type="s:string" />
|
27
|
+
<s:element minOccurs="1" maxOccurs="1" name="CCExpiryMonth" type="s:int" />
|
28
|
+
<s:element minOccurs="1" maxOccurs="1" name="CCExpiryYear" type="s:int" />
|
29
|
+
</s:sequence>
|
30
|
+
</s:complexType>
|
31
|
+
</s:element>
|
32
|
+
<s:element name="CreateCustomerResponse">
|
33
|
+
<s:complexType>
|
34
|
+
<s:sequence>
|
35
|
+
<s:element minOccurs="0" maxOccurs="1" name="CreateCustomerResult" type="s:string" />
|
36
|
+
</s:sequence>
|
37
|
+
</s:complexType>
|
38
|
+
</s:element>
|
39
|
+
<s:element name="eWAYHeader" type="tns:eWAYHeader" />
|
40
|
+
<s:complexType name="eWAYHeader">
|
41
|
+
<s:sequence>
|
42
|
+
<s:element minOccurs="0" maxOccurs="1" name="eWAYCustomerID" type="s:string" />
|
43
|
+
<s:element minOccurs="0" maxOccurs="1" name="Username" type="s:string" />
|
44
|
+
<s:element minOccurs="0" maxOccurs="1" name="Password" type="s:string" />
|
45
|
+
</s:sequence>
|
46
|
+
<s:anyAttribute />
|
47
|
+
</s:complexType>
|
48
|
+
<s:element name="UpdateCustomer">
|
49
|
+
<s:complexType>
|
50
|
+
<s:sequence>
|
51
|
+
<s:element minOccurs="1" maxOccurs="1" name="managedCustomerID" type="s:long" />
|
52
|
+
<s:element minOccurs="0" maxOccurs="1" name="Title" type="s:string" />
|
53
|
+
<s:element minOccurs="0" maxOccurs="1" name="FirstName" type="s:string" />
|
54
|
+
<s:element minOccurs="0" maxOccurs="1" name="LastName" type="s:string" />
|
55
|
+
<s:element minOccurs="0" maxOccurs="1" name="Address" type="s:string" />
|
56
|
+
<s:element minOccurs="0" maxOccurs="1" name="Suburb" type="s:string" />
|
57
|
+
<s:element minOccurs="0" maxOccurs="1" name="State" type="s:string" />
|
58
|
+
<s:element minOccurs="0" maxOccurs="1" name="Company" type="s:string" />
|
59
|
+
<s:element minOccurs="0" maxOccurs="1" name="PostCode" type="s:string" />
|
60
|
+
<s:element minOccurs="0" maxOccurs="1" name="Country" type="s:string" />
|
61
|
+
<s:element minOccurs="0" maxOccurs="1" name="Email" type="s:string" />
|
62
|
+
<s:element minOccurs="0" maxOccurs="1" name="Fax" type="s:string" />
|
63
|
+
<s:element minOccurs="0" maxOccurs="1" name="Phone" type="s:string" />
|
64
|
+
<s:element minOccurs="0" maxOccurs="1" name="Mobile" type="s:string" />
|
65
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomerRef" type="s:string" />
|
66
|
+
<s:element minOccurs="0" maxOccurs="1" name="JobDesc" type="s:string" />
|
67
|
+
<s:element minOccurs="0" maxOccurs="1" name="Comments" type="s:string" />
|
68
|
+
<s:element minOccurs="0" maxOccurs="1" name="URL" type="s:string" />
|
69
|
+
<s:element minOccurs="0" maxOccurs="1" name="CCNumber" type="s:string" />
|
70
|
+
<s:element minOccurs="0" maxOccurs="1" name="CCNameOnCard" type="s:string" />
|
71
|
+
<s:element minOccurs="1" maxOccurs="1" name="CCExpiryMonth" type="s:int" />
|
72
|
+
<s:element minOccurs="1" maxOccurs="1" name="CCExpiryYear" type="s:int" />
|
73
|
+
</s:sequence>
|
74
|
+
</s:complexType>
|
75
|
+
</s:element>
|
76
|
+
<s:element name="UpdateCustomerResponse">
|
77
|
+
<s:complexType>
|
78
|
+
<s:sequence>
|
79
|
+
<s:element minOccurs="1" maxOccurs="1" name="UpdateCustomerResult" type="s:boolean" />
|
80
|
+
</s:sequence>
|
81
|
+
</s:complexType>
|
82
|
+
</s:element>
|
83
|
+
<s:element name="QueryCustomer">
|
84
|
+
<s:complexType>
|
85
|
+
<s:sequence>
|
86
|
+
<s:element minOccurs="1" maxOccurs="1" name="managedCustomerID" type="s:long" />
|
87
|
+
</s:sequence>
|
88
|
+
</s:complexType>
|
89
|
+
</s:element>
|
90
|
+
<s:element name="QueryCustomerResponse">
|
91
|
+
<s:complexType>
|
92
|
+
<s:sequence>
|
93
|
+
<s:element minOccurs="0" maxOccurs="1" name="QueryCustomerResult" type="tns:CreditCard" />
|
94
|
+
</s:sequence>
|
95
|
+
</s:complexType>
|
96
|
+
</s:element>
|
97
|
+
<s:complexType name="CreditCard">
|
98
|
+
<s:complexContent mixed="false">
|
99
|
+
<s:extension base="tns:ManagedCustomer">
|
100
|
+
<s:sequence>
|
101
|
+
<s:element minOccurs="0" maxOccurs="1" name="CCName" type="s:string" />
|
102
|
+
<s:element minOccurs="0" maxOccurs="1" name="CCNumber" type="s:string" />
|
103
|
+
<s:element minOccurs="0" maxOccurs="1" name="CCExpiryMonth" type="s:string" />
|
104
|
+
<s:element minOccurs="0" maxOccurs="1" name="CCExpiryYear" type="s:string" />
|
105
|
+
</s:sequence>
|
106
|
+
</s:extension>
|
107
|
+
</s:complexContent>
|
108
|
+
</s:complexType>
|
109
|
+
<s:complexType name="ManagedCustomer">
|
110
|
+
<s:sequence>
|
111
|
+
<s:element minOccurs="1" maxOccurs="1" name="ManagedCustomerID" type="s:long" />
|
112
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomerRef" type="s:string" />
|
113
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomerTitle" type="s:string" />
|
114
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomerFirstName" type="s:string" />
|
115
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomerLastName" type="s:string" />
|
116
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomerCompany" type="s:string" />
|
117
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomerJobDesc" type="s:string" />
|
118
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomerEmail" type="s:string" />
|
119
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomerAddress" type="s:string" />
|
120
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomerSuburb" type="s:string" />
|
121
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomerState" type="s:string" />
|
122
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomerPostCode" type="s:string" />
|
123
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomerCountry" type="s:string" />
|
124
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomerPhone1" type="s:string" />
|
125
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomerPhone2" type="s:string" />
|
126
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomerFax" type="s:string" />
|
127
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomerURL" type="s:string" />
|
128
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomerComments" type="s:string" />
|
129
|
+
</s:sequence>
|
130
|
+
</s:complexType>
|
131
|
+
<s:element name="QueryCustomerByReference">
|
132
|
+
<s:complexType>
|
133
|
+
<s:sequence>
|
134
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomerReference" type="s:string" />
|
135
|
+
</s:sequence>
|
136
|
+
</s:complexType>
|
137
|
+
</s:element>
|
138
|
+
<s:element name="QueryCustomerByReferenceResponse">
|
139
|
+
<s:complexType>
|
140
|
+
<s:sequence>
|
141
|
+
<s:element minOccurs="0" maxOccurs="1" name="QueryCustomerByReferenceResult" type="tns:CreditCard" />
|
142
|
+
</s:sequence>
|
143
|
+
</s:complexType>
|
144
|
+
</s:element>
|
145
|
+
<s:element name="ProcessPayment">
|
146
|
+
<s:complexType>
|
147
|
+
<s:sequence>
|
148
|
+
<s:element minOccurs="1" maxOccurs="1" name="managedCustomerID" type="s:long" />
|
149
|
+
<s:element minOccurs="1" maxOccurs="1" name="amount" type="s:int" />
|
150
|
+
<s:element minOccurs="0" maxOccurs="1" name="invoiceReference" type="s:string" />
|
151
|
+
<s:element minOccurs="0" maxOccurs="1" name="invoiceDescription" type="s:string" />
|
152
|
+
</s:sequence>
|
153
|
+
</s:complexType>
|
154
|
+
</s:element>
|
155
|
+
<s:element name="ProcessPaymentResponse">
|
156
|
+
<s:complexType>
|
157
|
+
<s:sequence>
|
158
|
+
<s:element minOccurs="1" maxOccurs="1" name="ewayResponse" nillable="true" type="tns:CCPaymentResponse" />
|
159
|
+
</s:sequence>
|
160
|
+
</s:complexType>
|
161
|
+
</s:element>
|
162
|
+
<s:complexType name="CCPaymentResponse">
|
163
|
+
<s:sequence>
|
164
|
+
<s:element minOccurs="0" maxOccurs="1" name="ewayTrxnError" type="s:string" />
|
165
|
+
<s:element minOccurs="0" maxOccurs="1" name="ewayTrxnStatus" type="s:string" />
|
166
|
+
<s:element minOccurs="0" maxOccurs="1" name="ewayTrxnNumber" type="s:string" />
|
167
|
+
<s:element minOccurs="0" maxOccurs="1" name="ewayReturnAmount" type="s:string" />
|
168
|
+
<s:element minOccurs="0" maxOccurs="1" name="ewayAuthCode" type="s:string" />
|
169
|
+
</s:sequence>
|
170
|
+
</s:complexType>
|
171
|
+
<s:element name="ProcessPaymentWithCVN">
|
172
|
+
<s:complexType>
|
173
|
+
<s:sequence>
|
174
|
+
<s:element minOccurs="1" maxOccurs="1" name="managedCustomerID" type="s:long" />
|
175
|
+
<s:element minOccurs="1" maxOccurs="1" name="amount" type="s:int" />
|
176
|
+
<s:element minOccurs="0" maxOccurs="1" name="invoiceReference" type="s:string" />
|
177
|
+
<s:element minOccurs="0" maxOccurs="1" name="invoiceDescription" type="s:string" />
|
178
|
+
<s:element minOccurs="0" maxOccurs="1" name="cvn" type="s:string" />
|
179
|
+
</s:sequence>
|
180
|
+
</s:complexType>
|
181
|
+
</s:element>
|
182
|
+
<s:element name="ProcessPaymentWithCVNResponse">
|
183
|
+
<s:complexType>
|
184
|
+
<s:sequence>
|
185
|
+
<s:element minOccurs="1" maxOccurs="1" name="ewayResponse" nillable="true" type="tns:CCPaymentResponse" />
|
186
|
+
</s:sequence>
|
187
|
+
</s:complexType>
|
188
|
+
</s:element>
|
189
|
+
<s:element name="QueryPayment">
|
190
|
+
<s:complexType>
|
191
|
+
<s:sequence>
|
192
|
+
<s:element minOccurs="1" maxOccurs="1" name="managedCustomerID" type="s:long" />
|
193
|
+
</s:sequence>
|
194
|
+
</s:complexType>
|
195
|
+
</s:element>
|
196
|
+
<s:element name="QueryPaymentResponse">
|
197
|
+
<s:complexType>
|
198
|
+
<s:sequence>
|
199
|
+
<s:element minOccurs="0" maxOccurs="1" name="QueryPaymentResult" type="tns:ArrayOfManagedTransaction" />
|
200
|
+
</s:sequence>
|
201
|
+
</s:complexType>
|
202
|
+
</s:element>
|
203
|
+
<s:complexType name="ArrayOfManagedTransaction">
|
204
|
+
<s:sequence>
|
205
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="ManagedTransaction" nillable="true" type="tns:ManagedTransaction" />
|
206
|
+
</s:sequence>
|
207
|
+
</s:complexType>
|
208
|
+
<s:complexType name="ManagedTransaction">
|
209
|
+
<s:sequence>
|
210
|
+
<s:element minOccurs="1" maxOccurs="1" name="TotalAmount" type="s:int" />
|
211
|
+
<s:element minOccurs="1" maxOccurs="1" name="Result" type="s:int" />
|
212
|
+
<s:element minOccurs="0" maxOccurs="1" name="ResponseText" type="s:string" />
|
213
|
+
<s:element minOccurs="1" maxOccurs="1" name="TransactionDate" type="s:dateTime" />
|
214
|
+
<s:element minOccurs="1" maxOccurs="1" name="ewayTrxnNumber" type="s:int" />
|
215
|
+
</s:sequence>
|
216
|
+
</s:complexType>
|
217
|
+
</s:schema>
|
218
|
+
</wsdl:types>
|
219
|
+
<wsdl:message name="CreateCustomerSoapIn">
|
220
|
+
<wsdl:part name="parameters" element="tns:CreateCustomer" />
|
221
|
+
</wsdl:message>
|
222
|
+
<wsdl:message name="CreateCustomerSoapOut">
|
223
|
+
<wsdl:part name="parameters" element="tns:CreateCustomerResponse" />
|
224
|
+
</wsdl:message>
|
225
|
+
<wsdl:message name="CreateCustomereWAYHeader">
|
226
|
+
<wsdl:part name="eWAYHeader" element="tns:eWAYHeader" />
|
227
|
+
</wsdl:message>
|
228
|
+
<wsdl:message name="UpdateCustomerSoapIn">
|
229
|
+
<wsdl:part name="parameters" element="tns:UpdateCustomer" />
|
230
|
+
</wsdl:message>
|
231
|
+
<wsdl:message name="UpdateCustomerSoapOut">
|
232
|
+
<wsdl:part name="parameters" element="tns:UpdateCustomerResponse" />
|
233
|
+
</wsdl:message>
|
234
|
+
<wsdl:message name="UpdateCustomereWAYHeader">
|
235
|
+
<wsdl:part name="eWAYHeader" element="tns:eWAYHeader" />
|
236
|
+
</wsdl:message>
|
237
|
+
<wsdl:message name="QueryCustomerSoapIn">
|
238
|
+
<wsdl:part name="parameters" element="tns:QueryCustomer" />
|
239
|
+
</wsdl:message>
|
240
|
+
<wsdl:message name="QueryCustomerSoapOut">
|
241
|
+
<wsdl:part name="parameters" element="tns:QueryCustomerResponse" />
|
242
|
+
</wsdl:message>
|
243
|
+
<wsdl:message name="QueryCustomereWAYHeader">
|
244
|
+
<wsdl:part name="eWAYHeader" element="tns:eWAYHeader" />
|
245
|
+
</wsdl:message>
|
246
|
+
<wsdl:message name="QueryCustomerByReferenceSoapIn">
|
247
|
+
<wsdl:part name="parameters" element="tns:QueryCustomerByReference" />
|
248
|
+
</wsdl:message>
|
249
|
+
<wsdl:message name="QueryCustomerByReferenceSoapOut">
|
250
|
+
<wsdl:part name="parameters" element="tns:QueryCustomerByReferenceResponse" />
|
251
|
+
</wsdl:message>
|
252
|
+
<wsdl:message name="QueryCustomerByReferenceeWAYHeader">
|
253
|
+
<wsdl:part name="eWAYHeader" element="tns:eWAYHeader" />
|
254
|
+
</wsdl:message>
|
255
|
+
<wsdl:message name="ProcessPaymentSoapIn">
|
256
|
+
<wsdl:part name="parameters" element="tns:ProcessPayment" />
|
257
|
+
</wsdl:message>
|
258
|
+
<wsdl:message name="ProcessPaymentSoapOut">
|
259
|
+
<wsdl:part name="parameters" element="tns:ProcessPaymentResponse" />
|
260
|
+
</wsdl:message>
|
261
|
+
<wsdl:message name="ProcessPaymenteWAYHeader">
|
262
|
+
<wsdl:part name="eWAYHeader" element="tns:eWAYHeader" />
|
263
|
+
</wsdl:message>
|
264
|
+
<wsdl:message name="ProcessPaymentWithCVNSoapIn">
|
265
|
+
<wsdl:part name="parameters" element="tns:ProcessPaymentWithCVN" />
|
266
|
+
</wsdl:message>
|
267
|
+
<wsdl:message name="ProcessPaymentWithCVNSoapOut">
|
268
|
+
<wsdl:part name="parameters" element="tns:ProcessPaymentWithCVNResponse" />
|
269
|
+
</wsdl:message>
|
270
|
+
<wsdl:message name="ProcessPaymentWithCVNeWAYHeader">
|
271
|
+
<wsdl:part name="eWAYHeader" element="tns:eWAYHeader" />
|
272
|
+
</wsdl:message>
|
273
|
+
<wsdl:message name="QueryPaymentSoapIn">
|
274
|
+
<wsdl:part name="parameters" element="tns:QueryPayment" />
|
275
|
+
</wsdl:message>
|
276
|
+
<wsdl:message name="QueryPaymentSoapOut">
|
277
|
+
<wsdl:part name="parameters" element="tns:QueryPaymentResponse" />
|
278
|
+
</wsdl:message>
|
279
|
+
<wsdl:message name="QueryPaymenteWAYHeader">
|
280
|
+
<wsdl:part name="eWAYHeader" element="tns:eWAYHeader" />
|
281
|
+
</wsdl:message>
|
282
|
+
<wsdl:portType name="managedCreditCardPaymentSoap">
|
283
|
+
<wsdl:operation name="CreateCustomer">
|
284
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Create a managed customer</wsdl:documentation>
|
285
|
+
<wsdl:input message="tns:CreateCustomerSoapIn" />
|
286
|
+
<wsdl:output message="tns:CreateCustomerSoapOut" />
|
287
|
+
</wsdl:operation>
|
288
|
+
<wsdl:operation name="UpdateCustomer">
|
289
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Update managed customer</wsdl:documentation>
|
290
|
+
<wsdl:input message="tns:UpdateCustomerSoapIn" />
|
291
|
+
<wsdl:output message="tns:UpdateCustomerSoapOut" />
|
292
|
+
</wsdl:operation>
|
293
|
+
<wsdl:operation name="QueryCustomer">
|
294
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Query managed customer details</wsdl:documentation>
|
295
|
+
<wsdl:input message="tns:QueryCustomerSoapIn" />
|
296
|
+
<wsdl:output message="tns:QueryCustomerSoapOut" />
|
297
|
+
</wsdl:operation>
|
298
|
+
<wsdl:operation name="QueryCustomerByReference">
|
299
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Query managed customer by CustomerReference</wsdl:documentation>
|
300
|
+
<wsdl:input message="tns:QueryCustomerByReferenceSoapIn" />
|
301
|
+
<wsdl:output message="tns:QueryCustomerByReferenceSoapOut" />
|
302
|
+
</wsdl:operation>
|
303
|
+
<wsdl:operation name="ProcessPayment">
|
304
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Process payment</wsdl:documentation>
|
305
|
+
<wsdl:input message="tns:ProcessPaymentSoapIn" />
|
306
|
+
<wsdl:output message="tns:ProcessPaymentSoapOut" />
|
307
|
+
</wsdl:operation>
|
308
|
+
<wsdl:operation name="ProcessPaymentWithCVN">
|
309
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Process payment with CVN</wsdl:documentation>
|
310
|
+
<wsdl:input message="tns:ProcessPaymentWithCVNSoapIn" />
|
311
|
+
<wsdl:output message="tns:ProcessPaymentWithCVNSoapOut" />
|
312
|
+
</wsdl:operation>
|
313
|
+
<wsdl:operation name="QueryPayment">
|
314
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Query payment</wsdl:documentation>
|
315
|
+
<wsdl:input message="tns:QueryPaymentSoapIn" />
|
316
|
+
<wsdl:output message="tns:QueryPaymentSoapOut" />
|
317
|
+
</wsdl:operation>
|
318
|
+
</wsdl:portType>
|
319
|
+
<wsdl:binding name="managedCreditCardPaymentSoap" type="tns:managedCreditCardPaymentSoap">
|
320
|
+
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
|
321
|
+
<wsdl:operation name="CreateCustomer">
|
322
|
+
<soap:operation soapAction="https://www.eway.com.au/gateway/managedpayment/CreateCustomer" style="document" />
|
323
|
+
<wsdl:input>
|
324
|
+
<soap:body use="literal" />
|
325
|
+
<soap:header message="tns:CreateCustomereWAYHeader" part="eWAYHeader" use="literal" />
|
326
|
+
</wsdl:input>
|
327
|
+
<wsdl:output>
|
328
|
+
<soap:body use="literal" />
|
329
|
+
</wsdl:output>
|
330
|
+
</wsdl:operation>
|
331
|
+
<wsdl:operation name="UpdateCustomer">
|
332
|
+
<soap:operation soapAction="https://www.eway.com.au/gateway/managedpayment/UpdateCustomer" style="document" />
|
333
|
+
<wsdl:input>
|
334
|
+
<soap:body use="literal" />
|
335
|
+
<soap:header message="tns:UpdateCustomereWAYHeader" part="eWAYHeader" use="literal" />
|
336
|
+
</wsdl:input>
|
337
|
+
<wsdl:output>
|
338
|
+
<soap:body use="literal" />
|
339
|
+
</wsdl:output>
|
340
|
+
</wsdl:operation>
|
341
|
+
<wsdl:operation name="QueryCustomer">
|
342
|
+
<soap:operation soapAction="https://www.eway.com.au/gateway/managedpayment/QueryCustomer" style="document" />
|
343
|
+
<wsdl:input>
|
344
|
+
<soap:body use="literal" />
|
345
|
+
<soap:header message="tns:QueryCustomereWAYHeader" part="eWAYHeader" use="literal" />
|
346
|
+
</wsdl:input>
|
347
|
+
<wsdl:output>
|
348
|
+
<soap:body use="literal" />
|
349
|
+
</wsdl:output>
|
350
|
+
</wsdl:operation>
|
351
|
+
<wsdl:operation name="QueryCustomerByReference">
|
352
|
+
<soap:operation soapAction="https://www.eway.com.au/gateway/managedpayment/QueryCustomerByReference" style="document" />
|
353
|
+
<wsdl:input>
|
354
|
+
<soap:body use="literal" />
|
355
|
+
<soap:header message="tns:QueryCustomerByReferenceeWAYHeader" part="eWAYHeader" use="literal" />
|
356
|
+
</wsdl:input>
|
357
|
+
<wsdl:output>
|
358
|
+
<soap:body use="literal" />
|
359
|
+
</wsdl:output>
|
360
|
+
</wsdl:operation>
|
361
|
+
<wsdl:operation name="ProcessPayment">
|
362
|
+
<soap:operation soapAction="https://www.eway.com.au/gateway/managedpayment/ProcessPayment" style="document" />
|
363
|
+
<wsdl:input>
|
364
|
+
<soap:body use="literal" />
|
365
|
+
<soap:header message="tns:ProcessPaymenteWAYHeader" part="eWAYHeader" use="literal" />
|
366
|
+
</wsdl:input>
|
367
|
+
<wsdl:output>
|
368
|
+
<soap:body use="literal" />
|
369
|
+
</wsdl:output>
|
370
|
+
</wsdl:operation>
|
371
|
+
<wsdl:operation name="ProcessPaymentWithCVN">
|
372
|
+
<soap:operation soapAction="https://www.eway.com.au/gateway/managedpayment/ProcessPaymentWithCVN" style="document" />
|
373
|
+
<wsdl:input>
|
374
|
+
<soap:body use="literal" />
|
375
|
+
<soap:header message="tns:ProcessPaymentWithCVNeWAYHeader" part="eWAYHeader" use="literal" />
|
376
|
+
</wsdl:input>
|
377
|
+
<wsdl:output>
|
378
|
+
<soap:body use="literal" />
|
379
|
+
</wsdl:output>
|
380
|
+
</wsdl:operation>
|
381
|
+
<wsdl:operation name="QueryPayment">
|
382
|
+
<soap:operation soapAction="https://www.eway.com.au/gateway/managedpayment/QueryPayment" style="document" />
|
383
|
+
<wsdl:input>
|
384
|
+
<soap:body use="literal" />
|
385
|
+
<soap:header message="tns:QueryPaymenteWAYHeader" part="eWAYHeader" use="literal" />
|
386
|
+
</wsdl:input>
|
387
|
+
<wsdl:output>
|
388
|
+
<soap:body use="literal" />
|
389
|
+
</wsdl:output>
|
390
|
+
</wsdl:operation>
|
391
|
+
</wsdl:binding>
|
392
|
+
<wsdl:binding name="managedCreditCardPaymentSoap12" type="tns:managedCreditCardPaymentSoap">
|
393
|
+
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
|
394
|
+
<wsdl:operation name="CreateCustomer">
|
395
|
+
<soap12:operation soapAction="https://www.eway.com.au/gateway/managedpayment/CreateCustomer" style="document" />
|
396
|
+
<wsdl:input>
|
397
|
+
<soap12:body use="literal" />
|
398
|
+
<soap12:header message="tns:CreateCustomereWAYHeader" part="eWAYHeader" use="literal" />
|
399
|
+
</wsdl:input>
|
400
|
+
<wsdl:output>
|
401
|
+
<soap12:body use="literal" />
|
402
|
+
</wsdl:output>
|
403
|
+
</wsdl:operation>
|
404
|
+
<wsdl:operation name="UpdateCustomer">
|
405
|
+
<soap12:operation soapAction="https://www.eway.com.au/gateway/managedpayment/UpdateCustomer" style="document" />
|
406
|
+
<wsdl:input>
|
407
|
+
<soap12:body use="literal" />
|
408
|
+
<soap12:header message="tns:UpdateCustomereWAYHeader" part="eWAYHeader" use="literal" />
|
409
|
+
</wsdl:input>
|
410
|
+
<wsdl:output>
|
411
|
+
<soap12:body use="literal" />
|
412
|
+
</wsdl:output>
|
413
|
+
</wsdl:operation>
|
414
|
+
<wsdl:operation name="QueryCustomer">
|
415
|
+
<soap12:operation soapAction="https://www.eway.com.au/gateway/managedpayment/QueryCustomer" style="document" />
|
416
|
+
<wsdl:input>
|
417
|
+
<soap12:body use="literal" />
|
418
|
+
<soap12:header message="tns:QueryCustomereWAYHeader" part="eWAYHeader" use="literal" />
|
419
|
+
</wsdl:input>
|
420
|
+
<wsdl:output>
|
421
|
+
<soap12:body use="literal" />
|
422
|
+
</wsdl:output>
|
423
|
+
</wsdl:operation>
|
424
|
+
<wsdl:operation name="QueryCustomerByReference">
|
425
|
+
<soap12:operation soapAction="https://www.eway.com.au/gateway/managedpayment/QueryCustomerByReference" style="document" />
|
426
|
+
<wsdl:input>
|
427
|
+
<soap12:body use="literal" />
|
428
|
+
<soap12:header message="tns:QueryCustomerByReferenceeWAYHeader" part="eWAYHeader" use="literal" />
|
429
|
+
</wsdl:input>
|
430
|
+
<wsdl:output>
|
431
|
+
<soap12:body use="literal" />
|
432
|
+
</wsdl:output>
|
433
|
+
</wsdl:operation>
|
434
|
+
<wsdl:operation name="ProcessPayment">
|
435
|
+
<soap12:operation soapAction="https://www.eway.com.au/gateway/managedpayment/ProcessPayment" style="document" />
|
436
|
+
<wsdl:input>
|
437
|
+
<soap12:body use="literal" />
|
438
|
+
<soap12:header message="tns:ProcessPaymenteWAYHeader" part="eWAYHeader" use="literal" />
|
439
|
+
</wsdl:input>
|
440
|
+
<wsdl:output>
|
441
|
+
<soap12:body use="literal" />
|
442
|
+
</wsdl:output>
|
443
|
+
</wsdl:operation>
|
444
|
+
<wsdl:operation name="ProcessPaymentWithCVN">
|
445
|
+
<soap12:operation soapAction="https://www.eway.com.au/gateway/managedpayment/ProcessPaymentWithCVN" style="document" />
|
446
|
+
<wsdl:input>
|
447
|
+
<soap12:body use="literal" />
|
448
|
+
<soap12:header message="tns:ProcessPaymentWithCVNeWAYHeader" part="eWAYHeader" use="literal" />
|
449
|
+
</wsdl:input>
|
450
|
+
<wsdl:output>
|
451
|
+
<soap12:body use="literal" />
|
452
|
+
</wsdl:output>
|
453
|
+
</wsdl:operation>
|
454
|
+
<wsdl:operation name="QueryPayment">
|
455
|
+
<soap12:operation soapAction="https://www.eway.com.au/gateway/managedpayment/QueryPayment" style="document" />
|
456
|
+
<wsdl:input>
|
457
|
+
<soap12:body use="literal" />
|
458
|
+
<soap12:header message="tns:QueryPaymenteWAYHeader" part="eWAYHeader" use="literal" />
|
459
|
+
</wsdl:input>
|
460
|
+
<wsdl:output>
|
461
|
+
<soap12:body use="literal" />
|
462
|
+
</wsdl:output>
|
463
|
+
</wsdl:operation>
|
464
|
+
</wsdl:binding>
|
465
|
+
<wsdl:service name="managedCreditCardPayment">
|
466
|
+
<wsdl:port name="managedCreditCardPaymentSoap" binding="tns:managedCreditCardPaymentSoap">
|
467
|
+
<soap:address location="https://www.eway.com.au/gateway/ManagedPaymentService/managedCreditCardPayment.asmx" />
|
468
|
+
</wsdl:port>
|
469
|
+
<wsdl:port name="managedCreditCardPaymentSoap12" binding="tns:managedCreditCardPaymentSoap12">
|
470
|
+
<soap12:address location="https://www.eway.com.au/gateway/ManagedPaymentService/managedCreditCardPayment.asmx" />
|
471
|
+
</wsdl:port>
|
472
|
+
</wsdl:service>
|
473
|
+
</wsdl:definitions>
|