activeresource 2.3.4 → 2.3.5

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of activeresource might be problematic. Click here for more details.

data/CHANGELOG CHANGED
@@ -1,3 +1,12 @@
1
+ *2.3.5 (November 25, 2009)*
2
+
3
+ * Minor Bug Fixes and deprecation warnings
4
+
5
+ * More flexible content type handling when parsing responses.
6
+
7
+ Ensures that ARes will handle responses like test/xml, or content types
8
+ with charsets included.
9
+
1
10
  *2.3.4 (September 4, 2009)*
2
11
 
3
12
  * Add support for errors in JSON format. #1956 [Fabien Jakimowicz]
data/Rakefile CHANGED
@@ -66,7 +66,7 @@ spec = Gem::Specification.new do |s|
66
66
  s.files = s.files + Dir.glob( "#{dir}/**/*" ).delete_if { |item| item.include?( "\.svn" ) }
67
67
  end
68
68
 
69
- s.add_dependency('activesupport', '= 2.3.4' + PKG_BUILD)
69
+ s.add_dependency('activesupport', '= 2.3.5' + PKG_BUILD)
70
70
 
71
71
  s.require_path = 'lib'
72
72
  s.autorequire = 'active_resource'
@@ -260,9 +260,9 @@ module ActiveResource
260
260
  true
261
261
  rescue ResourceInvalid => error
262
262
  case error.response['Content-Type']
263
- when 'application/xml'
263
+ when /xml/
264
264
  errors.from_xml(error.response.body)
265
- when 'application/json'
265
+ when /json/
266
266
  errors.from_json(error.response.body)
267
267
  end
268
268
  false
@@ -2,7 +2,7 @@ module ActiveResource
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 2
4
4
  MINOR = 3
5
- TINY = 4
5
+ TINY = 5
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
@@ -1 +1,2 @@
1
1
  require 'active_resource'
2
+ ActiveSupport::Deprecation.warn 'require "activeresource" is deprecated and will be removed in Rails 3. Use require "active_resource" instead.'
@@ -4,8 +4,8 @@ require "fixtures/person"
4
4
  class BaseErrorsTest < Test::Unit::TestCase
5
5
  def setup
6
6
  ActiveResource::HttpMock.respond_to do |mock|
7
- mock.post "/people.xml", {}, %q(<?xml version="1.0" encoding="UTF-8"?><errors><error>Age can't be blank</error><error>Name can't be blank</error><error>Name must start with a letter</error><error>Person quota full for today.</error></errors>), 422, {'Content-Type' => 'application/xml'}
8
- mock.post "/people.json", {}, %q({"errors":["Age can't be blank","Name can't be blank","Name must start with a letter","Person quota full for today."]}), 422, {'Content-Type' => 'application/json'}
7
+ mock.post "/people.xml", {}, %q(<?xml version="1.0" encoding="UTF-8"?><errors><error>Age can't be blank</error><error>Name can't be blank</error><error>Name must start with a letter</error><error>Person quota full for today.</error></errors>), 422, {'Content-Type' => 'application/xml; charset=utf-8'}
8
+ mock.post "/people.json", {}, %q({"errors":["Age can't be blank","Name can't be blank","Name must start with a letter","Person quota full for today."]}), 422, {'Content-Type' => 'application/json; charset=utf-8'}
9
9
  end
10
10
  @person = Person.new(:name => '', :age => '')
11
11
  assert_equal @person.save, false
@@ -7972,3 +7972,1731 @@ POST http://somewhere.else:80/people.json
7972
7972
  --> 201 201 (50 0ms)
7973
7973
  POST http://somewhere.else:80/people.xml
7974
7974
  --> 201 201 (132 0ms)
7975
+ I, [2009-09-14T21:24:22.919953 #50281] INFO -- : DELETE http://localhost:80/people/2.xml
7976
+ I, [2009-09-14T21:24:22.945630 #50281] INFO -- : --> 200 200 (0 0ms)
7977
+ I, [2009-09-14T21:24:22.946693 #50281] INFO -- : GET http://localhost:80/people/2.xml
7978
+ I, [2009-09-14T21:24:22.946794 #50281] INFO -- : --> 200 200 (107 0ms)
7979
+ I, [2009-09-14T21:24:22.989426 #50281] INFO -- : POST http://localhost:80/people/2/addresses.xml
7980
+ I, [2009-09-14T21:24:22.989575 #50281] INFO -- : --> 201 201 (0 0ms)
7981
+ I, [2009-09-14T21:24:22.990381 #50281] INFO -- : PUT http://localhost:80/people/2.xml
7982
+ I, [2009-09-14T21:24:22.990471 #50281] INFO -- : --> 204 204 (0 0ms)
7983
+ I, [2009-09-14T21:24:22.991355 #50281] INFO -- : POST http://localhost:80/people/2.xml
7984
+ I, [2009-09-14T21:24:22.991574 #50281] INFO -- : POST http://localhost:80/people/2/addresses.xml
7985
+ I, [2009-09-14T21:24:22.991747 #50281] INFO -- : PUT http://localhost:80/people/2.xml
7986
+ I, [2009-09-14T21:24:22.991942 #50281] INFO -- : DELETE http://localhost:80/people/2.xml
7987
+ I, [2009-09-14T21:24:23.021253 #50281] INFO -- : POST http://37s.sunrise.i:3000/people.json
7988
+ I, [2009-09-14T21:24:23.021420 #50281] INFO -- : --> 422 422 (118 0ms)
7989
+ I, [2009-09-14T21:24:23.027192 #50281] INFO -- : POST http://37s.sunrise.i:3000/people.xml
7990
+ I, [2009-09-14T21:24:23.027344 #50281] INFO -- : --> 422 422 (209 0ms)
7991
+ I, [2009-09-14T21:24:23.030327 #50281] INFO -- : POST http://37s.sunrise.i:3000/people.json
7992
+ I, [2009-09-14T21:24:23.030465 #50281] INFO -- : --> 422 422 (118 0ms)
7993
+ I, [2009-09-14T21:24:23.031293 #50281] INFO -- : POST http://37s.sunrise.i:3000/people.xml
7994
+ I, [2009-09-14T21:24:23.031389 #50281] INFO -- : --> 422 422 (209 0ms)
7995
+ I, [2009-09-14T21:24:23.033508 #50281] INFO -- : POST http://37s.sunrise.i:3000/people.json
7996
+ I, [2009-09-14T21:24:23.033632 #50281] INFO -- : --> 422 422 (118 0ms)
7997
+ I, [2009-09-14T21:24:23.034615 #50281] INFO -- : POST http://37s.sunrise.i:3000/people.xml
7998
+ I, [2009-09-14T21:24:23.034708 #50281] INFO -- : --> 422 422 (209 0ms)
7999
+ I, [2009-09-14T21:24:23.036864 #50281] INFO -- : POST http://37s.sunrise.i:3000/people.json
8000
+ I, [2009-09-14T21:24:23.036989 #50281] INFO -- : --> 422 422 (118 0ms)
8001
+ I, [2009-09-14T21:24:23.037978 #50281] INFO -- : POST http://37s.sunrise.i:3000/people.xml
8002
+ I, [2009-09-14T21:24:23.038086 #50281] INFO -- : --> 422 422 (209 0ms)
8003
+ I, [2009-09-14T21:24:23.074441 #50281] INFO -- : POST http://37s.sunrise.i:3000/people.json
8004
+ I, [2009-09-14T21:24:23.074586 #50281] INFO -- : --> 422 422 (118 0ms)
8005
+ I, [2009-09-14T21:24:23.075428 #50281] INFO -- : POST http://37s.sunrise.i:3000/people.xml
8006
+ I, [2009-09-14T21:24:23.075520 #50281] INFO -- : --> 422 422 (209 0ms)
8007
+ I, [2009-09-14T21:24:23.077530 #50281] INFO -- : POST http://37s.sunrise.i:3000/people.json
8008
+ I, [2009-09-14T21:24:23.077673 #50281] INFO -- : --> 422 422 (118 0ms)
8009
+ I, [2009-09-14T21:24:23.078663 #50281] INFO -- : POST http://37s.sunrise.i:3000/people.xml
8010
+ I, [2009-09-14T21:24:23.078793 #50281] INFO -- : --> 422 422 (209 0ms)
8011
+ I, [2009-09-14T21:24:23.095453 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
8012
+ I, [2009-09-14T21:24:23.095594 #50281] INFO -- : --> 200 200 (106 0ms)
8013
+ I, [2009-09-14T21:24:23.146805 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
8014
+ I, [2009-09-14T21:24:23.146971 #50281] INFO -- : --> 200 200 (106 0ms)
8015
+ I, [2009-09-14T21:24:23.148565 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8016
+ I, [2009-09-14T21:24:23.148687 #50281] INFO -- : --> 200 200 (120 0ms)
8017
+ I, [2009-09-14T21:24:23.162103 #50281] INFO -- : POST http://37s.sunrise.i:3000/people.xml
8018
+ I, [2009-09-14T21:24:23.162316 #50281] INFO -- : --> 201 201 (109 0ms)
8019
+ I, [2009-09-14T21:24:23.165790 #50281] INFO -- : POST http://37s.sunrise.i:3000/people.xml
8020
+ I, [2009-09-14T21:24:23.165954 #50281] INFO -- : --> 409 409 (0 0ms)
8021
+ I, [2009-09-14T21:24:23.176076 #50281] INFO -- : POST http://37s.sunrise.i:3000/people/1/addresses.xml
8022
+ I, [2009-09-14T21:24:23.176250 #50281] INFO -- : --> 201 201 (0 0ms)
8023
+ I, [2009-09-14T21:24:23.186390 #50281] INFO -- : POST http://37s.sunrise.i:3000/people.xml
8024
+ I, [2009-09-14T21:24:23.186781 #50281] INFO -- : --> 201 201 (0 0ms)
8025
+ I, [2009-09-14T21:24:23.330055 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml
8026
+ I, [2009-09-14T21:24:23.330203 #50281] INFO -- : --> 200 200 (106 0ms)
8027
+ I, [2009-09-14T21:24:23.339513 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/4.xml
8028
+ I, [2009-09-14T21:24:23.339662 #50281] INFO -- : --> 404 404 (0 0ms)
8029
+ I, [2009-09-14T21:24:23.362630 #50281] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml
8030
+ I, [2009-09-14T21:24:23.362845 #50281] INFO -- : --> 200 200 (0 0ms)
8031
+ I, [2009-09-14T21:24:23.363077 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
8032
+ I, [2009-09-14T21:24:23.363158 #50281] INFO -- : --> 404 404 (0 0ms)
8033
+ I, [2009-09-14T21:24:23.374985 #50281] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml
8034
+ I, [2009-09-14T21:24:23.375153 #50281] INFO -- : --> 200 200 (0 0ms)
8035
+ I, [2009-09-14T21:24:23.375382 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
8036
+ I, [2009-09-14T21:24:23.375466 #50281] INFO -- : --> 410 410 (0 0ms)
8037
+ I, [2009-09-14T21:24:23.383843 #50281] INFO -- : DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml
8038
+ I, [2009-09-14T21:24:23.384099 #50281] INFO -- : --> 200 200 (0 0ms)
8039
+ I, [2009-09-14T21:24:23.384431 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8040
+ I, [2009-09-14T21:24:23.384594 #50281] INFO -- : --> 404 404 (0 0ms)
8041
+ I, [2009-09-14T21:24:23.394988 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
8042
+ I, [2009-09-14T21:24:23.395181 #50281] INFO -- : --> 200 200 (106 0ms)
8043
+ I, [2009-09-14T21:24:23.397116 #50281] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml
8044
+ I, [2009-09-14T21:24:23.397287 #50281] INFO -- : --> 200 200 (0 0ms)
8045
+ I, [2009-09-14T21:24:23.397578 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
8046
+ I, [2009-09-14T21:24:23.397670 #50281] INFO -- : --> 404 404 (0 0ms)
8047
+ I, [2009-09-14T21:24:23.406314 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
8048
+ I, [2009-09-14T21:24:23.406475 #50281] INFO -- : --> 200 200 (106 0ms)
8049
+ I, [2009-09-14T21:24:23.408011 #50281] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml
8050
+ I, [2009-09-14T21:24:23.408116 #50281] INFO -- : --> 200 200 (0 0ms)
8051
+ I, [2009-09-14T21:24:23.408365 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
8052
+ I, [2009-09-14T21:24:23.408446 #50281] INFO -- : --> 410 410 (0 0ms)
8053
+ I, [2009-09-14T21:24:23.416351 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8054
+ I, [2009-09-14T21:24:23.416547 #50281] INFO -- : --> 200 200 (120 0ms)
8055
+ I, [2009-09-14T21:24:23.419011 #50281] INFO -- : DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml
8056
+ I, [2009-09-14T21:24:23.419228 #50281] INFO -- : --> 200 200 (0 0ms)
8057
+ I, [2009-09-14T21:24:23.419568 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8058
+ I, [2009-09-14T21:24:23.419668 #50281] INFO -- : --> 404 404 (0 0ms)
8059
+ I, [2009-09-14T21:24:23.428427 #50281] INFO -- : HEAD http://37s.sunrise.i:3000/people/1.xml
8060
+ I, [2009-09-14T21:24:23.428624 #50281] INFO -- : --> 200 200 (0 0ms)
8061
+ I, [2009-09-14T21:24:23.428752 #50281] INFO -- : HEAD http://37s.sunrise.i:3000/people/99.xml
8062
+ I, [2009-09-14T21:24:23.428838 #50281] INFO -- : --> 404 404 (0 0ms)
8063
+ I, [2009-09-14T21:24:23.429219 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
8064
+ I, [2009-09-14T21:24:23.429404 #50281] INFO -- : --> 200 200 (106 0ms)
8065
+ I, [2009-09-14T21:24:23.430935 #50281] INFO -- : HEAD http://37s.sunrise.i:3000/people/1.xml
8066
+ I, [2009-09-14T21:24:23.431045 #50281] INFO -- : --> 200 200 (0 0ms)
8067
+ I, [2009-09-14T21:24:23.431276 #50281] INFO -- : HEAD http://37s.sunrise.i:3000/people/99.xml
8068
+ I, [2009-09-14T21:24:23.431365 #50281] INFO -- : --> 404 404 (0 0ms)
8069
+ I, [2009-09-14T21:24:23.431532 #50281] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml
8070
+ I, [2009-09-14T21:24:23.431619 #50281] INFO -- : --> 200 200 (0 0ms)
8071
+ I, [2009-09-14T21:24:23.431743 #50281] INFO -- : HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml
8072
+ I, [2009-09-14T21:24:23.431829 #50281] INFO -- : --> 404 404 (0 0ms)
8073
+ I, [2009-09-14T21:24:23.431979 #50281] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml
8074
+ I, [2009-09-14T21:24:23.432064 #50281] INFO -- : --> 404 404 (0 0ms)
8075
+ I, [2009-09-14T21:24:23.432217 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8076
+ I, [2009-09-14T21:24:23.432296 #50281] INFO -- : --> 200 200 (120 0ms)
8077
+ I, [2009-09-14T21:24:23.433516 #50281] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml
8078
+ I, [2009-09-14T21:24:23.433622 #50281] INFO -- : --> 200 200 (0 0ms)
8079
+ I, [2009-09-14T21:24:23.433799 #50281] INFO -- : HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml
8080
+ I, [2009-09-14T21:24:23.433886 #50281] INFO -- : --> 404 404 (0 0ms)
8081
+ I, [2009-09-14T21:24:23.434085 #50281] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml
8082
+ I, [2009-09-14T21:24:23.434172 #50281] INFO -- : --> 404 404 (0 0ms)
8083
+ I, [2009-09-14T21:24:23.441773 #50281] INFO -- : HEAD http://37s.sunrise.i:3000/people/1.xml
8084
+ I, [2009-09-14T21:24:23.441900 #50281] INFO -- : --> 410 410 (0 0ms)
8085
+ I, [2009-09-14T21:24:23.449974 #50281] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg.xml
8086
+ I, [2009-09-14T21:24:23.450139 #50281] INFO -- : --> 200 200 (0 0ms)
8087
+ I, [2009-09-14T21:24:23.450400 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml
8088
+ I, [2009-09-14T21:24:23.450528 #50281] INFO -- : --> 200 200 (106 0ms)
8089
+ I, [2009-09-14T21:24:23.452128 #50281] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg.xml
8090
+ I, [2009-09-14T21:24:23.452268 #50281] INFO -- : --> 200 200 (0 0ms)
8091
+ I, [2009-09-14T21:24:23.452416 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml
8092
+ I, [2009-09-14T21:24:23.452490 #50281] INFO -- : --> 200 200 (106 0ms)
8093
+ I, [2009-09-14T21:24:23.453675 #50281] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml
8094
+ I, [2009-09-14T21:24:23.453779 #50281] INFO -- : --> 200 200 (0 0ms)
8095
+ I, [2009-09-14T21:24:23.453913 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml
8096
+ I, [2009-09-14T21:24:23.453987 #50281] INFO -- : --> 200 200 (106 0ms)
8097
+ I, [2009-09-14T21:24:23.455126 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml
8098
+ I, [2009-09-14T21:24:23.455223 #50281] INFO -- : --> 200 200 (120 0ms)
8099
+ I, [2009-09-14T21:24:23.456462 #50281] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml
8100
+ I, [2009-09-14T21:24:23.456590 #50281] INFO -- : --> 200 200 (0 0ms)
8101
+ I, [2009-09-14T21:24:23.464525 #50281] INFO -- : HEAD http://37s.sunrise.i:3000/people/not-mocked.xml
8102
+ I, [2009-09-14T21:24:23.464708 #50281] INFO -- : --> 200 200 (0 0ms)
8103
+ I, [2009-09-14T21:24:23.487339 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8104
+ I, [2009-09-14T21:24:23.487501 #50281] INFO -- : --> 200 200 (120 0ms)
8105
+ I, [2009-09-14T21:24:23.547774 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/5.xml
8106
+ I, [2009-09-14T21:24:23.547935 #50281] INFO -- : --> 200 200 (223 0ms)
8107
+ I, [2009-09-14T21:24:23.557598 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8108
+ I, [2009-09-14T21:24:23.557752 #50281] INFO -- : --> 200 200 (120 0ms)
8109
+ I, [2009-09-14T21:24:23.567067 #50281] INFO -- : GET http://37s.sunrise.i:3000/customers/1.xml
8110
+ I, [2009-09-14T21:24:23.567231 #50281] INFO -- : --> 200 200 (1458 0ms)
8111
+ I, [2009-09-14T21:24:23.634160 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml
8112
+ I, [2009-09-14T21:24:23.634325 #50281] INFO -- : --> 200 200 (106 0ms)
8113
+ I, [2009-09-14T21:24:23.635884 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml
8114
+ I, [2009-09-14T21:24:23.636076 #50281] INFO -- : --> 200 200 (106 0ms)
8115
+ I, [2009-09-14T21:24:23.644907 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8116
+ I, [2009-09-14T21:24:23.645150 #50281] INFO -- : --> 200 200 (120 0ms)
8117
+ I, [2009-09-14T21:24:23.646829 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8118
+ I, [2009-09-14T21:24:23.646933 #50281] INFO -- : --> 200 200 (120 0ms)
8119
+ I, [2009-09-14T21:24:23.655574 #50281] INFO -- : GET http://37s.sunrise.i:3000/people.xml
8120
+ I, [2009-09-14T21:24:23.655724 #50281] INFO -- : --> 200 200 (222 0ms)
8121
+ I, [2009-09-14T21:24:23.658096 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
8122
+ I, [2009-09-14T21:24:23.658187 #50281] INFO -- : --> 200 200 (106 0ms)
8123
+ I, [2009-09-14T21:24:23.666947 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
8124
+ I, [2009-09-14T21:24:23.667087 #50281] INFO -- : --> 200 200 (106 0ms)
8125
+ I, [2009-09-14T21:24:23.675971 #50281] INFO -- : POST http://37s.sunrise.i:3000/people.xml
8126
+ I, [2009-09-14T21:24:23.676100 #50281] INFO -- : --> 201 201 (109 0ms)
8127
+ I, [2009-09-14T21:24:23.685888 #50281] INFO -- : POST http://37s.sunrise.i:3000/people.xml
8128
+ I, [2009-09-14T21:24:23.686045 #50281] INFO -- : --> 201 201 (109 0ms)
8129
+ I, [2009-09-14T21:24:23.873414 #50281] INFO -- : GET http://somewhere.else:80/people/1.xml
8130
+ I, [2009-09-14T21:24:23.873599 #50281] INFO -- : --> 200 200 (106 0ms)
8131
+ I, [2009-09-14T21:24:23.882478 #50281] INFO -- : GET http://somewhere.else:80/people/1.xml
8132
+ I, [2009-09-14T21:24:23.882616 #50281] INFO -- : --> 200 200 (106 0ms)
8133
+ I, [2009-09-14T21:24:23.893034 #50281] INFO -- : GET http://somewhere.else:80/people.xml
8134
+ I, [2009-09-14T21:24:23.893189 #50281] INFO -- : --> 200 200 (222 0ms)
8135
+ I, [2009-09-14T21:24:23.896017 #50281] INFO -- : PUT http://somewhere.else:80/people/1.xml
8136
+ I, [2009-09-14T21:24:23.896124 #50281] INFO -- : --> 204 204 (0 0ms)
8137
+ I, [2009-09-14T21:24:23.955127 #50281] INFO -- : GET http://somewhere.else:80/people/2.xml
8138
+ I, [2009-09-14T21:24:23.955293 #50281] INFO -- : --> 200 200 (107 0ms)
8139
+ I, [2009-09-14T21:24:23.957219 #50281] INFO -- : PUT http://somewhere.else:80/people/2.xml
8140
+ I, [2009-09-14T21:24:23.957339 #50281] INFO -- : --> 409 409 (0 0ms)
8141
+ I, [2009-09-14T21:24:23.965430 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8142
+ I, [2009-09-14T21:24:23.965710 #50281] INFO -- : --> 200 200 (120 0ms)
8143
+ I, [2009-09-14T21:24:23.967738 #50281] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml
8144
+ I, [2009-09-14T21:24:23.967868 #50281] INFO -- : --> 204 204 (0 0ms)
8145
+ I, [2009-09-14T21:24:23.975448 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml
8146
+ I, [2009-09-14T21:24:23.975598 #50281] INFO -- : --> 200 200 (166 0ms)
8147
+ I, [2009-09-14T21:24:23.977737 #50281] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml
8148
+ I, [2009-09-14T21:24:23.977847 #50281] INFO -- : --> 204 204 (0 0ms)
8149
+ I, [2009-09-14T21:24:24.026581 #50281] INFO -- : GET http://localhost:80/people/1.xml
8150
+ I, [2009-09-14T21:24:24.026763 #50281] INFO -- : --> 200 200 (106 0ms)
8151
+ I, [2009-09-14T21:24:24.030444 #50281] INFO -- : DELETE http://localhost:80/people/1.xml
8152
+ I, [2009-09-14T21:24:24.030580 #50281] INFO -- : --> 200 200 (0 0ms)
8153
+ I, [2009-09-14T21:24:24.032557 #50281] INFO -- : DELETE http://localhost:80/people/2.xml
8154
+ I, [2009-09-14T21:24:24.032652 #50281] INFO -- : --> 200 200 (0 0ms)
8155
+ I, [2009-09-14T21:24:24.034638 #50281] INFO -- : GET http://localhost:80/people/1.xml
8156
+ I, [2009-09-14T21:24:24.034732 #50281] INFO -- : --> 200 200 (106 0ms)
8157
+ I, [2009-09-14T21:24:24.038170 #50281] INFO -- : GET http://localhost:80/people.xml
8158
+ I, [2009-09-14T21:24:24.038291 #50281] INFO -- : --> 200 200 (222 0ms)
8159
+ I, [2009-09-14T21:24:24.042378 #50281] INFO -- : GET http://localhost:80/people_empty_elements.xml
8160
+ I, [2009-09-14T21:24:24.042487 #50281] INFO -- : --> 200 200 (77 0ms)
8161
+ I, [2009-09-14T21:24:24.045491 #50281] INFO -- : GET http://localhost:80/people_single_elements.xml
8162
+ I, [2009-09-14T21:24:24.045670 #50281] INFO -- : --> 200 200 (208 0ms)
8163
+ I, [2009-09-14T21:24:24.049464 #50281] INFO -- : GET http://localhost:80/people/2.xml
8164
+ I, [2009-09-14T21:24:24.049653 #50281] INFO -- : --> 200 200 (107 0ms)
8165
+ I, [2009-09-14T21:24:24.056120 #50281] INFO -- : HEAD http://localhost:80/people/1.xml
8166
+ I, [2009-09-14T21:24:24.056254 #50281] INFO -- : --> 200 200 (0 0ms)
8167
+ I, [2009-09-14T21:24:24.060249 #50281] INFO -- : POST http://localhost:80/people.xml
8168
+ I, [2009-09-14T21:24:24.060392 #50281] INFO -- : --> 201 201 (0 0ms)
8169
+ I, [2009-09-14T21:24:24.062543 #50281] INFO -- : POST http://localhost:80/members.xml
8170
+ I, [2009-09-14T21:24:24.062648 #50281] INFO -- : --> 201 201 (1 0ms)
8171
+ I, [2009-09-14T21:24:24.066784 #50281] INFO -- : PUT http://localhost:80/people/1.xml
8172
+ I, [2009-09-14T21:24:24.066895 #50281] INFO -- : --> 204 204 (0 0ms)
8173
+ I, [2009-09-14T21:24:24.068860 #50281] INFO -- : PUT http://localhost:80/people/2.xml
8174
+ I, [2009-09-14T21:24:24.068955 #50281] INFO -- : --> 204 204 (0 0ms)
8175
+ I, [2009-09-14T21:24:24.077541 #50281] INFO -- : GET http://localhost:80/people/1.xml
8176
+ I, [2009-09-14T21:24:24.103909 #50281] INFO -- : GET http://localhost:80/people_timeout.xml
8177
+ I, [2009-09-14T21:24:24.108652 #50281] INFO -- : GET http://somewhere.else:80/people/retrieve.xml?name=Matz
8178
+ I, [2009-09-14T21:24:24.108779 #50281] INFO -- : --> 200 200 (146 0ms)
8179
+ I, [2009-09-14T21:24:24.110569 #50281] INFO -- : POST http://somewhere.else:80/people/hire.xml?name=Matz
8180
+ I, [2009-09-14T21:24:24.110669 #50281] INFO -- : --> 201 201 (0 0ms)
8181
+ I, [2009-09-14T21:24:24.110824 #50281] INFO -- : PUT http://somewhere.else:80/people/promote.xml?name=Matz
8182
+ I, [2009-09-14T21:24:24.110902 #50281] INFO -- : --> 204 204 (0 0ms)
8183
+ I, [2009-09-14T21:24:24.111055 #50281] INFO -- : PUT http://somewhere.else:80/people/sort.xml?by=name
8184
+ I, [2009-09-14T21:24:24.111141 #50281] INFO -- : --> 204 204 (0 0ms)
8185
+ I, [2009-09-14T21:24:24.111284 #50281] INFO -- : DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz
8186
+ I, [2009-09-14T21:24:24.111361 #50281] INFO -- : --> 200 200 (0 0ms)
8187
+ I, [2009-09-14T21:24:24.111507 #50281] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name
8188
+ I, [2009-09-14T21:24:24.111588 #50281] INFO -- : --> 204 204 (0 0ms)
8189
+ I, [2009-09-14T21:24:24.113906 #50281] INFO -- : GET http://somewhere.else:80/people/1.xml
8190
+ I, [2009-09-14T21:24:24.114000 #50281] INFO -- : --> 200 200 (106 0ms)
8191
+ I, [2009-09-14T21:24:24.115291 #50281] INFO -- : GET http://somewhere.else:80/people/1/shallow.xml
8192
+ I, [2009-09-14T21:24:24.115376 #50281] INFO -- : --> 200 200 (106 0ms)
8193
+ I, [2009-09-14T21:24:24.116519 #50281] INFO -- : GET http://somewhere.else:80/people/1.xml
8194
+ I, [2009-09-14T21:24:24.116627 #50281] INFO -- : --> 200 200 (106 0ms)
8195
+ I, [2009-09-14T21:24:24.117864 #50281] INFO -- : GET http://somewhere.else:80/people/1/deep.xml
8196
+ I, [2009-09-14T21:24:24.117958 #50281] INFO -- : --> 200 200 (129 0ms)
8197
+ I, [2009-09-14T21:24:24.119237 #50281] INFO -- : GET http://somewhere.else:80/people/1.xml
8198
+ I, [2009-09-14T21:24:24.119317 #50281] INFO -- : --> 200 200 (106 0ms)
8199
+ I, [2009-09-14T21:24:24.120440 #50281] INFO -- : PUT http://somewhere.else:80/people/1/promote.xml?position=Manager
8200
+ I, [2009-09-14T21:24:24.120526 #50281] INFO -- : --> 204 204 (0 0ms)
8201
+ I, [2009-09-14T21:24:24.120669 #50281] INFO -- : GET http://somewhere.else:80/people/1.xml
8202
+ I, [2009-09-14T21:24:24.120741 #50281] INFO -- : --> 200 200 (106 0ms)
8203
+ I, [2009-09-14T21:24:24.121860 #50281] INFO -- : DELETE http://somewhere.else:80/people/1/deactivate.xml
8204
+ I, [2009-09-14T21:24:24.121951 #50281] INFO -- : --> 200 200 (0 0ms)
8205
+ I, [2009-09-14T21:24:24.122101 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8206
+ I, [2009-09-14T21:24:24.122181 #50281] INFO -- : --> 200 200 (120 0ms)
8207
+ I, [2009-09-14T21:24:24.123443 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml
8208
+ I, [2009-09-14T21:24:24.123538 #50281] INFO -- : --> 200 200 (139 0ms)
8209
+ I, [2009-09-14T21:24:24.125436 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8210
+ I, [2009-09-14T21:24:24.125696 #50281] INFO -- : --> 200 200 (120 0ms)
8211
+ I, [2009-09-14T21:24:24.127093 #50281] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US
8212
+ I, [2009-09-14T21:24:24.127255 #50281] INFO -- : --> 204 204 (0 0ms)
8213
+ I, [2009-09-14T21:24:24.129973 #50281] INFO -- : POST http://somewhere.else:80/people/new/register.xml
8214
+ I, [2009-09-14T21:24:24.130094 #50281] INFO -- : --> 201 201 (78 0ms)
8215
+ I, [2009-09-14T21:24:24.130675 #50281] INFO -- : POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml
8216
+ I, [2009-09-14T21:24:24.130760 #50281] INFO -- : --> 201 201 (92 0ms)
8217
+ I, [2009-09-14T21:24:24.131220 #50281] INFO -- : POST http://somewhere.else:80/people/1/register.xml
8218
+ I, [2009-09-14T21:24:24.131301 #50281] INFO -- : --> 201 201 (106 0ms)
8219
+ I, [2009-09-14T21:24:24.133757 #50281] INFO -- : GET http://somewhere.else:80/people/managers.xml
8220
+ I, [2009-09-14T21:24:24.133859 #50281] INFO -- : --> 200 200 (146 0ms)
8221
+ I, [2009-09-14T21:24:24.195154 #50281] INFO -- : GET http://somewhere.else:80/people.xml
8222
+ I, [2009-09-14T21:24:24.195311 #50281] INFO -- : --> 200 200 (222 0ms)
8223
+ I, [2009-09-14T21:24:24.205812 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml
8224
+ I, [2009-09-14T21:24:24.205970 #50281] INFO -- : --> 200 200 (166 0ms)
8225
+ I, [2009-09-14T21:24:24.215313 #50281] INFO -- : GET http://somewhere.else:80/people.xml
8226
+ I, [2009-09-14T21:24:24.215456 #50281] INFO -- : --> 200 200 (222 0ms)
8227
+ I, [2009-09-14T21:24:24.225355 #50281] INFO -- : GET http://somewhere.else:80/companies/1/people.xml
8228
+ I, [2009-09-14T21:24:24.225495 #50281] INFO -- : --> 200 200 (147 0ms)
8229
+ I, [2009-09-14T21:24:24.234791 #50281] INFO -- : GET http://somewhere.else:80/companies/1/people.xml
8230
+ I, [2009-09-14T21:24:24.234929 #50281] INFO -- : --> 200 200 (147 0ms)
8231
+ I, [2009-09-14T21:24:24.244271 #50281] INFO -- : GET http://somewhere.else:80/people/managers.xml
8232
+ I, [2009-09-14T21:24:24.244456 #50281] INFO -- : --> 200 200 (147 0ms)
8233
+ I, [2009-09-14T21:24:24.254442 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml
8234
+ I, [2009-09-14T21:24:24.254604 #50281] INFO -- : --> 200 200 (166 0ms)
8235
+ I, [2009-09-14T21:24:24.263912 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/2/addresses.xml
8236
+ I, [2009-09-14T21:24:24.264054 #50281] INFO -- : --> 404 404 (0 0ms)
8237
+ I, [2009-09-14T21:24:24.271426 #50281] INFO -- : GET http://somewhere.else:80/people/1.xml
8238
+ I, [2009-09-14T21:24:24.271547 #50281] INFO -- : --> 200 200 (106 0ms)
8239
+ I, [2009-09-14T21:24:24.280591 #50281] INFO -- : GET http://somewhere.else:80/people/99.xml
8240
+ I, [2009-09-14T21:24:24.280738 #50281] INFO -- : --> 404 404 (0 0ms)
8241
+ I, [2009-09-14T21:24:24.280955 #50281] INFO -- : GET http://37s.sunrise.i:3000/people//addresses/1.xml
8242
+ I, [2009-09-14T21:24:24.281041 #50281] INFO -- : --> 404 404 (0 0ms)
8243
+ I, [2009-09-14T21:24:24.288805 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8244
+ I, [2009-09-14T21:24:24.288950 #50281] INFO -- : --> 200 200 (120 0ms)
8245
+ I, [2009-09-14T21:24:24.297915 #50281] INFO -- : GET http://somewhere.else:80/people.xml
8246
+ I, [2009-09-14T21:24:24.298064 #50281] INFO -- : --> 200 200 (222 0ms)
8247
+ I, [2009-09-14T21:24:24.308063 #50281] INFO -- : GET http://somewhere.else:80/people.xml
8248
+ I, [2009-09-14T21:24:24.308210 #50281] INFO -- : --> 200 200 (222 0ms)
8249
+ I, [2009-09-14T21:24:24.318114 #50281] INFO -- : GET http://somewhere.else:80/companies/1/manager.xml
8250
+ I, [2009-09-14T21:24:24.318250 #50281] INFO -- : --> 200 200 (107 0ms)
8251
+ I, [2009-09-14T21:24:24.327230 #50281] INFO -- : GET http://somewhere.else:80/people/leader.xml
8252
+ I, [2009-09-14T21:24:24.327378 #50281] INFO -- : --> 200 200 (107 0ms)
8253
+ I, [2009-09-14T21:24:24.336108 #50281] INFO -- : GET http://somewhere.else:80/people.xml
8254
+ I, [2009-09-14T21:24:24.336247 #50281] INFO -- : --> 200 200 (222 0ms)
8255
+ I, [2009-09-14T21:24:24.395267 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml
8256
+ I, [2009-09-14T21:24:24.395418 #50281] INFO -- : --> 200 200 (166 0ms)
8257
+ I, [2009-09-14T21:24:24.405022 #50281] INFO -- : GET http://somewhere.else:80/people.xml
8258
+ I, [2009-09-14T21:24:24.405322 #50281] INFO -- : --> 200 200 (222 0ms)
8259
+ I, [2009-09-14T21:24:24.415551 #50281] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml
8260
+ I, [2009-09-14T21:24:24.415694 #50281] INFO -- : --> 200 200 (166 0ms)
8261
+ I, [2009-09-14T21:24:24.417811 #50281] INFO -- : GET http://somewhere.else:80/people.json
8262
+ I, [2009-09-14T21:24:24.417919 #50281] INFO -- : --> 200 200 (48 0ms)
8263
+ I, [2009-09-14T21:24:24.419132 #50281] INFO -- : GET http://somewhere.else:80/people.xml
8264
+ I, [2009-09-14T21:24:24.419229 #50281] INFO -- : --> 200 200 (224 0ms)
8265
+ I, [2009-09-14T21:24:24.422099 #50281] INFO -- : GET http://somewhere.else:80/people/retrieve.json?name=David
8266
+ I, [2009-09-14T21:24:24.422224 #50281] INFO -- : --> 200 200 (25 0ms)
8267
+ I, [2009-09-14T21:24:24.423053 #50281] INFO -- : GET http://somewhere.else:80/people/retrieve.xml?name=David
8268
+ I, [2009-09-14T21:24:24.423134 #50281] INFO -- : --> 200 200 (149 0ms)
8269
+ I, [2009-09-14T21:24:24.425043 #50281] INFO -- : GET http://somewhere.else:80/people/2.json
8270
+ I, [2009-09-14T21:24:24.425139 #50281] INFO -- : --> 200 200 (23 0ms)
8271
+ I, [2009-09-14T21:24:24.425427 #50281] INFO -- : GET http://somewhere.else:80/people/2/shallow.json
8272
+ I, [2009-09-14T21:24:24.425508 #50281] INFO -- : --> 200 200 (23 0ms)
8273
+ I, [2009-09-14T21:24:24.426363 #50281] INFO -- : GET http://somewhere.else:80/people/2.xml
8274
+ I, [2009-09-14T21:24:24.426443 #50281] INFO -- : --> 200 200 (103 0ms)
8275
+ I, [2009-09-14T21:24:24.427693 #50281] INFO -- : GET http://somewhere.else:80/people/2/shallow.xml
8276
+ I, [2009-09-14T21:24:24.427777 #50281] INFO -- : --> 200 200 (103 0ms)
8277
+ I, [2009-09-14T21:24:24.429095 #50281] INFO -- : POST http://somewhere.else:80/people.json
8278
+ I, [2009-09-14T21:24:24.429296 #50281] INFO -- : --> 201 201 (15 0ms)
8279
+ I, [2009-09-14T21:24:24.429634 #50281] INFO -- : POST http://somewhere.else:80/people/new/register.json
8280
+ I, [2009-09-14T21:24:24.429713 #50281] INFO -- : --> 201 201 (15 0ms)
8281
+ I, [2009-09-14T21:24:24.430327 #50281] INFO -- : POST http://somewhere.else:80/people.xml
8282
+ I, [2009-09-14T21:24:24.430404 #50281] INFO -- : --> 201 201 (74 0ms)
8283
+ I, [2009-09-14T21:24:24.431694 #50281] INFO -- : POST http://somewhere.else:80/people/new/register.xml
8284
+ I, [2009-09-14T21:24:24.431786 #50281] INFO -- : --> 201 201 (74 0ms)
8285
+ I, [2009-09-14T21:24:24.432223 #50281] INFO -- : GET http://somewhere.else:80/people/1.json
8286
+ I, [2009-09-14T21:24:24.432307 #50281] INFO -- : --> 200 200 (23 0ms)
8287
+ I, [2009-09-14T21:24:24.432986 #50281] INFO -- : GET http://somewhere.else:80/people/1.xml
8288
+ I, [2009-09-14T21:24:24.433074 #50281] INFO -- : --> 200 200 (103 0ms)
8289
+ I, [2009-09-14T21:24:24.435294 #50281] INFO -- : POST http://somewhere.else:80/people.json
8290
+ I, [2009-09-14T21:24:24.435404 #50281] INFO -- : --> 201 201 (50 0ms)
8291
+ I, [2009-09-14T21:24:24.436642 #50281] INFO -- : POST http://somewhere.else:80/people.xml
8292
+ I, [2009-09-14T21:24:24.436722 #50281] INFO -- : --> 201 201 (132 0ms)
8293
+ I, [2009-09-14T21:24:24.439316 #50281] INFO -- : POST http://somewhere.else:80/people.xml
8294
+ I, [2009-09-14T21:24:24.439431 #50281] INFO -- : --> 201 201 (106 0ms)
8295
+ I, [2009-09-14T21:24:24.441278 #50281] INFO -- : GET http://somewhere.else:80/people/1.xml
8296
+ I, [2009-09-14T21:24:24.441377 #50281] INFO -- : --> 200 200 (106 0ms)
8297
+ I, [2009-09-14T21:24:24.442635 #50281] INFO -- : DELETE http://somewhere.else:80/people/1.xml
8298
+ I, [2009-09-14T21:24:24.442730 #50281] INFO -- : --> 200 200 (0 0ms)
8299
+ I, [2009-09-14T21:24:24.443356 #50281] INFO -- : GET http://somewhere.else:80/people/1.xml
8300
+ I, [2009-09-14T21:24:24.443441 #50281] INFO -- : --> 200 200 (106 0ms)
8301
+ I, [2009-09-14T21:24:24.445406 #50281] INFO -- : PUT http://somewhere.else:80/people/1.xml
8302
+ I, [2009-09-14T21:24:24.445599 #50281] INFO -- : --> 204 204 (0 0ms)
8303
+ I, [2009-09-14T21:24:24.447940 #50281] INFO -- : POST http://37s.sunrise.i:3000/projects.xml
8304
+ I, [2009-09-14T21:24:24.448044 #50281] INFO -- : --> 201 201 (123 0ms)
8305
+ I, [2009-09-14T21:24:24.451356 #50281] INFO -- : POST http://37s.sunrise.i:3000/projects.xml
8306
+ I, [2009-09-14T21:24:24.451491 #50281] INFO -- : --> 201 201 (123 0ms)
8307
+ I, [2009-09-28T14:52:01.460213 #26952] INFO -- : DELETE http://localhost:80/people/2.xml
8308
+ I, [2009-09-28T14:52:01.460470 #26952] INFO -- : --> 200 200 (0 0ms)
8309
+ I, [2009-09-28T14:52:01.461456 #26952] INFO -- : GET http://localhost:80/people/2.xml
8310
+ I, [2009-09-28T14:52:01.461579 #26952] INFO -- : --> 200 200 (107 0ms)
8311
+ I, [2009-09-28T14:52:01.504344 #26952] INFO -- : POST http://localhost:80/people/2/addresses.xml
8312
+ I, [2009-09-28T14:52:01.504498 #26952] INFO -- : --> 201 201 (0 0ms)
8313
+ I, [2009-09-28T14:52:01.505429 #26952] INFO -- : PUT http://localhost:80/people/2.xml
8314
+ I, [2009-09-28T14:52:01.505534 #26952] INFO -- : --> 204 204 (0 0ms)
8315
+ I, [2009-09-28T14:52:01.506435 #26952] INFO -- : POST http://localhost:80/people/2.xml
8316
+ I, [2009-09-28T14:52:01.506665 #26952] INFO -- : POST http://localhost:80/people/2/addresses.xml
8317
+ I, [2009-09-28T14:52:01.506845 #26952] INFO -- : PUT http://localhost:80/people/2.xml
8318
+ I, [2009-09-28T14:52:01.507014 #26952] INFO -- : DELETE http://localhost:80/people/2.xml
8319
+ I, [2009-09-28T14:52:01.535014 #26952] INFO -- : POST http://37s.sunrise.i:3000/people.json
8320
+ I, [2009-09-28T14:52:01.535176 #26952] INFO -- : --> 422 422 (118 0ms)
8321
+ I, [2009-09-28T14:52:01.540865 #26952] INFO -- : POST http://37s.sunrise.i:3000/people.xml
8322
+ I, [2009-09-28T14:52:01.541020 #26952] INFO -- : --> 422 422 (209 0ms)
8323
+ I, [2009-09-28T14:52:01.543553 #26952] INFO -- : POST http://37s.sunrise.i:3000/people.json
8324
+ I, [2009-09-28T14:52:01.543681 #26952] INFO -- : --> 422 422 (118 0ms)
8325
+ I, [2009-09-28T14:52:01.544522 #26952] INFO -- : POST http://37s.sunrise.i:3000/people.xml
8326
+ I, [2009-09-28T14:52:01.544631 #26952] INFO -- : --> 422 422 (209 0ms)
8327
+ I, [2009-09-28T14:52:01.579554 #26952] INFO -- : POST http://37s.sunrise.i:3000/people.json
8328
+ I, [2009-09-28T14:52:01.579708 #26952] INFO -- : --> 422 422 (118 0ms)
8329
+ I, [2009-09-28T14:52:01.580736 #26952] INFO -- : POST http://37s.sunrise.i:3000/people.xml
8330
+ I, [2009-09-28T14:52:01.580835 #26952] INFO -- : --> 422 422 (209 0ms)
8331
+ I, [2009-09-28T14:52:01.583063 #26952] INFO -- : POST http://37s.sunrise.i:3000/people.json
8332
+ I, [2009-09-28T14:52:01.583185 #26952] INFO -- : --> 422 422 (118 0ms)
8333
+ I, [2009-09-28T14:52:01.584123 #26952] INFO -- : POST http://37s.sunrise.i:3000/people.xml
8334
+ I, [2009-09-28T14:52:01.584216 #26952] INFO -- : --> 422 422 (209 0ms)
8335
+ I, [2009-09-28T14:52:01.587445 #26952] INFO -- : POST http://37s.sunrise.i:3000/people.json
8336
+ I, [2009-09-28T14:52:01.587573 #26952] INFO -- : --> 422 422 (118 0ms)
8337
+ I, [2009-09-28T14:52:01.588401 #26952] INFO -- : POST http://37s.sunrise.i:3000/people.xml
8338
+ I, [2009-09-28T14:52:01.588494 #26952] INFO -- : --> 422 422 (209 0ms)
8339
+ I, [2009-09-28T14:52:01.590570 #26952] INFO -- : POST http://37s.sunrise.i:3000/people.json
8340
+ I, [2009-09-28T14:52:01.590684 #26952] INFO -- : --> 422 422 (118 0ms)
8341
+ I, [2009-09-28T14:52:01.591506 #26952] INFO -- : POST http://37s.sunrise.i:3000/people.xml
8342
+ I, [2009-09-28T14:52:01.591596 #26952] INFO -- : --> 422 422 (209 0ms)
8343
+ I, [2009-09-28T14:52:01.606746 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
8344
+ I, [2009-09-28T14:52:01.606893 #26952] INFO -- : --> 200 200 (106 0ms)
8345
+ I, [2009-09-28T14:52:01.653619 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
8346
+ I, [2009-09-28T14:52:01.653775 #26952] INFO -- : --> 200 200 (106 0ms)
8347
+ I, [2009-09-28T14:52:01.655365 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8348
+ I, [2009-09-28T14:52:01.655480 #26952] INFO -- : --> 200 200 (120 0ms)
8349
+ I, [2009-09-28T14:52:01.665085 #26952] INFO -- : POST http://37s.sunrise.i:3000/people.xml
8350
+ I, [2009-09-28T14:52:01.665227 #26952] INFO -- : --> 201 201 (109 0ms)
8351
+ I, [2009-09-28T14:52:01.667305 #26952] INFO -- : POST http://37s.sunrise.i:3000/people.xml
8352
+ I, [2009-09-28T14:52:01.667423 #26952] INFO -- : --> 409 409 (0 0ms)
8353
+ I, [2009-09-28T14:52:01.675679 #26952] INFO -- : POST http://37s.sunrise.i:3000/people/1/addresses.xml
8354
+ I, [2009-09-28T14:52:01.675851 #26952] INFO -- : --> 201 201 (0 0ms)
8355
+ I, [2009-09-28T14:52:01.684069 #26952] INFO -- : POST http://37s.sunrise.i:3000/people.xml
8356
+ I, [2009-09-28T14:52:01.684211 #26952] INFO -- : --> 201 201 (0 0ms)
8357
+ I, [2009-09-28T14:52:01.808680 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml
8358
+ I, [2009-09-28T14:52:01.808883 #26952] INFO -- : --> 200 200 (106 0ms)
8359
+ I, [2009-09-28T14:52:01.817842 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/4.xml
8360
+ I, [2009-09-28T14:52:01.817990 #26952] INFO -- : --> 404 404 (0 0ms)
8361
+ I, [2009-09-28T14:52:01.832680 #26952] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml
8362
+ I, [2009-09-28T14:52:01.832825 #26952] INFO -- : --> 200 200 (0 0ms)
8363
+ I, [2009-09-28T14:52:01.833037 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
8364
+ I, [2009-09-28T14:52:01.833114 #26952] INFO -- : --> 404 404 (0 0ms)
8365
+ I, [2009-09-28T14:52:01.840485 #26952] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml
8366
+ I, [2009-09-28T14:52:01.840614 #26952] INFO -- : --> 200 200 (0 0ms)
8367
+ I, [2009-09-28T14:52:01.840819 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
8368
+ I, [2009-09-28T14:52:01.840895 #26952] INFO -- : --> 410 410 (0 0ms)
8369
+ I, [2009-09-28T14:52:01.848751 #26952] INFO -- : DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml
8370
+ I, [2009-09-28T14:52:01.848893 #26952] INFO -- : --> 200 200 (0 0ms)
8371
+ I, [2009-09-28T14:52:01.849110 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8372
+ I, [2009-09-28T14:52:01.849196 #26952] INFO -- : --> 404 404 (0 0ms)
8373
+ I, [2009-09-28T14:52:01.856609 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
8374
+ I, [2009-09-28T14:52:01.856732 #26952] INFO -- : --> 200 200 (106 0ms)
8375
+ I, [2009-09-28T14:52:01.858119 #26952] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml
8376
+ I, [2009-09-28T14:52:01.858214 #26952] INFO -- : --> 200 200 (0 0ms)
8377
+ I, [2009-09-28T14:52:01.858424 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
8378
+ I, [2009-09-28T14:52:01.858500 #26952] INFO -- : --> 404 404 (0 0ms)
8379
+ I, [2009-09-28T14:52:01.866181 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
8380
+ I, [2009-09-28T14:52:01.866340 #26952] INFO -- : --> 200 200 (106 0ms)
8381
+ I, [2009-09-28T14:52:01.867802 #26952] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml
8382
+ I, [2009-09-28T14:52:01.867916 #26952] INFO -- : --> 200 200 (0 0ms)
8383
+ I, [2009-09-28T14:52:01.868144 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
8384
+ I, [2009-09-28T14:52:01.868225 #26952] INFO -- : --> 410 410 (0 0ms)
8385
+ I, [2009-09-28T14:52:01.875539 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8386
+ I, [2009-09-28T14:52:01.875660 #26952] INFO -- : --> 200 200 (120 0ms)
8387
+ I, [2009-09-28T14:52:01.877418 #26952] INFO -- : DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml
8388
+ I, [2009-09-28T14:52:01.877569 #26952] INFO -- : --> 200 200 (0 0ms)
8389
+ I, [2009-09-28T14:52:01.877857 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8390
+ I, [2009-09-28T14:52:01.878131 #26952] INFO -- : --> 404 404 (0 0ms)
8391
+ I, [2009-09-28T14:52:01.885664 #26952] INFO -- : HEAD http://37s.sunrise.i:3000/people/1.xml
8392
+ I, [2009-09-28T14:52:01.885799 #26952] INFO -- : --> 200 200 (0 0ms)
8393
+ I, [2009-09-28T14:52:01.885927 #26952] INFO -- : HEAD http://37s.sunrise.i:3000/people/99.xml
8394
+ I, [2009-09-28T14:52:01.886013 #26952] INFO -- : --> 404 404 (0 0ms)
8395
+ I, [2009-09-28T14:52:01.886216 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
8396
+ I, [2009-09-28T14:52:01.886291 #26952] INFO -- : --> 200 200 (106 0ms)
8397
+ I, [2009-09-28T14:52:01.887652 #26952] INFO -- : HEAD http://37s.sunrise.i:3000/people/1.xml
8398
+ I, [2009-09-28T14:52:01.887756 #26952] INFO -- : --> 200 200 (0 0ms)
8399
+ I, [2009-09-28T14:52:01.887934 #26952] INFO -- : HEAD http://37s.sunrise.i:3000/people/99.xml
8400
+ I, [2009-09-28T14:52:01.888022 #26952] INFO -- : --> 404 404 (0 0ms)
8401
+ I, [2009-09-28T14:52:01.888192 #26952] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml
8402
+ I, [2009-09-28T14:52:01.888283 #26952] INFO -- : --> 200 200 (0 0ms)
8403
+ I, [2009-09-28T14:52:01.888442 #26952] INFO -- : HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml
8404
+ I, [2009-09-28T14:52:01.888533 #26952] INFO -- : --> 404 404 (0 0ms)
8405
+ I, [2009-09-28T14:52:01.888690 #26952] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml
8406
+ I, [2009-09-28T14:52:01.888823 #26952] INFO -- : --> 404 404 (0 0ms)
8407
+ I, [2009-09-28T14:52:01.888982 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8408
+ I, [2009-09-28T14:52:01.889061 #26952] INFO -- : --> 200 200 (120 0ms)
8409
+ I, [2009-09-28T14:52:01.890277 #26952] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml
8410
+ I, [2009-09-28T14:52:01.890374 #26952] INFO -- : --> 200 200 (0 0ms)
8411
+ I, [2009-09-28T14:52:01.890552 #26952] INFO -- : HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml
8412
+ I, [2009-09-28T14:52:01.890640 #26952] INFO -- : --> 404 404 (0 0ms)
8413
+ I, [2009-09-28T14:52:01.890840 #26952] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml
8414
+ I, [2009-09-28T14:52:01.890927 #26952] INFO -- : --> 404 404 (0 0ms)
8415
+ I, [2009-09-28T14:52:01.898320 #26952] INFO -- : HEAD http://37s.sunrise.i:3000/people/1.xml
8416
+ I, [2009-09-28T14:52:01.898442 #26952] INFO -- : --> 410 410 (0 0ms)
8417
+ I, [2009-09-28T14:52:01.906003 #26952] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg.xml
8418
+ I, [2009-09-28T14:52:01.906154 #26952] INFO -- : --> 200 200 (0 0ms)
8419
+ I, [2009-09-28T14:52:01.906302 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml
8420
+ I, [2009-09-28T14:52:01.906378 #26952] INFO -- : --> 200 200 (106 0ms)
8421
+ I, [2009-09-28T14:52:01.907770 #26952] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg.xml
8422
+ I, [2009-09-28T14:52:01.907883 #26952] INFO -- : --> 200 200 (0 0ms)
8423
+ I, [2009-09-28T14:52:01.908023 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml
8424
+ I, [2009-09-28T14:52:01.908099 #26952] INFO -- : --> 200 200 (106 0ms)
8425
+ I, [2009-09-28T14:52:01.909310 #26952] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml
8426
+ I, [2009-09-28T14:52:01.909417 #26952] INFO -- : --> 200 200 (0 0ms)
8427
+ I, [2009-09-28T14:52:01.909559 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml
8428
+ I, [2009-09-28T14:52:01.909634 #26952] INFO -- : --> 200 200 (106 0ms)
8429
+ I, [2009-09-28T14:52:01.910770 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml
8430
+ I, [2009-09-28T14:52:01.910859 #26952] INFO -- : --> 200 200 (120 0ms)
8431
+ I, [2009-09-28T14:52:01.912055 #26952] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml
8432
+ I, [2009-09-28T14:52:01.912167 #26952] INFO -- : --> 200 200 (0 0ms)
8433
+ I, [2009-09-28T14:52:01.920207 #26952] INFO -- : HEAD http://37s.sunrise.i:3000/people/not-mocked.xml
8434
+ I, [2009-09-28T14:52:01.920393 #26952] INFO -- : --> 200 200 (0 0ms)
8435
+ I, [2009-09-28T14:52:01.943331 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8436
+ I, [2009-09-28T14:52:01.943495 #26952] INFO -- : --> 200 200 (120 0ms)
8437
+ I, [2009-09-28T14:52:02.004029 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/5.xml
8438
+ I, [2009-09-28T14:52:02.004180 #26952] INFO -- : --> 200 200 (223 0ms)
8439
+ I, [2009-09-28T14:52:02.013630 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8440
+ I, [2009-09-28T14:52:02.013778 #26952] INFO -- : --> 200 200 (120 0ms)
8441
+ I, [2009-09-28T14:52:02.023169 #26952] INFO -- : GET http://37s.sunrise.i:3000/customers/1.xml
8442
+ I, [2009-09-28T14:52:02.023330 #26952] INFO -- : --> 200 200 (1458 0ms)
8443
+ I, [2009-09-28T14:52:02.089768 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml
8444
+ I, [2009-09-28T14:52:02.089922 #26952] INFO -- : --> 200 200 (106 0ms)
8445
+ I, [2009-09-28T14:52:02.091439 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml
8446
+ I, [2009-09-28T14:52:02.091540 #26952] INFO -- : --> 200 200 (106 0ms)
8447
+ I, [2009-09-28T14:52:02.100044 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8448
+ I, [2009-09-28T14:52:02.100179 #26952] INFO -- : --> 200 200 (120 0ms)
8449
+ I, [2009-09-28T14:52:02.101524 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8450
+ I, [2009-09-28T14:52:02.101622 #26952] INFO -- : --> 200 200 (120 0ms)
8451
+ I, [2009-09-28T14:52:02.110278 #26952] INFO -- : GET http://37s.sunrise.i:3000/people.xml
8452
+ I, [2009-09-28T14:52:02.110439 #26952] INFO -- : --> 200 200 (222 0ms)
8453
+ I, [2009-09-28T14:52:02.113141 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
8454
+ I, [2009-09-28T14:52:02.113322 #26952] INFO -- : --> 200 200 (106 0ms)
8455
+ I, [2009-09-28T14:52:02.121832 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
8456
+ I, [2009-09-28T14:52:02.121968 #26952] INFO -- : --> 200 200 (106 0ms)
8457
+ I, [2009-09-28T14:52:02.130868 #26952] INFO -- : POST http://37s.sunrise.i:3000/people.xml
8458
+ I, [2009-09-28T14:52:02.131009 #26952] INFO -- : --> 201 201 (109 0ms)
8459
+ I, [2009-09-28T14:52:02.188388 #26952] INFO -- : POST http://37s.sunrise.i:3000/people.xml
8460
+ I, [2009-09-28T14:52:02.188560 #26952] INFO -- : --> 201 201 (109 0ms)
8461
+ I, [2009-09-28T14:52:02.324244 #26952] INFO -- : GET http://somewhere.else:80/people/1.xml
8462
+ I, [2009-09-28T14:52:02.324402 #26952] INFO -- : --> 200 200 (106 0ms)
8463
+ I, [2009-09-28T14:52:02.333306 #26952] INFO -- : GET http://somewhere.else:80/people/1.xml
8464
+ I, [2009-09-28T14:52:02.333446 #26952] INFO -- : --> 200 200 (106 0ms)
8465
+ I, [2009-09-28T14:52:02.342591 #26952] INFO -- : GET http://somewhere.else:80/people.xml
8466
+ I, [2009-09-28T14:52:02.342736 #26952] INFO -- : --> 200 200 (222 0ms)
8467
+ I, [2009-09-28T14:52:02.395093 #26952] INFO -- : PUT http://somewhere.else:80/people/1.xml
8468
+ I, [2009-09-28T14:52:02.395255 #26952] INFO -- : --> 204 204 (0 0ms)
8469
+ I, [2009-09-28T14:52:02.402985 #26952] INFO -- : GET http://somewhere.else:80/people/2.xml
8470
+ I, [2009-09-28T14:52:02.403127 #26952] INFO -- : --> 200 200 (107 0ms)
8471
+ I, [2009-09-28T14:52:02.404916 #26952] INFO -- : PUT http://somewhere.else:80/people/2.xml
8472
+ I, [2009-09-28T14:52:02.405022 #26952] INFO -- : --> 409 409 (0 0ms)
8473
+ I, [2009-09-28T14:52:02.412655 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8474
+ I, [2009-09-28T14:52:02.412819 #26952] INFO -- : --> 200 200 (120 0ms)
8475
+ I, [2009-09-28T14:52:02.414692 #26952] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml
8476
+ I, [2009-09-28T14:52:02.414809 #26952] INFO -- : --> 204 204 (0 0ms)
8477
+ I, [2009-09-28T14:52:02.422142 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml
8478
+ I, [2009-09-28T14:52:02.422266 #26952] INFO -- : --> 200 200 (166 0ms)
8479
+ I, [2009-09-28T14:52:02.424368 #26952] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml
8480
+ I, [2009-09-28T14:52:02.424477 #26952] INFO -- : --> 204 204 (0 0ms)
8481
+ I, [2009-09-28T14:52:02.472662 #26952] INFO -- : GET http://localhost:80/people/1.xml
8482
+ I, [2009-09-28T14:52:02.472847 #26952] INFO -- : --> 200 200 (106 0ms)
8483
+ I, [2009-09-28T14:52:02.476152 #26952] INFO -- : DELETE http://localhost:80/people/1.xml
8484
+ I, [2009-09-28T14:52:02.476273 #26952] INFO -- : --> 200 200 (0 0ms)
8485
+ I, [2009-09-28T14:52:02.478207 #26952] INFO -- : DELETE http://localhost:80/people/2.xml
8486
+ I, [2009-09-28T14:52:02.478310 #26952] INFO -- : --> 200 200 (0 0ms)
8487
+ I, [2009-09-28T14:52:02.480262 #26952] INFO -- : GET http://localhost:80/people/1.xml
8488
+ I, [2009-09-28T14:52:02.480415 #26952] INFO -- : --> 200 200 (106 0ms)
8489
+ I, [2009-09-28T14:52:02.483905 #26952] INFO -- : GET http://localhost:80/people.xml
8490
+ I, [2009-09-28T14:52:02.484031 #26952] INFO -- : --> 200 200 (222 0ms)
8491
+ I, [2009-09-28T14:52:02.488297 #26952] INFO -- : GET http://localhost:80/people_empty_elements.xml
8492
+ I, [2009-09-28T14:52:02.488429 #26952] INFO -- : --> 200 200 (77 0ms)
8493
+ I, [2009-09-28T14:52:02.491054 #26952] INFO -- : GET http://localhost:80/people_single_elements.xml
8494
+ I, [2009-09-28T14:52:02.491162 #26952] INFO -- : --> 200 200 (208 0ms)
8495
+ I, [2009-09-28T14:52:02.494574 #26952] INFO -- : GET http://localhost:80/people/2.xml
8496
+ I, [2009-09-28T14:52:02.494692 #26952] INFO -- : --> 200 200 (107 0ms)
8497
+ I, [2009-09-28T14:52:02.500795 #26952] INFO -- : HEAD http://localhost:80/people/1.xml
8498
+ I, [2009-09-28T14:52:02.500918 #26952] INFO -- : --> 200 200 (0 0ms)
8499
+ I, [2009-09-28T14:52:02.505916 #26952] INFO -- : POST http://localhost:80/people.xml
8500
+ I, [2009-09-28T14:52:02.506066 #26952] INFO -- : --> 201 201 (0 0ms)
8501
+ I, [2009-09-28T14:52:02.508113 #26952] INFO -- : POST http://localhost:80/members.xml
8502
+ I, [2009-09-28T14:52:02.508208 #26952] INFO -- : --> 201 201 (1 0ms)
8503
+ I, [2009-09-28T14:52:02.512453 #26952] INFO -- : PUT http://localhost:80/people/1.xml
8504
+ I, [2009-09-28T14:52:02.512617 #26952] INFO -- : --> 204 204 (0 0ms)
8505
+ I, [2009-09-28T14:52:02.514660 #26952] INFO -- : PUT http://localhost:80/people/2.xml
8506
+ I, [2009-09-28T14:52:02.514759 #26952] INFO -- : --> 204 204 (0 0ms)
8507
+ I, [2009-09-28T14:52:02.523517 #26952] INFO -- : GET http://localhost:80/people/1.xml
8508
+ I, [2009-09-28T14:52:02.528732 #26952] INFO -- : GET http://localhost:80/people_timeout.xml
8509
+ I, [2009-09-28T14:52:02.533369 #26952] INFO -- : GET http://somewhere.else:80/people/retrieve.xml?name=Matz
8510
+ I, [2009-09-28T14:52:02.533485 #26952] INFO -- : --> 200 200 (146 0ms)
8511
+ I, [2009-09-28T14:52:02.535225 #26952] INFO -- : POST http://somewhere.else:80/people/hire.xml?name=Matz
8512
+ I, [2009-09-28T14:52:02.535341 #26952] INFO -- : --> 201 201 (0 0ms)
8513
+ I, [2009-09-28T14:52:02.535501 #26952] INFO -- : PUT http://somewhere.else:80/people/promote.xml?name=Matz
8514
+ I, [2009-09-28T14:52:02.535581 #26952] INFO -- : --> 204 204 (0 0ms)
8515
+ I, [2009-09-28T14:52:02.535735 #26952] INFO -- : PUT http://somewhere.else:80/people/sort.xml?by=name
8516
+ I, [2009-09-28T14:52:02.535812 #26952] INFO -- : --> 204 204 (0 0ms)
8517
+ I, [2009-09-28T14:52:02.535959 #26952] INFO -- : DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz
8518
+ I, [2009-09-28T14:52:02.536039 #26952] INFO -- : --> 200 200 (0 0ms)
8519
+ I, [2009-09-28T14:52:02.536187 #26952] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name
8520
+ I, [2009-09-28T14:52:02.536270 #26952] INFO -- : --> 204 204 (0 0ms)
8521
+ I, [2009-09-28T14:52:02.538740 #26952] INFO -- : GET http://somewhere.else:80/people/1.xml
8522
+ I, [2009-09-28T14:52:02.538839 #26952] INFO -- : --> 200 200 (106 0ms)
8523
+ I, [2009-09-28T14:52:02.540189 #26952] INFO -- : GET http://somewhere.else:80/people/1/shallow.xml
8524
+ I, [2009-09-28T14:52:02.540302 #26952] INFO -- : --> 200 200 (106 0ms)
8525
+ I, [2009-09-28T14:52:02.541635 #26952] INFO -- : GET http://somewhere.else:80/people/1.xml
8526
+ I, [2009-09-28T14:52:02.541760 #26952] INFO -- : --> 200 200 (106 0ms)
8527
+ I, [2009-09-28T14:52:02.543200 #26952] INFO -- : GET http://somewhere.else:80/people/1/deep.xml
8528
+ I, [2009-09-28T14:52:02.543313 #26952] INFO -- : --> 200 200 (129 0ms)
8529
+ I, [2009-09-28T14:52:02.544837 #26952] INFO -- : GET http://somewhere.else:80/people/1.xml
8530
+ I, [2009-09-28T14:52:02.544929 #26952] INFO -- : --> 200 200 (106 0ms)
8531
+ I, [2009-09-28T14:52:02.546096 #26952] INFO -- : PUT http://somewhere.else:80/people/1/promote.xml?position=Manager
8532
+ I, [2009-09-28T14:52:02.546274 #26952] INFO -- : --> 204 204 (0 0ms)
8533
+ I, [2009-09-28T14:52:02.546445 #26952] INFO -- : GET http://somewhere.else:80/people/1.xml
8534
+ I, [2009-09-28T14:52:02.546521 #26952] INFO -- : --> 200 200 (106 0ms)
8535
+ I, [2009-09-28T14:52:02.547738 #26952] INFO -- : DELETE http://somewhere.else:80/people/1/deactivate.xml
8536
+ I, [2009-09-28T14:52:02.547834 #26952] INFO -- : --> 200 200 (0 0ms)
8537
+ I, [2009-09-28T14:52:02.547990 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8538
+ I, [2009-09-28T14:52:02.548072 #26952] INFO -- : --> 200 200 (120 0ms)
8539
+ I, [2009-09-28T14:52:02.549234 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml
8540
+ I, [2009-09-28T14:52:02.549326 #26952] INFO -- : --> 200 200 (139 0ms)
8541
+ I, [2009-09-28T14:52:02.550709 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8542
+ I, [2009-09-28T14:52:02.550808 #26952] INFO -- : --> 200 200 (120 0ms)
8543
+ I, [2009-09-28T14:52:02.604786 #26952] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US
8544
+ I, [2009-09-28T14:52:02.604956 #26952] INFO -- : --> 204 204 (0 0ms)
8545
+ I, [2009-09-28T14:52:02.607742 #26952] INFO -- : POST http://somewhere.else:80/people/new/register.xml
8546
+ I, [2009-09-28T14:52:02.607876 #26952] INFO -- : --> 201 201 (78 0ms)
8547
+ I, [2009-09-28T14:52:02.608498 #26952] INFO -- : POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml
8548
+ I, [2009-09-28T14:52:02.608596 #26952] INFO -- : --> 201 201 (92 0ms)
8549
+ I, [2009-09-28T14:52:02.609063 #26952] INFO -- : POST http://somewhere.else:80/people/1/register.xml
8550
+ I, [2009-09-28T14:52:02.609197 #26952] INFO -- : --> 201 201 (106 0ms)
8551
+ I, [2009-09-28T14:52:02.611577 #26952] INFO -- : GET http://somewhere.else:80/people/managers.xml
8552
+ I, [2009-09-28T14:52:02.611681 #26952] INFO -- : --> 200 200 (146 0ms)
8553
+ I, [2009-09-28T14:52:02.621305 #26952] INFO -- : GET http://somewhere.else:80/people.xml
8554
+ I, [2009-09-28T14:52:02.621466 #26952] INFO -- : --> 200 200 (222 0ms)
8555
+ I, [2009-09-28T14:52:02.632147 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml
8556
+ I, [2009-09-28T14:52:02.632303 #26952] INFO -- : --> 200 200 (166 0ms)
8557
+ I, [2009-09-28T14:52:02.641954 #26952] INFO -- : GET http://somewhere.else:80/people.xml
8558
+ I, [2009-09-28T14:52:02.642104 #26952] INFO -- : --> 200 200 (222 0ms)
8559
+ I, [2009-09-28T14:52:02.651960 #26952] INFO -- : GET http://somewhere.else:80/companies/1/people.xml
8560
+ I, [2009-09-28T14:52:02.652098 #26952] INFO -- : --> 200 200 (147 0ms)
8561
+ I, [2009-09-28T14:52:02.661335 #26952] INFO -- : GET http://somewhere.else:80/companies/1/people.xml
8562
+ I, [2009-09-28T14:52:02.661490 #26952] INFO -- : --> 200 200 (147 0ms)
8563
+ I, [2009-09-28T14:52:02.670678 #26952] INFO -- : GET http://somewhere.else:80/people/managers.xml
8564
+ I, [2009-09-28T14:52:02.670813 #26952] INFO -- : --> 200 200 (147 0ms)
8565
+ I, [2009-09-28T14:52:02.680093 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml
8566
+ I, [2009-09-28T14:52:02.680271 #26952] INFO -- : --> 200 200 (166 0ms)
8567
+ I, [2009-09-28T14:52:02.689394 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/2/addresses.xml
8568
+ I, [2009-09-28T14:52:02.689543 #26952] INFO -- : --> 404 404 (0 0ms)
8569
+ I, [2009-09-28T14:52:02.697043 #26952] INFO -- : GET http://somewhere.else:80/people/1.xml
8570
+ I, [2009-09-28T14:52:02.697172 #26952] INFO -- : --> 200 200 (106 0ms)
8571
+ I, [2009-09-28T14:52:02.706010 #26952] INFO -- : GET http://somewhere.else:80/people/99.xml
8572
+ I, [2009-09-28T14:52:02.706149 #26952] INFO -- : --> 404 404 (0 0ms)
8573
+ I, [2009-09-28T14:52:02.706364 #26952] INFO -- : GET http://37s.sunrise.i:3000/people//addresses/1.xml
8574
+ I, [2009-09-28T14:52:02.706450 #26952] INFO -- : --> 404 404 (0 0ms)
8575
+ I, [2009-09-28T14:52:02.714361 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8576
+ I, [2009-09-28T14:52:02.714500 #26952] INFO -- : --> 200 200 (120 0ms)
8577
+ I, [2009-09-28T14:52:02.723666 #26952] INFO -- : GET http://somewhere.else:80/people.xml
8578
+ I, [2009-09-28T14:52:02.723814 #26952] INFO -- : --> 200 200 (222 0ms)
8579
+ I, [2009-09-28T14:52:02.733784 #26952] INFO -- : GET http://somewhere.else:80/people.xml
8580
+ I, [2009-09-28T14:52:02.733957 #26952] INFO -- : --> 200 200 (222 0ms)
8581
+ I, [2009-09-28T14:52:02.743608 #26952] INFO -- : GET http://somewhere.else:80/companies/1/manager.xml
8582
+ I, [2009-09-28T14:52:02.743738 #26952] INFO -- : --> 200 200 (107 0ms)
8583
+ I, [2009-09-28T14:52:02.752763 #26952] INFO -- : GET http://somewhere.else:80/people/leader.xml
8584
+ I, [2009-09-28T14:52:02.752925 #26952] INFO -- : --> 200 200 (107 0ms)
8585
+ I, [2009-09-28T14:52:02.811759 #26952] INFO -- : GET http://somewhere.else:80/people.xml
8586
+ I, [2009-09-28T14:52:02.811920 #26952] INFO -- : --> 200 200 (222 0ms)
8587
+ I, [2009-09-28T14:52:02.822307 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml
8588
+ I, [2009-09-28T14:52:02.822474 #26952] INFO -- : --> 200 200 (166 0ms)
8589
+ I, [2009-09-28T14:52:02.831621 #26952] INFO -- : GET http://somewhere.else:80/people.xml
8590
+ I, [2009-09-28T14:52:02.831767 #26952] INFO -- : --> 200 200 (222 0ms)
8591
+ I, [2009-09-28T14:52:02.841653 #26952] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml
8592
+ I, [2009-09-28T14:52:02.841792 #26952] INFO -- : --> 200 200 (166 0ms)
8593
+ I, [2009-09-28T14:52:02.843917 #26952] INFO -- : GET http://somewhere.else:80/people.json
8594
+ I, [2009-09-28T14:52:02.844023 #26952] INFO -- : --> 200 200 (48 0ms)
8595
+ I, [2009-09-28T14:52:02.845200 #26952] INFO -- : GET http://somewhere.else:80/people.xml
8596
+ I, [2009-09-28T14:52:02.845282 #26952] INFO -- : --> 200 200 (224 0ms)
8597
+ I, [2009-09-28T14:52:02.847996 #26952] INFO -- : GET http://somewhere.else:80/people/retrieve.json?name=David
8598
+ I, [2009-09-28T14:52:02.848112 #26952] INFO -- : --> 200 200 (25 0ms)
8599
+ I, [2009-09-28T14:52:02.849066 #26952] INFO -- : GET http://somewhere.else:80/people/retrieve.xml?name=David
8600
+ I, [2009-09-28T14:52:02.849188 #26952] INFO -- : --> 200 200 (149 0ms)
8601
+ I, [2009-09-28T14:52:02.851277 #26952] INFO -- : GET http://somewhere.else:80/people/2.json
8602
+ I, [2009-09-28T14:52:02.851398 #26952] INFO -- : --> 200 200 (23 0ms)
8603
+ I, [2009-09-28T14:52:02.851710 #26952] INFO -- : GET http://somewhere.else:80/people/2/shallow.json
8604
+ I, [2009-09-28T14:52:02.851786 #26952] INFO -- : --> 200 200 (23 0ms)
8605
+ I, [2009-09-28T14:52:02.852810 #26952] INFO -- : GET http://somewhere.else:80/people/2.xml
8606
+ I, [2009-09-28T14:52:02.852899 #26952] INFO -- : --> 200 200 (103 0ms)
8607
+ I, [2009-09-28T14:52:02.854292 #26952] INFO -- : GET http://somewhere.else:80/people/2/shallow.xml
8608
+ I, [2009-09-28T14:52:02.854389 #26952] INFO -- : --> 200 200 (103 0ms)
8609
+ I, [2009-09-28T14:52:02.855825 #26952] INFO -- : POST http://somewhere.else:80/people.json
8610
+ I, [2009-09-28T14:52:02.855924 #26952] INFO -- : --> 201 201 (15 0ms)
8611
+ I, [2009-09-28T14:52:02.856267 #26952] INFO -- : POST http://somewhere.else:80/people/new/register.json
8612
+ I, [2009-09-28T14:52:02.856348 #26952] INFO -- : --> 201 201 (15 0ms)
8613
+ I, [2009-09-28T14:52:02.856969 #26952] INFO -- : POST http://somewhere.else:80/people.xml
8614
+ I, [2009-09-28T14:52:02.857048 #26952] INFO -- : --> 201 201 (74 0ms)
8615
+ I, [2009-09-28T14:52:02.858450 #26952] INFO -- : POST http://somewhere.else:80/people/new/register.xml
8616
+ I, [2009-09-28T14:52:02.858540 #26952] INFO -- : --> 201 201 (74 0ms)
8617
+ I, [2009-09-28T14:52:02.859000 #26952] INFO -- : GET http://somewhere.else:80/people/1.json
8618
+ I, [2009-09-28T14:52:02.859086 #26952] INFO -- : --> 200 200 (23 0ms)
8619
+ I, [2009-09-28T14:52:02.859747 #26952] INFO -- : GET http://somewhere.else:80/people/1.xml
8620
+ I, [2009-09-28T14:52:02.859825 #26952] INFO -- : --> 200 200 (103 0ms)
8621
+ I, [2009-09-28T14:52:02.861843 #26952] INFO -- : POST http://somewhere.else:80/people.json
8622
+ I, [2009-09-28T14:52:02.861948 #26952] INFO -- : --> 201 201 (50 0ms)
8623
+ I, [2009-09-28T14:52:02.863211 #26952] INFO -- : POST http://somewhere.else:80/people.xml
8624
+ I, [2009-09-28T14:52:02.863297 #26952] INFO -- : --> 201 201 (132 0ms)
8625
+ I, [2009-09-28T14:52:02.865978 #26952] INFO -- : POST http://somewhere.else:80/people.xml
8626
+ I, [2009-09-28T14:52:02.866106 #26952] INFO -- : --> 201 201 (106 0ms)
8627
+ I, [2009-09-28T14:52:02.868541 #26952] INFO -- : GET http://somewhere.else:80/people/1.xml
8628
+ I, [2009-09-28T14:52:02.868704 #26952] INFO -- : --> 200 200 (106 0ms)
8629
+ I, [2009-09-28T14:52:02.870297 #26952] INFO -- : DELETE http://somewhere.else:80/people/1.xml
8630
+ I, [2009-09-28T14:52:02.870434 #26952] INFO -- : --> 200 200 (0 0ms)
8631
+ I, [2009-09-28T14:52:02.871137 #26952] INFO -- : GET http://somewhere.else:80/people/1.xml
8632
+ I, [2009-09-28T14:52:02.871229 #26952] INFO -- : --> 200 200 (106 0ms)
8633
+ I, [2009-09-28T14:52:02.872891 #26952] INFO -- : PUT http://somewhere.else:80/people/1.xml
8634
+ I, [2009-09-28T14:52:02.872986 #26952] INFO -- : --> 204 204 (0 0ms)
8635
+ I, [2009-09-28T14:52:02.875449 #26952] INFO -- : POST http://37s.sunrise.i:3000/projects.xml
8636
+ I, [2009-09-28T14:52:02.875560 #26952] INFO -- : --> 201 201 (123 0ms)
8637
+ I, [2009-09-28T14:52:02.878486 #26952] INFO -- : POST http://37s.sunrise.i:3000/projects.xml
8638
+ I, [2009-09-28T14:52:02.878596 #26952] INFO -- : --> 201 201 (123 0ms)
8639
+ DELETE http://localhost:80/people/2.xml
8640
+ --> 200 200 (0 0ms)
8641
+ GET http://localhost:80/people/2.xml
8642
+ --> 200 200 (107 0ms)
8643
+ POST http://localhost:80/people/2/addresses.xml
8644
+ --> 201 201 (0 0ms)
8645
+ PUT http://localhost:80/people/2.xml
8646
+ --> 204 204 (0 0ms)
8647
+ POST http://localhost:80/people/2.xml
8648
+ POST http://localhost:80/people/2/addresses.xml
8649
+ PUT http://localhost:80/people/2.xml
8650
+ DELETE http://localhost:80/people/2.xml
8651
+ POST http://37s.sunrise.i:3000/people.xml
8652
+ --> 422 422 (209 0ms)
8653
+ POST http://37s.sunrise.i:3000/people.json
8654
+ --> 422 422 (118 0ms)
8655
+ POST http://37s.sunrise.i:3000/people.xml
8656
+ --> 422 422 (209 0ms)
8657
+ POST http://37s.sunrise.i:3000/people.xml
8658
+ --> 422 422 (209 0ms)
8659
+ POST http://37s.sunrise.i:3000/people.json
8660
+ --> 422 422 (118 0ms)
8661
+ POST http://37s.sunrise.i:3000/people.xml
8662
+ --> 422 422 (209 0ms)
8663
+ POST http://37s.sunrise.i:3000/people.xml
8664
+ --> 422 422 (209 0ms)
8665
+ POST http://37s.sunrise.i:3000/people.json
8666
+ --> 422 422 (118 0ms)
8667
+ POST http://37s.sunrise.i:3000/people.xml
8668
+ --> 422 422 (209 0ms)
8669
+ POST http://37s.sunrise.i:3000/people.xml
8670
+ --> 422 422 (209 0ms)
8671
+ POST http://37s.sunrise.i:3000/people.json
8672
+ --> 422 422 (118 0ms)
8673
+ POST http://37s.sunrise.i:3000/people.xml
8674
+ --> 422 422 (209 0ms)
8675
+ POST http://37s.sunrise.i:3000/people.xml
8676
+ --> 422 422 (209 0ms)
8677
+ POST http://37s.sunrise.i:3000/people.json
8678
+ --> 422 422 (118 0ms)
8679
+ POST http://37s.sunrise.i:3000/people.xml
8680
+ --> 422 422 (209 0ms)
8681
+ POST http://37s.sunrise.i:3000/people.xml
8682
+ --> 422 422 (209 0ms)
8683
+ POST http://37s.sunrise.i:3000/people.json
8684
+ --> 422 422 (118 0ms)
8685
+ POST http://37s.sunrise.i:3000/people.xml
8686
+ --> 422 422 (209 0ms)
8687
+ GET http://37s.sunrise.i:3000/people/1.xml
8688
+ --> 200 200 (106 0ms)
8689
+ GET http://37s.sunrise.i:3000/people/1.xml
8690
+ --> 200 200 (106 0ms)
8691
+ GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8692
+ --> 200 200 (120 0ms)
8693
+ POST http://37s.sunrise.i:3000/people.xml
8694
+ --> 201 201 (109 0ms)
8695
+ POST http://37s.sunrise.i:3000/people.xml
8696
+ --> 409 409 (0 0ms)
8697
+ POST http://37s.sunrise.i:3000/people/1/addresses.xml
8698
+ --> 201 201 (0 0ms)
8699
+ POST http://37s.sunrise.i:3000/people.xml
8700
+ --> 201 201 (0 0ms)
8701
+ GET http://37s.sunrise.i:3000/people/Greg.xml
8702
+ --> 200 200 (106 0ms)
8703
+ GET http://37s.sunrise.i:3000/people/4.xml
8704
+ --> 404 404 (0 0ms)
8705
+ DELETE http://37s.sunrise.i:3000/people/1.xml
8706
+ --> 200 200 (0 0ms)
8707
+ GET http://37s.sunrise.i:3000/people/1.xml
8708
+ --> 404 404 (0 0ms)
8709
+ DELETE http://37s.sunrise.i:3000/people/1.xml
8710
+ --> 200 200 (0 0ms)
8711
+ GET http://37s.sunrise.i:3000/people/1.xml
8712
+ --> 410 410 (0 0ms)
8713
+ DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml
8714
+ --> 200 200 (0 0ms)
8715
+ GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8716
+ --> 404 404 (0 0ms)
8717
+ GET http://37s.sunrise.i:3000/people/1.xml
8718
+ --> 200 200 (106 0ms)
8719
+ DELETE http://37s.sunrise.i:3000/people/1.xml
8720
+ --> 200 200 (0 0ms)
8721
+ GET http://37s.sunrise.i:3000/people/1.xml
8722
+ --> 404 404 (0 0ms)
8723
+ GET http://37s.sunrise.i:3000/people/1.xml
8724
+ --> 200 200 (106 0ms)
8725
+ DELETE http://37s.sunrise.i:3000/people/1.xml
8726
+ --> 200 200 (0 0ms)
8727
+ GET http://37s.sunrise.i:3000/people/1.xml
8728
+ --> 410 410 (0 0ms)
8729
+ GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8730
+ --> 200 200 (120 0ms)
8731
+ DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml
8732
+ --> 200 200 (0 0ms)
8733
+ GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8734
+ --> 404 404 (0 0ms)
8735
+ HEAD http://37s.sunrise.i:3000/people/1.xml
8736
+ --> 200 200 (0 0ms)
8737
+ HEAD http://37s.sunrise.i:3000/people/99.xml
8738
+ --> 404 404 (0 0ms)
8739
+ GET http://37s.sunrise.i:3000/people/1.xml
8740
+ --> 200 200 (106 0ms)
8741
+ HEAD http://37s.sunrise.i:3000/people/1.xml
8742
+ --> 200 200 (0 0ms)
8743
+ HEAD http://37s.sunrise.i:3000/people/99.xml
8744
+ --> 404 404 (0 0ms)
8745
+ HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml
8746
+ --> 200 200 (0 0ms)
8747
+ HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml
8748
+ --> 404 404 (0 0ms)
8749
+ HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml
8750
+ --> 404 404 (0 0ms)
8751
+ GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8752
+ --> 200 200 (120 0ms)
8753
+ HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml
8754
+ --> 200 200 (0 0ms)
8755
+ HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml
8756
+ --> 404 404 (0 0ms)
8757
+ HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml
8758
+ --> 404 404 (0 0ms)
8759
+ HEAD http://37s.sunrise.i:3000/people/1.xml
8760
+ --> 410 410 (0 0ms)
8761
+ HEAD http://37s.sunrise.i:3000/people/Greg.xml
8762
+ --> 200 200 (0 0ms)
8763
+ GET http://37s.sunrise.i:3000/people/Greg.xml
8764
+ --> 200 200 (106 0ms)
8765
+ HEAD http://37s.sunrise.i:3000/people/Greg.xml
8766
+ --> 200 200 (0 0ms)
8767
+ GET http://37s.sunrise.i:3000/people/Greg.xml
8768
+ --> 200 200 (106 0ms)
8769
+ HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml
8770
+ --> 200 200 (0 0ms)
8771
+ GET http://37s.sunrise.i:3000/people/Greg.xml
8772
+ --> 200 200 (106 0ms)
8773
+ GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml
8774
+ --> 200 200 (120 0ms)
8775
+ HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml
8776
+ --> 200 200 (0 0ms)
8777
+ HEAD http://37s.sunrise.i:3000/people/not-mocked.xml
8778
+ --> 200 200 (0 0ms)
8779
+ GET http://37s.sunrise.i:3000/people.xml
8780
+ --> 200 200 (222 0ms)
8781
+ GET http://37s.sunrise.i:3000/companies/1/people.xml
8782
+ --> 200 200 (147 0ms)
8783
+ GET http://37s.sunrise.i:3000/companies/1/people.xml
8784
+ --> 200 200 (147 0ms)
8785
+ GET http://37s.sunrise.i:3000/people/managers.xml
8786
+ --> 200 200 (147 0ms)
8787
+ GET http://37s.sunrise.i:3000/people/1.xml
8788
+ --> 200 200 (106 0ms)
8789
+ GET http://37s.sunrise.i:3000/people/99.xml
8790
+ --> 404 404 (0 0ms)
8791
+ GET http://37s.sunrise.i:3000/people//addresses/1.xml
8792
+ --> 404 404 (0 0ms)
8793
+ GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8794
+ --> 200 200 (120 0ms)
8795
+ GET http://37s.sunrise.i:3000/people.xml
8796
+ --> 200 200 (222 0ms)
8797
+ GET http://37s.sunrise.i:3000/people.xml
8798
+ --> 200 200 (222 0ms)
8799
+ GET http://37s.sunrise.i:3000/companies/1/manager.xml
8800
+ --> 200 200 (107 0ms)
8801
+ GET http://37s.sunrise.i:3000/people/leader.xml
8802
+ --> 200 200 (107 0ms)
8803
+ GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8804
+ --> 200 200 (120 0ms)
8805
+ GET http://37s.sunrise.i:3000/people/5.xml
8806
+ --> 200 200 (223 0ms)
8807
+ GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8808
+ --> 200 200 (120 0ms)
8809
+ GET http://37s.sunrise.i:3000/customers/1.xml
8810
+ --> 200 200 (1458 0ms)
8811
+ GET http://37s.sunrise.i:3000/people/Greg.xml
8812
+ --> 200 200 (106 0ms)
8813
+ GET http://37s.sunrise.i:3000/people/Greg.xml
8814
+ --> 200 200 (106 0ms)
8815
+ GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8816
+ --> 200 200 (120 0ms)
8817
+ GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8818
+ --> 200 200 (120 0ms)
8819
+ GET http://37s.sunrise.i:3000/people.xml
8820
+ --> 200 200 (222 0ms)
8821
+ GET http://37s.sunrise.i:3000/people/1.xml
8822
+ --> 200 200 (106 0ms)
8823
+ GET http://37s.sunrise.i:3000/people/1.xml
8824
+ --> 200 200 (106 0ms)
8825
+ POST http://37s.sunrise.i:3000/people.xml
8826
+ --> 201 201 (109 0ms)
8827
+ GET http://somewhere.else:80/people/1.xml
8828
+ --> 200 200 (106 0ms)
8829
+ GET http://somewhere.else:80/people/1.xml
8830
+ --> 200 200 (106 0ms)
8831
+ GET http://somewhere.else:80/people.xml
8832
+ --> 200 200 (222 0ms)
8833
+ PUT http://somewhere.else:80/people/1.xml
8834
+ --> 204 204 (0 0ms)
8835
+ GET http://somewhere.else:80/people/2.xml
8836
+ --> 200 200 (107 0ms)
8837
+ PUT http://somewhere.else:80/people/2.xml
8838
+ --> 409 409 (0 0ms)
8839
+ GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8840
+ --> 200 200 (120 0ms)
8841
+ PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml
8842
+ --> 204 204 (0 0ms)
8843
+ GET http://37s.sunrise.i:3000/people/1/addresses.xml
8844
+ --> 200 200 (166 0ms)
8845
+ PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml
8846
+ --> 204 204 (0 0ms)
8847
+ GET http://localhost:80/people/1.xml
8848
+ --> 200 200 (106 0ms)
8849
+ DELETE http://localhost:80/people/1.xml
8850
+ --> 200 200 (0 0ms)
8851
+ DELETE http://localhost:80/people/2.xml
8852
+ --> 200 200 (0 0ms)
8853
+ GET http://localhost:80/people/1.xml
8854
+ --> 200 200 (106 0ms)
8855
+ GET http://localhost:80/people.xml
8856
+ --> 200 200 (222 0ms)
8857
+ GET http://localhost:80/people_empty_elements.xml
8858
+ --> 200 200 (77 0ms)
8859
+ GET http://localhost:80/people_single_elements.xml
8860
+ --> 200 200 (208 0ms)
8861
+ GET http://localhost:80/people/2.xml
8862
+ --> 200 200 (107 0ms)
8863
+ HEAD http://localhost:80/people/1.xml
8864
+ --> 200 200 (0 0ms)
8865
+ POST http://localhost:80/people.xml
8866
+ --> 201 201 (0 0ms)
8867
+ POST http://localhost:80/members.xml
8868
+ --> 201 201 (1 0ms)
8869
+ PUT http://localhost:80/people/1.xml
8870
+ --> 204 204 (0 0ms)
8871
+ PUT http://localhost:80/people/2.xml
8872
+ --> 204 204 (0 0ms)
8873
+ GET http://localhost:80/people/1.xml
8874
+ GET http://localhost:80/people_timeout.xml
8875
+ GET http://somewhere.else:80/people/retrieve.xml?name=Matz
8876
+ --> 200 200 (146 0ms)
8877
+ POST http://somewhere.else:80/people/hire.xml?name=Matz
8878
+ --> 201 201 (0 0ms)
8879
+ PUT http://somewhere.else:80/people/promote.xml?name=Matz
8880
+ --> 204 204 (0 0ms)
8881
+ PUT http://somewhere.else:80/people/sort.xml?by=name
8882
+ --> 204 204 (0 0ms)
8883
+ DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz
8884
+ --> 200 200 (0 0ms)
8885
+ PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name
8886
+ --> 204 204 (0 0ms)
8887
+ GET http://somewhere.else:80/people/1.xml
8888
+ --> 200 200 (106 0ms)
8889
+ GET http://somewhere.else:80/people/1/shallow.xml
8890
+ --> 200 200 (106 0ms)
8891
+ GET http://somewhere.else:80/people/1.xml
8892
+ --> 200 200 (106 0ms)
8893
+ GET http://somewhere.else:80/people/1/deep.xml
8894
+ --> 200 200 (129 0ms)
8895
+ GET http://somewhere.else:80/people/1.xml
8896
+ --> 200 200 (106 0ms)
8897
+ PUT http://somewhere.else:80/people/1/promote.xml?position=Manager
8898
+ --> 204 204 (0 0ms)
8899
+ GET http://somewhere.else:80/people/1.xml
8900
+ --> 200 200 (106 0ms)
8901
+ DELETE http://somewhere.else:80/people/1/deactivate.xml
8902
+ --> 200 200 (0 0ms)
8903
+ GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8904
+ --> 200 200 (120 0ms)
8905
+ GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml
8906
+ --> 200 200 (139 0ms)
8907
+ GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
8908
+ --> 200 200 (120 0ms)
8909
+ PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US
8910
+ --> 204 204 (0 0ms)
8911
+ POST http://somewhere.else:80/people/new/register.xml
8912
+ --> 201 201 (78 0ms)
8913
+ POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml
8914
+ --> 201 201 (92 0ms)
8915
+ POST http://somewhere.else:80/people/1/register.xml
8916
+ --> 201 201 (106 0ms)
8917
+ GET http://somewhere.else:80/people/managers.xml
8918
+ --> 200 200 (146 0ms)
8919
+ GET http://somewhere.else:80/people.json
8920
+ --> 200 200 (48 0ms)
8921
+ GET http://somewhere.else:80/people.xml
8922
+ --> 200 200 (224 0ms)
8923
+ GET http://somewhere.else:80/people/retrieve.json?name=David
8924
+ --> 200 200 (25 0ms)
8925
+ GET http://somewhere.else:80/people/retrieve.xml?name=David
8926
+ --> 200 200 (149 0ms)
8927
+ GET http://somewhere.else:80/people/2.json
8928
+ --> 200 200 (23 0ms)
8929
+ GET http://somewhere.else:80/people/2/shallow.json
8930
+ --> 200 200 (23 0ms)
8931
+ GET http://somewhere.else:80/people/2.xml
8932
+ --> 200 200 (103 0ms)
8933
+ GET http://somewhere.else:80/people/2/shallow.xml
8934
+ --> 200 200 (103 0ms)
8935
+ POST http://somewhere.else:80/people.json
8936
+ --> 201 201 (15 0ms)
8937
+ POST http://somewhere.else:80/people/new/register.json
8938
+ --> 201 201 (15 0ms)
8939
+ POST http://somewhere.else:80/people.xml
8940
+ --> 201 201 (74 0ms)
8941
+ POST http://somewhere.else:80/people/new/register.xml
8942
+ --> 201 201 (74 0ms)
8943
+ GET http://somewhere.else:80/people/1.json
8944
+ --> 200 200 (23 0ms)
8945
+ GET http://somewhere.else:80/people/1.xml
8946
+ --> 200 200 (103 0ms)
8947
+ POST http://somewhere.else:80/people.json
8948
+ --> 201 201 (50 0ms)
8949
+ POST http://somewhere.else:80/people.xml
8950
+ --> 201 201 (132 0ms)
8951
+ I, [2009-10-15T10:42:00.965918 #83316] INFO -- : DELETE http://localhost:80/people/2.xml
8952
+ I, [2009-10-15T10:42:00.985066 #83316] INFO -- : --> 200 200 (0 0ms)
8953
+ I, [2009-10-15T10:42:00.986753 #83316] INFO -- : DELETE http://localhost:80/people/2.xml
8954
+ I, [2009-10-15T10:42:00.986916 #83316] INFO -- : --> 401 401 (0 0ms)
8955
+ I, [2009-10-15T10:42:00.987199 #83316] INFO -- : DELETE http://localhost:80/people/2.xml
8956
+ I, [2009-10-15T10:42:00.987314 #83316] INFO -- : --> 200 200 (0 0ms)
8957
+ I, [2009-10-15T10:42:00.988691 #83316] INFO -- : GET http://localhost:80/people/2.xml
8958
+ I, [2009-10-15T10:42:00.988812 #83316] INFO -- : --> 200 200 (107 0ms)
8959
+ I, [2009-10-15T10:42:01.032768 #83316] INFO -- : GET http://localhost:80/people/2.xml
8960
+ I, [2009-10-15T10:42:01.032922 #83316] INFO -- : --> 401 401 (0 0ms)
8961
+ I, [2009-10-15T10:42:01.033165 #83316] INFO -- : GET http://localhost:80/people/2.xml
8962
+ I, [2009-10-15T10:42:01.033259 #83316] INFO -- : --> 200 200 (107 0ms)
8963
+ I, [2009-10-15T10:42:01.034861 #83316] INFO -- : GET http://localhost:80/people/1.xml
8964
+ I, [2009-10-15T10:42:01.035001 #83316] INFO -- : --> 200 200 (106 0ms)
8965
+ I, [2009-10-15T10:42:01.037408 #83316] INFO -- : GET http://localhost:80/people/2.xml
8966
+ I, [2009-10-15T10:42:01.037542 #83316] INFO -- : --> 401 401 (0 0ms)
8967
+ I, [2009-10-15T10:42:01.037776 #83316] INFO -- : GET http://localhost:80/people/2.xml
8968
+ I, [2009-10-15T10:42:01.037869 #83316] INFO -- : --> 200 200 (107 0ms)
8969
+ I, [2009-10-15T10:42:01.072145 #83316] INFO -- : HEAD http://localhost:80/people/2.xml
8970
+ I, [2009-10-15T10:42:01.072300 #83316] INFO -- : --> 200 200 (0 0ms)
8971
+ I, [2009-10-15T10:42:01.073448 #83316] INFO -- : HEAD http://localhost:80/people/2.xml
8972
+ I, [2009-10-15T10:42:01.073560 #83316] INFO -- : --> 401 401 (0 0ms)
8973
+ I, [2009-10-15T10:42:01.073788 #83316] INFO -- : HEAD http://localhost:80/people/2.xml
8974
+ I, [2009-10-15T10:42:01.073884 #83316] INFO -- : --> 200 200 (0 0ms)
8975
+ I, [2009-10-15T10:42:01.075093 #83316] INFO -- : POST http://localhost:80/people/2/addresses.xml
8976
+ I, [2009-10-15T10:42:01.075206 #83316] INFO -- : --> 201 201 (0 0ms)
8977
+ I, [2009-10-15T10:42:01.076434 #83316] INFO -- : POST http://localhost:80/people/2/addresses.xml
8978
+ I, [2009-10-15T10:42:01.076542 #83316] INFO -- : --> 401 401 (0 0ms)
8979
+ I, [2009-10-15T10:42:01.076766 #83316] INFO -- : POST http://localhost:80/people/2/addresses.xml
8980
+ I, [2009-10-15T10:42:01.076906 #83316] INFO -- : --> 201 201 (0 0ms)
8981
+ I, [2009-10-15T10:42:01.078068 #83316] INFO -- : PUT http://localhost:80/people/2.xml
8982
+ I, [2009-10-15T10:42:01.078166 #83316] INFO -- : --> 204 204 (0 0ms)
8983
+ I, [2009-10-15T10:42:01.079285 #83316] INFO -- : PUT http://localhost:80/people/2.xml
8984
+ I, [2009-10-15T10:42:01.079389 #83316] INFO -- : --> 401 401 (0 0ms)
8985
+ I, [2009-10-15T10:42:01.079599 #83316] INFO -- : PUT http://localhost:80/people/2.xml
8986
+ I, [2009-10-15T10:42:01.079687 #83316] INFO -- : --> 204 204 (0 0ms)
8987
+ I, [2009-10-15T10:42:01.080876 #83316] INFO -- : GET http://localhost:80/people/2.xml
8988
+ I, [2009-10-15T10:42:01.081152 #83316] INFO -- : POST http://localhost:80/people/2/addresses.xml
8989
+ I, [2009-10-15T10:42:01.081387 #83316] INFO -- : PUT http://localhost:80/people/2.xml
8990
+ I, [2009-10-15T10:42:01.081625 #83316] INFO -- : DELETE http://localhost:80/people/2.xml
8991
+ I, [2009-10-15T10:42:01.081858 #83316] INFO -- : HEAD http://localhost:80/people/2.xml
8992
+ I, [2009-10-15T10:42:01.083196 #83316] INFO -- : GET http://localhost:80/people/2.xml
8993
+ I, [2009-10-15T10:42:01.083467 #83316] INFO -- : POST http://localhost:80/people/2/addresses.xml
8994
+ I, [2009-10-15T10:42:01.083694 #83316] INFO -- : PUT http://localhost:80/people/2.xml
8995
+ I, [2009-10-15T10:42:01.083939 #83316] INFO -- : DELETE http://localhost:80/people/2.xml
8996
+ I, [2009-10-15T10:42:01.084217 #83316] INFO -- : HEAD http://localhost:80/people/2.xml
8997
+ I, [2009-10-15T10:42:01.085609 #83316] INFO -- : GET http://localhost:80/people/1.xml
8998
+ I, [2009-10-15T10:42:01.085721 #83316] INFO -- : --> 401 401 (0 0ms)
8999
+ I, [2009-10-15T10:42:01.164890 #83316] INFO -- : POST http://37s.sunrise.i:3000/people.json
9000
+ I, [2009-10-15T10:42:01.165060 #83316] INFO -- : --> 422 422 (118 0ms)
9001
+ I, [2009-10-15T10:42:01.194799 #83316] INFO -- : POST http://37s.sunrise.i:3000/people.xml
9002
+ I, [2009-10-15T10:42:01.194968 #83316] INFO -- : --> 422 422 (209 0ms)
9003
+ I, [2009-10-15T10:42:01.197493 #83316] INFO -- : POST http://37s.sunrise.i:3000/people.json
9004
+ I, [2009-10-15T10:42:01.197627 #83316] INFO -- : --> 422 422 (118 0ms)
9005
+ I, [2009-10-15T10:42:01.198503 #83316] INFO -- : POST http://37s.sunrise.i:3000/people.xml
9006
+ I, [2009-10-15T10:42:01.198591 #83316] INFO -- : --> 422 422 (209 0ms)
9007
+ I, [2009-10-15T10:42:01.200542 #83316] INFO -- : POST http://37s.sunrise.i:3000/people.json
9008
+ I, [2009-10-15T10:42:01.200654 #83316] INFO -- : --> 422 422 (118 0ms)
9009
+ I, [2009-10-15T10:42:01.201656 #83316] INFO -- : POST http://37s.sunrise.i:3000/people.xml
9010
+ I, [2009-10-15T10:42:01.201744 #83316] INFO -- : --> 422 422 (209 0ms)
9011
+ I, [2009-10-15T10:42:01.203945 #83316] INFO -- : POST http://37s.sunrise.i:3000/people.json
9012
+ I, [2009-10-15T10:42:01.204077 #83316] INFO -- : --> 422 422 (118 0ms)
9013
+ I, [2009-10-15T10:42:01.205107 #83316] INFO -- : POST http://37s.sunrise.i:3000/people.xml
9014
+ I, [2009-10-15T10:42:01.205198 #83316] INFO -- : --> 422 422 (209 0ms)
9015
+ I, [2009-10-15T10:42:01.208510 #83316] INFO -- : POST http://37s.sunrise.i:3000/people.json
9016
+ I, [2009-10-15T10:42:01.208637 #83316] INFO -- : --> 422 422 (118 0ms)
9017
+ I, [2009-10-15T10:42:01.209541 #83316] INFO -- : POST http://37s.sunrise.i:3000/people.xml
9018
+ I, [2009-10-15T10:42:01.209639 #83316] INFO -- : --> 422 422 (209 0ms)
9019
+ I, [2009-10-15T10:42:01.211913 #83316] INFO -- : POST http://37s.sunrise.i:3000/people.json
9020
+ I, [2009-10-15T10:42:01.212042 #83316] INFO -- : --> 422 422 (118 0ms)
9021
+ I, [2009-10-15T10:42:01.212946 #83316] INFO -- : POST http://37s.sunrise.i:3000/people.xml
9022
+ I, [2009-10-15T10:42:01.213044 #83316] INFO -- : --> 422 422 (209 0ms)
9023
+ I, [2009-10-15T10:42:01.229377 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
9024
+ I, [2009-10-15T10:42:01.229533 #83316] INFO -- : --> 200 200 (106 0ms)
9025
+ I, [2009-10-15T10:42:01.276696 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
9026
+ I, [2009-10-15T10:42:01.276854 #83316] INFO -- : --> 200 200 (106 0ms)
9027
+ I, [2009-10-15T10:42:01.278501 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
9028
+ I, [2009-10-15T10:42:01.278617 #83316] INFO -- : --> 200 200 (151 0ms)
9029
+ I, [2009-10-15T10:42:01.289029 #83316] INFO -- : POST http://37s.sunrise.i:3000/people.xml
9030
+ I, [2009-10-15T10:42:01.289187 #83316] INFO -- : --> 201 201 (109 0ms)
9031
+ I, [2009-10-15T10:42:01.291250 #83316] INFO -- : POST http://37s.sunrise.i:3000/people.xml
9032
+ I, [2009-10-15T10:42:01.291363 #83316] INFO -- : --> 409 409 (0 0ms)
9033
+ I, [2009-10-15T10:42:01.299687 #83316] INFO -- : POST http://37s.sunrise.i:3000/people/1/addresses.xml
9034
+ I, [2009-10-15T10:42:01.299884 #83316] INFO -- : --> 201 201 (0 0ms)
9035
+ I, [2009-10-15T10:42:01.308566 #83316] INFO -- : POST http://37s.sunrise.i:3000/people.xml
9036
+ I, [2009-10-15T10:42:01.308717 #83316] INFO -- : --> 201 201 (0 0ms)
9037
+ I, [2009-10-15T10:42:01.430805 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml
9038
+ I, [2009-10-15T10:42:01.430954 #83316] INFO -- : --> 200 200 (106 0ms)
9039
+ I, [2009-10-15T10:42:01.439904 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/4.xml
9040
+ I, [2009-10-15T10:42:01.440049 #83316] INFO -- : --> 404 404 (0 0ms)
9041
+ I, [2009-10-15T10:42:01.455159 #83316] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml
9042
+ I, [2009-10-15T10:42:01.455307 #83316] INFO -- : --> 200 200 (0 0ms)
9043
+ I, [2009-10-15T10:42:01.455580 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
9044
+ I, [2009-10-15T10:42:01.455659 #83316] INFO -- : --> 404 404 (0 0ms)
9045
+ I, [2009-10-15T10:42:01.463255 #83316] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml
9046
+ I, [2009-10-15T10:42:01.463398 #83316] INFO -- : --> 200 200 (0 0ms)
9047
+ I, [2009-10-15T10:42:01.463673 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
9048
+ I, [2009-10-15T10:42:01.463751 #83316] INFO -- : --> 410 410 (0 0ms)
9049
+ I, [2009-10-15T10:42:01.471542 #83316] INFO -- : DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml
9050
+ I, [2009-10-15T10:42:01.471677 #83316] INFO -- : --> 200 200 (0 0ms)
9051
+ I, [2009-10-15T10:42:01.471954 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
9052
+ I, [2009-10-15T10:42:01.472031 #83316] INFO -- : --> 404 404 (0 0ms)
9053
+ I, [2009-10-15T10:42:01.479611 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
9054
+ I, [2009-10-15T10:42:01.479741 #83316] INFO -- : --> 200 200 (106 0ms)
9055
+ I, [2009-10-15T10:42:01.481250 #83316] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml
9056
+ I, [2009-10-15T10:42:01.481370 #83316] INFO -- : --> 200 200 (0 0ms)
9057
+ I, [2009-10-15T10:42:01.481669 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
9058
+ I, [2009-10-15T10:42:01.481756 #83316] INFO -- : --> 404 404 (0 0ms)
9059
+ I, [2009-10-15T10:42:01.489478 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
9060
+ I, [2009-10-15T10:42:01.489624 #83316] INFO -- : --> 200 200 (106 0ms)
9061
+ I, [2009-10-15T10:42:01.491095 #83316] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml
9062
+ I, [2009-10-15T10:42:01.491198 #83316] INFO -- : --> 200 200 (0 0ms)
9063
+ I, [2009-10-15T10:42:01.491470 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
9064
+ I, [2009-10-15T10:42:01.491547 #83316] INFO -- : --> 410 410 (0 0ms)
9065
+ I, [2009-10-15T10:42:01.499333 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
9066
+ I, [2009-10-15T10:42:01.499470 #83316] INFO -- : --> 200 200 (151 0ms)
9067
+ I, [2009-10-15T10:42:01.501141 #83316] INFO -- : DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml
9068
+ I, [2009-10-15T10:42:01.501251 #83316] INFO -- : --> 200 200 (0 0ms)
9069
+ I, [2009-10-15T10:42:01.501536 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
9070
+ I, [2009-10-15T10:42:01.501613 #83316] INFO -- : --> 404 404 (0 0ms)
9071
+ I, [2009-10-15T10:42:01.509617 #83316] INFO -- : HEAD http://37s.sunrise.i:3000/people/1.xml
9072
+ I, [2009-10-15T10:42:01.509774 #83316] INFO -- : --> 200 200 (0 0ms)
9073
+ I, [2009-10-15T10:42:01.509969 #83316] INFO -- : HEAD http://37s.sunrise.i:3000/people/99.xml
9074
+ I, [2009-10-15T10:42:01.510059 #83316] INFO -- : --> 404 404 (0 0ms)
9075
+ I, [2009-10-15T10:42:01.510351 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
9076
+ I, [2009-10-15T10:42:01.510428 #83316] INFO -- : --> 200 200 (106 0ms)
9077
+ I, [2009-10-15T10:42:01.511888 #83316] INFO -- : HEAD http://37s.sunrise.i:3000/people/1.xml
9078
+ I, [2009-10-15T10:42:01.512047 #83316] INFO -- : --> 200 200 (0 0ms)
9079
+ I, [2009-10-15T10:42:01.512301 #83316] INFO -- : HEAD http://37s.sunrise.i:3000/people/99.xml
9080
+ I, [2009-10-15T10:42:01.512392 #83316] INFO -- : --> 404 404 (0 0ms)
9081
+ I, [2009-10-15T10:42:01.512634 #83316] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml
9082
+ I, [2009-10-15T10:42:01.512724 #83316] INFO -- : --> 200 200 (0 0ms)
9083
+ I, [2009-10-15T10:42:01.512918 #83316] INFO -- : HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml
9084
+ I, [2009-10-15T10:42:01.513009 #83316] INFO -- : --> 404 404 (0 0ms)
9085
+ I, [2009-10-15T10:42:01.513230 #83316] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml
9086
+ I, [2009-10-15T10:42:01.513363 #83316] INFO -- : --> 404 404 (0 0ms)
9087
+ I, [2009-10-15T10:42:01.513609 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
9088
+ I, [2009-10-15T10:42:01.513697 #83316] INFO -- : --> 200 200 (151 0ms)
9089
+ I, [2009-10-15T10:42:01.515358 #83316] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml
9090
+ I, [2009-10-15T10:42:01.515481 #83316] INFO -- : --> 200 200 (0 0ms)
9091
+ I, [2009-10-15T10:42:01.515765 #83316] INFO -- : HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml
9092
+ I, [2009-10-15T10:42:01.515867 #83316] INFO -- : --> 404 404 (0 0ms)
9093
+ I, [2009-10-15T10:42:01.516171 #83316] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml
9094
+ I, [2009-10-15T10:42:01.516272 #83316] INFO -- : --> 404 404 (0 0ms)
9095
+ I, [2009-10-15T10:42:01.524600 #83316] INFO -- : HEAD http://37s.sunrise.i:3000/people/1.xml
9096
+ I, [2009-10-15T10:42:01.524754 #83316] INFO -- : --> 410 410 (0 0ms)
9097
+ I, [2009-10-15T10:42:01.582889 #83316] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg.xml
9098
+ I, [2009-10-15T10:42:01.583064 #83316] INFO -- : --> 200 200 (0 0ms)
9099
+ I, [2009-10-15T10:42:01.583284 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml
9100
+ I, [2009-10-15T10:42:01.583369 #83316] INFO -- : --> 200 200 (106 0ms)
9101
+ I, [2009-10-15T10:42:01.584912 #83316] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg.xml
9102
+ I, [2009-10-15T10:42:01.585038 #83316] INFO -- : --> 200 200 (0 0ms)
9103
+ I, [2009-10-15T10:42:01.585256 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml
9104
+ I, [2009-10-15T10:42:01.585343 #83316] INFO -- : --> 200 200 (106 0ms)
9105
+ I, [2009-10-15T10:42:01.586841 #83316] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml
9106
+ I, [2009-10-15T10:42:01.586991 #83316] INFO -- : --> 200 200 (0 0ms)
9107
+ I, [2009-10-15T10:42:01.587218 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml
9108
+ I, [2009-10-15T10:42:01.587299 #83316] INFO -- : --> 200 200 (106 0ms)
9109
+ I, [2009-10-15T10:42:01.588710 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml
9110
+ I, [2009-10-15T10:42:01.588837 #83316] INFO -- : --> 200 200 (151 0ms)
9111
+ I, [2009-10-15T10:42:01.590465 #83316] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml
9112
+ I, [2009-10-15T10:42:01.590606 #83316] INFO -- : --> 200 200 (0 0ms)
9113
+ I, [2009-10-15T10:42:01.598879 #83316] INFO -- : HEAD http://37s.sunrise.i:3000/people/not-mocked.xml
9114
+ I, [2009-10-15T10:42:01.599071 #83316] INFO -- : --> 200 200 (0 0ms)
9115
+ I, [2009-10-15T10:42:01.621559 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
9116
+ I, [2009-10-15T10:42:01.621707 #83316] INFO -- : --> 200 200 (151 0ms)
9117
+ I, [2009-10-15T10:42:01.631585 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/5.xml
9118
+ I, [2009-10-15T10:42:01.631744 #83316] INFO -- : --> 200 200 (223 0ms)
9119
+ I, [2009-10-15T10:42:01.641218 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
9120
+ I, [2009-10-15T10:42:01.641363 #83316] INFO -- : --> 200 200 (151 0ms)
9121
+ I, [2009-10-15T10:42:01.650825 #83316] INFO -- : GET http://37s.sunrise.i:3000/customers/1.xml
9122
+ I, [2009-10-15T10:42:01.650986 #83316] INFO -- : --> 200 200 (1458 0ms)
9123
+ I, [2009-10-15T10:42:01.716995 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml
9124
+ I, [2009-10-15T10:42:01.717148 #83316] INFO -- : --> 200 200 (106 0ms)
9125
+ I, [2009-10-15T10:42:01.767500 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml
9126
+ I, [2009-10-15T10:42:01.767665 #83316] INFO -- : --> 200 200 (106 0ms)
9127
+ I, [2009-10-15T10:42:01.776776 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
9128
+ I, [2009-10-15T10:42:01.776928 #83316] INFO -- : --> 200 200 (151 0ms)
9129
+ I, [2009-10-15T10:42:01.778657 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
9130
+ I, [2009-10-15T10:42:01.778768 #83316] INFO -- : --> 200 200 (151 0ms)
9131
+ I, [2009-10-15T10:42:01.787914 #83316] INFO -- : GET http://37s.sunrise.i:3000/people.xml
9132
+ I, [2009-10-15T10:42:01.788064 #83316] INFO -- : --> 200 200 (222 0ms)
9133
+ I, [2009-10-15T10:42:01.790538 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
9134
+ I, [2009-10-15T10:42:01.790640 #83316] INFO -- : --> 200 200 (106 0ms)
9135
+ I, [2009-10-15T10:42:01.799416 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
9136
+ I, [2009-10-15T10:42:01.799556 #83316] INFO -- : --> 200 200 (106 0ms)
9137
+ I, [2009-10-15T10:42:01.808889 #83316] INFO -- : POST http://37s.sunrise.i:3000/people.xml
9138
+ I, [2009-10-15T10:42:01.809058 #83316] INFO -- : --> 201 201 (109 0ms)
9139
+ I, [2009-10-15T10:42:01.818067 #83316] INFO -- : POST http://37s.sunrise.i:3000/people.xml
9140
+ I, [2009-10-15T10:42:01.818235 #83316] INFO -- : --> 201 201 (109 0ms)
9141
+ I, [2009-10-15T10:42:02.012857 #83316] INFO -- : GET http://somewhere.else:80/people/1.xml
9142
+ I, [2009-10-15T10:42:02.013009 #83316] INFO -- : --> 200 200 (106 0ms)
9143
+ I, [2009-10-15T10:42:02.021991 #83316] INFO -- : GET http://somewhere.else:80/people/1.xml
9144
+ I, [2009-10-15T10:42:02.022137 #83316] INFO -- : --> 200 200 (106 0ms)
9145
+ I, [2009-10-15T10:42:02.031250 #83316] INFO -- : GET http://somewhere.else:80/people.xml
9146
+ I, [2009-10-15T10:42:02.031400 #83316] INFO -- : --> 200 200 (222 0ms)
9147
+ I, [2009-10-15T10:42:02.034341 #83316] INFO -- : PUT http://somewhere.else:80/people/1.xml
9148
+ I, [2009-10-15T10:42:02.034464 #83316] INFO -- : --> 204 204 (0 0ms)
9149
+ I, [2009-10-15T10:42:02.042263 #83316] INFO -- : GET http://somewhere.else:80/people.xml
9150
+ I, [2009-10-15T10:42:02.042404 #83316] INFO -- : --> 200 200 (222 0ms)
9151
+ I, [2009-10-15T10:42:02.052848 #83316] INFO -- : GET http://somewhere.else:80/people.xml
9152
+ I, [2009-10-15T10:42:02.053004 #83316] INFO -- : --> 200 200 (222 0ms)
9153
+ I, [2009-10-15T10:42:02.063404 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml
9154
+ I, [2009-10-15T10:42:02.063555 #83316] INFO -- : --> 200 200 (199 0ms)
9155
+ I, [2009-10-15T10:42:02.073546 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml
9156
+ I, [2009-10-15T10:42:02.073694 #83316] INFO -- : --> 200 200 (199 0ms)
9157
+ I, [2009-10-15T10:42:02.083550 #83316] INFO -- : GET http://somewhere.else:80/people/2.xml
9158
+ I, [2009-10-15T10:42:02.083697 #83316] INFO -- : --> 200 200 (107 0ms)
9159
+ I, [2009-10-15T10:42:02.085528 #83316] INFO -- : PUT http://somewhere.else:80/people/2.xml
9160
+ I, [2009-10-15T10:42:02.085638 #83316] INFO -- : --> 409 409 (0 0ms)
9161
+ I, [2009-10-15T10:42:02.093300 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
9162
+ I, [2009-10-15T10:42:02.093449 #83316] INFO -- : --> 200 200 (151 0ms)
9163
+ I, [2009-10-15T10:42:02.095727 #83316] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml
9164
+ I, [2009-10-15T10:42:02.095857 #83316] INFO -- : --> 204 204 (0 0ms)
9165
+ I, [2009-10-15T10:42:02.103405 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml
9166
+ I, [2009-10-15T10:42:02.103549 #83316] INFO -- : --> 200 200 (199 0ms)
9167
+ I, [2009-10-15T10:42:02.106041 #83316] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml
9168
+ I, [2009-10-15T10:42:02.106168 #83316] INFO -- : --> 204 204 (0 0ms)
9169
+ I, [2009-10-15T10:42:02.204130 #83316] INFO -- : GET http://localhost:80/people/1.xml
9170
+ I, [2009-10-15T10:42:02.204310 #83316] INFO -- : --> 200 200 (106 0ms)
9171
+ I, [2009-10-15T10:42:02.213357 #83316] INFO -- : DELETE http://localhost:80/people/1.xml
9172
+ I, [2009-10-15T10:42:02.213513 #83316] INFO -- : --> 200 200 (0 0ms)
9173
+ I, [2009-10-15T10:42:02.215676 #83316] INFO -- : DELETE http://localhost:80/people/2.xml
9174
+ I, [2009-10-15T10:42:02.215846 #83316] INFO -- : --> 200 200 (0 0ms)
9175
+ I, [2009-10-15T10:42:02.217857 #83316] INFO -- : GET http://localhost:80/people/1.xml
9176
+ I, [2009-10-15T10:42:02.217951 #83316] INFO -- : --> 200 200 (106 0ms)
9177
+ I, [2009-10-15T10:42:02.221442 #83316] INFO -- : GET http://localhost:80/people.xml
9178
+ I, [2009-10-15T10:42:02.221574 #83316] INFO -- : --> 200 200 (222 0ms)
9179
+ I, [2009-10-15T10:42:02.225904 #83316] INFO -- : GET http://localhost:80/people_empty_elements.xml
9180
+ I, [2009-10-15T10:42:02.226023 #83316] INFO -- : --> 200 200 (77 0ms)
9181
+ I, [2009-10-15T10:42:02.228612 #83316] INFO -- : GET http://localhost:80/people_single_elements.xml
9182
+ I, [2009-10-15T10:42:02.228721 #83316] INFO -- : --> 200 200 (208 0ms)
9183
+ I, [2009-10-15T10:42:02.232221 #83316] INFO -- : GET http://localhost:80/people/2.xml
9184
+ I, [2009-10-15T10:42:02.232342 #83316] INFO -- : --> 200 200 (107 0ms)
9185
+ I, [2009-10-15T10:42:02.238505 #83316] INFO -- : HEAD http://localhost:80/people/1.xml
9186
+ I, [2009-10-15T10:42:02.238639 #83316] INFO -- : --> 200 200 (0 0ms)
9187
+ I, [2009-10-15T10:42:02.242779 #83316] INFO -- : POST http://localhost:80/people.xml
9188
+ I, [2009-10-15T10:42:02.242899 #83316] INFO -- : --> 201 201 (0 0ms)
9189
+ I, [2009-10-15T10:42:02.244914 #83316] INFO -- : POST http://localhost:80/members.xml
9190
+ I, [2009-10-15T10:42:02.245012 #83316] INFO -- : --> 201 201 (1 0ms)
9191
+ I, [2009-10-15T10:42:02.249121 #83316] INFO -- : PUT http://localhost:80/people/1.xml
9192
+ I, [2009-10-15T10:42:02.249265 #83316] INFO -- : --> 204 204 (0 0ms)
9193
+ I, [2009-10-15T10:42:02.251531 #83316] INFO -- : PUT http://localhost:80/people/2.xml
9194
+ I, [2009-10-15T10:42:02.251720 #83316] INFO -- : --> 204 204 (0 0ms)
9195
+ I, [2009-10-15T10:42:02.260575 #83316] INFO -- : GET http://localhost:80/people/1.xml
9196
+ I, [2009-10-15T10:42:02.265763 #83316] INFO -- : GET http://localhost:80/people_timeout.xml
9197
+ I, [2009-10-15T10:42:02.270289 #83316] INFO -- : GET http://somewhere.else:80/people/retrieve.xml?name=Matz
9198
+ I, [2009-10-15T10:42:02.270408 #83316] INFO -- : --> 200 200 (146 0ms)
9199
+ I, [2009-10-15T10:42:02.272131 #83316] INFO -- : POST http://somewhere.else:80/people/hire.xml?name=Matz
9200
+ I, [2009-10-15T10:42:02.272233 #83316] INFO -- : --> 201 201 (0 0ms)
9201
+ I, [2009-10-15T10:42:02.272452 #83316] INFO -- : PUT http://somewhere.else:80/people/promote.xml?name=Matz
9202
+ I, [2009-10-15T10:42:02.272537 #83316] INFO -- : --> 204 204 (0 0ms)
9203
+ I, [2009-10-15T10:42:02.272761 #83316] INFO -- : PUT http://somewhere.else:80/people/sort.xml?by=name
9204
+ I, [2009-10-15T10:42:02.272843 #83316] INFO -- : --> 204 204 (0 0ms)
9205
+ I, [2009-10-15T10:42:02.273062 #83316] INFO -- : DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz
9206
+ I, [2009-10-15T10:42:02.273149 #83316] INFO -- : --> 200 200 (0 0ms)
9207
+ I, [2009-10-15T10:42:02.273377 #83316] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name
9208
+ I, [2009-10-15T10:42:02.273463 #83316] INFO -- : --> 204 204 (0 0ms)
9209
+ I, [2009-10-15T10:42:02.275835 #83316] INFO -- : GET http://somewhere.else:80/people/1.xml
9210
+ I, [2009-10-15T10:42:02.275930 #83316] INFO -- : --> 200 200 (106 0ms)
9211
+ I, [2009-10-15T10:42:02.277383 #83316] INFO -- : GET http://somewhere.else:80/people/1/shallow.xml
9212
+ I, [2009-10-15T10:42:02.277484 #83316] INFO -- : --> 200 200 (106 0ms)
9213
+ I, [2009-10-15T10:42:02.278674 #83316] INFO -- : GET http://somewhere.else:80/people/1.xml
9214
+ I, [2009-10-15T10:42:02.278762 #83316] INFO -- : --> 200 200 (106 0ms)
9215
+ I, [2009-10-15T10:42:02.280004 #83316] INFO -- : GET http://somewhere.else:80/people/1/deep.xml
9216
+ I, [2009-10-15T10:42:02.280100 #83316] INFO -- : --> 200 200 (129 0ms)
9217
+ I, [2009-10-15T10:42:02.281906 #83316] INFO -- : GET http://somewhere.else:80/people/1.xml
9218
+ I, [2009-10-15T10:42:02.282016 #83316] INFO -- : --> 200 200 (106 0ms)
9219
+ I, [2009-10-15T10:42:02.283331 #83316] INFO -- : PUT http://somewhere.else:80/people/1/promote.xml?position=Manager
9220
+ I, [2009-10-15T10:42:02.283427 #83316] INFO -- : --> 204 204 (0 0ms)
9221
+ I, [2009-10-15T10:42:02.283633 #83316] INFO -- : GET http://somewhere.else:80/people/1.xml
9222
+ I, [2009-10-15T10:42:02.283708 #83316] INFO -- : --> 200 200 (106 0ms)
9223
+ I, [2009-10-15T10:42:02.285094 #83316] INFO -- : DELETE http://somewhere.else:80/people/1/deactivate.xml
9224
+ I, [2009-10-15T10:42:02.285207 #83316] INFO -- : --> 200 200 (0 0ms)
9225
+ I, [2009-10-15T10:42:02.285442 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
9226
+ I, [2009-10-15T10:42:02.285533 #83316] INFO -- : --> 200 200 (120 0ms)
9227
+ I, [2009-10-15T10:42:02.287083 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml
9228
+ I, [2009-10-15T10:42:02.287235 #83316] INFO -- : --> 200 200 (139 0ms)
9229
+ I, [2009-10-15T10:42:02.288895 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
9230
+ I, [2009-10-15T10:42:02.289034 #83316] INFO -- : --> 200 200 (120 0ms)
9231
+ I, [2009-10-15T10:42:02.290430 #83316] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US
9232
+ I, [2009-10-15T10:42:02.290548 #83316] INFO -- : --> 204 204 (0 0ms)
9233
+ I, [2009-10-15T10:42:02.293258 #83316] INFO -- : POST http://somewhere.else:80/people/new/register.xml
9234
+ I, [2009-10-15T10:42:02.293394 #83316] INFO -- : --> 201 201 (78 0ms)
9235
+ I, [2009-10-15T10:42:02.294110 #83316] INFO -- : POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml
9236
+ I, [2009-10-15T10:42:02.294206 #83316] INFO -- : --> 201 201 (92 0ms)
9237
+ I, [2009-10-15T10:42:02.294738 #83316] INFO -- : POST http://somewhere.else:80/people/1/register.xml
9238
+ I, [2009-10-15T10:42:02.294821 #83316] INFO -- : --> 201 201 (106 0ms)
9239
+ I, [2009-10-15T10:42:02.297148 #83316] INFO -- : GET http://somewhere.else:80/people/managers.xml
9240
+ I, [2009-10-15T10:42:02.297245 #83316] INFO -- : --> 200 200 (146 0ms)
9241
+ I, [2009-10-15T10:42:02.306522 #83316] INFO -- : GET http://somewhere.else:80/people.xml
9242
+ I, [2009-10-15T10:42:02.306671 #83316] INFO -- : --> 200 200 (222 0ms)
9243
+ I, [2009-10-15T10:42:02.316547 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml
9244
+ I, [2009-10-15T10:42:02.316691 #83316] INFO -- : --> 200 200 (166 0ms)
9245
+ I, [2009-10-15T10:42:02.326102 #83316] INFO -- : GET http://somewhere.else:80/people.xml
9246
+ I, [2009-10-15T10:42:02.326313 #83316] INFO -- : --> 200 200 (222 0ms)
9247
+ I, [2009-10-15T10:42:02.389348 #83316] INFO -- : GET http://somewhere.else:80/companies/1/people.xml
9248
+ I, [2009-10-15T10:42:02.389505 #83316] INFO -- : --> 200 200 (147 0ms)
9249
+ I, [2009-10-15T10:42:02.398881 #83316] INFO -- : GET http://somewhere.else:80/companies/1/people.xml
9250
+ I, [2009-10-15T10:42:02.399030 #83316] INFO -- : --> 200 200 (147 0ms)
9251
+ I, [2009-10-15T10:42:02.408807 #83316] INFO -- : GET http://somewhere.else:80/people/managers.xml
9252
+ I, [2009-10-15T10:42:02.408956 #83316] INFO -- : --> 200 200 (147 0ms)
9253
+ I, [2009-10-15T10:42:02.418332 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml
9254
+ I, [2009-10-15T10:42:02.418483 #83316] INFO -- : --> 200 200 (166 0ms)
9255
+ I, [2009-10-15T10:42:02.427871 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/2/addresses.xml
9256
+ I, [2009-10-15T10:42:02.428032 #83316] INFO -- : --> 404 404 (0 0ms)
9257
+ I, [2009-10-15T10:42:02.435439 #83316] INFO -- : GET http://somewhere.else:80/people/1.xml
9258
+ I, [2009-10-15T10:42:02.435558 #83316] INFO -- : --> 200 200 (106 0ms)
9259
+ I, [2009-10-15T10:42:02.444822 #83316] INFO -- : GET http://somewhere.else:80/people/99.xml
9260
+ I, [2009-10-15T10:42:02.444973 #83316] INFO -- : --> 404 404 (0 0ms)
9261
+ I, [2009-10-15T10:42:02.445476 #83316] INFO -- : GET http://37s.sunrise.i:3000/people//addresses/1.xml
9262
+ I, [2009-10-15T10:42:02.445576 #83316] INFO -- : --> 404 404 (0 0ms)
9263
+ I, [2009-10-15T10:42:02.453021 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
9264
+ I, [2009-10-15T10:42:02.453141 #83316] INFO -- : --> 200 200 (120 0ms)
9265
+ I, [2009-10-15T10:42:02.462067 #83316] INFO -- : GET http://somewhere.else:80/people.xml
9266
+ I, [2009-10-15T10:42:02.462231 #83316] INFO -- : --> 200 200 (222 0ms)
9267
+ I, [2009-10-15T10:42:02.472418 #83316] INFO -- : GET http://somewhere.else:80/people.xml
9268
+ I, [2009-10-15T10:42:02.472572 #83316] INFO -- : --> 200 200 (222 0ms)
9269
+ I, [2009-10-15T10:42:02.482747 #83316] INFO -- : GET http://somewhere.else:80/companies/1/manager.xml
9270
+ I, [2009-10-15T10:42:02.482940 #83316] INFO -- : --> 200 200 (107 0ms)
9271
+ I, [2009-10-15T10:42:02.491809 #83316] INFO -- : GET http://somewhere.else:80/people/leader.xml
9272
+ I, [2009-10-15T10:42:02.491944 #83316] INFO -- : --> 200 200 (107 0ms)
9273
+ I, [2009-10-15T10:42:02.500743 #83316] INFO -- : GET http://somewhere.else:80/people.xml
9274
+ I, [2009-10-15T10:42:02.500919 #83316] INFO -- : --> 200 200 (222 0ms)
9275
+ I, [2009-10-15T10:42:02.511114 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml
9276
+ I, [2009-10-15T10:42:02.511264 #83316] INFO -- : --> 200 200 (166 0ms)
9277
+ I, [2009-10-15T10:42:02.520490 #83316] INFO -- : GET http://somewhere.else:80/people.xml
9278
+ I, [2009-10-15T10:42:02.520633 #83316] INFO -- : --> 200 200 (222 0ms)
9279
+ I, [2009-10-15T10:42:02.530556 #83316] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml
9280
+ I, [2009-10-15T10:42:02.530704 #83316] INFO -- : --> 200 200 (166 0ms)
9281
+ I, [2009-10-15T10:42:02.532967 #83316] INFO -- : GET http://somewhere.else:80/people.json
9282
+ I, [2009-10-15T10:42:02.533082 #83316] INFO -- : --> 200 200 (48 0ms)
9283
+ I, [2009-10-15T10:42:02.534424 #83316] INFO -- : GET http://somewhere.else:80/people.xml
9284
+ I, [2009-10-15T10:42:02.534513 #83316] INFO -- : --> 200 200 (224 0ms)
9285
+ I, [2009-10-15T10:42:02.587824 #83316] INFO -- : GET http://somewhere.else:80/people/retrieve.json?name=David
9286
+ I, [2009-10-15T10:42:02.587966 #83316] INFO -- : --> 200 200 (25 0ms)
9287
+ I, [2009-10-15T10:42:02.588901 #83316] INFO -- : GET http://somewhere.else:80/people/retrieve.xml?name=David
9288
+ I, [2009-10-15T10:42:02.588992 #83316] INFO -- : --> 200 200 (149 0ms)
9289
+ I, [2009-10-15T10:42:02.591152 #83316] INFO -- : GET http://somewhere.else:80/people/2.json
9290
+ I, [2009-10-15T10:42:02.591267 #83316] INFO -- : --> 200 200 (23 0ms)
9291
+ I, [2009-10-15T10:42:02.591662 #83316] INFO -- : GET http://somewhere.else:80/people/2/shallow.json
9292
+ I, [2009-10-15T10:42:02.591746 #83316] INFO -- : --> 200 200 (23 0ms)
9293
+ I, [2009-10-15T10:42:02.592679 #83316] INFO -- : GET http://somewhere.else:80/people/2.xml
9294
+ I, [2009-10-15T10:42:02.592764 #83316] INFO -- : --> 200 200 (103 0ms)
9295
+ I, [2009-10-15T10:42:02.594216 #83316] INFO -- : GET http://somewhere.else:80/people/2/shallow.xml
9296
+ I, [2009-10-15T10:42:02.594318 #83316] INFO -- : --> 200 200 (103 0ms)
9297
+ I, [2009-10-15T10:42:02.595862 #83316] INFO -- : POST http://somewhere.else:80/people.json
9298
+ I, [2009-10-15T10:42:02.595976 #83316] INFO -- : --> 201 201 (15 0ms)
9299
+ I, [2009-10-15T10:42:02.596412 #83316] INFO -- : POST http://somewhere.else:80/people/new/register.json
9300
+ I, [2009-10-15T10:42:02.596492 #83316] INFO -- : --> 201 201 (15 0ms)
9301
+ I, [2009-10-15T10:42:02.597203 #83316] INFO -- : POST http://somewhere.else:80/people.xml
9302
+ I, [2009-10-15T10:42:02.597285 #83316] INFO -- : --> 201 201 (74 0ms)
9303
+ I, [2009-10-15T10:42:02.598656 #83316] INFO -- : POST http://somewhere.else:80/people/new/register.xml
9304
+ I, [2009-10-15T10:42:02.598753 #83316] INFO -- : --> 201 201 (74 0ms)
9305
+ I, [2009-10-15T10:42:02.599282 #83316] INFO -- : GET http://somewhere.else:80/people/1.json
9306
+ I, [2009-10-15T10:42:02.599373 #83316] INFO -- : --> 200 200 (23 0ms)
9307
+ I, [2009-10-15T10:42:02.600126 #83316] INFO -- : GET http://somewhere.else:80/people/1.xml
9308
+ I, [2009-10-15T10:42:02.600213 #83316] INFO -- : --> 200 200 (103 0ms)
9309
+ I, [2009-10-15T10:42:02.602587 #83316] INFO -- : POST http://somewhere.else:80/people.json
9310
+ I, [2009-10-15T10:42:02.602720 #83316] INFO -- : --> 201 201 (50 0ms)
9311
+ I, [2009-10-15T10:42:02.604176 #83316] INFO -- : POST http://somewhere.else:80/people.xml
9312
+ I, [2009-10-15T10:42:02.604275 #83316] INFO -- : --> 201 201 (132 0ms)
9313
+ I, [2009-10-15T10:42:02.607111 #83316] INFO -- : POST http://somewhere.else:80/people.xml
9314
+ I, [2009-10-15T10:42:02.607234 #83316] INFO -- : --> 201 201 (106 0ms)
9315
+ I, [2009-10-15T10:42:02.609228 #83316] INFO -- : GET http://somewhere.else:80/people/1.xml
9316
+ I, [2009-10-15T10:42:02.609337 #83316] INFO -- : --> 200 200 (106 0ms)
9317
+ I, [2009-10-15T10:42:02.610714 #83316] INFO -- : DELETE http://somewhere.else:80/people/1.xml
9318
+ I, [2009-10-15T10:42:02.610817 #83316] INFO -- : --> 200 200 (0 0ms)
9319
+ I, [2009-10-15T10:42:02.611571 #83316] INFO -- : GET http://somewhere.else:80/people/1.xml
9320
+ I, [2009-10-15T10:42:02.611663 #83316] INFO -- : --> 200 200 (106 0ms)
9321
+ I, [2009-10-15T10:42:02.613326 #83316] INFO -- : PUT http://somewhere.else:80/people/1.xml
9322
+ I, [2009-10-15T10:42:02.613426 #83316] INFO -- : --> 204 204 (0 0ms)
9323
+ I, [2009-10-15T10:42:02.615834 #83316] INFO -- : POST http://37s.sunrise.i:3000/projects.xml
9324
+ I, [2009-10-15T10:42:02.615947 #83316] INFO -- : --> 201 201 (123 0ms)
9325
+ I, [2009-10-15T10:42:02.618964 #83316] INFO -- : POST http://37s.sunrise.i:3000/projects.xml
9326
+ I, [2009-10-15T10:42:02.619083 #83316] INFO -- : --> 201 201 (123 0ms)
9327
+ I, [2009-10-15T17:27:43.829170 #85221] INFO -- : DELETE http://localhost:80/people/2.xml
9328
+ I, [2009-10-15T17:27:43.849670 #85221] INFO -- : --> 200 200 (0 0ms)
9329
+ I, [2009-10-15T17:27:43.851683 #85221] INFO -- : DELETE http://localhost:80/people/2.xml
9330
+ I, [2009-10-15T17:27:43.851851 #85221] INFO -- : --> 401 401 (0 0ms)
9331
+ I, [2009-10-15T17:27:43.852140 #85221] INFO -- : DELETE http://localhost:80/people/2.xml
9332
+ I, [2009-10-15T17:27:43.852262 #85221] INFO -- : --> 200 200 (0 0ms)
9333
+ I, [2009-10-15T17:27:43.853724 #85221] INFO -- : GET http://localhost:80/people/2.xml
9334
+ I, [2009-10-15T17:27:43.853842 #85221] INFO -- : --> 200 200 (107 0ms)
9335
+ I, [2009-10-15T17:27:43.897556 #85221] INFO -- : GET http://localhost:80/people/2.xml
9336
+ I, [2009-10-15T17:27:43.897711 #85221] INFO -- : --> 401 401 (0 0ms)
9337
+ I, [2009-10-15T17:27:43.897941 #85221] INFO -- : GET http://localhost:80/people/2.xml
9338
+ I, [2009-10-15T17:27:43.898026 #85221] INFO -- : --> 200 200 (107 0ms)
9339
+ I, [2009-10-15T17:27:43.899421 #85221] INFO -- : GET http://localhost:80/people/1.xml
9340
+ I, [2009-10-15T17:27:43.899525 #85221] INFO -- : --> 200 200 (106 0ms)
9341
+ I, [2009-10-15T17:27:43.901872 #85221] INFO -- : GET http://localhost:80/people/2.xml
9342
+ I, [2009-10-15T17:27:43.901994 #85221] INFO -- : --> 401 401 (0 0ms)
9343
+ I, [2009-10-15T17:27:43.902214 #85221] INFO -- : GET http://localhost:80/people/2.xml
9344
+ I, [2009-10-15T17:27:43.902305 #85221] INFO -- : --> 200 200 (107 0ms)
9345
+ I, [2009-10-15T17:27:43.936515 #85221] INFO -- : HEAD http://localhost:80/people/2.xml
9346
+ I, [2009-10-15T17:27:43.936663 #85221] INFO -- : --> 200 200 (0 0ms)
9347
+ I, [2009-10-15T17:27:43.937900 #85221] INFO -- : HEAD http://localhost:80/people/2.xml
9348
+ I, [2009-10-15T17:27:43.938010 #85221] INFO -- : --> 401 401 (0 0ms)
9349
+ I, [2009-10-15T17:27:43.938246 #85221] INFO -- : HEAD http://localhost:80/people/2.xml
9350
+ I, [2009-10-15T17:27:43.938352 #85221] INFO -- : --> 200 200 (0 0ms)
9351
+ I, [2009-10-15T17:27:43.939801 #85221] INFO -- : POST http://localhost:80/people/2/addresses.xml
9352
+ I, [2009-10-15T17:27:43.939920 #85221] INFO -- : --> 201 201 (0 0ms)
9353
+ I, [2009-10-15T17:27:43.941072 #85221] INFO -- : POST http://localhost:80/people/2/addresses.xml
9354
+ I, [2009-10-15T17:27:43.941174 #85221] INFO -- : --> 401 401 (0 0ms)
9355
+ I, [2009-10-15T17:27:43.941396 #85221] INFO -- : POST http://localhost:80/people/2/addresses.xml
9356
+ I, [2009-10-15T17:27:43.941484 #85221] INFO -- : --> 201 201 (0 0ms)
9357
+ I, [2009-10-15T17:27:43.942604 #85221] INFO -- : PUT http://localhost:80/people/2.xml
9358
+ I, [2009-10-15T17:27:43.942697 #85221] INFO -- : --> 204 204 (0 0ms)
9359
+ I, [2009-10-15T17:27:43.943825 #85221] INFO -- : PUT http://localhost:80/people/2.xml
9360
+ I, [2009-10-15T17:27:43.943921 #85221] INFO -- : --> 401 401 (0 0ms)
9361
+ I, [2009-10-15T17:27:43.944131 #85221] INFO -- : PUT http://localhost:80/people/2.xml
9362
+ I, [2009-10-15T17:27:43.944218 #85221] INFO -- : --> 204 204 (0 0ms)
9363
+ I, [2009-10-15T17:27:43.945388 #85221] INFO -- : GET http://localhost:80/people/2.xml
9364
+ I, [2009-10-15T17:27:43.945653 #85221] INFO -- : POST http://localhost:80/people/2/addresses.xml
9365
+ I, [2009-10-15T17:27:43.945881 #85221] INFO -- : PUT http://localhost:80/people/2.xml
9366
+ I, [2009-10-15T17:27:43.946114 #85221] INFO -- : DELETE http://localhost:80/people/2.xml
9367
+ I, [2009-10-15T17:27:43.946345 #85221] INFO -- : HEAD http://localhost:80/people/2.xml
9368
+ I, [2009-10-15T17:27:43.947519 #85221] INFO -- : GET http://localhost:80/people/2.xml
9369
+ I, [2009-10-15T17:27:43.947832 #85221] INFO -- : POST http://localhost:80/people/2/addresses.xml
9370
+ I, [2009-10-15T17:27:43.948058 #85221] INFO -- : PUT http://localhost:80/people/2.xml
9371
+ I, [2009-10-15T17:27:43.948285 #85221] INFO -- : DELETE http://localhost:80/people/2.xml
9372
+ I, [2009-10-15T17:27:43.948515 #85221] INFO -- : HEAD http://localhost:80/people/2.xml
9373
+ I, [2009-10-15T17:27:43.949728 #85221] INFO -- : GET http://localhost:80/people/1.xml
9374
+ I, [2009-10-15T17:27:43.949822 #85221] INFO -- : --> 401 401 (0 0ms)
9375
+ I, [2009-10-15T17:27:43.977553 #85221] INFO -- : POST http://37s.sunrise.i:3000/people.json
9376
+ I, [2009-10-15T17:27:43.977704 #85221] INFO -- : --> 422 422 (118 0ms)
9377
+ I, [2009-10-15T17:27:43.982859 #85221] INFO -- : POST http://37s.sunrise.i:3000/people.xml
9378
+ I, [2009-10-15T17:27:43.982996 #85221] INFO -- : --> 422 422 (209 0ms)
9379
+ I, [2009-10-15T17:27:43.985273 #85221] INFO -- : POST http://37s.sunrise.i:3000/people.json
9380
+ I, [2009-10-15T17:27:43.985402 #85221] INFO -- : --> 422 422 (118 0ms)
9381
+ I, [2009-10-15T17:27:43.986238 #85221] INFO -- : POST http://37s.sunrise.i:3000/people.xml
9382
+ I, [2009-10-15T17:27:43.986326 #85221] INFO -- : --> 422 422 (209 0ms)
9383
+ I, [2009-10-15T17:27:43.988797 #85221] INFO -- : POST http://37s.sunrise.i:3000/people.json
9384
+ I, [2009-10-15T17:27:43.988932 #85221] INFO -- : --> 422 422 (118 0ms)
9385
+ I, [2009-10-15T17:27:43.989982 #85221] INFO -- : POST http://37s.sunrise.i:3000/people.xml
9386
+ I, [2009-10-15T17:27:43.990068 #85221] INFO -- : --> 422 422 (209 0ms)
9387
+ I, [2009-10-15T17:27:43.992216 #85221] INFO -- : POST http://37s.sunrise.i:3000/people.json
9388
+ I, [2009-10-15T17:27:43.992328 #85221] INFO -- : --> 422 422 (118 0ms)
9389
+ I, [2009-10-15T17:27:43.993293 #85221] INFO -- : POST http://37s.sunrise.i:3000/people.xml
9390
+ I, [2009-10-15T17:27:43.993374 #85221] INFO -- : --> 422 422 (209 0ms)
9391
+ I, [2009-10-15T17:27:43.996771 #85221] INFO -- : POST http://37s.sunrise.i:3000/people.json
9392
+ I, [2009-10-15T17:27:43.996895 #85221] INFO -- : --> 422 422 (118 0ms)
9393
+ I, [2009-10-15T17:27:43.997807 #85221] INFO -- : POST http://37s.sunrise.i:3000/people.xml
9394
+ I, [2009-10-15T17:27:43.997898 #85221] INFO -- : --> 422 422 (209 0ms)
9395
+ I, [2009-10-15T17:27:44.000092 #85221] INFO -- : POST http://37s.sunrise.i:3000/people.json
9396
+ I, [2009-10-15T17:27:44.000208 #85221] INFO -- : --> 422 422 (118 0ms)
9397
+ I, [2009-10-15T17:27:44.001078 #85221] INFO -- : POST http://37s.sunrise.i:3000/people.xml
9398
+ I, [2009-10-15T17:27:44.001167 #85221] INFO -- : --> 422 422 (209 0ms)
9399
+ I, [2009-10-15T17:27:44.018012 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
9400
+ I, [2009-10-15T17:27:44.018158 #85221] INFO -- : --> 200 200 (106 0ms)
9401
+ I, [2009-10-15T17:27:44.065321 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
9402
+ I, [2009-10-15T17:27:44.065478 #85221] INFO -- : --> 200 200 (106 0ms)
9403
+ I, [2009-10-15T17:27:44.067533 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
9404
+ I, [2009-10-15T17:27:44.067690 #85221] INFO -- : --> 200 200 (151 0ms)
9405
+ I, [2009-10-15T17:27:44.078185 #85221] INFO -- : POST http://37s.sunrise.i:3000/people.xml
9406
+ I, [2009-10-15T17:27:44.078338 #85221] INFO -- : --> 201 201 (109 0ms)
9407
+ I, [2009-10-15T17:27:44.080383 #85221] INFO -- : POST http://37s.sunrise.i:3000/people.xml
9408
+ I, [2009-10-15T17:27:44.080492 #85221] INFO -- : --> 409 409 (0 0ms)
9409
+ I, [2009-10-15T17:27:44.088790 #85221] INFO -- : POST http://37s.sunrise.i:3000/people/1/addresses.xml
9410
+ I, [2009-10-15T17:27:44.088928 #85221] INFO -- : --> 201 201 (0 0ms)
9411
+ I, [2009-10-15T17:27:44.097420 #85221] INFO -- : POST http://37s.sunrise.i:3000/people.xml
9412
+ I, [2009-10-15T17:27:44.097566 #85221] INFO -- : --> 201 201 (0 0ms)
9413
+ I, [2009-10-15T17:27:44.219959 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml
9414
+ I, [2009-10-15T17:27:44.220105 #85221] INFO -- : --> 200 200 (106 0ms)
9415
+ I, [2009-10-15T17:27:44.229225 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/4.xml
9416
+ I, [2009-10-15T17:27:44.229376 #85221] INFO -- : --> 404 404 (0 0ms)
9417
+ I, [2009-10-15T17:27:44.244275 #85221] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml
9418
+ I, [2009-10-15T17:27:44.244465 #85221] INFO -- : --> 200 200 (0 0ms)
9419
+ I, [2009-10-15T17:27:44.244760 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
9420
+ I, [2009-10-15T17:27:44.244847 #85221] INFO -- : --> 404 404 (0 0ms)
9421
+ I, [2009-10-15T17:27:44.252198 #85221] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml
9422
+ I, [2009-10-15T17:27:44.252312 #85221] INFO -- : --> 200 200 (0 0ms)
9423
+ I, [2009-10-15T17:27:44.252564 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
9424
+ I, [2009-10-15T17:27:44.252641 #85221] INFO -- : --> 410 410 (0 0ms)
9425
+ I, [2009-10-15T17:27:44.260414 #85221] INFO -- : DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml
9426
+ I, [2009-10-15T17:27:44.260535 #85221] INFO -- : --> 200 200 (0 0ms)
9427
+ I, [2009-10-15T17:27:44.260797 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
9428
+ I, [2009-10-15T17:27:44.260873 #85221] INFO -- : --> 404 404 (0 0ms)
9429
+ I, [2009-10-15T17:27:44.268828 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
9430
+ I, [2009-10-15T17:27:44.268976 #85221] INFO -- : --> 200 200 (106 0ms)
9431
+ I, [2009-10-15T17:27:44.270542 #85221] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml
9432
+ I, [2009-10-15T17:27:44.270682 #85221] INFO -- : --> 200 200 (0 0ms)
9433
+ I, [2009-10-15T17:27:44.270963 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
9434
+ I, [2009-10-15T17:27:44.271040 #85221] INFO -- : --> 404 404 (0 0ms)
9435
+ I, [2009-10-15T17:27:44.278653 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
9436
+ I, [2009-10-15T17:27:44.278775 #85221] INFO -- : --> 200 200 (106 0ms)
9437
+ I, [2009-10-15T17:27:44.280254 #85221] INFO -- : DELETE http://37s.sunrise.i:3000/people/1.xml
9438
+ I, [2009-10-15T17:27:44.280349 #85221] INFO -- : --> 200 200 (0 0ms)
9439
+ I, [2009-10-15T17:27:44.280614 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
9440
+ I, [2009-10-15T17:27:44.280691 #85221] INFO -- : --> 410 410 (0 0ms)
9441
+ I, [2009-10-15T17:27:44.288407 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
9442
+ I, [2009-10-15T17:27:44.288534 #85221] INFO -- : --> 200 200 (151 0ms)
9443
+ I, [2009-10-15T17:27:44.290245 #85221] INFO -- : DELETE http://37s.sunrise.i:3000/people/1/addresses/1.xml
9444
+ I, [2009-10-15T17:27:44.290356 #85221] INFO -- : --> 200 200 (0 0ms)
9445
+ I, [2009-10-15T17:27:44.290631 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
9446
+ I, [2009-10-15T17:27:44.290707 #85221] INFO -- : --> 404 404 (0 0ms)
9447
+ I, [2009-10-15T17:27:44.298660 #85221] INFO -- : HEAD http://37s.sunrise.i:3000/people/1.xml
9448
+ I, [2009-10-15T17:27:44.298806 #85221] INFO -- : --> 200 200 (0 0ms)
9449
+ I, [2009-10-15T17:27:44.298998 #85221] INFO -- : HEAD http://37s.sunrise.i:3000/people/99.xml
9450
+ I, [2009-10-15T17:27:44.299090 #85221] INFO -- : --> 404 404 (0 0ms)
9451
+ I, [2009-10-15T17:27:44.299364 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
9452
+ I, [2009-10-15T17:27:44.299440 #85221] INFO -- : --> 200 200 (106 0ms)
9453
+ I, [2009-10-15T17:27:44.300928 #85221] INFO -- : HEAD http://37s.sunrise.i:3000/people/1.xml
9454
+ I, [2009-10-15T17:27:44.301041 #85221] INFO -- : --> 200 200 (0 0ms)
9455
+ I, [2009-10-15T17:27:44.301302 #85221] INFO -- : HEAD http://37s.sunrise.i:3000/people/99.xml
9456
+ I, [2009-10-15T17:27:44.301395 #85221] INFO -- : --> 404 404 (0 0ms)
9457
+ I, [2009-10-15T17:27:44.301650 #85221] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml
9458
+ I, [2009-10-15T17:27:44.301749 #85221] INFO -- : --> 200 200 (0 0ms)
9459
+ I, [2009-10-15T17:27:44.301945 #85221] INFO -- : HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml
9460
+ I, [2009-10-15T17:27:44.302039 #85221] INFO -- : --> 404 404 (0 0ms)
9461
+ I, [2009-10-15T17:27:44.302270 #85221] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml
9462
+ I, [2009-10-15T17:27:44.302368 #85221] INFO -- : --> 404 404 (0 0ms)
9463
+ I, [2009-10-15T17:27:44.302608 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
9464
+ I, [2009-10-15T17:27:44.302695 #85221] INFO -- : --> 200 200 (151 0ms)
9465
+ I, [2009-10-15T17:27:44.304291 #85221] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/1.xml
9466
+ I, [2009-10-15T17:27:44.304399 #85221] INFO -- : --> 200 200 (0 0ms)
9467
+ I, [2009-10-15T17:27:44.304703 #85221] INFO -- : HEAD http://37s.sunrise.i:3000/people/2/addresses/1.xml
9468
+ I, [2009-10-15T17:27:44.304852 #85221] INFO -- : --> 404 404 (0 0ms)
9469
+ I, [2009-10-15T17:27:44.305166 #85221] INFO -- : HEAD http://37s.sunrise.i:3000/people/1/addresses/2.xml
9470
+ I, [2009-10-15T17:27:44.305278 #85221] INFO -- : --> 404 404 (0 0ms)
9471
+ I, [2009-10-15T17:27:44.313708 #85221] INFO -- : HEAD http://37s.sunrise.i:3000/people/1.xml
9472
+ I, [2009-10-15T17:27:44.313854 #85221] INFO -- : --> 410 410 (0 0ms)
9473
+ I, [2009-10-15T17:27:44.371761 #85221] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg.xml
9474
+ I, [2009-10-15T17:27:44.371935 #85221] INFO -- : --> 200 200 (0 0ms)
9475
+ I, [2009-10-15T17:27:44.372144 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml
9476
+ I, [2009-10-15T17:27:44.372224 #85221] INFO -- : --> 200 200 (106 0ms)
9477
+ I, [2009-10-15T17:27:44.373747 #85221] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg.xml
9478
+ I, [2009-10-15T17:27:44.373863 #85221] INFO -- : --> 200 200 (0 0ms)
9479
+ I, [2009-10-15T17:27:44.374063 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml
9480
+ I, [2009-10-15T17:27:44.374143 #85221] INFO -- : --> 200 200 (106 0ms)
9481
+ I, [2009-10-15T17:27:44.375454 #85221] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml
9482
+ I, [2009-10-15T17:27:44.375563 #85221] INFO -- : --> 200 200 (0 0ms)
9483
+ I, [2009-10-15T17:27:44.375763 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml
9484
+ I, [2009-10-15T17:27:44.375843 #85221] INFO -- : --> 200 200 (106 0ms)
9485
+ I, [2009-10-15T17:27:44.377147 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/Greg/addresses/1.xml
9486
+ I, [2009-10-15T17:27:44.377246 #85221] INFO -- : --> 200 200 (151 0ms)
9487
+ I, [2009-10-15T17:27:44.378717 #85221] INFO -- : HEAD http://37s.sunrise.i:3000/people/Greg/addresses/1.xml
9488
+ I, [2009-10-15T17:27:44.378829 #85221] INFO -- : --> 200 200 (0 0ms)
9489
+ I, [2009-10-15T17:27:44.387061 #85221] INFO -- : HEAD http://37s.sunrise.i:3000/people/not-mocked.xml
9490
+ I, [2009-10-15T17:27:44.387257 #85221] INFO -- : --> 200 200 (0 0ms)
9491
+ I, [2009-10-15T17:27:44.409357 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
9492
+ I, [2009-10-15T17:27:44.409497 #85221] INFO -- : --> 200 200 (151 0ms)
9493
+ I, [2009-10-15T17:27:44.419282 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/5.xml
9494
+ I, [2009-10-15T17:27:44.419479 #85221] INFO -- : --> 200 200 (223 0ms)
9495
+ I, [2009-10-15T17:27:44.429156 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
9496
+ I, [2009-10-15T17:27:44.429303 #85221] INFO -- : --> 200 200 (151 0ms)
9497
+ I, [2009-10-15T17:27:44.438524 #85221] INFO -- : GET http://37s.sunrise.i:3000/customers/1.xml
9498
+ I, [2009-10-15T17:27:44.438669 #85221] INFO -- : --> 200 200 (1458 0ms)
9499
+ I, [2009-10-15T17:27:44.506425 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml
9500
+ I, [2009-10-15T17:27:44.556246 #85221] INFO -- : --> 200 200 (106 50ms)
9501
+ I, [2009-10-15T17:27:44.557948 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/Greg.xml
9502
+ I, [2009-10-15T17:27:44.558065 #85221] INFO -- : --> 200 200 (106 0ms)
9503
+ I, [2009-10-15T17:27:44.567377 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
9504
+ I, [2009-10-15T17:27:44.567524 #85221] INFO -- : --> 200 200 (151 0ms)
9505
+ I, [2009-10-15T17:27:44.569232 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
9506
+ I, [2009-10-15T17:27:44.569338 #85221] INFO -- : --> 200 200 (151 0ms)
9507
+ I, [2009-10-15T17:27:44.578668 #85221] INFO -- : GET http://37s.sunrise.i:3000/people.xml
9508
+ I, [2009-10-15T17:27:44.578832 #85221] INFO -- : --> 200 200 (222 0ms)
9509
+ I, [2009-10-15T17:27:44.581377 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
9510
+ I, [2009-10-15T17:27:44.581483 #85221] INFO -- : --> 200 200 (106 0ms)
9511
+ I, [2009-10-15T17:27:44.590407 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1.xml
9512
+ I, [2009-10-15T17:27:44.590540 #85221] INFO -- : --> 200 200 (106 0ms)
9513
+ I, [2009-10-15T17:27:44.600447 #85221] INFO -- : POST http://37s.sunrise.i:3000/people.xml
9514
+ I, [2009-10-15T17:27:44.600600 #85221] INFO -- : --> 201 201 (109 0ms)
9515
+ I, [2009-10-15T17:27:44.610088 #85221] INFO -- : POST http://37s.sunrise.i:3000/people.xml
9516
+ I, [2009-10-15T17:27:44.610264 #85221] INFO -- : --> 201 201 (109 0ms)
9517
+ I, [2009-10-15T17:27:44.806542 #85221] INFO -- : GET http://somewhere.else:80/people/1.xml
9518
+ I, [2009-10-15T17:27:44.806689 #85221] INFO -- : --> 200 200 (106 0ms)
9519
+ I, [2009-10-15T17:27:44.815632 #85221] INFO -- : GET http://somewhere.else:80/people/1.xml
9520
+ I, [2009-10-15T17:27:44.815766 #85221] INFO -- : --> 200 200 (106 0ms)
9521
+ I, [2009-10-15T17:27:44.825086 #85221] INFO -- : GET http://somewhere.else:80/people.xml
9522
+ I, [2009-10-15T17:27:44.825235 #85221] INFO -- : --> 200 200 (222 0ms)
9523
+ I, [2009-10-15T17:27:44.828122 #85221] INFO -- : PUT http://somewhere.else:80/people/1.xml
9524
+ I, [2009-10-15T17:27:44.828232 #85221] INFO -- : --> 204 204 (0 0ms)
9525
+ I, [2009-10-15T17:27:44.835906 #85221] INFO -- : GET http://somewhere.else:80/people.xml
9526
+ I, [2009-10-15T17:27:44.836033 #85221] INFO -- : --> 200 200 (222 0ms)
9527
+ I, [2009-10-15T17:27:44.846551 #85221] INFO -- : GET http://somewhere.else:80/people.xml
9528
+ I, [2009-10-15T17:27:44.846699 #85221] INFO -- : --> 200 200 (222 0ms)
9529
+ I, [2009-10-15T17:27:44.857207 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml
9530
+ I, [2009-10-15T17:27:44.857355 #85221] INFO -- : --> 200 200 (199 0ms)
9531
+ I, [2009-10-15T17:27:44.867887 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml
9532
+ I, [2009-10-15T17:27:44.868037 #85221] INFO -- : --> 200 200 (199 0ms)
9533
+ I, [2009-10-15T17:27:44.878141 #85221] INFO -- : GET http://somewhere.else:80/people/2.xml
9534
+ I, [2009-10-15T17:27:44.878281 #85221] INFO -- : --> 200 200 (107 0ms)
9535
+ I, [2009-10-15T17:27:44.880058 #85221] INFO -- : PUT http://somewhere.else:80/people/2.xml
9536
+ I, [2009-10-15T17:27:44.880155 #85221] INFO -- : --> 409 409 (0 0ms)
9537
+ I, [2009-10-15T17:27:44.888249 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
9538
+ I, [2009-10-15T17:27:44.888399 #85221] INFO -- : --> 200 200 (151 0ms)
9539
+ I, [2009-10-15T17:27:44.890658 #85221] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml
9540
+ I, [2009-10-15T17:27:44.890772 #85221] INFO -- : --> 204 204 (0 0ms)
9541
+ I, [2009-10-15T17:27:44.898410 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml
9542
+ I, [2009-10-15T17:27:44.898536 #85221] INFO -- : --> 200 200 (199 0ms)
9543
+ I, [2009-10-15T17:27:44.900979 #85221] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/1.xml
9544
+ I, [2009-10-15T17:27:44.901091 #85221] INFO -- : --> 204 204 (0 0ms)
9545
+ I, [2009-10-15T17:27:45.001170 #85221] INFO -- : GET http://localhost:80/people/1.xml
9546
+ I, [2009-10-15T17:27:45.001350 #85221] INFO -- : --> 200 200 (106 0ms)
9547
+ I, [2009-10-15T17:27:45.010602 #85221] INFO -- : DELETE http://localhost:80/people/1.xml
9548
+ I, [2009-10-15T17:27:45.010764 #85221] INFO -- : --> 200 200 (0 0ms)
9549
+ I, [2009-10-15T17:27:45.013165 #85221] INFO -- : DELETE http://localhost:80/people/2.xml
9550
+ I, [2009-10-15T17:27:45.013286 #85221] INFO -- : --> 200 200 (0 0ms)
9551
+ I, [2009-10-15T17:27:45.015299 #85221] INFO -- : GET http://localhost:80/people/1.xml
9552
+ I, [2009-10-15T17:27:45.015393 #85221] INFO -- : --> 200 200 (106 0ms)
9553
+ I, [2009-10-15T17:27:45.018761 #85221] INFO -- : GET http://localhost:80/people.xml
9554
+ I, [2009-10-15T17:27:45.018893 #85221] INFO -- : --> 200 200 (222 0ms)
9555
+ I, [2009-10-15T17:27:45.023569 #85221] INFO -- : GET http://localhost:80/people_empty_elements.xml
9556
+ I, [2009-10-15T17:27:45.023703 #85221] INFO -- : --> 200 200 (77 0ms)
9557
+ I, [2009-10-15T17:27:45.026335 #85221] INFO -- : GET http://localhost:80/people_single_elements.xml
9558
+ I, [2009-10-15T17:27:45.026438 #85221] INFO -- : --> 200 200 (208 0ms)
9559
+ I, [2009-10-15T17:27:45.030186 #85221] INFO -- : GET http://localhost:80/people/2.xml
9560
+ I, [2009-10-15T17:27:45.030310 #85221] INFO -- : --> 200 200 (107 0ms)
9561
+ I, [2009-10-15T17:27:45.036681 #85221] INFO -- : HEAD http://localhost:80/people/1.xml
9562
+ I, [2009-10-15T17:27:45.036813 #85221] INFO -- : --> 200 200 (0 0ms)
9563
+ I, [2009-10-15T17:27:45.041087 #85221] INFO -- : POST http://localhost:80/people.xml
9564
+ I, [2009-10-15T17:27:45.041241 #85221] INFO -- : --> 201 201 (0 0ms)
9565
+ I, [2009-10-15T17:27:45.043248 #85221] INFO -- : POST http://localhost:80/members.xml
9566
+ I, [2009-10-15T17:27:45.043345 #85221] INFO -- : --> 201 201 (1 0ms)
9567
+ I, [2009-10-15T17:27:45.047940 #85221] INFO -- : PUT http://localhost:80/people/1.xml
9568
+ I, [2009-10-15T17:27:45.048077 #85221] INFO -- : --> 204 204 (0 0ms)
9569
+ I, [2009-10-15T17:27:45.050170 #85221] INFO -- : PUT http://localhost:80/people/2.xml
9570
+ I, [2009-10-15T17:27:45.050269 #85221] INFO -- : --> 204 204 (0 0ms)
9571
+ I, [2009-10-15T17:27:45.059435 #85221] INFO -- : GET http://localhost:80/people/1.xml
9572
+ I, [2009-10-15T17:27:45.065119 #85221] INFO -- : GET http://localhost:80/people_timeout.xml
9573
+ I, [2009-10-15T17:27:45.069872 #85221] INFO -- : GET http://somewhere.else:80/people/retrieve.xml?name=Matz
9574
+ I, [2009-10-15T17:27:45.069998 #85221] INFO -- : --> 200 200 (146 0ms)
9575
+ I, [2009-10-15T17:27:45.071746 #85221] INFO -- : POST http://somewhere.else:80/people/hire.xml?name=Matz
9576
+ I, [2009-10-15T17:27:45.071845 #85221] INFO -- : --> 201 201 (0 0ms)
9577
+ I, [2009-10-15T17:27:45.072059 #85221] INFO -- : PUT http://somewhere.else:80/people/promote.xml?name=Matz
9578
+ I, [2009-10-15T17:27:45.072137 #85221] INFO -- : --> 204 204 (0 0ms)
9579
+ I, [2009-10-15T17:27:45.072343 #85221] INFO -- : PUT http://somewhere.else:80/people/sort.xml?by=name
9580
+ I, [2009-10-15T17:27:45.072421 #85221] INFO -- : --> 204 204 (0 0ms)
9581
+ I, [2009-10-15T17:27:45.072620 #85221] INFO -- : DELETE http://somewhere.else:80/people/deactivate.xml?name=Matz
9582
+ I, [2009-10-15T17:27:45.072699 #85221] INFO -- : --> 200 200 (0 0ms)
9583
+ I, [2009-10-15T17:27:45.072915 #85221] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/sort.xml?by=name
9584
+ I, [2009-10-15T17:27:45.072998 #85221] INFO -- : --> 204 204 (0 0ms)
9585
+ I, [2009-10-15T17:27:45.075325 #85221] INFO -- : GET http://somewhere.else:80/people/1.xml
9586
+ I, [2009-10-15T17:27:45.075420 #85221] INFO -- : --> 200 200 (106 0ms)
9587
+ I, [2009-10-15T17:27:45.076980 #85221] INFO -- : GET http://somewhere.else:80/people/1/shallow.xml
9588
+ I, [2009-10-15T17:27:45.077088 #85221] INFO -- : --> 200 200 (106 0ms)
9589
+ I, [2009-10-15T17:27:45.078452 #85221] INFO -- : GET http://somewhere.else:80/people/1.xml
9590
+ I, [2009-10-15T17:27:45.078558 #85221] INFO -- : --> 200 200 (106 0ms)
9591
+ I, [2009-10-15T17:27:45.080227 #85221] INFO -- : GET http://somewhere.else:80/people/1/deep.xml
9592
+ I, [2009-10-15T17:27:45.080332 #85221] INFO -- : --> 200 200 (129 0ms)
9593
+ I, [2009-10-15T17:27:45.081948 #85221] INFO -- : GET http://somewhere.else:80/people/1.xml
9594
+ I, [2009-10-15T17:27:45.082076 #85221] INFO -- : --> 200 200 (106 0ms)
9595
+ I, [2009-10-15T17:27:45.083464 #85221] INFO -- : PUT http://somewhere.else:80/people/1/promote.xml?position=Manager
9596
+ I, [2009-10-15T17:27:45.083558 #85221] INFO -- : --> 204 204 (0 0ms)
9597
+ I, [2009-10-15T17:27:45.083760 #85221] INFO -- : GET http://somewhere.else:80/people/1.xml
9598
+ I, [2009-10-15T17:27:45.083950 #85221] INFO -- : --> 200 200 (106 0ms)
9599
+ I, [2009-10-15T17:27:45.085359 #85221] INFO -- : DELETE http://somewhere.else:80/people/1/deactivate.xml
9600
+ I, [2009-10-15T17:27:45.085470 #85221] INFO -- : --> 200 200 (0 0ms)
9601
+ I, [2009-10-15T17:27:45.085742 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
9602
+ I, [2009-10-15T17:27:45.085842 #85221] INFO -- : --> 200 200 (120 0ms)
9603
+ I, [2009-10-15T17:27:45.087296 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1/deep.xml
9604
+ I, [2009-10-15T17:27:45.087408 #85221] INFO -- : --> 200 200 (139 0ms)
9605
+ I, [2009-10-15T17:27:45.088827 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
9606
+ I, [2009-10-15T17:27:45.088925 #85221] INFO -- : --> 200 200 (120 0ms)
9607
+ I, [2009-10-15T17:27:45.090192 #85221] INFO -- : PUT http://37s.sunrise.i:3000/people/1/addresses/1/normalize_phone.xml?locale=US
9608
+ I, [2009-10-15T17:27:45.090325 #85221] INFO -- : --> 204 204 (0 0ms)
9609
+ I, [2009-10-15T17:27:45.093032 #85221] INFO -- : POST http://somewhere.else:80/people/new/register.xml
9610
+ I, [2009-10-15T17:27:45.093157 #85221] INFO -- : --> 201 201 (78 0ms)
9611
+ I, [2009-10-15T17:27:45.093871 #85221] INFO -- : POST http://37s.sunrise.i:3000/people/1/addresses/new/link.xml
9612
+ I, [2009-10-15T17:27:45.093958 #85221] INFO -- : --> 201 201 (92 0ms)
9613
+ I, [2009-10-15T17:27:45.094544 #85221] INFO -- : POST http://somewhere.else:80/people/1/register.xml
9614
+ I, [2009-10-15T17:27:45.094645 #85221] INFO -- : --> 201 201 (106 0ms)
9615
+ I, [2009-10-15T17:27:45.096945 #85221] INFO -- : GET http://somewhere.else:80/people/managers.xml
9616
+ I, [2009-10-15T17:27:45.097080 #85221] INFO -- : --> 200 200 (146 0ms)
9617
+ I, [2009-10-15T17:27:45.106455 #85221] INFO -- : GET http://somewhere.else:80/people.xml
9618
+ I, [2009-10-15T17:27:45.106599 #85221] INFO -- : --> 200 200 (222 0ms)
9619
+ I, [2009-10-15T17:27:45.116771 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml
9620
+ I, [2009-10-15T17:27:45.116912 #85221] INFO -- : --> 200 200 (166 0ms)
9621
+ I, [2009-10-15T17:27:45.126942 #85221] INFO -- : GET http://somewhere.else:80/people.xml
9622
+ I, [2009-10-15T17:27:45.127149 #85221] INFO -- : --> 200 200 (222 0ms)
9623
+ I, [2009-10-15T17:27:45.190478 #85221] INFO -- : GET http://somewhere.else:80/companies/1/people.xml
9624
+ I, [2009-10-15T17:27:45.190632 #85221] INFO -- : --> 200 200 (147 0ms)
9625
+ I, [2009-10-15T17:27:45.199922 #85221] INFO -- : GET http://somewhere.else:80/companies/1/people.xml
9626
+ I, [2009-10-15T17:27:45.200063 #85221] INFO -- : --> 200 200 (147 0ms)
9627
+ I, [2009-10-15T17:27:45.209289 #85221] INFO -- : GET http://somewhere.else:80/people/managers.xml
9628
+ I, [2009-10-15T17:27:45.209423 #85221] INFO -- : --> 200 200 (147 0ms)
9629
+ I, [2009-10-15T17:27:45.218676 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml
9630
+ I, [2009-10-15T17:27:45.218811 #85221] INFO -- : --> 200 200 (166 0ms)
9631
+ I, [2009-10-15T17:27:45.228083 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/2/addresses.xml
9632
+ I, [2009-10-15T17:27:45.228243 #85221] INFO -- : --> 404 404 (0 0ms)
9633
+ I, [2009-10-15T17:27:45.235835 #85221] INFO -- : GET http://somewhere.else:80/people/1.xml
9634
+ I, [2009-10-15T17:27:45.235976 #85221] INFO -- : --> 200 200 (106 0ms)
9635
+ I, [2009-10-15T17:27:45.245082 #85221] INFO -- : GET http://somewhere.else:80/people/99.xml
9636
+ I, [2009-10-15T17:27:45.245228 #85221] INFO -- : --> 404 404 (0 0ms)
9637
+ I, [2009-10-15T17:27:45.245518 #85221] INFO -- : GET http://37s.sunrise.i:3000/people//addresses/1.xml
9638
+ I, [2009-10-15T17:27:45.245608 #85221] INFO -- : --> 404 404 (0 0ms)
9639
+ I, [2009-10-15T17:27:45.252939 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses/1.xml
9640
+ I, [2009-10-15T17:27:45.253058 #85221] INFO -- : --> 200 200 (120 0ms)
9641
+ I, [2009-10-15T17:27:45.261897 #85221] INFO -- : GET http://somewhere.else:80/people.xml
9642
+ I, [2009-10-15T17:27:45.262049 #85221] INFO -- : --> 200 200 (222 0ms)
9643
+ I, [2009-10-15T17:27:45.272692 #85221] INFO -- : GET http://somewhere.else:80/people.xml
9644
+ I, [2009-10-15T17:27:45.272853 #85221] INFO -- : --> 200 200 (222 0ms)
9645
+ I, [2009-10-15T17:27:45.283032 #85221] INFO -- : GET http://somewhere.else:80/companies/1/manager.xml
9646
+ I, [2009-10-15T17:27:45.283172 #85221] INFO -- : --> 200 200 (107 0ms)
9647
+ I, [2009-10-15T17:27:45.292057 #85221] INFO -- : GET http://somewhere.else:80/people/leader.xml
9648
+ I, [2009-10-15T17:27:45.292189 #85221] INFO -- : --> 200 200 (107 0ms)
9649
+ I, [2009-10-15T17:27:45.301058 #85221] INFO -- : GET http://somewhere.else:80/people.xml
9650
+ I, [2009-10-15T17:27:45.301208 #85221] INFO -- : --> 200 200 (222 0ms)
9651
+ I, [2009-10-15T17:27:45.311322 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml
9652
+ I, [2009-10-15T17:27:45.311470 #85221] INFO -- : --> 200 200 (166 0ms)
9653
+ I, [2009-10-15T17:27:45.320899 #85221] INFO -- : GET http://somewhere.else:80/people.xml
9654
+ I, [2009-10-15T17:27:45.321048 #85221] INFO -- : --> 200 200 (222 0ms)
9655
+ I, [2009-10-15T17:27:45.330944 #85221] INFO -- : GET http://37s.sunrise.i:3000/people/1/addresses.xml
9656
+ I, [2009-10-15T17:27:45.331085 #85221] INFO -- : --> 200 200 (166 0ms)
9657
+ I, [2009-10-15T17:27:45.388846 #85221] INFO -- : GET http://somewhere.else:80/people.json
9658
+ I, [2009-10-15T17:27:45.389013 #85221] INFO -- : --> 200 200 (48 0ms)
9659
+ I, [2009-10-15T17:27:45.390447 #85221] INFO -- : GET http://somewhere.else:80/people.xml
9660
+ I, [2009-10-15T17:27:45.390588 #85221] INFO -- : --> 200 200 (224 0ms)
9661
+ I, [2009-10-15T17:27:45.395324 #85221] INFO -- : GET http://somewhere.else:80/people/retrieve.json?name=David
9662
+ I, [2009-10-15T17:27:45.395483 #85221] INFO -- : --> 200 200 (25 0ms)
9663
+ I, [2009-10-15T17:27:45.396943 #85221] INFO -- : GET http://somewhere.else:80/people/retrieve.xml?name=David
9664
+ I, [2009-10-15T17:27:45.397122 #85221] INFO -- : --> 200 200 (149 0ms)
9665
+ I, [2009-10-15T17:27:45.399485 #85221] INFO -- : GET http://somewhere.else:80/people/2.json
9666
+ I, [2009-10-15T17:27:45.399606 #85221] INFO -- : --> 200 200 (23 0ms)
9667
+ I, [2009-10-15T17:27:45.400026 #85221] INFO -- : GET http://somewhere.else:80/people/2/shallow.json
9668
+ I, [2009-10-15T17:27:45.400108 #85221] INFO -- : --> 200 200 (23 0ms)
9669
+ I, [2009-10-15T17:27:45.401163 #85221] INFO -- : GET http://somewhere.else:80/people/2.xml
9670
+ I, [2009-10-15T17:27:45.401274 #85221] INFO -- : --> 200 200 (103 0ms)
9671
+ I, [2009-10-15T17:27:45.402804 #85221] INFO -- : GET http://somewhere.else:80/people/2/shallow.xml
9672
+ I, [2009-10-15T17:27:45.402903 #85221] INFO -- : --> 200 200 (103 0ms)
9673
+ I, [2009-10-15T17:27:45.404815 #85221] INFO -- : POST http://somewhere.else:80/people.json
9674
+ I, [2009-10-15T17:27:45.404969 #85221] INFO -- : --> 201 201 (15 0ms)
9675
+ I, [2009-10-15T17:27:45.405422 #85221] INFO -- : POST http://somewhere.else:80/people/new/register.json
9676
+ I, [2009-10-15T17:27:45.405501 #85221] INFO -- : --> 201 201 (15 0ms)
9677
+ I, [2009-10-15T17:27:45.406207 #85221] INFO -- : POST http://somewhere.else:80/people.xml
9678
+ I, [2009-10-15T17:27:45.406290 #85221] INFO -- : --> 201 201 (74 0ms)
9679
+ I, [2009-10-15T17:27:45.407697 #85221] INFO -- : POST http://somewhere.else:80/people/new/register.xml
9680
+ I, [2009-10-15T17:27:45.407790 #85221] INFO -- : --> 201 201 (74 0ms)
9681
+ I, [2009-10-15T17:27:45.408327 #85221] INFO -- : GET http://somewhere.else:80/people/1.json
9682
+ I, [2009-10-15T17:27:45.408427 #85221] INFO -- : --> 200 200 (23 0ms)
9683
+ I, [2009-10-15T17:27:45.409527 #85221] INFO -- : GET http://somewhere.else:80/people/1.xml
9684
+ I, [2009-10-15T17:27:45.409763 #85221] INFO -- : --> 200 200 (103 0ms)
9685
+ I, [2009-10-15T17:27:45.414594 #85221] INFO -- : POST http://somewhere.else:80/people.json
9686
+ I, [2009-10-15T17:27:45.414736 #85221] INFO -- : --> 201 201 (50 0ms)
9687
+ I, [2009-10-15T17:27:45.416124 #85221] INFO -- : POST http://somewhere.else:80/people.xml
9688
+ I, [2009-10-15T17:27:45.416209 #85221] INFO -- : --> 201 201 (132 0ms)
9689
+ I, [2009-10-15T17:27:45.419161 #85221] INFO -- : POST http://somewhere.else:80/people.xml
9690
+ I, [2009-10-15T17:27:45.419285 #85221] INFO -- : --> 201 201 (106 0ms)
9691
+ I, [2009-10-15T17:27:45.422452 #85221] INFO -- : GET http://somewhere.else:80/people/1.xml
9692
+ I, [2009-10-15T17:27:45.422613 #85221] INFO -- : --> 200 200 (106 0ms)
9693
+ I, [2009-10-15T17:27:45.424155 #85221] INFO -- : DELETE http://somewhere.else:80/people/1.xml
9694
+ I, [2009-10-15T17:27:45.424256 #85221] INFO -- : --> 200 200 (0 0ms)
9695
+ I, [2009-10-15T17:27:45.425208 #85221] INFO -- : GET http://somewhere.else:80/people/1.xml
9696
+ I, [2009-10-15T17:27:45.425363 #85221] INFO -- : --> 200 200 (106 0ms)
9697
+ I, [2009-10-15T17:27:45.427631 #85221] INFO -- : PUT http://somewhere.else:80/people/1.xml
9698
+ I, [2009-10-15T17:27:45.427799 #85221] INFO -- : --> 204 204 (0 0ms)
9699
+ I, [2009-10-15T17:27:45.431576 #85221] INFO -- : POST http://37s.sunrise.i:3000/projects.xml
9700
+ I, [2009-10-15T17:27:45.431716 #85221] INFO -- : --> 201 201 (123 0ms)
9701
+ I, [2009-10-15T17:27:45.435104 #85221] INFO -- : POST http://37s.sunrise.i:3000/projects.xml
9702
+ I, [2009-10-15T17:27:45.435230 #85221] INFO -- : --> 201 201 (123 0ms)