ratis 3.4.3 → 3.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (134) hide show
  1. checksums.yaml +4 -4
  2. data/.ruby-gemset +1 -0
  3. data/.ruby-version +1 -0
  4. data/CHANGELOG +40 -39
  5. data/README.md +1 -15
  6. data/lib/ratis/area.rb +1 -1
  7. data/lib/ratis/config.rb +2 -4
  8. data/lib/ratis/fleet_location.rb +2 -7
  9. data/lib/ratis/landmark.rb +1 -4
  10. data/lib/ratis/location.rb +1 -3
  11. data/lib/ratis/location_type_ahead.rb +1 -4
  12. data/lib/ratis/next_bus.rb +0 -2
  13. data/lib/ratis/next_bus2.rb +1 -3
  14. data/lib/ratis/plantrip.rb +1 -3
  15. data/lib/ratis/request.rb +5 -2
  16. data/lib/ratis/schedule_nearby.rb +1 -3
  17. data/lib/ratis/timetable.rb +1 -5
  18. data/lib/ratis/version.rb +1 -1
  19. data/lib/ratis/walkstop.rb +1 -3
  20. data/ratis.gemspec +15 -15
  21. data/spec/ratis/area_spec.rb +1 -10
  22. data/spec/ratis/closest_stop_spec.rb +0 -14
  23. data/spec/ratis/config_spec.rb +21 -30
  24. data/spec/ratis/core_ext_spec.rb +0 -11
  25. data/spec/ratis/fleet_location_spec.rb +8 -25
  26. data/spec/ratis/itinerary_spec.rb +0 -10
  27. data/spec/ratis/landmark_category_spec.rb +1 -12
  28. data/spec/ratis/landmark_spec.rb +12 -25
  29. data/spec/ratis/location_spec.rb +5 -16
  30. data/spec/ratis/location_type_ahead_item_spec.rb +11 -9
  31. data/spec/ratis/location_type_ahead_spec.rb +7 -21
  32. data/spec/ratis/next_bus2_spec.rb +67 -81
  33. data/spec/ratis/next_bus_spec.rb +20 -37
  34. data/spec/ratis/pattern_spec.rb +2 -10
  35. data/spec/ratis/plantrip_spec.rb +19 -18
  36. data/spec/ratis/point_2_point_spec.rb +3 -11
  37. data/spec/ratis/request_spec.rb +1 -20
  38. data/spec/ratis/route_pattern_spec.rb +2 -14
  39. data/spec/ratis/route_spec.rb +1 -10
  40. data/spec/ratis/route_stops_spec.rb +1 -10
  41. data/spec/ratis/routes_spec.rb +1 -9
  42. data/spec/ratis/schedule_nearby_spec.rb +1 -11
  43. data/spec/ratis/timetable_spec.rb +24 -44
  44. data/spec/ratis/walkstop_spec.rb +22 -47
  45. data/spec/spec_helper.rb +4 -3
  46. data/spec/support/vcr_cassettes/Nextbus2_running_LATE.yml +141 -1
  47. data/spec/support/vcr_cassettes/Nextbus_running_LATE.yml +2 -2
  48. data/spec/support/vcr_cassettes/Point2Point.yml +2 -2
  49. data/spec/support/vcr_cassettes/Ratis_Area/_all/only_makes_one_request.yml +19 -9
  50. data/spec/support/vcr_cassettes/Ratis_ClosestStop/_where/only_makes_one_request.yml +9 -9
  51. data/spec/support/vcr_cassettes/Ratis_ClosestStop/_where/parses_out_the_stop_fields_correctly.yml +9 -9
  52. data/spec/support/vcr_cassettes/Ratis_ClosestStop/_where/returns_multiple_locations.yml +9 -9
  53. data/spec/support/vcr_cassettes/Ratis_ClosestStop/_where/should_return_a_collection_of_Ratis_Stop_s_.yml +9 -9
  54. data/spec/support/vcr_cassettes/Ratis_FleetLocation/_current/only_makes_one_request.yml +661 -563
  55. data/spec/support/vcr_cassettes/Ratis_FleetLocation/_current/parses_out_the_vehicle_fields_correctly.yml +661 -584
  56. data/spec/support/vcr_cassettes/Ratis_FleetLocation/_current/returns_multiple_vehicles.yml +661 -575
  57. data/spec/support/vcr_cassettes/Ratis_FleetLocation/_current/should_return_a_collection_of_Ratis_Vehicle_s_.yml +661 -575
  58. data/spec/support/vcr_cassettes/Ratis_Landmark/_where/only_makes_one_request.yml +67 -1444
  59. data/spec/support/vcr_cassettes/Ratis_Landmark/_where/parses_out_the_landmark_fields_correctly.yml +67 -1444
  60. data/spec/support/vcr_cassettes/Ratis_Landmark/_where/returns_multiple_landmarks.yml +67 -1444
  61. data/spec/support/vcr_cassettes/Ratis_Landmark/_where/should_return_a_collection_of_Ratis_Landmark_s_.yml +67 -1444
  62. data/spec/support/vcr_cassettes/Ratis_LandmarkCategory/_all/only_makes_one_request.yml +9 -9
  63. data/spec/support/vcr_cassettes/Ratis_LandmarkCategory/_all/should_return_a_collection_of_Ratis_LandmarkCategory_s_.yml +9 -9
  64. data/spec/support/vcr_cassettes/Ratis_LandmarkCategory/_all/should_return_all_landmark_categories.yml +9 -9
  65. data/spec/support/vcr_cassettes/Ratis_LandmarkCategory/_web_categories/does_something.yml +9 -9
  66. data/spec/support/vcr_cassettes/Ratis_Location/_where/only_makes_one_request.yml +11 -11
  67. data/spec/support/vcr_cassettes/Ratis_Location/_where/parses_out_fields_correctly.yml +11 -11
  68. data/spec/support/vcr_cassettes/Ratis_Location/_where/should_return_a_collection_of_Ratis_Location_s_.yml +11 -11
  69. data/spec/support/vcr_cassettes/Ratis_LocationTypeAhead/_where/only_makes_one_request.yml +10 -10
  70. data/spec/support/vcr_cassettes/Ratis_LocationTypeAhead/_where/parses_out_fields_correctly.yml +10 -10
  71. data/spec/support/vcr_cassettes/Ratis_LocationTypeAhead/_where/should_return_a_collection_of_Ratis_LocationTypeAheadItem_s_.yml +10 -10
  72. data/spec/support/vcr_cassettes/Ratis_NextBus/_where/multiple_services_returned/only_makes_one_request.yml +29 -28
  73. data/spec/support/vcr_cassettes/Ratis_NextBus/_where/multiple_services_returned/returns_the_next_4_bus_times.yml +29 -28
  74. data/spec/support/vcr_cassettes/Ratis_NextBus/_where/multiple_services_returned/should_map_all_the_services_to_service_openstruct_objects.yml +29 -28
  75. data/spec/support/vcr_cassettes/Ratis_NextBus/_where/multiple_services_returned/should_raise_error_if_datetime_condition_is_not_a_DateTime_or_Time.yml +62 -80
  76. data/spec/support/vcr_cassettes/Ratis_NextBus/_where/single_service_return/only_makes_one_request.yml +18 -17
  77. data/spec/support/vcr_cassettes/Ratis_NextBus/_where/single_service_return/returns_the_next_bus_times.yml +18 -17
  78. data/spec/support/vcr_cassettes/Ratis_NextBus/_where/single_service_return/should_raise_error_if_datetime_condition_is_not_a_DateTime_or_Time.yml +52 -52
  79. data/spec/support/vcr_cassettes/Ratis_NextBus/_where/single_service_return/should_set_all_the_service_values_to_instance_vars.yml +18 -17
  80. data/spec/support/vcr_cassettes/Ratis_NextBus2/_where/runs/should_set_the_run_values_to_instance_vars.yml +125 -0
  81. data/spec/support/vcr_cassettes/Ratis_NextBus2/_where/single_next_bus/only_makes_one_request.yml +125 -0
  82. data/spec/support/vcr_cassettes/Ratis_NextBus2/_where/single_next_bus/requests_the_correct_SOAP_action.yml +125 -0
  83. data/spec/support/vcr_cassettes/Ratis_NextBus2/_where/stops/should_set_the_stop_values_to_instance_vars.yml +125 -0
  84. data/spec/support/vcr_cassettes/Ratis_Pattern/_all/only_makes_one_request.yml +12 -12
  85. data/spec/support/vcr_cassettes/Ratis_Pattern/_all/should_parse_the_route_info_fields.yml +12 -12
  86. data/spec/support/vcr_cassettes/Ratis_Pattern/_all/should_return_a_collection_Pattern_RouteInfo_s_.yml +12 -12
  87. data/spec/support/vcr_cassettes/Ratis_Pattern/_all/should_return_no_data_error_when_date_is_in_the_past.yml +5 -5
  88. data/spec/support/vcr_cassettes/Ratis_Plantrip/_where/creates_Ratis_Itineraries_for_each_trip_itinerary.yml +30 -30
  89. data/spec/support/vcr_cassettes/Ratis_Plantrip/_where/only_makes_one_request.yml +30 -30
  90. data/spec/support/vcr_cassettes/Ratis_Plantrip/_where/returns_a_Plantrip_object.yml +30 -30
  91. data/spec/support/vcr_cassettes/Ratis_Plantrip/_where/should_set_all_the_Plantrip_values_to_instance_vars.yml +30 -30
  92. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/gets_the_groups.yml +68 -74
  93. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/gets_the_trips_within_each_group.yml +68 -74
  94. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/only_makes_one_request.yml +68 -74
  95. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/parses_out_the_off_stop_fields.yml +68 -74
  96. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/parses_out_the_on_stop_fields.yml +68 -74
  97. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/parses_out_the_service.yml +68 -74
  98. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/parses_out_the_trip.yml +68 -74
  99. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/should_only_return_result_groups_for_filtered_route.yml +15 -17
  100. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/should_only_return_result_groups_for_filtered_routes.yml +19 -21
  101. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/should_raise_error_if_the_trip_is_NOT_possible_for_a_route_being_attempted_to_filter_on.yml +5 -5
  102. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_Y/_where/services_from_origin_to_destination/only_makes_one_request.yml +29 -29
  103. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_Y/_where/services_from_origin_to_destination/parses_out_service_fields.yml +29 -29
  104. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_Y/_where/services_from_origin_to_destination/returns_a_routes_only_response_for_each_matched_service.yml +29 -29
  105. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_Y/_where/services_from_origin_to_destination/returns_all_matching_services_that_fit_the_origin/destination_for_a_given_time_frame.yml +29 -29
  106. data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_Y/_where/services_from_origin_to_destination/should_NOT_filter_by_passed_in_routes.yml +29 -29
  107. data/spec/support/vcr_cassettes/Ratis_RoutePattern/_where/only_makes_one_request.yml +133 -70
  108. data/spec/support/vcr_cassettes/Ratis_RoutePattern/_where/should_parse_the_stop_fields.yml +133 -70
  109. data/spec/support/vcr_cassettes/Ratis_RoutePattern/_where/should_return_a_collection_Ratis_RoutePattern_Point_s_.yml +132 -69
  110. data/spec/support/vcr_cassettes/Ratis_RoutePattern/_where/should_return_a_collection_Ratis_RoutePattern_Stop_s_.yml +133 -70
  111. data/spec/support/vcr_cassettes/Ratis_RouteStops/_all/only_makes_one_request.yml +50 -50
  112. data/spec/support/vcr_cassettes/Ratis_RouteStops/_all/parses_out_the_stop_fields_correctly.yml +50 -50
  113. data/spec/support/vcr_cassettes/Ratis_RouteStops/_all/should_return_a_collection_of_Ratis_RouteStops_Stop_s_.yml +50 -50
  114. data/spec/support/vcr_cassettes/Ratis_Routes/_all/only_makes_one_request.yml +346 -370
  115. data/spec/support/vcr_cassettes/Ratis_Routes/_all/returns_all_routes.yml +346 -370
  116. data/spec/support/vcr_cassettes/Ratis_Routes/_all/should_set_directions_and_short_name_to_variables.yml +346 -370
  117. data/spec/support/vcr_cassettes/Ratis_ScheduleNearby/_where/only_makes_one_request.yml +42 -41
  118. data/spec/support/vcr_cassettes/Ratis_ScheduleNearby/_where/returns_a_non_nil_ScheduleNearby.yml +42 -41
  119. data/spec/support/vcr_cassettes/Ratis_ScheduleNearby/_where/returns_a_single_service_at_the_stop.yml +42 -41
  120. data/spec/support/vcr_cassettes/Ratis_ScheduleNearby/_where/returns_all_the_stops.yml +42 -41
  121. data/spec/support/vcr_cassettes/Ratis_ScheduleNearby/_where/should_return_no_data_error_when_date_is_in_the_past.yml +5 -5
  122. data/spec/support/vcr_cassettes/Ratis_Timetable/_where/ATIS_call/should_not_throw_a_500.yml +719 -0
  123. data/spec/support/vcr_cassettes/Ratis_Timetable/_where/only_makes_one_request.yml +315 -315
  124. data/spec/support/vcr_cassettes/Ratis_Timetable/_where/should_parse_the_timetable/stop/trip_fields.yml +315 -315
  125. data/spec/support/vcr_cassettes/Ratis_Timetable/_where/should_return_a_collection_Timetable_Stop_s_.yml +315 -315
  126. data/spec/support/vcr_cassettes/Ratis_Walkstop/_where/only_makes_one_request.yml +9 -9
  127. data/spec/support/vcr_cassettes/Ratis_Walkstop/_where/should_set_all_the_walkstop_values_to_instance_vars.yml +9 -9
  128. metadata +9 -9
  129. data/.rvmrc +0 -1
  130. data/spec/support/vcr_cassettes/Ratis_LocationTypeAhead/_where/should_return_a_collection_of_Ratis_Location_s_.yml +0 -54
  131. data/spec/support/vcr_cassettes/Ratis_NextBus2/_where/Developer_can_find_a_late_bus_to_a_stop/runs/should_set_the_run_values_to_instance_vars.yml +0 -180
  132. data/spec/support/vcr_cassettes/Ratis_NextBus2/_where/Developer_can_find_a_late_bus_to_a_stop/single_next_bus/only_makes_one_request.yml +0 -180
  133. data/spec/support/vcr_cassettes/Ratis_NextBus2/_where/Developer_can_find_a_late_bus_to_a_stop/single_next_bus/requests_the_correct_SOAP_action.yml +0 -180
  134. data/spec/support/vcr_cassettes/Ratis_NextBus2/_where/Developer_can_find_a_late_bus_to_a_stop/stops/should_set_the_stop_values_to_instance_vars.yml +0 -180
@@ -2,20 +2,20 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://soap.valleymetro.org/cgi-bin-soap-web-262/soap.cgi
5
+ uri: http://soap.valleymetro.org/cgi-bin-soap-web-271/soap.cgi
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
9
9
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsdl="PX_WEB"
10
10
  xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><Locationtypeahead
11
- xmlns="PX_WEB"><Appid>WEB</Appid><Search>1315 w straford dr</Search></Locationtypeahead></env:Body></env:Envelope>
11
+ xmlns="PX_WEB"><Search>1315 w straford dr</Search><Appid>ratis-specs</Appid></Locationtypeahead></env:Body></env:Envelope>
12
12
  headers:
13
13
  Soapaction:
14
14
  - '"PX_WEB#Locationtypeahead"'
15
15
  Content-Type:
16
16
  - text/xml;charset=UTF-8
17
17
  Content-Length:
18
- - '368'
18
+ - '376'
19
19
  Accept-Encoding:
20
20
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
21
21
  Accept:
@@ -28,13 +28,13 @@ http_interactions:
28
28
  message: OK
29
29
  headers:
30
30
  Date:
31
- - Tue, 11 Mar 2014 23:58:35 GMT
31
+ - Sat, 14 Jun 2014 00:40:32 GMT
32
32
  Server:
33
33
  - Apache/2.2.3 (CentOS)
34
34
  Soapserver:
35
35
  - SOAP::Lite/Perl/0.55
36
36
  Content-Length:
37
- - '1115'
37
+ - '986'
38
38
  Connection:
39
39
  - close
40
40
  Content-Type:
@@ -45,10 +45,10 @@ http_interactions:
45
45
  xmlns:SOAP-ENC=\"http://schemas.xmlsoap.org/soap/encoding/\" xmlns:SOAP-ENV=\"http://schemas.xmlsoap.org/soap/envelope/\"
46
46
  xmlns:xsd=\"http://www.w3.org/1999/XMLSchema\" SOAP-ENV:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\"><SOAP-ENV:Body><namesp1:LocationtypeaheadResponse
47
47
  xmlns:namesp1=\"PX_WEB\">\n\t<Responsecode>0</Responsecode>\n\t<Version>1.0</Version>\n\t<Items>\n\t\t<Item>\n\t\t\t<Name>1315
48
- W STRAFORD DR</Name>\n\t\t\t<Area>Chandler</Area>\n\t\t\t<Areacode>CH</Areacode>\n\t\t\t<Postcode>85224</Postcode>\n\t\t\t<Type>N</Type>\n\t\t</Item>\n\t\t<Item>\n\t\t\t<Name>1315
49
- W STRAFORD DR</Name>\n\t\t\t<Area>Chandler</Area>\n\t\t\t<Areacode>CH</Areacode>\n\t\t\t<Postcode>85225</Postcode>\n\t\t\t<Type>N</Type>\n\t\t</Item>\n\t</Items>\n\t<Requestor>68.226.126.17</Requestor>\n\t<Host>s-rpta-soap</Host>\n\t<Copyright>XML
50
- schema Copyright (c) 2003-2013 Trapeze Software ULC, its subsidiaries and
51
- affiliates. All rights reserved.</Copyright>\n\t<Soapversion>2.6.3 - 11/14/13</Soapversion>\n</namesp1:LocationtypeaheadResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>"
48
+ W STRAFORD DR</Name>\n\t\t\t<Area>Chandler</Area>\n\t\t\t<Areacode>CH</Areacode>\n\t\t\t<Postcode>
49
+ </Postcode>\n\t\t\t<Type>N</Type>\n\t\t</Item>\n\t</Items>\n\t<Appid>ratis-specs</Appid>\n\t<Requestor>72.222.151.25</Requestor>\n\t<Host>s-rpta-soap</Host>\n\t<Copyright>XML
50
+ schema Copyright (c) 2003-2014 Trapeze Software ULC, its subsidiaries and
51
+ affiliates. All rights reserved.</Copyright>\n\t<Soapversion>2.7.1a - 05/14/14</Soapversion>\n</namesp1:LocationtypeaheadResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>"
52
52
  http_version:
53
- recorded_at: Tue, 11 Mar 2014 23:58:36 GMT
53
+ recorded_at: Sat, 14 Jun 2014 00:40:32 GMT
54
54
  recorded_with: VCR 2.8.0
@@ -2,12 +2,12 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://soap.valleymetro.org/cgi-bin-soap-web-262/soap.cgi
5
+ uri: http://soap.valleymetro.org/cgi-bin-soap-web-271/soap.cgi
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
9
9
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsdl="PX_WEB"
10
- xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><Nextbus xmlns="PX_WEB"><Stopid>15894</Stopid><Appid>ratis-specs</Appid><Date>01/13/2014</Date><Time>1500</Time><Type>N</Type></Nextbus></env:Body></env:Envelope>
10
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><Nextbus xmlns="PX_WEB"><Stopid>15894</Stopid><Date>06/16/2014</Date><Time>1500</Time><Type>N</Type><Appid>ratis-specs</Appid></Nextbus></env:Body></env:Envelope>
11
11
  headers:
12
12
  Soapaction:
13
13
  - '"PX_WEB#Nextbus"'
@@ -27,13 +27,13 @@ http_interactions:
27
27
  message: OK
28
28
  headers:
29
29
  Date:
30
- - Mon, 06 Jan 2014 23:53:37 GMT
30
+ - Sat, 14 Jun 2014 00:41:29 GMT
31
31
  Server:
32
32
  - Apache/2.2.3 (CentOS)
33
33
  Soapserver:
34
34
  - SOAP::Lite/Perl/0.55
35
35
  Content-Length:
36
- - '8829'
36
+ - '8874'
37
37
  Connection:
38
38
  - close
39
39
  Content-Type:
@@ -43,67 +43,68 @@ http_interactions:
43
43
  string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><SOAP-ENV:Envelope xmlns:xsi=\"http://www.w3.org/1999/XMLSchema-instance\"
44
44
  xmlns:SOAP-ENC=\"http://schemas.xmlsoap.org/soap/encoding/\" xmlns:SOAP-ENV=\"http://schemas.xmlsoap.org/soap/envelope/\"
45
45
  xmlns:xsd=\"http://www.w3.org/1999/XMLSchema\" SOAP-ENV:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\"><SOAP-ENV:Body><namesp1:NextbusResponse
46
- xmlns:namesp1=\"PX_WEB\">\n\t<Responsecode>0</Responsecode>\n\t<Version>1.26</Version>\n\t<Input>\n\t\t<Locationlat></Locationlat>\n\t\t<Locationlong></Locationlong>\n\t\t<Locationtext></Locationtext>\n\t\t<Atisstopid>0</Atisstopid>\n\t\t<Stopid>15894</Stopid>\n\t\t<Landmarkid></Landmarkid>\n\t\t<Date>01/13/2014</Date>\n\t\t<Time>03:00
46
+ xmlns:namesp1=\"PX_WEB\">\n\t<Responsecode>0</Responsecode>\n\t<Version>1.26</Version>\n\t<Input>\n\t\t<Locationlat>0</Locationlat>\n\t\t<Locationlong>0</Locationlong>\n\t\t<Locationtext>postedid
47
+ 15894</Locationtext>\n\t\t<Atisstopid>0</Atisstopid>\n\t\t<Stopid>15894</Stopid>\n\t\t<Landmarkid></Landmarkid>\n\t\t<Date>06/16/2014</Date>\n\t\t<Time>03:00
47
48
  PM</Time>\n\t\t<Route></Route>\n\t</Input>\n\t<Atstop>\n\t\t<Walkdist>0.00</Walkdist>\n\t\t<Description>ELLIOT
48
49
  RD &amp; CENTRAL DR</Description>\n\t\t<Area>Chandler</Area>\n\t\t<Atisstopid>6567</Atisstopid>\n\t\t<Stopid>15894</Stopid>\n\t\t<Lat>33.349730</Lat>\n\t\t<Long>-111.865807</Long>\n\t\t<Stopposition>Y</Stopposition>\n\t\t<Heading>WB</Heading>\n\t\t<Side>Far</Side>\n\t\t<Stopstatustype>N</Stopstatustype>\n\t\t<Service>\n\t\t\t<Route>108</Route>\n\t\t\t<Publicroute>108</Publicroute>\n\t\t\t<Sign>108
49
50
  Elliot/48th St West To 40th St/Pecos</Sign>\n\t\t\t<Operator>FTE</Operator>\n\t\t\t<Publicoperator>FTE</Publicoperator>\n\t\t\t<Direction>W</Direction>\n\t\t\t<Status>N</Status>\n\t\t\t<Servicetype>W</Servicetype>\n\t\t\t<Routetype>B</Routetype>\n\t\t\t<Times>07:07
50
51
  AM, 03:07 PM, 03:37 PM, 04:07 PM</Times>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>07:07
51
- AM</Triptime>\n\t\t\t\t<Tripid>11912-1</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>07:07
52
+ AM</Triptime>\n\t\t\t\t<Tripid>16502-1</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>07:07
52
53
  AM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>07:07
53
54
  AM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
54
55
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
55
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5610</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>03:07
56
- PM</Triptime>\n\t\t\t\t<Tripid>11912-2</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>03:07
56
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5048</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>03:07
57
+ PM</Triptime>\n\t\t\t\t<Tripid>16502-2</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>03:07
57
58
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>03:07
58
59
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
59
60
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
60
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5605</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>03:37
61
- PM</Triptime>\n\t\t\t\t<Tripid>11912-2</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>03:37
61
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5044</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>03:37
62
+ PM</Triptime>\n\t\t\t\t<Tripid>16502-2</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>03:37
62
63
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>03:37
63
64
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
64
65
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
65
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5606</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>04:07
66
- PM</Triptime>\n\t\t\t\t<Tripid>11912-3</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>04:07
66
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5072</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>04:07
67
+ PM</Triptime>\n\t\t\t\t<Tripid>16502-3</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>04:07
67
68
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>04:07
68
69
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
69
70
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
70
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5609</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t</Service>\n\t\t<Service>\n\t\t\t<Route>108</Route>\n\t\t\t<Publicroute>108</Publicroute>\n\t\t\t<Sign>108
71
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5047</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t</Service>\n\t\t<Service>\n\t\t\t<Route>108</Route>\n\t\t\t<Publicroute>108</Publicroute>\n\t\t\t<Sign>108
71
72
  Elliot/48th St West To 48th St/Chandler</Sign>\n\t\t\t<Operator>FTE</Operator>\n\t\t\t<Publicoperator>FTE</Publicoperator>\n\t\t\t<Direction>W</Direction>\n\t\t\t<Status>N</Status>\n\t\t\t<Servicetype>W</Servicetype>\n\t\t\t<Routetype>B</Routetype>\n\t\t\t<Times>02:07
72
73
  PM, 07:07 PM, 07:37 PM, 08:07 PM</Times>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>02:07
73
- PM</Triptime>\n\t\t\t\t<Tripid>11913-6</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>02:07
74
+ PM</Triptime>\n\t\t\t\t<Tripid>16503-6</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>02:07
74
75
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>02:07
75
76
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
76
77
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
77
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5600</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>07:07
78
- PM</Triptime>\n\t\t\t\t<Tripid>11913-6</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>07:07
78
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>4174</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>07:07
79
+ PM</Triptime>\n\t\t\t\t<Tripid>16503-6</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>07:07
79
80
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>07:07
80
81
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
81
82
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
82
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5606</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>07:37
83
- PM</Triptime>\n\t\t\t\t<Tripid>11913-7</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>07:37
83
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5072</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>07:37
84
+ PM</Triptime>\n\t\t\t\t<Tripid>16503-7</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>07:37
84
85
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>07:37
85
86
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
86
87
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
87
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5609</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>08:07
88
- PM</Triptime>\n\t\t\t\t<Tripid>11913-7</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>08:07
88
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5047</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>08:07
89
+ PM</Triptime>\n\t\t\t\t<Tripid>16503-7</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>08:07
89
90
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>08:07
90
91
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
91
92
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
92
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5610</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t</Service>\n\t\t<Service>\n\t\t\t<Route>108</Route>\n\t\t\t<Publicroute>108</Publicroute>\n\t\t\t<Sign>108
93
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5048</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t</Service>\n\t\t<Service>\n\t\t\t<Route>108</Route>\n\t\t\t<Publicroute>108</Publicroute>\n\t\t\t<Sign>108
93
94
  Elliot/48th St West To 48th St/Chandler Via Sosmn/Bsnln</Sign>\n\t\t\t<Operator>FTE</Operator>\n\t\t\t<Publicoperator>FTE</Publicoperator>\n\t\t\t<Direction>W</Direction>\n\t\t\t<Status>N</Status>\n\t\t\t<Servicetype>W</Servicetype>\n\t\t\t<Routetype>B</Routetype>\n\t\t\t<Times>02:37
94
- PM, 06:37 PM</Times>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>02:37 PM</Triptime>\n\t\t\t\t<Tripid>11915-0</Tripid>\n\t\t\t\t<Skedtripid>
95
+ PM, 06:37 PM</Times>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>02:37 PM</Triptime>\n\t\t\t\t<Tripid>16505-0</Tripid>\n\t\t\t\t<Skedtripid>
95
96
  </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>02:37
96
97
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>02:37
97
98
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
98
99
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
99
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5607</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>06:37
100
- PM</Triptime>\n\t\t\t\t<Tripid>11915-1</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>06:37
100
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5045</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>06:37
101
+ PM</Triptime>\n\t\t\t\t<Tripid>16505-1</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>06:37
101
102
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>06:37
102
103
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
103
104
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
104
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5605</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t</Service>\n\t</Atstop>\n\t<Statusinfo></Statusinfo>\n\t<Requestor>68.226.126.17</Requestor>\n\t<Host>s-rpta-soap</Host>\n\t<Copyright>XML
105
- schema Copyright (c) 2003-2013 Trapeze Software ULC, its subsidiaries and
106
- affiliates. All rights reserved.</Copyright>\n\t<Soapversion>2.6.3 - 11/14/13</Soapversion>\n</namesp1:NextbusResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>"
105
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5044</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t</Service>\n\t</Atstop>\n\t<Statusinfo></Statusinfo>\n\t<Appid>ratis-specs</Appid>\n\t<Requestor>72.222.151.25</Requestor>\n\t<Host>s-rpta-soap</Host>\n\t<Copyright>XML
106
+ schema Copyright (c) 2003-2014 Trapeze Software ULC, its subsidiaries and
107
+ affiliates. All rights reserved.</Copyright>\n\t<Soapversion>2.7.1a - 05/14/14</Soapversion>\n</namesp1:NextbusResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>"
107
108
  http_version:
108
- recorded_at: Mon, 06 Jan 2014 23:53:37 GMT
109
+ recorded_at: Sat, 14 Jun 2014 00:41:29 GMT
109
110
  recorded_with: VCR 2.8.0
@@ -2,12 +2,12 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://soap.valleymetro.org/cgi-bin-soap-web-262/soap.cgi
5
+ uri: http://soap.valleymetro.org/cgi-bin-soap-web-271/soap.cgi
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
9
9
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsdl="PX_WEB"
10
- xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><Nextbus xmlns="PX_WEB"><Stopid>15894</Stopid><Appid>ratis-specs</Appid><Date>01/13/2014</Date><Time>1500</Time><Type>N</Type></Nextbus></env:Body></env:Envelope>
10
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><Nextbus xmlns="PX_WEB"><Stopid>15894</Stopid><Date>06/16/2014</Date><Time>1500</Time><Type>N</Type><Appid>ratis-specs</Appid></Nextbus></env:Body></env:Envelope>
11
11
  headers:
12
12
  Soapaction:
13
13
  - '"PX_WEB#Nextbus"'
@@ -27,13 +27,13 @@ http_interactions:
27
27
  message: OK
28
28
  headers:
29
29
  Date:
30
- - Mon, 06 Jan 2014 23:53:36 GMT
30
+ - Sat, 14 Jun 2014 00:41:28 GMT
31
31
  Server:
32
32
  - Apache/2.2.3 (CentOS)
33
33
  Soapserver:
34
34
  - SOAP::Lite/Perl/0.55
35
35
  Content-Length:
36
- - '8829'
36
+ - '8874'
37
37
  Connection:
38
38
  - close
39
39
  Content-Type:
@@ -43,67 +43,68 @@ http_interactions:
43
43
  string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><SOAP-ENV:Envelope xmlns:xsi=\"http://www.w3.org/1999/XMLSchema-instance\"
44
44
  xmlns:SOAP-ENC=\"http://schemas.xmlsoap.org/soap/encoding/\" xmlns:SOAP-ENV=\"http://schemas.xmlsoap.org/soap/envelope/\"
45
45
  xmlns:xsd=\"http://www.w3.org/1999/XMLSchema\" SOAP-ENV:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\"><SOAP-ENV:Body><namesp1:NextbusResponse
46
- xmlns:namesp1=\"PX_WEB\">\n\t<Responsecode>0</Responsecode>\n\t<Version>1.26</Version>\n\t<Input>\n\t\t<Locationlat></Locationlat>\n\t\t<Locationlong></Locationlong>\n\t\t<Locationtext></Locationtext>\n\t\t<Atisstopid>0</Atisstopid>\n\t\t<Stopid>15894</Stopid>\n\t\t<Landmarkid></Landmarkid>\n\t\t<Date>01/13/2014</Date>\n\t\t<Time>03:00
46
+ xmlns:namesp1=\"PX_WEB\">\n\t<Responsecode>0</Responsecode>\n\t<Version>1.26</Version>\n\t<Input>\n\t\t<Locationlat>0</Locationlat>\n\t\t<Locationlong>0</Locationlong>\n\t\t<Locationtext>postedid
47
+ 15894</Locationtext>\n\t\t<Atisstopid>0</Atisstopid>\n\t\t<Stopid>15894</Stopid>\n\t\t<Landmarkid></Landmarkid>\n\t\t<Date>06/16/2014</Date>\n\t\t<Time>03:00
47
48
  PM</Time>\n\t\t<Route></Route>\n\t</Input>\n\t<Atstop>\n\t\t<Walkdist>0.00</Walkdist>\n\t\t<Description>ELLIOT
48
49
  RD &amp; CENTRAL DR</Description>\n\t\t<Area>Chandler</Area>\n\t\t<Atisstopid>6567</Atisstopid>\n\t\t<Stopid>15894</Stopid>\n\t\t<Lat>33.349730</Lat>\n\t\t<Long>-111.865807</Long>\n\t\t<Stopposition>Y</Stopposition>\n\t\t<Heading>WB</Heading>\n\t\t<Side>Far</Side>\n\t\t<Stopstatustype>N</Stopstatustype>\n\t\t<Service>\n\t\t\t<Route>108</Route>\n\t\t\t<Publicroute>108</Publicroute>\n\t\t\t<Sign>108
49
50
  Elliot/48th St West To 40th St/Pecos</Sign>\n\t\t\t<Operator>FTE</Operator>\n\t\t\t<Publicoperator>FTE</Publicoperator>\n\t\t\t<Direction>W</Direction>\n\t\t\t<Status>N</Status>\n\t\t\t<Servicetype>W</Servicetype>\n\t\t\t<Routetype>B</Routetype>\n\t\t\t<Times>07:07
50
51
  AM, 03:07 PM, 03:37 PM, 04:07 PM</Times>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>07:07
51
- AM</Triptime>\n\t\t\t\t<Tripid>11912-1</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>07:07
52
+ AM</Triptime>\n\t\t\t\t<Tripid>16502-1</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>07:07
52
53
  AM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>07:07
53
54
  AM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
54
55
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
55
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5610</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>03:07
56
- PM</Triptime>\n\t\t\t\t<Tripid>11912-2</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>03:07
56
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5048</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>03:07
57
+ PM</Triptime>\n\t\t\t\t<Tripid>16502-2</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>03:07
57
58
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>03:07
58
59
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
59
60
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
60
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5605</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>03:37
61
- PM</Triptime>\n\t\t\t\t<Tripid>11912-2</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>03:37
61
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5044</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>03:37
62
+ PM</Triptime>\n\t\t\t\t<Tripid>16502-2</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>03:37
62
63
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>03:37
63
64
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
64
65
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
65
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5606</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>04:07
66
- PM</Triptime>\n\t\t\t\t<Tripid>11912-3</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>04:07
66
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5072</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>04:07
67
+ PM</Triptime>\n\t\t\t\t<Tripid>16502-3</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>04:07
67
68
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>04:07
68
69
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
69
70
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
70
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5609</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t</Service>\n\t\t<Service>\n\t\t\t<Route>108</Route>\n\t\t\t<Publicroute>108</Publicroute>\n\t\t\t<Sign>108
71
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5047</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t</Service>\n\t\t<Service>\n\t\t\t<Route>108</Route>\n\t\t\t<Publicroute>108</Publicroute>\n\t\t\t<Sign>108
71
72
  Elliot/48th St West To 48th St/Chandler</Sign>\n\t\t\t<Operator>FTE</Operator>\n\t\t\t<Publicoperator>FTE</Publicoperator>\n\t\t\t<Direction>W</Direction>\n\t\t\t<Status>N</Status>\n\t\t\t<Servicetype>W</Servicetype>\n\t\t\t<Routetype>B</Routetype>\n\t\t\t<Times>02:07
72
73
  PM, 07:07 PM, 07:37 PM, 08:07 PM</Times>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>02:07
73
- PM</Triptime>\n\t\t\t\t<Tripid>11913-6</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>02:07
74
+ PM</Triptime>\n\t\t\t\t<Tripid>16503-6</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>02:07
74
75
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>02:07
75
76
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
76
77
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
77
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5600</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>07:07
78
- PM</Triptime>\n\t\t\t\t<Tripid>11913-6</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>07:07
78
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>4174</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>07:07
79
+ PM</Triptime>\n\t\t\t\t<Tripid>16503-6</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>07:07
79
80
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>07:07
80
81
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
81
82
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
82
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5606</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>07:37
83
- PM</Triptime>\n\t\t\t\t<Tripid>11913-7</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>07:37
83
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5072</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>07:37
84
+ PM</Triptime>\n\t\t\t\t<Tripid>16503-7</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>07:37
84
85
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>07:37
85
86
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
86
87
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
87
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5609</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>08:07
88
- PM</Triptime>\n\t\t\t\t<Tripid>11913-7</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>08:07
88
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5047</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>08:07
89
+ PM</Triptime>\n\t\t\t\t<Tripid>16503-7</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>08:07
89
90
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>08:07
90
91
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
91
92
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
92
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5610</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t</Service>\n\t\t<Service>\n\t\t\t<Route>108</Route>\n\t\t\t<Publicroute>108</Publicroute>\n\t\t\t<Sign>108
93
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5048</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t</Service>\n\t\t<Service>\n\t\t\t<Route>108</Route>\n\t\t\t<Publicroute>108</Publicroute>\n\t\t\t<Sign>108
93
94
  Elliot/48th St West To 48th St/Chandler Via Sosmn/Bsnln</Sign>\n\t\t\t<Operator>FTE</Operator>\n\t\t\t<Publicoperator>FTE</Publicoperator>\n\t\t\t<Direction>W</Direction>\n\t\t\t<Status>N</Status>\n\t\t\t<Servicetype>W</Servicetype>\n\t\t\t<Routetype>B</Routetype>\n\t\t\t<Times>02:37
94
- PM, 06:37 PM</Times>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>02:37 PM</Triptime>\n\t\t\t\t<Tripid>11915-0</Tripid>\n\t\t\t\t<Skedtripid>
95
+ PM, 06:37 PM</Times>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>02:37 PM</Triptime>\n\t\t\t\t<Tripid>16505-0</Tripid>\n\t\t\t\t<Skedtripid>
95
96
  </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>02:37
96
97
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>02:37
97
98
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
98
99
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
99
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5607</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>06:37
100
- PM</Triptime>\n\t\t\t\t<Tripid>11915-1</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>06:37
100
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5045</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>06:37
101
+ PM</Triptime>\n\t\t\t\t<Tripid>16505-1</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>06:37
101
102
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>06:37
102
103
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
103
104
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
104
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5605</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t</Service>\n\t</Atstop>\n\t<Statusinfo></Statusinfo>\n\t<Requestor>68.226.126.17</Requestor>\n\t<Host>s-rpta-soap</Host>\n\t<Copyright>XML
105
- schema Copyright (c) 2003-2013 Trapeze Software ULC, its subsidiaries and
106
- affiliates. All rights reserved.</Copyright>\n\t<Soapversion>2.6.3 - 11/14/13</Soapversion>\n</namesp1:NextbusResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>"
105
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5044</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t</Service>\n\t</Atstop>\n\t<Statusinfo></Statusinfo>\n\t<Appid>ratis-specs</Appid>\n\t<Requestor>72.222.151.25</Requestor>\n\t<Host>s-rpta-soap</Host>\n\t<Copyright>XML
106
+ schema Copyright (c) 2003-2014 Trapeze Software ULC, its subsidiaries and
107
+ affiliates. All rights reserved.</Copyright>\n\t<Soapversion>2.7.1a - 05/14/14</Soapversion>\n</namesp1:NextbusResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>"
107
108
  http_version:
108
- recorded_at: Mon, 06 Jan 2014 23:53:37 GMT
109
+ recorded_at: Sat, 14 Jun 2014 00:41:28 GMT
109
110
  recorded_with: VCR 2.8.0
@@ -2,12 +2,12 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://soap.valleymetro.org/cgi-bin-soap-web-262/soap.cgi
5
+ uri: http://soap.valleymetro.org/cgi-bin-soap-web-271/soap.cgi
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
9
9
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsdl="PX_WEB"
10
- xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><Nextbus xmlns="PX_WEB"><Stopid>15894</Stopid><Appid>ratis-specs</Appid><Date>01/13/2014</Date><Time>1500</Time><Type>N</Type></Nextbus></env:Body></env:Envelope>
10
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><Nextbus xmlns="PX_WEB"><Stopid>15894</Stopid><Date>06/16/2014</Date><Time>1500</Time><Type>N</Type><Appid>ratis-specs</Appid></Nextbus></env:Body></env:Envelope>
11
11
  headers:
12
12
  Soapaction:
13
13
  - '"PX_WEB#Nextbus"'
@@ -27,13 +27,13 @@ http_interactions:
27
27
  message: OK
28
28
  headers:
29
29
  Date:
30
- - Mon, 06 Jan 2014 23:53:37 GMT
30
+ - Sat, 14 Jun 2014 00:41:29 GMT
31
31
  Server:
32
32
  - Apache/2.2.3 (CentOS)
33
33
  Soapserver:
34
34
  - SOAP::Lite/Perl/0.55
35
35
  Content-Length:
36
- - '8829'
36
+ - '8874'
37
37
  Connection:
38
38
  - close
39
39
  Content-Type:
@@ -43,67 +43,68 @@ http_interactions:
43
43
  string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><SOAP-ENV:Envelope xmlns:xsi=\"http://www.w3.org/1999/XMLSchema-instance\"
44
44
  xmlns:SOAP-ENC=\"http://schemas.xmlsoap.org/soap/encoding/\" xmlns:SOAP-ENV=\"http://schemas.xmlsoap.org/soap/envelope/\"
45
45
  xmlns:xsd=\"http://www.w3.org/1999/XMLSchema\" SOAP-ENV:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\"><SOAP-ENV:Body><namesp1:NextbusResponse
46
- xmlns:namesp1=\"PX_WEB\">\n\t<Responsecode>0</Responsecode>\n\t<Version>1.26</Version>\n\t<Input>\n\t\t<Locationlat></Locationlat>\n\t\t<Locationlong></Locationlong>\n\t\t<Locationtext></Locationtext>\n\t\t<Atisstopid>0</Atisstopid>\n\t\t<Stopid>15894</Stopid>\n\t\t<Landmarkid></Landmarkid>\n\t\t<Date>01/13/2014</Date>\n\t\t<Time>03:00
46
+ xmlns:namesp1=\"PX_WEB\">\n\t<Responsecode>0</Responsecode>\n\t<Version>1.26</Version>\n\t<Input>\n\t\t<Locationlat>0</Locationlat>\n\t\t<Locationlong>0</Locationlong>\n\t\t<Locationtext>postedid
47
+ 15894</Locationtext>\n\t\t<Atisstopid>0</Atisstopid>\n\t\t<Stopid>15894</Stopid>\n\t\t<Landmarkid></Landmarkid>\n\t\t<Date>06/16/2014</Date>\n\t\t<Time>03:00
47
48
  PM</Time>\n\t\t<Route></Route>\n\t</Input>\n\t<Atstop>\n\t\t<Walkdist>0.00</Walkdist>\n\t\t<Description>ELLIOT
48
49
  RD &amp; CENTRAL DR</Description>\n\t\t<Area>Chandler</Area>\n\t\t<Atisstopid>6567</Atisstopid>\n\t\t<Stopid>15894</Stopid>\n\t\t<Lat>33.349730</Lat>\n\t\t<Long>-111.865807</Long>\n\t\t<Stopposition>Y</Stopposition>\n\t\t<Heading>WB</Heading>\n\t\t<Side>Far</Side>\n\t\t<Stopstatustype>N</Stopstatustype>\n\t\t<Service>\n\t\t\t<Route>108</Route>\n\t\t\t<Publicroute>108</Publicroute>\n\t\t\t<Sign>108
49
50
  Elliot/48th St West To 40th St/Pecos</Sign>\n\t\t\t<Operator>FTE</Operator>\n\t\t\t<Publicoperator>FTE</Publicoperator>\n\t\t\t<Direction>W</Direction>\n\t\t\t<Status>N</Status>\n\t\t\t<Servicetype>W</Servicetype>\n\t\t\t<Routetype>B</Routetype>\n\t\t\t<Times>07:07
50
51
  AM, 03:07 PM, 03:37 PM, 04:07 PM</Times>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>07:07
51
- AM</Triptime>\n\t\t\t\t<Tripid>11912-1</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>07:07
52
+ AM</Triptime>\n\t\t\t\t<Tripid>16502-1</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>07:07
52
53
  AM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>07:07
53
54
  AM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
54
55
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
55
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5610</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>03:07
56
- PM</Triptime>\n\t\t\t\t<Tripid>11912-2</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>03:07
56
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5048</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>03:07
57
+ PM</Triptime>\n\t\t\t\t<Tripid>16502-2</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>03:07
57
58
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>03:07
58
59
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
59
60
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
60
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5605</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>03:37
61
- PM</Triptime>\n\t\t\t\t<Tripid>11912-2</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>03:37
61
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5044</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>03:37
62
+ PM</Triptime>\n\t\t\t\t<Tripid>16502-2</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>03:37
62
63
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>03:37
63
64
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
64
65
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
65
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5606</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>04:07
66
- PM</Triptime>\n\t\t\t\t<Tripid>11912-3</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>04:07
66
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5072</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>04:07
67
+ PM</Triptime>\n\t\t\t\t<Tripid>16502-3</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>04:07
67
68
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>04:07
68
69
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
69
70
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
70
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5609</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t</Service>\n\t\t<Service>\n\t\t\t<Route>108</Route>\n\t\t\t<Publicroute>108</Publicroute>\n\t\t\t<Sign>108
71
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5047</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t</Service>\n\t\t<Service>\n\t\t\t<Route>108</Route>\n\t\t\t<Publicroute>108</Publicroute>\n\t\t\t<Sign>108
71
72
  Elliot/48th St West To 48th St/Chandler</Sign>\n\t\t\t<Operator>FTE</Operator>\n\t\t\t<Publicoperator>FTE</Publicoperator>\n\t\t\t<Direction>W</Direction>\n\t\t\t<Status>N</Status>\n\t\t\t<Servicetype>W</Servicetype>\n\t\t\t<Routetype>B</Routetype>\n\t\t\t<Times>02:07
72
73
  PM, 07:07 PM, 07:37 PM, 08:07 PM</Times>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>02:07
73
- PM</Triptime>\n\t\t\t\t<Tripid>11913-6</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>02:07
74
+ PM</Triptime>\n\t\t\t\t<Tripid>16503-6</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>02:07
74
75
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>02:07
75
76
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
76
77
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
77
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5600</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>07:07
78
- PM</Triptime>\n\t\t\t\t<Tripid>11913-6</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>07:07
78
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>4174</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>07:07
79
+ PM</Triptime>\n\t\t\t\t<Tripid>16503-6</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>07:07
79
80
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>07:07
80
81
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
81
82
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
82
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5606</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>07:37
83
- PM</Triptime>\n\t\t\t\t<Tripid>11913-7</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>07:37
83
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5072</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>07:37
84
+ PM</Triptime>\n\t\t\t\t<Tripid>16503-7</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>07:37
84
85
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>07:37
85
86
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
86
87
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
87
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5609</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>08:07
88
- PM</Triptime>\n\t\t\t\t<Tripid>11913-7</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>08:07
88
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5047</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>08:07
89
+ PM</Triptime>\n\t\t\t\t<Tripid>16503-7</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>08:07
89
90
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>08:07
90
91
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
91
92
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
92
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5610</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t</Service>\n\t\t<Service>\n\t\t\t<Route>108</Route>\n\t\t\t<Publicroute>108</Publicroute>\n\t\t\t<Sign>108
93
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5048</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t</Service>\n\t\t<Service>\n\t\t\t<Route>108</Route>\n\t\t\t<Publicroute>108</Publicroute>\n\t\t\t<Sign>108
93
94
  Elliot/48th St West To 48th St/Chandler Via Sosmn/Bsnln</Sign>\n\t\t\t<Operator>FTE</Operator>\n\t\t\t<Publicoperator>FTE</Publicoperator>\n\t\t\t<Direction>W</Direction>\n\t\t\t<Status>N</Status>\n\t\t\t<Servicetype>W</Servicetype>\n\t\t\t<Routetype>B</Routetype>\n\t\t\t<Times>02:37
94
- PM, 06:37 PM</Times>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>02:37 PM</Triptime>\n\t\t\t\t<Tripid>11915-0</Tripid>\n\t\t\t\t<Skedtripid>
95
+ PM, 06:37 PM</Times>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>02:37 PM</Triptime>\n\t\t\t\t<Tripid>16505-0</Tripid>\n\t\t\t\t<Skedtripid>
95
96
  </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>02:37
96
97
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>02:37
97
98
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
98
99
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
99
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5607</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>06:37
100
- PM</Triptime>\n\t\t\t\t<Tripid>11915-1</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>06:37
100
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5045</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>06:37
101
+ PM</Triptime>\n\t\t\t\t<Tripid>16505-1</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>06:37
101
102
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>06:37
102
103
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
103
104
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
104
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5605</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t</Service>\n\t</Atstop>\n\t<Statusinfo></Statusinfo>\n\t<Requestor>68.226.126.17</Requestor>\n\t<Host>s-rpta-soap</Host>\n\t<Copyright>XML
105
- schema Copyright (c) 2003-2013 Trapeze Software ULC, its subsidiaries and
106
- affiliates. All rights reserved.</Copyright>\n\t<Soapversion>2.6.3 - 11/14/13</Soapversion>\n</namesp1:NextbusResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>"
105
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5044</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t</Service>\n\t</Atstop>\n\t<Statusinfo></Statusinfo>\n\t<Appid>ratis-specs</Appid>\n\t<Requestor>72.222.151.25</Requestor>\n\t<Host>s-rpta-soap</Host>\n\t<Copyright>XML
106
+ schema Copyright (c) 2003-2014 Trapeze Software ULC, its subsidiaries and
107
+ affiliates. All rights reserved.</Copyright>\n\t<Soapversion>2.7.1a - 05/14/14</Soapversion>\n</namesp1:NextbusResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>"
107
108
  http_version:
108
- recorded_at: Mon, 06 Jan 2014 23:53:37 GMT
109
+ recorded_at: Sat, 14 Jun 2014 00:41:29 GMT
109
110
  recorded_with: VCR 2.8.0
@@ -2,12 +2,12 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://soap.valleymetro.org/cgi-bin-soap-web-262/soap.cgi
5
+ uri: http://soap.valleymetro.org/cgi-bin-soap-web-271/soap.cgi
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
9
9
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsdl="PX_WEB"
10
- xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><Nextbus xmlns="PX_WEB"><Stopid>15894</Stopid><Appid>ratis-specs</Appid><Date>01/06/2014</Date><Time>1653</Time><Type>N</Type></Nextbus></env:Body></env:Envelope>
10
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><Nextbus xmlns="PX_WEB"><Stopid>15894</Stopid><Date>06/13/2014</Date><Time>1741</Time><Type>N</Type><Appid>ratis-specs</Appid></Nextbus></env:Body></env:Envelope>
11
11
  headers:
12
12
  Soapaction:
13
13
  - '"PX_WEB#Nextbus"'
@@ -27,13 +27,13 @@ http_interactions:
27
27
  message: OK
28
28
  headers:
29
29
  Date:
30
- - Mon, 06 Jan 2014 23:53:37 GMT
30
+ - Sat, 14 Jun 2014 00:41:28 GMT
31
31
  Server:
32
32
  - Apache/2.2.3 (CentOS)
33
33
  Soapserver:
34
34
  - SOAP::Lite/Perl/0.55
35
35
  Content-Length:
36
- - '8862'
36
+ - '7629'
37
37
  Connection:
38
38
  - close
39
39
  Content-Type:
@@ -43,75 +43,66 @@ http_interactions:
43
43
  string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><SOAP-ENV:Envelope xmlns:xsi=\"http://www.w3.org/1999/XMLSchema-instance\"
44
44
  xmlns:SOAP-ENC=\"http://schemas.xmlsoap.org/soap/encoding/\" xmlns:SOAP-ENV=\"http://schemas.xmlsoap.org/soap/envelope/\"
45
45
  xmlns:xsd=\"http://www.w3.org/1999/XMLSchema\" SOAP-ENV:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\"><SOAP-ENV:Body><namesp1:NextbusResponse
46
- xmlns:namesp1=\"PX_WEB\">\n\t<Responsecode>0</Responsecode>\n\t<Version>1.26</Version>\n\t<Input>\n\t\t<Locationlat></Locationlat>\n\t\t<Locationlong></Locationlong>\n\t\t<Locationtext></Locationtext>\n\t\t<Atisstopid>0</Atisstopid>\n\t\t<Stopid>15894</Stopid>\n\t\t<Landmarkid></Landmarkid>\n\t\t<Date>01/06/2014</Date>\n\t\t<Time>04:53
46
+ xmlns:namesp1=\"PX_WEB\">\n\t<Responsecode>0</Responsecode>\n\t<Version>1.26</Version>\n\t<Input>\n\t\t<Locationlat>0</Locationlat>\n\t\t<Locationlong>0</Locationlong>\n\t\t<Locationtext>postedid
47
+ 15894</Locationtext>\n\t\t<Atisstopid>0</Atisstopid>\n\t\t<Stopid>15894</Stopid>\n\t\t<Landmarkid></Landmarkid>\n\t\t<Date>06/13/2014</Date>\n\t\t<Time>05:41
47
48
  PM</Time>\n\t\t<Route></Route>\n\t</Input>\n\t<Atstop>\n\t\t<Walkdist>0.00</Walkdist>\n\t\t<Description>ELLIOT
48
49
  RD &amp; CENTRAL DR</Description>\n\t\t<Area>Chandler</Area>\n\t\t<Atisstopid>6567</Atisstopid>\n\t\t<Stopid>15894</Stopid>\n\t\t<Lat>33.349730</Lat>\n\t\t<Long>-111.865807</Long>\n\t\t<Stopposition>Y</Stopposition>\n\t\t<Heading>WB</Heading>\n\t\t<Side>Far</Side>\n\t\t<Stopstatustype>N</Stopstatustype>\n\t\t<Service>\n\t\t\t<Route>108</Route>\n\t\t\t<Publicroute>108</Publicroute>\n\t\t\t<Sign>108
49
- Elliot/48th St West To 40th St/Pecos</Sign>\n\t\t\t<Operator>FTE</Operator>\n\t\t\t<Publicoperator>FTE</Publicoperator>\n\t\t\t<Direction>W</Direction>\n\t\t\t<Status>N</Status>\n\t\t\t<Servicetype>W</Servicetype>\n\t\t\t<Routetype>B</Routetype>\n\t\t\t<Times>04:37
50
- PM, 05:07 PM, 05:37 PM, 06:07 PM</Times>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>04:37
51
- PM</Triptime>\n\t\t\t\t<Tripid>11912-3</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>04:37
52
- PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>04:37
53
- PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime>04:47
54
- PM</Polltime>\n\t\t\t\t\t<Trend>S</Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t\t<Vehicleid>6683</Vehicleid>\n\t\t\t\t\t<Lat>33.349274</Lat>\n\t\t\t\t\t<Long>-111.942589</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5610</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>05:07
55
- PM</Triptime>\n\t\t\t\t<Tripid>11912-4</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>05:07
56
- PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>Y</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>05:07
57
- PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes>14</Estimatedminutes>\n\t\t\t\t\t<Polltime>04:51
58
- PM</Polltime>\n\t\t\t\t\t<Trend>S</Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t\t<Vehicleid>6629</Vehicleid>\n\t\t\t\t\t<Lat>33.350071</Lat>\n\t\t\t\t\t<Long>-111.789680</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5600</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>05:37
59
- PM</Triptime>\n\t\t\t\t<Tripid>11912-4</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>05:37
60
- PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>05:37
61
- PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
62
- </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
63
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5607</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>06:07
64
- PM</Triptime>\n\t\t\t\t<Tripid>11912-5</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>06:07
65
- PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>06:07
66
- PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
67
- </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
68
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5991</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t</Service>\n\t\t<Service>\n\t\t\t<Route>108</Route>\n\t\t\t<Publicroute>108</Publicroute>\n\t\t\t<Sign>108
50
+ Elliot/48th St West To 40th St/Pecos</Sign>\n\t\t\t<Operator>FTE</Operator>\n\t\t\t<Publicoperator>FTE</Publicoperator>\n\t\t\t<Direction>W</Direction>\n\t\t\t<Status>N</Status>\n\t\t\t<Servicetype>W</Servicetype>\n\t\t\t<Routetype>B</Routetype>\n\t\t\t<Times>05:37
51
+ PM, 06:07 PM</Times>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>05:37 PM</Triptime>\n\t\t\t\t<Tripid>16496-4</Tripid>\n\t\t\t\t<Skedtripid>
52
+ </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>05:37
53
+ PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>Y</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>05:37
54
+ PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime>05:39
55
+ PM</Polltime>\n\t\t\t\t\t<Trend>S</Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t\t<Vehicleid>6412</Vehicleid>\n\t\t\t\t\t<Lat>33.349659</Lat>\n\t\t\t\t\t<Long>-111.875832</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5045</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>06:07
56
+ PM</Triptime>\n\t\t\t\t<Tripid>16496-5</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>-2</Adherence>\n\t\t\t\t<Estimatedtime>06:07
57
+ PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>Y</Valid>\n\t\t\t\t\t<Adherence>-2</Adherence>\n\t\t\t\t\t<Estimatedtime>06:07
58
+ PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes>28</Estimatedminutes>\n\t\t\t\t\t<Polltime>05:39
59
+ PM</Polltime>\n\t\t\t\t\t<Trend>S</Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t\t<Vehicleid>6682</Vehicleid>\n\t\t\t\t\t<Lat>33.364864</Lat>\n\t\t\t\t\t<Long>-111.732414</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>4175</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t</Service>\n\t\t<Service>\n\t\t\t<Route>108</Route>\n\t\t\t<Publicroute>108</Publicroute>\n\t\t\t<Sign>108
69
60
  Elliot/48th St West To 48th St/Chandler</Sign>\n\t\t\t<Operator>FTE</Operator>\n\t\t\t<Publicoperator>FTE</Publicoperator>\n\t\t\t<Direction>W</Direction>\n\t\t\t<Status>N</Status>\n\t\t\t<Servicetype>W</Servicetype>\n\t\t\t<Routetype>B</Routetype>\n\t\t\t<Times>02:07
70
61
  PM, 07:07 PM, 07:37 PM, 08:07 PM</Times>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>02:07
71
- PM</Triptime>\n\t\t\t\t<Tripid>11913-6</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>02:07
62
+ PM</Triptime>\n\t\t\t\t<Tripid>16497-6</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>02:07
72
63
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>02:07
73
64
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
74
65
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
75
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5600</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>07:07
76
- PM</Triptime>\n\t\t\t\t<Tripid>11913-6</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>07:07
66
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>4174</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>07:07
67
+ PM</Triptime>\n\t\t\t\t<Tripid>16497-6</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>07:07
77
68
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>07:07
78
69
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
79
70
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
80
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5606</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>07:37
81
- PM</Triptime>\n\t\t\t\t<Tripid>11913-7</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>07:37
71
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5072</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>07:37
72
+ PM</Triptime>\n\t\t\t\t<Tripid>16497-7</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>07:37
82
73
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>07:37
83
74
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
84
75
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
85
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5609</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>08:07
86
- PM</Triptime>\n\t\t\t\t<Tripid>11913-7</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>08:07
76
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5047</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>08:07
77
+ PM</Triptime>\n\t\t\t\t<Tripid>16497-7</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>08:07
87
78
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>08:07
88
79
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
89
80
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
90
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5610</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t</Service>\n\t\t<Service>\n\t\t\t<Route>108</Route>\n\t\t\t<Publicroute>108</Publicroute>\n\t\t\t<Sign>108
81
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5048</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t</Service>\n\t\t<Service>\n\t\t\t<Route>108</Route>\n\t\t\t<Publicroute>108</Publicroute>\n\t\t\t<Sign>108
91
82
  Elliot/48th St West To 48th St/Chandler Via Sosmn/Bsnln</Sign>\n\t\t\t<Operator>FTE</Operator>\n\t\t\t<Publicoperator>FTE</Publicoperator>\n\t\t\t<Direction>W</Direction>\n\t\t\t<Status>N</Status>\n\t\t\t<Servicetype>W</Servicetype>\n\t\t\t<Routetype>B</Routetype>\n\t\t\t<Times>02:37
92
- PM, 06:37 PM</Times>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>02:37 PM</Triptime>\n\t\t\t\t<Tripid>11915-0</Tripid>\n\t\t\t\t<Skedtripid>
83
+ PM, 06:37 PM</Times>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>02:37 PM</Triptime>\n\t\t\t\t<Tripid>16499-0</Tripid>\n\t\t\t\t<Skedtripid>
93
84
  </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>02:37
94
85
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>02:37
95
86
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
96
87
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
97
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5607</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>06:37
98
- PM</Triptime>\n\t\t\t\t<Tripid>11915-1</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>06:37
88
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5045</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>06:37
89
+ PM</Triptime>\n\t\t\t\t<Tripid>16499-1</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>06:37
99
90
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>06:37
100
91
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
101
92
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
102
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5605</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t</Service>\n\t</Atstop>\n\t<Statusinfo></Statusinfo>\n\t<Requestor>68.226.126.17</Requestor>\n\t<Host>s-rpta-soap</Host>\n\t<Copyright>XML
103
- schema Copyright (c) 2003-2013 Trapeze Software ULC, its subsidiaries and
104
- affiliates. All rights reserved.</Copyright>\n\t<Soapversion>2.6.3 - 11/14/13</Soapversion>\n</namesp1:NextbusResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>"
93
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5044</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t</Service>\n\t</Atstop>\n\t<Statusinfo></Statusinfo>\n\t<Appid>ratis-specs</Appid>\n\t<Requestor>72.222.151.25</Requestor>\n\t<Host>s-rpta-soap</Host>\n\t<Copyright>XML
94
+ schema Copyright (c) 2003-2014 Trapeze Software ULC, its subsidiaries and
95
+ affiliates. All rights reserved.</Copyright>\n\t<Soapversion>2.7.1a - 05/14/14</Soapversion>\n</namesp1:NextbusResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>"
105
96
  http_version:
106
- recorded_at: Mon, 06 Jan 2014 23:53:38 GMT
97
+ recorded_at: Sat, 14 Jun 2014 00:41:28 GMT
107
98
  - request:
108
99
  method: post
109
- uri: http://soap.valleymetro.org/cgi-bin-soap-web-262/soap.cgi
100
+ uri: http://soap.valleymetro.org/cgi-bin-soap-web-271/soap.cgi
110
101
  body:
111
102
  encoding: UTF-8
112
103
  string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
113
104
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsdl="PX_WEB"
114
- xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><Nextbus xmlns="PX_WEB"><Stopid>15894</Stopid><Appid>ratis-specs</Appid><Date>01/06/2014</Date><Time>0000</Time><Type>N</Type></Nextbus></env:Body></env:Envelope>
105
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><Nextbus xmlns="PX_WEB"><Stopid>15894</Stopid><Date>06/13/2014</Date><Time>0000</Time><Type>N</Type><Appid>ratis-specs</Appid></Nextbus></env:Body></env:Envelope>
115
106
  headers:
116
107
  Soapaction:
117
108
  - '"PX_WEB#Nextbus"'
@@ -131,13 +122,13 @@ http_interactions:
131
122
  message: OK
132
123
  headers:
133
124
  Date:
134
- - Mon, 06 Jan 2014 23:53:37 GMT
125
+ - Sat, 14 Jun 2014 00:41:28 GMT
135
126
  Server:
136
127
  - Apache/2.2.3 (CentOS)
137
128
  Soapserver:
138
129
  - SOAP::Lite/Perl/0.55
139
130
  Content-Length:
140
- - '8862'
131
+ - '7629'
141
132
  Connection:
142
133
  - close
143
134
  Content-Type:
@@ -147,65 +138,56 @@ http_interactions:
147
138
  string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><SOAP-ENV:Envelope xmlns:xsi=\"http://www.w3.org/1999/XMLSchema-instance\"
148
139
  xmlns:SOAP-ENC=\"http://schemas.xmlsoap.org/soap/encoding/\" xmlns:SOAP-ENV=\"http://schemas.xmlsoap.org/soap/envelope/\"
149
140
  xmlns:xsd=\"http://www.w3.org/1999/XMLSchema\" SOAP-ENV:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\"><SOAP-ENV:Body><namesp1:NextbusResponse
150
- xmlns:namesp1=\"PX_WEB\">\n\t<Responsecode>0</Responsecode>\n\t<Version>1.26</Version>\n\t<Input>\n\t\t<Locationlat></Locationlat>\n\t\t<Locationlong></Locationlong>\n\t\t<Locationtext></Locationtext>\n\t\t<Atisstopid>0</Atisstopid>\n\t\t<Stopid>15894</Stopid>\n\t\t<Landmarkid></Landmarkid>\n\t\t<Date>01/06/2014</Date>\n\t\t<Time>04:53
141
+ xmlns:namesp1=\"PX_WEB\">\n\t<Responsecode>0</Responsecode>\n\t<Version>1.26</Version>\n\t<Input>\n\t\t<Locationlat>0</Locationlat>\n\t\t<Locationlong>0</Locationlong>\n\t\t<Locationtext>postedid
142
+ 15894</Locationtext>\n\t\t<Atisstopid>0</Atisstopid>\n\t\t<Stopid>15894</Stopid>\n\t\t<Landmarkid></Landmarkid>\n\t\t<Date>06/13/2014</Date>\n\t\t<Time>05:41
151
143
  PM</Time>\n\t\t<Route></Route>\n\t</Input>\n\t<Atstop>\n\t\t<Walkdist>0.00</Walkdist>\n\t\t<Description>ELLIOT
152
144
  RD &amp; CENTRAL DR</Description>\n\t\t<Area>Chandler</Area>\n\t\t<Atisstopid>6567</Atisstopid>\n\t\t<Stopid>15894</Stopid>\n\t\t<Lat>33.349730</Lat>\n\t\t<Long>-111.865807</Long>\n\t\t<Stopposition>Y</Stopposition>\n\t\t<Heading>WB</Heading>\n\t\t<Side>Far</Side>\n\t\t<Stopstatustype>N</Stopstatustype>\n\t\t<Service>\n\t\t\t<Route>108</Route>\n\t\t\t<Publicroute>108</Publicroute>\n\t\t\t<Sign>108
153
- Elliot/48th St West To 40th St/Pecos</Sign>\n\t\t\t<Operator>FTE</Operator>\n\t\t\t<Publicoperator>FTE</Publicoperator>\n\t\t\t<Direction>W</Direction>\n\t\t\t<Status>N</Status>\n\t\t\t<Servicetype>W</Servicetype>\n\t\t\t<Routetype>B</Routetype>\n\t\t\t<Times>04:37
154
- PM, 05:07 PM, 05:37 PM, 06:07 PM</Times>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>04:37
155
- PM</Triptime>\n\t\t\t\t<Tripid>11912-3</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>04:37
156
- PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>04:37
157
- PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime>04:47
158
- PM</Polltime>\n\t\t\t\t\t<Trend>S</Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t\t<Vehicleid>6683</Vehicleid>\n\t\t\t\t\t<Lat>33.349274</Lat>\n\t\t\t\t\t<Long>-111.942589</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5610</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>05:07
159
- PM</Triptime>\n\t\t\t\t<Tripid>11912-4</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>05:07
160
- PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>Y</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>05:07
161
- PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes>14</Estimatedminutes>\n\t\t\t\t\t<Polltime>04:51
162
- PM</Polltime>\n\t\t\t\t\t<Trend>S</Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t\t<Vehicleid>6629</Vehicleid>\n\t\t\t\t\t<Lat>33.350071</Lat>\n\t\t\t\t\t<Long>-111.789680</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5600</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>05:37
163
- PM</Triptime>\n\t\t\t\t<Tripid>11912-4</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>05:37
164
- PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>05:37
165
- PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
166
- </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
167
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5607</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>06:07
168
- PM</Triptime>\n\t\t\t\t<Tripid>11912-5</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>06:07
169
- PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>06:07
170
- PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
171
- </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
172
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5991</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t</Service>\n\t\t<Service>\n\t\t\t<Route>108</Route>\n\t\t\t<Publicroute>108</Publicroute>\n\t\t\t<Sign>108
145
+ Elliot/48th St West To 40th St/Pecos</Sign>\n\t\t\t<Operator>FTE</Operator>\n\t\t\t<Publicoperator>FTE</Publicoperator>\n\t\t\t<Direction>W</Direction>\n\t\t\t<Status>N</Status>\n\t\t\t<Servicetype>W</Servicetype>\n\t\t\t<Routetype>B</Routetype>\n\t\t\t<Times>05:37
146
+ PM, 06:07 PM</Times>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>05:37 PM</Triptime>\n\t\t\t\t<Tripid>16496-4</Tripid>\n\t\t\t\t<Skedtripid>
147
+ </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>05:37
148
+ PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>Y</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>05:37
149
+ PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime>05:39
150
+ PM</Polltime>\n\t\t\t\t\t<Trend>S</Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t\t<Vehicleid>6412</Vehicleid>\n\t\t\t\t\t<Lat>33.349659</Lat>\n\t\t\t\t\t<Long>-111.875832</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5045</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>06:07
151
+ PM</Triptime>\n\t\t\t\t<Tripid>16496-5</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>-2</Adherence>\n\t\t\t\t<Estimatedtime>06:07
152
+ PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>Y</Valid>\n\t\t\t\t\t<Adherence>-2</Adherence>\n\t\t\t\t\t<Estimatedtime>06:07
153
+ PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes>28</Estimatedminutes>\n\t\t\t\t\t<Polltime>05:39
154
+ PM</Polltime>\n\t\t\t\t\t<Trend>S</Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t\t<Vehicleid>6682</Vehicleid>\n\t\t\t\t\t<Lat>33.364864</Lat>\n\t\t\t\t\t<Long>-111.732414</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>4175</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t</Service>\n\t\t<Service>\n\t\t\t<Route>108</Route>\n\t\t\t<Publicroute>108</Publicroute>\n\t\t\t<Sign>108
173
155
  Elliot/48th St West To 48th St/Chandler</Sign>\n\t\t\t<Operator>FTE</Operator>\n\t\t\t<Publicoperator>FTE</Publicoperator>\n\t\t\t<Direction>W</Direction>\n\t\t\t<Status>N</Status>\n\t\t\t<Servicetype>W</Servicetype>\n\t\t\t<Routetype>B</Routetype>\n\t\t\t<Times>02:07
174
156
  PM, 07:07 PM, 07:37 PM, 08:07 PM</Times>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>02:07
175
- PM</Triptime>\n\t\t\t\t<Tripid>11913-6</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>02:07
157
+ PM</Triptime>\n\t\t\t\t<Tripid>16497-6</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>02:07
176
158
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>02:07
177
159
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
178
160
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
179
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5600</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>07:07
180
- PM</Triptime>\n\t\t\t\t<Tripid>11913-6</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>07:07
161
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>4174</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>07:07
162
+ PM</Triptime>\n\t\t\t\t<Tripid>16497-6</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>07:07
181
163
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>07:07
182
164
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
183
165
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
184
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5606</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>07:37
185
- PM</Triptime>\n\t\t\t\t<Tripid>11913-7</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>07:37
166
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5072</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>07:37
167
+ PM</Triptime>\n\t\t\t\t<Tripid>16497-7</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>07:37
186
168
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>07:37
187
169
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
188
170
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
189
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5609</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>08:07
190
- PM</Triptime>\n\t\t\t\t<Tripid>11913-7</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>08:07
171
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5047</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>08:07
172
+ PM</Triptime>\n\t\t\t\t<Tripid>16497-7</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>08:07
191
173
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>08:07
192
174
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
193
175
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
194
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5610</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t</Service>\n\t\t<Service>\n\t\t\t<Route>108</Route>\n\t\t\t<Publicroute>108</Publicroute>\n\t\t\t<Sign>108
176
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5048</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t</Service>\n\t\t<Service>\n\t\t\t<Route>108</Route>\n\t\t\t<Publicroute>108</Publicroute>\n\t\t\t<Sign>108
195
177
  Elliot/48th St West To 48th St/Chandler Via Sosmn/Bsnln</Sign>\n\t\t\t<Operator>FTE</Operator>\n\t\t\t<Publicoperator>FTE</Publicoperator>\n\t\t\t<Direction>W</Direction>\n\t\t\t<Status>N</Status>\n\t\t\t<Servicetype>W</Servicetype>\n\t\t\t<Routetype>B</Routetype>\n\t\t\t<Times>02:37
196
- PM, 06:37 PM</Times>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>02:37 PM</Triptime>\n\t\t\t\t<Tripid>11915-0</Tripid>\n\t\t\t\t<Skedtripid>
178
+ PM, 06:37 PM</Times>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>02:37 PM</Triptime>\n\t\t\t\t<Tripid>16499-0</Tripid>\n\t\t\t\t<Skedtripid>
197
179
  </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>02:37
198
180
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>02:37
199
181
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
200
182
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
201
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5607</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>06:37
202
- PM</Triptime>\n\t\t\t\t<Tripid>11915-1</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>06:37
183
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5045</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t\t<Tripinfo>\n\t\t\t\t<Triptime>06:37
184
+ PM</Triptime>\n\t\t\t\t<Tripid>16499-1</Tripid>\n\t\t\t\t<Skedtripid> </Skedtripid>\n\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t<Estimatedtime>06:37
203
185
  PM</Estimatedtime>\n\t\t\t\t<Realtime>\n\t\t\t\t\t<Valid>N</Valid>\n\t\t\t\t\t<Adherence>0</Adherence>\n\t\t\t\t\t<Estimatedtime>06:37
204
186
  PM</Estimatedtime>\n\t\t\t\t\t<Estimatedminutes> </Estimatedminutes>\n\t\t\t\t\t<Polltime></Polltime>\n\t\t\t\t\t<Trend>
205
187
  </Trend>\n\t\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t\t<Stopped>
206
- </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5605</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t</Service>\n\t</Atstop>\n\t<Statusinfo></Statusinfo>\n\t<Requestor>68.226.126.17</Requestor>\n\t<Host>s-rpta-soap</Host>\n\t<Copyright>XML
207
- schema Copyright (c) 2003-2013 Trapeze Software ULC, its subsidiaries and
208
- affiliates. All rights reserved.</Copyright>\n\t<Soapversion>2.6.3 - 11/14/13</Soapversion>\n</namesp1:NextbusResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>"
188
+ </Stopped>\n\t\t\t\t\t<Vehicleid></Vehicleid>\n\t\t\t\t\t<Lat>0.000000</Lat>\n\t\t\t\t\t<Long>0.000000</Long>\n\t\t\t\t</Realtime>\n\t\t\t\t<Block>5044</Block>\n\t\t\t\t<Exception>N</Exception>\n\t\t\t</Tripinfo>\n\t\t</Service>\n\t</Atstop>\n\t<Statusinfo></Statusinfo>\n\t<Appid>ratis-specs</Appid>\n\t<Requestor>72.222.151.25</Requestor>\n\t<Host>s-rpta-soap</Host>\n\t<Copyright>XML
189
+ schema Copyright (c) 2003-2014 Trapeze Software ULC, its subsidiaries and
190
+ affiliates. All rights reserved.</Copyright>\n\t<Soapversion>2.7.1a - 05/14/14</Soapversion>\n</namesp1:NextbusResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>"
209
191
  http_version:
210
- recorded_at: Mon, 06 Jan 2014 23:53:38 GMT
192
+ recorded_at: Sat, 14 Jun 2014 00:41:28 GMT
211
193
  recorded_with: VCR 2.8.0