saferpay 0.1.0.pre

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 4fbfec580ef1492544ed0491d140ad778e2b002f
4
+ data.tar.gz: 8a5ca3317322e098585cc82a8b740b215967e855
5
+ SHA512:
6
+ metadata.gz: c83decebd644d3758954bd8debbad26096334db2ae5dc174700e0b508923748537033e0652d92cff375bd538df919513671dceac846893654dee4c242725b641
7
+ data.tar.gz: 1870b5d8ebcf1b53142e7df0af7e427dcbce311a5f864e7227d430dd0db2199b5ef95aabc2f15de50ce5b3c518bcea07ab63f81116b808ad5ec7b76504318417
@@ -0,0 +1,34 @@
1
+ *.gem
2
+ *.rbc
3
+ /.config
4
+ /coverage/
5
+ /InstalledFiles
6
+ /pkg/
7
+ /spec/reports/
8
+ /test/tmp/
9
+ /test/version_tmp/
10
+ /tmp/
11
+
12
+ ## Specific to RubyMotion:
13
+ .dat*
14
+ .repl_history
15
+ build/
16
+
17
+ ## Documentation cache and generated files:
18
+ /.yardoc/
19
+ /_yardoc/
20
+ /doc/
21
+ /rdoc/
22
+
23
+ ## Environment normalisation:
24
+ /.bundle/
25
+ /lib/bundler/man/
26
+
27
+ # for a library or gem, you might want to ignore these files since the code is
28
+ # intended to run in multiple environments; otherwise, check them in:
29
+ Gemfile.lock
30
+ .ruby-version
31
+ .ruby-gemset
32
+
33
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
34
+ .rvmrc
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color
data/Gemfile ADDED
@@ -0,0 +1,2 @@
1
+ source 'https://rubygems.org'
2
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ The MIT License
2
+
3
+ Copyright (c) 2014 Pedro Gaspar and Whitesmith
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,29 @@
1
+ # Saferpay
2
+
3
+ A Ruby Saferpay API wrapper. Interact with Saferpay's HTTPS Interface with an object-oriented API wrapper built with HTTParty.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'saferpay'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install saferpay
18
+
19
+ ## Usage
20
+
21
+ TODO.
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it ( http://github.com/whitesmith/saferpay-gem/fork )
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
@@ -0,0 +1,7 @@
1
+ require 'bundler/gem_tasks'
2
+ require 'rspec/core/rake_task'
3
+
4
+ RSpec::Core::RakeTask.new('spec')
5
+
6
+ desc 'Run specs'
7
+ task :default => :spec
@@ -0,0 +1 @@
1
+ require 'saferpay/client'
@@ -0,0 +1,141 @@
1
+ require 'httparty'
2
+ require 'saferpay/configuration'
3
+ require 'saferpay/error'
4
+
5
+ module Saferpay
6
+ extend Configuration
7
+
8
+ class API
9
+ include HTTParty
10
+
11
+ base_uri Saferpay.options[:endpoint]
12
+ headers 'User-Agent' => Saferpay.options[:user_agent]
13
+
14
+ class << self
15
+
16
+ # Check every response for errors and raise
17
+ def perform_request(http_method, path, options, &block)
18
+ response = super(http_method, path, options, &block)
19
+ check_response(response)
20
+ response
21
+ end
22
+
23
+ def check_response(response)
24
+ raise Saferpay::Error.from_response(response) if response_errors?(response)
25
+ end
26
+
27
+ def response_errors?(response)
28
+ response.body =~ /^ERROR: .+/ || !response.response.is_a?(Net::HTTPSuccess)
29
+ end
30
+
31
+ end
32
+
33
+ # Define the same set of accessors as the Saferpay module
34
+ attr_accessor *Configuration::VALID_CONFIG_KEYS
35
+
36
+ def initialize(options = {})
37
+ # Merge the config values from the module and those passed to the class.
38
+ options.delete(:endpoint)
39
+ options.delete_if { |k, v| v.nil? }
40
+ @options = Saferpay.options.merge(options)
41
+
42
+ # Copy the merged values to this client and ignore those
43
+ # not part of our configuration
44
+ @options.each_pair do |key, val|
45
+ send "#{key}=", val
46
+ end
47
+ end
48
+
49
+ # Returns an hash with the payment url (:payment_url key)
50
+ # Raises an error if missing parameters
51
+ def get_payment_url(params = {})
52
+ params = get_payment_url_default_params.merge(params)
53
+ parse_get_payment_url_response self.class.get('/CreatePayInit.asp', :query => params)
54
+ end
55
+
56
+ # Returns hash with parsed (and verified) response data
57
+ # Raises an error if verification failed
58
+ def handle_pay_confirm(request_params = {}, original_options = nil)
59
+
60
+ # Verify data validity
61
+ verify_resp = parse_verify_pay_confirm_response self.class.get('/VerifyPayConfirm.asp', :query => default_params.merge(request_params))
62
+
63
+ # Parse verified callback data
64
+ callback_data = parse_callback_data(request_params)
65
+
66
+ # Check tampering
67
+ check_param_tampering(callback_data, original_options)
68
+
69
+ verify_resp.merge(:callback_data => callback_data)
70
+ end
71
+
72
+ # Returns an hash with ok
73
+ # Raises an error if missing parameters
74
+ def complete_payment(params = {})
75
+ params = default_params.merge(params)
76
+ parse_complete_payment_response self.class.get('/PayCompleteV2.asp', :query => params)
77
+ end
78
+
79
+ private
80
+
81
+ def parse_get_payment_url_response(resp)
82
+ resp.body
83
+ end
84
+
85
+ def parse_verify_pay_confirm_response(resp)
86
+ query = resp.body.split('OK:').last
87
+ query_to_hash(query)
88
+ end
89
+
90
+ def parse_callback_data(params)
91
+ params = normalize_params(params)
92
+ params[:data] = normalize_params(HTTParty::Parser.call(params[:data], :xml)['IDP'])
93
+ params
94
+ end
95
+
96
+ def parse_complete_payment_response(resp)
97
+ data = resp.body.split('OK:').last
98
+ data = normalize_params(HTTParty::Parser.call(data, :xml)['IDP'])
99
+ data[:successful] = (data[:result] == '0')
100
+ data
101
+ end
102
+
103
+ def check_param_tampering(callback, original)
104
+ check = original.nil? ? ['ACCOUNTID'] : ['AMOUNT', 'CURRENCY', 'ORDERID', 'ACCOUNTID']
105
+ original = default_params.merge(original || {})
106
+ diff = []
107
+
108
+ check.each do |param|
109
+ diff << param if original[param] != callback[:data][param.downcase.to_sym]
110
+ end
111
+
112
+ if diff.any?
113
+ raise Saferpay::Error::BadRequest, "Possible manipulation - #{diff.join(', ')} not matching"
114
+ end
115
+ end
116
+
117
+ def default_params
118
+ {
119
+ 'ACCOUNTID' => @options[:account_id],
120
+ }.reject{ |k, v| v.nil? }
121
+ end
122
+
123
+ def get_payment_url_default_params
124
+ default_params.merge({
125
+ 'SUCCESSLINK' => @options[:success_link],
126
+ 'FAILLINK' => @options[:fail_link],
127
+ 'BACKLINK' => @options[:back_link],
128
+ 'NOTIFYURL' => @options[:notify_url],
129
+ }).reject{ |k, v| v.nil? }
130
+ end
131
+
132
+ def query_to_hash(query)
133
+ Hash[ query.split('&').map { |q| q.split('=').each_with_index.map { |p, i| (i == 0) ? p.downcase.to_sym : URI.decode(p) } } ]
134
+ end
135
+
136
+ def normalize_params(params)
137
+ Hash[ params.to_hash.each_pair.map { |k, v| [(k.downcase.to_sym rescue k), (URI.decode(v).gsub('+', ' ') rescue v)] } ]
138
+ end
139
+
140
+ end
141
+ end
@@ -0,0 +1,38 @@
1
+ module Saferpay
2
+ module Configuration
3
+
4
+ DEFAULTS = {
5
+ endpoint: 'https://www.saferpay.com/hosting',
6
+ user_agent: 'Saferpay API Ruby Wrapper',
7
+ account_id: '99867-94913159', # Saferpay test account
8
+ success_link: nil,
9
+ fail_link: nil,
10
+ back_link: nil,
11
+ notify_url: nil,
12
+ }.freeze
13
+
14
+ VALID_CONFIG_KEYS = DEFAULTS.keys.freeze
15
+
16
+ # Build accessor methods for every config options so we can do this, for example: Saferpay.account_id = 'xxxxx'
17
+ attr_accessor *VALID_CONFIG_KEYS
18
+
19
+ def options
20
+ @options = Hash[ * DEFAULTS.map { |key, val| [key, send(key)] }.flatten ].freeze
21
+ end
22
+
23
+ # Make sure we have the default values set when we get 'extended'
24
+ def self.extended(base)
25
+ base.reset
26
+ end
27
+
28
+ def reset
29
+ options.each_pair do |key, val|
30
+ send "#{key}=", DEFAULTS[key]
31
+ end
32
+ end
33
+
34
+ def configure
35
+ yield self
36
+ end
37
+ end
38
+ end
@@ -0,0 +1,89 @@
1
+ module Saferpay
2
+
3
+ class Error < StandardError
4
+ attr_reader :code
5
+
6
+ class << self
7
+ # Create a new error from an HTTP response
8
+ def from_response(response)
9
+ message, code = parse_error(response)
10
+ klass = errors[code] || self
11
+ klass.new(message, code)
12
+ end
13
+
14
+ def errors
15
+ @errors ||= {
16
+ 400 => Saferpay::Error::BadRequest,
17
+ 401 => Saferpay::Error::Unauthorized,
18
+ 403 => Saferpay::Error::Forbidden,
19
+ 404 => Saferpay::Error::NotFound,
20
+ 406 => Saferpay::Error::NotAcceptable,
21
+ 408 => Saferpay::Error::RequestTimeout,
22
+ 422 => Saferpay::Error::UnprocessableEntity,
23
+ 500 => Saferpay::Error::InternalServerError,
24
+ 502 => Saferpay::Error::BadGateway,
25
+ 503 => Saferpay::Error::ServiceUnavailable,
26
+ 504 => Saferpay::Error::GatewayTimeout,
27
+ }
28
+ end
29
+
30
+ private
31
+
32
+ def parse_error(response)
33
+ if response.body =~ /^ERROR: (.+)/
34
+ [$1.gsub(/[.?;]?$/, '').gsub('PayComplete: ', '').sub(/^[a-z]/) {|c| c.upcase}, 400]
35
+ else
36
+ msg = response.response.message
37
+ msg = response.response.class.name.split('::').last.gsub('HTTP','').gsub(/[A-Z]/, ' \0').strip if msg.empty? # Net::HTTPNotFound -> Not Found
38
+ [msg, response.code]
39
+ end
40
+ end
41
+
42
+ end
43
+
44
+ # Initializes a new Error object
45
+ def initialize(message = '', code = nil)
46
+ super(message)
47
+ @code = code
48
+ end
49
+
50
+ # Raised if Saferpay returns a 4xx HTTP status code
51
+ class ClientError < self; end
52
+
53
+ # Raised if Saferpay returns the HTTP status code 400
54
+ class BadRequest < ClientError; end
55
+
56
+ # Raised if Saferpay returns the HTTP status code 401
57
+ class Unauthorized < ClientError; end
58
+
59
+ # Raised if Saferpay returns the HTTP status code 403
60
+ class Forbidden < ClientError; end
61
+
62
+ # Raised if Saferpay returns the HTTP status code 404
63
+ class NotFound < ClientError; end
64
+
65
+ # Raised if Saferpay returns the HTTP status code 406
66
+ class NotAcceptable < ClientError; end
67
+
68
+ # Raised if Saferpay returns the HTTP status code 408
69
+ class RequestTimeout < ClientError; end
70
+
71
+ # Raised if Saferpay returns the HTTP status code 422
72
+ class UnprocessableEntity < ClientError; end
73
+
74
+ # Raised if Saferpay returns a 5xx HTTP status code
75
+ class ServerError < self; end
76
+
77
+ # Raised if Saferpay returns the HTTP status code 500
78
+ class InternalServerError < ServerError; end
79
+
80
+ # Raised if Saferpay returns the HTTP status code 502
81
+ class BadGateway < ServerError; end
82
+
83
+ # Raised if Saferpay returns the HTTP status code 503
84
+ class ServiceUnavailable < ServerError; end
85
+
86
+ # Raised if Saferpay returns the HTTP status code 504
87
+ class GatewayTimeout < ServerError; end
88
+ end
89
+ end
@@ -0,0 +1,3 @@
1
+ module Saferpay
2
+ VERSION = '0.1.0.pre'
3
+ end
@@ -0,0 +1,29 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'saferpay/version'
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = 'saferpay'
8
+ s.version = Saferpay::VERSION
9
+ s.authors = ['Pedro Gaspar', 'Whitesmith']
10
+ s.email = ['me@pedrogaspar.com', 'info@whitesmith.co']
11
+ s.licenses = 'MIT'
12
+
13
+ s.summary = 'A Ruby Saferpay API wrapper'
14
+ s.description = 'Interact with Saferpay\'s HTTPS Interface with an object-oriented API wrapper built with HTTParty.'
15
+ s.homepage = 'http://github.com/whitesmith/saferpay-gem'
16
+
17
+ s.files = `git ls-files`.split($/)
18
+ s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
19
+ s.test_files = s.files.grep(%r{^(test|spec|features)/})
20
+ s.require_paths = ['lib']
21
+
22
+ s.add_dependency 'httparty', '~> 0.12'
23
+
24
+ s.add_development_dependency 'bundler', '~> 1.5'
25
+ s.add_development_dependency 'rake', '~> 0'
26
+ s.add_development_dependency 'rspec', '~> 2.14.1'
27
+ s.add_development_dependency 'webmock', '1.15.2'
28
+ s.add_development_dependency 'vcr', '~> 2.8'
29
+ end
@@ -0,0 +1,1354 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://www.saferpay.com/hosting/CreatePayInit.asp?ACCOUNTID=99867-94913159
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers: {}
10
+ response:
11
+ status:
12
+ code: 200
13
+ message: OK
14
+ headers:
15
+ Cache-Control:
16
+ - private
17
+ Content-Length:
18
+ - '31'
19
+ Content-Type:
20
+ - text/html
21
+ Server:
22
+ - Microsoft-IIS/7.5
23
+ Set-Cookie:
24
+ - ASPSESSIONIDCETCDQCA=OJNLNGOCCFFOMHNBPIGOPIPB; secure; path=/
25
+ X-Powered-By:
26
+ - ASP.NET
27
+ Date:
28
+ - Sat, 08 Feb 2014 18:21:02 GMT
29
+ body:
30
+ encoding: UTF-8
31
+ string: 'ERROR: Missing AMOUNT attribute'
32
+ http_version:
33
+ recorded_at: Sat, 08 Feb 2014 18:21:06 GMT
34
+ - request:
35
+ method: get
36
+ uri: https://www.saferpay.com/hosting/CreatePayInit.asp?ACCOUNTID=99867-94913159&AMOUNT=1000&CURRENCY=EUR
37
+ body:
38
+ encoding: US-ASCII
39
+ string: ''
40
+ headers: {}
41
+ response:
42
+ status:
43
+ code: 200
44
+ message: OK
45
+ headers:
46
+ Cache-Control:
47
+ - private
48
+ Content-Length:
49
+ - '36'
50
+ Content-Type:
51
+ - text/html
52
+ Server:
53
+ - Microsoft-IIS/7.5
54
+ Set-Cookie:
55
+ - ASPSESSIONIDCETCDQCA=AKNLNGOCDLKHJDAJJEJCBIHE; secure; path=/
56
+ X-Powered-By:
57
+ - ASP.NET
58
+ Date:
59
+ - Sat, 08 Feb 2014 18:21:03 GMT
60
+ body:
61
+ encoding: UTF-8
62
+ string: 'ERROR: Missing DESCRIPTION attribute'
63
+ http_version:
64
+ recorded_at: Sat, 08 Feb 2014 18:21:06 GMT
65
+ - request:
66
+ method: get
67
+ uri: https://www.saferpay.com/hosting/CreatePayInit.asp?ACCOUNTID=99867-94913159&AMOUNT=1000
68
+ body:
69
+ encoding: US-ASCII
70
+ string: ''
71
+ headers: {}
72
+ response:
73
+ status:
74
+ code: 200
75
+ message: OK
76
+ headers:
77
+ Cache-Control:
78
+ - private
79
+ Content-Length:
80
+ - '33'
81
+ Content-Type:
82
+ - text/html
83
+ Server:
84
+ - Microsoft-IIS/7.5
85
+ Set-Cookie:
86
+ - ASPSESSIONIDCETCDQCA=BKNLNGOCKNPDNEKAJJCLGABE; secure; path=/
87
+ X-Powered-By:
88
+ - ASP.NET
89
+ Date:
90
+ - Sat, 08 Feb 2014 18:21:03 GMT
91
+ body:
92
+ encoding: UTF-8
93
+ string: 'ERROR: Missing CURRENCY attribute'
94
+ http_version:
95
+ recorded_at: Sat, 08 Feb 2014 18:21:07 GMT
96
+ - request:
97
+ method: get
98
+ uri: https://www.saferpay.com/hosting/CreatePayInit.asp?ACCOUNTID=99867-94913159&AMOUNT=1000&CURRENCY=EUR&DESCRIPTION=Test%20description.
99
+ body:
100
+ encoding: US-ASCII
101
+ string: ''
102
+ headers: {}
103
+ response:
104
+ status:
105
+ code: 200
106
+ message: OK
107
+ headers:
108
+ Cache-Control:
109
+ - private
110
+ Content-Length:
111
+ - '727'
112
+ Content-Type:
113
+ - text/html
114
+ Server:
115
+ - Microsoft-IIS/7.5
116
+ Set-Cookie:
117
+ - ASPSESSIONIDCETCDQCA=FKNLNGOCLLCCEJCMIIEGLNMH; secure; path=/
118
+ X-Powered-By:
119
+ - ASP.NET
120
+ Date:
121
+ - Sat, 08 Feb 2014 18:21:04 GMT
122
+ body:
123
+ encoding: UTF-8
124
+ string: https://www.saferpay.com/vt2/Pay.aspx?DATA=%3cIDP+MSGTYPE%3d%22PayInit%22+MSG_GUID%3d%223032f95c3a2d4aefb0d82e05000f3d2b%22+CLIENTVERSION%3d%222.2%22+KEYID%3d%220-99867-7d5a273c0f5043e28811e764d6433086%22+TOKEN%3d%22e36e372bb77f4fa2a8691b6c722a598a%22+ALLOWCOLLECT%3d%22no%22+DELIVERY%3d%22yes%22+EXPIRATION%3d%2220140209+19%3a21%3a05%22+ACCOUNTID%3d%2299867-94913159%22+AMOUNT%3d%221000%22+CURRENCY%3d%22EUR%22+DESCRIPTION%3d%22Test+description.%22+SUCCESSLINK%3d%22http%3a%2f%2fsupport.saferpay.de%2fscripts%2fsuccess.htm%22+BACKLINK%3d%22%22+FAILLINK%3d%22%22+CCNAME%3d%22yes%22+%2f%3e&SIGNATURE=2db0c786e378c3e21035206ffa561ec679d6e093f4d1d408a75b73d1ab9680b1594c19d2cbca021ae44b34312e6188e61ec7c81607af2bfbbc078be6a474fce7
125
+ http_version:
126
+ recorded_at: Sat, 08 Feb 2014 18:21:07 GMT
127
+ - request:
128
+ method: get
129
+ uri: https://www.saferpay.com/hosting/foobar
130
+ body:
131
+ encoding: US-ASCII
132
+ string: ''
133
+ headers: {}
134
+ response:
135
+ status:
136
+ code: 404
137
+ message: Not Found
138
+ headers:
139
+ Content-Type:
140
+ - text/html
141
+ Server:
142
+ - Microsoft-IIS/7.5
143
+ X-Powered-By:
144
+ - ASP.NET
145
+ Date:
146
+ - Sat, 08 Feb 2014 18:21:04 GMT
147
+ Content-Length:
148
+ - '1245'
149
+ body:
150
+ encoding: UTF-8
151
+ string: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html
152
+ xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\"
153
+ content=\"text/html; charset=iso-8859-1\"/>\r\n<title>404 - File or directory
154
+ not found.</title>\r\n<style type=\"text/css\">\r\n<!--\r\nbody{margin:0;font-size:.7em;font-family:Verdana,
155
+ Arial, Helvetica, sans-serif;background:#EEEEEE;}\r\nfieldset{padding:0 15px
156
+ 10px 15px;} \r\nh1{font-size:2.4em;margin:0;color:#FFF;}\r\nh2{font-size:1.7em;margin:0;color:#CC0000;}
157
+ \r\nh3{font-size:1.2em;margin:10px 0 0 0;color:#000000;} \r\n#header{width:96%;margin:0
158
+ 0 0 0;padding:6px 2% 6px 2%;font-family:\"trebuchet MS\", Verdana, sans-serif;color:#FFF;\r\nbackground-color:#555555;}\r\n#content{margin:0
159
+ 0 0 2%;position:relative;}\r\n.content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;position:relative;}\r\n-->\r\n</style>\r\n</head>\r\n<body>\r\n<div
160
+ id=\"header\"><h1>Server Error</h1></div>\r\n<div id=\"content\">\r\n <div
161
+ class=\"content-container\"><fieldset>\r\n <h2>404 - File or directory not
162
+ found.</h2>\r\n <h3>The resource you are looking for might have been removed,
163
+ had its name changed, or is temporarily unavailable.</h3>\r\n </fieldset></div>\r\n</div>\r\n</body>\r\n</html>\r\n"
164
+ http_version:
165
+ recorded_at: Sat, 08 Feb 2014 18:21:08 GMT
166
+ - request:
167
+ method: move
168
+ uri: https://www.saferpay.com/hosting/foobar
169
+ body:
170
+ encoding: US-ASCII
171
+ string: ''
172
+ headers: {}
173
+ response:
174
+ status:
175
+ code: 405
176
+ message: ''
177
+ headers:
178
+ Cache-Control:
179
+ - no-cache
180
+ Pragma:
181
+ - no-cache
182
+ Content-Type:
183
+ - text/html
184
+ Server:
185
+ - Microsoft-IIS/7.5
186
+ X-Powered-By:
187
+ - ASP.NET
188
+ Date:
189
+ - Sat, 08 Feb 2014 18:21:06 GMT
190
+ Content-Length:
191
+ - '1293'
192
+ body:
193
+ encoding: UTF-8
194
+ string: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html
195
+ xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\"
196
+ content=\"text/html; charset=iso-8859-1\"/>\r\n<title>405 - HTTP verb used
197
+ to access this page is not allowed.</title>\r\n<style type=\"text/css\">\r\n<!--\r\nbody{margin:0;font-size:.7em;font-family:Verdana,
198
+ Arial, Helvetica, sans-serif;background:#EEEEEE;}\r\nfieldset{padding:0 15px
199
+ 10px 15px;} \r\nh1{font-size:2.4em;margin:0;color:#FFF;}\r\nh2{font-size:1.7em;margin:0;color:#CC0000;}
200
+ \r\nh3{font-size:1.2em;margin:10px 0 0 0;color:#000000;} \r\n#header{width:96%;margin:0
201
+ 0 0 0;padding:6px 2% 6px 2%;font-family:\"trebuchet MS\", Verdana, sans-serif;color:#FFF;\r\nbackground-color:#555555;}\r\n#content{margin:0
202
+ 0 0 2%;position:relative;}\r\n.content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;position:relative;}\r\n-->\r\n</style>\r\n</head>\r\n<body>\r\n<div
203
+ id=\"header\"><h1>Server Error</h1></div>\r\n<div id=\"content\">\r\n <div
204
+ class=\"content-container\"><fieldset>\r\n <h2>405 - HTTP verb used to access
205
+ this page is not allowed.</h2>\r\n <h3>The page you are looking for cannot
206
+ be displayed because an invalid method (HTTP verb) was used to attempt access.</h3>\r\n
207
+ </fieldset></div>\r\n</div>\r\n</body>\r\n</html>\r\n"
208
+ http_version:
209
+ recorded_at: Sat, 08 Feb 2014 18:21:08 GMT
210
+ - request:
211
+ method: delete
212
+ uri: https://www.saferpay.com/hosting/foobar
213
+ body:
214
+ encoding: US-ASCII
215
+ string: ''
216
+ headers: {}
217
+ response:
218
+ status:
219
+ code: 405
220
+ message: ''
221
+ headers:
222
+ Cache-Control:
223
+ - no-cache
224
+ Pragma:
225
+ - no-cache
226
+ Content-Type:
227
+ - text/html
228
+ Server:
229
+ - Microsoft-IIS/7.5
230
+ X-Powered-By:
231
+ - ASP.NET
232
+ Date:
233
+ - Sat, 08 Feb 2014 18:21:06 GMT
234
+ Content-Length:
235
+ - '1293'
236
+ body:
237
+ encoding: UTF-8
238
+ string: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html
239
+ xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\"
240
+ content=\"text/html; charset=iso-8859-1\"/>\r\n<title>405 - HTTP verb used
241
+ to access this page is not allowed.</title>\r\n<style type=\"text/css\">\r\n<!--\r\nbody{margin:0;font-size:.7em;font-family:Verdana,
242
+ Arial, Helvetica, sans-serif;background:#EEEEEE;}\r\nfieldset{padding:0 15px
243
+ 10px 15px;} \r\nh1{font-size:2.4em;margin:0;color:#FFF;}\r\nh2{font-size:1.7em;margin:0;color:#CC0000;}
244
+ \r\nh3{font-size:1.2em;margin:10px 0 0 0;color:#000000;} \r\n#header{width:96%;margin:0
245
+ 0 0 0;padding:6px 2% 6px 2%;font-family:\"trebuchet MS\", Verdana, sans-serif;color:#FFF;\r\nbackground-color:#555555;}\r\n#content{margin:0
246
+ 0 0 2%;position:relative;}\r\n.content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;position:relative;}\r\n-->\r\n</style>\r\n</head>\r\n<body>\r\n<div
247
+ id=\"header\"><h1>Server Error</h1></div>\r\n<div id=\"content\">\r\n <div
248
+ class=\"content-container\"><fieldset>\r\n <h2>405 - HTTP verb used to access
249
+ this page is not allowed.</h2>\r\n <h3>The page you are looking for cannot
250
+ be displayed because an invalid method (HTTP verb) was used to attempt access.</h3>\r\n
251
+ </fieldset></div>\r\n</div>\r\n</body>\r\n</html>\r\n"
252
+ http_version:
253
+ recorded_at: Sat, 08 Feb 2014 18:21:09 GMT
254
+ - request:
255
+ method: head
256
+ uri: https://www.saferpay.com/hosting/foobar
257
+ body:
258
+ encoding: US-ASCII
259
+ string: ''
260
+ headers: {}
261
+ response:
262
+ status:
263
+ code: 404
264
+ message: Not Found
265
+ headers:
266
+ Content-Length:
267
+ - '1245'
268
+ Content-Type:
269
+ - text/html
270
+ Server:
271
+ - Microsoft-IIS/7.5
272
+ X-Powered-By:
273
+ - ASP.NET
274
+ Date:
275
+ - Sat, 08 Feb 2014 18:21:07 GMT
276
+ body:
277
+ encoding: UTF-8
278
+ string: ''
279
+ http_version:
280
+ recorded_at: Sat, 08 Feb 2014 18:21:09 GMT
281
+ - request:
282
+ method: copy
283
+ uri: https://www.saferpay.com/hosting/foobar
284
+ body:
285
+ encoding: US-ASCII
286
+ string: ''
287
+ headers: {}
288
+ response:
289
+ status:
290
+ code: 405
291
+ message: ''
292
+ headers:
293
+ Cache-Control:
294
+ - no-cache
295
+ Pragma:
296
+ - no-cache
297
+ Content-Type:
298
+ - text/html
299
+ Server:
300
+ - Microsoft-IIS/7.5
301
+ X-Powered-By:
302
+ - ASP.NET
303
+ Date:
304
+ - Sat, 08 Feb 2014 18:21:07 GMT
305
+ Content-Length:
306
+ - '1293'
307
+ body:
308
+ encoding: UTF-8
309
+ string: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html
310
+ xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\"
311
+ content=\"text/html; charset=iso-8859-1\"/>\r\n<title>405 - HTTP verb used
312
+ to access this page is not allowed.</title>\r\n<style type=\"text/css\">\r\n<!--\r\nbody{margin:0;font-size:.7em;font-family:Verdana,
313
+ Arial, Helvetica, sans-serif;background:#EEEEEE;}\r\nfieldset{padding:0 15px
314
+ 10px 15px;} \r\nh1{font-size:2.4em;margin:0;color:#FFF;}\r\nh2{font-size:1.7em;margin:0;color:#CC0000;}
315
+ \r\nh3{font-size:1.2em;margin:10px 0 0 0;color:#000000;} \r\n#header{width:96%;margin:0
316
+ 0 0 0;padding:6px 2% 6px 2%;font-family:\"trebuchet MS\", Verdana, sans-serif;color:#FFF;\r\nbackground-color:#555555;}\r\n#content{margin:0
317
+ 0 0 2%;position:relative;}\r\n.content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;position:relative;}\r\n-->\r\n</style>\r\n</head>\r\n<body>\r\n<div
318
+ id=\"header\"><h1>Server Error</h1></div>\r\n<div id=\"content\">\r\n <div
319
+ class=\"content-container\"><fieldset>\r\n <h2>405 - HTTP verb used to access
320
+ this page is not allowed.</h2>\r\n <h3>The page you are looking for cannot
321
+ be displayed because an invalid method (HTTP verb) was used to attempt access.</h3>\r\n
322
+ </fieldset></div>\r\n</div>\r\n</body>\r\n</html>\r\n"
323
+ http_version:
324
+ recorded_at: Sat, 08 Feb 2014 18:21:10 GMT
325
+ - request:
326
+ method: post
327
+ uri: https://www.saferpay.com/hosting/foobar
328
+ body:
329
+ encoding: UTF-8
330
+ string: ''
331
+ headers: {}
332
+ response:
333
+ status:
334
+ code: 404
335
+ message: Not Found
336
+ headers:
337
+ Content-Type:
338
+ - text/html
339
+ Server:
340
+ - Microsoft-IIS/7.5
341
+ X-Powered-By:
342
+ - ASP.NET
343
+ Date:
344
+ - Sat, 08 Feb 2014 18:21:08 GMT
345
+ Content-Length:
346
+ - '1245'
347
+ body:
348
+ encoding: UTF-8
349
+ string: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html
350
+ xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\"
351
+ content=\"text/html; charset=iso-8859-1\"/>\r\n<title>404 - File or directory
352
+ not found.</title>\r\n<style type=\"text/css\">\r\n<!--\r\nbody{margin:0;font-size:.7em;font-family:Verdana,
353
+ Arial, Helvetica, sans-serif;background:#EEEEEE;}\r\nfieldset{padding:0 15px
354
+ 10px 15px;} \r\nh1{font-size:2.4em;margin:0;color:#FFF;}\r\nh2{font-size:1.7em;margin:0;color:#CC0000;}
355
+ \r\nh3{font-size:1.2em;margin:10px 0 0 0;color:#000000;} \r\n#header{width:96%;margin:0
356
+ 0 0 0;padding:6px 2% 6px 2%;font-family:\"trebuchet MS\", Verdana, sans-serif;color:#FFF;\r\nbackground-color:#555555;}\r\n#content{margin:0
357
+ 0 0 2%;position:relative;}\r\n.content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;position:relative;}\r\n-->\r\n</style>\r\n</head>\r\n<body>\r\n<div
358
+ id=\"header\"><h1>Server Error</h1></div>\r\n<div id=\"content\">\r\n <div
359
+ class=\"content-container\"><fieldset>\r\n <h2>404 - File or directory not
360
+ found.</h2>\r\n <h3>The resource you are looking for might have been removed,
361
+ had its name changed, or is temporarily unavailable.</h3>\r\n </fieldset></div>\r\n</div>\r\n</body>\r\n</html>\r\n"
362
+ http_version:
363
+ recorded_at: Sat, 08 Feb 2014 18:21:10 GMT
364
+ - request:
365
+ method: put
366
+ uri: https://www.saferpay.com/hosting/foobar
367
+ body:
368
+ encoding: UTF-8
369
+ string: ''
370
+ headers: {}
371
+ response:
372
+ status:
373
+ code: 405
374
+ message: ''
375
+ headers:
376
+ Cache-Control:
377
+ - no-cache
378
+ Pragma:
379
+ - no-cache
380
+ Content-Type:
381
+ - text/html
382
+ Server:
383
+ - Microsoft-IIS/7.5
384
+ X-Powered-By:
385
+ - ASP.NET
386
+ Date:
387
+ - Sat, 08 Feb 2014 18:21:08 GMT
388
+ Content-Length:
389
+ - '1293'
390
+ body:
391
+ encoding: UTF-8
392
+ string: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html
393
+ xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\"
394
+ content=\"text/html; charset=iso-8859-1\"/>\r\n<title>405 - HTTP verb used
395
+ to access this page is not allowed.</title>\r\n<style type=\"text/css\">\r\n<!--\r\nbody{margin:0;font-size:.7em;font-family:Verdana,
396
+ Arial, Helvetica, sans-serif;background:#EEEEEE;}\r\nfieldset{padding:0 15px
397
+ 10px 15px;} \r\nh1{font-size:2.4em;margin:0;color:#FFF;}\r\nh2{font-size:1.7em;margin:0;color:#CC0000;}
398
+ \r\nh3{font-size:1.2em;margin:10px 0 0 0;color:#000000;} \r\n#header{width:96%;margin:0
399
+ 0 0 0;padding:6px 2% 6px 2%;font-family:\"trebuchet MS\", Verdana, sans-serif;color:#FFF;\r\nbackground-color:#555555;}\r\n#content{margin:0
400
+ 0 0 2%;position:relative;}\r\n.content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;position:relative;}\r\n-->\r\n</style>\r\n</head>\r\n<body>\r\n<div
401
+ id=\"header\"><h1>Server Error</h1></div>\r\n<div id=\"content\">\r\n <div
402
+ class=\"content-container\"><fieldset>\r\n <h2>405 - HTTP verb used to access
403
+ this page is not allowed.</h2>\r\n <h3>The page you are looking for cannot
404
+ be displayed because an invalid method (HTTP verb) was used to attempt access.</h3>\r\n
405
+ </fieldset></div>\r\n</div>\r\n</body>\r\n</html>\r\n"
406
+ http_version:
407
+ recorded_at: Sat, 08 Feb 2014 18:21:11 GMT
408
+ - request:
409
+ method: get
410
+ uri: https://www.saferpay.com/hostingVerfiPayConfirm.asp?ACCOUNTID=99867-94913159
411
+ body:
412
+ encoding: US-ASCII
413
+ string: ''
414
+ headers: {}
415
+ response:
416
+ status:
417
+ code: 404
418
+ message: Not Found
419
+ headers:
420
+ Content-Type:
421
+ - text/html
422
+ Server:
423
+ - Microsoft-IIS/7.5
424
+ X-Powered-By:
425
+ - ASP.NET
426
+ Date:
427
+ - Sat, 08 Feb 2014 19:31:10 GMT
428
+ Content-Length:
429
+ - '1245'
430
+ body:
431
+ encoding: UTF-8
432
+ string: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html
433
+ xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\"
434
+ content=\"text/html; charset=iso-8859-1\"/>\r\n<title>404 - File or directory
435
+ not found.</title>\r\n<style type=\"text/css\">\r\n<!--\r\nbody{margin:0;font-size:.7em;font-family:Verdana,
436
+ Arial, Helvetica, sans-serif;background:#EEEEEE;}\r\nfieldset{padding:0 15px
437
+ 10px 15px;} \r\nh1{font-size:2.4em;margin:0;color:#FFF;}\r\nh2{font-size:1.7em;margin:0;color:#CC0000;}
438
+ \r\nh3{font-size:1.2em;margin:10px 0 0 0;color:#000000;} \r\n#header{width:96%;margin:0
439
+ 0 0 0;padding:6px 2% 6px 2%;font-family:\"trebuchet MS\", Verdana, sans-serif;color:#FFF;\r\nbackground-color:#555555;}\r\n#content{margin:0
440
+ 0 0 2%;position:relative;}\r\n.content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;position:relative;}\r\n-->\r\n</style>\r\n</head>\r\n<body>\r\n<div
441
+ id=\"header\"><h1>Server Error</h1></div>\r\n<div id=\"content\">\r\n <div
442
+ class=\"content-container\"><fieldset>\r\n <h2>404 - File or directory not
443
+ found.</h2>\r\n <h3>The resource you are looking for might have been removed,
444
+ had its name changed, or is temporarily unavailable.</h3>\r\n </fieldset></div>\r\n</div>\r\n</body>\r\n</html>\r\n"
445
+ http_version:
446
+ recorded_at: Sat, 08 Feb 2014 19:31:10 GMT
447
+ - request:
448
+ method: get
449
+ uri: https://www.saferpay.com/hostingVerfiPayConfirm.asp?ACCOUNTID=99867-94913159&DATA=test-data&SIGNATURE=test-signature
450
+ body:
451
+ encoding: US-ASCII
452
+ string: ''
453
+ headers: {}
454
+ response:
455
+ status:
456
+ code: 404
457
+ message: Not Found
458
+ headers:
459
+ Content-Type:
460
+ - text/html
461
+ Server:
462
+ - Microsoft-IIS/7.5
463
+ X-Powered-By:
464
+ - ASP.NET
465
+ Date:
466
+ - Sat, 08 Feb 2014 19:31:10 GMT
467
+ Content-Length:
468
+ - '1245'
469
+ body:
470
+ encoding: UTF-8
471
+ string: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html
472
+ xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\"
473
+ content=\"text/html; charset=iso-8859-1\"/>\r\n<title>404 - File or directory
474
+ not found.</title>\r\n<style type=\"text/css\">\r\n<!--\r\nbody{margin:0;font-size:.7em;font-family:Verdana,
475
+ Arial, Helvetica, sans-serif;background:#EEEEEE;}\r\nfieldset{padding:0 15px
476
+ 10px 15px;} \r\nh1{font-size:2.4em;margin:0;color:#FFF;}\r\nh2{font-size:1.7em;margin:0;color:#CC0000;}
477
+ \r\nh3{font-size:1.2em;margin:10px 0 0 0;color:#000000;} \r\n#header{width:96%;margin:0
478
+ 0 0 0;padding:6px 2% 6px 2%;font-family:\"trebuchet MS\", Verdana, sans-serif;color:#FFF;\r\nbackground-color:#555555;}\r\n#content{margin:0
479
+ 0 0 2%;position:relative;}\r\n.content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;position:relative;}\r\n-->\r\n</style>\r\n</head>\r\n<body>\r\n<div
480
+ id=\"header\"><h1>Server Error</h1></div>\r\n<div id=\"content\">\r\n <div
481
+ class=\"content-container\"><fieldset>\r\n <h2>404 - File or directory not
482
+ found.</h2>\r\n <h3>The resource you are looking for might have been removed,
483
+ had its name changed, or is temporarily unavailable.</h3>\r\n </fieldset></div>\r\n</div>\r\n</body>\r\n</html>\r\n"
484
+ http_version:
485
+ recorded_at: Sat, 08 Feb 2014 19:31:11 GMT
486
+ - request:
487
+ method: get
488
+ uri: https://www.saferpay.com/hostingVerfiPayConfirm.asp?ACCOUNTID=99867-94913159&DATA=%3CIDP%2BMSGTYPE=%5C%22PayConfirm%5C%22%2BTOKEN=%5C%22(unused)%5C%22%2BVTVERIFY=%5C%22(obsolete)%5C%22%2BKEYID=%5C%221-0%5C%22%2BID=%5C%22A668MSAprOj4tAzv7G9lAQUfUr3A%5C%22%2BACCOUNTID=%5C%2299867-94913159%5C%22%2BPROVIDERID=%5C%2290%5C%22%2BPROVIDERNAME=%5C%22Saferpay%2BTest%2BCard%5C%22%2BORDERID=%5C%22123456789-001%5C%22%2BAMOUNT=%5C%221000%5C%22%2BCURRENCY=%5C%22EUR%5C%22%2BIP=%5C%22193.247.180.193%5C%22%2BIPCOUNTRY=%5C%22CH%5C%22%2BCCCOUNTRY=%5C%22XX%5C%22%2BMPI_LIABILITYSHIFT=%5C%22yes%5C%22%2BMPI_TX_CAVV=%5C%22AAABBIIFmAAAAAAAAAAAAAAAAAA=%5C%22%2BMPI_XID=%5C%22CxMTYwhoUXtCBAEndBULcRIQaAY=%5C%22%2BECI=%5C%221%5C%22%2BCAVV=%5C%22AAABBIIFmAAAAAAAAAAAAAAAAAA=%5C%22%2BXID=%5C%22CxMTYwhoUXtCBAEndBULcRIQaAY=%5C%22%2B/%3E&SIGNATURE=7b2bb163f4ef86d969d992b4e2d61ad48d3b9022e0ec68177e35fe53184e6b3399730d1a3641d2a984ce38699daad72ab006d5d6a9565c5ae1cff8bdc8a1eb63
489
+ body:
490
+ encoding: US-ASCII
491
+ string: ''
492
+ headers: {}
493
+ response:
494
+ status:
495
+ code: 404
496
+ message: Not Found
497
+ headers:
498
+ Content-Type:
499
+ - text/html
500
+ Server:
501
+ - Microsoft-IIS/7.5
502
+ X-Powered-By:
503
+ - ASP.NET
504
+ Date:
505
+ - Sat, 08 Feb 2014 19:31:11 GMT
506
+ Content-Length:
507
+ - '1245'
508
+ body:
509
+ encoding: UTF-8
510
+ string: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html
511
+ xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\"
512
+ content=\"text/html; charset=iso-8859-1\"/>\r\n<title>404 - File or directory
513
+ not found.</title>\r\n<style type=\"text/css\">\r\n<!--\r\nbody{margin:0;font-size:.7em;font-family:Verdana,
514
+ Arial, Helvetica, sans-serif;background:#EEEEEE;}\r\nfieldset{padding:0 15px
515
+ 10px 15px;} \r\nh1{font-size:2.4em;margin:0;color:#FFF;}\r\nh2{font-size:1.7em;margin:0;color:#CC0000;}
516
+ \r\nh3{font-size:1.2em;margin:10px 0 0 0;color:#000000;} \r\n#header{width:96%;margin:0
517
+ 0 0 0;padding:6px 2% 6px 2%;font-family:\"trebuchet MS\", Verdana, sans-serif;color:#FFF;\r\nbackground-color:#555555;}\r\n#content{margin:0
518
+ 0 0 2%;position:relative;}\r\n.content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;position:relative;}\r\n-->\r\n</style>\r\n</head>\r\n<body>\r\n<div
519
+ id=\"header\"><h1>Server Error</h1></div>\r\n<div id=\"content\">\r\n <div
520
+ class=\"content-container\"><fieldset>\r\n <h2>404 - File or directory not
521
+ found.</h2>\r\n <h3>The resource you are looking for might have been removed,
522
+ had its name changed, or is temporarily unavailable.</h3>\r\n </fieldset></div>\r\n</div>\r\n</body>\r\n</html>\r\n"
523
+ http_version:
524
+ recorded_at: Sat, 08 Feb 2014 19:31:11 GMT
525
+ - request:
526
+ method: get
527
+ uri: https://www.saferpay.com/hostingVerfiPayConfirm.asp?ACCOUNTID=99867-94913159&DATA=%3CIDP%2BMSGTYPE=%5C%22PayConfirm%5C%22%2BTOKEN=%5C%22(unused)%5C%22%2BVTVERIFY=%5C%22(obsolete)%5C%22%2BKEYID=%5C%221-0%5C%22%2BID=%5C%22A668MSAprOj4tAzv7G9lAQUfUr3A%5C%22%2BACCOUNTID=%5C%2299867-94913159%5C%22%2BPROVIDERID=%5C%2290%5C%22%2BPROVIDERNAME=%5C%22Saferpay%2BTest%2BCard%5C%22%2BORDERID=%5C%22123456789-001%5C%22%2BAMOUNT=%5C%221000%5C%22%2BCURRENCY=%5C%22EUR%5C%22%2BIP=%5C%22193.247.180.193%5C%22%2BIPCOUNTRY=%5C%22CH%5C%22%2BCCCOUNTRY=%5C%22XX%5C%22%2BMPI_LIABILITYSHIFT=%5C%22yes%5C%22%2BMPI_TX_CAVV=%5C%22AAABBIIFmAAAAAAAAAAAAAAAAAA=%5C%22%2BMPI_XID=%5C%22CxMTYwhoUXtCBAEndBULcRIQaAY=%5C%22%2BECI=%5C%221%5C%22%2BCAVV=%5C%22AAABBIIFmAAAAAAAAAAAAAAAAAA=%5C%22%2BXID=%5C%22CxMTYwhoUXtCBAEndBULcRIQaAY=%5C%22%2B/%3E&SIGNATURE=test-signature
528
+ body:
529
+ encoding: US-ASCII
530
+ string: ''
531
+ headers: {}
532
+ response:
533
+ status:
534
+ code: 404
535
+ message: Not Found
536
+ headers:
537
+ Content-Type:
538
+ - text/html
539
+ Server:
540
+ - Microsoft-IIS/7.5
541
+ X-Powered-By:
542
+ - ASP.NET
543
+ Date:
544
+ - Sat, 08 Feb 2014 19:31:11 GMT
545
+ Content-Length:
546
+ - '1245'
547
+ body:
548
+ encoding: UTF-8
549
+ string: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html
550
+ xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\"
551
+ content=\"text/html; charset=iso-8859-1\"/>\r\n<title>404 - File or directory
552
+ not found.</title>\r\n<style type=\"text/css\">\r\n<!--\r\nbody{margin:0;font-size:.7em;font-family:Verdana,
553
+ Arial, Helvetica, sans-serif;background:#EEEEEE;}\r\nfieldset{padding:0 15px
554
+ 10px 15px;} \r\nh1{font-size:2.4em;margin:0;color:#FFF;}\r\nh2{font-size:1.7em;margin:0;color:#CC0000;}
555
+ \r\nh3{font-size:1.2em;margin:10px 0 0 0;color:#000000;} \r\n#header{width:96%;margin:0
556
+ 0 0 0;padding:6px 2% 6px 2%;font-family:\"trebuchet MS\", Verdana, sans-serif;color:#FFF;\r\nbackground-color:#555555;}\r\n#content{margin:0
557
+ 0 0 2%;position:relative;}\r\n.content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;position:relative;}\r\n-->\r\n</style>\r\n</head>\r\n<body>\r\n<div
558
+ id=\"header\"><h1>Server Error</h1></div>\r\n<div id=\"content\">\r\n <div
559
+ class=\"content-container\"><fieldset>\r\n <h2>404 - File or directory not
560
+ found.</h2>\r\n <h3>The resource you are looking for might have been removed,
561
+ had its name changed, or is temporarily unavailable.</h3>\r\n </fieldset></div>\r\n</div>\r\n</body>\r\n</html>\r\n"
562
+ http_version:
563
+ recorded_at: Sat, 08 Feb 2014 19:31:12 GMT
564
+ - request:
565
+ method: get
566
+ uri: https://www.saferpay.com/hostingVerfiPayConfirm.asp?ACCOUNTID=99867-94913159&DATA=test-data
567
+ body:
568
+ encoding: US-ASCII
569
+ string: ''
570
+ headers: {}
571
+ response:
572
+ status:
573
+ code: 404
574
+ message: Not Found
575
+ headers:
576
+ Content-Type:
577
+ - text/html
578
+ Server:
579
+ - Microsoft-IIS/7.5
580
+ X-Powered-By:
581
+ - ASP.NET
582
+ Date:
583
+ - Sat, 08 Feb 2014 19:31:13 GMT
584
+ Content-Length:
585
+ - '1245'
586
+ body:
587
+ encoding: UTF-8
588
+ string: "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html
589
+ xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\"
590
+ content=\"text/html; charset=iso-8859-1\"/>\r\n<title>404 - File or directory
591
+ not found.</title>\r\n<style type=\"text/css\">\r\n<!--\r\nbody{margin:0;font-size:.7em;font-family:Verdana,
592
+ Arial, Helvetica, sans-serif;background:#EEEEEE;}\r\nfieldset{padding:0 15px
593
+ 10px 15px;} \r\nh1{font-size:2.4em;margin:0;color:#FFF;}\r\nh2{font-size:1.7em;margin:0;color:#CC0000;}
594
+ \r\nh3{font-size:1.2em;margin:10px 0 0 0;color:#000000;} \r\n#header{width:96%;margin:0
595
+ 0 0 0;padding:6px 2% 6px 2%;font-family:\"trebuchet MS\", Verdana, sans-serif;color:#FFF;\r\nbackground-color:#555555;}\r\n#content{margin:0
596
+ 0 0 2%;position:relative;}\r\n.content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;position:relative;}\r\n-->\r\n</style>\r\n</head>\r\n<body>\r\n<div
597
+ id=\"header\"><h1>Server Error</h1></div>\r\n<div id=\"content\">\r\n <div
598
+ class=\"content-container\"><fieldset>\r\n <h2>404 - File or directory not
599
+ found.</h2>\r\n <h3>The resource you are looking for might have been removed,
600
+ had its name changed, or is temporarily unavailable.</h3>\r\n </fieldset></div>\r\n</div>\r\n</body>\r\n</html>\r\n"
601
+ http_version:
602
+ recorded_at: Sat, 08 Feb 2014 19:31:13 GMT
603
+ - request:
604
+ method: get
605
+ uri: https://www.saferpay.com/hosting/VerifyPayConfirm.asp?ACCOUNTID=99867-94913159
606
+ body:
607
+ encoding: US-ASCII
608
+ string: ''
609
+ headers: {}
610
+ response:
611
+ status:
612
+ code: 200
613
+ message: OK
614
+ headers:
615
+ Cache-Control:
616
+ - private
617
+ Content-Length:
618
+ - '29'
619
+ Content-Type:
620
+ - text/html
621
+ Server:
622
+ - Microsoft-IIS/7.5
623
+ Set-Cookie:
624
+ - ASPSESSIONIDAUSTTRCD=KMHNKLOCPNFGDMDBBAGCJIJO; secure; path=/
625
+ X-Powered-By:
626
+ - ASP.NET
627
+ Date:
628
+ - Sat, 08 Feb 2014 20:03:34 GMT
629
+ body:
630
+ encoding: UTF-8
631
+ string: 'ERROR: Missing DATA attribute'
632
+ http_version:
633
+ recorded_at: Sat, 08 Feb 2014 20:03:35 GMT
634
+ - request:
635
+ method: get
636
+ uri: https://www.saferpay.com/hosting/VerifyPayConfirm.asp?ACCOUNTID=99867-94913159&DATA=test-data&SIGNATURE=test-signature
637
+ body:
638
+ encoding: US-ASCII
639
+ string: ''
640
+ headers: {}
641
+ response:
642
+ status:
643
+ code: 200
644
+ message: OK
645
+ headers:
646
+ Cache-Control:
647
+ - private
648
+ Content-Length:
649
+ - '31'
650
+ Content-Type:
651
+ - text/html
652
+ Server:
653
+ - Microsoft-IIS/7.5
654
+ Set-Cookie:
655
+ - ASPSESSIONIDAUSTTRCD=LMHNKLOCLEJACIPNGBHAGGCL; secure; path=/
656
+ X-Powered-By:
657
+ - ASP.NET
658
+ Date:
659
+ - Sat, 08 Feb 2014 20:03:35 GMT
660
+ body:
661
+ encoding: UTF-8
662
+ string: 'ERROR: Could not load DATA XML.'
663
+ http_version:
664
+ recorded_at: Sat, 08 Feb 2014 20:03:35 GMT
665
+ - request:
666
+ method: get
667
+ uri: https://www.saferpay.com/hosting/VerifyPayConfirm.asp?ACCOUNTID=99867-94913159&DATA=%3CIDP%2BMSGTYPE=%5C%22PayConfirm%5C%22%2BTOKEN=%5C%22(unused)%5C%22%2BVTVERIFY=%5C%22(obsolete)%5C%22%2BKEYID=%5C%221-0%5C%22%2BID=%5C%22A668MSAprOj4tAzv7G9lAQUfUr3A%5C%22%2BACCOUNTID=%5C%2299867-94913159%5C%22%2BPROVIDERID=%5C%2290%5C%22%2BPROVIDERNAME=%5C%22Saferpay%2BTest%2BCard%5C%22%2BORDERID=%5C%22123456789-001%5C%22%2BAMOUNT=%5C%221000%5C%22%2BCURRENCY=%5C%22EUR%5C%22%2BIP=%5C%22193.247.180.193%5C%22%2BIPCOUNTRY=%5C%22CH%5C%22%2BCCCOUNTRY=%5C%22XX%5C%22%2BMPI_LIABILITYSHIFT=%5C%22yes%5C%22%2BMPI_TX_CAVV=%5C%22AAABBIIFmAAAAAAAAAAAAAAAAAA=%5C%22%2BMPI_XID=%5C%22CxMTYwhoUXtCBAEndBULcRIQaAY=%5C%22%2BECI=%5C%221%5C%22%2BCAVV=%5C%22AAABBIIFmAAAAAAAAAAAAAAAAAA=%5C%22%2BXID=%5C%22CxMTYwhoUXtCBAEndBULcRIQaAY=%5C%22%2B/%3E&SIGNATURE=7b2bb163f4ef86d969d992b4e2d61ad48d3b9022e0ec68177e35fe53184e6b3399730d1a3641d2a984ce38699daad72ab006d5d6a9565c5ae1cff8bdc8a1eb63
668
+ body:
669
+ encoding: US-ASCII
670
+ string: ''
671
+ headers: {}
672
+ response:
673
+ status:
674
+ code: 200
675
+ message: OK
676
+ headers:
677
+ Cache-Control:
678
+ - private
679
+ Content-Length:
680
+ - '25'
681
+ Content-Type:
682
+ - text/html
683
+ Server:
684
+ - Microsoft-IIS/7.5
685
+ Set-Cookie:
686
+ - ASPSESSIONIDAUSTTRCD=MMHNKLOCKJAANKPDFJDDLBAB; secure; path=/
687
+ X-Powered-By:
688
+ - ASP.NET
689
+ Date:
690
+ - Sat, 08 Feb 2014 20:03:35 GMT
691
+ body:
692
+ encoding: UTF-8
693
+ string: 'ERROR: An Error occurred.'
694
+ http_version:
695
+ recorded_at: Sat, 08 Feb 2014 20:03:36 GMT
696
+ - request:
697
+ method: get
698
+ uri: https://www.saferpay.com/hosting/VerifyPayConfirm.asp?ACCOUNTID=99867-94913159&DATA=%3CIDP%2BMSGTYPE=%5C%22PayConfirm%5C%22%2BTOKEN=%5C%22(unused)%5C%22%2BVTVERIFY=%5C%22(obsolete)%5C%22%2BKEYID=%5C%221-0%5C%22%2BID=%5C%22A668MSAprOj4tAzv7G9lAQUfUr3A%5C%22%2BACCOUNTID=%5C%2299867-94913159%5C%22%2BPROVIDERID=%5C%2290%5C%22%2BPROVIDERNAME=%5C%22Saferpay%2BTest%2BCard%5C%22%2BORDERID=%5C%22123456789-001%5C%22%2BAMOUNT=%5C%221000%5C%22%2BCURRENCY=%5C%22EUR%5C%22%2BIP=%5C%22193.247.180.193%5C%22%2BIPCOUNTRY=%5C%22CH%5C%22%2BCCCOUNTRY=%5C%22XX%5C%22%2BMPI_LIABILITYSHIFT=%5C%22yes%5C%22%2BMPI_TX_CAVV=%5C%22AAABBIIFmAAAAAAAAAAAAAAAAAA=%5C%22%2BMPI_XID=%5C%22CxMTYwhoUXtCBAEndBULcRIQaAY=%5C%22%2BECI=%5C%221%5C%22%2BCAVV=%5C%22AAABBIIFmAAAAAAAAAAAAAAAAAA=%5C%22%2BXID=%5C%22CxMTYwhoUXtCBAEndBULcRIQaAY=%5C%22%2B/%3E&SIGNATURE=test-signature
699
+ body:
700
+ encoding: US-ASCII
701
+ string: ''
702
+ headers: {}
703
+ response:
704
+ status:
705
+ code: 200
706
+ message: OK
707
+ headers:
708
+ Cache-Control:
709
+ - private
710
+ Content-Length:
711
+ - '25'
712
+ Content-Type:
713
+ - text/html
714
+ Server:
715
+ - Microsoft-IIS/7.5
716
+ Set-Cookie:
717
+ - ASPSESSIONIDAUSTTRCD=ANHNKLOCLAEAHAKJICNBJIHB; secure; path=/
718
+ X-Powered-By:
719
+ - ASP.NET
720
+ Date:
721
+ - Sat, 08 Feb 2014 20:03:37 GMT
722
+ body:
723
+ encoding: UTF-8
724
+ string: 'ERROR: An Error occurred.'
725
+ http_version:
726
+ recorded_at: Sat, 08 Feb 2014 20:03:37 GMT
727
+ - request:
728
+ method: get
729
+ uri: https://www.saferpay.com/hosting/VerifyPayConfirm.asp?ACCOUNTID=99867-94913159&DATA=test-data
730
+ body:
731
+ encoding: US-ASCII
732
+ string: ''
733
+ headers: {}
734
+ response:
735
+ status:
736
+ code: 200
737
+ message: OK
738
+ headers:
739
+ Cache-Control:
740
+ - private
741
+ Content-Length:
742
+ - '34'
743
+ Content-Type:
744
+ - text/html
745
+ Server:
746
+ - Microsoft-IIS/7.5
747
+ Set-Cookie:
748
+ - ASPSESSIONIDAUSTTRCD=DNHNKLOCKMAOPMHMJIHLJHOC; secure; path=/
749
+ X-Powered-By:
750
+ - ASP.NET
751
+ Date:
752
+ - Sat, 08 Feb 2014 20:03:37 GMT
753
+ body:
754
+ encoding: UTF-8
755
+ string: 'ERROR: Missing SIGNATURE attribute'
756
+ http_version:
757
+ recorded_at: Sat, 08 Feb 2014 20:03:38 GMT
758
+ - request:
759
+ method: get
760
+ uri: https://www.saferpay.com/hosting/VerifyPayConfirm.asp?ACCOUNTID=99867-94913159&DATA=%253CIDP%2BMSGTYPE=%255C%2522PayConfirm%255C%2522%2BTOKEN=%255C%2522(unused)%255C%2522%2BVTVERIFY=%255C%2522(obsolete)%255C%2522%2BKEYID=%255C%25221-0%255C%2522%2BID=%255C%2522A668MSAprOj4tAzv7G9lAQUfUr3A%255C%2522%2BACCOUNTID=%255C%252299867-94913159%255C%2522%2BPROVIDERID=%255C%252290%255C%2522%2BPROVIDERNAME=%255C%2522Saferpay%2BTest%2BCard%255C%2522%2BORDERID=%255C%2522123456789-001%255C%2522%2BAMOUNT=%255C%25221000%255C%2522%2BCURRENCY=%255C%2522EUR%255C%2522%2BIP=%255C%2522193.247.180.193%255C%2522%2BIPCOUNTRY=%255C%2522CH%255C%2522%2BCCCOUNTRY=%255C%2522XX%255C%2522%2BMPI_LIABILITYSHIFT=%255C%2522yes%255C%2522%2BMPI_TX_CAVV=%255C%2522AAABBIIFmAAAAAAAAAAAAAAAAAA=%255C%2522%2BMPI_XID=%255C%2522CxMTYwhoUXtCBAEndBULcRIQaAY=%255C%2522%2BECI=%255C%25221%255C%2522%2BCAVV=%255C%2522AAABBIIFmAAAAAAAAAAAAAAAAAA=%255C%2522%2BXID=%255C%2522CxMTYwhoUXtCBAEndBULcRIQaAY=%255C%2522%2B/%253E&SIGNATURE=7b2bb163f4ef86d969d992b4e2d61ad48d3b9022e0ec68177e35fe53184e6b3399730d1a3641d2a984ce38699daad72ab006d5d6a9565c5ae1cff8bdc8a1eb63
761
+ body:
762
+ encoding: US-ASCII
763
+ string: ''
764
+ headers: {}
765
+ response:
766
+ status:
767
+ code: 200
768
+ message: OK
769
+ headers:
770
+ Cache-Control:
771
+ - private
772
+ Content-Length:
773
+ - '49'
774
+ Content-Type:
775
+ - text/html
776
+ Server:
777
+ - Microsoft-IIS/7.5
778
+ Set-Cookie:
779
+ - ASPSESSIONIDCUSQTRDD=KCLPIHLDNPOKKHCGNEBGNEPB; secure; path=/
780
+ X-Powered-By:
781
+ - ASP.NET
782
+ Date:
783
+ - Sun, 09 Feb 2014 15:02:03 GMT
784
+ body:
785
+ encoding: UTF-8
786
+ string: OK:ID=A668MSAprOj4tAzv7G9lAQUfUr3A&TOKEN=(unused)
787
+ http_version:
788
+ recorded_at: Sun, 09 Feb 2014 15:02:06 GMT
789
+ - request:
790
+ method: get
791
+ uri: https://www.saferpay.com/hosting/VerifyPayConfirm.asp?ACCOUNTID=99867-94913159&DATA=%253CIDP%2BMSGTYPE=%255C%2522PayConfirm%255C%2522%2BTOKEN=%255C%2522(unused)%255C%2522%2BVTVERIFY=%255C%2522(obsolete)%255C%2522%2BKEYID=%255C%25221-0%255C%2522%2BID=%255C%2522A668MSAprOj4tAzv7G9lAQUfUr3A%255C%2522%2BACCOUNTID=%255C%252299867-94913159%255C%2522%2BPROVIDERID=%255C%252290%255C%2522%2BPROVIDERNAME=%255C%2522Saferpay%2BTest%2BCard%255C%2522%2BORDERID=%255C%2522123456789-001%255C%2522%2BAMOUNT=%255C%25221000%255C%2522%2BCURRENCY=%255C%2522EUR%255C%2522%2BIP=%255C%2522193.247.180.193%255C%2522%2BIPCOUNTRY=%255C%2522CH%255C%2522%2BCCCOUNTRY=%255C%2522XX%255C%2522%2BMPI_LIABILITYSHIFT=%255C%2522yes%255C%2522%2BMPI_TX_CAVV=%255C%2522AAABBIIFmAAAAAAAAAAAAAAAAAA=%255C%2522%2BMPI_XID=%255C%2522CxMTYwhoUXtCBAEndBULcRIQaAY=%255C%2522%2BECI=%255C%25221%255C%2522%2BCAVV=%255C%2522AAABBIIFmAAAAAAAAAAAAAAAAAA=%255C%2522%2BXID=%255C%2522CxMTYwhoUXtCBAEndBULcRIQaAY=%255C%2522%2B/%253E&SIGNATURE=test-signature
792
+ body:
793
+ encoding: US-ASCII
794
+ string: ''
795
+ headers: {}
796
+ response:
797
+ status:
798
+ code: 200
799
+ message: OK
800
+ headers:
801
+ Cache-Control:
802
+ - private
803
+ Content-Length:
804
+ - '25'
805
+ Content-Type:
806
+ - text/html
807
+ Server:
808
+ - Microsoft-IIS/7.5
809
+ Set-Cookie:
810
+ - ASPSESSIONIDCUSQTRDD=NHLPIHLDDDMFAMDENJAJKECG; secure; path=/
811
+ X-Powered-By:
812
+ - ASP.NET
813
+ Date:
814
+ - Sun, 09 Feb 2014 15:02:53 GMT
815
+ body:
816
+ encoding: UTF-8
817
+ string: 'ERROR: An Error occurred.'
818
+ http_version:
819
+ recorded_at: Sun, 09 Feb 2014 15:02:56 GMT
820
+ - request:
821
+ method: get
822
+ uri: https://www.saferpay.com/hosting/VerifyPayConfirm.asp?ACCOUNTID=99867-94913159&DATA=%253CIDP%2520MSGTYPE=%2522PayConfirm%2522%2520TOKEN=%2522(unused)%2522%2520VTVERIFY=%2522(obsolete)%2522%2520KEYID=%25221-0%2522%2520ID=%2522A668MSAprOj4tAzv7G9lAQUfUr3A%2522%2520ACCOUNTID=%252299867-94913159%2522%2520PROVIDERID=%252290%2522%2520PROVIDERNAME=%2522Saferpay%2520Test%2520Card%2522%2520ORDERID=%2522123456789-001%2522%2520AMOUNT=%25221000%2522%2520CURRENCY=%2522EUR%2522%2520IP=%2522193.247.180.193%2522%2520IPCOUNTRY=%2522CH%2522%2520CCCOUNTRY=%2522XX%2522%2520MPI_LIABILITYSHIFT=%2522yes%2522%2520MPI_TX_CAVV=%2522AAABBIIFmAAAAAAAAAAAAAAAAAA=%2522%2520MPI_XID=%2522CxMTYwhoUXtCBAEndBULcRIQaAY=%2522%2520ECI=%25221%2522%2520CAVV=%2522AAABBIIFmAAAAAAAAAAAAAAAAAA=%2522%2520XID=%2522CxMTYwhoUXtCBAEndBULcRIQaAY=%2522%2520/%253E&SIGNATURE=7b2bb163f4ef86d969d992b4e2d61ad48d3b9022e0ec68177e35fe53184e6b3399730d1a3641d2a984ce38699daad72ab006d5d6a9565c5ae1cff8bdc8a1eb63
823
+ body:
824
+ encoding: US-ASCII
825
+ string: ''
826
+ headers: {}
827
+ response:
828
+ status:
829
+ code: 200
830
+ message: OK
831
+ headers:
832
+ Cache-Control:
833
+ - private
834
+ Content-Length:
835
+ - '49'
836
+ Content-Type:
837
+ - text/html
838
+ Server:
839
+ - Microsoft-IIS/7.5
840
+ Set-Cookie:
841
+ - ASPSESSIONIDCUSQTRDD=ADACJHLDJNCICLNOMLBAKNPG; secure; path=/
842
+ X-Powered-By:
843
+ - ASP.NET
844
+ Date:
845
+ - Sun, 09 Feb 2014 16:41:23 GMT
846
+ body:
847
+ encoding: UTF-8
848
+ string: OK:ID=A668MSAprOj4tAzv7G9lAQUfUr3A&TOKEN=(unused)
849
+ http_version:
850
+ recorded_at: Sun, 09 Feb 2014 16:41:27 GMT
851
+ - request:
852
+ method: get
853
+ uri: https://www.saferpay.com/hosting/VerifyPayConfirm.asp?ACCOUNTID=99867-94913159&DATA=%253CIDP%2520MSGTYPE=%2522PayConfirm%2522%2520TOKEN=%2522(unused)%2522%2520VTVERIFY=%2522(obsolete)%2522%2520KEYID=%25221-0%2522%2520ID=%2522A668MSAprOj4tAzv7G9lAQUfUr3A%2522%2520ACCOUNTID=%252299867-94913159%2522%2520PROVIDERID=%252290%2522%2520PROVIDERNAME=%2522Saferpay%2520Test%2520Card%2522%2520ORDERID=%2522123456789-001%2522%2520AMOUNT=%25221000%2522%2520CURRENCY=%2522EUR%2522%2520IP=%2522193.247.180.193%2522%2520IPCOUNTRY=%2522CH%2522%2520CCCOUNTRY=%2522XX%2522%2520MPI_LIABILITYSHIFT=%2522yes%2522%2520MPI_TX_CAVV=%2522AAABBIIFmAAAAAAAAAAAAAAAAAA=%2522%2520MPI_XID=%2522CxMTYwhoUXtCBAEndBULcRIQaAY=%2522%2520ECI=%25221%2522%2520CAVV=%2522AAABBIIFmAAAAAAAAAAAAAAAAAA=%2522%2520XID=%2522CxMTYwhoUXtCBAEndBULcRIQaAY=%2522%2520/%253E&SIGNATURE=test-signature
854
+ body:
855
+ encoding: US-ASCII
856
+ string: ''
857
+ headers: {}
858
+ response:
859
+ status:
860
+ code: 200
861
+ message: OK
862
+ headers:
863
+ Cache-Control:
864
+ - private
865
+ Content-Length:
866
+ - '25'
867
+ Content-Type:
868
+ - text/html
869
+ Server:
870
+ - Microsoft-IIS/7.5
871
+ Set-Cookie:
872
+ - ASPSESSIONIDCUSQTRDD=EDACJHLDABHJNOFJJIFPIDEP; secure; path=/
873
+ X-Powered-By:
874
+ - ASP.NET
875
+ Date:
876
+ - Sun, 09 Feb 2014 16:41:26 GMT
877
+ body:
878
+ encoding: UTF-8
879
+ string: 'ERROR: An Error occurred.'
880
+ http_version:
881
+ recorded_at: Sun, 09 Feb 2014 16:41:30 GMT
882
+ - request:
883
+ method: get
884
+ uri: https://www.saferpay.com/hosting/PayComplete.asp?ACCOUNTID=99867-94913159
885
+ body:
886
+ encoding: US-ASCII
887
+ string: ''
888
+ headers: {}
889
+ response:
890
+ status:
891
+ code: 200
892
+ message: OK
893
+ headers:
894
+ Cache-Control:
895
+ - private
896
+ Content-Length:
897
+ - '40'
898
+ Content-Type:
899
+ - text/html
900
+ Server:
901
+ - Microsoft-IIS/7.5
902
+ Set-Cookie:
903
+ - ASPSESSIONIDQWQTRSBB=KNCMDPDDFLOHHKJKFHDECGOG; secure; path=/
904
+ X-Powered-By:
905
+ - ASP.NET
906
+ Date:
907
+ - Sun, 09 Feb 2014 17:31:01 GMT
908
+ body:
909
+ encoding: UTF-8
910
+ string: 'ERROR: CheckPassword: Access not allowed'
911
+ http_version:
912
+ recorded_at: Sun, 09 Feb 2014 17:31:07 GMT
913
+ - request:
914
+ method: get
915
+ uri: https://www.saferpay.com/hosting/PayComplete.asp?ACCOUNTID=99867-94913159&ID=test-id
916
+ body:
917
+ encoding: US-ASCII
918
+ string: ''
919
+ headers: {}
920
+ response:
921
+ status:
922
+ code: 200
923
+ message: OK
924
+ headers:
925
+ Cache-Control:
926
+ - private
927
+ Content-Length:
928
+ - '40'
929
+ Content-Type:
930
+ - text/html
931
+ Server:
932
+ - Microsoft-IIS/7.5
933
+ Set-Cookie:
934
+ - ASPSESSIONIDQWQTRSBB=PNCMDPDDJLNNMOJAHFCAFCKE; secure; path=/
935
+ X-Powered-By:
936
+ - ASP.NET
937
+ Date:
938
+ - Sun, 09 Feb 2014 17:31:07 GMT
939
+ body:
940
+ encoding: UTF-8
941
+ string: 'ERROR: CheckPassword: Access not allowed'
942
+ http_version:
943
+ recorded_at: Sun, 09 Feb 2014 17:31:11 GMT
944
+ - request:
945
+ method: get
946
+ uri: https://www.saferpay.com/hosting/PayComplete.asp?ACCOUNTID=99867-94913159&ID=A668MSAprOj4tAzv7G9lAQUfUr3A
947
+ body:
948
+ encoding: US-ASCII
949
+ string: ''
950
+ headers: {}
951
+ response:
952
+ status:
953
+ code: 200
954
+ message: OK
955
+ headers:
956
+ Cache-Control:
957
+ - private
958
+ Content-Length:
959
+ - '40'
960
+ Content-Type:
961
+ - text/html
962
+ Server:
963
+ - Microsoft-IIS/7.5
964
+ Set-Cookie:
965
+ - ASPSESSIONIDQWQTRSBB=GOCMDPDDMPAEFLHKFLPEBCGF; secure; path=/
966
+ X-Powered-By:
967
+ - ASP.NET
968
+ Date:
969
+ - Sun, 09 Feb 2014 17:31:10 GMT
970
+ body:
971
+ encoding: UTF-8
972
+ string: 'ERROR: CheckPassword: Access not allowed'
973
+ http_version:
974
+ recorded_at: Sun, 09 Feb 2014 17:31:13 GMT
975
+ - request:
976
+ method: get
977
+ uri: https://www.saferpay.com/hosting/PayComplete.asp?ACCOUNTID=99867-94913159&spPassword=XAjc3Kna
978
+ body:
979
+ encoding: US-ASCII
980
+ string: ''
981
+ headers: {}
982
+ response:
983
+ status:
984
+ code: 200
985
+ message: OK
986
+ headers:
987
+ Cache-Control:
988
+ - private
989
+ Content-Length:
990
+ - '40'
991
+ Content-Type:
992
+ - text/html
993
+ Server:
994
+ - Microsoft-IIS/7.5
995
+ Set-Cookie:
996
+ - ASPSESSIONIDQWQTRSBB=EJEMDPDDENPCHMBINFFGHPEJ; secure; path=/
997
+ X-Powered-By:
998
+ - ASP.NET
999
+ Date:
1000
+ - Sun, 09 Feb 2014 17:39:50 GMT
1001
+ body:
1002
+ encoding: UTF-8
1003
+ string: 'ERROR: PayComplete: Missing ID attribute'
1004
+ http_version:
1005
+ recorded_at: Sun, 09 Feb 2014 17:39:54 GMT
1006
+ - request:
1007
+ method: get
1008
+ uri: https://www.saferpay.com/hosting/PayComplete.asp?ACCOUNTID=99867-94913159&ID=test-id&spPassword=XAjc3Kna
1009
+ body:
1010
+ encoding: US-ASCII
1011
+ string: ''
1012
+ headers: {}
1013
+ response:
1014
+ status:
1015
+ code: 200
1016
+ message: OK
1017
+ headers:
1018
+ Cache-Control:
1019
+ - private
1020
+ Content-Length:
1021
+ - '32'
1022
+ Content-Type:
1023
+ - text/html
1024
+ Server:
1025
+ - Microsoft-IIS/7.5
1026
+ Set-Cookie:
1027
+ - ASPSESSIONIDQWQTRSBB=JJEMDPDDHDMDPNCOHMPCCHCE; secure; path=/
1028
+ X-Powered-By:
1029
+ - ASP.NET
1030
+ Date:
1031
+ - Sun, 09 Feb 2014 17:39:52 GMT
1032
+ body:
1033
+ encoding: UTF-8
1034
+ string: 'ERROR: transaction not available'
1035
+ http_version:
1036
+ recorded_at: Sun, 09 Feb 2014 17:39:56 GMT
1037
+ - request:
1038
+ method: get
1039
+ uri: https://www.saferpay.com/hosting/PayComplete.asp?ACCOUNTID=99867-94913159&ID=A668MSAprOj4tAzv7G9lAQUfUr3A&spPassword=XAjc3Kna
1040
+ body:
1041
+ encoding: US-ASCII
1042
+ string: ''
1043
+ headers: {}
1044
+ response:
1045
+ status:
1046
+ code: 200
1047
+ message: OK
1048
+ headers:
1049
+ Cache-Control:
1050
+ - private
1051
+ Content-Length:
1052
+ - '32'
1053
+ Content-Type:
1054
+ - text/html
1055
+ Server:
1056
+ - Microsoft-IIS/7.5
1057
+ Set-Cookie:
1058
+ - ASPSESSIONIDQWQTRSBB=HKEMDPDDGBJMLDMHGBFICCKP; secure; path=/
1059
+ X-Powered-By:
1060
+ - ASP.NET
1061
+ Date:
1062
+ - Sun, 09 Feb 2014 17:39:58 GMT
1063
+ body:
1064
+ encoding: UTF-8
1065
+ string: 'ERROR: transaction not available'
1066
+ http_version:
1067
+ recorded_at: Sun, 09 Feb 2014 17:40:02 GMT
1068
+ - request:
1069
+ method: get
1070
+ uri: https://www.saferpay.com/hosting/PayCompleteV2.asp?ACCOUNTID=99867-94913159&ID=A668MSAprOj4tAzv7G9lAQUfUr3A&spPassword=XAjc3Kna
1071
+ body:
1072
+ encoding: US-ASCII
1073
+ string: ''
1074
+ headers: {}
1075
+ response:
1076
+ status:
1077
+ code: 200
1078
+ message: OK
1079
+ headers:
1080
+ Cache-Control:
1081
+ - private
1082
+ Content-Length:
1083
+ - '32'
1084
+ Content-Type:
1085
+ - text/html
1086
+ Server:
1087
+ - Microsoft-IIS/7.5
1088
+ Set-Cookie:
1089
+ - ASPSESSIONIDQWQTRSBB=BKFMDPDDCLCAIIJNAGKEJNKO; secure; path=/
1090
+ X-Powered-By:
1091
+ - ASP.NET
1092
+ Date:
1093
+ - Sun, 09 Feb 2014 17:45:00 GMT
1094
+ body:
1095
+ encoding: UTF-8
1096
+ string: 'ERROR: transaction not available'
1097
+ http_version:
1098
+ recorded_at: Sun, 09 Feb 2014 17:45:04 GMT
1099
+ - request:
1100
+ method: get
1101
+ uri: https://www.saferpay.com/hosting/PayCompleteV2.asp?ACCOUNTID=99867-94913159&ID=test-id&spPassword=XAjc3Kna
1102
+ body:
1103
+ encoding: US-ASCII
1104
+ string: ''
1105
+ headers: {}
1106
+ response:
1107
+ status:
1108
+ code: 200
1109
+ message: OK
1110
+ headers:
1111
+ Cache-Control:
1112
+ - private
1113
+ Content-Length:
1114
+ - '32'
1115
+ Content-Type:
1116
+ - text/html
1117
+ Server:
1118
+ - Microsoft-IIS/7.5
1119
+ Set-Cookie:
1120
+ - ASPSESSIONIDQWQTRSBB=CKFMDPDDFGHBNGMMLLOCLOJO; secure; path=/
1121
+ X-Powered-By:
1122
+ - ASP.NET
1123
+ Date:
1124
+ - Sun, 09 Feb 2014 17:45:04 GMT
1125
+ body:
1126
+ encoding: UTF-8
1127
+ string: 'ERROR: transaction not available'
1128
+ http_version:
1129
+ recorded_at: Sun, 09 Feb 2014 17:45:08 GMT
1130
+ - request:
1131
+ method: get
1132
+ uri: https://www.saferpay.com/hosting/PayCompleteV2.asp?ACCOUNTID=99867-94913159&spPassword=XAjc3Kna
1133
+ body:
1134
+ encoding: US-ASCII
1135
+ string: ''
1136
+ headers: {}
1137
+ response:
1138
+ status:
1139
+ code: 200
1140
+ message: OK
1141
+ headers:
1142
+ Cache-Control:
1143
+ - private
1144
+ Content-Length:
1145
+ - '40'
1146
+ Content-Type:
1147
+ - text/html
1148
+ Server:
1149
+ - Microsoft-IIS/7.5
1150
+ Set-Cookie:
1151
+ - ASPSESSIONIDQWQTRSBB=MKFMDPDDFHDGAKBMCAGDJPMP; secure; path=/
1152
+ X-Powered-By:
1153
+ - ASP.NET
1154
+ Date:
1155
+ - Sun, 09 Feb 2014 17:45:07 GMT
1156
+ body:
1157
+ encoding: UTF-8
1158
+ string: 'ERROR: PayComplete: Missing ID attribute'
1159
+ http_version:
1160
+ recorded_at: Sun, 09 Feb 2014 17:45:11 GMT
1161
+ - request:
1162
+ method: get
1163
+ uri: https://www.saferpay.com/hosting/PayCompleteV2.asp?ACCOUNTID=99867-94913159&ID=WxWrIlA48W06rAjKKOp5bzS80E5A&spPassword=XAjc3Kna
1164
+ body:
1165
+ encoding: US-ASCII
1166
+ string: ''
1167
+ headers: {}
1168
+ response:
1169
+ status:
1170
+ code: 200
1171
+ message: OK
1172
+ headers:
1173
+ Cache-Control:
1174
+ - private
1175
+ Content-Length:
1176
+ - '122'
1177
+ Content-Type:
1178
+ - text/html
1179
+ Server:
1180
+ - Microsoft-IIS/7.5
1181
+ Set-Cookie:
1182
+ - ASPSESSIONIDCUSSCTTS=MNODMKMACMCPGKKAJGEMFOJE; secure; path=/
1183
+ X-Powered-By:
1184
+ - ASP.NET
1185
+ Date:
1186
+ - Tue, 11 Feb 2014 11:50:33 GMT
1187
+ body:
1188
+ encoding: UTF-8
1189
+ string: "OK:<IDP RESULT=\"0\" MESSAGE=\"request was processed successfully\"
1190
+ ID=\"WxWrIlA48W06rAjKKOp5bzS80E5A\" MSGTYPE=\"PayConfirm\"/>\r\n"
1191
+ http_version:
1192
+ recorded_at: Tue, 11 Feb 2014 11:50:33 GMT
1193
+ - request:
1194
+ method: get
1195
+ uri: https://www.saferpay.com/hosting/VerifyPayConfirm.asp?ACCOUNTID=99867-94913159&DATA=%253CIDP%2520MSGTYPE=%2522PayConfirm%2522%2520TOKEN=%2522(unused)%2522%2520VTVERIFY=%2522(obsolete)%2522%2520KEYID=%25221-0%2522%2520ID=%2522A668MSAprOj4tAzv7G9lAQUfUr3A%2522%2520ACCOUNTID=%252299867-94913159%2522%2520PROVIDERID=%252290%2522%2520PROVIDERNAME=%2522Saferpay%2520Test%2520Card%2522%2520ORDERID=%2522123456789-001%2522%2520AMOUNT=%25221000%2522%2520CURRENCY=%2522EUR%2522%2520IP=%2522193.247.180.193%2522%2520IPCOUNTRY=%2522CH%2522%2520CCCOUNTRY=%2522XX%2522%2520MPI_LIABILITYSHIFT=%2522yes%2522%2520MPI_TX_CAVV=%2522AAABBIIFmAAAAAAAAAAAAAAAAAA=%2522%2520MPI_XID=%2522CxMTYwhoUXtCBAEndBULcRIQaAY=%2522%2520ECI=%25221%2522%2520CAVV=%2522AAABBIIFmAAAAAAAAAAAAAAAAAA=%2522%2520XID=%2522CxMTYwhoUXtCBAEndBULcRIQaAY=%2522%2520/%253E&SIGNATURE=7b2bb163f4ef86d969d992b4e2d61ad48d3b9022e0ec68177e35fe53184e6b3399730d1a3641d2a984ce38699daad72ab006d5d6a9565c5ae1cff8bdc8a1eb63&controller=test&id=1
1196
+ body:
1197
+ encoding: US-ASCII
1198
+ string: ''
1199
+ headers: {}
1200
+ response:
1201
+ status:
1202
+ code: 200
1203
+ message: OK
1204
+ headers:
1205
+ Cache-Control:
1206
+ - private
1207
+ Content-Length:
1208
+ - '49'
1209
+ Content-Type:
1210
+ - text/html
1211
+ Server:
1212
+ - Microsoft-IIS/7.5
1213
+ Set-Cookie:
1214
+ - ASPSESSIONIDCWQSDSSS=JFMENHOAOBFILEMKGENDOCNA; secure; path=/
1215
+ X-Powered-By:
1216
+ - ASP.NET
1217
+ Date:
1218
+ - Tue, 11 Feb 2014 15:11:49 GMT
1219
+ body:
1220
+ encoding: UTF-8
1221
+ string: OK:ID=A668MSAprOj4tAzv7G9lAQUfUr3A&TOKEN=(unused)
1222
+ http_version:
1223
+ recorded_at: Tue, 11 Feb 2014 15:11:50 GMT
1224
+ - request:
1225
+ method: get
1226
+ uri: https://www.saferpay.com/hosting/VerifyPayConfirm.asp?ACCOUNTID=123123&DATA=%253CIDP%2520MSGTYPE=%2522PayConfirm%2522%2520TOKEN=%2522(unused)%2522%2520VTVERIFY=%2522(obsolete)%2522%2520KEYID=%25221-0%2522%2520ID=%2522A668MSAprOj4tAzv7G9lAQUfUr3A%2522%2520ACCOUNTID=%252299867-94913159%2522%2520PROVIDERID=%252290%2522%2520PROVIDERNAME=%2522Saferpay%2520Test%2520Card%2522%2520ORDERID=%2522123456789-001%2522%2520AMOUNT=%25221000%2522%2520CURRENCY=%2522EUR%2522%2520IP=%2522193.247.180.193%2522%2520IPCOUNTRY=%2522CH%2522%2520CCCOUNTRY=%2522XX%2522%2520MPI_LIABILITYSHIFT=%2522yes%2522%2520MPI_TX_CAVV=%2522AAABBIIFmAAAAAAAAAAAAAAAAAA=%2522%2520MPI_XID=%2522CxMTYwhoUXtCBAEndBULcRIQaAY=%2522%2520ECI=%25221%2522%2520CAVV=%2522AAABBIIFmAAAAAAAAAAAAAAAAAA=%2522%2520XID=%2522CxMTYwhoUXtCBAEndBULcRIQaAY=%2522%2520/%253E&SIGNATURE=7b2bb163f4ef86d969d992b4e2d61ad48d3b9022e0ec68177e35fe53184e6b3399730d1a3641d2a984ce38699daad72ab006d5d6a9565c5ae1cff8bdc8a1eb63
1227
+ body:
1228
+ encoding: US-ASCII
1229
+ string: ''
1230
+ headers: {}
1231
+ response:
1232
+ status:
1233
+ code: 200
1234
+ message: OK
1235
+ headers:
1236
+ Cache-Control:
1237
+ - private
1238
+ Content-Length:
1239
+ - '49'
1240
+ Content-Type:
1241
+ - text/html
1242
+ Server:
1243
+ - Microsoft-IIS/7.5
1244
+ Set-Cookie:
1245
+ - ASPSESSIONIDAUCDSTRQ=OGENFDLBEGJHGFFNKMLFEONK; secure; path=/
1246
+ X-Powered-By:
1247
+ - ASP.NET
1248
+ Date:
1249
+ - Wed, 12 Feb 2014 15:51:28 GMT
1250
+ body:
1251
+ encoding: UTF-8
1252
+ string: OK:ID=A668MSAprOj4tAzv7G9lAQUfUr3A&TOKEN=(unused)
1253
+ http_version:
1254
+ recorded_at: Wed, 12 Feb 2014 15:51:28 GMT
1255
+ - request:
1256
+ method: get
1257
+ uri: https://www.saferpay.com/hosting/VerifyPayConfirm.asp?ACCOUNTID=random-ID&DATA=%253CIDP%2520MSGTYPE=%2522PayConfirm%2522%2520TOKEN=%2522(unused)%2522%2520VTVERIFY=%2522(obsolete)%2522%2520KEYID=%25221-0%2522%2520ID=%2522A668MSAprOj4tAzv7G9lAQUfUr3A%2522%2520ACCOUNTID=%252299867-94913159%2522%2520PROVIDERID=%252290%2522%2520PROVIDERNAME=%2522Saferpay%2520Test%2520Card%2522%2520ORDERID=%2522123456789-001%2522%2520AMOUNT=%25221000%2522%2520CURRENCY=%2522EUR%2522%2520IP=%2522193.247.180.193%2522%2520IPCOUNTRY=%2522CH%2522%2520CCCOUNTRY=%2522XX%2522%2520MPI_LIABILITYSHIFT=%2522yes%2522%2520MPI_TX_CAVV=%2522AAABBIIFmAAAAAAAAAAAAAAAAAA=%2522%2520MPI_XID=%2522CxMTYwhoUXtCBAEndBULcRIQaAY=%2522%2520ECI=%25221%2522%2520CAVV=%2522AAABBIIFmAAAAAAAAAAAAAAAAAA=%2522%2520XID=%2522CxMTYwhoUXtCBAEndBULcRIQaAY=%2522%2520/%253E&SIGNATURE=7b2bb163f4ef86d969d992b4e2d61ad48d3b9022e0ec68177e35fe53184e6b3399730d1a3641d2a984ce38699daad72ab006d5d6a9565c5ae1cff8bdc8a1eb63&controller=test&id=1
1258
+ body:
1259
+ encoding: US-ASCII
1260
+ string: ''
1261
+ headers:
1262
+ User-Agent:
1263
+ - Saferpay API Ruby Wrapper
1264
+ response:
1265
+ status:
1266
+ code: 200
1267
+ message: OK
1268
+ headers:
1269
+ Cache-Control:
1270
+ - private
1271
+ Content-Length:
1272
+ - '49'
1273
+ Content-Type:
1274
+ - text/html
1275
+ Server:
1276
+ - Microsoft-IIS/7.5
1277
+ Set-Cookie:
1278
+ - ASPSESSIONIDAWQTBSTT=JNEAKCGCEPJANPMFAONKBAJO; secure; path=/
1279
+ X-Powered-By:
1280
+ - ASP.NET
1281
+ Date:
1282
+ - Fri, 14 Feb 2014 11:24:30 GMT
1283
+ body:
1284
+ encoding: UTF-8
1285
+ string: OK:ID=A668MSAprOj4tAzv7G9lAQUfUr3A&TOKEN=(unused)
1286
+ http_version:
1287
+ recorded_at: Fri, 14 Feb 2014 11:24:30 GMT
1288
+ - request:
1289
+ method: get
1290
+ uri: https://www.saferpay.com/hosting/CreatePayInit.asp?ACCOUNTID=random-ID&AMOUNT=1000&CURRENCY=EUR&DESCRIPTION=Test%20description.
1291
+ body:
1292
+ encoding: US-ASCII
1293
+ string: ''
1294
+ headers:
1295
+ User-Agent:
1296
+ - Saferpay API Ruby Wrapper
1297
+ response:
1298
+ status:
1299
+ code: 200
1300
+ message: OK
1301
+ headers:
1302
+ Cache-Control:
1303
+ - private
1304
+ Content-Length:
1305
+ - '43'
1306
+ Content-Type:
1307
+ - text/html
1308
+ Server:
1309
+ - Microsoft-IIS/7.5
1310
+ Set-Cookie:
1311
+ - ASPSESSIONIDAWQTBSTT=KNEAKCGCEALPHCFHLIJDKKCH; secure; path=/
1312
+ X-Powered-By:
1313
+ - ASP.NET
1314
+ Date:
1315
+ - Fri, 14 Feb 2014 11:24:35 GMT
1316
+ body:
1317
+ encoding: UTF-8
1318
+ string: 'ERROR: Missing or wrong ACCOUNTID attribute'
1319
+ http_version:
1320
+ recorded_at: Fri, 14 Feb 2014 11:24:35 GMT
1321
+ - request:
1322
+ method: get
1323
+ uri: https://www.saferpay.com/hosting/PayCompleteV2.asp?ACCOUNTID=random-ID&ID=WxWrIlA48W06rAjKKOp5bzS80E5A&spPassword=XAjc3Kna
1324
+ body:
1325
+ encoding: US-ASCII
1326
+ string: ''
1327
+ headers:
1328
+ User-Agent:
1329
+ - Saferpay API Ruby Wrapper
1330
+ response:
1331
+ status:
1332
+ code: 200
1333
+ message: OK
1334
+ headers:
1335
+ Cache-Control:
1336
+ - private
1337
+ Content-Length:
1338
+ - '43'
1339
+ Content-Type:
1340
+ - text/html
1341
+ Server:
1342
+ - Microsoft-IIS/7.5
1343
+ Set-Cookie:
1344
+ - ASPSESSIONIDAWQTBSTT=LNEAKCGCODFLLEAHLNFECOID; secure; path=/
1345
+ X-Powered-By:
1346
+ - ASP.NET
1347
+ Date:
1348
+ - Fri, 14 Feb 2014 11:24:36 GMT
1349
+ body:
1350
+ encoding: UTF-8
1351
+ string: 'ERROR: Missing or wrong ACCOUNTID attribute'
1352
+ http_version:
1353
+ recorded_at: Fri, 14 Feb 2014 11:24:36 GMT
1354
+ recorded_with: VCR 2.8.0