quickbooks_web_connector 0.4.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/quickbooks_web_connector.rb +27 -0
- data/lib/quickbooks_web_connector/soap_wrapper/defaultServant.rb +10 -2
- data/lib/quickbooks_web_connector/version.rb +1 -1
- data/spec/dummy/config/application.rb +1 -1
- data/spec/dummy/config/environments/development.rb +1 -1
- data/spec/dummy/config/environments/test.rb +1 -1
- data/spec/dummy/log/test.log +586 -0
- data/spec/lib/quickbooks_web_connector/soap_wrapper/defaultServant_spec.rb +14 -7
- data/spec/lib/quickbooks_web_connector_spec.rb +22 -0
- data/spec/support/redis/dump.rdb +1 -0
- data/spec/support/redis/stdout +62211 -0
- metadata +4 -2
@@ -83,6 +83,33 @@ module QuickbooksWebConnector
|
|
83
83
|
Job.reserve
|
84
84
|
end
|
85
85
|
|
86
|
+
#
|
87
|
+
# sync session
|
88
|
+
#
|
89
|
+
|
90
|
+
# Store how many jobs we're starting with so that during the sync, we can
|
91
|
+
# determine the progress we've made.
|
92
|
+
def store_job_count_for_session
|
93
|
+
redis.set :queue_size, QuickbooksWebConnector.size
|
94
|
+
end
|
95
|
+
|
96
|
+
# Fetch the saved number of jobs for the session
|
97
|
+
def job_count_for_session
|
98
|
+
redis.get(:queue_size).to_i
|
99
|
+
end
|
100
|
+
|
101
|
+
# Clear the temporarily stored count of jobs for the sync session.
|
102
|
+
def clear_job_count_for_session
|
103
|
+
redis.del :queue_size
|
104
|
+
end
|
105
|
+
|
106
|
+
# Figure out how many jobs are left based on the queue size when we started
|
107
|
+
# and how many of them are left
|
108
|
+
def session_progress
|
109
|
+
completed_jobs_count = job_count_for_session - QuickbooksWebConnector.size
|
110
|
+
(completed_jobs_count.fdiv(job_count_for_session) * 100).ceil
|
111
|
+
end
|
112
|
+
|
86
113
|
#
|
87
114
|
# queue manipulation
|
88
115
|
#
|
@@ -47,6 +47,9 @@ module QuickbooksWebConnector
|
|
47
47
|
token = SecureRandom.uuid
|
48
48
|
result = if parameters.strUserName == QuickbooksWebConnector.config.username && parameters.strPassword == QuickbooksWebConnector.config.password
|
49
49
|
if QuickbooksWebConnector.size > 0
|
50
|
+
# Store how many jobs are queued so we can track progress later
|
51
|
+
QuickbooksWebConnector.store_job_count_for_session
|
52
|
+
|
50
53
|
QuickbooksWebConnector.config.company_file_path
|
51
54
|
else
|
52
55
|
'none'
|
@@ -88,8 +91,13 @@ module QuickbooksWebConnector
|
|
88
91
|
job.response_xml = parameters.response
|
89
92
|
job.perform
|
90
93
|
|
91
|
-
|
92
|
-
|
94
|
+
progress = if QuickbooksWebConnector.size == 0
|
95
|
+
# We're done
|
96
|
+
QuickbooksWebConnector.clear_job_count_for_session
|
97
|
+
100
|
98
|
+
else
|
99
|
+
QuickbooksWebConnector.session_progress
|
100
|
+
end
|
93
101
|
|
94
102
|
ReceiveResponseXMLResponse.new(progress)
|
95
103
|
end
|
@@ -47,7 +47,7 @@ module Dummy
|
|
47
47
|
# This will create an empty whitelist of attributes available for mass-assignment for all models
|
48
48
|
# in your app. As such, your models will need to explicitly whitelist or blacklist accessible
|
49
49
|
# parameters by using an attr_accessible or attr_protected declaration.
|
50
|
-
config.active_record.whitelist_attributes = true
|
50
|
+
# config.active_record.whitelist_attributes = true
|
51
51
|
|
52
52
|
# Enable the asset pipeline
|
53
53
|
config.assets.enabled = true
|
@@ -23,7 +23,7 @@ Dummy::Application.configure do
|
|
23
23
|
config.action_dispatch.best_standards_support = :builtin
|
24
24
|
|
25
25
|
# Raise exception on mass assignment protection for Active Record models
|
26
|
-
config.active_record.mass_assignment_sanitizer = :strict
|
26
|
+
# config.active_record.mass_assignment_sanitizer = :strict
|
27
27
|
|
28
28
|
# Log the query plan for queries taking more than this (works
|
29
29
|
# with SQLite, MySQL, and PostgreSQL)
|
@@ -30,7 +30,7 @@ Dummy::Application.configure do
|
|
30
30
|
config.action_mailer.delivery_method = :test
|
31
31
|
|
32
32
|
# Raise exception on mass assignment protection for Active Record models
|
33
|
-
config.active_record.mass_assignment_sanitizer = :strict
|
33
|
+
# config.active_record.mass_assignment_sanitizer = :strict
|
34
34
|
|
35
35
|
# Print deprecation notices to the stderr
|
36
36
|
config.active_support.deprecation = :stderr
|
data/spec/dummy/log/test.log
CHANGED
@@ -2214,3 +2214,589 @@ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
|
2214
2214
|
Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2215
2215
|
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2216
2216
|
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2217
|
+
Connecting to database specified by database.yml
|
2218
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2219
|
+
Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.3ms)
|
2220
|
+
Rendered text template (0.0ms)
|
2221
|
+
Sent data qbwc.qwc (3.5ms)
|
2222
|
+
Completed 200 OK in 24.2ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
2223
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2224
|
+
Sent data qbwc.qwc (0.5ms)
|
2225
|
+
Completed 200 OK in 2.0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2226
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2227
|
+
Sent data qbwc.qwc (0.6ms)
|
2228
|
+
Completed 200 OK in 2.0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2229
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2230
|
+
Sent data qbwc.qwc (0.5ms)
|
2231
|
+
Completed 200 OK in 1.6ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2232
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2233
|
+
Sent data qbwc.qwc (0.5ms)
|
2234
|
+
Completed 200 OK in 1.9ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2235
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2236
|
+
Completed 200 OK in 1.5ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
2237
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2238
|
+
Completed 200 OK in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2239
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2240
|
+
Completed 200 OK in 3.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2241
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2242
|
+
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2243
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2244
|
+
Completed 200 OK in 3.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2245
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2246
|
+
Completed 200 OK in 3.1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2247
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2248
|
+
Completed 200 OK in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2249
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2250
|
+
Completed 200 OK in 4.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2251
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2252
|
+
Completed 200 OK in 3.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2253
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2254
|
+
Completed 200 OK in 4.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2255
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2256
|
+
Completed 200 OK in 4.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2257
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2258
|
+
Completed 200 OK in 4.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2259
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2260
|
+
Completed 200 OK in 2.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2261
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2262
|
+
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2263
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2264
|
+
Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.3ms)
|
2265
|
+
Rendered text template (0.0ms)
|
2266
|
+
Sent data qbwc.qwc (0.5ms)
|
2267
|
+
Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2268
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2269
|
+
Sent data qbwc.qwc (0.7ms)
|
2270
|
+
Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2271
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2272
|
+
Sent data qbwc.qwc (0.3ms)
|
2273
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2274
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2275
|
+
Sent data qbwc.qwc (0.3ms)
|
2276
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2277
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2278
|
+
Sent data qbwc.qwc (0.4ms)
|
2279
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2280
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2281
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
2282
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2283
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2284
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2285
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2286
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2287
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2288
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2289
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2290
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2291
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2292
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2293
|
+
Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2294
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2295
|
+
Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2296
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2297
|
+
Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2298
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2299
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2300
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2301
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2302
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2303
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2304
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2305
|
+
Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2306
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2307
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2308
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2309
|
+
Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.3ms)
|
2310
|
+
Rendered text template (0.0ms)
|
2311
|
+
Sent data qbwc.qwc (0.6ms)
|
2312
|
+
Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2313
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2314
|
+
Sent data qbwc.qwc (0.3ms)
|
2315
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2316
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2317
|
+
Sent data qbwc.qwc (0.5ms)
|
2318
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2319
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2320
|
+
Sent data qbwc.qwc (0.7ms)
|
2321
|
+
Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
2322
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2323
|
+
Sent data qbwc.qwc (0.5ms)
|
2324
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2325
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2326
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
2327
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2328
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2329
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2330
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2331
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2332
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2333
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2334
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2335
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2336
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2337
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2338
|
+
Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2339
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2340
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2341
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2342
|
+
Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2343
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2344
|
+
Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2345
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2346
|
+
Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2347
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2348
|
+
Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2349
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2350
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2351
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2352
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2353
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2354
|
+
Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.4ms)
|
2355
|
+
Rendered text template (0.0ms)
|
2356
|
+
Sent data qbwc.qwc (0.7ms)
|
2357
|
+
Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
2358
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2359
|
+
Sent data qbwc.qwc (0.4ms)
|
2360
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2361
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2362
|
+
Sent data qbwc.qwc (0.4ms)
|
2363
|
+
Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2364
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2365
|
+
Sent data qbwc.qwc (0.3ms)
|
2366
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2367
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2368
|
+
Sent data qbwc.qwc (0.6ms)
|
2369
|
+
Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2370
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2371
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
2372
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2373
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2374
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2375
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2376
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2377
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2378
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2379
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2380
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2381
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2382
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2383
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2384
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2385
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2386
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2387
|
+
Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2388
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2389
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2390
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2391
|
+
Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2392
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2393
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2394
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2395
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2396
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2397
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2398
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2399
|
+
Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.7ms)
|
2400
|
+
Rendered text template (0.0ms)
|
2401
|
+
Sent data qbwc.qwc (0.8ms)
|
2402
|
+
Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
2403
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2404
|
+
Sent data qbwc.qwc (0.5ms)
|
2405
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2406
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2407
|
+
Sent data qbwc.qwc (0.5ms)
|
2408
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2409
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2410
|
+
Sent data qbwc.qwc (0.5ms)
|
2411
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2412
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2413
|
+
Sent data qbwc.qwc (0.6ms)
|
2414
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2415
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2416
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
2417
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2418
|
+
Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2419
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2420
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2421
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2422
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2423
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2424
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2425
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2426
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2427
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2428
|
+
Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2429
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2430
|
+
Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2431
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2432
|
+
Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2433
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2434
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2435
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2436
|
+
Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2437
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2438
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2439
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2440
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2441
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2442
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2443
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2444
|
+
Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.3ms)
|
2445
|
+
Rendered text template (0.0ms)
|
2446
|
+
Sent data qbwc.qwc (0.5ms)
|
2447
|
+
Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2448
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2449
|
+
Sent data qbwc.qwc (0.3ms)
|
2450
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2451
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2452
|
+
Sent data qbwc.qwc (0.3ms)
|
2453
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2454
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2455
|
+
Sent data qbwc.qwc (0.6ms)
|
2456
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2457
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2458
|
+
Sent data qbwc.qwc (0.9ms)
|
2459
|
+
Completed 200 OK in 3ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
2460
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2461
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2462
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2463
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2464
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2465
|
+
Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2466
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2467
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2468
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2469
|
+
Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2470
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2471
|
+
Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2472
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2473
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2474
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2475
|
+
Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2476
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2477
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2478
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2479
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2480
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2481
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2482
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2483
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2484
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2485
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2486
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2487
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2488
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2489
|
+
Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.3ms)
|
2490
|
+
Rendered text template (0.0ms)
|
2491
|
+
Sent data qbwc.qwc (0.4ms)
|
2492
|
+
Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2493
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2494
|
+
Sent data qbwc.qwc (0.4ms)
|
2495
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2496
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2497
|
+
Sent data qbwc.qwc (0.4ms)
|
2498
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2499
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2500
|
+
Sent data qbwc.qwc (0.6ms)
|
2501
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2502
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2503
|
+
Sent data qbwc.qwc (0.4ms)
|
2504
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2505
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2506
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2507
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2508
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2509
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2510
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2511
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2512
|
+
Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2513
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2514
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2515
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2516
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2517
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2518
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2519
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2520
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2521
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2522
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2523
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2524
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2525
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2526
|
+
Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2527
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2528
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2529
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2530
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2531
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2532
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2533
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2534
|
+
Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.4ms)
|
2535
|
+
Rendered text template (0.0ms)
|
2536
|
+
Sent data qbwc.qwc (0.5ms)
|
2537
|
+
Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2538
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2539
|
+
Sent data qbwc.qwc (0.4ms)
|
2540
|
+
Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2541
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2542
|
+
Sent data qbwc.qwc (1.0ms)
|
2543
|
+
Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
2544
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2545
|
+
Sent data qbwc.qwc (0.5ms)
|
2546
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2547
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2548
|
+
Sent data qbwc.qwc (0.6ms)
|
2549
|
+
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2550
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2551
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2552
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2553
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2554
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2555
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2556
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2557
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2558
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2559
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2560
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2561
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2562
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2563
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2564
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2565
|
+
Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2566
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2567
|
+
Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2568
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2569
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2570
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2571
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2572
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2573
|
+
Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2574
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2575
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2576
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2577
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2578
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2579
|
+
Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.3ms)
|
2580
|
+
Rendered text template (0.0ms)
|
2581
|
+
Sent data qbwc.qwc (0.4ms)
|
2582
|
+
Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2583
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2584
|
+
Sent data qbwc.qwc (0.6ms)
|
2585
|
+
Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2586
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2587
|
+
Sent data qbwc.qwc (0.5ms)
|
2588
|
+
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2589
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2590
|
+
Sent data qbwc.qwc (0.4ms)
|
2591
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2592
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2593
|
+
Sent data qbwc.qwc (0.5ms)
|
2594
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2595
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2596
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2597
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2598
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2599
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2600
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2601
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2602
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2603
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2604
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2605
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2606
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2607
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2608
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2609
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2610
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2611
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2612
|
+
Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2613
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2614
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2615
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2616
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2617
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2618
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2619
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2620
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2621
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2622
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2623
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2624
|
+
Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.3ms)
|
2625
|
+
Rendered text template (0.0ms)
|
2626
|
+
Sent data qbwc.qwc (0.5ms)
|
2627
|
+
Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2628
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2629
|
+
Sent data qbwc.qwc (0.4ms)
|
2630
|
+
Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2631
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2632
|
+
Sent data qbwc.qwc (0.5ms)
|
2633
|
+
Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2634
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2635
|
+
Sent data qbwc.qwc (0.5ms)
|
2636
|
+
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2637
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2638
|
+
Sent data qbwc.qwc (0.4ms)
|
2639
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2640
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2641
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2642
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2643
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2644
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2645
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2646
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2647
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2648
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2649
|
+
Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2650
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2651
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2652
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2653
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2654
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2655
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2656
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2657
|
+
Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2658
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2659
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2660
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2661
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2662
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2663
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2664
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2665
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2666
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2667
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2668
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2669
|
+
Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.5ms)
|
2670
|
+
Rendered text template (0.0ms)
|
2671
|
+
Sent data qbwc.qwc (0.7ms)
|
2672
|
+
Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
2673
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2674
|
+
Sent data qbwc.qwc (0.4ms)
|
2675
|
+
Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2676
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2677
|
+
Sent data qbwc.qwc (0.3ms)
|
2678
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2679
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2680
|
+
Sent data qbwc.qwc (1.0ms)
|
2681
|
+
Completed 200 OK in 3ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
2682
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2683
|
+
Sent data qbwc.qwc (0.6ms)
|
2684
|
+
Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2685
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2686
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
2687
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2688
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2689
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2690
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2691
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2692
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2693
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2694
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2695
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2696
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2697
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2698
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2699
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2700
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2701
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2702
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2703
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2704
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2705
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2706
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2707
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2708
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2709
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2710
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2711
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2712
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2713
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2714
|
+
Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.3ms)
|
2715
|
+
Rendered text template (0.0ms)
|
2716
|
+
Sent data qbwc.qwc (0.5ms)
|
2717
|
+
Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2718
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2719
|
+
Sent data qbwc.qwc (0.3ms)
|
2720
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2721
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2722
|
+
Sent data qbwc.qwc (0.6ms)
|
2723
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2724
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2725
|
+
Sent data qbwc.qwc (0.5ms)
|
2726
|
+
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2727
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2728
|
+
Sent data qbwc.qwc (0.4ms)
|
2729
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2730
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2731
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2732
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2733
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2734
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2735
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2736
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2737
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2738
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2739
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2740
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2741
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2742
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2743
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2744
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2745
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2746
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2747
|
+
Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2748
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2749
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2750
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2751
|
+
Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2752
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2753
|
+
Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2754
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2755
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2756
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2757
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2758
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2759
|
+
Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.3ms)
|
2760
|
+
Rendered text template (0.0ms)
|
2761
|
+
Sent data qbwc.qwc (0.6ms)
|
2762
|
+
Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2763
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2764
|
+
Sent data qbwc.qwc (0.4ms)
|
2765
|
+
Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2766
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2767
|
+
Sent data qbwc.qwc (0.7ms)
|
2768
|
+
Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
2769
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2770
|
+
Sent data qbwc.qwc (0.4ms)
|
2771
|
+
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2772
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
2773
|
+
Sent data qbwc.qwc (0.5ms)
|
2774
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2775
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2776
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
2777
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2778
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2779
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2780
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2781
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2782
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2783
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2784
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2785
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2786
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2787
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2788
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2789
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2790
|
+
Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2791
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2792
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2793
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2794
|
+
Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2795
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2796
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2797
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2798
|
+
Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2799
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2800
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2801
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
2802
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|