Guest User

Untitled

a guest
Dec 10th, 2017
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.21 KB | None | 0 0
  1. def initialize(filename, of_type= nil)
  2. of_type ||= filename.split('.').pop
  3.  
  4. raise of_type.to_yaml
  5.  
  6.  
  7. if of_type == 'xml'
  8. f = IO.read(filename)
  9. @xml = Nokogiri::XML(f) {|config| config.noblanks}
  10. else
  11. proxy = SOAP::WSDLDriverFactory.new(DT_SOAP_URL).create_rpc_driver # creates translational driver
  12.  
  13. sv = {
  14. 'DocumentAsByteArray' => Base64.encode64(IO.read("/home/unf-ubu/RESUME_CarlCrott.pdf")),
  15. 'TimeOutInMs' => 30000,
  16. 'HardTimeOutMultiplier' => 2,
  17. 'ParserConfigurationParams' => "110000000000000001011010100100",
  18. 'TaxonomyFilename' => '',
  19. 'SkillsFilename' => '',
  20. 'AlsoUseSovrenTaxonomy' => TRUE,
  21. 'EmbedConvertedTextInHrXml' => TRUE,
  22. 'SecurityCodeForSearchHints' => '',
  23. 'RevisionDate' => '',
  24. }
  25.  
  26. @rval = proxy.Parse(sv)
  27.  
  28. raise @rval.to_yaml
  29. # puts response.public_methods
  30.  
  31. if RAILS_ENV == 'development'
  32. xmlfile = filename.join("xml", ".")
  33. File.open(xmlfile, "w"){|file| file.puts @rval}
  34. end
  35. @xml = Nokogiri::XML(@rval) {|config| config.noblanks}
  36. end
  37. @xml
  38. end
  39.  
  40.  
  41.  
  42.  
  43. ## the error
  44.  
  45. NoMethodError in SeekersController#upload_alex
  46.  
  47. undefined method `empty?' for #<SOAP::Mapping::Object:0x7fe113c92bc8>
  48.  
  49. RAILS_ROOT: /home/unf-ubu/rails_projects/plro
  50. Application Trace | Framework Trace | Full Trace
  51.  
  52. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/nokogiri-1.4.4/lib/nokogiri/xml/document.rb:31:in `parse'
  53. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/nokogiri-1.4.4/lib/nokogiri/xml.rb:33:in `XML'
  54. /home/unf-ubu/rails_projects/plro/app/models/alex.rb:61:in `initialize'
  55. /home/unf-ubu/rails_projects/plro/app/controllers/seekers_controller.rb:51:in `new'
  56. /home/unf-ubu/rails_projects/plro/app/controllers/seekers_controller.rb:51:in `upload_alex'
  57.  
  58. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/nokogiri-1.4.4/lib/nokogiri/xml/document.rb:31:in `parse'
  59. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/nokogiri-1.4.4/lib/nokogiri/xml.rb:33:in `XML'
  60. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/base.rb:1331:in `send'
  61. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/base.rb:1331:in `perform_action_without_filters'
  62. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/filters.rb:617:in `call_filters'
  63. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark'
  64. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
  65. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/activesupport-2.3.8/lib/active_support/core_ext/benchmark.rb:17:in `ms'
  66. /home/unf-ubu/.rvm/rubies/ruby-1.8.7-p302/lib/ruby/1.8/benchmark.rb:308:in `realtime'
  67. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/activesupport-2.3.8/lib/active_support/core_ext/benchmark.rb:17:in `ms'
  68. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
  69. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/rescue.rb:160:in `perform_action_without_flash'
  70. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/flash.rb:151:in `perform_action_without_newrelic_trace'
  71. /home/unf-ubu/rails_projects/plro/vendor/plugins/rpm/lib/new_relic/agent/instrumentation/controller_instrumentation.rb:254:in `perform_action'
  72. /home/unf-ubu/rails_projects/plro/vendor/plugins/rpm/lib/new_relic/agent/method_tracer.rb:141:in `trace_execution_scoped'
  73. /home/unf-ubu/rails_projects/plro/vendor/plugins/rpm/lib/new_relic/agent/instrumentation/controller_instrumentation.rb:247:in `perform_action'
  74. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/base.rb:532:in `send'
  75. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/base.rb:532:in `process_without_filters'
  76. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/filters.rb:606:in `process_without_compass'
  77. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/compass-0.10.6/lib/compass/app_integration/rails/actionpack2/action_controller.rb:7:in `process'
  78. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/base.rb:391:in `process'
  79. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/base.rb:386:in `call'
  80. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/routing/route_set.rb:438:in `call'
  81. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/dispatcher.rb:87:in `dispatch'
  82. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/dispatcher.rb:121:in `_call'
  83. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/dispatcher.rb:130:in `build_middleware_stack'
  84. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/activerecord-2.3.8/lib/active_record/query_cache.rb:29:in `call'
  85. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/activerecord-2.3.8/lib/active_record/query_cache.rb:29:in `call'
  86. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/activerecord-2.3.8/lib/active_record/connection_adapters/abstract/query_cache.rb:34:in `cache'
  87. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/activerecord-2.3.8/lib/active_record/query_cache.rb:9:in `cache'
  88. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/activerecord-2.3.8/lib/active_record/query_cache.rb:28:in `call'
  89. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/activerecord-2.3.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:361:in `call'
  90. /home/unf-ubu/rails_projects/plro/vendor/plugins/rpm/lib/new_relic/rack/developer_mode.rb:20:in `call'
  91. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/haml-3.0.24/lib/sass/plugin/rack.rb:41:in `call'
  92. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/string_coercion.rb:25:in `call'
  93. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/rack-1.1.0/lib/rack/head.rb:9:in `call'
  94. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/rack-1.1.0/lib/rack/methodoverride.rb:24:in `call'
  95. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/params_parser.rb:15:in `call'
  96. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/session/cookie_store.rb:99:in `call'
  97. /home/unf-ubu/rails_projects/plro/vendor/gems/hoptoad_notifier-2.3.6/lib/hoptoad_notifier/rack.rb:27:in `call'
  98. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/failsafe.rb:26:in `call'
  99. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/rack-1.1.0/lib/rack/lock.rb:11:in `call'
  100. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/rack-1.1.0/lib/rack/lock.rb:11:in `synchronize'
  101. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/rack-1.1.0/lib/rack/lock.rb:11:in `call'
  102. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/dispatcher.rb:114:in `call'
  103. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/reloader.rb:34:in `run'
  104. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/dispatcher.rb:108:in `call'
  105. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/rails-2.3.8/lib/rails/rack/static.rb:31:in `call'
  106. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/rack-1.1.0/lib/rack/urlmap.rb:47:in `call'
  107. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/rack-1.1.0/lib/rack/urlmap.rb:41:in `each'
  108. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/rack-1.1.0/lib/rack/urlmap.rb:41:in `call'
  109. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/rails-2.3.8/lib/rails/rack/log_tailer.rb:17:in `call'
  110. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/rack-1.1.0/lib/rack/content_length.rb:13:in `call'
  111. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/rack-1.1.0/lib/rack/chunked.rb:15:in `call'
  112. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/rack-1.1.0/lib/rack/handler/mongrel.rb:67:in `process'
  113. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
  114. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
  115. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
  116. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
  117. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
  118. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
  119. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
  120. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
  121. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
  122. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
  123. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/rack-1.1.0/lib/rack/handler/mongrel.rb:38:in `run'
  124. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/rails-2.3.8/lib/commands/server.rb:111
  125. /home/unf-ubu/.rvm/rubies/ruby-1.8.7-p302/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
  126. /home/unf-ubu/.rvm/rubies/ruby-1.8.7-p302/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require'
  127. script/server:3
  128.  
  129. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/nokogiri-1.4.4/lib/nokogiri/xml/document.rb:31:in `parse'
  130. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/nokogiri-1.4.4/lib/nokogiri/xml.rb:33:in `XML'
  131. /home/unf-ubu/rails_projects/plro/app/models/alex.rb:61:in `initialize'
  132. /home/unf-ubu/rails_projects/plro/app/controllers/seekers_controller.rb:51:in `new'
  133. /home/unf-ubu/rails_projects/plro/app/controllers/seekers_controller.rb:51:in `upload_alex'
  134. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/base.rb:1331:in `send'
  135. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/base.rb:1331:in `perform_action_without_filters'
  136. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/filters.rb:617:in `call_filters'
  137. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark'
  138. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
  139. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/activesupport-2.3.8/lib/active_support/core_ext/benchmark.rb:17:in `ms'
  140. /home/unf-ubu/.rvm/rubies/ruby-1.8.7-p302/lib/ruby/1.8/benchmark.rb:308:in `realtime'
  141. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/activesupport-2.3.8/lib/active_support/core_ext/benchmark.rb:17:in `ms'
  142. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
  143. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/rescue.rb:160:in `perform_action_without_flash'
  144. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/flash.rb:151:in `perform_action_without_newrelic_trace'
  145. /home/unf-ubu/rails_projects/plro/vendor/plugins/rpm/lib/new_relic/agent/instrumentation/controller_instrumentation.rb:254:in `perform_action'
  146. /home/unf-ubu/rails_projects/plro/vendor/plugins/rpm/lib/new_relic/agent/method_tracer.rb:141:in `trace_execution_scoped'
  147. /home/unf-ubu/rails_projects/plro/vendor/plugins/rpm/lib/new_relic/agent/instrumentation/controller_instrumentation.rb:247:in `perform_action'
  148. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/base.rb:532:in `send'
  149. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/base.rb:532:in `process_without_filters'
  150. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/filters.rb:606:in `process_without_compass'
  151. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/compass-0.10.6/lib/compass/app_integration/rails/actionpack2/action_controller.rb:7:in `process'
  152. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/base.rb:391:in `process'
  153. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/base.rb:386:in `call'
  154. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/routing/route_set.rb:438:in `call'
  155. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/dispatcher.rb:87:in `dispatch'
  156. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/dispatcher.rb:121:in `_call'
  157. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/dispatcher.rb:130:in `build_middleware_stack'
  158. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/activerecord-2.3.8/lib/active_record/query_cache.rb:29:in `call'
  159. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/activerecord-2.3.8/lib/active_record/query_cache.rb:29:in `call'
  160. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/activerecord-2.3.8/lib/active_record/connection_adapters/abstract/query_cache.rb:34:in `cache'
  161. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/activerecord-2.3.8/lib/active_record/query_cache.rb:9:in `cache'
  162. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/activerecord-2.3.8/lib/active_record/query_cache.rb:28:in `call'
  163. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/activerecord-2.3.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:361:in `call'
  164. /home/unf-ubu/rails_projects/plro/vendor/plugins/rpm/lib/new_relic/rack/developer_mode.rb:20:in `call'
  165. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/haml-3.0.24/lib/sass/plugin/rack.rb:41:in `call'
  166. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/string_coercion.rb:25:in `call'
  167. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/rack-1.1.0/lib/rack/head.rb:9:in `call'
  168. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/rack-1.1.0/lib/rack/methodoverride.rb:24:in `call'
  169. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/params_parser.rb:15:in `call'
  170. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/session/cookie_store.rb:99:in `call'
  171. /home/unf-ubu/rails_projects/plro/vendor/gems/hoptoad_notifier-2.3.6/lib/hoptoad_notifier/rack.rb:27:in `call'
  172. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/failsafe.rb:26:in `call'
  173. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/rack-1.1.0/lib/rack/lock.rb:11:in `call'
  174. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/rack-1.1.0/lib/rack/lock.rb:11:in `synchronize'
  175. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/rack-1.1.0/lib/rack/lock.rb:11:in `call'
  176. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/dispatcher.rb:114:in `call'
  177. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/reloader.rb:34:in `run'
  178. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/actionpack-2.3.8/lib/action_controller/dispatcher.rb:108:in `call'
  179. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/rails-2.3.8/lib/rails/rack/static.rb:31:in `call'
  180. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/rack-1.1.0/lib/rack/urlmap.rb:47:in `call'
  181. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/rack-1.1.0/lib/rack/urlmap.rb:41:in `each'
  182. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/rack-1.1.0/lib/rack/urlmap.rb:41:in `call'
  183. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/rails-2.3.8/lib/rails/rack/log_tailer.rb:17:in `call'
  184. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/rack-1.1.0/lib/rack/content_length.rb:13:in `call'
  185. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/rack-1.1.0/lib/rack/chunked.rb:15:in `call'
  186. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/rack-1.1.0/lib/rack/handler/mongrel.rb:67:in `process'
  187. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
  188. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
  189. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
  190. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
  191. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
  192. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
  193. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
  194. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
  195. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
  196. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
  197. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/rack-1.1.0/lib/rack/handler/mongrel.rb:38:in `run'
  198. /home/unf-ubu/.rvm/gems/ruby-1.8.7-p302@plroSet/gems/rails-2.3.8/lib/commands/server.rb:111
  199. /home/unf-ubu/.rvm/rubies/ruby-1.8.7-p302/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
  200. /home/unf-ubu/.rvm/rubies/ruby-1.8.7-p302/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require'
  201. script/server:3
  202.  
  203. Request
  204.  
  205. Parameters:
  206.  
  207. {"commit"=>"UPLOAD RESUME NOW",
  208. "authenticity_token"=>"8mCXHYUxIfzVg7rkmuRSqy6Mu2xH87RIK2UoKAJe0bY=",
  209. "file"=>#<File:/tmp/RackMultipart20110511-4017-51jfeo-0>}
  210.  
  211. Show session dump
  212.  
  213. ---
  214.  
  215. Response
  216.  
  217. Headers:
  218.  
  219. {"P3P"=>"CP=\"CAO PSA OUR\"",
  220. "Content-Type"=>"",
  221. "Cache-Control"=>"no-cache"}
Add Comment
Please, Sign In to add comment