quickbooks_web_connector 0.0.3 → 0.0.4

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.
@@ -3,6 +3,7 @@ require 'securerandom'
3
3
  require 'soap/rpc/standaloneServer'
4
4
 
5
5
  require 'quickbooks_web_connector/config'
6
+ require 'quickbooks_web_connector/failure'
6
7
  require 'quickbooks_web_connector/job'
7
8
  require 'quickbooks_web_connector/json_coder'
8
9
 
@@ -67,8 +68,8 @@ module QuickbooksWebConnector
67
68
  # This method can be used to conveniently add a job to the queue.
68
69
  # It assumes the class you're passing it is a real Ruby class (not
69
70
  # a string or reference).
70
- def enqueue(xml, klass, *args)
71
- Job.create(xml, klass, *args)
71
+ def enqueue(request_builder, response_handler, *args)
72
+ Job.create(request_builder, response_handler, *args)
72
73
  end
73
74
 
74
75
  # This method will return a `QuickbooksWebConnector::Job` object or
@@ -103,7 +104,7 @@ module QuickbooksWebConnector
103
104
  #
104
105
  # Returns a Ruby object.
105
106
  def pop
106
- decode @redis.lpop(:queue)
107
+ decode redis.lpop(:queue)
107
108
  end
108
109
 
109
110
  # Returns an integer representing the size of the queue.
@@ -116,6 +117,14 @@ module QuickbooksWebConnector
116
117
  decode redis.lindex :queue, 0
117
118
  end
118
119
 
120
+ # Does the dirty work of fetching a range of items from a Redis list and
121
+ # converting them into Ruby objects
122
+ def list_range(key, start = 0, stop = -1)
123
+ Array(redis.lrange(key, start, stop)).map do |item|
124
+ decode item
125
+ end
126
+ end
127
+
119
128
  def encode(object)
120
129
  coder.encode object
121
130
  end
@@ -0,0 +1,68 @@
1
+ module QuickbooksWebConnector
2
+ class Failure
3
+
4
+ # The exception object raised by the failed job
5
+ attr_accessor :exception
6
+
7
+ # The payload object associated with the failed job
8
+ attr_accessor :payload
9
+
10
+ # Creates a new failure.
11
+ #
12
+ # Expects a hash with the following keys:
13
+ # :exception - The Exception object
14
+ # :payload - The job's payload
15
+ def self.create(options = {})
16
+ new(*options.values_at(:exception, :payload)).save
17
+ end
18
+
19
+ def self.count
20
+ QuickbooksWebConnector.redis.llen(:failed).to_i
21
+ end
22
+
23
+ def self.all(start = 0, stop = -1)
24
+ QuickbooksWebConnector.list_range(:failed, start, stop)
25
+ end
26
+
27
+ def self.find(index)
28
+ QuickbooksWebConnector.list_range(:failed, index, index).first
29
+ end
30
+
31
+ def self.requeue(index)
32
+ item = find(index)
33
+ item['retried_at'] = Time.now.rfc2822
34
+ QuickbooksWebConnector.redis.lset(:failed, index, QuickbooksWebConnector.encode(item))
35
+ Job.create(item['payload']['request_builder_class'], item['payload']['response_handler_class'], *item['payload']['args'])
36
+ end
37
+
38
+ def self.remove(index)
39
+ id = rand(0xffffff)
40
+ QuickbooksWebConnector.redis.lset(:failed, index, id)
41
+ QuickbooksWebConnector.redis.lrem(:failed, 1, id)
42
+ end
43
+
44
+ def initialize(exception, payload)
45
+ @exception = exception
46
+ @payload = payload
47
+ end
48
+
49
+ def save
50
+ data = {
51
+ failed_at: Time.now.rfc2822,
52
+ payload: payload,
53
+ exception: exception.class.to_s,
54
+ error: exception.to_s,
55
+ backtrace: filter_backtrace(Array(exception.backtrace)),
56
+ }
57
+ data = QuickbooksWebConnector.encode(data)
58
+ QuickbooksWebConnector.redis.rpush(:failed, data)
59
+ end
60
+
61
+ private
62
+
63
+ def filter_backtrace(backtrace)
64
+ backtrace.take_while { |item| !item.include?('/lib/quickbooks_web_connector/job.rb') }
65
+ end
66
+
67
+ end
68
+ end
@@ -7,13 +7,17 @@ module QuickbooksWebConnector
7
7
  @payload = payload
8
8
  end
9
9
 
10
- # Creates a job by placing it on the queue. Expects XML as a string,
11
- # a string class name, and an optional array of arguments to
10
+ # Creates a job by placing it on the queue. Expects a request builder class
11
+ # name, a response handler class name, and an optional array of arguments to
12
12
  # pass to the class' `perform` method.
13
13
  #
14
14
  # Raises an exception if no class is given.
15
- def self.create(request_xml, klass, *args)
16
- QuickbooksWebConnector.push('request_xml' => request_xml, 'class' => klass.to_s, 'args' => args)
15
+ def self.create(request_builder, response_handler, *args)
16
+ QuickbooksWebConnector.push(
17
+ 'request_builder_class' => request_builder.to_s,
18
+ 'response_handler_class' => response_handler.to_s,
19
+ 'args' => args
20
+ )
17
21
  end
18
22
 
19
23
  # Returns an instance of QuickbooksWebConnector::Job
@@ -30,26 +34,51 @@ module QuickbooksWebConnector
30
34
  new(payload)
31
35
  end
32
36
 
37
+ # Find jobs from the queue.
38
+ #
39
+ # Returns the list of jobs queued.
40
+ #
41
+ # This method can be potentially very slow and memory intensive,
42
+ # depending on the size of your queue, as it loads all jobs into
43
+ # a Ruby array.
44
+ def self.queued
45
+ QuickbooksWebConnector.list_range(:queue, 0, -1).map do |item|
46
+ new(item)
47
+ end
48
+ end
49
+
33
50
  # Attempts to perform the work represented by this job instance.
34
51
  # Calls #perform on the class given in the payload with the
35
52
  # Quickbooks response and the arguments given in the payload..
36
53
  def perform
37
- job = payload_class
38
- job_args = args || []
39
- job_args.prepend response_xml
54
+ begin
55
+ job = response_handler_class
40
56
 
41
- # Execute the job.
42
- job.perform(*job_args)
57
+ # Execute the job.
58
+ job.perform(response_xml, *job_args)
59
+ rescue Object => ex
60
+ fail(ex)
61
+ end
43
62
  end
44
63
 
45
64
  # Returns the request XML from the payload.
46
65
  def request_xml
47
- @payload['request_xml']
66
+ begin
67
+ request_builder_class.perform(*job_args)
68
+ rescue Object => ex
69
+ fail(ex)
70
+ nil
71
+ end
72
+ end
73
+
74
+ # Returns the actual class constant for building the request from the job's payload.
75
+ def request_builder_class
76
+ @request_builder_class ||= @payload['request_builder_class'].constantize
48
77
  end
49
78
 
50
79
  # Returns the actual class constant represented in this job's payload.
51
- def payload_class
52
- @payload_class ||= @payload['class'].constantize
80
+ def response_handler_class
81
+ @response_handler_class ||= @payload['response_handler_class'].constantize
53
82
  end
54
83
 
55
84
  # Returns an array of args represented in this job's payload.
@@ -57,5 +86,18 @@ module QuickbooksWebConnector
57
86
  @payload['args']
58
87
  end
59
88
 
89
+ def job_args
90
+ args || []
91
+ end
92
+
93
+ # Given an exception object, hands off the needed parameters to the Failure
94
+ # module.
95
+ def fail(exception)
96
+ Failure.create(
97
+ payload: @payload,
98
+ exception: exception
99
+ )
100
+ end
101
+
60
102
  end
61
103
  end
@@ -1,3 +1,3 @@
1
1
  module QuickbooksWebConnector
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
@@ -186,7 +186,8 @@ describe QuickbooksWebConnector::SoapController do
186
186
  # </env:Envelope>
187
187
 
188
188
  before do
189
- QuickbooksWebConnector.enqueue '<some><xml></xml></some>', SomeHandler, 1
189
+ SomeBuilder.stub(:perform).with(1).and_return('<some><xml></xml></some>')
190
+ QuickbooksWebConnector.enqueue SomeBuilder, SomeHandler, 1
190
191
 
191
192
  do_post
192
193
  end
@@ -26237,3 +26237,1991 @@ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26237
26237
  Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26238
26238
  Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26239
26239
  Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26240
+ Connecting to database specified by database.yml
26241
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26242
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (18.1ms)
26243
+ Rendered text template (0.0ms)
26244
+ Sent data qbwc.qwc (2.6ms)
26245
+ Completed 200 OK in 56ms (Views: 2.4ms | ActiveRecord: 0.0ms)
26246
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26247
+ Sent data qbwc.qwc (0.3ms)
26248
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26249
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26250
+ Sent data qbwc.qwc (0.3ms)
26251
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26252
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26253
+ Sent data qbwc.qwc (0.3ms)
26254
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26255
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26256
+ Sent data qbwc.qwc (0.3ms)
26257
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26258
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26259
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26260
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26261
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26262
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26263
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26264
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26265
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26266
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26267
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26268
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26269
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26270
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26271
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26272
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26273
+ Completed 200 OK in 31ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26274
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26275
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26276
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26277
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26278
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26279
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26280
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26281
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26282
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26283
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26284
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26285
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26286
+ Connecting to database specified by database.yml
26287
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26288
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (7.7ms)
26289
+ Rendered text template (0.0ms)
26290
+ Sent data qbwc.qwc (2.3ms)
26291
+ Completed 200 OK in 23ms (Views: 2.2ms | ActiveRecord: 0.0ms)
26292
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26293
+ Sent data qbwc.qwc (0.3ms)
26294
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26295
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26296
+ Sent data qbwc.qwc (0.3ms)
26297
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26298
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26299
+ Sent data qbwc.qwc (0.3ms)
26300
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26301
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26302
+ Sent data qbwc.qwc (0.3ms)
26303
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26304
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26305
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26306
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26307
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26308
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26309
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26310
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26311
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26312
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26313
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26314
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26315
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26316
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26317
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26318
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26319
+ Completed 200 OK in 32ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26320
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26321
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26322
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26323
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26324
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26325
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26326
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26327
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26328
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26329
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26330
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26331
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26332
+ Connecting to database specified by database.yml
26333
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26334
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (7.4ms)
26335
+ Rendered text template (0.0ms)
26336
+ Sent data qbwc.qwc (2.4ms)
26337
+ Completed 200 OK in 24ms (Views: 2.2ms | ActiveRecord: 0.0ms)
26338
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26339
+ Sent data qbwc.qwc (0.3ms)
26340
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26341
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26342
+ Sent data qbwc.qwc (0.3ms)
26343
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26344
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26345
+ Sent data qbwc.qwc (0.3ms)
26346
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26347
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26348
+ Sent data qbwc.qwc (0.3ms)
26349
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26350
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26351
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26352
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26353
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26354
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26355
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26356
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26357
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26358
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26359
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26360
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26361
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26362
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26363
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26364
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26365
+ Completed 200 OK in 31ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26366
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26367
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26368
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26369
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26370
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26371
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26372
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26373
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26374
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26375
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26376
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26377
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26378
+ Connecting to database specified by database.yml
26379
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26380
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (7.3ms)
26381
+ Rendered text template (0.0ms)
26382
+ Sent data qbwc.qwc (2.3ms)
26383
+ Completed 200 OK in 22ms (Views: 2.1ms | ActiveRecord: 0.0ms)
26384
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26385
+ Sent data qbwc.qwc (0.3ms)
26386
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26387
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26388
+ Sent data qbwc.qwc (0.3ms)
26389
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26390
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26391
+ Sent data qbwc.qwc (0.3ms)
26392
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26393
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26394
+ Sent data qbwc.qwc (0.3ms)
26395
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26396
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26397
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26398
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26399
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26400
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26401
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26402
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26403
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26404
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26405
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26406
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26407
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26408
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26409
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26410
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26411
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26412
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26413
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26414
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26415
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26416
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26417
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26418
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26419
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26420
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26421
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26422
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26423
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26424
+ Connecting to database specified by database.yml
26425
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26426
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (7.2ms)
26427
+ Rendered text template (0.0ms)
26428
+ Sent data qbwc.qwc (2.3ms)
26429
+ Completed 200 OK in 23ms (Views: 2.1ms | ActiveRecord: 0.0ms)
26430
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26431
+ Sent data qbwc.qwc (0.3ms)
26432
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26433
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26434
+ Sent data qbwc.qwc (0.3ms)
26435
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26436
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26437
+ Sent data qbwc.qwc (0.3ms)
26438
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26439
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26440
+ Sent data qbwc.qwc (0.3ms)
26441
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26442
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26443
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26444
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26445
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26446
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26447
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26448
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26449
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26450
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26451
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26452
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26453
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26454
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26455
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26456
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26457
+ Completed 200 OK in 31ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26458
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26459
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26460
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26461
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26462
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26463
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26464
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26465
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26466
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26467
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26468
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26469
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26470
+ Connecting to database specified by database.yml
26471
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26472
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (7.2ms)
26473
+ Rendered text template (0.0ms)
26474
+ Sent data qbwc.qwc (2.2ms)
26475
+ Completed 200 OK in 23ms (Views: 2.1ms | ActiveRecord: 0.0ms)
26476
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26477
+ Sent data qbwc.qwc (0.3ms)
26478
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26479
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26480
+ Sent data qbwc.qwc (0.3ms)
26481
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26482
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26483
+ Sent data qbwc.qwc (0.3ms)
26484
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26485
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26486
+ Sent data qbwc.qwc (0.4ms)
26487
+ Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
26488
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26489
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26490
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26491
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26492
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26493
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26494
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26495
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26496
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26497
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26498
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26499
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26500
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26501
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26502
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26503
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26504
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26505
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26506
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26507
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26508
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26509
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26510
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26511
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26512
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26513
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26514
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26515
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26516
+ Connecting to database specified by database.yml
26517
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26518
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (7.3ms)
26519
+ Rendered text template (0.0ms)
26520
+ Sent data qbwc.qwc (2.3ms)
26521
+ Completed 200 OK in 22ms (Views: 2.2ms | ActiveRecord: 0.0ms)
26522
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26523
+ Sent data qbwc.qwc (0.3ms)
26524
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26525
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26526
+ Sent data qbwc.qwc (0.3ms)
26527
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26528
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26529
+ Sent data qbwc.qwc (0.3ms)
26530
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26531
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26532
+ Sent data qbwc.qwc (0.3ms)
26533
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26534
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26535
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26536
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26537
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26538
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26539
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26540
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26541
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26542
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26543
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26544
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26545
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26546
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26547
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26548
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26549
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26550
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26551
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26552
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26553
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26554
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26555
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26556
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26557
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26558
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26559
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26560
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26561
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26562
+ Connecting to database specified by database.yml
26563
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26564
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (7.3ms)
26565
+ Rendered text template (0.0ms)
26566
+ Sent data qbwc.qwc (2.3ms)
26567
+ Completed 200 OK in 24ms (Views: 2.2ms | ActiveRecord: 0.0ms)
26568
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26569
+ Sent data qbwc.qwc (0.3ms)
26570
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26571
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26572
+ Sent data qbwc.qwc (0.3ms)
26573
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26574
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26575
+ Sent data qbwc.qwc (0.3ms)
26576
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26577
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26578
+ Sent data qbwc.qwc (0.3ms)
26579
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
26580
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26581
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26582
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26583
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26584
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26585
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26586
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26587
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26588
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26589
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26590
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26591
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26592
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26593
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26594
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26595
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26596
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26597
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26598
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26599
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26600
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26601
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26602
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26603
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26604
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26605
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26606
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26607
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26608
+ Connecting to database specified by database.yml
26609
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26610
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (7.2ms)
26611
+ Rendered text template (0.0ms)
26612
+ Sent data qbwc.qwc (2.3ms)
26613
+ Completed 200 OK in 23ms (Views: 2.2ms | ActiveRecord: 0.0ms)
26614
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26615
+ Sent data qbwc.qwc (0.3ms)
26616
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26617
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26618
+ Sent data qbwc.qwc (0.3ms)
26619
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26620
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26621
+ Sent data qbwc.qwc (0.3ms)
26622
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26623
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26624
+ Sent data qbwc.qwc (0.3ms)
26625
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26626
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26627
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26628
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26629
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26630
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26631
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26632
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26633
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26634
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26635
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26636
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26637
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26638
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26639
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26640
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26641
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26642
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26643
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26644
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26645
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26646
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26647
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26648
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26649
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26650
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26651
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26652
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26653
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26654
+ Connecting to database specified by database.yml
26655
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26656
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (7.3ms)
26657
+ Rendered text template (0.0ms)
26658
+ Sent data qbwc.qwc (2.4ms)
26659
+ Completed 200 OK in 23ms (Views: 2.2ms | ActiveRecord: 0.0ms)
26660
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26661
+ Sent data qbwc.qwc (0.3ms)
26662
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26663
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26664
+ Sent data qbwc.qwc (0.3ms)
26665
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26666
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26667
+ Sent data qbwc.qwc (0.3ms)
26668
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26669
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26670
+ Sent data qbwc.qwc (0.3ms)
26671
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26672
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26673
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26674
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26675
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26676
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26677
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26678
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26679
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26680
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26681
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26682
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26683
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26684
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26685
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26686
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26687
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26688
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26689
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26690
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26691
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26692
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26693
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26694
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26695
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26696
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26697
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26698
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26699
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26700
+ Connecting to database specified by database.yml
26701
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26702
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (7.3ms)
26703
+ Rendered text template (0.0ms)
26704
+ Sent data qbwc.qwc (2.3ms)
26705
+ Completed 200 OK in 23ms (Views: 2.1ms | ActiveRecord: 0.0ms)
26706
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26707
+ Sent data qbwc.qwc (0.3ms)
26708
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26709
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26710
+ Sent data qbwc.qwc (0.3ms)
26711
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26712
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26713
+ Sent data qbwc.qwc (0.3ms)
26714
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26715
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26716
+ Sent data qbwc.qwc (0.3ms)
26717
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26718
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26719
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26720
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26721
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26722
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26723
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26724
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26725
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26726
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26727
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26728
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26729
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26730
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26731
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26732
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26733
+ Completed 200 OK in 31ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26734
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26735
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26736
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26737
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26738
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26739
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26740
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26741
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26742
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26743
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26744
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26745
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26746
+ Connecting to database specified by database.yml
26747
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26748
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (7.2ms)
26749
+ Rendered text template (0.0ms)
26750
+ Sent data qbwc.qwc (2.2ms)
26751
+ Completed 200 OK in 23ms (Views: 2.1ms | ActiveRecord: 0.0ms)
26752
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26753
+ Sent data qbwc.qwc (0.3ms)
26754
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26755
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26756
+ Sent data qbwc.qwc (0.3ms)
26757
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26758
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26759
+ Sent data qbwc.qwc (0.3ms)
26760
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26761
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26762
+ Sent data qbwc.qwc (0.3ms)
26763
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26764
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26765
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26766
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26767
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26768
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26769
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26770
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26771
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26772
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26773
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26774
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26775
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26776
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26777
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26778
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26779
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26780
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26781
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26782
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26783
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26784
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26785
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26786
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26787
+ Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26788
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26789
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26790
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26791
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26792
+ Connecting to database specified by database.yml
26793
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26794
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (7.3ms)
26795
+ Rendered text template (0.0ms)
26796
+ Sent data qbwc.qwc (2.7ms)
26797
+ Completed 200 OK in 24ms (Views: 2.6ms | ActiveRecord: 0.0ms)
26798
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26799
+ Sent data qbwc.qwc (0.3ms)
26800
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26801
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26802
+ Sent data qbwc.qwc (0.3ms)
26803
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26804
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26805
+ Sent data qbwc.qwc (0.3ms)
26806
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26807
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26808
+ Sent data qbwc.qwc (0.3ms)
26809
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26810
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26811
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26812
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26813
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26814
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26815
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26816
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26817
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26818
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26819
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26820
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26821
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26822
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26823
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26824
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26825
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26826
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26827
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26828
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26829
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26830
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26831
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26832
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26833
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26834
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26835
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26836
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26837
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26838
+ Connecting to database specified by database.yml
26839
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26840
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (7.3ms)
26841
+ Rendered text template (0.0ms)
26842
+ Sent data qbwc.qwc (2.3ms)
26843
+ Completed 200 OK in 22ms (Views: 2.2ms | ActiveRecord: 0.0ms)
26844
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26845
+ Sent data qbwc.qwc (0.3ms)
26846
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26847
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26848
+ Sent data qbwc.qwc (0.4ms)
26849
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26850
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26851
+ Sent data qbwc.qwc (0.3ms)
26852
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26853
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26854
+ Sent data qbwc.qwc (0.3ms)
26855
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26856
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26857
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26858
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26859
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26860
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26861
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26862
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26863
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26864
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26865
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26866
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26867
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26868
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26869
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26870
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26871
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26872
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26873
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26874
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26875
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26876
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26877
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26878
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26879
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26880
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26881
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26882
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26883
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26884
+ Connecting to database specified by database.yml
26885
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26886
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (7.6ms)
26887
+ Rendered text template (0.0ms)
26888
+ Sent data qbwc.qwc (2.3ms)
26889
+ Completed 200 OK in 24ms (Views: 2.1ms | ActiveRecord: 0.0ms)
26890
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26891
+ Sent data qbwc.qwc (0.3ms)
26892
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26893
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26894
+ Sent data qbwc.qwc (0.3ms)
26895
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26896
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26897
+ Sent data qbwc.qwc (0.3ms)
26898
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26899
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26900
+ Sent data qbwc.qwc (0.4ms)
26901
+ Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
26902
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26903
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26904
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26905
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26906
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26907
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26908
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26909
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26910
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26911
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26912
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26913
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26914
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26915
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26916
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26917
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26918
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26919
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26920
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26921
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26922
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26923
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26924
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26925
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26926
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26927
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26928
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26929
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26930
+ Connecting to database specified by database.yml
26931
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26932
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (7.3ms)
26933
+ Rendered text template (0.0ms)
26934
+ Sent data qbwc.qwc (2.3ms)
26935
+ Completed 200 OK in 23ms (Views: 2.1ms | ActiveRecord: 0.0ms)
26936
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26937
+ Sent data qbwc.qwc (0.3ms)
26938
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26939
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26940
+ Sent data qbwc.qwc (0.3ms)
26941
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26942
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26943
+ Sent data qbwc.qwc (0.3ms)
26944
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26945
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26946
+ Sent data qbwc.qwc (0.3ms)
26947
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26948
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26949
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26950
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26951
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26952
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26953
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26954
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26955
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26956
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26957
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26958
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26959
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26960
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26961
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26962
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26963
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26964
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26965
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26966
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26967
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26968
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26969
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26970
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26971
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26972
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26973
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26974
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
26975
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26976
+ Connecting to database specified by database.yml
26977
+ Connecting to database specified by database.yml
26978
+ Connecting to database specified by database.yml
26979
+ Connecting to database specified by database.yml
26980
+ Connecting to database specified by database.yml
26981
+ Connecting to database specified by database.yml
26982
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26983
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (8.1ms)
26984
+ Rendered text template (0.0ms)
26985
+ Sent data qbwc.qwc (29.7ms)
26986
+ Completed 200 OK in 53ms (Views: 29.5ms | ActiveRecord: 0.0ms)
26987
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26988
+ Sent data qbwc.qwc (0.3ms)
26989
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26990
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26991
+ Sent data qbwc.qwc (0.3ms)
26992
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26993
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26994
+ Sent data qbwc.qwc (0.3ms)
26995
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26996
+ Processing by QuickbooksWebConnector::QwcController#download as XML
26997
+ Sent data qbwc.qwc (0.3ms)
26998
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26999
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27000
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27001
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27002
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27003
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27004
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27005
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27006
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27007
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27008
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27009
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27010
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27011
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27012
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27013
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27014
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27015
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27016
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27017
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27018
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27019
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27020
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27021
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27022
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27023
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27024
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27025
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27026
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27027
+ Connecting to database specified by database.yml
27028
+ Connecting to database specified by database.yml
27029
+ Connecting to database specified by database.yml
27030
+ Connecting to database specified by database.yml
27031
+ Connecting to database specified by database.yml
27032
+ Connecting to database specified by database.yml
27033
+ Connecting to database specified by database.yml
27034
+ Connecting to database specified by database.yml
27035
+ Connecting to database specified by database.yml
27036
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27037
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (8.1ms)
27038
+ Rendered text template (0.0ms)
27039
+ Sent data qbwc.qwc (30.9ms)
27040
+ Completed 200 OK in 54ms (Views: 30.8ms | ActiveRecord: 0.0ms)
27041
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27042
+ Sent data qbwc.qwc (0.3ms)
27043
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27044
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27045
+ Sent data qbwc.qwc (0.3ms)
27046
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27047
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27048
+ Sent data qbwc.qwc (0.3ms)
27049
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27050
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27051
+ Sent data qbwc.qwc (0.3ms)
27052
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27053
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27054
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27055
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27056
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27057
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27058
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27059
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27060
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27061
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27062
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27063
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27064
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27065
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27066
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27067
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27068
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27069
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27070
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27071
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27072
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27073
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27074
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27075
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27076
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27077
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27078
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27079
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27080
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27081
+ Connecting to database specified by database.yml
27082
+ Connecting to database specified by database.yml
27083
+ Connecting to database specified by database.yml
27084
+ Connecting to database specified by database.yml
27085
+ Connecting to database specified by database.yml
27086
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27087
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (7.9ms)
27088
+ Rendered text template (0.0ms)
27089
+ Sent data qbwc.qwc (29.3ms)
27090
+ Completed 200 OK in 52ms (Views: 29.1ms | ActiveRecord: 0.0ms)
27091
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27092
+ Sent data qbwc.qwc (0.3ms)
27093
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27094
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27095
+ Sent data qbwc.qwc (0.3ms)
27096
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27097
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27098
+ Sent data qbwc.qwc (0.3ms)
27099
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27100
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27101
+ Sent data qbwc.qwc (0.3ms)
27102
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27103
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27104
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27105
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27106
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27107
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27108
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27109
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27110
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27111
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27112
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27113
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27114
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27115
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27116
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27117
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27118
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27119
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27120
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27121
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27122
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27123
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27124
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27125
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27126
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27127
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27128
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27129
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27130
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27131
+ Connecting to database specified by database.yml
27132
+ Connecting to database specified by database.yml
27133
+ Connecting to database specified by database.yml
27134
+ Connecting to database specified by database.yml
27135
+ Connecting to database specified by database.yml
27136
+ Connecting to database specified by database.yml
27137
+ Connecting to database specified by database.yml
27138
+ Connecting to database specified by database.yml
27139
+ Connecting to database specified by database.yml
27140
+ Connecting to database specified by database.yml
27141
+ Connecting to database specified by database.yml
27142
+ Connecting to database specified by database.yml
27143
+ Connecting to database specified by database.yml
27144
+ Connecting to database specified by database.yml
27145
+ Connecting to database specified by database.yml
27146
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27147
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (38.9ms)
27148
+ Rendered text template (0.0ms)
27149
+ Sent data qbwc.qwc (2.3ms)
27150
+ Completed 200 OK in 57ms (Views: 2.1ms | ActiveRecord: 0.0ms)
27151
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27152
+ Sent data qbwc.qwc (0.3ms)
27153
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27154
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27155
+ Sent data qbwc.qwc (0.3ms)
27156
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27157
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27158
+ Sent data qbwc.qwc (0.3ms)
27159
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27160
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27161
+ Sent data qbwc.qwc (0.3ms)
27162
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27163
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27164
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27165
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27166
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27167
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27168
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27169
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27170
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27171
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27172
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27173
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27174
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27175
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27176
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27177
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27178
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27179
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27180
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27181
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27182
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27183
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27184
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27185
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27186
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27187
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27188
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27189
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27190
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27191
+ Connecting to database specified by database.yml
27192
+ Connecting to database specified by database.yml
27193
+ Connecting to database specified by database.yml
27194
+ Connecting to database specified by database.yml
27195
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27196
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (39.4ms)
27197
+ Rendered text template (0.0ms)
27198
+ Sent data qbwc.qwc (2.3ms)
27199
+ Completed 200 OK in 58ms (Views: 2.1ms | ActiveRecord: 0.0ms)
27200
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27201
+ Sent data qbwc.qwc (0.3ms)
27202
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27203
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27204
+ Sent data qbwc.qwc (0.4ms)
27205
+ Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
27206
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27207
+ Sent data qbwc.qwc (0.4ms)
27208
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
27209
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27210
+ Sent data qbwc.qwc (0.4ms)
27211
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
27212
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27213
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27214
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27215
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27216
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27217
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27218
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27219
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27220
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27221
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27222
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27223
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27224
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27225
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27226
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27227
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27228
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27229
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27230
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27231
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27232
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27233
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27234
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27235
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27236
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27237
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27238
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27239
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27240
+ Connecting to database specified by database.yml
27241
+ Connecting to database specified by database.yml
27242
+ Connecting to database specified by database.yml
27243
+ Connecting to database specified by database.yml
27244
+ Connecting to database specified by database.yml
27245
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27246
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (39.3ms)
27247
+ Rendered text template (0.0ms)
27248
+ Sent data qbwc.qwc (2.3ms)
27249
+ Completed 200 OK in 59ms (Views: 2.1ms | ActiveRecord: 0.0ms)
27250
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27251
+ Sent data qbwc.qwc (0.3ms)
27252
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27253
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27254
+ Sent data qbwc.qwc (0.3ms)
27255
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27256
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27257
+ Sent data qbwc.qwc (0.4ms)
27258
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
27259
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27260
+ Sent data qbwc.qwc (0.3ms)
27261
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27262
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27263
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27264
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27265
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27266
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27267
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27268
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27269
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27270
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27271
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27272
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27273
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27274
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27275
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27276
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27277
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27278
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27279
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27280
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27281
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27282
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27283
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27284
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27285
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27286
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27287
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27288
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27289
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27290
+ Connecting to database specified by database.yml
27291
+ Connecting to database specified by database.yml
27292
+ Connecting to database specified by database.yml
27293
+ Connecting to database specified by database.yml
27294
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27295
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (39.1ms)
27296
+ Rendered text template (0.0ms)
27297
+ Sent data qbwc.qwc (2.3ms)
27298
+ Completed 200 OK in 58ms (Views: 2.1ms | ActiveRecord: 0.0ms)
27299
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27300
+ Sent data qbwc.qwc (0.3ms)
27301
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27302
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27303
+ Sent data qbwc.qwc (0.5ms)
27304
+ Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
27305
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27306
+ Sent data qbwc.qwc (0.4ms)
27307
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
27308
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27309
+ Sent data qbwc.qwc (0.4ms)
27310
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
27311
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27312
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27313
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27314
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27315
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27316
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27317
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27318
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27319
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27320
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27321
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27322
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27323
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27324
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27325
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27326
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27327
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27328
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27329
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27330
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27331
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27332
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27333
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27334
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27335
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27336
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27337
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27338
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27339
+ Connecting to database specified by database.yml
27340
+ Connecting to database specified by database.yml
27341
+ Connecting to database specified by database.yml
27342
+ Connecting to database specified by database.yml
27343
+ Connecting to database specified by database.yml
27344
+ Connecting to database specified by database.yml
27345
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27346
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (39.7ms)
27347
+ Rendered text template (0.0ms)
27348
+ Sent data qbwc.qwc (2.3ms)
27349
+ Completed 200 OK in 58ms (Views: 2.1ms | ActiveRecord: 0.0ms)
27350
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27351
+ Sent data qbwc.qwc (0.3ms)
27352
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27353
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27354
+ Sent data qbwc.qwc (0.3ms)
27355
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27356
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27357
+ Sent data qbwc.qwc (0.3ms)
27358
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27359
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27360
+ Sent data qbwc.qwc (0.3ms)
27361
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27362
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27363
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27364
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27365
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27366
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27367
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27368
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27369
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27370
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27371
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27372
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27373
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27374
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27375
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27376
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27377
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27378
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27379
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27380
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27381
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27382
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27383
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27384
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27385
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27386
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27387
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27388
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27389
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27390
+ Connecting to database specified by database.yml
27391
+ Connecting to database specified by database.yml
27392
+ Connecting to database specified by database.yml
27393
+ Connecting to database specified by database.yml
27394
+ Connecting to database specified by database.yml
27395
+ Connecting to database specified by database.yml
27396
+ Connecting to database specified by database.yml
27397
+ Connecting to database specified by database.yml
27398
+ Connecting to database specified by database.yml
27399
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27400
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (41.4ms)
27401
+ Rendered text template (0.0ms)
27402
+ Sent data qbwc.qwc (2.3ms)
27403
+ Completed 200 OK in 59ms (Views: 2.1ms | ActiveRecord: 0.0ms)
27404
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27405
+ Sent data qbwc.qwc (0.3ms)
27406
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27407
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27408
+ Sent data qbwc.qwc (0.3ms)
27409
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27410
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27411
+ Sent data qbwc.qwc (0.3ms)
27412
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27413
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27414
+ Sent data qbwc.qwc (0.3ms)
27415
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27416
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27417
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27418
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27419
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27420
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27421
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27422
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27423
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27424
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27425
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27426
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27427
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27428
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27429
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27430
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27431
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27432
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27433
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27434
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27435
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27436
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27437
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27438
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27439
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27440
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27441
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27442
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27443
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27444
+ Connecting to database specified by database.yml
27445
+ Connecting to database specified by database.yml
27446
+ Connecting to database specified by database.yml
27447
+ Connecting to database specified by database.yml
27448
+ Connecting to database specified by database.yml
27449
+ Connecting to database specified by database.yml
27450
+ Connecting to database specified by database.yml
27451
+ Connecting to database specified by database.yml
27452
+ Connecting to database specified by database.yml
27453
+ Connecting to database specified by database.yml
27454
+ Connecting to database specified by database.yml
27455
+ Connecting to database specified by database.yml
27456
+ Connecting to database specified by database.yml
27457
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27458
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (40.1ms)
27459
+ Rendered text template (0.0ms)
27460
+ Sent data qbwc.qwc (2.3ms)
27461
+ Completed 200 OK in 58ms (Views: 2.2ms | ActiveRecord: 0.0ms)
27462
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27463
+ Sent data qbwc.qwc (0.3ms)
27464
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27465
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27466
+ Sent data qbwc.qwc (0.3ms)
27467
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27468
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27469
+ Sent data qbwc.qwc (0.3ms)
27470
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27471
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27472
+ Sent data qbwc.qwc (0.3ms)
27473
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27474
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27475
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27476
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27477
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27478
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27479
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27480
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27481
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27482
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27483
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27484
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27485
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27486
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27487
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27488
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27489
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27490
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27491
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27492
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27493
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27494
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27495
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27496
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27497
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27498
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27499
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27500
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27501
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27502
+ Connecting to database specified by database.yml
27503
+ Connecting to database specified by database.yml
27504
+ Connecting to database specified by database.yml
27505
+ Connecting to database specified by database.yml
27506
+ Connecting to database specified by database.yml
27507
+ Connecting to database specified by database.yml
27508
+ Connecting to database specified by database.yml
27509
+ Connecting to database specified by database.yml
27510
+ Connecting to database specified by database.yml
27511
+ Connecting to database specified by database.yml
27512
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27513
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (39.3ms)
27514
+ Rendered text template (0.0ms)
27515
+ Sent data qbwc.qwc (2.3ms)
27516
+ Completed 200 OK in 57ms (Views: 2.1ms | ActiveRecord: 0.0ms)
27517
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27518
+ Sent data qbwc.qwc (0.3ms)
27519
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27520
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27521
+ Sent data qbwc.qwc (0.3ms)
27522
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27523
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27524
+ Sent data qbwc.qwc (0.3ms)
27525
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27526
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27527
+ Sent data qbwc.qwc (0.4ms)
27528
+ Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
27529
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27530
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27531
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27532
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27533
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27534
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27535
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27536
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27537
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27538
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27539
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27540
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27541
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27542
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27543
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27544
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27545
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27546
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27547
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27548
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27549
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27550
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27551
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27552
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27553
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27554
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27555
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27556
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27557
+ Connecting to database specified by database.yml
27558
+ Connecting to database specified by database.yml
27559
+ Connecting to database specified by database.yml
27560
+ Connecting to database specified by database.yml
27561
+ Connecting to database specified by database.yml
27562
+ Connecting to database specified by database.yml
27563
+ Connecting to database specified by database.yml
27564
+ Connecting to database specified by database.yml
27565
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27566
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (39.3ms)
27567
+ Rendered text template (0.0ms)
27568
+ Sent data qbwc.qwc (2.3ms)
27569
+ Completed 200 OK in 57ms (Views: 2.1ms | ActiveRecord: 0.0ms)
27570
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27571
+ Sent data qbwc.qwc (0.3ms)
27572
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27573
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27574
+ Sent data qbwc.qwc (0.3ms)
27575
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27576
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27577
+ Sent data qbwc.qwc (0.3ms)
27578
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27579
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27580
+ Sent data qbwc.qwc (0.3ms)
27581
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27582
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27583
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27584
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27585
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27586
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27587
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27588
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27589
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27590
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27591
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27592
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27593
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27594
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27595
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27596
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27597
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27598
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27599
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27600
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27601
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27602
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27603
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27604
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27605
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27606
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27607
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27608
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27609
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27610
+ Connecting to database specified by database.yml
27611
+ Connecting to database specified by database.yml
27612
+ Connecting to database specified by database.yml
27613
+ Connecting to database specified by database.yml
27614
+ Connecting to database specified by database.yml
27615
+ Connecting to database specified by database.yml
27616
+ Connecting to database specified by database.yml
27617
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27618
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (39.9ms)
27619
+ Rendered text template (0.0ms)
27620
+ Sent data qbwc.qwc (2.3ms)
27621
+ Completed 200 OK in 59ms (Views: 2.1ms | ActiveRecord: 0.0ms)
27622
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27623
+ Sent data qbwc.qwc (0.3ms)
27624
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27625
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27626
+ Sent data qbwc.qwc (0.3ms)
27627
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27628
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27629
+ Sent data qbwc.qwc (0.3ms)
27630
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27631
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27632
+ Sent data qbwc.qwc (0.3ms)
27633
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27634
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27635
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27636
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27637
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27638
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27639
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27640
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27641
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27642
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27643
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27644
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27645
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27646
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27647
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27648
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27649
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27650
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27651
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27652
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27653
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27654
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27655
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27656
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27657
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27658
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27659
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27660
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27661
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27662
+ Connecting to database specified by database.yml
27663
+ Connecting to database specified by database.yml
27664
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27665
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (40.5ms)
27666
+ Rendered text template (0.0ms)
27667
+ Sent data qbwc.qwc (2.3ms)
27668
+ Completed 200 OK in 58ms (Views: 2.1ms | ActiveRecord: 0.0ms)
27669
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27670
+ Sent data qbwc.qwc (0.4ms)
27671
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
27672
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27673
+ Sent data qbwc.qwc (0.4ms)
27674
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
27675
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27676
+ Sent data qbwc.qwc (0.3ms)
27677
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27678
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27679
+ Sent data qbwc.qwc (0.3ms)
27680
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27681
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27682
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27683
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27684
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27685
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27686
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27687
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27688
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27689
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27690
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27691
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27692
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27693
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27694
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27695
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27696
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27697
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27698
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27699
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27700
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27701
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27702
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27703
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27704
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27705
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27706
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27707
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27708
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27709
+ Connecting to database specified by database.yml
27710
+ Connecting to database specified by database.yml
27711
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27712
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (40.5ms)
27713
+ Rendered text template (0.0ms)
27714
+ Sent data qbwc.qwc (2.3ms)
27715
+ Completed 200 OK in 58ms (Views: 2.1ms | ActiveRecord: 0.0ms)
27716
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27717
+ Sent data qbwc.qwc (0.3ms)
27718
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27719
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27720
+ Sent data qbwc.qwc (0.3ms)
27721
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27722
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27723
+ Sent data qbwc.qwc (0.3ms)
27724
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27725
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27726
+ Sent data qbwc.qwc (0.3ms)
27727
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27728
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27729
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27730
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27731
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27732
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27733
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27734
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27735
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27736
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27737
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27738
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27739
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27740
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27741
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27742
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27743
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27744
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27745
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27746
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27747
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27748
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27749
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27750
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27751
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27752
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27753
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27754
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27755
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27756
+ Connecting to database specified by database.yml
27757
+ Connecting to database specified by database.yml
27758
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27759
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (39.5ms)
27760
+ Rendered text template (0.0ms)
27761
+ Sent data qbwc.qwc (2.3ms)
27762
+ Completed 200 OK in 57ms (Views: 2.1ms | ActiveRecord: 0.0ms)
27763
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27764
+ Sent data qbwc.qwc (0.3ms)
27765
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27766
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27767
+ Sent data qbwc.qwc (0.3ms)
27768
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27769
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27770
+ Sent data qbwc.qwc (0.3ms)
27771
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27772
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27773
+ Sent data qbwc.qwc (0.3ms)
27774
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27775
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27776
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27777
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27778
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27779
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27780
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27781
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27782
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27783
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27784
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27785
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27786
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27787
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27788
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27789
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27790
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27791
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27792
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27793
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27794
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27795
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27796
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27797
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27798
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27799
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27800
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27801
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27802
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27803
+ Connecting to database specified by database.yml
27804
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27805
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (39.7ms)
27806
+ Rendered text template (0.0ms)
27807
+ Sent data qbwc.qwc (2.3ms)
27808
+ Completed 200 OK in 58ms (Views: 2.1ms | ActiveRecord: 0.0ms)
27809
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27810
+ Sent data qbwc.qwc (0.3ms)
27811
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27812
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27813
+ Sent data qbwc.qwc (0.3ms)
27814
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27815
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27816
+ Sent data qbwc.qwc (0.3ms)
27817
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27818
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27819
+ Sent data qbwc.qwc (0.3ms)
27820
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27821
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27822
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27823
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27824
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27825
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27826
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27827
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27828
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27829
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27830
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27831
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27832
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27833
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27834
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27835
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27836
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27837
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27838
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27839
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27840
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27841
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27842
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27843
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27844
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27845
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27846
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27847
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27848
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27849
+ Connecting to database specified by database.yml
27850
+ Connecting to database specified by database.yml
27851
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27852
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (39.4ms)
27853
+ Rendered text template (0.0ms)
27854
+ Sent data qbwc.qwc (2.3ms)
27855
+ Completed 200 OK in 57ms (Views: 2.2ms | ActiveRecord: 0.0ms)
27856
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27857
+ Sent data qbwc.qwc (0.3ms)
27858
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27859
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27860
+ Sent data qbwc.qwc (0.3ms)
27861
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27862
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27863
+ Sent data qbwc.qwc (0.3ms)
27864
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27865
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27866
+ Sent data qbwc.qwc (0.5ms)
27867
+ Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
27868
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27869
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27870
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27871
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27872
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27873
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27874
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27875
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27876
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27877
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27878
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27879
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27880
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27881
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27882
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27883
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27884
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27885
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27886
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27887
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27888
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27889
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27890
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27891
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27892
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27893
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27894
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27895
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27896
+ Connecting to database specified by database.yml
27897
+ Connecting to database specified by database.yml
27898
+ Connecting to database specified by database.yml
27899
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27900
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (39.3ms)
27901
+ Rendered text template (0.0ms)
27902
+ Sent data qbwc.qwc (2.3ms)
27903
+ Completed 200 OK in 57ms (Views: 2.1ms | ActiveRecord: 0.0ms)
27904
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27905
+ Sent data qbwc.qwc (0.3ms)
27906
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27907
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27908
+ Sent data qbwc.qwc (0.3ms)
27909
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27910
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27911
+ Sent data qbwc.qwc (0.3ms)
27912
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27913
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27914
+ Sent data qbwc.qwc (0.3ms)
27915
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27916
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27917
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27918
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27919
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27920
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27921
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27922
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27923
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27924
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27925
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27926
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27927
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27928
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27929
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27930
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27931
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27932
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27933
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27934
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27935
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27936
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27937
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27938
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27939
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27940
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27941
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27942
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27943
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27944
+ Connecting to database specified by database.yml
27945
+ Connecting to database specified by database.yml
27946
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27947
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (39.6ms)
27948
+ Rendered text template (0.0ms)
27949
+ Sent data qbwc.qwc (2.3ms)
27950
+ Completed 200 OK in 58ms (Views: 2.1ms | ActiveRecord: 0.0ms)
27951
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27952
+ Sent data qbwc.qwc (0.3ms)
27953
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27954
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27955
+ Sent data qbwc.qwc (0.3ms)
27956
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27957
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27958
+ Sent data qbwc.qwc (0.3ms)
27959
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27960
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27961
+ Sent data qbwc.qwc (0.3ms)
27962
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27963
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27964
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27965
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27966
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27967
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27968
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27969
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27970
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27971
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27972
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27973
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27974
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27975
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27976
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27977
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27978
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27979
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27980
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27981
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27982
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27983
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27984
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27985
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27986
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27987
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27988
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27989
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
27990
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27991
+ Connecting to database specified by database.yml
27992
+ Connecting to database specified by database.yml
27993
+ Connecting to database specified by database.yml
27994
+ Connecting to database specified by database.yml
27995
+ Connecting to database specified by database.yml
27996
+ Connecting to database specified by database.yml
27997
+ Connecting to database specified by database.yml
27998
+ Processing by QuickbooksWebConnector::QwcController#download as XML
27999
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (40.9ms)
28000
+ Rendered text template (0.0ms)
28001
+ Sent data qbwc.qwc (2.3ms)
28002
+ Completed 200 OK in 59ms (Views: 2.1ms | ActiveRecord: 0.0ms)
28003
+ Processing by QuickbooksWebConnector::QwcController#download as XML
28004
+ Sent data qbwc.qwc (0.3ms)
28005
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
28006
+ Processing by QuickbooksWebConnector::QwcController#download as XML
28007
+ Sent data qbwc.qwc (0.3ms)
28008
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
28009
+ Processing by QuickbooksWebConnector::QwcController#download as XML
28010
+ Sent data qbwc.qwc (0.3ms)
28011
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
28012
+ Processing by QuickbooksWebConnector::QwcController#download as XML
28013
+ Sent data qbwc.qwc (0.3ms)
28014
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
28015
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28016
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28017
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28018
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28019
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28020
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28021
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28022
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28023
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28024
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28025
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28026
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28027
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28028
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28029
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28030
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28031
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28032
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28033
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28034
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28035
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28036
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28037
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28038
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28039
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28040
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28041
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28042
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28043
+ Connecting to database specified by database.yml
28044
+ Processing by QuickbooksWebConnector::QwcController#download as XML
28045
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (41.0ms)
28046
+ Rendered text template (0.0ms)
28047
+ Sent data qbwc.qwc (2.3ms)
28048
+ Completed 200 OK in 59ms (Views: 2.1ms | ActiveRecord: 0.0ms)
28049
+ Processing by QuickbooksWebConnector::QwcController#download as XML
28050
+ Sent data qbwc.qwc (0.3ms)
28051
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
28052
+ Processing by QuickbooksWebConnector::QwcController#download as XML
28053
+ Sent data qbwc.qwc (0.3ms)
28054
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
28055
+ Processing by QuickbooksWebConnector::QwcController#download as XML
28056
+ Sent data qbwc.qwc (0.3ms)
28057
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
28058
+ Processing by QuickbooksWebConnector::QwcController#download as XML
28059
+ Sent data qbwc.qwc (0.3ms)
28060
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
28061
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28062
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28063
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28064
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28065
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28066
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28067
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28068
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28069
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28070
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28071
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28072
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28073
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28074
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28075
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28076
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28077
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28078
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28079
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28080
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28081
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28082
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28083
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28084
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28085
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28086
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28087
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28088
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28089
+ Connecting to database specified by database.yml
28090
+ Processing by QuickbooksWebConnector::QwcController#download as XML
28091
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (39.8ms)
28092
+ Rendered text template (0.0ms)
28093
+ Sent data qbwc.qwc (2.3ms)
28094
+ Completed 200 OK in 58ms (Views: 2.1ms | ActiveRecord: 0.0ms)
28095
+ Processing by QuickbooksWebConnector::QwcController#download as XML
28096
+ Sent data qbwc.qwc (0.3ms)
28097
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
28098
+ Processing by QuickbooksWebConnector::QwcController#download as XML
28099
+ Sent data qbwc.qwc (0.4ms)
28100
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
28101
+ Processing by QuickbooksWebConnector::QwcController#download as XML
28102
+ Sent data qbwc.qwc (0.3ms)
28103
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
28104
+ Processing by QuickbooksWebConnector::QwcController#download as XML
28105
+ Sent data qbwc.qwc (0.3ms)
28106
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
28107
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28108
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28109
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28110
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28111
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28112
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28113
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28114
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28115
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28116
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28117
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28118
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28119
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28120
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28121
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28122
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28123
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28124
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28125
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28126
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28127
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28128
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28129
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28130
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28131
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28132
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28133
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28134
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28135
+ Connecting to database specified by database.yml
28136
+ Processing by QuickbooksWebConnector::QwcController#download as XML
28137
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (41.0ms)
28138
+ Rendered text template (0.0ms)
28139
+ Sent data qbwc.qwc (2.6ms)
28140
+ Completed 200 OK in 60ms (Views: 2.4ms | ActiveRecord: 0.0ms)
28141
+ Processing by QuickbooksWebConnector::QwcController#download as XML
28142
+ Sent data qbwc.qwc (0.3ms)
28143
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
28144
+ Processing by QuickbooksWebConnector::QwcController#download as XML
28145
+ Sent data qbwc.qwc (0.3ms)
28146
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
28147
+ Processing by QuickbooksWebConnector::QwcController#download as XML
28148
+ Sent data qbwc.qwc (0.3ms)
28149
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
28150
+ Processing by QuickbooksWebConnector::QwcController#download as XML
28151
+ Sent data qbwc.qwc (0.3ms)
28152
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
28153
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28154
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28155
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28156
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28157
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28158
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28159
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28160
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28161
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28162
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28163
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28164
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28165
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28166
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28167
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28168
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28169
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28170
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28171
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28172
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28173
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28174
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28175
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28176
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28177
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28178
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28179
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28180
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28181
+ Connecting to database specified by database.yml
28182
+ Processing by QuickbooksWebConnector::QwcController#download as XML
28183
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (40.4ms)
28184
+ Rendered text template (0.0ms)
28185
+ Sent data qbwc.qwc (2.3ms)
28186
+ Completed 200 OK in 59ms (Views: 2.2ms | ActiveRecord: 0.0ms)
28187
+ Processing by QuickbooksWebConnector::QwcController#download as XML
28188
+ Sent data qbwc.qwc (0.3ms)
28189
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
28190
+ Processing by QuickbooksWebConnector::QwcController#download as XML
28191
+ Sent data qbwc.qwc (0.3ms)
28192
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
28193
+ Processing by QuickbooksWebConnector::QwcController#download as XML
28194
+ Sent data qbwc.qwc (0.3ms)
28195
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
28196
+ Processing by QuickbooksWebConnector::QwcController#download as XML
28197
+ Sent data qbwc.qwc (0.3ms)
28198
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
28199
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28200
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28201
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28202
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28203
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28204
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28205
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28206
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28207
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28208
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28209
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28210
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28211
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28212
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28213
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28214
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28215
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28216
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28217
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28218
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28219
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28220
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28221
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28222
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28223
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28224
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28225
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
28226
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
28227
+ Connecting to database specified by database.yml