ruby-openid 2.2.3 → 2.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.
Files changed (99) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +11 -0
  3. data/README.md +1 -2
  4. data/examples/rails_openid/Gemfile +41 -0
  5. data/examples/rails_openid/README.rdoc +261 -0
  6. data/examples/rails_openid/Rakefile +4 -7
  7. data/examples/rails_openid/app/assets/images/rails.png +0 -0
  8. data/examples/rails_openid/app/assets/javascripts/application.js +15 -0
  9. data/examples/rails_openid/app/assets/stylesheets/application.css +13 -0
  10. data/examples/rails_openid/app/controllers/application_controller.rb +3 -0
  11. data/examples/rails_openid/app/controllers/consumer_controller.rb +1 -0
  12. data/examples/rails_openid/app/helpers/application_helper.rb +0 -1
  13. data/examples/rails_openid/app/views/consumer/{index.rhtml → index.html.erb} +0 -0
  14. data/examples/rails_openid/app/views/layouts/{server.rhtml → server.html.erb} +4 -2
  15. data/examples/rails_openid/app/views/login/{index.rhtml → index.html.erb} +0 -0
  16. data/examples/rails_openid/app/views/server/{decide.rhtml → decide.html.erb} +1 -0
  17. data/examples/rails_openid/config.ru +4 -0
  18. data/examples/rails_openid/config/application.rb +62 -0
  19. data/examples/rails_openid/config/boot.rb +4 -17
  20. data/examples/rails_openid/config/database.yml +15 -64
  21. data/examples/rails_openid/config/environment.rb +4 -53
  22. data/examples/rails_openid/config/environments/development.rb +32 -14
  23. data/examples/rails_openid/config/environments/production.rb +61 -13
  24. data/examples/rails_openid/config/environments/test.rb +33 -15
  25. data/examples/rails_openid/config/initializers/backtrace_silencers.rb +7 -0
  26. data/examples/rails_openid/config/initializers/inflections.rb +15 -0
  27. data/examples/rails_openid/config/initializers/mime_types.rb +5 -0
  28. data/examples/rails_openid/config/initializers/rails_root.rb +1 -0
  29. data/examples/rails_openid/config/initializers/secret_token.rb +7 -0
  30. data/examples/rails_openid/config/initializers/session_store.rb +8 -0
  31. data/examples/rails_openid/config/initializers/wrap_parameters.rb +14 -0
  32. data/examples/rails_openid/config/locales/en.yml +5 -0
  33. data/examples/rails_openid/config/routes.rb +65 -18
  34. data/examples/rails_openid/db/development.sqlite3 +0 -0
  35. data/examples/rails_openid/db/seeds.rb +7 -0
  36. data/examples/rails_openid/doc/README_FOR_APP +1 -1
  37. data/examples/rails_openid/log/development.log +2052 -0
  38. data/examples/rails_openid/public/404.html +23 -5
  39. data/examples/rails_openid/public/422.html +26 -0
  40. data/examples/rails_openid/public/500.html +22 -5
  41. data/examples/rails_openid/public/javascripts/application.js +2 -0
  42. data/examples/rails_openid/public/javascripts/controls.js +586 -373
  43. data/examples/rails_openid/public/javascripts/dragdrop.js +575 -186
  44. data/examples/rails_openid/public/javascripts/effects.js +763 -489
  45. data/examples/rails_openid/public/javascripts/prototype.js +3420 -885
  46. data/examples/rails_openid/public/robots.txt +5 -1
  47. data/examples/rails_openid/script/rails +6 -0
  48. data/examples/rails_openid/test/performance/browsing_test.rb +12 -0
  49. data/examples/rails_openid/test/test_helper.rb +7 -22
  50. data/lib/openid/association.rb +1 -1
  51. data/lib/openid/consumer/checkid_request.rb +1 -1
  52. data/lib/openid/consumer/discovery.rb +1 -1
  53. data/lib/openid/consumer/html_parse.rb +3 -1
  54. data/lib/openid/consumer/idres.rb +1 -1
  55. data/lib/openid/extensions/ax.rb +2 -3
  56. data/lib/openid/extensions/ui.rb +3 -3
  57. data/lib/openid/extras.rb +2 -2
  58. data/lib/openid/server.rb +2 -2
  59. data/lib/openid/store/memory.rb +1 -2
  60. data/lib/openid/store/nonce.rb +1 -1
  61. data/lib/openid/trustroot.rb +1 -1
  62. data/lib/openid/util.rb +2 -2
  63. data/lib/openid/version.rb +1 -1
  64. data/lib/openid/yadis/xrds.rb +1 -1
  65. data/test/test_accept.rb +20 -21
  66. data/test/test_association.rb +4 -8
  67. data/test/test_associationmanager.rb +1 -1
  68. data/test/test_ax.rb +0 -1
  69. data/test/test_checkid_request.rb +7 -8
  70. data/test/test_dh.rb +1 -1
  71. data/test/test_discover.rb +7 -8
  72. data/test/test_extension.rb +1 -1
  73. data/test/test_fetchers.rb +7 -11
  74. data/test/test_filters.rb +0 -4
  75. data/test/test_idres.rb +5 -5
  76. data/test/test_kvpost.rb +0 -1
  77. data/test/test_message.rb +10 -11
  78. data/test/test_parsehtml.rb +0 -1
  79. data/test/test_server.rb +11 -30
  80. data/test/test_stores.rb +2 -2
  81. data/test/test_trustroot.rb +1 -1
  82. data/test/test_urinorm.rb +1 -1
  83. data/test/test_xrds.rb +1 -1
  84. data/test/test_yadis_discovery.rb +0 -2
  85. metadata +34 -33
  86. data/examples/rails_openid/app/controllers/application.rb +0 -4
  87. data/examples/rails_openid/script/about +0 -3
  88. data/examples/rails_openid/script/breakpointer +0 -3
  89. data/examples/rails_openid/script/console +0 -3
  90. data/examples/rails_openid/script/destroy +0 -3
  91. data/examples/rails_openid/script/generate +0 -3
  92. data/examples/rails_openid/script/performance/benchmarker +0 -3
  93. data/examples/rails_openid/script/performance/profiler +0 -3
  94. data/examples/rails_openid/script/plugin +0 -3
  95. data/examples/rails_openid/script/process/reaper +0 -3
  96. data/examples/rails_openid/script/process/spawner +0 -3
  97. data/examples/rails_openid/script/process/spinner +0 -3
  98. data/examples/rails_openid/script/runner +0 -3
  99. data/examples/rails_openid/script/server +0 -3
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1 @@
1
+ ::RAILS_ROOT = Rails.root
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ RailsOpenid::Application.config.secret_token = '2314c4d00e3702d446505b8df2732c433379a0d61ac94c32a25f71612ab6df457bc9979eb32cae28ad6feacdd5a9ae7ac330934c5fb53877e02ce8e23ac0f494'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ RailsOpenid::Application.config.session_store :cookie_store, :key => '_rails_openid_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # RailsOpenid::Application.config.session_store :active_record_store
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters :format => [:json]
9
+ end
10
+
11
+ # Disable root element in JSON by default.
12
+ ActiveSupport.on_load(:active_record) do
13
+ self.include_root_in_json = false
14
+ end
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -1,24 +1,71 @@
1
- ActionController::Routing::Routes.draw do |map|
2
- # Add your own custom routes here.
3
- # The priority is based upon order of creation: first created -> highest priority.
4
-
5
- # Here's a sample route:
6
- # map.connect 'products/:id', :controller => 'catalog', :action => 'view'
7
- # Keep in mind you can assign values other than :controller and :action
8
-
9
- # You can have the root of your site routed by hooking up ''
10
- # -- just remember to delete public/index.html.
11
- # map.connect '', :controller => "welcome"
12
-
13
- map.connect '', :controller => 'login'
14
- map.connect 'server/xrds', :controller => 'server', :action => 'idp_xrds'
15
- map.connect 'user/:username', :controller => 'server', :action => 'user_page'
16
- map.connect 'user/:username/xrds', :controller => 'server', :action => 'user_xrds'
1
+ RailsOpenid::Application.routes.draw do
2
+ root :controller => 'login', :action => :index
3
+ match 'server/xrds', :controller => 'server', :action => 'idp_xrds'
4
+ match 'user/:username', :controller => 'server', :action => 'user_page'
5
+ match 'user/:username/xrds', :controller => 'server', :action => 'user_xrds'
17
6
 
18
7
  # Allow downloading Web Service WSDL as a file with an extension
19
8
  # instead of a file named 'wsdl'
20
- map.connect ':controller/service.wsdl', :action => 'wsdl'
9
+ match ':controller/service.wsdl', :action => 'wsdl'
21
10
 
22
11
  # Install the default route as the lowest priority.
23
- map.connect ':controller/:action/:id'
12
+ match ':controller/:action/:id'
13
+
14
+
15
+ # The priority is based upon order of creation:
16
+ # first created -> highest priority.
17
+
18
+ # Sample of regular route:
19
+ # match 'products/:id' => 'catalog#view'
20
+ # Keep in mind you can assign values other than :controller and :action
21
+
22
+ # Sample of named route:
23
+ # match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
24
+ # This route can be invoked with purchase_url(:id => product.id)
25
+
26
+ # Sample resource route (maps HTTP verbs to controller actions automatically):
27
+ # resources :products
28
+
29
+ # Sample resource route with options:
30
+ # resources :products do
31
+ # member do
32
+ # get 'short'
33
+ # post 'toggle'
34
+ # end
35
+ #
36
+ # collection do
37
+ # get 'sold'
38
+ # end
39
+ # end
40
+
41
+ # Sample resource route with sub-resources:
42
+ # resources :products do
43
+ # resources :comments, :sales
44
+ # resource :seller
45
+ # end
46
+
47
+ # Sample resource route with more complex sub-resources
48
+ # resources :products do
49
+ # resources :comments
50
+ # resources :sales do
51
+ # get 'recent', :on => :collection
52
+ # end
53
+ # end
54
+
55
+ # Sample resource route within a namespace:
56
+ # namespace :admin do
57
+ # # Directs /admin/products/* to Admin::ProductsController
58
+ # # (app/controllers/admin/products_controller.rb)
59
+ # resources :products
60
+ # end
61
+
62
+ # You can have the root of your site routed with "root"
63
+ # just remember to delete public/index.html.
64
+ # root :to => 'welcome#index'
65
+
66
+ # See how all your routes lay out with "rake routes"
67
+
68
+ # This is a legacy wild controller route that's not recommended for RESTful applications.
69
+ # Note: This route will make all actions in every controller accessible via GET requests.
70
+ match ':controller(/:action(/:id))(.:format)'
24
71
  end
File without changes
@@ -0,0 +1,7 @@
1
+ # This file should contain all the record creation needed to seed the database with its default values.
2
+ # The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
3
+ #
4
+ # Examples:
5
+ #
6
+ # cities = City.create([{ :name => 'Chicago' }, { :name => 'Copenhagen' }])
7
+ # Mayor.create(:name => 'Emanuel', :city => cities.first)
@@ -1,2 +1,2 @@
1
1
  Use this README file to introduce your application and point to useful places in the API for learning more.
2
- Run "rake appdoc" to generate API documentation for your models and controllers.
2
+ Run "rake doc:app" to generate API documentation for your models, controllers, helpers, and libraries.
@@ -0,0 +1,2052 @@
1
+ Connecting to database specified by database.yml
2
+
3
+
4
+ Started GET "/consumer" for 127.0.0.1 at Sun Mar 31 05:22:11 -0700 2013
5
+
6
+ ActionController::RoutingError (No route matches [GET] "/consumer"):
7
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
8
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
9
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
10
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
11
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
12
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
13
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
14
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
15
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
16
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
17
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
18
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
19
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
20
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
21
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
22
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
23
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
24
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
25
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
26
+ /opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
27
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start'
28
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
29
+ /opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
30
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `each'
31
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
32
+ /opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
33
+ /opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
34
+ rack (1.4.5) lib/rack/handler/webrick.rb:13:in `run'
35
+ rack (1.4.5) lib/rack/server.rb:268:in `start'
36
+ railties (3.2.13) lib/rails/commands/server.rb:70:in `start'
37
+ railties (3.2.13) lib/rails/commands.rb:55
38
+ railties (3.2.13) lib/rails/commands.rb:50:in `tap'
39
+ railties (3.2.13) lib/rails/commands.rb:50
40
+ script/rails:6:in `require'
41
+ script/rails:6
42
+
43
+
44
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (3.3ms)
45
+
46
+
47
+ Started GET "/consumer" for 127.0.0.1 at Sun Mar 31 05:23:00 -0700 2013
48
+
49
+ LoadError (no such file to load -- openid):
50
+ app/controllers/consumer_controller.rb:3
51
+
52
+
53
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
54
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (13.8ms)
55
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (31.1ms)
56
+ Connecting to database specified by database.yml
57
+
58
+
59
+ Started GET "/consumer" for 127.0.0.1 at Sun Mar 31 05:23:40 -0700 2013
60
+ Processing by ConsumerController#index as HTML
61
+ Completed 500 Internal Server Error in 24ms
62
+
63
+ ActionView::MissingTemplate (Missing template consumer/index, application/index with {:handlers=>[:coffee, :erb, :builder], :locale=>[:en], :formats=>[:html]}. Searched in:
64
+ * "/Users/marcel/.gem/ruby/1.8/gems/ruby-openid-2.2.3/examples/rails_openid/app/views"
65
+ ):
66
+ actionpack (3.2.13) lib/action_view/path_set.rb:58:in `find'
67
+ actionpack (3.2.13) lib/action_view/lookup_context.rb:109:in `find_template'
68
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:3:in `__send__'
69
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template'
70
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:34:in `determine_template'
71
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:10:in `render'
72
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
73
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
74
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
75
+ actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
76
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
77
+ actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
78
+ actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
79
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
80
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
81
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `render'
82
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
83
+ /opt/local/lib/ruby/1.8/benchmark.rb:308:in `realtime'
84
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
85
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `render'
86
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
87
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
88
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
89
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
90
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
91
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
92
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
93
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `process_action'
94
+ activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__1789127949__process_action__199225275__callbacks'
95
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `send'
96
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
97
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
98
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `send'
99
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
100
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
101
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
102
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
103
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
104
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
105
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
106
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
107
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
108
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
109
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
110
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
111
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
112
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
113
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `action'
114
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
115
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
116
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
117
+ journey (1.0.4) lib/journey/router.rb:68:in `call'
118
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
119
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
120
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
121
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
122
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
123
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
124
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
125
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
126
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
127
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
128
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
129
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
130
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
131
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
132
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `call'
133
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__397314981__call__4__callbacks'
134
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `send'
135
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
136
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
137
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `send'
138
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
139
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
140
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
141
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
142
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
143
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
144
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
145
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
146
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
147
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
148
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
149
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
150
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
151
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
152
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
153
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
154
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
155
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
156
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
157
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
158
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
159
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
160
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
161
+ /opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
162
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start'
163
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
164
+ /opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
165
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `each'
166
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
167
+ /opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
168
+ /opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
169
+ rack (1.4.5) lib/rack/handler/webrick.rb:13:in `run'
170
+ rack (1.4.5) lib/rack/server.rb:268:in `start'
171
+ railties (3.2.13) lib/rails/commands/server.rb:70:in `start'
172
+ railties (3.2.13) lib/rails/commands.rb:55
173
+ railties (3.2.13) lib/rails/commands.rb:50:in `tap'
174
+ railties (3.2.13) lib/rails/commands.rb:50
175
+ script/rails:6:in `require'
176
+ script/rails:6
177
+
178
+
179
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (1.9ms)
180
+ Connecting to database specified by database.yml
181
+
182
+
183
+ Started GET "/consumer" for 127.0.0.1 at Sun Mar 31 05:25:07 -0700 2013
184
+ Processing by ConsumerController#index as HTML
185
+ Rendered consumer/index.html.erb within layouts/application (6.1ms)
186
+ Compiled application.css (1ms) (pid 67167)
187
+ Compiled jquery.js (13ms) (pid 67167)
188
+ Compiled jquery_ujs.js (1ms) (pid 67167)
189
+ Compiled application.js (113ms) (pid 67167)
190
+ Completed 200 OK in 426ms (Views: 425.4ms | ActiveRecord: 0.0ms)
191
+
192
+
193
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Mar 31 05:25:09 -0700 2013
194
+ Served asset /application.css - 200 OK (4ms)
195
+
196
+
197
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Mar 31 05:25:09 -0700 2013
198
+ Served asset /jquery.js - 200 OK (15ms)
199
+
200
+
201
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sun Mar 31 05:25:09 -0700 2013
202
+ Served asset /jquery_ujs.js - 200 OK (13ms)
203
+
204
+
205
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Mar 31 05:25:09 -0700 2013
206
+ Served asset /application.js - 200 OK (32ms)
207
+
208
+
209
+ Started GET "/consumer/start?openid_identifier=http%3A%2F%2Flocalhost%3A3009%2Fopen_id%2Fmarcel" for 127.0.0.1 at Sun Mar 31 05:25:22 -0700 2013
210
+ Processing by ConsumerController#start as HTML
211
+ Parameters: {"openid_identifier"=>"http://localhost:3009/open_id/marcel"}
212
+ Completed 500 Internal Server Error in 2ms
213
+
214
+ NameError (uninitialized constant ConsumerController::RAILS_ROOT):
215
+ app/controllers/consumer_controller.rb:116:in `consumer'
216
+ app/controllers/consumer_controller.rb:23:in `start'
217
+
218
+
219
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
220
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.1ms)
221
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (121.5ms)
222
+ Connecting to database specified by database.yml
223
+
224
+
225
+ Started GET "/consumer/start?openid_identifier=http%3A%2F%2Flocalhost%3A3009%2Fopen_id%2Fmarcel" for 127.0.0.1 at Sun Mar 31 05:26:13 -0700 2013
226
+ Processing by ConsumerController#start as HTML
227
+ Parameters: {"openid_identifier"=>"http://localhost:3009/open_id/marcel"}
228
+ Redirected to http://localhost:3009/open_id/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582b66%7D%7BvdrbdQ%3D%3D%7D&openid.claimed_id=http%3A%2F%2Flocalhost%3A3009%2Fopen_id%2Fmarcel&openid.identity=http%3A%2F%2Flocalhost%3A3009%2Fopen_id%2Fmarcel&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete
229
+ Completed 302 Found in 661ms (ActiveRecord: 0.0ms)
230
+
231
+
232
+ Started GET "/consumer/complete?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582b69%7D%7BodxU%2BQ%3D%3D%7D&openid.claimed_id=http%3A%2F%2Flocalhost%3A3009%2Fopen_id%2Fmarcel&openid.identity=http%3A%2F%2Flocalhost%3A3009%2Fopen_id%2Fmarcel&openid.invalidate_handle=%7BHMAC-SHA1%7D%7B51582b66%7D%7BvdrbdQ%3D%3D%7D&openid.mode=id_res&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.op_endpoint=http%3A%2F%2Flocalhost%3A3009%2Fopen_id%2Fserver&openid.response_nonce=2013-03-31T12%3A26%3A17ZVVzuGN&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete&openid.sig=HHdHfhXu%2FmKVDXkCffxuD%2BYuNeU%3D&openid.signed=assoc_handle%2Cclaimed_id%2Cidentity%2Cinvalidate_handle%2Cmode%2Cns%2Cop_endpoint%2Cresponse_nonce%2Creturn_to%2Csigned" for 127.0.0.1 at Sun Mar 31 05:26:17 -0700 2013
233
+ Processing by ConsumerController#complete as HTML
234
+ Parameters: {"openid.sig"=>"HHdHfhXu/mKVDXkCffxuD+YuNeU=", "openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.op_endpoint"=>"http://localhost:3009/open_id/server", "openid.mode"=>"id_res", "openid.response_nonce"=>"2013-03-31T12:26:17ZVVzuGN", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://localhost:3009/open_id/marcel", "openid.signed"=>"assoc_handle,claimed_id,identity,invalidate_handle,mode,ns,op_endpoint,response_nonce,return_to,signed", "openid.invalidate_handle"=>"{HMAC-SHA1}{51582b66}{vdrbdQ==}", "openid.assoc_handle"=>"{HMAC-SHA1}{51582b69}{odxU+Q==}", "openid.claimed_id"=>"http://localhost:3009/open_id/marcel"}
235
+ Redirected to http://localhost:3010/consumer
236
+ Completed 302 Found in 4ms (ActiveRecord: 0.0ms)
237
+
238
+
239
+ Started GET "/consumer" for 127.0.0.1 at Sun Mar 31 05:26:17 -0700 2013
240
+ Processing by ConsumerController#index as HTML
241
+ Rendered consumer/index.html.erb within layouts/application (14.7ms)
242
+ Completed 200 OK in 59ms (Views: 58.8ms | ActiveRecord: 0.0ms)
243
+
244
+
245
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Mar 31 05:26:17 -0700 2013
246
+ Served asset /application.js - 304 Not Modified (8ms)
247
+
248
+
249
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Mar 31 05:26:17 -0700 2013
250
+ Served asset /application.css - 304 Not Modified (132ms)
251
+ Connecting to database specified by database.yml
252
+
253
+
254
+ Started GET "/consumer" for 127.0.0.1 at Sun Mar 31 05:30:38 -0700 2013
255
+
256
+ ActionDispatch::Session::SessionRestoreError (Session contains objects whose class definition isn't available.
257
+ Remember to require the classes for all objects kept in the session.
258
+ (Original exception: uninitialized constant OpenID [NameError])
259
+ ):
260
+ actionpack (3.2.13) lib/action_dispatch/middleware/session/abstract_store.rb:64:in `stale_session_check!'
261
+ actionpack (3.2.13) lib/action_dispatch/middleware/session/cookie_store.rb:48:in `unpacked_cookie_data'
262
+ rack (1.4.5) lib/rack/session/cookie.rb:107:in `extract_session_id'
263
+ actionpack (3.2.13) lib/action_dispatch/middleware/session/abstract_store.rb:53:in `extract_session_id'
264
+ actionpack (3.2.13) lib/action_dispatch/middleware/session/abstract_store.rb:57:in `stale_session_check!'
265
+ actionpack (3.2.13) lib/action_dispatch/middleware/session/abstract_store.rb:53:in `extract_session_id'
266
+ rack (1.4.5) lib/rack/session/abstract/id.rb:43:in `send'
267
+ rack (1.4.5) lib/rack/session/abstract/id.rb:43:in `load_session_id!'
268
+ rack (1.4.5) lib/rack/session/abstract/id.rb:32:in `[]'
269
+ rack (1.4.5) lib/rack/session/abstract/id.rb:267:in `current_session_id'
270
+ rack (1.4.5) lib/rack/session/abstract/id.rb:273:in `session_exists?'
271
+ rack (1.4.5) lib/rack/session/abstract/id.rb:107:in `send'
272
+ rack (1.4.5) lib/rack/session/abstract/id.rb:107:in `exists?'
273
+ rack (1.4.5) lib/rack/session/abstract/id.rb:127:in `load_for_read!'
274
+ rack (1.4.5) lib/rack/session/abstract/id.rb:64:in `key?'
275
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:258:in `call'
276
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
277
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
278
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
279
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
280
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
281
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `call'
282
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__397314981__call__4__callbacks'
283
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `send'
284
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
285
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
286
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `send'
287
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
288
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
289
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
290
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
291
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
292
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
293
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
294
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
295
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
296
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
297
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
298
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
299
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
300
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
301
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
302
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
303
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
304
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
305
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
306
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
307
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
308
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
309
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
310
+ /opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
311
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start'
312
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
313
+ /opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
314
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `each'
315
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
316
+ /opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
317
+ /opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
318
+ rack (1.4.5) lib/rack/handler/webrick.rb:13:in `run'
319
+ rack (1.4.5) lib/rack/server.rb:268:in `start'
320
+ railties (3.2.13) lib/rails/commands/server.rb:70:in `start'
321
+ railties (3.2.13) lib/rails/commands.rb:55
322
+ railties (3.2.13) lib/rails/commands.rb:50:in `tap'
323
+ railties (3.2.13) lib/rails/commands.rb:50
324
+ script/rails:6:in `require'
325
+ script/rails:6
326
+
327
+
328
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
329
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.6ms)
330
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (23.6ms)
331
+
332
+
333
+ Started GET "/consumer" for 127.0.0.1 at Sun Mar 31 05:30:45 -0700 2013
334
+
335
+ ActionDispatch::Session::SessionRestoreError (Session contains objects whose class definition isn't available.
336
+ Remember to require the classes for all objects kept in the session.
337
+ (Original exception: uninitialized constant OpenID [NameError])
338
+ ):
339
+ actionpack (3.2.13) lib/action_dispatch/middleware/session/abstract_store.rb:64:in `stale_session_check!'
340
+ actionpack (3.2.13) lib/action_dispatch/middleware/session/cookie_store.rb:48:in `unpacked_cookie_data'
341
+ rack (1.4.5) lib/rack/session/cookie.rb:107:in `extract_session_id'
342
+ actionpack (3.2.13) lib/action_dispatch/middleware/session/abstract_store.rb:53:in `extract_session_id'
343
+ actionpack (3.2.13) lib/action_dispatch/middleware/session/abstract_store.rb:57:in `stale_session_check!'
344
+ actionpack (3.2.13) lib/action_dispatch/middleware/session/abstract_store.rb:53:in `extract_session_id'
345
+ rack (1.4.5) lib/rack/session/abstract/id.rb:43:in `send'
346
+ rack (1.4.5) lib/rack/session/abstract/id.rb:43:in `load_session_id!'
347
+ rack (1.4.5) lib/rack/session/abstract/id.rb:32:in `[]'
348
+ rack (1.4.5) lib/rack/session/abstract/id.rb:267:in `current_session_id'
349
+ rack (1.4.5) lib/rack/session/abstract/id.rb:273:in `session_exists?'
350
+ rack (1.4.5) lib/rack/session/abstract/id.rb:107:in `send'
351
+ rack (1.4.5) lib/rack/session/abstract/id.rb:107:in `exists?'
352
+ rack (1.4.5) lib/rack/session/abstract/id.rb:127:in `load_for_read!'
353
+ rack (1.4.5) lib/rack/session/abstract/id.rb:64:in `key?'
354
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:258:in `call'
355
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
356
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
357
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
358
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
359
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
360
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `call'
361
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__397314981__call__4__callbacks'
362
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `send'
363
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
364
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
365
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `send'
366
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
367
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
368
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
369
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
370
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
371
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
372
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
373
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
374
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
375
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
376
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
377
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
378
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
379
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
380
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
381
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
382
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
383
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
384
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
385
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
386
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
387
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
388
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
389
+ /opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
390
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start'
391
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
392
+ /opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
393
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `each'
394
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
395
+ /opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
396
+ /opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
397
+ rack (1.4.5) lib/rack/handler/webrick.rb:13:in `run'
398
+ rack (1.4.5) lib/rack/server.rb:268:in `start'
399
+ railties (3.2.13) lib/rails/commands/server.rb:70:in `start'
400
+ railties (3.2.13) lib/rails/commands.rb:55
401
+ railties (3.2.13) lib/rails/commands.rb:50:in `tap'
402
+ railties (3.2.13) lib/rails/commands.rb:50
403
+ script/rails:6:in `require'
404
+ script/rails:6
405
+
406
+
407
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
408
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
409
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (18.9ms)
410
+ Connecting to database specified by database.yml
411
+
412
+
413
+ Started GET "/consumer" for 127.0.0.1 at Sun Mar 31 05:31:30 -0700 2013
414
+ Processing by ConsumerController#index as HTML
415
+ Rendered consumer/index.html.erb within layouts/application (7.0ms)
416
+ Completed 200 OK in 198ms (Views: 197.4ms | ActiveRecord: 0.0ms)
417
+
418
+
419
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Mar 31 05:31:31 -0700 2013
420
+ Served asset /jquery.js - 304 Not Modified (7ms)
421
+
422
+
423
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Mar 31 05:31:31 -0700 2013
424
+ Served asset /application.css - 304 Not Modified (3ms)
425
+
426
+
427
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Mar 31 05:31:31 -0700 2013
428
+ Served asset /application.js - 304 Not Modified (44ms)
429
+
430
+
431
+ Started GET "/consumer/start?openid_identifier=http%3A%2F%2Flocalhost%3A3009%2Fopen_id%2Fmarcel" for 127.0.0.1 at Sun Mar 31 05:31:36 -0700 2013
432
+ Processing by ConsumerController#start as HTML
433
+ Parameters: {"openid_identifier"=>"http://localhost:3009/open_id/marcel"}
434
+ Redirected to http://localhost:3009/open_id/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582b66%7D%7BvdrbdQ%3D%3D%7D&openid.claimed_id=http%3A%2F%2Flocalhost%3A3009%2Fopen_id%2Fmarcel&openid.identity=http%3A%2F%2Flocalhost%3A3009%2Fopen_id%2Fmarcel&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete
435
+ Completed 302 Found in 65ms (ActiveRecord: 0.0ms)
436
+
437
+
438
+ Started GET "/consumer/complete?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582cb5%7D%7B2olQew%3D%3D%7D&openid.claimed_id=http%3A%2F%2Flocalhost%3A3009%2Fopen_id%2Fmarcel&openid.identity=http%3A%2F%2Flocalhost%3A3009%2Fopen_id%2Fmarcel&openid.invalidate_handle=%7BHMAC-SHA1%7D%7B51582b66%7D%7BvdrbdQ%3D%3D%7D&openid.mode=id_res&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.op_endpoint=http%3A%2F%2Flocalhost%3A3009%2Fopen_id%2Fserver&openid.response_nonce=2013-03-31T12%3A31%3A49Z8CDJUo&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete&openid.sig=skvSU5yuQsW%2BZwCkDbUbGmtMngc%3D&openid.signed=assoc_handle%2Cclaimed_id%2Cidentity%2Cinvalidate_handle%2Cmode%2Cns%2Cop_endpoint%2Cresponse_nonce%2Creturn_to%2Csigned" for 127.0.0.1 at Sun Mar 31 05:31:49 -0700 2013
439
+ Processing by ConsumerController#complete as HTML
440
+ Parameters: {"openid.sig"=>"skvSU5yuQsW+ZwCkDbUbGmtMngc=", "openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.op_endpoint"=>"http://localhost:3009/open_id/server", "openid.mode"=>"id_res", "openid.response_nonce"=>"2013-03-31T12:31:49Z8CDJUo", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://localhost:3009/open_id/marcel", "openid.signed"=>"assoc_handle,claimed_id,identity,invalidate_handle,mode,ns,op_endpoint,response_nonce,return_to,signed", "openid.invalidate_handle"=>"{HMAC-SHA1}{51582b66}{vdrbdQ==}", "openid.assoc_handle"=>"{HMAC-SHA1}{51582cb5}{2olQew==}", "openid.claimed_id"=>"http://localhost:3009/open_id/marcel"}
441
+ Redirected to http://localhost:3010/consumer
442
+ Completed 302 Found in 65ms (ActiveRecord: 0.0ms)
443
+
444
+
445
+ Started GET "/consumer" for 127.0.0.1 at Sun Mar 31 05:31:49 -0700 2013
446
+ Processing by ConsumerController#index as HTML
447
+ Rendered consumer/index.html.erb within layouts/application (0.7ms)
448
+ Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
449
+
450
+
451
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Mar 31 05:31:49 -0700 2013
452
+ Served asset /jquery.js - 304 Not Modified (0ms)
453
+
454
+
455
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Mar 31 05:31:49 -0700 2013
456
+ Served asset /application.css - 304 Not Modified (0ms)
457
+
458
+
459
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Mar 31 05:31:49 -0700 2013
460
+ Served asset /application.js - 304 Not Modified (0ms)
461
+ Connecting to database specified by database.yml
462
+
463
+
464
+ Started GET "/server" for 127.0.0.1 at Sun Mar 31 05:32:59 -0700 2013
465
+
466
+ ActionDispatch::Session::SessionRestoreError (Session contains objects whose class definition isn't available.
467
+ Remember to require the classes for all objects kept in the session.
468
+ (Original exception: uninitialized constant OpenID [NameError])
469
+ ):
470
+ actionpack (3.2.13) lib/action_dispatch/middleware/session/abstract_store.rb:64:in `stale_session_check!'
471
+ actionpack (3.2.13) lib/action_dispatch/middleware/session/cookie_store.rb:48:in `unpacked_cookie_data'
472
+ rack (1.4.5) lib/rack/session/cookie.rb:107:in `extract_session_id'
473
+ actionpack (3.2.13) lib/action_dispatch/middleware/session/abstract_store.rb:53:in `extract_session_id'
474
+ actionpack (3.2.13) lib/action_dispatch/middleware/session/abstract_store.rb:57:in `stale_session_check!'
475
+ actionpack (3.2.13) lib/action_dispatch/middleware/session/abstract_store.rb:53:in `extract_session_id'
476
+ rack (1.4.5) lib/rack/session/abstract/id.rb:43:in `send'
477
+ rack (1.4.5) lib/rack/session/abstract/id.rb:43:in `load_session_id!'
478
+ rack (1.4.5) lib/rack/session/abstract/id.rb:32:in `[]'
479
+ rack (1.4.5) lib/rack/session/abstract/id.rb:267:in `current_session_id'
480
+ rack (1.4.5) lib/rack/session/abstract/id.rb:273:in `session_exists?'
481
+ rack (1.4.5) lib/rack/session/abstract/id.rb:107:in `send'
482
+ rack (1.4.5) lib/rack/session/abstract/id.rb:107:in `exists?'
483
+ rack (1.4.5) lib/rack/session/abstract/id.rb:127:in `load_for_read!'
484
+ rack (1.4.5) lib/rack/session/abstract/id.rb:64:in `key?'
485
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:258:in `call'
486
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
487
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
488
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
489
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
490
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
491
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `call'
492
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__397314981__call__4__callbacks'
493
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `send'
494
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
495
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
496
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `send'
497
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
498
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
499
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
500
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
501
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
502
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
503
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
504
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
505
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
506
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
507
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
508
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
509
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
510
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
511
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
512
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
513
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
514
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
515
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
516
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
517
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
518
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
519
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
520
+ /opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
521
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start'
522
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
523
+ /opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
524
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `each'
525
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
526
+ /opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
527
+ /opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
528
+ rack (1.4.5) lib/rack/handler/webrick.rb:13:in `run'
529
+ rack (1.4.5) lib/rack/server.rb:268:in `start'
530
+ railties (3.2.13) lib/rails/commands/server.rb:70:in `start'
531
+ railties (3.2.13) lib/rails/commands.rb:55
532
+ railties (3.2.13) lib/rails/commands.rb:50:in `tap'
533
+ railties (3.2.13) lib/rails/commands.rb:50
534
+ script/rails:6:in `require'
535
+ script/rails:6
536
+
537
+
538
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.9ms)
539
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
540
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (19.9ms)
541
+
542
+
543
+ Started GET "/server" for 127.0.0.1 at Sun Mar 31 05:33:19 -0700 2013
544
+ Processing by ServerController#index as HTML
545
+ Rendered text template (0.0ms)
546
+ Completed 500 Internal Server Error in 31ms (Views: 25.3ms | ActiveRecord: 0.0ms)
547
+
548
+
549
+ Started GET "/server" for 127.0.0.1 at Sun Mar 31 05:33:41 -0700 2013
550
+ Processing by ServerController#index as HTML
551
+ Rendered text template (0.0ms)
552
+ Completed 500 Internal Server Error in 5ms (Views: 2.7ms | ActiveRecord: 0.0ms)
553
+
554
+
555
+ Started GET "/consumer" for 127.0.0.1 at Sun Mar 31 05:33:47 -0700 2013
556
+ Processing by ConsumerController#index as HTML
557
+ Rendered consumer/index.html.erb within layouts/application (0.8ms)
558
+ Completed 200 OK in 11ms (Views: 10.3ms | ActiveRecord: 0.0ms)
559
+
560
+
561
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Mar 31 05:33:47 -0700 2013
562
+ Served asset /jquery.js - 304 Not Modified (0ms)
563
+
564
+
565
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Mar 31 05:33:47 -0700 2013
566
+ Served asset /application.js - 304 Not Modified (0ms)
567
+
568
+
569
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Mar 31 05:33:47 -0700 2013
570
+ Served asset /application.css - 304 Not Modified (0ms)
571
+
572
+
573
+ Started GET "/consumer/start?openid_identifier=http%3A%2F%2Flocalhost%3A3009%2Fopen_id%2Fmarcel" for 127.0.0.1 at Sun Mar 31 05:33:57 -0700 2013
574
+ Processing by ConsumerController#start as HTML
575
+ Parameters: {"openid_identifier"=>"http://localhost:3009/open_id/marcel"}
576
+
577
+
578
+ Started GET "/open_id/marcel" for 127.0.0.1 at Sun Mar 31 05:33:57 -0700 2013
579
+
580
+ ActionController::RoutingError (No route matches [GET] "/open_id/marcel"):
581
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
582
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
583
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
584
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
585
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
586
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
587
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
588
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
589
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
590
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
591
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
592
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
593
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
594
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
595
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
596
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
597
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
598
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
599
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
600
+ /opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
601
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start'
602
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
603
+ /opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
604
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `each'
605
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
606
+ /opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
607
+ /opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
608
+ rack (1.4.5) lib/rack/handler/webrick.rb:13:in `run'
609
+ rack (1.4.5) lib/rack/server.rb:268:in `start'
610
+ railties (3.2.13) lib/rails/commands/server.rb:70:in `start'
611
+ railties (3.2.13) lib/rails/commands.rb:55
612
+ railties (3.2.13) lib/rails/commands.rb:50:in `tap'
613
+ railties (3.2.13) lib/rails/commands.rb:50
614
+ script/rails:6:in `require'
615
+ script/rails:6
616
+
617
+
618
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
619
+ Redirected to http://localhost:3010/consumer
620
+ Completed 302 Found in 38ms (ActiveRecord: 0.0ms)
621
+
622
+
623
+ Started GET "/consumer" for 127.0.0.1 at Sun Mar 31 05:33:57 -0700 2013
624
+ Processing by ConsumerController#index as HTML
625
+ Rendered consumer/index.html.erb within layouts/application (0.7ms)
626
+ Completed 200 OK in 8ms (Views: 8.0ms | ActiveRecord: 0.0ms)
627
+
628
+
629
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Mar 31 05:33:57 -0700 2013
630
+ Served asset /jquery.js - 304 Not Modified (0ms)
631
+
632
+
633
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Mar 31 05:33:57 -0700 2013
634
+ Served asset /application.js - 304 Not Modified (0ms)
635
+
636
+
637
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Mar 31 05:33:57 -0700 2013
638
+ Served asset /application.css - 304 Not Modified (0ms)
639
+
640
+
641
+ Started GET "/consumer/start?openid_identifier=http%3A%2F%2Flocalhost%3A3009%2Fserver" for 127.0.0.1 at Sun Mar 31 05:34:12 -0700 2013
642
+ Processing by ConsumerController#start as HTML
643
+ Parameters: {"openid_identifier"=>"http://localhost:3009/server"}
644
+
645
+
646
+ Started GET "/server" for 127.0.0.1 at Sun Mar 31 05:34:12 -0700 2013
647
+ Processing by ServerController#index as application/xrds+xml
648
+ Rendered text template (0.0ms)
649
+ Completed 500 Internal Server Error in 5ms (Views: 1.9ms | ActiveRecord: 0.0ms)
650
+ Redirected to http://localhost:3010/consumer
651
+ Completed 302 Found in 20ms (ActiveRecord: 0.0ms)
652
+
653
+
654
+ Started GET "/consumer" for 127.0.0.1 at Sun Mar 31 05:34:13 -0700 2013
655
+ Processing by ConsumerController#index as HTML
656
+ Rendered consumer/index.html.erb within layouts/application (0.6ms)
657
+ Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.0ms)
658
+
659
+
660
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Mar 31 05:34:13 -0700 2013
661
+ Served asset /application.css - 304 Not Modified (0ms)
662
+
663
+
664
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Mar 31 05:34:13 -0700 2013
665
+ Served asset /jquery.js - 304 Not Modified (0ms)
666
+
667
+
668
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Mar 31 05:34:13 -0700 2013
669
+ Served asset /application.js - 304 Not Modified (0ms)
670
+
671
+
672
+ Started GET "/consumer/start?openid_identifier=http%3A%2F%2Flocalhost%3A3009%2Fserver%2Fidp_xrds" for 127.0.0.1 at Sun Mar 31 05:35:31 -0700 2013
673
+ Processing by ConsumerController#start as HTML
674
+ Parameters: {"openid_identifier"=>"http://localhost:3009/server/idp_xrds"}
675
+
676
+
677
+ Started GET "/server/idp_xrds" for 127.0.0.1 at Sun Mar 31 05:35:31 -0700 2013
678
+ Processing by ServerController#idp_xrds as application/xrds+xml
679
+ Rendered text template (0.0ms)
680
+ Completed 200 OK in 3ms (Views: 0.6ms | ActiveRecord: 0.0ms)
681
+
682
+
683
+ Started POST "/server" for 127.0.0.1 at Sun Mar 31 05:35:32 -0700 2013
684
+ Processing by ServerController#index as */*
685
+ Parameters: {"openid.mode"=>"associate", "openid.assoc_type"=>"HMAC-SHA1", "openid.session_type"=>"DH-SHA1", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.dh_consumer_public"=>"Ohd6vp/95+pq56SpKTaquSLrgWcVYQwVDbe+KsVnfn/bWAsT2TGS3v7AjwWKx5rfCZauIQ/c55uwMjT5iX5sAQFcNdOVtl5Ue42oFfkHDu01A7xovf2ZUdbw10m0Cl+g0BjDZRBagDShrlvBP3SZDMPvQu4o/04GhA6rChWnaGA="}
686
+ WARNING: Can't verify CSRF token authenticity
687
+ Rendered text template (0.0ms)
688
+ Completed 200 OK in 40ms (Views: 0.7ms | ActiveRecord: 0.0ms)
689
+ Redirected to http://localhost:3009/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete
690
+ Completed 302 Found in 308ms (ActiveRecord: 0.0ms)
691
+
692
+
693
+ Started GET "/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete" for 127.0.0.1 at Sun Mar 31 05:35:32 -0700 2013
694
+ Processing by ServerController#index as HTML
695
+ Parameters: {"openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.mode"=>"checkid_setup", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://specs.openid.net/auth/2.0/identifier_select", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.realm"=>"http://localhost:3010/consumer", "openid.claimed_id"=>"http://specs.openid.net/auth/2.0/identifier_select"}
696
+ Rendered server/decide.html.erb within layouts/server (1.2ms)
697
+ Completed 200 OK in 21ms (Views: 5.0ms | ActiveRecord: 0.0ms)
698
+
699
+
700
+ Started GET "/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete" for 127.0.0.1 at Sun Mar 31 05:37:07 -0700 2013
701
+ Processing by ServerController#index as HTML
702
+ Parameters: {"openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.mode"=>"checkid_setup", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://specs.openid.net/auth/2.0/identifier_select", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.realm"=>"http://localhost:3010/consumer", "openid.claimed_id"=>"http://specs.openid.net/auth/2.0/identifier_select"}
703
+ Rendered server/decide.html.erb within layouts/server (2.1ms)
704
+ Completed 200 OK in 18ms (Views: 5.0ms | ActiveRecord: 0.0ms)
705
+
706
+
707
+ Started GET "/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete" for 127.0.0.1 at Sun Mar 31 05:37:10 -0700 2013
708
+ Processing by ServerController#index as HTML
709
+ Parameters: {"openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.mode"=>"checkid_setup", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://specs.openid.net/auth/2.0/identifier_select", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.realm"=>"http://localhost:3010/consumer", "openid.claimed_id"=>"http://specs.openid.net/auth/2.0/identifier_select"}
710
+ Rendered server/decide.html.erb within layouts/server (1.1ms)
711
+ Completed 200 OK in 16ms (Views: 4.4ms | ActiveRecord: 0.0ms)
712
+
713
+
714
+ Started GET "/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete" for 127.0.0.1 at Sun Mar 31 05:38:02 -0700 2013
715
+ Processing by ServerController#index as HTML
716
+ Parameters: {"openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.mode"=>"checkid_setup", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://specs.openid.net/auth/2.0/identifier_select", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.realm"=>"http://localhost:3010/consumer", "openid.claimed_id"=>"http://specs.openid.net/auth/2.0/identifier_select"}
717
+ Rendering decide template!
718
+ Rendered server/decide.html.erb within layouts/server (1.0ms)
719
+ Completed 200 OK in 15ms (Views: 8.3ms | ActiveRecord: 0.0ms)
720
+
721
+
722
+ Started GET "/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete" for 127.0.0.1 at Sun Mar 31 05:38:11 -0700 2013
723
+ Processing by ServerController#index as HTML
724
+ Parameters: {"openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.mode"=>"checkid_setup", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://specs.openid.net/auth/2.0/identifier_select", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.realm"=>"http://localhost:3010/consumer", "openid.claimed_id"=>"http://specs.openid.net/auth/2.0/identifier_select"}
725
+ Rendering decide template!
726
+ Rendered server/decide.html.erb within layouts/server (1.2ms)
727
+ Completed 200 OK in 18ms (Views: 14.0ms | ActiveRecord: 0.0ms)
728
+
729
+
730
+ Started GET "/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete" for 127.0.0.1 at Sun Mar 31 05:39:23 -0700 2013
731
+ Processing by ServerController#index as HTML
732
+ Parameters: {"openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.mode"=>"checkid_setup", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://specs.openid.net/auth/2.0/identifier_select", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.realm"=>"http://localhost:3010/consumer", "openid.claimed_id"=>"http://specs.openid.net/auth/2.0/identifier_select"}
733
+ Rendering decide template!
734
+ Rendered server/decide.html.erb within layouts/server (1.1ms)
735
+ Completed 200 OK in 8ms (Views: 5.0ms | ActiveRecord: 0.0ms)
736
+
737
+
738
+ Started GET "/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete" for 127.0.0.1 at Sun Mar 31 05:39:26 -0700 2013
739
+ Processing by ServerController#index as HTML
740
+ Parameters: {"openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.mode"=>"checkid_setup", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://specs.openid.net/auth/2.0/identifier_select", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.realm"=>"http://localhost:3010/consumer", "openid.claimed_id"=>"http://specs.openid.net/auth/2.0/identifier_select"}
741
+ Rendering decide template!
742
+ Rendered server/decide.html.erb within layouts/server (0.6ms)
743
+ Completed 200 OK in 11ms (Views: 4.1ms | ActiveRecord: 0.0ms)
744
+
745
+
746
+ Started POST "/server/decision" for 127.0.0.1 at Sun Mar 31 05:39:52 -0700 2013
747
+ Processing by ServerController#decision as HTML
748
+ Parameters: {"yes"=>"yes", "id_to_send"=>"http://localhost:3009/marcel"}
749
+ WARNING: Can't verify CSRF token authenticity
750
+ Completed 500 Internal Server Error in 1ms
751
+
752
+ NoMethodError (undefined method `identity' for nil:NilClass):
753
+ app/controllers/server_controller.rb:143:in `decision'
754
+
755
+
756
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
757
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
758
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.5ms)
759
+
760
+
761
+ Started POST "/server/decision" for 127.0.0.1 at Sun Mar 31 05:41:02 -0700 2013
762
+ Processing by ServerController#decision as HTML
763
+ Parameters: {"yes"=>"yes", "id_to_send"=>"http://localhost:3009/marcel"}
764
+ WARNING: Can't verify CSRF token authenticity
765
+ Completed 500 Internal Server Error in 1ms
766
+
767
+ NoMethodError (undefined method `identity' for nil:NilClass):
768
+ app/controllers/server_controller.rb:143:in `decision'
769
+
770
+
771
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.9ms)
772
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
773
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.4ms)
774
+
775
+
776
+ Started POST "/server/decision" for 127.0.0.1 at Sun Mar 31 05:41:56 -0700 2013
777
+ Processing by ServerController#decision as HTML
778
+ Parameters: {"yes"=>"yes", "id_to_send"=>"http://localhost:3009/marcel"}
779
+ WARNING: Can't verify CSRF token authenticity
780
+ Rendered text template (0.0ms)
781
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
782
+
783
+
784
+ Started GET "/consumer" for 127.0.0.1 at Sun Mar 31 05:42:11 -0700 2013
785
+ Processing by ConsumerController#index as HTML
786
+ Rendered consumer/index.html.erb within layouts/application (0.8ms)
787
+ Completed 200 OK in 12ms (Views: 10.9ms | ActiveRecord: 0.0ms)
788
+
789
+
790
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Mar 31 05:42:12 -0700 2013
791
+ Served asset /jquery.js - 304 Not Modified (0ms)
792
+
793
+
794
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Mar 31 05:42:12 -0700 2013
795
+ Served asset /application.js - 304 Not Modified (0ms)
796
+
797
+
798
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Mar 31 05:42:12 -0700 2013
799
+ Served asset /application.css - 304 Not Modified (0ms)
800
+
801
+
802
+ Started GET "/consumer/start?openid_identifier=http%3A%2F%2Flocalhost%3A3009%2Fserver%2Fidp_xrds" for 127.0.0.1 at Sun Mar 31 05:42:28 -0700 2013
803
+ Processing by ConsumerController#start as HTML
804
+ Parameters: {"openid_identifier"=>"http://localhost:3009/server/idp_xrds"}
805
+
806
+
807
+ Started GET "/server/idp_xrds" for 127.0.0.1 at Sun Mar 31 05:42:28 -0700 2013
808
+ Processing by ServerController#idp_xrds as application/xrds+xml
809
+ Rendered text template (0.0ms)
810
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
811
+ Redirected to http://localhost:3009/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete
812
+ Completed 302 Found in 31ms (ActiveRecord: 0.0ms)
813
+
814
+
815
+ Started GET "/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete" for 127.0.0.1 at Sun Mar 31 05:42:28 -0700 2013
816
+ Processing by ServerController#index as HTML
817
+ Parameters: {"openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.mode"=>"checkid_setup", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://specs.openid.net/auth/2.0/identifier_select", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.realm"=>"http://localhost:3010/consumer", "openid.claimed_id"=>"http://specs.openid.net/auth/2.0/identifier_select"}
818
+ Rendering decide template!
819
+ Rendered server/decide.html.erb within layouts/server (0.6ms)
820
+ Completed 200 OK in 8ms (Views: 3.8ms | ActiveRecord: 0.0ms)
821
+
822
+
823
+ Started POST "/server/decision" for 127.0.0.1 at Sun Mar 31 05:42:36 -0700 2013
824
+ Processing by ServerController#decision as HTML
825
+ Parameters: {"yes"=>"yes", "id_to_send"=>"http://localhost:3009/marcel"}
826
+ WARNING: Can't verify CSRF token authenticity
827
+ Rendered text template (0.0ms)
828
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
829
+
830
+
831
+ Started GET "/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete" for 127.0.0.1 at Sun Mar 31 05:45:38 -0700 2013
832
+ Processing by ServerController#index as HTML
833
+ Parameters: {"openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.mode"=>"checkid_setup", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://specs.openid.net/auth/2.0/identifier_select", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.realm"=>"http://localhost:3010/consumer", "openid.claimed_id"=>"http://specs.openid.net/auth/2.0/identifier_select"}
834
+ The user hasn't logged in
835
+ Rendering decide template!
836
+ Rendered server/decide.html.erb within layouts/server (0.6ms)
837
+ Completed 200 OK in 19ms (Views: 10.1ms | ActiveRecord: 0.0ms)
838
+
839
+
840
+ Started GET "/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete" for 127.0.0.1 at Sun Mar 31 05:46:02 -0700 2013
841
+ Processing by ServerController#index as HTML
842
+ Parameters: {"openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.mode"=>"checkid_setup", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://specs.openid.net/auth/2.0/identifier_select", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.realm"=>"http://localhost:3010/consumer", "openid.claimed_id"=>"http://specs.openid.net/auth/2.0/identifier_select"}
843
+ The user hasn't logged in
844
+ oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
845
+ Rendering decide template!
846
+ Rendered server/decide.html.erb within layouts/server (0.6ms)
847
+ Completed 200 OK in 7ms (Views: 3.7ms | ActiveRecord: 0.0ms)
848
+
849
+
850
+ Started GET "/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete" for 127.0.0.1 at Sun Mar 31 05:46:33 -0700 2013
851
+ Processing by ServerController#index as HTML
852
+ Parameters: {"openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.mode"=>"checkid_setup", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://specs.openid.net/auth/2.0/identifier_select", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.realm"=>"http://localhost:3010/consumer", "openid.claimed_id"=>"http://specs.openid.net/auth/2.0/identifier_select"}
853
+ The user hasn't logged in
854
+ oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
855
+ Rendering decide template!
856
+ Rendered server/decide.html.erb within layouts/server (0.5ms)
857
+ session: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
858
+ Rendering decide template!
859
+ Completed 500 Internal Server Error in 10ms
860
+
861
+ AbstractController::DoubleRenderError (Render and/or redirect were called multiple times in this action. Please note that you may only call render OR redirect, and at most once per action. Also note that neither redirect nor render terminate execution of the action, so if you want to exit an action after redirecting, you need to do something like "redirect_to(...) and return".):
862
+ app/controllers/server_controller.rb:88:in `show_decision_page'
863
+ app/controllers/server_controller.rb:45:in `index'
864
+
865
+
866
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
867
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (5.0ms)
868
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (25.0ms)
869
+
870
+
871
+ Started GET "/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete" for 127.0.0.1 at Sun Mar 31 05:46:47 -0700 2013
872
+ Processing by ServerController#index as HTML
873
+ Parameters: {"openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.mode"=>"checkid_setup", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://specs.openid.net/auth/2.0/identifier_select", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.realm"=>"http://localhost:3010/consumer", "openid.claimed_id"=>"http://specs.openid.net/auth/2.0/identifier_select"}
874
+ The user hasn't logged in
875
+ oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
876
+ Rendering decide template!
877
+ Rendered server/decide.html.erb within layouts/server (0.6ms)
878
+ session: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
879
+ Completed 200 OK in 8ms (Views: 4.8ms | ActiveRecord: 0.0ms)
880
+
881
+
882
+ Started GET "/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete" for 127.0.0.1 at Sun Mar 31 05:48:24 -0700 2013
883
+ Processing by ServerController#index as HTML
884
+ Parameters: {"openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.mode"=>"checkid_setup", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://specs.openid.net/auth/2.0/identifier_select", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.realm"=>"http://localhost:3010/consumer", "openid.claimed_id"=>"http://specs.openid.net/auth/2.0/identifier_select"}
885
+ The user hasn't logged in
886
+ oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
887
+ Setting last_oidreq to <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
888
+ Rendering decide template!
889
+ Rendered server/decide.html.erb within layouts/server (1.3ms)
890
+ session: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
891
+ Completed 200 OK in 15ms (Views: 11.0ms | ActiveRecord: 0.0ms)
892
+
893
+
894
+ Started POST "/server/decision" for 127.0.0.1 at Sun Mar 31 05:48:44 -0700 2013
895
+ Processing by ServerController#decision as HTML
896
+ Parameters: {"yes"=>"yes", "id_to_send"=>"http://localhost:3009/marcel"}
897
+ WARNING: Can't verify CSRF token authenticity
898
+ last_oidreq:
899
+ Rendered text template (0.0ms)
900
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
901
+
902
+
903
+ Started GET "/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete" for 127.0.0.1 at Sun Mar 31 05:54:41 -0700 2013
904
+ Processing by ServerController#index as HTML
905
+ Parameters: {"openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.mode"=>"checkid_setup", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://specs.openid.net/auth/2.0/identifier_select", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.realm"=>"http://localhost:3010/consumer", "openid.claimed_id"=>"http://specs.openid.net/auth/2.0/identifier_select"}
906
+ The user hasn't logged in
907
+ oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
908
+ Setting last_oidreq to <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
909
+ Rendering decide template!
910
+ Rendered server/decide.html.erb within layouts/server (1.6ms)
911
+ session: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
912
+ session size: 804
913
+ Completed 200 OK in 14ms (Views: 5.4ms | ActiveRecord: 0.0ms)
914
+
915
+
916
+ Started GET "/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete" for 127.0.0.1 at Sun Mar 31 05:54:59 -0700 2013
917
+ Processing by ServerController#index as HTML
918
+ Parameters: {"openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.mode"=>"checkid_setup", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://specs.openid.net/auth/2.0/identifier_select", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.realm"=>"http://localhost:3010/consumer", "openid.claimed_id"=>"http://specs.openid.net/auth/2.0/identifier_select"}
919
+ The user hasn't logged in
920
+ oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
921
+ Setting last_oidreq to <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
922
+ Rendering decide template!
923
+ Rendered server/decide.html.erb within layouts/server (0.6ms)
924
+ session: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
925
+ Completed 500 Internal Server Error in 12ms
926
+
927
+ TypeError (can't dump anonymous module #<Module:0x10225e948>):
928
+ app/controllers/server_controller.rb:45:in `dump'
929
+ app/controllers/server_controller.rb:45:in `index'
930
+
931
+
932
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.9ms)
933
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.6ms)
934
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (27.3ms)
935
+
936
+
937
+ Started GET "/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete" for 127.0.0.1 at Sun Mar 31 05:56:19 -0700 2013
938
+ Processing by ServerController#index as HTML
939
+ Parameters: {"openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.mode"=>"checkid_setup", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://specs.openid.net/auth/2.0/identifier_select", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.realm"=>"http://localhost:3010/consumer", "openid.claimed_id"=>"http://specs.openid.net/auth/2.0/identifier_select"}
940
+ The user hasn't logged in
941
+ oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
942
+ Setting last_oidreq to <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
943
+ Rendering decide template!
944
+ Rendered server/decide.html.erb within layouts/server (0.6ms)
945
+ session last_oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
946
+ session last_oidreq size: 804
947
+ Completed 200 OK in 8ms (Views: 4.3ms | ActiveRecord: 0.0ms)
948
+
949
+
950
+ Started POST "/server/decision" for 127.0.0.1 at Sun Mar 31 05:56:21 -0700 2013
951
+ Processing by ServerController#decision as HTML
952
+ Parameters: {"yes"=>"yes", "id_to_send"=>""}
953
+ WARNING: Can't verify CSRF token authenticity
954
+ hello:
955
+ last_oidreq:
956
+ Rendered text template (0.0ms)
957
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
958
+
959
+
960
+ Started POST "/server/decision" for 127.0.0.1 at Sun Mar 31 05:56:26 -0700 2013
961
+ Processing by ServerController#decision as HTML
962
+ Parameters: {"yes"=>"yes", "id_to_send"=>""}
963
+ WARNING: Can't verify CSRF token authenticity
964
+ hello:
965
+ last_oidreq:
966
+ Rendered text template (0.0ms)
967
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
968
+
969
+
970
+ Started GET "/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete" for 127.0.0.1 at Sun Mar 31 05:56:36 -0700 2013
971
+ Processing by ServerController#index as HTML
972
+ Parameters: {"openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.mode"=>"checkid_setup", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://specs.openid.net/auth/2.0/identifier_select", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.realm"=>"http://localhost:3010/consumer", "openid.claimed_id"=>"http://specs.openid.net/auth/2.0/identifier_select"}
973
+ The user hasn't logged in
974
+ oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
975
+ Setting last_oidreq to <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
976
+ Rendering decide template!
977
+ Rendered server/decide.html.erb within layouts/server (0.6ms)
978
+ session last_oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
979
+ session last_oidreq size: 804
980
+ Completed 200 OK in 8ms (Views: 3.7ms | ActiveRecord: 0.0ms)
981
+
982
+
983
+ Started GET "/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete" for 127.0.0.1 at Sun Mar 31 05:56:37 -0700 2013
984
+ Processing by ServerController#index as HTML
985
+ Parameters: {"openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.mode"=>"checkid_setup", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://specs.openid.net/auth/2.0/identifier_select", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.realm"=>"http://localhost:3010/consumer", "openid.claimed_id"=>"http://specs.openid.net/auth/2.0/identifier_select"}
986
+ The user hasn't logged in
987
+ oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
988
+ Setting last_oidreq to <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
989
+ Rendering decide template!
990
+ Rendered server/decide.html.erb within layouts/server (0.5ms)
991
+ session last_oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
992
+ session last_oidreq size: 804
993
+ Completed 200 OK in 7ms (Views: 3.1ms | ActiveRecord: 0.0ms)
994
+
995
+
996
+ Started POST "/server/decision" for 127.0.0.1 at Sun Mar 31 05:56:44 -0700 2013
997
+ Processing by ServerController#decision as HTML
998
+ Parameters: {"yes"=>"yes", "id_to_send"=>""}
999
+ WARNING: Can't verify CSRF token authenticity
1000
+ hello:
1001
+ last_oidreq:
1002
+ Rendered text template (0.0ms)
1003
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1004
+
1005
+
1006
+ Started POST "/server/decision" for 127.0.0.1 at Sun Mar 31 05:57:14 -0700 2013
1007
+ Processing by ServerController#decision as HTML
1008
+ Parameters: {"yes"=>"yes", "id_to_send"=>""}
1009
+ WARNING: Can't verify CSRF token authenticity
1010
+ session_id:
1011
+ hello:
1012
+ last_oidreq:
1013
+ Rendered text template (0.0ms)
1014
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1015
+
1016
+
1017
+ Started POST "/server/decision" for 127.0.0.1 at Sun Mar 31 05:57:35 -0700 2013
1018
+ Processing by ServerController#decision as HTML
1019
+ Parameters: {"yes"=>"yes", "id_to_send"=>""}
1020
+ WARNING: Can't verify CSRF token authenticity
1021
+ session_id:
1022
+ hello:
1023
+ last_oidreq:
1024
+ Rendered text template (0.0ms)
1025
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
1026
+
1027
+
1028
+ Started POST "/server/decision" for 127.0.0.1 at Sun Mar 31 05:58:17 -0700 2013
1029
+ Processing by ServerController#decision as HTML
1030
+ Parameters: {"yes"=>"yes", "id_to_send"=>""}
1031
+ WARNING: Can't verify CSRF token authenticity
1032
+ session_id:
1033
+ hello:
1034
+ last_oidreq:
1035
+ Rendered text template (0.0ms)
1036
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1037
+
1038
+
1039
+ Started GET "/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete" for 127.0.0.1 at Sun Mar 31 05:59:23 -0700 2013
1040
+ Processing by ServerController#index as HTML
1041
+ Parameters: {"openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.mode"=>"checkid_setup", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://specs.openid.net/auth/2.0/identifier_select", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.realm"=>"http://localhost:3010/consumer", "openid.claimed_id"=>"http://specs.openid.net/auth/2.0/identifier_select"}
1042
+ The user hasn't logged in
1043
+ oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1044
+ Setting last_oidreq to <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1045
+ Rendering decide template!
1046
+ Rendered server/decide.html.erb within layouts/server (0.6ms)
1047
+ session last_oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1048
+ session last_oidreq size: 804
1049
+ session_id: 0df6cf9c44f69c6a4ab15e8a889cdbfc
1050
+ Completed 200 OK in 8ms (Views: 3.6ms | ActiveRecord: 0.0ms)
1051
+
1052
+
1053
+ Started GET "/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete" for 127.0.0.1 at Sun Mar 31 06:00:27 -0700 2013
1054
+ Processing by ServerController#index as HTML
1055
+ Parameters: {"openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.mode"=>"checkid_setup", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://specs.openid.net/auth/2.0/identifier_select", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.realm"=>"http://localhost:3010/consumer", "openid.claimed_id"=>"http://specs.openid.net/auth/2.0/identifier_select"}
1056
+ The user hasn't logged in
1057
+ oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1058
+ Setting last_oidreq to <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1059
+ Rendering decide template!
1060
+ Rendered server/decide.html.erb within layouts/server (0.6ms)
1061
+ session last_oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1062
+ session last_oidreq size: 804
1063
+ session_id: 0df6cf9c44f69c6a4ab15e8a889cdbfc
1064
+ session_id cookie:
1065
+ Completed 200 OK in 8ms (Views: 4.4ms | ActiveRecord: 0.0ms)
1066
+
1067
+
1068
+ Started GET "/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete" for 127.0.0.1 at Sun Mar 31 06:00:46 -0700 2013
1069
+ Processing by ServerController#index as HTML
1070
+ Parameters: {"openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.mode"=>"checkid_setup", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://specs.openid.net/auth/2.0/identifier_select", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.realm"=>"http://localhost:3010/consumer", "openid.claimed_id"=>"http://specs.openid.net/auth/2.0/identifier_select"}
1071
+ The user hasn't logged in
1072
+ oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1073
+ Setting last_oidreq to <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1074
+ Rendering decide template!
1075
+ Rendered server/decide.html.erb within layouts/server (0.9ms)
1076
+ session last_oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1077
+ session last_oidreq size: 804
1078
+ session_id: 0df6cf9c44f69c6a4ab15e8a889cdbfc
1079
+ session_id cookie: BAh7CSIPc2Vzc2lvbl9pZCIlMGRmNmNmOWM0NGY2OWM2YTRhYjE1ZThhODg5Y2RiZmMiCmhlbGxvIgp3b3JsZCIKZmxhc2hvOiVBY3Rpb25EaXNwYXRjaDo6Rmxhc2g6OkZsYXNoSGFzaAk6DUBmbGFzaGVzewY6C25vdGljZSIvRG8geW91IHRydXN0IHRoaXMgc2l0ZSB3aXRoIHlvdXIgaWRlbnRpdHk/OgpAdXNlZG86CFNldAY6CkBoYXNoewA6DEBjbG9zZWRGOglAbm93MCIQbGFzdF9vaWRyZXFvOiNPcGVuSUQ6OlNlcnZlcjo6Q2hlY2tJRFJlcXVlc3QOOhBAdHJ1c3Rfcm9vdCIjaHR0cDovL2xvY2FsaG9zdDozMDEwL2NvbnN1bWVyOg9AcmV0dXJuX3RvIixodHRwOi8vbG9jYWxob3N0OjMwMTAvY29uc3VtZXIvY29tcGxldGU6DUBtZXNzYWdlbzoUT3BlbklEOjpNZXNzYWdlCDoQQG5hbWVzcGFjZXNvOhlPcGVuSUQ6Ok5hbWVzcGFjZU1hcAg6GEBhbGlhc190b19uYW1lc3BhY2V7BjoTbnVsbF9uYW1lc3BhY2UiJWh0dHA6Ly9zcGVjcy5vcGVuaWQubmV0L2F1dGgvMi4wOhlAaW1wbGljaXRfbmFtZXNwYWNlc1sAOhhAbmFtZXNwYWNlX3RvX2FsaWFzewYiJWh0dHA6Ly9zcGVjcy5vcGVuaWQubmV0L2F1dGgvMi4wOxU6E0BvcGVuaWRfbnNfdXJpQBc6CkBhcmdzew1bB0AXIgltb2RlIhJjaGVja2lkX3NldHVwWwdAFyIPY2xhaW1lZF9pZCI3aHR0cDovL3NwZWNzLm9wZW5pZC5uZXQvYXV0aC8yLjAvaWRlbnRpZmllcl9zZWxlY3RbBzoTYmFyZV9uYW1lc3BhY2UiC2FjdGlvbiIKaW5kZXhbBzsaIg9jb250cm9sbGVyIgtzZXJ2ZXJbB0AXIhFhc3NvY19oYW5kbGUiJHtITUFDLVNIQTF9ezUxNTgyZDk0fXtjZGtvMWc9PX1bB0AXIg5yZXR1cm5fdG9AE1sHQBciCnJlYWxtQBJbB0AXIg1pZGVudGl0eSI3aHR0cDovL3NwZWNzLm9wZW5pZC5uZXQvYXV0aC8yLjAvaWRlbnRpZmllcl9zZWxlY3Q6D0BpbW1lZGlhdGVGOg5AaWRlbnRpdHlAMToSQGFzc29jX2hhbmRsZUAqOhBAY2xhaW1lZF9pZEAhOgpAbW9kZSISY2hlY2tpZF9zZXR1cDoRQG9wX2VuZHBvaW50IiFodHRwOi8vbG9jYWxob3N0OjMwMDkvc2VydmVy--e9977c9d345b7da60a35bbd6b27618a288f54057
1080
+ Completed 200 OK in 31ms (Views: 14.7ms | ActiveRecord: 0.0ms)
1081
+
1082
+
1083
+ Started POST "/server/decision" for 127.0.0.1 at Sun Mar 31 06:01:27 -0700 2013
1084
+ Processing by ServerController#decision as HTML
1085
+ Parameters: {"yes"=>"yes", "id_to_send"=>""}
1086
+ WARNING: Can't verify CSRF token authenticity
1087
+ session_id:
1088
+ session_id cookie: BAh7CSIPc2Vzc2lvbl9pZCIlMGRmNmNmOWM0NGY2OWM2YTRhYjE1ZThhODg5Y2RiZmMiCmhlbGxvIgp3b3JsZCIQbGFzdF9vaWRyZXFvOiNPcGVuSUQ6OlNlcnZlcjo6Q2hlY2tJRFJlcXVlc3QOOhBAdHJ1c3Rfcm9vdCIjaHR0cDovL2xvY2FsaG9zdDozMDEwL2NvbnN1bWVyOg9AcmV0dXJuX3RvIixodHRwOi8vbG9jYWxob3N0OjMwMTAvY29uc3VtZXIvY29tcGxldGU6DUBtZXNzYWdlbzoUT3BlbklEOjpNZXNzYWdlCDoQQG5hbWVzcGFjZXNvOhlPcGVuSUQ6Ok5hbWVzcGFjZU1hcAg6GEBhbGlhc190b19uYW1lc3BhY2V7BjoTbnVsbF9uYW1lc3BhY2UiJWh0dHA6Ly9zcGVjcy5vcGVuaWQubmV0L2F1dGgvMi4wOhlAaW1wbGljaXRfbmFtZXNwYWNlc1sAOhhAbmFtZXNwYWNlX3RvX2FsaWFzewYiJWh0dHA6Ly9zcGVjcy5vcGVuaWQubmV0L2F1dGgvMi4wOw06E0BvcGVuaWRfbnNfdXJpQBE6CkBhcmdzew1bB0ARIgltb2RlIhJjaGVja2lkX3NldHVwWwdAESIPY2xhaW1lZF9pZCI3aHR0cDovL3NwZWNzLm9wZW5pZC5uZXQvYXV0aC8yLjAvaWRlbnRpZmllcl9zZWxlY3RbBzoTYmFyZV9uYW1lc3BhY2UiC2FjdGlvbiIKaW5kZXhbBzsSIg9jb250cm9sbGVyIgtzZXJ2ZXJbB0ARIhFhc3NvY19oYW5kbGUiJHtITUFDLVNIQTF9ezUxNTgyZDk0fXtjZGtvMWc9PX1bB0ARIg5yZXR1cm5fdG9ADVsHQBEiCnJlYWxtQAxbB0ARIg1pZGVudGl0eSI3aHR0cDovL3NwZWNzLm9wZW5pZC5uZXQvYXV0aC8yLjAvaWRlbnRpZmllcl9zZWxlY3Q6D0BpbW1lZGlhdGVGOg5AaWRlbnRpdHlAKzoSQGFzc29jX2hhbmRsZUAkOhBAY2xhaW1lZF9pZEAbOgpAbW9kZSISY2hlY2tpZF9zZXR1cDoRQG9wX2VuZHBvaW50IiFodHRwOi8vbG9jYWxob3N0OjMwMDkvc2VydmVyIgpmbGFzaG86JUFjdGlvbkRpc3BhdGNoOjpGbGFzaDo6Rmxhc2hIYXNoCToNQGZsYXNoZXN7BjoLbm90aWNlIi9EbyB5b3UgdHJ1c3QgdGhpcyBzaXRlIHdpdGggeW91ciBpZGVudGl0eT86CkB1c2VkbzoIU2V0BjoKQGhhc2h7ADoMQGNsb3NlZEY6CUBub3cw--097664684a5b4ec726b2e9621c60066bdffa2b08
1089
+ hello:
1090
+ last_oidreq:
1091
+ Rendered text template (0.0ms)
1092
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
1093
+
1094
+
1095
+ Started POST "/server/decision" for 127.0.0.1 at Sun Mar 31 06:01:46 -0700 2013
1096
+ Processing by ServerController#decision as HTML
1097
+ Parameters: {"yes"=>"yes", "id_to_send"=>""}
1098
+ WARNING: Can't verify CSRF token authenticity
1099
+ session_id:
1100
+ session_id cookie: BAh7BzoQbGFzdF9vaWRyZXEwIg9zZXNzaW9uX2lkIiViMjkzOWYzZGM1MGUzZGVhN2MzMjQwODgwMzk4ZDRlZg==--5c9b11469badcabaca82548d4d506f6b7b1e834f
1101
+ hello:
1102
+ last_oidreq:
1103
+ Rendered text template (0.0ms)
1104
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
1105
+
1106
+
1107
+ Started GET "/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete" for 127.0.0.1 at Sun Mar 31 06:07:21 -0700 2013
1108
+ Processing by ServerController#index as HTML
1109
+ Parameters: {"openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.mode"=>"checkid_setup", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://specs.openid.net/auth/2.0/identifier_select", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.realm"=>"http://localhost:3010/consumer", "openid.claimed_id"=>"http://specs.openid.net/auth/2.0/identifier_select"}
1110
+ The user hasn't logged in
1111
+ oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1112
+ Setting last_oidreq to <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1113
+ Rendering decide template!
1114
+ Rendered server/decide.html.erb within layouts/server (1.2ms)
1115
+ session last_oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1116
+ session last_oidreq size: 804
1117
+ session_id: d50d3dd624bc8ca8e44f1203c96a8f93
1118
+ session_id cookie: BAh7BzoQbGFzdF9vaWRyZXEwIg9zZXNzaW9uX2lkIiVkNTBkM2RkNjI0YmM4Y2E4ZTQ0ZjEyMDNjOTZhOGY5Mw==--4184fd96c6f41491285b5f6c1e96b4b72e28c2f8
1119
+ Completed 200 OK in 10ms (Views: 4.6ms | ActiveRecord: 0.0ms)
1120
+
1121
+
1122
+ Started GET "/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete" for 127.0.0.1 at Sun Mar 31 06:07:33 -0700 2013
1123
+ Processing by ServerController#index as HTML
1124
+ Parameters: {"openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.mode"=>"checkid_setup", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://specs.openid.net/auth/2.0/identifier_select", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.realm"=>"http://localhost:3010/consumer", "openid.claimed_id"=>"http://specs.openid.net/auth/2.0/identifier_select"}
1125
+ The user hasn't logged in
1126
+ oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1127
+ Setting last_oidreq to <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1128
+ Rendering decide template!
1129
+ Rendered server/decide.html.erb within layouts/server (157.0ms)
1130
+ Completed 500 Internal Server Error in 166ms
1131
+
1132
+ ActionView::Template::Error (undefined local variable or method `form_authenticity_token_field' for #<#<Class:0x103647298>:0x10358a698>):
1133
+ 1: <form method="post" action="<%= url_for :controller => 'server', :action => 'decision' %>">
1134
+ 2: <%= form_authenticity_token_field %>
1135
+ 3:
1136
+ 4: <table>
1137
+ 5: <tr><td>Site:</td><td><%= @oidreq.trust_root %></td></tr>
1138
+ app/views/server/decide.html.erb:2:in `_app_views_server_decide_html_erb___1096845836_2175551400'
1139
+ app/controllers/server_controller.rb:92:in `show_decision_page'
1140
+ app/controllers/server_controller.rb:43:in `index'
1141
+
1142
+
1143
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
1144
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.3ms)
1145
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (15.6ms)
1146
+
1147
+
1148
+ Started GET "/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete" for 127.0.0.1 at Sun Mar 31 06:09:13 -0700 2013
1149
+ Processing by ServerController#index as HTML
1150
+ Parameters: {"openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.mode"=>"checkid_setup", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://specs.openid.net/auth/2.0/identifier_select", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.realm"=>"http://localhost:3010/consumer", "openid.claimed_id"=>"http://specs.openid.net/auth/2.0/identifier_select"}
1151
+ The user hasn't logged in
1152
+ oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1153
+ Setting last_oidreq to <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1154
+ Rendering decide template!
1155
+ Rendered server/decide.html.erb within layouts/server (42.6ms)
1156
+ Completed 500 Internal Server Error in 49ms
1157
+
1158
+ ActionView::Template::Error (undefined local variable or method `form_authenticity_param' for #<#<Class:0x103647298>:0x103920618>):
1159
+ 1: <form method="post" action="<%= url_for :controller => 'server', :action => 'decision' %>">
1160
+ 2: <input type="hidden" name="<%= form_authenticity_param %>" value="<%= form_authenticity_token %>">
1161
+ 3:
1162
+ 4: <table>
1163
+ 5: <tr><td>Site:</td><td><%= @oidreq.trust_root %></td></tr>
1164
+ app/views/server/decide.html.erb:2:in `_app_views_server_decide_html_erb___1096845836_2177422820'
1165
+ app/controllers/server_controller.rb:92:in `show_decision_page'
1166
+ app/controllers/server_controller.rb:43:in `index'
1167
+
1168
+
1169
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.1ms)
1170
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms)
1171
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (20.9ms)
1172
+
1173
+
1174
+ Started GET "/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete" for 127.0.0.1 at Sun Mar 31 06:10:58 -0700 2013
1175
+ Processing by ServerController#index as HTML
1176
+ Parameters: {"openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.mode"=>"checkid_setup", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://specs.openid.net/auth/2.0/identifier_select", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.realm"=>"http://localhost:3010/consumer", "openid.claimed_id"=>"http://specs.openid.net/auth/2.0/identifier_select"}
1177
+ The user hasn't logged in
1178
+ oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1179
+ Setting last_oidreq to <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1180
+ Rendering decide template!
1181
+ Rendered server/decide.html.erb within layouts/server (1.0ms)
1182
+ session last_oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1183
+ session last_oidreq size: 804
1184
+ session_id: d50d3dd624bc8ca8e44f1203c96a8f93
1185
+ session_id cookie: BAh7CiIQX2NzcmZfdG9rZW4iMTVIMWQ0bEVzMnA4Qjd0enZHTXNIZXRLOUtPcTZCbFl4UFN6dyt2SFJTckE9Ig9zZXNzaW9uX2lkIiVkNTBkM2RkNjI0YmM4Y2E4ZTQ0ZjEyMDNjOTZhOGY5MyIKaGVsbG8iCndvcmxkIhBsYXN0X29pZHJlcW86I09wZW5JRDo6U2VydmVyOjpDaGVja0lEUmVxdWVzdA46EEB0cnVzdF9yb290IiNodHRwOi8vbG9jYWxob3N0OjMwMTAvY29uc3VtZXI6D0ByZXR1cm5fdG8iLGh0dHA6Ly9sb2NhbGhvc3Q6MzAxMC9jb25zdW1lci9jb21wbGV0ZToNQG1lc3NhZ2VvOhRPcGVuSUQ6Ok1lc3NhZ2UIOhBAbmFtZXNwYWNlc286GU9wZW5JRDo6TmFtZXNwYWNlTWFwCDoYQGFsaWFzX3RvX25hbWVzcGFjZXsGOhNudWxsX25hbWVzcGFjZSIlaHR0cDovL3NwZWNzLm9wZW5pZC5uZXQvYXV0aC8yLjA6GUBpbXBsaWNpdF9uYW1lc3BhY2VzWwA6GEBuYW1lc3BhY2VfdG9fYWxpYXN7BiIlaHR0cDovL3NwZWNzLm9wZW5pZC5uZXQvYXV0aC8yLjA7DToTQG9wZW5pZF9uc191cmlAEzoKQGFyZ3N7DVsHQBMiCW1vZGUiEmNoZWNraWRfc2V0dXBbB0ATIg9jbGFpbWVkX2lkIjdodHRwOi8vc3BlY3Mub3BlbmlkLm5ldC9hdXRoLzIuMC9pZGVudGlmaWVyX3NlbGVjdFsHOhNiYXJlX25hbWVzcGFjZSILYWN0aW9uIgppbmRleFsHOxIiD2NvbnRyb2xsZXIiC3NlcnZlclsHQBMiEWFzc29jX2hhbmRsZSIke0hNQUMtU0hBMX17NTE1ODJkOTR9e2Nka28xZz09fVsHQBMiDnJldHVybl90b0APWwdAEyIKcmVhbG1ADlsHQBMiDWlkZW50aXR5IjdodHRwOi8vc3BlY3Mub3BlbmlkLm5ldC9hdXRoLzIuMC9pZGVudGlmaWVyX3NlbGVjdDoPQGltbWVkaWF0ZUY6DkBpZGVudGl0eUAtOhJAYXNzb2NfaGFuZGxlQCY6EEBjbGFpbWVkX2lkQB06CkBtb2RlIhJjaGVja2lkX3NldHVwOhFAb3BfZW5kcG9pbnQiIWh0dHA6Ly9sb2NhbGhvc3Q6MzAwOS9zZXJ2ZXIiCmZsYXNobzolQWN0aW9uRGlzcGF0Y2g6OkZsYXNoOjpGbGFzaEhhc2gJOg1AZmxhc2hlc3sGOgtub3RpY2UiL0RvIHlvdSB0cnVzdCB0aGlzIHNpdGUgd2l0aCB5b3VyIGlkZW50aXR5PzoKQHVzZWRvOghTZXQGOgpAaGFzaHsAOgxAY2xvc2VkRjoJQG5vdzA=--0b12a84d3b56c065d035566362e3e9374de86039
1186
+ Completed 200 OK in 8ms (Views: 4.8ms | ActiveRecord: 0.0ms)
1187
+
1188
+
1189
+ Started POST "/server/decision" for 127.0.0.1 at Sun Mar 31 06:11:00 -0700 2013
1190
+ Processing by ServerController#decision as HTML
1191
+ Parameters: {"yes"=>"yes", "id_to_send"=>""}
1192
+ WARNING: Can't verify CSRF token authenticity
1193
+ session_id:
1194
+ session_id cookie: BAh7CiIQX2NzcmZfdG9rZW4iMTVIMWQ0bEVzMnA4Qjd0enZHTXNIZXRLOUtPcTZCbFl4UFN6dyt2SFJTckE9Ig9zZXNzaW9uX2lkIiVkNTBkM2RkNjI0YmM4Y2E4ZTQ0ZjEyMDNjOTZhOGY5MyIKaGVsbG8iCndvcmxkIgpmbGFzaG86JUFjdGlvbkRpc3BhdGNoOjpGbGFzaDo6Rmxhc2hIYXNoCToNQGZsYXNoZXN7BjoLbm90aWNlIi9EbyB5b3UgdHJ1c3QgdGhpcyBzaXRlIHdpdGggeW91ciBpZGVudGl0eT86CkB1c2VkbzoIU2V0BjoKQGhhc2h7ADoMQGNsb3NlZEY6CUBub3cwIhBsYXN0X29pZHJlcW86I09wZW5JRDo6U2VydmVyOjpDaGVja0lEUmVxdWVzdA46EEB0cnVzdF9yb290IiNodHRwOi8vbG9jYWxob3N0OjMwMTAvY29uc3VtZXI6D0ByZXR1cm5fdG8iLGh0dHA6Ly9sb2NhbGhvc3Q6MzAxMC9jb25zdW1lci9jb21wbGV0ZToNQG1lc3NhZ2VvOhRPcGVuSUQ6Ok1lc3NhZ2UIOhBAbmFtZXNwYWNlc286GU9wZW5JRDo6TmFtZXNwYWNlTWFwCDoYQGFsaWFzX3RvX25hbWVzcGFjZXsGOhNudWxsX25hbWVzcGFjZSIlaHR0cDovL3NwZWNzLm9wZW5pZC5uZXQvYXV0aC8yLjA6GUBpbXBsaWNpdF9uYW1lc3BhY2VzWwA6GEBuYW1lc3BhY2VfdG9fYWxpYXN7BiIlaHR0cDovL3NwZWNzLm9wZW5pZC5uZXQvYXV0aC8yLjA7FToTQG9wZW5pZF9uc191cmlAGToKQGFyZ3N7DVsHQBkiCW1vZGUiEmNoZWNraWRfc2V0dXBbB0AZIg9jbGFpbWVkX2lkIjdodHRwOi8vc3BlY3Mub3BlbmlkLm5ldC9hdXRoLzIuMC9pZGVudGlmaWVyX3NlbGVjdFsHOhNiYXJlX25hbWVzcGFjZSILYWN0aW9uIgppbmRleFsHOxoiD2NvbnRyb2xsZXIiC3NlcnZlclsHQBkiEWFzc29jX2hhbmRsZSIke0hNQUMtU0hBMX17NTE1ODJkOTR9e2Nka28xZz09fVsHQBkiDnJldHVybl90b0AVWwdAGSIKcmVhbG1AFFsHQBkiDWlkZW50aXR5IjdodHRwOi8vc3BlY3Mub3BlbmlkLm5ldC9hdXRoLzIuMC9pZGVudGlmaWVyX3NlbGVjdDoPQGltbWVkaWF0ZUY6DkBpZGVudGl0eUAzOhJAYXNzb2NfaGFuZGxlQCw6EEBjbGFpbWVkX2lkQCM6CkBtb2RlIhJjaGVja2lkX3NldHVwOhFAb3BfZW5kcG9pbnQiIWh0dHA6Ly9sb2NhbGhvc3Q6MzAwOS9zZXJ2ZXI=--efe18d78f0dd5ccfbb16f8706b35781d95ffead8
1195
+ hello:
1196
+ last_oidreq:
1197
+ Rendered text template (0.0ms)
1198
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1199
+
1200
+
1201
+ Started GET "/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete" for 127.0.0.1 at Sun Mar 31 06:11:03 -0700 2013
1202
+ Processing by ServerController#index as HTML
1203
+ Parameters: {"openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.mode"=>"checkid_setup", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://specs.openid.net/auth/2.0/identifier_select", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.realm"=>"http://localhost:3010/consumer", "openid.claimed_id"=>"http://specs.openid.net/auth/2.0/identifier_select"}
1204
+ The user hasn't logged in
1205
+ oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1206
+ Setting last_oidreq to <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1207
+ Rendering decide template!
1208
+ Rendered server/decide.html.erb within layouts/server (0.6ms)
1209
+ session last_oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1210
+ session last_oidreq size: 804
1211
+ session_id: b0111bc499a041f6669c0cffd50c4854
1212
+ session_id cookie: BAh7BzoQbGFzdF9vaWRyZXEwIg9zZXNzaW9uX2lkIiViMDExMWJjNDk5YTA0MWY2NjY5YzBjZmZkNTBjNDg1NA==--73c5bfc2bb790437f2b141aaf0c20cd6cc426da7
1213
+ Completed 200 OK in 9ms (Views: 3.5ms | ActiveRecord: 0.0ms)
1214
+
1215
+
1216
+ Started GET "/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete" for 127.0.0.1 at Sun Mar 31 06:11:05 -0700 2013
1217
+ Processing by ServerController#index as HTML
1218
+ Parameters: {"openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.mode"=>"checkid_setup", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://specs.openid.net/auth/2.0/identifier_select", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.realm"=>"http://localhost:3010/consumer", "openid.claimed_id"=>"http://specs.openid.net/auth/2.0/identifier_select"}
1219
+ The user hasn't logged in
1220
+ oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1221
+ Setting last_oidreq to <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1222
+ Rendering decide template!
1223
+ Rendered server/decide.html.erb within layouts/server (0.8ms)
1224
+ session last_oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1225
+ session last_oidreq size: 804
1226
+ session_id: b0111bc499a041f6669c0cffd50c4854
1227
+ session_id cookie: BAh7CiIQX2NzcmZfdG9rZW4iMURlelQzMjdHQk9aRUdxakRaM2pjeTFjY3ZsRmN0eHJQdUF2UGJLWUg3WTA9Ig9zZXNzaW9uX2lkIiViMDExMWJjNDk5YTA0MWY2NjY5YzBjZmZkNTBjNDg1NCIKaGVsbG8iCndvcmxkIhBsYXN0X29pZHJlcW86I09wZW5JRDo6U2VydmVyOjpDaGVja0lEUmVxdWVzdA46EEB0cnVzdF9yb290IiNodHRwOi8vbG9jYWxob3N0OjMwMTAvY29uc3VtZXI6D0ByZXR1cm5fdG8iLGh0dHA6Ly9sb2NhbGhvc3Q6MzAxMC9jb25zdW1lci9jb21wbGV0ZToNQG1lc3NhZ2VvOhRPcGVuSUQ6Ok1lc3NhZ2UIOhBAbmFtZXNwYWNlc286GU9wZW5JRDo6TmFtZXNwYWNlTWFwCDoYQGFsaWFzX3RvX25hbWVzcGFjZXsGOhNudWxsX25hbWVzcGFjZSIlaHR0cDovL3NwZWNzLm9wZW5pZC5uZXQvYXV0aC8yLjA6GUBpbXBsaWNpdF9uYW1lc3BhY2VzWwA6GEBuYW1lc3BhY2VfdG9fYWxpYXN7BiIlaHR0cDovL3NwZWNzLm9wZW5pZC5uZXQvYXV0aC8yLjA7DToTQG9wZW5pZF9uc191cmlAEzoKQGFyZ3N7DVsHQBMiCW1vZGUiEmNoZWNraWRfc2V0dXBbB0ATIg9jbGFpbWVkX2lkIjdodHRwOi8vc3BlY3Mub3BlbmlkLm5ldC9hdXRoLzIuMC9pZGVudGlmaWVyX3NlbGVjdFsHOhNiYXJlX25hbWVzcGFjZSILYWN0aW9uIgppbmRleFsHOxIiD2NvbnRyb2xsZXIiC3NlcnZlclsHQBMiEWFzc29jX2hhbmRsZSIke0hNQUMtU0hBMX17NTE1ODJkOTR9e2Nka28xZz09fVsHQBMiDnJldHVybl90b0APWwdAEyIKcmVhbG1ADlsHQBMiDWlkZW50aXR5IjdodHRwOi8vc3BlY3Mub3BlbmlkLm5ldC9hdXRoLzIuMC9pZGVudGlmaWVyX3NlbGVjdDoPQGltbWVkaWF0ZUY6DkBpZGVudGl0eUAtOhJAYXNzb2NfaGFuZGxlQCY6EEBjbGFpbWVkX2lkQB06CkBtb2RlIhJjaGVja2lkX3NldHVwOhFAb3BfZW5kcG9pbnQiIWh0dHA6Ly9sb2NhbGhvc3Q6MzAwOS9zZXJ2ZXIiCmZsYXNobzolQWN0aW9uRGlzcGF0Y2g6OkZsYXNoOjpGbGFzaEhhc2gJOg1AZmxhc2hlc3sGOgtub3RpY2UiL0RvIHlvdSB0cnVzdCB0aGlzIHNpdGUgd2l0aCB5b3VyIGlkZW50aXR5PzoKQHVzZWRvOghTZXQGOgpAaGFzaHsAOgxAY2xvc2VkRjoJQG5vdzA=--4aa0ecdd65e5219704711e40c58139be1348db1f
1228
+ Completed 200 OK in 10ms (Views: 5.1ms | ActiveRecord: 0.0ms)
1229
+
1230
+
1231
+ Started POST "/server/decision" for 127.0.0.1 at Sun Mar 31 06:11:06 -0700 2013
1232
+ Processing by ServerController#decision as HTML
1233
+ Parameters: {"yes"=>"yes", "id_to_send"=>""}
1234
+ WARNING: Can't verify CSRF token authenticity
1235
+ session_id:
1236
+ session_id cookie: BAh7CiIQX2NzcmZfdG9rZW4iMURlelQzMjdHQk9aRUdxakRaM2pjeTFjY3ZsRmN0eHJQdUF2UGJLWUg3WTA9Ig9zZXNzaW9uX2lkIiViMDExMWJjNDk5YTA0MWY2NjY5YzBjZmZkNTBjNDg1NCIKaGVsbG8iCndvcmxkIgpmbGFzaG86JUFjdGlvbkRpc3BhdGNoOjpGbGFzaDo6Rmxhc2hIYXNoCToNQGZsYXNoZXN7BjoLbm90aWNlIi9EbyB5b3UgdHJ1c3QgdGhpcyBzaXRlIHdpdGggeW91ciBpZGVudGl0eT86CkB1c2VkbzoIU2V0BjoKQGhhc2h7ADoMQGNsb3NlZEY6CUBub3cwIhBsYXN0X29pZHJlcW86I09wZW5JRDo6U2VydmVyOjpDaGVja0lEUmVxdWVzdA46EEB0cnVzdF9yb290IiNodHRwOi8vbG9jYWxob3N0OjMwMTAvY29uc3VtZXI6D0ByZXR1cm5fdG8iLGh0dHA6Ly9sb2NhbGhvc3Q6MzAxMC9jb25zdW1lci9jb21wbGV0ZToNQG1lc3NhZ2VvOhRPcGVuSUQ6Ok1lc3NhZ2UIOhBAbmFtZXNwYWNlc286GU9wZW5JRDo6TmFtZXNwYWNlTWFwCDoYQGFsaWFzX3RvX25hbWVzcGFjZXsGOhNudWxsX25hbWVzcGFjZSIlaHR0cDovL3NwZWNzLm9wZW5pZC5uZXQvYXV0aC8yLjA6GUBpbXBsaWNpdF9uYW1lc3BhY2VzWwA6GEBuYW1lc3BhY2VfdG9fYWxpYXN7BiIlaHR0cDovL3NwZWNzLm9wZW5pZC5uZXQvYXV0aC8yLjA7FToTQG9wZW5pZF9uc191cmlAGToKQGFyZ3N7DVsHQBkiCW1vZGUiEmNoZWNraWRfc2V0dXBbB0AZIg9jbGFpbWVkX2lkIjdodHRwOi8vc3BlY3Mub3BlbmlkLm5ldC9hdXRoLzIuMC9pZGVudGlmaWVyX3NlbGVjdFsHOhNiYXJlX25hbWVzcGFjZSILYWN0aW9uIgppbmRleFsHOxoiD2NvbnRyb2xsZXIiC3NlcnZlclsHQBkiEWFzc29jX2hhbmRsZSIke0hNQUMtU0hBMX17NTE1ODJkOTR9e2Nka28xZz09fVsHQBkiDnJldHVybl90b0AVWwdAGSIKcmVhbG1AFFsHQBkiDWlkZW50aXR5IjdodHRwOi8vc3BlY3Mub3BlbmlkLm5ldC9hdXRoLzIuMC9pZGVudGlmaWVyX3NlbGVjdDoPQGltbWVkaWF0ZUY6DkBpZGVudGl0eUAzOhJAYXNzb2NfaGFuZGxlQCw6EEBjbGFpbWVkX2lkQCM6CkBtb2RlIhJjaGVja2lkX3NldHVwOhFAb3BfZW5kcG9pbnQiIWh0dHA6Ly9sb2NhbGhvc3Q6MzAwOS9zZXJ2ZXI=--2e2b7c25a4b12809bc26063679446f2ea9bb0c95
1237
+ hello:
1238
+ last_oidreq:
1239
+ Rendered text template (0.0ms)
1240
+ Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1241
+
1242
+
1243
+ Started POST "/server/decision" for 127.0.0.1 at Sun Mar 31 06:11:40 -0700 2013
1244
+ Processing by ServerController#decision as HTML
1245
+ Parameters: {"yes"=>"yes", "id_to_send"=>""}
1246
+ WARNING: Can't verify CSRF token authenticity
1247
+ session_id:
1248
+ session_id cookie: BAh7BzoQbGFzdF9vaWRyZXEwIg9zZXNzaW9uX2lkIiVkZTEzMjgwMDA5ZGU5NGQ1NjkzYWExNjUxNDFmMWYyNQ==--fb03aa366527aebbe8dd7fd9a6be3905ea7690b6
1249
+ hello:
1250
+ last_oidreq:
1251
+ Rendered text template (0.0ms)
1252
+ Completed 200 OK in 4ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1253
+
1254
+
1255
+ Started GET "/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete" for 127.0.0.1 at Sun Mar 31 06:11:42 -0700 2013
1256
+ Processing by ServerController#index as HTML
1257
+ Parameters: {"openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.mode"=>"checkid_setup", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://specs.openid.net/auth/2.0/identifier_select", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.realm"=>"http://localhost:3010/consumer", "openid.claimed_id"=>"http://specs.openid.net/auth/2.0/identifier_select"}
1258
+ The user hasn't logged in
1259
+ oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1260
+ Setting last_oidreq to <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1261
+ Rendering decide template!
1262
+ Rendered server/decide.html.erb within layouts/server (0.6ms)
1263
+ session last_oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1264
+ session last_oidreq size: 804
1265
+ session_id: 396fcb58d8777c7f869bf8084e96482c
1266
+ session_id cookie: BAh7BzoQbGFzdF9vaWRyZXEwIg9zZXNzaW9uX2lkIiUzOTZmY2I1OGQ4Nzc3YzdmODY5YmY4MDg0ZTk2NDgyYw==--48268edfcda33e221ff56a92f7c2cc30efd4951a
1267
+ Completed 200 OK in 14ms (Views: 5.4ms | ActiveRecord: 0.0ms)
1268
+
1269
+
1270
+ Started POST "/server/decision" for 127.0.0.1 at Sun Mar 31 06:11:43 -0700 2013
1271
+ Processing by ServerController#decision as HTML
1272
+ Parameters: {"yes"=>"yes", "id_to_send"=>""}
1273
+ WARNING: Can't verify CSRF token authenticity
1274
+ session_id:
1275
+ session_id cookie: BAh7CiIQX2NzcmZfdG9rZW4iMVBONjA1NXlibkNzaWJEZ1pTZ0k5KzEwZStoVXdRZUpPYU5FYzRlL3J0MW89Ig9zZXNzaW9uX2lkIiUzOTZmY2I1OGQ4Nzc3YzdmODY5YmY4MDg0ZTk2NDgyYyIKaGVsbG8iCndvcmxkIhBsYXN0X29pZHJlcW86I09wZW5JRDo6U2VydmVyOjpDaGVja0lEUmVxdWVzdA46EEB0cnVzdF9yb290IiNodHRwOi8vbG9jYWxob3N0OjMwMTAvY29uc3VtZXI6D0ByZXR1cm5fdG8iLGh0dHA6Ly9sb2NhbGhvc3Q6MzAxMC9jb25zdW1lci9jb21wbGV0ZToNQG1lc3NhZ2VvOhRPcGVuSUQ6Ok1lc3NhZ2UIOhBAbmFtZXNwYWNlc286GU9wZW5JRDo6TmFtZXNwYWNlTWFwCDoYQGFsaWFzX3RvX25hbWVzcGFjZXsGOhNudWxsX25hbWVzcGFjZSIlaHR0cDovL3NwZWNzLm9wZW5pZC5uZXQvYXV0aC8yLjA6GUBpbXBsaWNpdF9uYW1lc3BhY2VzWwA6GEBuYW1lc3BhY2VfdG9fYWxpYXN7BiIlaHR0cDovL3NwZWNzLm9wZW5pZC5uZXQvYXV0aC8yLjA7DToTQG9wZW5pZF9uc191cmlAEzoKQGFyZ3N7DVsHQBMiCW1vZGUiEmNoZWNraWRfc2V0dXBbB0ATIg9jbGFpbWVkX2lkIjdodHRwOi8vc3BlY3Mub3BlbmlkLm5ldC9hdXRoLzIuMC9pZGVudGlmaWVyX3NlbGVjdFsHOhNiYXJlX25hbWVzcGFjZSILYWN0aW9uIgppbmRleFsHOxIiD2NvbnRyb2xsZXIiC3NlcnZlclsHQBMiEWFzc29jX2hhbmRsZSIke0hNQUMtU0hBMX17NTE1ODJkOTR9e2Nka28xZz09fVsHQBMiDnJldHVybl90b0APWwdAEyIKcmVhbG1ADlsHQBMiDWlkZW50aXR5IjdodHRwOi8vc3BlY3Mub3BlbmlkLm5ldC9hdXRoLzIuMC9pZGVudGlmaWVyX3NlbGVjdDoPQGltbWVkaWF0ZUY6DkBpZGVudGl0eUAtOhJAYXNzb2NfaGFuZGxlQCY6EEBjbGFpbWVkX2lkQB06CkBtb2RlIhJjaGVja2lkX3NldHVwOhFAb3BfZW5kcG9pbnQiIWh0dHA6Ly9sb2NhbGhvc3Q6MzAwOS9zZXJ2ZXIiCmZsYXNobzolQWN0aW9uRGlzcGF0Y2g6OkZsYXNoOjpGbGFzaEhhc2gJOg1AZmxhc2hlc3sGOgtub3RpY2UiL0RvIHlvdSB0cnVzdCB0aGlzIHNpdGUgd2l0aCB5b3VyIGlkZW50aXR5PzoKQHVzZWRvOghTZXQGOgpAaGFzaHsAOgxAY2xvc2VkRjoJQG5vdzA=--9d8e44ba14ab5c85a086e860ea1481f71067e88f
1276
+ hello:
1277
+ last_oidreq:
1278
+ Rendered text template (0.0ms)
1279
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1280
+
1281
+
1282
+ Started GET "/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete" for 127.0.0.1 at Sun Mar 31 06:12:51 -0700 2013
1283
+ Processing by ServerController#index as HTML
1284
+ Parameters: {"openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.mode"=>"checkid_setup", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://specs.openid.net/auth/2.0/identifier_select", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.realm"=>"http://localhost:3010/consumer", "openid.claimed_id"=>"http://specs.openid.net/auth/2.0/identifier_select"}
1285
+ The user hasn't logged in
1286
+ oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1287
+ Setting last_oidreq to <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1288
+ Rendering decide template!
1289
+ Rendered server/decide.html.erb within layouts/server (1.0ms)
1290
+ session last_oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1291
+ session last_oidreq size: 804
1292
+ session_id: 2c66ed926ccfe2103c298469eb4818f8
1293
+ session_id cookie: BAh7BzoQbGFzdF9vaWRyZXEwIg9zZXNzaW9uX2lkIiUyYzY2ZWQ5MjZjY2ZlMjEwM2MyOTg0NjllYjQ4MThmOA==--6457aa16715de946fb9167e165af7f022d49cd5f
1294
+ Completed 200 OK in 7ms (Views: 3.8ms | ActiveRecord: 0.0ms)
1295
+
1296
+
1297
+ Started POST "/server/decision" for 127.0.0.1 at Sun Mar 31 06:12:53 -0700 2013
1298
+ Processing by ServerController#decision as HTML
1299
+ Parameters: {"_token"=>"rLGwlRuk0Zz/nS165br3PrN5Zre3xpwKpSsHGDqntog=", "yes"=>"yes", "id_to_send"=>""}
1300
+ WARNING: Can't verify CSRF token authenticity
1301
+ session_id:
1302
+ session_id cookie: BAh7CiIQX2NzcmZfdG9rZW4iMXJMR3dsUnVrMFp6L25TMTY1YnIzUHJONVpyZTN4cHdLcFNzSEdEcW50b2c9Ig9zZXNzaW9uX2lkIiUyYzY2ZWQ5MjZjY2ZlMjEwM2MyOTg0NjllYjQ4MThmOCIKaGVsbG8iCndvcmxkIhBsYXN0X29pZHJlcW86I09wZW5JRDo6U2VydmVyOjpDaGVja0lEUmVxdWVzdA46EEB0cnVzdF9yb290IiNodHRwOi8vbG9jYWxob3N0OjMwMTAvY29uc3VtZXI6D0ByZXR1cm5fdG8iLGh0dHA6Ly9sb2NhbGhvc3Q6MzAxMC9jb25zdW1lci9jb21wbGV0ZToNQG1lc3NhZ2VvOhRPcGVuSUQ6Ok1lc3NhZ2UIOhBAbmFtZXNwYWNlc286GU9wZW5JRDo6TmFtZXNwYWNlTWFwCDoYQGFsaWFzX3RvX25hbWVzcGFjZXsGOhNudWxsX25hbWVzcGFjZSIlaHR0cDovL3NwZWNzLm9wZW5pZC5uZXQvYXV0aC8yLjA6GUBpbXBsaWNpdF9uYW1lc3BhY2VzWwA6GEBuYW1lc3BhY2VfdG9fYWxpYXN7BiIlaHR0cDovL3NwZWNzLm9wZW5pZC5uZXQvYXV0aC8yLjA7DToTQG9wZW5pZF9uc191cmlAEzoKQGFyZ3N7DVsHQBMiCW1vZGUiEmNoZWNraWRfc2V0dXBbB0ATIg9jbGFpbWVkX2lkIjdodHRwOi8vc3BlY3Mub3BlbmlkLm5ldC9hdXRoLzIuMC9pZGVudGlmaWVyX3NlbGVjdFsHOhNiYXJlX25hbWVzcGFjZSILYWN0aW9uIgppbmRleFsHOxIiD2NvbnRyb2xsZXIiC3NlcnZlclsHQBMiEWFzc29jX2hhbmRsZSIke0hNQUMtU0hBMX17NTE1ODJkOTR9e2Nka28xZz09fVsHQBMiDnJldHVybl90b0APWwdAEyIKcmVhbG1ADlsHQBMiDWlkZW50aXR5IjdodHRwOi8vc3BlY3Mub3BlbmlkLm5ldC9hdXRoLzIuMC9pZGVudGlmaWVyX3NlbGVjdDoPQGltbWVkaWF0ZUY6DkBpZGVudGl0eUAtOhJAYXNzb2NfaGFuZGxlQCY6EEBjbGFpbWVkX2lkQB06CkBtb2RlIhJjaGVja2lkX3NldHVwOhFAb3BfZW5kcG9pbnQiIWh0dHA6Ly9sb2NhbGhvc3Q6MzAwOS9zZXJ2ZXIiCmZsYXNobzolQWN0aW9uRGlzcGF0Y2g6OkZsYXNoOjpGbGFzaEhhc2gJOg1AZmxhc2hlc3sGOgtub3RpY2UiL0RvIHlvdSB0cnVzdCB0aGlzIHNpdGUgd2l0aCB5b3VyIGlkZW50aXR5PzoKQHVzZWRvOghTZXQGOgpAaGFzaHsAOgxAY2xvc2VkRjoJQG5vdzA=--f8ed02db84ccf0f80fc1bd2f0f4095cbc249caac
1303
+ hello:
1304
+ last_oidreq:
1305
+ Rendered text template (0.0ms)
1306
+ Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1307
+
1308
+
1309
+ Started GET "/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete" for 127.0.0.1 at Sun Mar 31 06:15:54 -0700 2013
1310
+ Processing by ServerController#index as HTML
1311
+ Parameters: {"openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.mode"=>"checkid_setup", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://specs.openid.net/auth/2.0/identifier_select", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.realm"=>"http://localhost:3010/consumer", "openid.claimed_id"=>"http://specs.openid.net/auth/2.0/identifier_select"}
1312
+ The user hasn't logged in
1313
+ oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1314
+ Setting last_oidreq to <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1315
+ Rendering decide template!
1316
+ Rendered server/decide.html.erb within layouts/server (1.7ms)
1317
+ session last_oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1318
+ session last_oidreq size: 804
1319
+ session_id: ff4ab3c2833d6324f1fcc3a4de587fe1
1320
+ session_id cookie: BAh7BzoQbGFzdF9vaWRyZXEwIg9zZXNzaW9uX2lkIiVmZjRhYjNjMjgzM2Q2MzI0ZjFmY2MzYTRkZTU4N2ZlMQ==--0b1f7487ae5567045e91d39d107132c75a1e1c59
1321
+ Completed 200 OK in 45ms (Views: 40.8ms | ActiveRecord: 0.0ms)
1322
+
1323
+
1324
+ Started POST "/server/decision" for 127.0.0.1 at Sun Mar 31 06:15:55 -0700 2013
1325
+ Processing by ServerController#decision as HTML
1326
+ Parameters: {"authenticity_token"=>"jgWPOedLngI1CoE4miIBy3FprrZr/xYlHnBoTWn9fOc=", "yes"=>"yes", "id_to_send"=>""}
1327
+ session_id: ff4ab3c2833d6324f1fcc3a4de587fe1
1328
+ session_id cookie: BAh7CiIQX2NzcmZfdG9rZW4iMWpnV1BPZWRMbmdJMUNvRTRtaUlCeTNGcHJyWnIveFlsSG5Cb1RXbjlmT2M9Ig9zZXNzaW9uX2lkIiVmZjRhYjNjMjgzM2Q2MzI0ZjFmY2MzYTRkZTU4N2ZlMSIKaGVsbG8iCndvcmxkIhBsYXN0X29pZHJlcW86I09wZW5JRDo6U2VydmVyOjpDaGVja0lEUmVxdWVzdA46EEB0cnVzdF9yb290IiNodHRwOi8vbG9jYWxob3N0OjMwMTAvY29uc3VtZXI6D0ByZXR1cm5fdG8iLGh0dHA6Ly9sb2NhbGhvc3Q6MzAxMC9jb25zdW1lci9jb21wbGV0ZToNQG1lc3NhZ2VvOhRPcGVuSUQ6Ok1lc3NhZ2UIOhBAbmFtZXNwYWNlc286GU9wZW5JRDo6TmFtZXNwYWNlTWFwCDoYQGFsaWFzX3RvX25hbWVzcGFjZXsGOhNudWxsX25hbWVzcGFjZSIlaHR0cDovL3NwZWNzLm9wZW5pZC5uZXQvYXV0aC8yLjA6GUBpbXBsaWNpdF9uYW1lc3BhY2VzWwA6GEBuYW1lc3BhY2VfdG9fYWxpYXN7BiIlaHR0cDovL3NwZWNzLm9wZW5pZC5uZXQvYXV0aC8yLjA7DToTQG9wZW5pZF9uc191cmlAEzoKQGFyZ3N7DVsHQBMiCW1vZGUiEmNoZWNraWRfc2V0dXBbB0ATIg9jbGFpbWVkX2lkIjdodHRwOi8vc3BlY3Mub3BlbmlkLm5ldC9hdXRoLzIuMC9pZGVudGlmaWVyX3NlbGVjdFsHOhNiYXJlX25hbWVzcGFjZSILYWN0aW9uIgppbmRleFsHOxIiD2NvbnRyb2xsZXIiC3NlcnZlclsHQBMiEWFzc29jX2hhbmRsZSIke0hNQUMtU0hBMX17NTE1ODJkOTR9e2Nka28xZz09fVsHQBMiDnJldHVybl90b0APWwdAEyIKcmVhbG1ADlsHQBMiDWlkZW50aXR5IjdodHRwOi8vc3BlY3Mub3BlbmlkLm5ldC9hdXRoLzIuMC9pZGVudGlmaWVyX3NlbGVjdDoPQGltbWVkaWF0ZUY6DkBpZGVudGl0eUAtOhJAYXNzb2NfaGFuZGxlQCY6EEBjbGFpbWVkX2lkQB06CkBtb2RlIhJjaGVja2lkX3NldHVwOhFAb3BfZW5kcG9pbnQiIWh0dHA6Ly9sb2NhbGhvc3Q6MzAwOS9zZXJ2ZXIiCmZsYXNobzolQWN0aW9uRGlzcGF0Y2g6OkZsYXNoOjpGbGFzaEhhc2gJOg1AZmxhc2hlc3sGOgtub3RpY2UiL0RvIHlvdSB0cnVzdCB0aGlzIHNpdGUgd2l0aCB5b3VyIGlkZW50aXR5PzoKQHVzZWRvOghTZXQGOgpAaGFzaHsAOgxAY2xvc2VkRjoJQG5vdzA=--9a1ec542115a344418fdc5587685b73737444aef
1329
+ hello: world
1330
+ last_oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1331
+ Setting last_oidreq to <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1332
+ Rendering decide template!
1333
+ Rendered server/decide.html.erb within layouts/server (0.7ms)
1334
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
1335
+
1336
+
1337
+ Started POST "/server/decision" for 127.0.0.1 at Sun Mar 31 06:15:58 -0700 2013
1338
+ Processing by ServerController#decision as HTML
1339
+ Parameters: {"authenticity_token"=>"jgWPOedLngI1CoE4miIBy3FprrZr/xYlHnBoTWn9fOc=", "yes"=>"yes", "id_to_send"=>""}
1340
+ session_id: ff4ab3c2833d6324f1fcc3a4de587fe1
1341
+ session_id cookie: BAh7CiIQX2NzcmZfdG9rZW4iMWpnV1BPZWRMbmdJMUNvRTRtaUlCeTNGcHJyWnIveFlsSG5Cb1RXbjlmT2M9Ig9zZXNzaW9uX2lkIiVmZjRhYjNjMjgzM2Q2MzI0ZjFmY2MzYTRkZTU4N2ZlMSIKaGVsbG8iCndvcmxkIgpmbGFzaG86JUFjdGlvbkRpc3BhdGNoOjpGbGFzaDo6Rmxhc2hIYXNoCToNQGZsYXNoZXN7BjoLbm90aWNlIlZZb3UgbXVzdCBlbnRlciBhIHVzZXJuYW1lIHRvIGluIG9yZGVyIHRvIHNlbmQgYW4gaWRlbnRpZmllciB0byB0aGUgUmVseWluZyBQYXJ0eS46CkB1c2VkbzoIU2V0BjoKQGhhc2h7ADoMQGNsb3NlZEY6CUBub3cwIhBsYXN0X29pZHJlcW86I09wZW5JRDo6U2VydmVyOjpDaGVja0lEUmVxdWVzdA46EEB0cnVzdF9yb290IiNodHRwOi8vbG9jYWxob3N0OjMwMTAvY29uc3VtZXI6D0ByZXR1cm5fdG8iLGh0dHA6Ly9sb2NhbGhvc3Q6MzAxMC9jb25zdW1lci9jb21wbGV0ZToNQG1lc3NhZ2VvOhRPcGVuSUQ6Ok1lc3NhZ2UIOhBAbmFtZXNwYWNlc286GU9wZW5JRDo6TmFtZXNwYWNlTWFwCDoYQGFsaWFzX3RvX25hbWVzcGFjZXsGOhNudWxsX25hbWVzcGFjZSIlaHR0cDovL3NwZWNzLm9wZW5pZC5uZXQvYXV0aC8yLjA6GUBpbXBsaWNpdF9uYW1lc3BhY2VzWwA6GEBuYW1lc3BhY2VfdG9fYWxpYXN7BiIlaHR0cDovL3NwZWNzLm9wZW5pZC5uZXQvYXV0aC8yLjA7FToKQGFyZ3N7DVsHOhNiYXJlX25hbWVzcGFjZSILYWN0aW9uIgppbmRleFsHQBkiD2NsYWltZWRfaWQiN2h0dHA6Ly9zcGVjcy5vcGVuaWQubmV0L2F1dGgvMi4wL2lkZW50aWZpZXJfc2VsZWN0WwdAGSIJbW9kZSISY2hlY2tpZF9zZXR1cFsHOxkiD2NvbnRyb2xsZXIiC3NlcnZlclsHQBkiDnJldHVybl90b0AVWwdAGSIRYXNzb2NfaGFuZGxlIiR7SE1BQy1TSEExfXs1MTU4MmQ5NH17Y2RrbzFnPT19WwdAGSINaWRlbnRpdHkiN2h0dHA6Ly9zcGVjcy5vcGVuaWQubmV0L2F1dGgvMi4wL2lkZW50aWZpZXJfc2VsZWN0WwdAGSIKcmVhbG1AFDoTQG9wZW5pZF9uc191cmlAGToPQGltbWVkaWF0ZUY6DkBpZGVudGl0eUAxOhJAYXNzb2NfaGFuZGxlQC46EUBvcF9lbmRwb2ludCIhaHR0cDovL2xvY2FsaG9zdDozMDA5L3NlcnZlcjoKQG1vZGUiEmNoZWNraWRfc2V0dXA6EEBjbGFpbWVkX2lkQCM=--d18faa6ccd17ce34ee9d7d0cc67cfa3b8e5589c1
1342
+ hello: world
1343
+ last_oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1344
+ Setting last_oidreq to <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1345
+ Rendering decide template!
1346
+ Rendered server/decide.html.erb within layouts/server (0.8ms)
1347
+ Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.0ms)
1348
+
1349
+
1350
+ Started POST "/server/decision" for 127.0.0.1 at Sun Mar 31 06:16:23 -0700 2013
1351
+ Processing by ServerController#decision as HTML
1352
+ Parameters: {"authenticity_token"=>"jgWPOedLngI1CoE4miIBy3FprrZr/xYlHnBoTWn9fOc=", "yes"=>"yes", "id_to_send"=>""}
1353
+ session_id: ff4ab3c2833d6324f1fcc3a4de587fe1
1354
+ session_id cookie: BAh7CiIQX2NzcmZfdG9rZW4iMWpnV1BPZWRMbmdJMUNvRTRtaUlCeTNGcHJyWnIveFlsSG5Cb1RXbjlmT2M9Ig9zZXNzaW9uX2lkIiVmZjRhYjNjMjgzM2Q2MzI0ZjFmY2MzYTRkZTU4N2ZlMSIKaGVsbG8iCndvcmxkIhBsYXN0X29pZHJlcW86I09wZW5JRDo6U2VydmVyOjpDaGVja0lEUmVxdWVzdA46EEB0cnVzdF9yb290IiNodHRwOi8vbG9jYWxob3N0OjMwMTAvY29uc3VtZXI6D0ByZXR1cm5fdG8iLGh0dHA6Ly9sb2NhbGhvc3Q6MzAxMC9jb25zdW1lci9jb21wbGV0ZToNQG1lc3NhZ2VvOhRPcGVuSUQ6Ok1lc3NhZ2UIOhBAbmFtZXNwYWNlc286GU9wZW5JRDo6TmFtZXNwYWNlTWFwCDoYQGFsaWFzX3RvX25hbWVzcGFjZXsGOhNudWxsX25hbWVzcGFjZSIlaHR0cDovL3NwZWNzLm9wZW5pZC5uZXQvYXV0aC8yLjA6GUBpbXBsaWNpdF9uYW1lc3BhY2VzWwA6GEBuYW1lc3BhY2VfdG9fYWxpYXN7BiIlaHR0cDovL3NwZWNzLm9wZW5pZC5uZXQvYXV0aC8yLjA7DToTQG9wZW5pZF9uc191cmlAEzoKQGFyZ3N7DVsHQBMiCW1vZGUiEmNoZWNraWRfc2V0dXBbB0ATIg9jbGFpbWVkX2lkIjdodHRwOi8vc3BlY3Mub3BlbmlkLm5ldC9hdXRoLzIuMC9pZGVudGlmaWVyX3NlbGVjdFsHOhNiYXJlX25hbWVzcGFjZSILYWN0aW9uIgppbmRleFsHOxIiD2NvbnRyb2xsZXIiC3NlcnZlclsHQBMiEWFzc29jX2hhbmRsZSIke0hNQUMtU0hBMX17NTE1ODJkOTR9e2Nka28xZz09fVsHQBMiDnJldHVybl90b0APWwdAEyIKcmVhbG1ADlsHQBMiDWlkZW50aXR5IjdodHRwOi8vc3BlY3Mub3BlbmlkLm5ldC9hdXRoLzIuMC9pZGVudGlmaWVyX3NlbGVjdDoPQGltbWVkaWF0ZUY6DkBpZGVudGl0eUAtOhJAYXNzb2NfaGFuZGxlQCY6EEBjbGFpbWVkX2lkQB06CkBtb2RlIhJjaGVja2lkX3NldHVwOhFAb3BfZW5kcG9pbnQiIWh0dHA6Ly9sb2NhbGhvc3Q6MzAwOS9zZXJ2ZXIiCmZsYXNobzolQWN0aW9uRGlzcGF0Y2g6OkZsYXNoOjpGbGFzaEhhc2gJOg1AZmxhc2hlc3sGOgtub3RpY2UiVllvdSBtdXN0IGVudGVyIGEgdXNlcm5hbWUgdG8gaW4gb3JkZXIgdG8gc2VuZCBhbiBpZGVudGlmaWVyIHRvIHRoZSBSZWx5aW5nIFBhcnR5LjoKQHVzZWRvOghTZXQGOgpAaGFzaHsAOgxAY2xvc2VkRjoJQG5vdzA=--755060a8760641df75a8c6ce57f0e8e076a90b57
1355
+ hello: world
1356
+ last_oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1357
+ Setting last_oidreq to <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1358
+ Rendering decide template!
1359
+ Rendered server/decide.html.erb within layouts/server (0.6ms)
1360
+ Completed 200 OK in 7ms (Views: 4.4ms | ActiveRecord: 0.0ms)
1361
+
1362
+
1363
+ Started POST "/server/decision" for 127.0.0.1 at Sun Mar 31 06:16:27 -0700 2013
1364
+ Processing by ServerController#decision as HTML
1365
+ Parameters: {"authenticity_token"=>"jgWPOedLngI1CoE4miIBy3FprrZr/xYlHnBoTWn9fOc=", "yes"=>"yes", "id_to_send"=>""}
1366
+ session_id: ff4ab3c2833d6324f1fcc3a4de587fe1
1367
+ session_id cookie: BAh7CiIQX2NzcmZfdG9rZW4iMWpnV1BPZWRMbmdJMUNvRTRtaUlCeTNGcHJyWnIveFlsSG5Cb1RXbjlmT2M9Ig9zZXNzaW9uX2lkIiVmZjRhYjNjMjgzM2Q2MzI0ZjFmY2MzYTRkZTU4N2ZlMSIKaGVsbG8iCndvcmxkIgpmbGFzaG86JUFjdGlvbkRpc3BhdGNoOjpGbGFzaDo6Rmxhc2hIYXNoCToNQGZsYXNoZXN7BjoLbm90aWNlIlZZb3UgbXVzdCBlbnRlciBhIHVzZXJuYW1lIHRvIGluIG9yZGVyIHRvIHNlbmQgYW4gaWRlbnRpZmllciB0byB0aGUgUmVseWluZyBQYXJ0eS46CkB1c2VkbzoIU2V0BjoKQGhhc2h7ADoMQGNsb3NlZEY6CUBub3cwIhBsYXN0X29pZHJlcW86I09wZW5JRDo6U2VydmVyOjpDaGVja0lEUmVxdWVzdA46EEB0cnVzdF9yb290IiNodHRwOi8vbG9jYWxob3N0OjMwMTAvY29uc3VtZXI6D0ByZXR1cm5fdG8iLGh0dHA6Ly9sb2NhbGhvc3Q6MzAxMC9jb25zdW1lci9jb21wbGV0ZToNQG1lc3NhZ2VvOhRPcGVuSUQ6Ok1lc3NhZ2UIOhBAbmFtZXNwYWNlc286GU9wZW5JRDo6TmFtZXNwYWNlTWFwCDoYQGFsaWFzX3RvX25hbWVzcGFjZXsGOhNudWxsX25hbWVzcGFjZSIlaHR0cDovL3NwZWNzLm9wZW5pZC5uZXQvYXV0aC8yLjA6GUBpbXBsaWNpdF9uYW1lc3BhY2VzWwA6GEBuYW1lc3BhY2VfdG9fYWxpYXN7BiIlaHR0cDovL3NwZWNzLm9wZW5pZC5uZXQvYXV0aC8yLjA7FToKQGFyZ3N7DVsHOhNiYXJlX25hbWVzcGFjZSILYWN0aW9uIgppbmRleFsHQBkiD2NsYWltZWRfaWQiN2h0dHA6Ly9zcGVjcy5vcGVuaWQubmV0L2F1dGgvMi4wL2lkZW50aWZpZXJfc2VsZWN0WwdAGSIJbW9kZSISY2hlY2tpZF9zZXR1cFsHOxkiD2NvbnRyb2xsZXIiC3NlcnZlclsHQBkiDnJldHVybl90b0AVWwdAGSIRYXNzb2NfaGFuZGxlIiR7SE1BQy1TSEExfXs1MTU4MmQ5NH17Y2RrbzFnPT19WwdAGSINaWRlbnRpdHkiN2h0dHA6Ly9zcGVjcy5vcGVuaWQubmV0L2F1dGgvMi4wL2lkZW50aWZpZXJfc2VsZWN0WwdAGSIKcmVhbG1AFDoTQG9wZW5pZF9uc191cmlAGToPQGltbWVkaWF0ZUY6DkBpZGVudGl0eUAxOhJAYXNzb2NfaGFuZGxlQC46EUBvcF9lbmRwb2ludCIhaHR0cDovL2xvY2FsaG9zdDozMDA5L3NlcnZlcjoKQG1vZGUiEmNoZWNraWRfc2V0dXA6EEBjbGFpbWVkX2lkQCM=--d18faa6ccd17ce34ee9d7d0cc67cfa3b8e5589c1
1368
+ hello: world
1369
+ last_oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1370
+ Setting last_oidreq to <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1371
+ Rendering decide template!
1372
+ Rendered server/decide.html.erb within layouts/server (0.6ms)
1373
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.0ms)
1374
+
1375
+
1376
+ Started POST "/server/decision" for 127.0.0.1 at Sun Mar 31 06:16:32 -0700 2013
1377
+ Processing by ServerController#decision as HTML
1378
+ Parameters: {"authenticity_token"=>"jgWPOedLngI1CoE4miIBy3FprrZr/xYlHnBoTWn9fOc=", "yes"=>"yes", "id_to_send"=>"http://localhost:3009/marcel"}
1379
+ session_id: ff4ab3c2833d6324f1fcc3a4de587fe1
1380
+ session_id cookie: BAh7CiIQX2NzcmZfdG9rZW4iMWpnV1BPZWRMbmdJMUNvRTRtaUlCeTNGcHJyWnIveFlsSG5Cb1RXbjlmT2M9Ig9zZXNzaW9uX2lkIiVmZjRhYjNjMjgzM2Q2MzI0ZjFmY2MzYTRkZTU4N2ZlMSIKaGVsbG8iCndvcmxkIhBsYXN0X29pZHJlcW86I09wZW5JRDo6U2VydmVyOjpDaGVja0lEUmVxdWVzdA46EEB0cnVzdF9yb290IiNodHRwOi8vbG9jYWxob3N0OjMwMTAvY29uc3VtZXI6D0ByZXR1cm5fdG8iLGh0dHA6Ly9sb2NhbGhvc3Q6MzAxMC9jb25zdW1lci9jb21wbGV0ZToNQG1lc3NhZ2VvOhRPcGVuSUQ6Ok1lc3NhZ2UIOhBAbmFtZXNwYWNlc286GU9wZW5JRDo6TmFtZXNwYWNlTWFwCDoYQGFsaWFzX3RvX25hbWVzcGFjZXsGOhNudWxsX25hbWVzcGFjZSIlaHR0cDovL3NwZWNzLm9wZW5pZC5uZXQvYXV0aC8yLjA6GUBpbXBsaWNpdF9uYW1lc3BhY2VzWwA6GEBuYW1lc3BhY2VfdG9fYWxpYXN7BiIlaHR0cDovL3NwZWNzLm9wZW5pZC5uZXQvYXV0aC8yLjA7DToTQG9wZW5pZF9uc191cmlAEzoKQGFyZ3N7DVsHQBMiCW1vZGUiEmNoZWNraWRfc2V0dXBbB0ATIg9jbGFpbWVkX2lkIjdodHRwOi8vc3BlY3Mub3BlbmlkLm5ldC9hdXRoLzIuMC9pZGVudGlmaWVyX3NlbGVjdFsHOhNiYXJlX25hbWVzcGFjZSILYWN0aW9uIgppbmRleFsHOxIiD2NvbnRyb2xsZXIiC3NlcnZlclsHQBMiEWFzc29jX2hhbmRsZSIke0hNQUMtU0hBMX17NTE1ODJkOTR9e2Nka28xZz09fVsHQBMiDnJldHVybl90b0APWwdAEyIKcmVhbG1ADlsHQBMiDWlkZW50aXR5IjdodHRwOi8vc3BlY3Mub3BlbmlkLm5ldC9hdXRoLzIuMC9pZGVudGlmaWVyX3NlbGVjdDoPQGltbWVkaWF0ZUY6DkBpZGVudGl0eUAtOhJAYXNzb2NfaGFuZGxlQCY6EEBjbGFpbWVkX2lkQB06CkBtb2RlIhJjaGVja2lkX3NldHVwOhFAb3BfZW5kcG9pbnQiIWh0dHA6Ly9sb2NhbGhvc3Q6MzAwOS9zZXJ2ZXIiCmZsYXNobzolQWN0aW9uRGlzcGF0Y2g6OkZsYXNoOjpGbGFzaEhhc2gJOg1AZmxhc2hlc3sGOgtub3RpY2UiVllvdSBtdXN0IGVudGVyIGEgdXNlcm5hbWUgdG8gaW4gb3JkZXIgdG8gc2VuZCBhbiBpZGVudGlmaWVyIHRvIHRoZSBSZWx5aW5nIFBhcnR5LjoKQHVzZWRvOghTZXQGOgpAaGFzaHsAOgxAY2xvc2VkRjoJQG5vdzA=--755060a8760641df75a8c6ce57f0e8e076a90b57
1381
+ hello: world
1382
+ last_oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1383
+ Redirected to http://localhost:3010/consumer/complete?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Flocalhost%3A3009%2Fuser%2Fhttp%3A%2F%2Flocalhost%3A3009%2Fmarcel&openid.identity=http%3A%2F%2Flocalhost%3A3009%2Fuser%2Fhttp%3A%2F%2Flocalhost%3A3009%2Fmarcel&openid.mode=id_res&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.op_endpoint=http%3A%2F%2Flocalhost%3A3009%2Fserver&openid.response_nonce=2013-03-31T13%3A16%3A32ZBnQWSS&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete&openid.sig=nk5Cd60iCeaC5tEfTFXeq8bJxkM%3D&openid.signed=assoc_handle%2Cclaimed_id%2Cidentity%2Cmode%2Cns%2Cop_endpoint%2Cresponse_nonce%2Creturn_to%2Csigned
1384
+ Completed 302 Found in 50ms (ActiveRecord: 0.0ms)
1385
+
1386
+
1387
+ Started GET "/consumer/complete?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Flocalhost%3A3009%2Fuser%2Fhttp%3A%2F%2Flocalhost%3A3009%2Fmarcel&openid.identity=http%3A%2F%2Flocalhost%3A3009%2Fuser%2Fhttp%3A%2F%2Flocalhost%3A3009%2Fmarcel&openid.mode=id_res&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.op_endpoint=http%3A%2F%2Flocalhost%3A3009%2Fserver&openid.response_nonce=2013-03-31T13%3A16%3A32ZBnQWSS&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete&openid.sig=nk5Cd60iCeaC5tEfTFXeq8bJxkM%3D&openid.signed=assoc_handle%2Cclaimed_id%2Cidentity%2Cmode%2Cns%2Cop_endpoint%2Cresponse_nonce%2Creturn_to%2Csigned" for 127.0.0.1 at Sun Mar 31 06:16:32 -0700 2013
1388
+ Processing by ConsumerController#complete as HTML
1389
+ Parameters: {"openid.sig"=>"nk5Cd60iCeaC5tEfTFXeq8bJxkM=", "openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.op_endpoint"=>"http://localhost:3009/server", "openid.mode"=>"id_res", "openid.response_nonce"=>"2013-03-31T13:16:32ZBnQWSS", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://localhost:3009/user/http://localhost:3009/marcel", "openid.signed"=>"assoc_handle,claimed_id,identity,mode,ns,op_endpoint,response_nonce,return_to,signed", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.claimed_id"=>"http://localhost:3009/user/http://localhost:3009/marcel"}
1390
+
1391
+
1392
+ Started GET "/user/http://localhost:3009/marcel" for 127.0.0.1 at Sun Mar 31 06:16:32 -0700 2013
1393
+
1394
+ ActionController::RoutingError (No route matches [GET] "/user/http:/localhost:3009/marcel"):
1395
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1396
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1397
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
1398
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
1399
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
1400
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
1401
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1402
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
1403
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
1404
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1405
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
1406
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
1407
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
1408
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
1409
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
1410
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
1411
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
1412
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
1413
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
1414
+ /opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
1415
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start'
1416
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
1417
+ /opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
1418
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `each'
1419
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
1420
+ /opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
1421
+ /opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
1422
+ rack (1.4.5) lib/rack/handler/webrick.rb:13:in `run'
1423
+ rack (1.4.5) lib/rack/server.rb:268:in `start'
1424
+ railties (3.2.13) lib/rails/commands/server.rb:70:in `start'
1425
+ railties (3.2.13) lib/rails/commands.rb:55
1426
+ railties (3.2.13) lib/rails/commands.rb:50:in `tap'
1427
+ railties (3.2.13) lib/rails/commands.rb:50
1428
+ script/rails:6:in `require'
1429
+ script/rails:6
1430
+
1431
+
1432
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
1433
+ Redirected to http://localhost:3010/consumer
1434
+ Completed 302 Found in 103ms (ActiveRecord: 0.0ms)
1435
+
1436
+
1437
+ Started GET "/consumer" for 127.0.0.1 at Sun Mar 31 06:16:32 -0700 2013
1438
+ Processing by ConsumerController#index as HTML
1439
+ Rendered consumer/index.html.erb within layouts/application (1.3ms)
1440
+ Completed 200 OK in 229ms (Views: 219.6ms | ActiveRecord: 0.0ms)
1441
+
1442
+
1443
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Mar 31 06:16:32 -0700 2013
1444
+ Served asset /application.css - 304 Not Modified (0ms)
1445
+
1446
+
1447
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Mar 31 06:16:32 -0700 2013
1448
+ Served asset /jquery.js - 304 Not Modified (0ms)
1449
+
1450
+
1451
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Mar 31 06:16:32 -0700 2013
1452
+ Served asset /application.js - 304 Not Modified (0ms)
1453
+
1454
+
1455
+ Started POST "/server/decision" for 127.0.0.1 at Sun Mar 31 06:16:53 -0700 2013
1456
+ Processing by ServerController#decision as HTML
1457
+ Parameters: {"authenticity_token"=>"jgWPOedLngI1CoE4miIBy3FprrZr/xYlHnBoTWn9fOc=", "yes"=>"yes", "id_to_send"=>"marcel"}
1458
+ session_id: ff4ab3c2833d6324f1fcc3a4de587fe1
1459
+ session_id cookie: BAh7CyIQX2NzcmZfdG9rZW4iMWpnV1BPZWRMbmdJMUNvRTRtaUlCeTNGcHJyWnIveFlsSG5Cb1RXbjlmT2M9Ig9zZXNzaW9uX2lkIiVmZjRhYjNjMjgzM2Q2MzI0ZjFmY2MzYTRkZTU4N2ZlMSINdXNlcm5hbWUiIWh0dHA6Ly9sb2NhbGhvc3Q6MzAwOS9tYXJjZWwiCmhlbGxvIgp3b3JsZCIKZmxhc2hvOiVBY3Rpb25EaXNwYXRjaDo6Rmxhc2g6OkZsYXNoSGFzaAk6DUBmbGFzaGVzewY6CmVycm9yIgGaVmVyaWZpY2F0aW9uIGZhaWxlZDogSFRUUCBSZXNwb25zZSBzdGF0dXMgZnJvbSBpZGVudGl0eSBVUkwgaG9zdCBpcyBub3QgIjIwMCIuR290IHN0YXR1cyAiNDA0IiBmb3IgaHR0cDovL2xvY2FsaG9zdDozMDA5L3VzZXIvaHR0cDovL2xvY2FsaG9zdDozMDA5L21hcmNlbDoKQHVzZWRvOghTZXQGOgpAaGFzaHsGOwdUOgxAY2xvc2VkRjoJQG5vdzAiDmFwcHJvdmFsc1sGIiNodHRwOi8vbG9jYWxob3N0OjMwMTAvY29uc3VtZXI=--419dee51ac0f7222ab6c721397583a987665e92b
1460
+ hello: world
1461
+ last_oidreq:
1462
+ Rendered text template (0.0ms)
1463
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1464
+
1465
+
1466
+ Started POST "/server/decision" for 127.0.0.1 at Sun Mar 31 06:16:57 -0700 2013
1467
+ Processing by ServerController#decision as HTML
1468
+ Parameters: {"authenticity_token"=>"jgWPOedLngI1CoE4miIBy3FprrZr/xYlHnBoTWn9fOc=", "yes"=>"yes", "id_to_send"=>""}
1469
+ session_id: ff4ab3c2833d6324f1fcc3a4de587fe1
1470
+ session_id cookie: BAh7CiIQX2NzcmZfdG9rZW4iMWpnV1BPZWRMbmdJMUNvRTRtaUlCeTNGcHJyWnIveFlsSG5Cb1RXbjlmT2M9Ig11c2VybmFtZSIhaHR0cDovL2xvY2FsaG9zdDozMDA5L21hcmNlbCIPc2Vzc2lvbl9pZCIlZmY0YWIzYzI4MzNkNjMyNGYxZmNjM2E0ZGU1ODdmZTEiCmhlbGxvIgp3b3JsZCIOYXBwcm92YWxzWwYiI2h0dHA6Ly9sb2NhbGhvc3Q6MzAxMC9jb25zdW1lcg==--793b2103b83a8f1f36926f105f4f81683d9f5a7f
1471
+ hello: world
1472
+ last_oidreq:
1473
+ Rendered text template (0.0ms)
1474
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1475
+
1476
+
1477
+ Started GET "/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete" for 127.0.0.1 at Sun Mar 31 06:17:08 -0700 2013
1478
+ Processing by ServerController#index as HTML
1479
+ Parameters: {"openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.mode"=>"checkid_setup", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://specs.openid.net/auth/2.0/identifier_select", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.realm"=>"http://localhost:3010/consumer", "openid.claimed_id"=>"http://specs.openid.net/auth/2.0/identifier_select"}
1480
+ Redirected to http://localhost:3010/consumer/complete?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Flocalhost%3A3009%2Fuser%2Fhttp%3A%2F%2Flocalhost%3A3009%2Fmarcel&openid.identity=http%3A%2F%2Flocalhost%3A3009%2Fuser%2Fhttp%3A%2F%2Flocalhost%3A3009%2Fmarcel&openid.mode=id_res&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.op_endpoint=http%3A%2F%2Flocalhost%3A3009%2Fserver&openid.response_nonce=2013-03-31T13%3A17%3A08ZUxQiz5&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete&openid.sig=4HAQxaR%2B5Mujm5aHJjPjV8E6kPo%3D&openid.signed=assoc_handle%2Cclaimed_id%2Cidentity%2Cmode%2Cns%2Cop_endpoint%2Cresponse_nonce%2Creturn_to%2Csigned
1481
+ Completed 302 Found in 196ms (ActiveRecord: 0.0ms)
1482
+
1483
+
1484
+ Started GET "/consumer/complete?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Flocalhost%3A3009%2Fuser%2Fhttp%3A%2F%2Flocalhost%3A3009%2Fmarcel&openid.identity=http%3A%2F%2Flocalhost%3A3009%2Fuser%2Fhttp%3A%2F%2Flocalhost%3A3009%2Fmarcel&openid.mode=id_res&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.op_endpoint=http%3A%2F%2Flocalhost%3A3009%2Fserver&openid.response_nonce=2013-03-31T13%3A17%3A08ZUxQiz5&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete&openid.sig=4HAQxaR%2B5Mujm5aHJjPjV8E6kPo%3D&openid.signed=assoc_handle%2Cclaimed_id%2Cidentity%2Cmode%2Cns%2Cop_endpoint%2Cresponse_nonce%2Creturn_to%2Csigned" for 127.0.0.1 at Sun Mar 31 06:17:09 -0700 2013
1485
+ Processing by ConsumerController#complete as HTML
1486
+ Parameters: {"openid.sig"=>"4HAQxaR+5Mujm5aHJjPjV8E6kPo=", "openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.op_endpoint"=>"http://localhost:3009/server", "openid.mode"=>"id_res", "openid.response_nonce"=>"2013-03-31T13:17:08ZUxQiz5", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://localhost:3009/user/http://localhost:3009/marcel", "openid.signed"=>"assoc_handle,claimed_id,identity,mode,ns,op_endpoint,response_nonce,return_to,signed", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.claimed_id"=>"http://localhost:3009/user/http://localhost:3009/marcel"}
1487
+
1488
+
1489
+ Started GET "/user/http://localhost:3009/marcel" for 127.0.0.1 at Sun Mar 31 06:17:09 -0700 2013
1490
+
1491
+ ActionController::RoutingError (No route matches [GET] "/user/http:/localhost:3009/marcel"):
1492
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1493
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1494
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
1495
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
1496
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
1497
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
1498
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1499
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
1500
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
1501
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1502
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
1503
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
1504
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
1505
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
1506
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
1507
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
1508
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
1509
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
1510
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
1511
+ /opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
1512
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start'
1513
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
1514
+ /opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
1515
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `each'
1516
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
1517
+ /opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
1518
+ /opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
1519
+ rack (1.4.5) lib/rack/handler/webrick.rb:13:in `run'
1520
+ rack (1.4.5) lib/rack/server.rb:268:in `start'
1521
+ railties (3.2.13) lib/rails/commands/server.rb:70:in `start'
1522
+ railties (3.2.13) lib/rails/commands.rb:55
1523
+ railties (3.2.13) lib/rails/commands.rb:50:in `tap'
1524
+ railties (3.2.13) lib/rails/commands.rb:50
1525
+ script/rails:6:in `require'
1526
+ script/rails:6
1527
+
1528
+
1529
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (3.2ms)
1530
+ Redirected to http://localhost:3010/consumer
1531
+ Completed 302 Found in 70ms (ActiveRecord: 0.0ms)
1532
+
1533
+
1534
+ Started GET "/consumer" for 127.0.0.1 at Sun Mar 31 06:17:09 -0700 2013
1535
+ Processing by ConsumerController#index as HTML
1536
+ Rendered consumer/index.html.erb within layouts/application (1.1ms)
1537
+ Completed 200 OK in 21ms (Views: 17.4ms | ActiveRecord: 0.0ms)
1538
+
1539
+
1540
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Mar 31 06:17:09 -0700 2013
1541
+ Served asset /application.css - 304 Not Modified (0ms)
1542
+
1543
+
1544
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Mar 31 06:17:09 -0700 2013
1545
+ Served asset /application.js - 304 Not Modified (0ms)
1546
+
1547
+
1548
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Mar 31 06:17:09 -0700 2013
1549
+ Served asset /jquery.js - 304 Not Modified (0ms)
1550
+
1551
+
1552
+ Started GET "/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete" for 127.0.0.1 at Sun Mar 31 06:17:16 -0700 2013
1553
+ Processing by ServerController#index as HTML
1554
+ Parameters: {"openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.mode"=>"checkid_setup", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://specs.openid.net/auth/2.0/identifier_select", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.realm"=>"http://localhost:3010/consumer", "openid.claimed_id"=>"http://specs.openid.net/auth/2.0/identifier_select"}
1555
+ Redirected to http://localhost:3010/consumer/complete?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Flocalhost%3A3009%2Fuser%2Fhttp%3A%2F%2Flocalhost%3A3009%2Fmarcel&openid.identity=http%3A%2F%2Flocalhost%3A3009%2Fuser%2Fhttp%3A%2F%2Flocalhost%3A3009%2Fmarcel&openid.mode=id_res&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.op_endpoint=http%3A%2F%2Flocalhost%3A3009%2Fserver&openid.response_nonce=2013-03-31T13%3A17%3A16ZE1EQft&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete&openid.sig=EBYQ%2BmvGOdl6C1fW2uvPjRS3XMk%3D&openid.signed=assoc_handle%2Cclaimed_id%2Cidentity%2Cmode%2Cns%2Cop_endpoint%2Cresponse_nonce%2Creturn_to%2Csigned
1556
+ Completed 302 Found in 25ms (ActiveRecord: 0.0ms)
1557
+
1558
+
1559
+ Started GET "/consumer/complete?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Flocalhost%3A3009%2Fuser%2Fhttp%3A%2F%2Flocalhost%3A3009%2Fmarcel&openid.identity=http%3A%2F%2Flocalhost%3A3009%2Fuser%2Fhttp%3A%2F%2Flocalhost%3A3009%2Fmarcel&openid.mode=id_res&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.op_endpoint=http%3A%2F%2Flocalhost%3A3009%2Fserver&openid.response_nonce=2013-03-31T13%3A17%3A16ZE1EQft&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete&openid.sig=EBYQ%2BmvGOdl6C1fW2uvPjRS3XMk%3D&openid.signed=assoc_handle%2Cclaimed_id%2Cidentity%2Cmode%2Cns%2Cop_endpoint%2Cresponse_nonce%2Creturn_to%2Csigned" for 127.0.0.1 at Sun Mar 31 06:17:16 -0700 2013
1560
+ Processing by ConsumerController#complete as HTML
1561
+ Parameters: {"openid.sig"=>"EBYQ+mvGOdl6C1fW2uvPjRS3XMk=", "openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.op_endpoint"=>"http://localhost:3009/server", "openid.mode"=>"id_res", "openid.response_nonce"=>"2013-03-31T13:17:16ZE1EQft", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://localhost:3009/user/http://localhost:3009/marcel", "openid.signed"=>"assoc_handle,claimed_id,identity,mode,ns,op_endpoint,response_nonce,return_to,signed", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.claimed_id"=>"http://localhost:3009/user/http://localhost:3009/marcel"}
1562
+
1563
+
1564
+ Started GET "/user/http://localhost:3009/marcel" for 127.0.0.1 at Sun Mar 31 06:17:16 -0700 2013
1565
+
1566
+ ActionController::RoutingError (No route matches [GET] "/user/http:/localhost:3009/marcel"):
1567
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1568
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1569
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
1570
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
1571
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
1572
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
1573
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1574
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
1575
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
1576
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1577
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
1578
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
1579
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
1580
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
1581
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
1582
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
1583
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
1584
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
1585
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
1586
+ /opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
1587
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start'
1588
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
1589
+ /opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
1590
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `each'
1591
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
1592
+ /opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
1593
+ /opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
1594
+ rack (1.4.5) lib/rack/handler/webrick.rb:13:in `run'
1595
+ rack (1.4.5) lib/rack/server.rb:268:in `start'
1596
+ railties (3.2.13) lib/rails/commands/server.rb:70:in `start'
1597
+ railties (3.2.13) lib/rails/commands.rb:55
1598
+ railties (3.2.13) lib/rails/commands.rb:50:in `tap'
1599
+ railties (3.2.13) lib/rails/commands.rb:50
1600
+ script/rails:6:in `require'
1601
+ script/rails:6
1602
+
1603
+
1604
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
1605
+ Redirected to http://localhost:3010/consumer
1606
+ Completed 302 Found in 62ms (ActiveRecord: 0.0ms)
1607
+
1608
+
1609
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Mar 31 06:17:16 -0700 2013
1610
+ Served asset /application.css - 304 Not Modified (0ms)
1611
+
1612
+
1613
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Mar 31 06:17:16 -0700 2013
1614
+ Served asset /jquery.js - 304 Not Modified (0ms)
1615
+
1616
+
1617
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Mar 31 06:17:16 -0700 2013
1618
+ Served asset /application.js - 304 Not Modified (0ms)
1619
+
1620
+
1621
+ Started GET "/consumer/start?openid_identifier=http%3A%2F%2Flocalhost%3A3009%2Fserver%2Fidp_xrds" for 127.0.0.1 at Sun Mar 31 06:17:26 -0700 2013
1622
+ Processing by ConsumerController#start as HTML
1623
+ Parameters: {"openid_identifier"=>"http://localhost:3009/server/idp_xrds"}
1624
+
1625
+
1626
+ Started GET "/server/idp_xrds" for 127.0.0.1 at Sun Mar 31 06:17:26 -0700 2013
1627
+ Processing by ServerController#idp_xrds as application/xrds+xml
1628
+ Rendered text template (0.0ms)
1629
+ Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1630
+ Redirected to http://localhost:3009/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete
1631
+ Completed 302 Found in 60ms (ActiveRecord: 0.0ms)
1632
+
1633
+
1634
+ Started GET "/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete" for 127.0.0.1 at Sun Mar 31 06:17:26 -0700 2013
1635
+ Processing by ServerController#index as HTML
1636
+ Parameters: {"openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.mode"=>"checkid_setup", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://specs.openid.net/auth/2.0/identifier_select", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.realm"=>"http://localhost:3010/consumer", "openid.claimed_id"=>"http://specs.openid.net/auth/2.0/identifier_select"}
1637
+ Redirected to http://localhost:3010/consumer/complete?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Flocalhost%3A3009%2Fuser%2Fhttp%3A%2F%2Flocalhost%3A3009%2Fmarcel&openid.identity=http%3A%2F%2Flocalhost%3A3009%2Fuser%2Fhttp%3A%2F%2Flocalhost%3A3009%2Fmarcel&openid.mode=id_res&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.op_endpoint=http%3A%2F%2Flocalhost%3A3009%2Fserver&openid.response_nonce=2013-03-31T13%3A17%3A26Z1eD29V&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete&openid.sig=MXD7sDIZw8q8tsYYlj%2FAsSmIHTg%3D&openid.signed=assoc_handle%2Cclaimed_id%2Cidentity%2Cmode%2Cns%2Cop_endpoint%2Cresponse_nonce%2Creturn_to%2Csigned
1638
+ Completed 302 Found in 27ms (ActiveRecord: 0.0ms)
1639
+
1640
+
1641
+ Started GET "/consumer/complete?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Flocalhost%3A3009%2Fuser%2Fhttp%3A%2F%2Flocalhost%3A3009%2Fmarcel&openid.identity=http%3A%2F%2Flocalhost%3A3009%2Fuser%2Fhttp%3A%2F%2Flocalhost%3A3009%2Fmarcel&openid.mode=id_res&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.op_endpoint=http%3A%2F%2Flocalhost%3A3009%2Fserver&openid.response_nonce=2013-03-31T13%3A17%3A26Z1eD29V&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete&openid.sig=MXD7sDIZw8q8tsYYlj%2FAsSmIHTg%3D&openid.signed=assoc_handle%2Cclaimed_id%2Cidentity%2Cmode%2Cns%2Cop_endpoint%2Cresponse_nonce%2Creturn_to%2Csigned" for 127.0.0.1 at Sun Mar 31 06:17:26 -0700 2013
1642
+ Processing by ConsumerController#complete as HTML
1643
+ Parameters: {"openid.sig"=>"MXD7sDIZw8q8tsYYlj/AsSmIHTg=", "openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.op_endpoint"=>"http://localhost:3009/server", "openid.mode"=>"id_res", "openid.response_nonce"=>"2013-03-31T13:17:26Z1eD29V", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://localhost:3009/user/http://localhost:3009/marcel", "openid.signed"=>"assoc_handle,claimed_id,identity,mode,ns,op_endpoint,response_nonce,return_to,signed", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.claimed_id"=>"http://localhost:3009/user/http://localhost:3009/marcel"}
1644
+
1645
+
1646
+ Started GET "/user/http://localhost:3009/marcel" for 127.0.0.1 at Sun Mar 31 06:17:26 -0700 2013
1647
+
1648
+ ActionController::RoutingError (No route matches [GET] "/user/http:/localhost:3009/marcel"):
1649
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1650
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1651
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
1652
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
1653
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
1654
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
1655
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1656
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
1657
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
1658
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1659
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
1660
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
1661
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
1662
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
1663
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
1664
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
1665
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
1666
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
1667
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
1668
+ /opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
1669
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start'
1670
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
1671
+ /opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
1672
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `each'
1673
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
1674
+ /opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
1675
+ /opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
1676
+ rack (1.4.5) lib/rack/handler/webrick.rb:13:in `run'
1677
+ rack (1.4.5) lib/rack/server.rb:268:in `start'
1678
+ railties (3.2.13) lib/rails/commands/server.rb:70:in `start'
1679
+ railties (3.2.13) lib/rails/commands.rb:55
1680
+ railties (3.2.13) lib/rails/commands.rb:50:in `tap'
1681
+ railties (3.2.13) lib/rails/commands.rb:50
1682
+ script/rails:6:in `require'
1683
+ script/rails:6
1684
+
1685
+
1686
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
1687
+ Redirected to http://localhost:3010/consumer
1688
+ Completed 302 Found in 61ms (ActiveRecord: 0.0ms)
1689
+
1690
+
1691
+ Started GET "/consumer" for 127.0.0.1 at Sun Mar 31 06:17:26 -0700 2013
1692
+ Processing by ConsumerController#index as HTML
1693
+ Rendered consumer/index.html.erb within layouts/application (0.8ms)
1694
+ Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.0ms)
1695
+
1696
+
1697
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Mar 31 06:17:26 -0700 2013
1698
+ Served asset /application.js - 304 Not Modified (0ms)
1699
+
1700
+
1701
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Mar 31 06:17:26 -0700 2013
1702
+ Served asset /jquery.js - 304 Not Modified (0ms)
1703
+
1704
+
1705
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Mar 31 06:17:26 -0700 2013
1706
+ Served asset /application.css - 304 Not Modified (0ms)
1707
+
1708
+
1709
+ Started GET "/consumer" for 127.0.0.1 at Sun Mar 31 06:17:59 -0700 2013
1710
+ Processing by ConsumerController#index as HTML
1711
+ Rendered consumer/index.html.erb within layouts/application (0.7ms)
1712
+ Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms)
1713
+
1714
+
1715
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Mar 31 06:17:59 -0700 2013
1716
+ Served asset /application.css - 304 Not Modified (0ms)
1717
+
1718
+
1719
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Mar 31 06:17:59 -0700 2013
1720
+ Served asset /jquery.js - 304 Not Modified (0ms)
1721
+
1722
+
1723
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Mar 31 06:17:59 -0700 2013
1724
+ Served asset /application.js - 304 Not Modified (0ms)
1725
+
1726
+
1727
+ Started GET "/consumer/start?openid_identifier=http%3A%2F%2Flocalhost%3A3009%2Fserver%2Fidp_xrds" for 127.0.0.1 at Sun Mar 31 06:18:07 -0700 2013
1728
+ Processing by ConsumerController#start as HTML
1729
+ Parameters: {"openid_identifier"=>"http://localhost:3009/server/idp_xrds"}
1730
+
1731
+
1732
+ Started GET "/server/idp_xrds" for 127.0.0.1 at Sun Mar 31 06:18:07 -0700 2013
1733
+ Processing by ServerController#idp_xrds as application/xrds+xml
1734
+ Rendered text template (0.0ms)
1735
+ Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1736
+ Redirected to http://localhost:3009/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete
1737
+ Completed 302 Found in 26ms (ActiveRecord: 0.0ms)
1738
+
1739
+
1740
+ Started GET "/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete" for 127.0.0.1 at Sun Mar 31 06:18:07 -0700 2013
1741
+ Processing by ServerController#index as HTML
1742
+ Parameters: {"openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.mode"=>"checkid_setup", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://specs.openid.net/auth/2.0/identifier_select", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.realm"=>"http://localhost:3010/consumer", "openid.claimed_id"=>"http://specs.openid.net/auth/2.0/identifier_select"}
1743
+ The user hasn't logged in
1744
+ oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1745
+ Setting last_oidreq to <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1746
+ Rendering decide template!
1747
+ Rendered server/decide.html.erb within layouts/server (6.2ms)
1748
+ session last_oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1749
+ session last_oidreq size: 804
1750
+ session_id: d6218bef503e314e9d7332aad45fbbc9
1751
+ session_id cookie: BAh7CSIQX2NzcmZfdG9rZW4iMXlHVTJMb2V0MUZ0ZEZRUVcyZityYkJtTFVBZWkxT0lJczNpRUE5cmpUQms9Ii5PcGVuSUQ6OkNvbnN1bWVyOjpsYXN0X3JlcXVlc3RlZF9lbmRwb2ludG86Ik9wZW5JRDo6T3BlbklEU2VydmljZUVuZHBvaW50DDoSQGNhbm9uaWNhbF9pZDA6EEBjbGFpbWVkX2lkMDoOQGxvY2FsX2lkMDoYQGRpc3BsYXlfaWRlbnRpZmllcjA6D0B0eXBlX3VyaXNbBiIsaHR0cDovL3NwZWNzLm9wZW5pZC5uZXQvYXV0aC8yLjAvc2VydmVyOhBAdXNlZF95YWRpc1Q6EEBzZXJ2ZXJfdXJsIiFodHRwOi8vbG9jYWxob3N0OjMwMDkvc2VydmVyIg9zZXNzaW9uX2lkIiVkNjIxOGJlZjUwM2UzMTRlOWQ3MzMyYWFkNDVmYmJjOSI9T3BlbklEOjpDb25zdW1lcjo6RGlzY292ZXJlZFNlcnZpY2VzOjpPcGVuSUQ6OkNvbnN1bWVyOjpvOilPcGVuSUQ6OkNvbnN1bWVyOjpEaXNjb3ZlcmVkU2VydmljZXMJOhJAc3RhcnRpbmdfdXJsIipodHRwOi8vbG9jYWxob3N0OjMwMDkvc2VydmVyL2lkcF94cmRzOg9AeWFkaXNfdXJsIipodHRwOi8vbG9jYWxob3N0OjMwMDkvc2VydmVyL2lkcF94cmRzOg1AY3VycmVudEAJOg5Ac2VydmljZXNbAA==--41e24383267c05452a1bcd365b2ce4c9c5156926
1752
+ Completed 200 OK in 24ms (Views: 16.2ms | ActiveRecord: 0.0ms)
1753
+
1754
+
1755
+ Started POST "/server/decision" for 127.0.0.1 at Sun Mar 31 06:18:11 -0700 2013
1756
+ Processing by ServerController#decision as HTML
1757
+ Parameters: {"authenticity_token"=>"yGU2Loet1FtdFQQW2f+rbBmLUAei1OIIs3iEA9rjTBk=", "yes"=>"yes", "id_to_send"=>"marcel"}
1758
+ session_id: d6218bef503e314e9d7332aad45fbbc9
1759
+ session_id cookie: BAh7DCIuT3BlbklEOjpDb25zdW1lcjo6bGFzdF9yZXF1ZXN0ZWRfZW5kcG9pbnRvOiJPcGVuSUQ6Ok9wZW5JRFNlcnZpY2VFbmRwb2ludAw6DkBsb2NhbF9pZDA6GEBkaXNwbGF5X2lkZW50aWZpZXIwOg9AdHlwZV91cmlzWwYiLGh0dHA6Ly9zcGVjcy5vcGVuaWQubmV0L2F1dGgvMi4wL3NlcnZlcjoQQHVzZWRfeWFkaXNUOhBAc2VydmVyX3VybCIhaHR0cDovL2xvY2FsaG9zdDozMDA5L3NlcnZlcjoSQGNhbm9uaWNhbF9pZDA6EEBjbGFpbWVkX2lkMCIQX2NzcmZfdG9rZW4iMXlHVTJMb2V0MUZ0ZEZRUVcyZityYkJtTFVBZWkxT0lJczNpRUE5cmpUQms9Ig9zZXNzaW9uX2lkIiVkNjIxOGJlZjUwM2UzMTRlOWQ3MzMyYWFkNDVmYmJjOSIKaGVsbG8iCndvcmxkIj1PcGVuSUQ6OkNvbnN1bWVyOjpEaXNjb3ZlcmVkU2VydmljZXM6Ok9wZW5JRDo6Q29uc3VtZXI6Om86KU9wZW5JRDo6Q29uc3VtZXI6OkRpc2NvdmVyZWRTZXJ2aWNlcwk6D0B5YWRpc191cmwiKmh0dHA6Ly9sb2NhbGhvc3Q6MzAwOS9zZXJ2ZXIvaWRwX3hyZHM6DkBzZXJ2aWNlc1sAOhJAc3RhcnRpbmdfdXJsIipodHRwOi8vbG9jYWxob3N0OjMwMDkvc2VydmVyL2lkcF94cmRzOg1AY3VycmVudEAHIhBsYXN0X29pZHJlcW86I09wZW5JRDo6U2VydmVyOjpDaGVja0lEUmVxdWVzdA46EEB0cnVzdF9yb290IiNodHRwOi8vbG9jYWxob3N0OjMwMTAvY29uc3VtZXI6D0ByZXR1cm5fdG8iLGh0dHA6Ly9sb2NhbGhvc3Q6MzAxMC9jb25zdW1lci9jb21wbGV0ZToNQG1lc3NhZ2VvOhRPcGVuSUQ6Ok1lc3NhZ2UIOhBAbmFtZXNwYWNlc286GU9wZW5JRDo6TmFtZXNwYWNlTWFwCDoYQGFsaWFzX3RvX25hbWVzcGFjZXsGOhNudWxsX25hbWVzcGFjZSIlaHR0cDovL3NwZWNzLm9wZW5pZC5uZXQvYXV0aC8yLjA6GUBpbXBsaWNpdF9uYW1lc3BhY2VzWwA6GEBuYW1lc3BhY2VfdG9fYWxpYXN7BiIlaHR0cDovL3NwZWNzLm9wZW5pZC5uZXQvYXV0aC8yLjA7GjoTQG9wZW5pZF9uc191cmlAHToKQGFyZ3N7DVsHQB0iCW1vZGUiEmNoZWNraWRfc2V0dXBbB0AdIg9jbGFpbWVkX2lkIjdodHRwOi8vc3BlY3Mub3BlbmlkLm5ldC9hdXRoLzIuMC9pZGVudGlmaWVyX3NlbGVjdFsHOhNiYXJlX25hbWVzcGFjZSILYWN0aW9uIgppbmRleFsHOx8iD2NvbnRyb2xsZXIiC3NlcnZlclsHQB0iEWFzc29jX2hhbmRsZSIke0hNQUMtU0hBMX17NTE1ODJkOTR9e2Nka28xZz09fVsHQB0iDnJldHVybl90b0AZWwdAHSIKcmVhbG1AGFsHQB0iDWlkZW50aXR5IjdodHRwOi8vc3BlY3Mub3BlbmlkLm5ldC9hdXRoLzIuMC9pZGVudGlmaWVyX3NlbGVjdDoPQGltbWVkaWF0ZUY6DkBpZGVudGl0eUA3OhJAYXNzb2NfaGFuZGxlQDA7DEAnOgpAbW9kZSISY2hlY2tpZF9zZXR1cDoRQG9wX2VuZHBvaW50IiFodHRwOi8vbG9jYWxob3N0OjMwMDkvc2VydmVyIgpmbGFzaG86JUFjdGlvbkRpc3BhdGNoOjpGbGFzaDo6Rmxhc2hIYXNoCToNQGZsYXNoZXN7BjoLbm90aWNlIi9EbyB5b3UgdHJ1c3QgdGhpcyBzaXRlIHdpdGggeW91ciBpZGVudGl0eT86CkB1c2VkbzoIU2V0BjoKQGhhc2h7ADoMQGNsb3NlZEY6CUBub3cw--279369ace44ed4ba1137444c001224c933b254aa
1760
+ hello: world
1761
+ last_oidreq: <OpenID::Server::CheckIDRequest id:http://specs.openid.net/auth/2.0/identifier_select im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
1762
+ Redirected to http://localhost:3010/consumer/complete?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Flocalhost%3A3009%2Fuser%2Fmarcel&openid.identity=http%3A%2F%2Flocalhost%3A3009%2Fuser%2Fmarcel&openid.mode=id_res&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.op_endpoint=http%3A%2F%2Flocalhost%3A3009%2Fserver&openid.response_nonce=2013-03-31T13%3A18%3A11ZrhmBhZ&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete&openid.sig=VeJwgcmZ8yfGmhLFDsQnLFt4E%2FA%3D&openid.signed=assoc_handle%2Cclaimed_id%2Cidentity%2Cmode%2Cns%2Cop_endpoint%2Cresponse_nonce%2Creturn_to%2Csigned
1763
+ Completed 302 Found in 14ms (ActiveRecord: 0.0ms)
1764
+
1765
+
1766
+ Started GET "/consumer/complete?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Flocalhost%3A3009%2Fuser%2Fmarcel&openid.identity=http%3A%2F%2Flocalhost%3A3009%2Fuser%2Fmarcel&openid.mode=id_res&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.op_endpoint=http%3A%2F%2Flocalhost%3A3009%2Fserver&openid.response_nonce=2013-03-31T13%3A18%3A11ZrhmBhZ&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete&openid.sig=VeJwgcmZ8yfGmhLFDsQnLFt4E%2FA%3D&openid.signed=assoc_handle%2Cclaimed_id%2Cidentity%2Cmode%2Cns%2Cop_endpoint%2Cresponse_nonce%2Creturn_to%2Csigned" for 127.0.0.1 at Sun Mar 31 06:18:11 -0700 2013
1767
+ Processing by ConsumerController#complete as HTML
1768
+ Parameters: {"openid.sig"=>"VeJwgcmZ8yfGmhLFDsQnLFt4E/A=", "openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.op_endpoint"=>"http://localhost:3009/server", "openid.mode"=>"id_res", "openid.response_nonce"=>"2013-03-31T13:18:11ZrhmBhZ", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://localhost:3009/user/marcel", "openid.signed"=>"assoc_handle,claimed_id,identity,mode,ns,op_endpoint,response_nonce,return_to,signed", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.claimed_id"=>"http://localhost:3009/user/marcel"}
1769
+
1770
+
1771
+ Started GET "/user/marcel" for 127.0.0.1 at Sun Mar 31 06:18:11 -0700 2013
1772
+
1773
+ ActionController::RoutingError (No route matches [GET] "/user/marcel"):
1774
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1775
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1776
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
1777
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
1778
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
1779
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
1780
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1781
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
1782
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
1783
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1784
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
1785
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
1786
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
1787
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
1788
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
1789
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
1790
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
1791
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
1792
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
1793
+ /opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
1794
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start'
1795
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
1796
+ /opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
1797
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `each'
1798
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
1799
+ /opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
1800
+ /opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
1801
+ rack (1.4.5) lib/rack/handler/webrick.rb:13:in `run'
1802
+ rack (1.4.5) lib/rack/server.rb:268:in `start'
1803
+ railties (3.2.13) lib/rails/commands/server.rb:70:in `start'
1804
+ railties (3.2.13) lib/rails/commands.rb:55
1805
+ railties (3.2.13) lib/rails/commands.rb:50:in `tap'
1806
+ railties (3.2.13) lib/rails/commands.rb:50
1807
+ script/rails:6:in `require'
1808
+ script/rails:6
1809
+
1810
+
1811
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
1812
+ Redirected to http://localhost:3010/consumer
1813
+ Completed 302 Found in 42ms (ActiveRecord: 0.0ms)
1814
+
1815
+
1816
+ Started GET "/consumer" for 127.0.0.1 at Sun Mar 31 06:18:11 -0700 2013
1817
+ Processing by ConsumerController#index as HTML
1818
+ Rendered consumer/index.html.erb within layouts/application (0.8ms)
1819
+ Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
1820
+
1821
+
1822
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Mar 31 06:18:11 -0700 2013
1823
+ Served asset /application.css - 304 Not Modified (0ms)
1824
+
1825
+
1826
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Mar 31 06:18:11 -0700 2013
1827
+ Served asset /jquery.js - 304 Not Modified (0ms)
1828
+
1829
+
1830
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Mar 31 06:18:11 -0700 2013
1831
+ Served asset /application.js - 304 Not Modified (0ms)
1832
+
1833
+
1834
+ Started GET "/assets/rails.png" for 127.0.0.1 at Sun Mar 31 06:24:32 -0700 2013
1835
+
1836
+ NameError (undefined local variable or method `map' for #<ActionDispatch::Routing::Mapper:0x10347ebc8>):
1837
+ config/routes.rb:2
1838
+ config/routes.rb:1
1839
+
1840
+
1841
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
1842
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
1843
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (18.2ms)
1844
+
1845
+
1846
+ Started GET "/" for 127.0.0.1 at Sun Mar 31 06:24:41 -0700 2013
1847
+
1848
+ ActionController::RoutingError (No route matches [GET] "/"):
1849
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1850
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1851
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
1852
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
1853
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
1854
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
1855
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1856
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
1857
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
1858
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1859
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
1860
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
1861
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
1862
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
1863
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
1864
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
1865
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
1866
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
1867
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
1868
+ /opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
1869
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start'
1870
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
1871
+ /opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
1872
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `each'
1873
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
1874
+ /opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
1875
+ /opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
1876
+ rack (1.4.5) lib/rack/handler/webrick.rb:13:in `run'
1877
+ rack (1.4.5) lib/rack/server.rb:268:in `start'
1878
+ railties (3.2.13) lib/rails/commands/server.rb:70:in `start'
1879
+ railties (3.2.13) lib/rails/commands.rb:55
1880
+ railties (3.2.13) lib/rails/commands.rb:50:in `tap'
1881
+ railties (3.2.13) lib/rails/commands.rb:50
1882
+ script/rails:6:in `require'
1883
+ script/rails:6
1884
+
1885
+
1886
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
1887
+ Connecting to database specified by database.yml
1888
+ Connecting to database specified by database.yml
1889
+ Connecting to database specified by database.yml
1890
+ Connecting to database specified by database.yml
1891
+
1892
+
1893
+ Started GET "/" for 127.0.0.1 at Sun Mar 31 06:28:03 -0700 2013
1894
+
1895
+ ActionDispatch::Session::SessionRestoreError (Session contains objects whose class definition isn't available.
1896
+ Remember to require the classes for all objects kept in the session.
1897
+ (Original exception: uninitialized constant OpenID [NameError])
1898
+ ):
1899
+ actionpack (3.2.13) lib/action_dispatch/middleware/session/abstract_store.rb:64:in `stale_session_check!'
1900
+ actionpack (3.2.13) lib/action_dispatch/middleware/session/cookie_store.rb:48:in `unpacked_cookie_data'
1901
+ rack (1.4.5) lib/rack/session/cookie.rb:107:in `extract_session_id'
1902
+ actionpack (3.2.13) lib/action_dispatch/middleware/session/abstract_store.rb:53:in `extract_session_id'
1903
+ actionpack (3.2.13) lib/action_dispatch/middleware/session/abstract_store.rb:57:in `stale_session_check!'
1904
+ actionpack (3.2.13) lib/action_dispatch/middleware/session/abstract_store.rb:53:in `extract_session_id'
1905
+ rack (1.4.5) lib/rack/session/abstract/id.rb:43:in `send'
1906
+ rack (1.4.5) lib/rack/session/abstract/id.rb:43:in `load_session_id!'
1907
+ rack (1.4.5) lib/rack/session/abstract/id.rb:32:in `[]'
1908
+ rack (1.4.5) lib/rack/session/abstract/id.rb:267:in `current_session_id'
1909
+ rack (1.4.5) lib/rack/session/abstract/id.rb:273:in `session_exists?'
1910
+ rack (1.4.5) lib/rack/session/abstract/id.rb:107:in `send'
1911
+ rack (1.4.5) lib/rack/session/abstract/id.rb:107:in `exists?'
1912
+ rack (1.4.5) lib/rack/session/abstract/id.rb:127:in `load_for_read!'
1913
+ rack (1.4.5) lib/rack/session/abstract/id.rb:64:in `key?'
1914
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:258:in `call'
1915
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
1916
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
1917
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
1918
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
1919
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
1920
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `call'
1921
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__397314981__call__4__callbacks'
1922
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `send'
1923
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
1924
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1925
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `send'
1926
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
1927
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1928
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1929
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1930
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1931
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1932
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
1933
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
1934
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
1935
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
1936
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1937
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
1938
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
1939
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1940
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
1941
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
1942
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
1943
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
1944
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
1945
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
1946
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
1947
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
1948
+ /opt/local/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
1949
+ /opt/local/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
1950
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start'
1951
+ /opt/local/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
1952
+ /opt/local/lib/ruby/1.8/webrick/server.rb:95:in `start'
1953
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `each'
1954
+ /opt/local/lib/ruby/1.8/webrick/server.rb:92:in `start'
1955
+ /opt/local/lib/ruby/1.8/webrick/server.rb:23:in `start'
1956
+ /opt/local/lib/ruby/1.8/webrick/server.rb:82:in `start'
1957
+ rack (1.4.5) lib/rack/handler/webrick.rb:13:in `run'
1958
+ rack (1.4.5) lib/rack/server.rb:268:in `start'
1959
+ railties (3.2.13) lib/rails/commands/server.rb:70:in `start'
1960
+ railties (3.2.13) lib/rails/commands.rb:55
1961
+ railties (3.2.13) lib/rails/commands.rb:50:in `tap'
1962
+ railties (3.2.13) lib/rails/commands.rb:50
1963
+ script/rails:6:in `require'
1964
+ script/rails:6
1965
+
1966
+
1967
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
1968
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.3ms)
1969
+ Rendered /Users/marcel/.gem/ruby/1.8/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (27.7ms)
1970
+
1971
+
1972
+ Started GET "/" for 127.0.0.1 at Sun Mar 31 06:28:16 -0700 2013
1973
+ Processing by LoginController#index as HTML
1974
+ Rendered login/index.html.erb within layouts/server (1.4ms)
1975
+ Completed 200 OK in 188ms (Views: 169.7ms | ActiveRecord: 0.0ms)
1976
+
1977
+
1978
+ Started GET "/user/marcel" for 127.0.0.1 at Sun Mar 31 06:28:31 -0700 2013
1979
+ Processing by ServerController#user_page as HTML
1980
+ Parameters: {"username"=>"marcel"}
1981
+ Rendered text template (0.0ms)
1982
+ Completed 200 OK in 32ms (Views: 29.7ms | ActiveRecord: 0.0ms)
1983
+
1984
+
1985
+ Started GET "/user/marcel" for 127.0.0.1 at Sun Mar 31 06:28:53 -0700 2013
1986
+ Processing by ServerController#user_page as HTML
1987
+ Parameters: {"username"=>"marcel"}
1988
+ Rendered text template (0.0ms)
1989
+ Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
1990
+
1991
+
1992
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Mar 31 06:29:00 -0700 2013
1993
+ Served asset /jquery.js - 304 Not Modified (0ms)
1994
+
1995
+
1996
+ Started GET "/consumer/start?openid_identifier=http%3A%2F%2Flocalhost%3A3009%2Fuser%2Fmarcel" for 127.0.0.1 at Sun Mar 31 06:29:10 -0700 2013
1997
+ Processing by ConsumerController#start as HTML
1998
+ Parameters: {"openid_identifier"=>"http://localhost:3009/user/marcel"}
1999
+
2000
+
2001
+ Started GET "/user/marcel" for 127.0.0.1 at Sun Mar 31 06:29:10 -0700 2013
2002
+ Processing by ServerController#user_page as application/xrds+xml
2003
+ Parameters: {"username"=>"marcel"}
2004
+ Rendered text template (0.0ms)
2005
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2006
+ Redirected to http://localhost:3009/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Flocalhost%3A3009%2Fuser%2Fmarcel&openid.identity=http%3A%2F%2Flocalhost%3A3009%2Fuser%2Fmarcel&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete
2007
+ Completed 302 Found in 157ms (ActiveRecord: 0.0ms)
2008
+
2009
+
2010
+ Started GET "/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Flocalhost%3A3009%2Fuser%2Fmarcel&openid.identity=http%3A%2F%2Flocalhost%3A3009%2Fuser%2Fmarcel&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.realm=http%3A%2F%2Flocalhost%3A3010%2Fconsumer&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete" for 127.0.0.1 at Sun Mar 31 06:29:10 -0700 2013
2011
+ Processing by ServerController#index as HTML
2012
+ Parameters: {"openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.mode"=>"checkid_setup", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://localhost:3009/user/marcel", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.realm"=>"http://localhost:3010/consumer", "openid.claimed_id"=>"http://localhost:3009/user/marcel"}
2013
+ Setting last_oidreq to <OpenID::Server::CheckIDRequest id:http://localhost:3009/user/marcel im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
2014
+ Rendering decide template!
2015
+ Rendered server/decide.html.erb within layouts/server (1.2ms)
2016
+ Completed 200 OK in 7ms (Views: 3.8ms | ActiveRecord: 0.0ms)
2017
+
2018
+
2019
+ Started POST "/server/decision" for 127.0.0.1 at Sun Mar 31 06:29:15 -0700 2013
2020
+ Processing by ServerController#decision as HTML
2021
+ Parameters: {"authenticity_token"=>"5AZtwrdNxknr4gvSZ1lKzmmJqX+iJdHapyEW/jkB90M=", "yes"=>"yes"}
2022
+ session_id: a0903f7e5c643a4e0ee0334fcb19b4c6
2023
+ session_id cookie: BAh7CyIuT3BlbklEOjpDb25zdW1lcjo6bGFzdF9yZXF1ZXN0ZWRfZW5kcG9pbnRvOiJPcGVuSUQ6Ok9wZW5JRFNlcnZpY2VFbmRwb2ludAw6DkBsb2NhbF9pZDA6GEBkaXNwbGF5X2lkZW50aWZpZXIwOg9AdHlwZV91cmlzWwgiLGh0dHA6Ly9zcGVjcy5vcGVuaWQubmV0L2F1dGgvMi4wL3NpZ25vbiIhaHR0cDovL29wZW5pZC5uZXQvc2lnbm9uLzEuMCIfaHR0cDovL29wZW5pZC5uZXQvc3JlZy8xLjA6EEB1c2VkX3lhZGlzVDoQQHNlcnZlcl91cmwiIWh0dHA6Ly9sb2NhbGhvc3Q6MzAwOS9zZXJ2ZXI6EkBjYW5vbmljYWxfaWQwOhBAY2xhaW1lZF9pZCImaHR0cDovL2xvY2FsaG9zdDozMDA5L3VzZXIvbWFyY2VsIhBfY3NyZl90b2tlbiIxNUFadHdyZE54a25yNGd2U1oxbEt6bW1KcVgraUpkSGFweUVXL2prQjkwTT0iD3Nlc3Npb25faWQiJWEwOTAzZjdlNWM2NDNhNGUwZWUwMzM0ZmNiMTliNGM2Ij1PcGVuSUQ6OkNvbnN1bWVyOjpEaXNjb3ZlcmVkU2VydmljZXM6Ok9wZW5JRDo6Q29uc3VtZXI6Om86KU9wZW5JRDo6Q29uc3VtZXI6OkRpc2NvdmVyZWRTZXJ2aWNlcwk6DkBzZXJ2aWNlc1sAOg1AY3VycmVudEAHOg9AeWFkaXNfdXJsIiZodHRwOi8vbG9jYWxob3N0OjMwMDkvdXNlci9tYXJjZWw6EkBzdGFydGluZ191cmwiJmh0dHA6Ly9sb2NhbGhvc3Q6MzAwOS91c2VyL21hcmNlbCIQbGFzdF9vaWRyZXFvOiNPcGVuSUQ6OlNlcnZlcjo6Q2hlY2tJRFJlcXVlc3QOOhFAb3BfZW5kcG9pbnQiIWh0dHA6Ly9sb2NhbGhvc3Q6MzAwOS9zZXJ2ZXI6EEB0cnVzdF9yb290IiNodHRwOi8vbG9jYWxob3N0OjMwMTAvY29uc3VtZXI6DUBtZXNzYWdlbzoUT3BlbklEOjpNZXNzYWdlCDoTQG9wZW5pZF9uc191cmkiJWh0dHA6Ly9zcGVjcy5vcGVuaWQubmV0L2F1dGgvMi4wOhBAbmFtZXNwYWNlc286GU9wZW5JRDo6TmFtZXNwYWNlTWFwCDoYQG5hbWVzcGFjZV90b19hbGlhc3sGIiVodHRwOi8vc3BlY3Mub3BlbmlkLm5ldC9hdXRoLzIuMDoTbnVsbF9uYW1lc3BhY2U6GEBhbGlhc190b19uYW1lc3BhY2V7BjsbQBw6GUBpbXBsaWNpdF9uYW1lc3BhY2VzWwA6CkBhcmdzew1bB0AcIgltb2RlIhJjaGVja2lkX3NldHVwWwdAHCIPY2xhaW1lZF9pZCImaHR0cDovL2xvY2FsaG9zdDozMDA5L3VzZXIvbWFyY2VsWwc6E2JhcmVfbmFtZXNwYWNlIg9jb250cm9sbGVyIgtzZXJ2ZXJbBzsfIgthY3Rpb24iCmluZGV4WwdAHCIRYXNzb2NfaGFuZGxlIiR7SE1BQy1TSEExfXs1MTU4MmQ5NH17Y2RrbzFnPT19WwdAHCIOcmV0dXJuX3RvIixodHRwOi8vbG9jYWxob3N0OjMwMTAvY29uc3VtZXIvY29tcGxldGVbB0AcIgpyZWFsbUAaWwdAHCINaWRlbnRpdHkiJmh0dHA6Ly9sb2NhbGhvc3Q6MzAwOS91c2VyL21hcmNlbDoPQHJldHVybl90b0A0OhJAYXNzb2NfaGFuZGxlQDE6D0BpbW1lZGlhdGVGOg5AaWRlbnRpdHlAOToKQG1vZGUiEmNoZWNraWRfc2V0dXA7DEAoIgpmbGFzaG86JUFjdGlvbkRpc3BhdGNoOjpGbGFzaDo6Rmxhc2hIYXNoCToNQGZsYXNoZXN7BjoLbm90aWNlIi9EbyB5b3UgdHJ1c3QgdGhpcyBzaXRlIHdpdGggeW91ciBpZGVudGl0eT86CkB1c2VkbzoIU2V0BjoKQGhhc2h7ADoMQGNsb3NlZEY6CUBub3cw--12967a41bad9d491f50492d6caaaef2b33acb4f6
2024
+ hello:
2025
+ last_oidreq: <OpenID::Server::CheckIDRequest id:http://localhost:3009/user/marcel im:false tr:http://localhost:3010/consumer ah:{HMAC-SHA1}{51582d94}{cdko1g==}>
2026
+ Redirected to http://localhost:3010/consumer/complete?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Flocalhost%3A3009%2Fuser%2Fmarcel&openid.identity=http%3A%2F%2Flocalhost%3A3009%2Fuser%2Fmarcel&openid.mode=id_res&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.op_endpoint=http%3A%2F%2Flocalhost%3A3009%2Fserver&openid.response_nonce=2013-03-31T13%3A29%3A15Zsn1mhg&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete&openid.sig=XUa1u9njJyD6Ji1pcDegIvvLCpI%3D&openid.signed=assoc_handle%2Cclaimed_id%2Cidentity%2Cmode%2Cns%2Cop_endpoint%2Cresponse_nonce%2Creturn_to%2Csigned
2027
+ Completed 302 Found in 13ms (ActiveRecord: 0.0ms)
2028
+
2029
+
2030
+ Started GET "/consumer/complete?openid.assoc_handle=%7BHMAC-SHA1%7D%7B51582d94%7D%7Bcdko1g%3D%3D%7D&openid.claimed_id=http%3A%2F%2Flocalhost%3A3009%2Fuser%2Fmarcel&openid.identity=http%3A%2F%2Flocalhost%3A3009%2Fuser%2Fmarcel&openid.mode=id_res&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.op_endpoint=http%3A%2F%2Flocalhost%3A3009%2Fserver&openid.response_nonce=2013-03-31T13%3A29%3A15Zsn1mhg&openid.return_to=http%3A%2F%2Flocalhost%3A3010%2Fconsumer%2Fcomplete&openid.sig=XUa1u9njJyD6Ji1pcDegIvvLCpI%3D&openid.signed=assoc_handle%2Cclaimed_id%2Cidentity%2Cmode%2Cns%2Cop_endpoint%2Cresponse_nonce%2Creturn_to%2Csigned" for 127.0.0.1 at Sun Mar 31 06:29:15 -0700 2013
2031
+ Processing by ConsumerController#complete as HTML
2032
+ Parameters: {"openid.sig"=>"XUa1u9njJyD6Ji1pcDegIvvLCpI=", "openid.return_to"=>"http://localhost:3010/consumer/complete", "openid.op_endpoint"=>"http://localhost:3009/server", "openid.mode"=>"id_res", "openid.response_nonce"=>"2013-03-31T13:29:15Zsn1mhg", "openid.ns"=>"http://specs.openid.net/auth/2.0", "openid.identity"=>"http://localhost:3009/user/marcel", "openid.signed"=>"assoc_handle,claimed_id,identity,mode,ns,op_endpoint,response_nonce,return_to,signed", "openid.assoc_handle"=>"{HMAC-SHA1}{51582d94}{cdko1g==}", "openid.claimed_id"=>"http://localhost:3009/user/marcel"}
2033
+ Redirected to http://localhost:3010/consumer
2034
+ Completed 302 Found in 12ms (ActiveRecord: 0.0ms)
2035
+
2036
+
2037
+ Started GET "/consumer" for 127.0.0.1 at Sun Mar 31 06:29:15 -0700 2013
2038
+ Processing by ConsumerController#index as HTML
2039
+ Rendered consumer/index.html.erb within layouts/application (1.4ms)
2040
+ Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.0ms)
2041
+
2042
+
2043
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sun Mar 31 06:29:15 -0700 2013
2044
+ Served asset /application.css - 304 Not Modified (0ms)
2045
+
2046
+
2047
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sun Mar 31 06:29:15 -0700 2013
2048
+ Served asset /application.js - 304 Not Modified (0ms)
2049
+
2050
+
2051
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sun Mar 31 06:29:15 -0700 2013
2052
+ Served asset /jquery.js - 304 Not Modified (0ms)