quickbooks_web_connector 0.2.0 → 0.3.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/app/views/quickbooks_web_connector/qwc/qwc.xml.builder +2 -2
- data/lib/quickbooks_web_connector/config.rb +6 -0
- data/lib/quickbooks_web_connector/version.rb +1 -1
- data/spec/config/config_spec.rb +32 -0
- data/spec/dummy/log/test.log +384 -0
- data/spec/support/redis/stdout +71010 -0
- data/spec/views/quickbooks_web_connector/qwc/qwc.xml.builder_spec.rb +7 -3
- metadata +2 -4
- data/spec/support/redis/dump.rdb +0 -1
@@ -1,9 +1,9 @@
|
|
1
1
|
xml.instruct!
|
2
2
|
xml.QBWCXML do
|
3
|
-
xml.AppName
|
3
|
+
xml.AppName QuickbooksWebConnector.config.app_name
|
4
4
|
xml.AppID
|
5
5
|
xml.AppURL quickbooks_web_connector.soap_url
|
6
|
-
xml.AppDescription
|
6
|
+
xml.AppDescription QuickbooksWebConnector.config.app_description
|
7
7
|
xml.AppSupport main_app.root_url
|
8
8
|
xml.UserName QuickbooksWebConnector.config.username
|
9
9
|
xml.OwnerID '{d69682e6-4436-44bc-bd19-d6bfbd11778d}'
|
@@ -24,6 +24,9 @@ module QuickbooksWebConnector
|
|
24
24
|
config_accessor :company_file_path
|
25
25
|
|
26
26
|
config_accessor :parent_controller
|
27
|
+
|
28
|
+
config_accessor :app_name
|
29
|
+
config_accessor :app_description
|
27
30
|
end
|
28
31
|
|
29
32
|
configure do |config|
|
@@ -34,6 +37,9 @@ module QuickbooksWebConnector
|
|
34
37
|
config.company_file_path = ''
|
35
38
|
|
36
39
|
config.parent_controller = 'ApplicationController'
|
40
|
+
|
41
|
+
config.app_name = 'My QBWC App'
|
42
|
+
config.app_description = 'My QBWC App Description'
|
37
43
|
end
|
38
44
|
|
39
45
|
end
|
data/spec/config/config_spec.rb
CHANGED
@@ -96,4 +96,36 @@ describe QuickbooksWebConnector::Configuration do
|
|
96
96
|
|
97
97
|
end
|
98
98
|
|
99
|
+
describe 'app_name' do
|
100
|
+
|
101
|
+
context 'by default' do
|
102
|
+
its(:app_name) { should eq 'My QBWC App' }
|
103
|
+
end
|
104
|
+
|
105
|
+
context 'configured via a config block' do
|
106
|
+
before { QuickbooksWebConnector.configure { |c| c.app_name = 'Sample App' } }
|
107
|
+
|
108
|
+
its(:app_name) { should eq 'Sample App' }
|
109
|
+
|
110
|
+
after { QuickbooksWebConnector.configure { |c| c.app_name = 'My QBWC App' } }
|
111
|
+
end
|
112
|
+
|
113
|
+
end
|
114
|
+
|
115
|
+
describe 'app_description' do
|
116
|
+
|
117
|
+
context 'by default' do
|
118
|
+
its(:app_description) { should eq 'My QBWC App Description' }
|
119
|
+
end
|
120
|
+
|
121
|
+
context 'configured via a config block' do
|
122
|
+
before { QuickbooksWebConnector.configure { |c| c.app_description = 'Sample Description' } }
|
123
|
+
|
124
|
+
its(:app_description) { should eq 'Sample Description' }
|
125
|
+
|
126
|
+
after { QuickbooksWebConnector.configure { |c| c.app_description = 'My QBWC App Description' } }
|
127
|
+
end
|
128
|
+
|
129
|
+
end
|
130
|
+
|
99
131
|
end
|
data/spec/dummy/log/test.log
CHANGED
@@ -777,3 +777,387 @@ Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
|
777
777
|
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
778
778
|
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
779
779
|
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
780
|
+
Connecting to database specified by database.yml
|
781
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
782
|
+
Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.2ms)
|
783
|
+
Rendered text template (0.0ms)
|
784
|
+
Sent data qbwc.qwc (2.2ms)
|
785
|
+
Completed 200 OK in 16ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
786
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
787
|
+
Sent data qbwc.qwc (0.5ms)
|
788
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
789
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
790
|
+
Sent data qbwc.qwc (0.4ms)
|
791
|
+
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
792
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
793
|
+
Sent data qbwc.qwc (0.5ms)
|
794
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
795
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
796
|
+
Sent data qbwc.qwc (0.4ms)
|
797
|
+
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
798
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
799
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
800
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
801
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
802
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
803
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
804
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
805
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
806
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
807
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
808
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
809
|
+
Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
810
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
811
|
+
Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
812
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
813
|
+
Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
814
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
815
|
+
Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
816
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
817
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
818
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
819
|
+
Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
820
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
821
|
+
Completed 200 OK in 8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
822
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
823
|
+
Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
824
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
825
|
+
Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
826
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
827
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
828
|
+
Connecting to database specified by database.yml
|
829
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
830
|
+
Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.2ms)
|
831
|
+
Rendered text template (0.0ms)
|
832
|
+
Sent data qbwc.qwc (1.8ms)
|
833
|
+
Completed 200 OK in 12ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
834
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
835
|
+
Sent data qbwc.qwc (0.5ms)
|
836
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
837
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
838
|
+
Sent data qbwc.qwc (0.4ms)
|
839
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
840
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
841
|
+
Sent data qbwc.qwc (0.4ms)
|
842
|
+
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
843
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
844
|
+
Sent data qbwc.qwc (0.5ms)
|
845
|
+
Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
846
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
847
|
+
Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
848
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
849
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
850
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
851
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
852
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
853
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
854
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
855
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
856
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
857
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
858
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
859
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
860
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
861
|
+
Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
862
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
863
|
+
Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
864
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
865
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
866
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
867
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
868
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
869
|
+
Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
870
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
871
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
872
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
873
|
+
Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
874
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
875
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
876
|
+
Connecting to database specified by database.yml
|
877
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
878
|
+
Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.3ms)
|
879
|
+
Rendered text template (0.0ms)
|
880
|
+
Sent data qbwc.qwc (2.8ms)
|
881
|
+
Completed 200 OK in 16ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
882
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
883
|
+
Sent data qbwc.qwc (0.6ms)
|
884
|
+
Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
885
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
886
|
+
Sent data qbwc.qwc (0.4ms)
|
887
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
888
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
889
|
+
Sent data qbwc.qwc (0.8ms)
|
890
|
+
Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
891
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
892
|
+
Sent data qbwc.qwc (0.6ms)
|
893
|
+
Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
894
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
895
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
896
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
897
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
898
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
899
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
900
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
901
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
902
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
903
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
904
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
905
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
906
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
907
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
908
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
909
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
910
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
911
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
912
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
913
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
914
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
915
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
916
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
917
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
918
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
919
|
+
Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
920
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
921
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
922
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
923
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
924
|
+
Connecting to database specified by database.yml
|
925
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
926
|
+
Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.2ms)
|
927
|
+
Rendered text template (0.0ms)
|
928
|
+
Sent data qbwc.qwc (2.4ms)
|
929
|
+
Completed 200 OK in 15ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
930
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
931
|
+
Sent data qbwc.qwc (0.4ms)
|
932
|
+
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
933
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
934
|
+
Sent data qbwc.qwc (0.6ms)
|
935
|
+
Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
936
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
937
|
+
Sent data qbwc.qwc (0.7ms)
|
938
|
+
Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
939
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
940
|
+
Sent data qbwc.qwc (0.4ms)
|
941
|
+
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
942
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
943
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
944
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
945
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
946
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
947
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
948
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
949
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
950
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
951
|
+
Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
952
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
953
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
954
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
955
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
956
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
957
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
958
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
959
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
960
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
961
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
962
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
963
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
964
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
965
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
966
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
967
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
968
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
969
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
970
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
971
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
972
|
+
Connecting to database specified by database.yml
|
973
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
974
|
+
Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.5ms)
|
975
|
+
Rendered text template (0.0ms)
|
976
|
+
Sent data qbwc.qwc (3.1ms)
|
977
|
+
Completed 200 OK in 20ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
978
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
979
|
+
Sent data qbwc.qwc (0.5ms)
|
980
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
981
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
982
|
+
Sent data qbwc.qwc (0.5ms)
|
983
|
+
Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
984
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
985
|
+
Sent data qbwc.qwc (0.8ms)
|
986
|
+
Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
987
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
988
|
+
Sent data qbwc.qwc (0.6ms)
|
989
|
+
Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
990
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
991
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
992
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
993
|
+
Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
994
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
995
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
996
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
997
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
998
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
999
|
+
Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1000
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1001
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1002
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1003
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1004
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1005
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1006
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1007
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1008
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1009
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1010
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1011
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1012
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1013
|
+
Completed 200 OK in 7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1014
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1015
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1016
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1017
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1018
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1019
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1020
|
+
Connecting to database specified by database.yml
|
1021
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
1022
|
+
Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.3ms)
|
1023
|
+
Rendered text template (0.0ms)
|
1024
|
+
Sent data qbwc.qwc (3.6ms)
|
1025
|
+
Completed 200 OK in 20ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
1026
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
1027
|
+
Sent data qbwc.qwc (0.4ms)
|
1028
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1029
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
1030
|
+
Sent data qbwc.qwc (0.3ms)
|
1031
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1032
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
1033
|
+
Sent data qbwc.qwc (0.6ms)
|
1034
|
+
Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1035
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
1036
|
+
Sent data qbwc.qwc (0.6ms)
|
1037
|
+
Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1038
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1039
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
1040
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1041
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1042
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1043
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1044
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1045
|
+
Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1046
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1047
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1048
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1049
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1050
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1051
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1052
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1053
|
+
Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1054
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1055
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1056
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1057
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1058
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1059
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1060
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1061
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1062
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1063
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1064
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1065
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1066
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1067
|
+
Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1068
|
+
Connecting to database specified by database.yml
|
1069
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
1070
|
+
Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.5ms)
|
1071
|
+
Rendered text template (0.0ms)
|
1072
|
+
Sent data qbwc.qwc (2.5ms)
|
1073
|
+
Completed 200 OK in 16ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
1074
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
1075
|
+
Sent data qbwc.qwc (1.0ms)
|
1076
|
+
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
1077
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
1078
|
+
Sent data qbwc.qwc (0.4ms)
|
1079
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1080
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
1081
|
+
Sent data qbwc.qwc (0.4ms)
|
1082
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1083
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
1084
|
+
Sent data qbwc.qwc (0.3ms)
|
1085
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1086
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1087
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
1088
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1089
|
+
Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1090
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1091
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1092
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1093
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1094
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1095
|
+
Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1096
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1097
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1098
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1099
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1100
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1101
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1102
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1103
|
+
Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1104
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1105
|
+
Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1106
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1107
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1108
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1109
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1110
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1111
|
+
Completed 200 OK in 8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1112
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1113
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1114
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1115
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1116
|
+
Connecting to database specified by database.yml
|
1117
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
1118
|
+
Rendered /Users/chrisgunther/Code/quickbooks_web_connector/app/views/quickbooks_web_connector/qwc/qwc.xml.builder (0.3ms)
|
1119
|
+
Rendered text template (0.0ms)
|
1120
|
+
Sent data qbwc.qwc (2.7ms)
|
1121
|
+
Completed 200 OK in 17ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
1122
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
1123
|
+
Sent data qbwc.qwc (0.5ms)
|
1124
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1125
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
1126
|
+
Sent data qbwc.qwc (0.6ms)
|
1127
|
+
Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1128
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
1129
|
+
Sent data qbwc.qwc (0.5ms)
|
1130
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1131
|
+
Processing by QuickbooksWebConnector::QwcController#download as XML
|
1132
|
+
Sent data qbwc.qwc (0.4ms)
|
1133
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1134
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1135
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
1136
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1137
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1138
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1139
|
+
Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1140
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1141
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1142
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1143
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1144
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1145
|
+
Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1146
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1147
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1148
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1149
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1150
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1151
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1152
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1153
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1154
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1155
|
+
Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1156
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1157
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1158
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1159
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1160
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1161
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1162
|
+
Processing by QuickbooksWebConnector::SoapController#endpoint as HTML
|
1163
|
+
Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|