quickbooks_web_connector 0.3.0 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -72,6 +72,11 @@ module QuickbooksWebConnector
72
72
  Job.create(request_builder, response_handler, *args)
73
73
  end
74
74
 
75
+ # This method can be used to conveniently remove a job from the queue.
76
+ def dequeue(request_builder, response_handler, *args)
77
+ Job.destroy(request_builder, response_handler, *args)
78
+ end
79
+
75
80
  # This method will return a `QuickbooksWebConnector::Job` object or
76
81
  # a non-true value depending on whether a job can be obtained.
77
82
  def reserve
@@ -117,6 +122,11 @@ module QuickbooksWebConnector
117
122
  decode redis.lindex :queue, 0
118
123
  end
119
124
 
125
+ # Delete any matching items
126
+ def remove(item)
127
+ redis.lrem :queue, 0, encode(item)
128
+ end
129
+
120
130
  # Does the dirty work of fetching a range of items from a Redis list and
121
131
  # converting them into Ruby objects
122
132
  def list_range(key, start = 0, stop = -1)
@@ -20,6 +20,17 @@ module QuickbooksWebConnector
20
20
  )
21
21
  end
22
22
 
23
+ # Destroys a job on the queue. Expects a request builder class name, a
24
+ # response handler class name, and an optional array of arguments to pass
25
+ # to the class' `perform` method.
26
+ def self.destroy(request_builder, response_handler, *args)
27
+ QuickbooksWebConnector.remove(
28
+ 'request_builder_class' => request_builder.to_s,
29
+ 'response_handler_class' => response_handler.to_s,
30
+ 'args' => args
31
+ )
32
+ end
33
+
23
34
  # Returns an instance of QuickbooksWebConnector::Job
24
35
  # if any jobs are available. If not, returns nil.
25
36
  def self.reserve
@@ -1,3 +1,3 @@
1
1
  module QuickbooksWebConnector
2
- VERSION = "0.3.0"
2
+ VERSION = "0.4.0"
3
3
  end
@@ -138,28 +138,35 @@ describe QuickbooksWebConnector::SoapController do
138
138
  QuickbooksWebConnector.configure do |c|
139
139
  c.username = 'foo'
140
140
  c.password = 'bar'
141
+ c.company_file_path = "C:\\path\\to\\company.qbw"
141
142
  end
142
-
143
- do_post
144
143
  end
145
144
 
146
145
  after do
147
146
  QuickbooksWebConnector.configure do |c|
148
147
  c.username = 'web_connector'
149
148
  c.password = 'secret'
149
+ c.company_file_path = nil
150
150
  end
151
151
  end
152
152
 
153
- it 'responds with success' do
154
- expect(response).to be_success
155
- end
153
+ it 'responds that theres no jobs to work when authenticated without jobs' do
154
+ do_post
156
155
 
157
- it 'returns a token' do
156
+ expect(response).to be_success
158
157
  expect(result.text('env:Body/n1:authenticateResponse/n1:authenticateResult/n1:string[1]')).to_not be_nil
158
+ expect(result.text('env:Body/n1:authenticateResponse/n1:authenticateResult/n1:string[2]')).to eq('none')
159
159
  end
160
160
 
161
- it 'returns "none" for having no data to send' do
162
- expect(result.text('env:Body/n1:authenticateResponse/n1:authenticateResult/n1:string[2]')).to eq('none')
161
+ it 'returns the company_file_path when theres data to send' do
162
+ SomeBuilder.stub(:perform).with(1).and_return('<some><xml></xml></some>')
163
+ QuickbooksWebConnector.enqueue SomeBuilder, SomeHandler, 1
164
+
165
+ do_post
166
+
167
+ expect(response).to be_success
168
+ expect(result.text('env:Body/n1:authenticateResponse/n1:authenticateResult/n1:string[1]')).to_not be_nil
169
+ expect(result.text('env:Body/n1:authenticateResponse/n1:authenticateResult/n1:string[2]')).to eq('C:\path\to\company.qbw')
163
170
  end
164
171
  end
165
172
 
@@ -1161,3 +1161,1056 @@ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1161
1161
  Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1162
1162
  Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1163
1163
  Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1164
+ Connecting to database specified by database.yml
1165
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1166
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.4ms)
1167
+ Rendered text template (0.0ms)
1168
+ Sent data qbwc.qwc (3.6ms)
1169
+ Completed 200 OK in 22ms (Views: 3.4ms | ActiveRecord: 0.0ms)
1170
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1171
+ Sent data qbwc.qwc (0.5ms)
1172
+ Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1173
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1174
+ Sent data qbwc.qwc (0.5ms)
1175
+ Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1176
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1177
+ Sent data qbwc.qwc (0.6ms)
1178
+ Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1179
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1180
+ Sent data qbwc.qwc (0.6ms)
1181
+ Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1182
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1183
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1184
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1185
+ Completed 200 OK in 6ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1186
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1187
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1188
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1189
+ Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1190
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1191
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1192
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1193
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1194
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1195
+ Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1196
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1197
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1198
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1199
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1200
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1201
+ Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1202
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1203
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1204
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1205
+ Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1206
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1207
+ Completed 200 OK in 7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1208
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1209
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1210
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1211
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1212
+ Connecting to database specified by database.yml
1213
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1214
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.2ms)
1215
+ Rendered text template (0.0ms)
1216
+ Sent data qbwc.qwc (1.8ms)
1217
+ Completed 200 OK in 14ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1218
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1219
+ Sent data qbwc.qwc (0.4ms)
1220
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1221
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1222
+ Sent data qbwc.qwc (0.3ms)
1223
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1224
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1225
+ Sent data qbwc.qwc (0.3ms)
1226
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1227
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1228
+ Sent data qbwc.qwc (0.3ms)
1229
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1230
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1231
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1232
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1233
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1234
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1235
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1236
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1237
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1238
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1239
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1240
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1241
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1242
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1243
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1244
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1245
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1246
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1247
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1248
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1249
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1250
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1251
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1252
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1253
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1254
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1255
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1256
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1257
+ Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1258
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1259
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1260
+ Connecting to database specified by database.yml
1261
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1262
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.8ms)
1263
+ Rendered text template (0.0ms)
1264
+ Sent data qbwc.qwc (4.7ms)
1265
+ Completed 200 OK in 21ms (Views: 4.5ms | ActiveRecord: 0.0ms)
1266
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1267
+ Sent data qbwc.qwc (0.5ms)
1268
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1269
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1270
+ Sent data qbwc.qwc (0.6ms)
1271
+ Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1272
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1273
+ Sent data qbwc.qwc (0.4ms)
1274
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1275
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1276
+ Sent data qbwc.qwc (0.4ms)
1277
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1278
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1279
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1280
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1281
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1282
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1283
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1284
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1285
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1286
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1287
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1288
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1289
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1290
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1291
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1292
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1293
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1294
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1295
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1296
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1297
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1298
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1299
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1300
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1301
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1302
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1303
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1304
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1305
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1306
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1307
+ Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1308
+ Connecting to database specified by database.yml
1309
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1310
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.4ms)
1311
+ Rendered text template (0.0ms)
1312
+ Sent data qbwc.qwc (2.7ms)
1313
+ Completed 200 OK in 17ms (Views: 2.5ms | ActiveRecord: 0.0ms)
1314
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1315
+ Sent data qbwc.qwc (0.5ms)
1316
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1317
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1318
+ Sent data qbwc.qwc (0.7ms)
1319
+ Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1320
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1321
+ Sent data qbwc.qwc (0.3ms)
1322
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1323
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1324
+ Sent data qbwc.qwc (0.7ms)
1325
+ Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1326
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1327
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1328
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1329
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1330
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1331
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1332
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1333
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1334
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1335
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1336
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1337
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1338
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1339
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1340
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1341
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1342
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1343
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1344
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1345
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1346
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1347
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1348
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1349
+ Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1350
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1351
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1352
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1353
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1354
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1355
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1356
+ Connecting to database specified by database.yml
1357
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1358
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.4ms)
1359
+ Rendered text template (0.0ms)
1360
+ Sent data qbwc.qwc (2.9ms)
1361
+ Completed 200 OK in 18ms (Views: 2.8ms | ActiveRecord: 0.0ms)
1362
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1363
+ Sent data qbwc.qwc (0.4ms)
1364
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1365
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1366
+ Sent data qbwc.qwc (0.7ms)
1367
+ Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1368
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1369
+ Sent data qbwc.qwc (0.5ms)
1370
+ Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1371
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1372
+ Sent data qbwc.qwc (0.7ms)
1373
+ Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1374
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1375
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1376
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1377
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1378
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1379
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1380
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1381
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1382
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1383
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1384
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1385
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1386
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1387
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1388
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1389
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1390
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1391
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1392
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1393
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1394
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1395
+ Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1396
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1397
+ Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1398
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1399
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1400
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1401
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1402
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1403
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1404
+ Connecting to database specified by database.yml
1405
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1406
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.3ms)
1407
+ Rendered text template (0.0ms)
1408
+ Sent data qbwc.qwc (2.3ms)
1409
+ Completed 200 OK in 15ms (Views: 2.2ms | ActiveRecord: 0.0ms)
1410
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1411
+ Sent data qbwc.qwc (0.4ms)
1412
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1413
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1414
+ Sent data qbwc.qwc (0.5ms)
1415
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1416
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1417
+ Sent data qbwc.qwc (0.4ms)
1418
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1419
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1420
+ Sent data qbwc.qwc (0.4ms)
1421
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1422
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1423
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1424
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1425
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1426
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1427
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1428
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1429
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1430
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1431
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1432
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1433
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1434
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1435
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1436
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1437
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1438
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1439
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1440
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1441
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1442
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1443
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1444
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1445
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1446
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1447
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1448
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1449
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1450
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1451
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1452
+ Connecting to database specified by database.yml
1453
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1454
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.4ms)
1455
+ Rendered text template (0.0ms)
1456
+ Sent data qbwc.qwc (2.9ms)
1457
+ Completed 200 OK in 19ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1458
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1459
+ Sent data qbwc.qwc (0.6ms)
1460
+ Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1461
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1462
+ Sent data qbwc.qwc (0.3ms)
1463
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1464
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1465
+ Sent data qbwc.qwc (0.4ms)
1466
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1467
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1468
+ Sent data qbwc.qwc (0.7ms)
1469
+ Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1470
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1471
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1472
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1473
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1474
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1475
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1476
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1477
+ Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1478
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1479
+ Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1480
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1481
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1482
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1483
+ Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1484
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1485
+ Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1486
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1487
+ Completed 200 OK in 8ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1488
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1489
+ Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1490
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1491
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1492
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1493
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1494
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1495
+ Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1496
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1497
+ Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1498
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1499
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1500
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1501
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1502
+ Connecting to database specified by database.yml
1503
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1504
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.2ms)
1505
+ Rendered text template (0.0ms)
1506
+ Sent data qbwc.qwc (2.2ms)
1507
+ Completed 200 OK in 13ms (Views: 2.0ms | ActiveRecord: 0.0ms)
1508
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1509
+ Sent data qbwc.qwc (0.5ms)
1510
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1511
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1512
+ Sent data qbwc.qwc (0.9ms)
1513
+ Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1514
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1515
+ Sent data qbwc.qwc (0.4ms)
1516
+ Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1517
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1518
+ Sent data qbwc.qwc (0.4ms)
1519
+ Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1520
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1521
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1522
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1523
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1524
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1525
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1526
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1527
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1528
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1529
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1530
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1531
+ Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1532
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1533
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1534
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1535
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1536
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1537
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1538
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1539
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1540
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1541
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1542
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1543
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1544
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1545
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1546
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1547
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1548
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1549
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1550
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1551
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1552
+ Connecting to database specified by database.yml
1553
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1554
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.3ms)
1555
+ Rendered text template (0.0ms)
1556
+ Sent data qbwc.qwc (3.6ms)
1557
+ Completed 200 OK in 15ms (Views: 3.4ms | ActiveRecord: 0.0ms)
1558
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1559
+ Sent data qbwc.qwc (0.4ms)
1560
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1561
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1562
+ Sent data qbwc.qwc (0.7ms)
1563
+ Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1564
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1565
+ Sent data qbwc.qwc (0.3ms)
1566
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1567
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1568
+ Sent data qbwc.qwc (0.4ms)
1569
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1570
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1571
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1572
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1573
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1574
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1575
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1576
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1577
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1578
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1579
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1580
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1581
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1582
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1583
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1584
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1585
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1586
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1587
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1588
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1589
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1590
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1591
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1592
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1593
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1594
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1595
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1596
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1597
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1598
+ Connecting to database specified by database.yml
1599
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1600
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.2ms)
1601
+ Rendered text template (0.0ms)
1602
+ Sent data qbwc.qwc (2.1ms)
1603
+ Completed 200 OK in 14ms (Views: 1.9ms | ActiveRecord: 0.0ms)
1604
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1605
+ Sent data qbwc.qwc (0.3ms)
1606
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1607
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1608
+ Sent data qbwc.qwc (0.3ms)
1609
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1610
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1611
+ Sent data qbwc.qwc (0.3ms)
1612
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1613
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1614
+ Sent data qbwc.qwc (0.4ms)
1615
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1616
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1617
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1618
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1619
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1620
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1621
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1622
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1623
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1624
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1625
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1626
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1627
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1628
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1629
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1630
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1631
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1632
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1633
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1634
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1635
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1636
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1637
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1638
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1639
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1640
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1641
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1642
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1643
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1644
+ Connecting to database specified by database.yml
1645
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1646
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.2ms)
1647
+ Rendered text template (0.0ms)
1648
+ Sent data qbwc.qwc (3.1ms)
1649
+ Completed 200 OK in 19ms (Views: 2.9ms | ActiveRecord: 0.0ms)
1650
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1651
+ Sent data qbwc.qwc (0.4ms)
1652
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1653
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1654
+ Sent data qbwc.qwc (0.4ms)
1655
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1656
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1657
+ Sent data qbwc.qwc (0.4ms)
1658
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1659
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1660
+ Sent data qbwc.qwc (0.4ms)
1661
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1662
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1663
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1664
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1665
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1666
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1667
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1668
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1669
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1670
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1671
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1672
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1673
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1674
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1675
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1676
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1677
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1678
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1679
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1680
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1681
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1682
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1683
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1684
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1685
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1686
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1687
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1688
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1689
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1690
+ Connecting to database specified by database.yml
1691
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1692
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.2ms)
1693
+ Rendered text template (0.0ms)
1694
+ Sent data qbwc.qwc (2.2ms)
1695
+ Completed 200 OK in 18ms (Views: 2.1ms | ActiveRecord: 0.0ms)
1696
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1697
+ Sent data qbwc.qwc (0.4ms)
1698
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1699
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1700
+ Sent data qbwc.qwc (0.3ms)
1701
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1702
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1703
+ Sent data qbwc.qwc (0.3ms)
1704
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1705
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1706
+ Sent data qbwc.qwc (0.3ms)
1707
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1708
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1709
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1710
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1711
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1712
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1713
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1714
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1715
+ Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1716
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1717
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1718
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1719
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1720
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1721
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1722
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1723
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1724
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1725
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1726
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1727
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1728
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1729
+ Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1730
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1731
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1732
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1733
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1734
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1735
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1736
+ Connecting to database specified by database.yml
1737
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1738
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.3ms)
1739
+ Rendered text template (0.0ms)
1740
+ Sent data qbwc.qwc (3.5ms)
1741
+ Completed 200 OK in 14ms (Views: 3.2ms | ActiveRecord: 0.0ms)
1742
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1743
+ Sent data qbwc.qwc (0.4ms)
1744
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1745
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1746
+ Sent data qbwc.qwc (0.4ms)
1747
+ Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1748
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1749
+ Sent data qbwc.qwc (0.4ms)
1750
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1751
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1752
+ Sent data qbwc.qwc (0.3ms)
1753
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1754
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1755
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1756
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1757
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1758
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1759
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1760
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1761
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1762
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1763
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1764
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1765
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1766
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1767
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1768
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1769
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1770
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1771
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1772
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1773
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1774
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1775
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1776
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1777
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1778
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1779
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1780
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1781
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1782
+ Connecting to database specified by database.yml
1783
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1784
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.3ms)
1785
+ Rendered text template (0.0ms)
1786
+ Sent data qbwc.qwc (3.0ms)
1787
+ Completed 200 OK in 17ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1788
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1789
+ Sent data qbwc.qwc (0.6ms)
1790
+ Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1791
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1792
+ Sent data qbwc.qwc (0.5ms)
1793
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1794
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1795
+ Sent data qbwc.qwc (0.4ms)
1796
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1797
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1798
+ Sent data qbwc.qwc (0.3ms)
1799
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1800
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1801
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1802
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1803
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1804
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1805
+ Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1806
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1807
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1808
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1809
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1810
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1811
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1812
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1813
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1814
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1815
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1816
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1817
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1818
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1819
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1820
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1821
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1822
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1823
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1824
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1825
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1826
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1827
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1828
+ Connecting to database specified by database.yml
1829
+ Connecting to database specified by database.yml
1830
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1831
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1832
+ Connecting to database specified by database.yml
1833
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1834
+ Completed 200 OK in 7ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1835
+ Connecting to database specified by database.yml
1836
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1837
+ Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1838
+ Connecting to database specified by database.yml
1839
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1840
+ Rendered text template (0.0ms)
1841
+ Completed 200 OK in 58ms (Views: 51.4ms | ActiveRecord: 0.0ms)
1842
+ Connecting to database specified by database.yml
1843
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1844
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.3ms)
1845
+ Rendered text template (0.0ms)
1846
+ Sent data qbwc.qwc (2.6ms)
1847
+ Completed 200 OK in 14ms (Views: 2.4ms | ActiveRecord: 0.0ms)
1848
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1849
+ Sent data qbwc.qwc (0.3ms)
1850
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1851
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1852
+ Sent data qbwc.qwc (0.4ms)
1853
+ Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1854
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1855
+ Sent data qbwc.qwc (0.3ms)
1856
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1857
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1858
+ Sent data qbwc.qwc (0.4ms)
1859
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1860
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1861
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1862
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1863
+ Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1864
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1865
+ Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1866
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1867
+ Completed 200 OK in 3ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1868
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1869
+ Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1870
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1871
+ Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1872
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1873
+ Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1874
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1875
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1876
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1877
+ Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1878
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1879
+ Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1880
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1881
+ Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1882
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1883
+ Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1884
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1885
+ Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1886
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1887
+ Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1888
+ Connecting to database specified by database.yml
1889
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1890
+ Completed 200 OK in 7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1891
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1892
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1893
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1894
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1895
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1896
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1897
+ Connecting to database specified by database.yml
1898
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1899
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.4ms)
1900
+ Rendered text template (0.0ms)
1901
+ Sent data qbwc.qwc (2.4ms)
1902
+ Completed 200 OK in 19.7ms (Views: 2.2ms | ActiveRecord: 0.0ms)
1903
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1904
+ Sent data qbwc.qwc (0.4ms)
1905
+ Completed 200 OK in 1.6ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1906
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1907
+ Sent data qbwc.qwc (0.4ms)
1908
+ Completed 200 OK in 1.6ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1909
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1910
+ Sent data qbwc.qwc (0.6ms)
1911
+ Completed 200 OK in 2.2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1912
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1913
+ Sent data qbwc.qwc (0.3ms)
1914
+ Completed 200 OK in 1.4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1915
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1916
+ Completed 200 OK in 1.3ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1917
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1918
+ Completed 200 OK in 4.7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1919
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1920
+ Completed 200 OK in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1921
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1922
+ Completed 200 OK in 4.4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1923
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1924
+ Completed 200 OK in 4.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1925
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1926
+ Completed 200 OK in 4.3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1927
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1928
+ Completed 200 OK in 5.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1929
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1930
+ Completed 200 OK in 5.5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1931
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1932
+ Completed 200 OK in 4.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1933
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1934
+ Completed 200 OK in 3.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1935
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1936
+ Completed 200 OK in 5.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1937
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1938
+ Completed 200 OK in 4.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1939
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1940
+ Completed 200 OK in 3.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1941
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1942
+ Completed 200 OK in 3.8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1943
+ Connecting to database specified by database.yml
1944
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1945
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.2ms)
1946
+ Rendered text template (0.0ms)
1947
+ Sent data qbwc.qwc (3.7ms)
1948
+ Completed 200 OK in 15.3ms (Views: 3.5ms | ActiveRecord: 0.0ms)
1949
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1950
+ Sent data qbwc.qwc (0.7ms)
1951
+ Completed 200 OK in 2.3ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1952
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1953
+ Sent data qbwc.qwc (0.6ms)
1954
+ Completed 200 OK in 2.1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1955
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1956
+ Sent data qbwc.qwc (0.5ms)
1957
+ Completed 200 OK in 1.8ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1958
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1959
+ Sent data qbwc.qwc (0.6ms)
1960
+ Completed 200 OK in 1.8ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1961
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1962
+ Completed 200 OK in 1.8ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1963
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1964
+ Completed 200 OK in 3.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1965
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1966
+ Completed 200 OK in 4.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1967
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1968
+ Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1969
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1970
+ Completed 200 OK in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1971
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1972
+ Completed 200 OK in 3.7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1973
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1974
+ Completed 200 OK in 4.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1975
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1976
+ Completed 200 OK in 4.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1977
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1978
+ Completed 200 OK in 6.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1979
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1980
+ Completed 200 OK in 4.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1981
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1982
+ Completed 200 OK in 5.3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1983
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1984
+ Completed 200 OK in 4.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1985
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1986
+ Completed 200 OK in 3.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1987
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
1988
+ Completed 200 OK in 3.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1989
+ Connecting to database specified by database.yml
1990
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1991
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.2ms)
1992
+ Rendered text template (0.0ms)
1993
+ Sent data qbwc.qwc (1.9ms)
1994
+ Completed 200 OK in 12.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
1995
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1996
+ Sent data qbwc.qwc (0.4ms)
1997
+ Completed 200 OK in 1.6ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1998
+ Processing by QuickbooksWebConnector::QwcController#download as XML
1999
+ Sent data qbwc.qwc (0.7ms)
2000
+ Completed 200 OK in 1.8ms (Views: 0.6ms | ActiveRecord: 0.0ms)
2001
+ Processing by QuickbooksWebConnector::QwcController#download as XML
2002
+ Sent data qbwc.qwc (0.4ms)
2003
+ Completed 200 OK in 1.5ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2004
+ Processing by QuickbooksWebConnector::QwcController#download as XML
2005
+ Sent data qbwc.qwc (0.5ms)
2006
+ Completed 200 OK in 1.6ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2007
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2008
+ Completed 200 OK in 0.9ms (Views: 0.6ms | ActiveRecord: 0.0ms)
2009
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2010
+ Completed 200 OK in 3.6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2011
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2012
+ Completed 200 OK in 3.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2013
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2014
+ Completed 200 OK in 3.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2015
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2016
+ Completed 200 OK in 2.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2017
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2018
+ Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2019
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2020
+ Completed 200 OK in 5.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2021
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2022
+ Completed 200 OK in 3.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2023
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2024
+ Completed 200 OK in 3.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2025
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2026
+ Completed 200 OK in 4.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2027
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2028
+ Completed 200 OK in 5.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2029
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2030
+ Completed 200 OK in 4.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2031
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2032
+ Completed 200 OK in 4.3ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2033
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2034
+ Completed 200 OK in 4.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2035
+ Connecting to database specified by database.yml
2036
+ Processing by QuickbooksWebConnector::QwcController#download as XML
2037
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.2ms)
2038
+ Rendered text template (0.0ms)
2039
+ Sent data qbwc.qwc (2.2ms)
2040
+ Completed 200 OK in 11.9ms (Views: 2.1ms | ActiveRecord: 0.0ms)
2041
+ Processing by QuickbooksWebConnector::QwcController#download as XML
2042
+ Sent data qbwc.qwc (0.3ms)
2043
+ Completed 200 OK in 1.3ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2044
+ Processing by QuickbooksWebConnector::QwcController#download as XML
2045
+ Sent data qbwc.qwc (0.5ms)
2046
+ Completed 200 OK in 1.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2047
+ Processing by QuickbooksWebConnector::QwcController#download as XML
2048
+ Sent data qbwc.qwc (0.4ms)
2049
+ Completed 200 OK in 1.4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2050
+ Processing by QuickbooksWebConnector::QwcController#download as XML
2051
+ Sent data qbwc.qwc (0.4ms)
2052
+ Completed 200 OK in 1.6ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2053
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2054
+ Completed 200 OK in 0.9ms (Views: 0.7ms | ActiveRecord: 0.0ms)
2055
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2056
+ Completed 200 OK in 3.4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2057
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2058
+ Completed 200 OK in 3.6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2059
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2060
+ Completed 200 OK in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2061
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2062
+ Completed 200 OK in 3.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2063
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2064
+ Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2065
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2066
+ Completed 200 OK in 6.4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2067
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2068
+ Completed 200 OK in 3.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2069
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2070
+ Completed 200 OK in 3.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2071
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2072
+ Completed 200 OK in 4.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2073
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2074
+ Completed 200 OK in 5.3ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2075
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2076
+ Completed 200 OK in 4.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2077
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2078
+ Completed 200 OK in 3.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2079
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2080
+ Completed 200 OK in 2.8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2081
+ Processing by QuickbooksWebConnector::QwcController#download as XML
2082
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.5ms)
2083
+ Rendered text template (0.0ms)
2084
+ Sent data qbwc.qwc (0.5ms)
2085
+ Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2086
+ Processing by QuickbooksWebConnector::QwcController#download as XML
2087
+ Sent data qbwc.qwc (0.6ms)
2088
+ Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2089
+ Processing by QuickbooksWebConnector::QwcController#download as XML
2090
+ Sent data qbwc.qwc (0.4ms)
2091
+ Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2092
+ Processing by QuickbooksWebConnector::QwcController#download as XML
2093
+ Sent data qbwc.qwc (0.3ms)
2094
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2095
+ Processing by QuickbooksWebConnector::QwcController#download as XML
2096
+ Sent data qbwc.qwc (0.5ms)
2097
+ Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2098
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2099
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
2100
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2101
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2102
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2103
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2104
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2105
+ Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2106
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2107
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2108
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2109
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2110
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2111
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2112
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2113
+ Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2114
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2115
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2116
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2117
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2118
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2119
+ Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2120
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2121
+ Completed 200 OK in 7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2122
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2123
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2124
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2125
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2126
+ Connecting to database specified by database.yml
2127
+ Processing by QuickbooksWebConnector::QwcController#download as XML
2128
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.4ms)
2129
+ Rendered text template (0.0ms)
2130
+ Sent data qbwc.qwc (3.4ms)
2131
+ Completed 200 OK in 18.2ms (Views: 3.3ms | ActiveRecord: 0.0ms)
2132
+ Processing by QuickbooksWebConnector::QwcController#download as XML
2133
+ Sent data qbwc.qwc (0.4ms)
2134
+ Completed 200 OK in 1.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2135
+ Processing by QuickbooksWebConnector::QwcController#download as XML
2136
+ Sent data qbwc.qwc (0.5ms)
2137
+ Completed 200 OK in 1.7ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2138
+ Processing by QuickbooksWebConnector::QwcController#download as XML
2139
+ Sent data qbwc.qwc (0.4ms)
2140
+ Completed 200 OK in 1.6ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2141
+ Processing by QuickbooksWebConnector::QwcController#download as XML
2142
+ Sent data qbwc.qwc (0.4ms)
2143
+ Completed 200 OK in 1.9ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2144
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2145
+ Completed 200 OK in 1.4ms (Views: 1.0ms | ActiveRecord: 0.0ms)
2146
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2147
+ Completed 200 OK in 3.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2148
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2149
+ Completed 200 OK in 2.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2150
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2151
+ Completed 200 OK in 4.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2152
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2153
+ Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2154
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2155
+ Completed 200 OK in 3.8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2156
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2157
+ Completed 200 OK in 4.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2158
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2159
+ Completed 200 OK in 7.9ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2160
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2161
+ Completed 200 OK in 5.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2162
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2163
+ Completed 200 OK in 4.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2164
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2165
+ Completed 200 OK in 7.3ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2166
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2167
+ Completed 200 OK in 6.8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2168
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2169
+ Completed 200 OK in 2.9ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2170
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2171
+ Completed 200 OK in 4.0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2172
+ Processing by QuickbooksWebConnector::QwcController#download as XML
2173
+ Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.3ms)
2174
+ Rendered text template (0.0ms)
2175
+ Sent data qbwc.qwc (0.6ms)
2176
+ Completed 200 OK in 7ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2177
+ Processing by QuickbooksWebConnector::QwcController#download as XML
2178
+ Sent data qbwc.qwc (0.6ms)
2179
+ Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2180
+ Processing by QuickbooksWebConnector::QwcController#download as XML
2181
+ Sent data qbwc.qwc (0.5ms)
2182
+ Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2183
+ Processing by QuickbooksWebConnector::QwcController#download as XML
2184
+ Sent data qbwc.qwc (0.4ms)
2185
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2186
+ Processing by QuickbooksWebConnector::QwcController#download as XML
2187
+ Sent data qbwc.qwc (0.4ms)
2188
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2189
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2190
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
2191
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2192
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2193
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2194
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2195
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2196
+ Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2197
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2198
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2199
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2200
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2201
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2202
+ Completed 200 OK in 6ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2203
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2204
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2205
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2206
+ Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2207
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2208
+ Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2209
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2210
+ Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2211
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2212
+ Completed 200 OK in 7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2213
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2214
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2215
+ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
2216
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)