[libgdata/offline-testing] fixup! tests: Add trace file testing support to the Calendar test suite



commit 86d9caf363f229369e95863d76338a4cd7b373e2
Author: Philip Withnall <philip tecnocode co uk>
Date:   Wed Jul 31 09:07:05 2013 +0200

    fixup! tests: Add trace file testing support to the Calendar test suite

 gdata/tests/calendar.c                             |   20 --
 gdata/tests/traces/calendar/access-rule-delete     |   48 ++--
 gdata/tests/traces/calendar/access-rule-get        |   54 ++--
 gdata/tests/traces/calendar/access-rule-insert     |   56 ++--
 gdata/tests/traces/calendar/access-rule-update     |   56 ++--
 gdata/tests/traces/calendar/authentication         |   18 +-
 gdata/tests/traces/calendar/authentication-async   |   18 +-
 .../calendar/authentication-async-cancellation     |   27 ++
 gdata/tests/traces/calendar/batch                  |  208 +++++++-------
 gdata/tests/traces/calendar/batch-async            |   52 ++--
 gdata/tests/traces/calendar/event-insert           |   54 ++--
 .../{event-insert-async => event_insert-async}     |   54 ++--
 .../calendar/event_insert-async-cancellation       |  166 +++++++++++
 gdata/tests/traces/calendar/global-authentication  |   18 +-
 gdata/tests/traces/calendar/query-all-calendars    |   52 ++--
 .../traces/calendar/query-all-calendars-async      |   67 -----
 .../query-all-calendars-async-progress-closure     |   52 ++--
 gdata/tests/traces/calendar/query-events           |   54 ++--
 gdata/tests/traces/calendar/query-events-async     |   67 -----
 .../calendar/query-events-async-progress-closure   |   54 ++--
 gdata/tests/traces/calendar/query-own-calendars    |   52 ++--
 .../traces/calendar/query-own-calendars-async      |   67 -----
 .../query-own-calendars-async-progress-closure     |   52 ++--
 .../traces/calendar/query_all_calendars-async      |   67 +++++
 .../query_all_calendars-async-cancellation         |  304 ++++++++++++++++++++
 gdata/tests/traces/calendar/query_events-async     |   67 +++++
 .../calendar/query_events-async-cancellation       |  237 +++++++++++++++
 .../traces/calendar/query_own_calendars-async      |   67 +++++
 .../query_own_calendars-async-cancellation         |  304 ++++++++++++++++++++
 gdata/tests/traces/calendar/setup-batch-async      |   54 ++--
 gdata/tests/traces/calendar/setup-query-calendars  |  108 ++++----
 gdata/tests/traces/calendar/setup-query-events     |  162 ++++++------
 gdata/tests/traces/calendar/setup-temp-calendar    |   54 ++--
 .../tests/traces/calendar/setup-temp-calendar-acls |   56 ++--
 gdata/tests/traces/calendar/teardown-batch-async   |   52 ++--
 gdata/tests/traces/calendar/teardown-insert-event  |   52 ++--
 .../tests/traces/calendar/teardown-query-calendars |   96 +++---
 gdata/tests/traces/calendar/teardown-query-events  |  156 +++++-----
 gdata/tests/traces/calendar/teardown-temp-calendar |   48 ++--
 .../traces/calendar/teardown-temp-calendar-acls    |   63 ++++
 40 files changed, 2197 insertions(+), 1116 deletions(-)
---
diff --git a/gdata/tests/calendar.c b/gdata/tests/calendar.c
index 65f824d..2044eb7 100644
--- a/gdata/tests/calendar.c
+++ b/gdata/tests/calendar.c
@@ -103,8 +103,6 @@ GDATA_ASYNC_TEST_FUNCTIONS (authentication, void,
 G_STMT_START {
        GDataClientLoginAuthorizer *authorizer;
 
-       gdata_test_mock_server_start_trace (mock_server, "authentication-async");
-
        /* Create an authorizer */
        authorizer = gdata_client_login_authorizer_new (CLIENT_ID, GDATA_TYPE_CALENDAR_SERVICE);
 
@@ -139,8 +137,6 @@ G_STMT_START {
                g_assert (gdata_authorizer_is_authorized_for_domain (GDATA_AUTHORIZER (authorizer),
                                                                     
gdata_calendar_service_get_primary_authorization_domain ()) == FALSE);
        }
-
-       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 typedef struct {
@@ -223,8 +219,6 @@ GDATA_ASYNC_CLOSURE_FUNCTIONS (query_calendars, QueryCalendarsData);
 
 GDATA_ASYNC_TEST_FUNCTIONS (query_all_calendars, QueryCalendarsData,
 G_STMT_START {
-       gdata_test_mock_server_start_trace (mock_server, "query-all-calendars-async");
-
        gdata_calendar_service_query_all_calendars_async (GDATA_CALENDAR_SERVICE (service), NULL, 
cancellable, NULL,
                                                          NULL, NULL, async_ready_callback, async_data);
 } G_STMT_END,
@@ -241,8 +235,6 @@ G_STMT_START {
        } else {
                g_assert (feed == NULL);
        }
-
-       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 static void
@@ -293,8 +285,6 @@ test_query_own_calendars (QueryCalendarsData *data, gconstpointer service)
 
 GDATA_ASYNC_TEST_FUNCTIONS (query_own_calendars, QueryCalendarsData,
 G_STMT_START {
-       gdata_test_mock_server_start_trace (mock_server, "query-own-calendars-async");
-
        gdata_calendar_service_query_own_calendars_async (GDATA_CALENDAR_SERVICE (service), NULL, 
cancellable, NULL,
                                                          NULL, NULL, async_ready_callback, async_data);
 } G_STMT_END,
@@ -311,8 +301,6 @@ G_STMT_START {
        } else {
                g_assert (feed == NULL);
        }
-
-       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 static void
@@ -429,8 +417,6 @@ GDATA_ASYNC_CLOSURE_FUNCTIONS (query_events, QueryEventsData);
 
 GDATA_ASYNC_TEST_FUNCTIONS (query_events, QueryEventsData,
 G_STMT_START {
-       gdata_test_mock_server_start_trace (mock_server, "query-events-async");
-
        gdata_calendar_service_query_events_async (GDATA_CALENDAR_SERVICE (service), data->parent.calendar, 
NULL, cancellable, NULL, NULL, NULL,
                                                   async_ready_callback, async_data);
 } G_STMT_END,
@@ -446,8 +432,6 @@ G_STMT_START {
        } else {
                g_assert (feed == NULL);
        }
-
-       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 static void
@@ -558,8 +542,6 @@ G_STMT_START {
        GTimeVal start_time;
        GTimeVal end_time;
 
-       gdata_test_mock_server_start_trace (mock_server, "event-insert-async");
-
        event = gdata_calendar_event_new (NULL);
 
        gdata_entry_set_title (GDATA_ENTRY (event), "Tennis with Beth");
@@ -593,8 +575,6 @@ G_STMT_START {
        } else {
                g_assert (event == NULL);
        }
-
-       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 static void
diff --git a/gdata/tests/traces/calendar/access-rule-delete b/gdata/tests/traces/calendar/access-rule-delete
index 4ce914a..28912f9 100644
--- a/gdata/tests/traces/calendar/access-rule-delete
+++ b/gdata/tests/traces/calendar/access-rule-delete
@@ -1,21 +1,21 @@
-> DELETE 
/calendar/feeds/j3pof8q060uvthc62v9falj6ik%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com 
HTTP/1.1
-> Soup-Debug-Timestamp: 1375108051
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 122 (0x7fffe003a9d0), SoupSocket 113 (0x8dede0)
+> DELETE 
/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375202837
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 121 (0x7fffe003f550), SoupSocket 111 (0x7fffe0040970)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 302 Moved Temporarily
-< Soup-Debug-Timestamp: 1375108051
-< Soup-Debug: SoupMessage 122 (0x7fffe003a9d0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXThTgckY3-hSb61OvnzXxSJ7d2jzDTq4SYJOcXEK19cfN8WmIspK2CGATjYnx3q1Fz9ZgntzaOCi00pQJhkctNT
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:27:32 GMT
-< Set-Cookie: S=calendar=jQI0qRj5ZQ2Sg_hP7KJjMg;Expires=Mon, 12-Aug-2013 06:03:44 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:27:31 GMT
-< Date: Mon, 29 Jul 2013 14:27:31 GMT
-< Location: 
https://www.google.com/calendar/feeds/j3pof8q060uvthc62v9falj6ik%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com?gsessionid=jQI0qRj5ZQ2Sg_hP7KJjMg
+< Soup-Debug-Timestamp: 1375202837
+< Soup-Debug: SoupMessage 121 (0x7fffe003f550)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_lzf1dm9Ue8N3SJp2J6o695WrE5nMbNLIXgO1GwYSOH0dinvA7V6dAhAIAEim2gLMsmbC2ddMnDUzaVKIGr3_JWCh97kMTIAR1M2IeSsu02b7EZA-X4HjICLw-x5pMnXhR8i08nLbVHSLT_No8fvB518lPWszfELKmW9TYG0-BAxXFzn9IKi_SmDnEv70WeTVk9AKBXEZK8GgbVvG2jwg9IxQwwSgxxH2Am-wKlw1Xh28Ocyi9bXsxw2zvbHLluu_emFBzQJ8Ds6aIurEQIryfg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:47:18 GMT
+< Set-Cookie: S=calendar=jBZUb79fi9kSaQXb1FBYKA;Expires=Sat, 10-Aug-2013 22:54:10 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:47:17 GMT
+< Date: Tue, 30 Jul 2013 16:47:17 GMT
+< Location: 
https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com?gsessionid=jBZUb79fi9kSaQXb1FBYKA
 < Content-Type: text/html; charset=UTF-8
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -30,27 +30,27 @@
 < </HEAD>
 < <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
 < <H1>Moved Temporarily</H1>
-< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/j3pof8q060uvthc62v9falj6ik%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com?gsessionid=jQI0qRj5ZQ2Sg_hP7KJjMg";>here</A>.
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com?gsessionid=jBZUb79fi9kSaQXb1FBYKA";>here</A>.
 < </BODY>
 < </HTML>
   
-> DELETE 
/calendar/feeds/j3pof8q060uvthc62v9falj6ik%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com?gsessionid=jQI0qRj5ZQ2Sg_hP7KJjMg
 HTTP/1.1
-> Soup-Debug-Timestamp: 1375108051
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 122 (0x7fffe003a9d0), SoupSocket 113 (0x8dede0), 
restarted
+> DELETE 
/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com?gsessionid=jBZUb79fi9kSaQXb1FBYKA
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375202837
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 121 (0x7fffe003f550), SoupSocket 111 (0x7fffe0040970), 
restarted
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375108051
-< Soup-Debug: SoupMessage 122 (0x7fffe003a9d0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-ODYysS96Taaw1NaIYtJAAHEXCZ_GMPV8cwrWmi_-pskMkzDa8yS5h3Lx6BUX8K1OQLMPBV7rpZGHtUa1jYE1jA_4X05rZ800eKz2vNaGdZYoiYJwGnkqCe72OBS-ReHTEtvQtr7VG9ZYkAslaj0Tffvz8pB9ItwBfiM3-4oLSkIEFXx8_eyUlfeNChSfSAvSSqTyG58No5P6HZMRKSJtwsyLwtxAl4BhBMfGX_Uh_z0XCyGMW8beXiNXZ4h5XkwP
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:27:32 GMT
-< Set-Cookie: S=calendar=118LGYGKHrjpdQ5SQOT36w;Expires=Wed, 07-Aug-2013 10:11:26 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:27:31 GMT
-< Date: Mon, 29 Jul 2013 14:27:31 GMT
+< Soup-Debug-Timestamp: 1375202837
+< Soup-Debug: SoupMessage 121 (0x7fffe003f550)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_QMIIFxw1-89I4fIiltp3toM_OQPaV-s2Op5YfNNKqskJ-elHTN3M2YrIdeRcj84Q94sPukowimpQydy5Tbb14G3YJ4S-NHM8cpqZJBifvXkyktCQOlLQS03AMrw1-u6qvRouqxtCMYd1apUUU9kXVWwoSYowH2iqScUeke9qp_ZEetMmdoQ61WwPB5gd4Of34y2qjfi6BC-i8q-4AfecimYdMpxx-Z7ncnkPEftWV84VyvVUhWfLM8oWcP3zT943b_FOzjNl76pHK1Za70lHtw
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:47:18 GMT
+< Set-Cookie: S=calendar=4cE4wWxAns3je5eEC48OpQ;Expires=Mon, 12-Aug-2013 16:53:14 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:47:18 GMT
+< Date: Tue, 30 Jul 2013 16:47:18 GMT
 < GData-Version: 2.6
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
diff --git a/gdata/tests/traces/calendar/access-rule-get b/gdata/tests/traces/calendar/access-rule-get
index 6ae4693..990a4f2 100644
--- a/gdata/tests/traces/calendar/access-rule-get
+++ b/gdata/tests/traces/calendar/access-rule-get
@@ -1,21 +1,21 @@
-> GET /calendar/feeds/asmmto8qsvl8qir8d72uris21o%40group.calendar.google.com/acl/full HTTP/1.1
-> Soup-Debug-Timestamp: 1375108031
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 108 (0x7fffe003a9d0), SoupSocket 101 (0x8dede0)
+> GET /calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full HTTP/1.1
+> Soup-Debug-Timestamp: 1375202815
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 107 (0x7fffe003f550), SoupSocket 99 (0x7750d0)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 302 Moved Temporarily
-< Soup-Debug-Timestamp: 1375108031
-< Soup-Debug: SoupMessage 108 (0x7fffe003a9d0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXThTgckY3-hSb61OvnzXxSJ7d2jzDTq4SYJOcXEK19cfN8WmIspK2CGATjYnx3q1Fz9ZgntzaOCi00pQJhkctNT
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:27:12 GMT
-< Set-Cookie: S=calendar=MRkYuD78C15JRF_KUjkuVQ;Expires=Sat, 10-Aug-2013 20:47:55 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:27:11 GMT
-< Date: Mon, 29 Jul 2013 14:27:11 GMT
-< Location: 
https://www.google.com/calendar/feeds/asmmto8qsvl8qir8d72uris21o%40group.calendar.google.com/acl/full?gsessionid=MRkYuD78C15JRF_KUjkuVQ
+< Soup-Debug-Timestamp: 1375202815
+< Soup-Debug: SoupMessage 107 (0x7fffe003f550)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_lzf1dm9Ue8N3SJp2J6o695WrE5nMbNLIXgO1GwYSOH0dinvA7V6dAhAIAEim2gLMsmbC2ddMnDUzaVKIGr3_JWCh97kMTIAR1M2IeSsu02b7EZA-X4HjICLw-x5pMnXhR8i08nLbVHSLT_No8fvB518lPWszfELKmW9TYG0-BAxXFzn9IKi_SmDnEv70WeTVk9AKBXEZK8GgbVvG2jwg9IxQwwSgxxH2Am-wKlw1Xh28Ocyi9bXsxw2zvbHLluu_emFBzQJ8Ds6aIurEQIryfg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:57 GMT
+< Set-Cookie: S=calendar=G_6kLMPUbpzgPxnXiSrtUw;Expires=Mon, 12-Aug-2013 11:38:22 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:56 GMT
+< Date: Tue, 30 Jul 2013 16:46:56 GMT
+< Location: 
https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full?gsessionid=G_6kLMPUbpzgPxnXiSrtUw
 < Content-Type: text/html; charset=UTF-8
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -30,38 +30,38 @@
 < </HEAD>
 < <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
 < <H1>Moved Temporarily</H1>
-< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/asmmto8qsvl8qir8d72uris21o%40group.calendar.google.com/acl/full?gsessionid=MRkYuD78C15JRF_KUjkuVQ";>here</A>.
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full?gsessionid=G_6kLMPUbpzgPxnXiSrtUw";>here</A>.
 < </BODY>
 < </HTML>
   
-> GET 
/calendar/feeds/asmmto8qsvl8qir8d72uris21o%40group.calendar.google.com/acl/full?gsessionid=MRkYuD78C15JRF_KUjkuVQ
 HTTP/1.1
-> Soup-Debug-Timestamp: 1375108031
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 108 (0x7fffe003a9d0), SoupSocket 101 (0x8dede0), 
restarted
+> GET 
/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full?gsessionid=G_6kLMPUbpzgPxnXiSrtUw
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375202815
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 107 (0x7fffe003f550), SoupSocket 99 (0x7750d0), restarted
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375108031
-< Soup-Debug: SoupMessage 108 (0x7fffe003a9d0)
-< Update-Client-Auth: 
DQAAAM4AAAAlDUC-WQgltDHdndYDddr-geSwqup450dH73A2Cl-8pGWAz5Jr6k15x7ETDyyX-gKH9mQLgT8NgpcJeZVMLjIXm1EbZt7eOlczQvHw9uMmD40XUvTc3VuOvT58GOMc7bcR5a-xUVuHMkbEU3g2rCp7Fw3q3lP_QFTWqE59LQAuIJ1V1Mzrj5l73ZloZnprjZsoS6V737LE84MKS3EbUJwdhONiAUU1jBHCL_yAoimGEtnElJMGcEXxs1Pl3YW3Ceub90HJ43ybw11aZdO1mFDL
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:27:12 GMT
-< Set-Cookie: S=calendar=FlhqwZccZ01Esw_v7jh5aw;Expires=Fri, 09-Aug-2013 17:15:16 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:27:11 GMT
-< Date: Mon, 29 Jul 2013 14:27:11 GMT
+< Soup-Debug-Timestamp: 1375202816
+< Soup-Debug: SoupMessage 107 (0x7fffe003f550)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_q4NwI2V8UT-SSEMjiblkY8jTSCIGQJCo_ZFavemirrG0G2jzg3jjEVC3CQauPSZoNTFtDCw6Eu1-1S6nOyDK2J9zwLcpKLPHGuWk8fzL5JjKgN0Z0HbdhVtGaldMU2XCoc4_I0dsAZNFNzMl12pQ2IhlOpKYk_syrjXgbEIFWB07e6wSu6Mp1XswtWQL95nokCfWJkTHf4YGsR2zpy2736UplfLIVHDJLz7fiJzKG-5nUmoz2a5jdwopbkQ6flW44tTL7okPm_2Y6nqlPi74Mg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:57 GMT
+< Set-Cookie: S=calendar=GSG2J1yGIV1MRxedFUw0tg;Expires=Thu, 08-Aug-2013 23:52:29 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:56 GMT
+< Date: Tue, 30 Jul 2013 16:46:56 GMT
 < Content-Type: application/atom+xml; charset=UTF-8; type=feed
 < Cache-control: private, max-age=0, must-revalidate, no-transform
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 2.6
-< ETag: W/"AkcHQX47eCp7JGA9WhFWEU0."
-< Last-Modified: Mon, 29 Jul 2013 14:27:10 GMT
+< ETag: W/"CE8FRH47eCp7JGA9WhFWEk0."
+< Last-Modified: Tue, 30 Jul 2013 16:46:55 GMT
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
 < X-XSS-Protection: 1; mode=block
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' xmlns:gAcl='http://schemas.google.com/acl/2007' 
gd:etag='W/&quot;AkcHQX47eCp7JGA9WhFWEU0.&quot;' 
gd:kind='calendar#aclFeed'><id>http://www.google.com/calendar/feeds/asmmto8qsvl8qir8d72uris21o%40group.calendar.google.com/acl/full</id><updated>2013-07-29T14:27:10.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/acl/2007#accessRule'/><title>Temp Test Calendar's access control 
list</title><link rel='http://schemas.google.com/acl/2007#controlledObject' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/asmmto8qsvl8qir8d72uris21o%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/calendar/feed
 s/asmmto8qsvl8qir8d72uris21o%40group.calendar.google.com/acl/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/asmmto8qsvl8qir8d72uris21o%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/asmmto8qsvl8qir8d72uris21o%40group.calendar.google.com/acl/full'/><generator
 version='1.0' uri='http://www.google.com/calendar'>Google 
Calendar</generator><openSearch:totalResults>3</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><entry
 gd:etag='W/&quot;AkcHQX47eCp7JGA9WhFWEU0.&quot;' 
gd:kind='calendar#acl'><id>http://www.google.com/calendar/feeds/asmmto8qsvl8qir8d72uris21o%40group.calendar.google.com/acl/user%3Adarcy%40gmail.com</id><updated>2013-07-29T14:27:10.000Z</updated><app:edited>2013-07-29T14:27:10.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/
 acl/2007#accessRule'/><title>editor</title><content/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/asmmto8qsvl8qir8d72uris21o%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/asmmto8qsvl8qir8d72uris21o%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com'/><author><name>Temp
 Test Calendar</name><email>asmmto8qsvl8qir8d72uris21o group calendar google com</email></author><gAcl:role 
value='http://schemas.google.com/gCal/2005#editor'/><gAcl:scope type='user' value='darcy gmail 
com'/></entry><entry gd:etag='W/&quot;AkcHQX47eCp7JGA9WhFWEU0.&quot;' 
gd:kind='calendar#acl'><id>http://www.google.com/calendar/feeds/asmmto8qsvl8qir8d72uris21o%40group.calendar.google.com/acl/user%3Aasmmto8qsvl8qir8d72uris21o%40group.calendar.google.com</id><updated>2013-07-29T14:27:10.000Z</updated><app:edited>2013-07-29T14:27:10.000Z</app:edited><cat
 egory scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/acl/2007#accessRule'/><title>owner</title><content/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/asmmto8qsvl8qir8d72uris21o%40group.calendar.google.com/acl/full/user%3Aasmmto8qsvl8qir8d72uris21o%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/asmmto8qsvl8qir8d72uris21o%40group.calendar.google.com/acl/full/user%3Aasmmto8qsvl8qir8d72uris21o%40group.calendar.google.com'/><author><name>Temp
 Test Calendar</name><email>asmmto8qsvl8qir8d72uris21o group calendar google com</email></author><gAcl:role 
value='http://schemas.google.com/gCal/2005#owner'/><gAcl:scope type='user' value='asmmto8qsvl8qir8d72uris21o 
group calendar google com'/></entry><entry gd:etag='W/&quot;AkcHQX47eCp7JGA9WhFWEU0.&quot;' 
gd:kind='calendar#acl'><id>http://www.google.com/calendar/feeds/asmmto8qsvl8qir8d72uris21o%
 
40group.calendar.google.com/acl/user%3Alibgdata.test%40googlemail.com</id><updated>2013-07-29T14:27:10.000Z</updated><app:edited>2013-07-29T14:27:10.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/acl/2007#accessRule'/><title>owner</title><content/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/asmmto8qsvl8qir8d72uris21o%40group.calendar.google.com/acl/full/user%3Alibgdata.test%40googlemail.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/asmmto8qsvl8qir8d72uris21o%40group.calendar.google.com/acl/full/user%3Alibgdata.test%40googlemail.com'/><author><name>Temp
 Test Calendar</name><email>asmmto8qsvl8qir8d72uris21o group calendar google com</email></author><gAcl:role 
value='http://schemas.google.com/gCal/2005#owner'/><gAcl:scope type='user' value='libgdata test googlemail 
com'/></entry></feed>
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' xmlns:gAcl='http://schemas.google.com/acl/2007' 
gd:etag='W/&quot;CE8FRH47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#aclFeed'><id>http://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full</id><updated>2013-07-30T16:46:55.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/acl/2007#accessRule'/><title>Temp Test Calendar's access control 
list</title><link rel='http://schemas.google.com/acl/2007#controlledObject' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/calendar/feed
 s/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full'/><generator
 version='1.0' uri='http://www.google.com/calendar'>Google 
Calendar</generator><openSearch:totalResults>3</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><entry
 gd:etag='W/&quot;CE8FRH47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#acl'><id>http://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/user%3Adarcy%40gmail.com</id><updated>2013-07-30T16:46:55.000Z</updated><app:edited>2013-07-30T16:46:55.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/
 acl/2007#accessRule'/><title>editor</title><content/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com'/><author><name>Temp
 Test Calendar</name><email>i4jqlr6fcg9obf3qucemmcm1m0 group calendar google com</email></author><gAcl:role 
value='http://schemas.google.com/gCal/2005#editor'/><gAcl:scope type='user' value='darcy gmail 
com'/></entry><entry gd:etag='W/&quot;CE8FRH47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#acl'><id>http://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/user%3Alibgdata.test%40googlemail.com</id><updated>2013-07-30T16:46:55.000Z</updated><app:edited>2013-07-30T16:46:55.000Z</app:edited><category
 scheme='http://sch
 emas.google.com/g/2005#kind' 
term='http://schemas.google.com/acl/2007#accessRule'/><title>owner</title><content/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full/user%3Alibgdata.test%40googlemail.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full/user%3Alibgdata.test%40googlemail.com'/><author><name>Temp
 Test Calendar</name><email>i4jqlr6fcg9obf3qucemmcm1m0 group calendar google com</email></author><gAcl:role 
value='http://schemas.google.com/gCal/2005#owner'/><gAcl:scope type='user' value='libgdata test googlemail 
com'/></entry><entry gd:etag='W/&quot;CE8FRH47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#acl'><id>http://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/user%3Ai4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com</i
 d><updated>2013-07-30T16:46:55.000Z</updated><app:edited>2013-07-30T16:46:55.000Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/acl/2007#accessRule'/><title>owner</title><content/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full/user%3Ai4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full/user%3Ai4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com'/><author><name>Temp
 Test Calendar</name><email>i4jqlr6fcg9obf3qucemmcm1m0 group calendar google com</email></author><gAcl:role 
value='http://schemas.google.com/gCal/2005#owner'/><gAcl:scope type='user' value='i4jqlr6fcg9obf3qucemmcm1m0 
group calendar google com'/></entry></feed>
   
diff --git a/gdata/tests/traces/calendar/access-rule-insert b/gdata/tests/traces/calendar/access-rule-insert
index 65fbac6..44e699b 100644
--- a/gdata/tests/traces/calendar/access-rule-insert
+++ b/gdata/tests/traces/calendar/access-rule-insert
@@ -1,8 +1,8 @@
-> POST /calendar/feeds/b1om61kv040k1j2oe5nhsbe7f8%40group.calendar.google.com/acl/full HTTP/1.1
-> Soup-Debug-Timestamp: 1375108036
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 112 (0x7fffd804b0b0), SoupSocket 104 (0x8deea0)
+> POST /calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full HTTP/1.1
+> Soup-Debug-Timestamp: 1375202821
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 111 (0x7fffe40158e0), SoupSocket 102 (0x7fffe0040af0)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
@@ -11,14 +11,14 @@
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gAcl='http://schemas.google.com/acl/2007' xmlns:gd='http://schemas.google.com/g/2005'><title 
type='text'>http://schemas.google.com/gCal/2005#editor</title><category 
term='http://schemas.google.com/acl/2007#accessRule' 
scheme='http://schemas.google.com/g/2005#kind'/><gAcl:role 
value='http://schemas.google.com/gCal/2005#editor'/><gAcl:scope type='user' value='darcy gmail 
com'/></entry>
   
 < HTTP/1.1 302 Moved Temporarily
-< Soup-Debug-Timestamp: 1375108036
-< Soup-Debug: SoupMessage 112 (0x7fffd804b0b0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXThTgckY3-hSb61OvnzXxSJ7d2jzDTq4SYJOcXEK19cfN8WmIspK2CGATjYnx3q1Fz9ZgntzaOCi00pQJhkctNT
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:27:17 GMT
-< Set-Cookie: S=calendar=LUv63T9cZ1F3Wc0c1LOPLA;Expires=Tue, 06-Aug-2013 14:38:54 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:27:16 GMT
-< Date: Mon, 29 Jul 2013 14:27:16 GMT
-< Location: 
https://www.google.com/calendar/feeds/b1om61kv040k1j2oe5nhsbe7f8%40group.calendar.google.com/acl/full?gsessionid=LUv63T9cZ1F3Wc0c1LOPLA
+< Soup-Debug-Timestamp: 1375202821
+< Soup-Debug: SoupMessage 111 (0x7fffe40158e0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_lzf1dm9Ue8N3SJp2J6o695WrE5nMbNLIXgO1GwYSOH0dinvA7V6dAhAIAEim2gLMsmbC2ddMnDUzaVKIGr3_JWCh97kMTIAR1M2IeSsu02b7EZA-X4HjICLw-x5pMnXhR8i08nLbVHSLT_No8fvB518lPWszfELKmW9TYG0-BAxXFzn9IKi_SmDnEv70WeTVk9AKBXEZK8GgbVvG2jwg9IxQwwSgxxH2Am-wKlw1Xh28Ocyi9bXsxw2zvbHLluu_emFBzQJ8Ds6aIurEQIryfg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:47:03 GMT
+< Set-Cookie: S=calendar=0cMHcOhSoQQJOW_tcXpzww;Expires=Mon, 12-Aug-2013 13:18:56 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:47:02 GMT
+< Date: Tue, 30 Jul 2013 16:47:02 GMT
+< Location: 
https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full?gsessionid=0cMHcOhSoQQJOW_tcXpzww
 < Content-Type: text/html; charset=UTF-8
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -33,15 +33,15 @@
 < </HEAD>
 < <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
 < <H1>Moved Temporarily</H1>
-< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/b1om61kv040k1j2oe5nhsbe7f8%40group.calendar.google.com/acl/full?gsessionid=LUv63T9cZ1F3Wc0c1LOPLA";>here</A>.
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full?gsessionid=0cMHcOhSoQQJOW_tcXpzww";>here</A>.
 < </BODY>
 < </HTML>
   
-> POST 
/calendar/feeds/b1om61kv040k1j2oe5nhsbe7f8%40group.calendar.google.com/acl/full?gsessionid=LUv63T9cZ1F3Wc0c1LOPLA
 HTTP/1.1
-> Soup-Debug-Timestamp: 1375108036
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 112 (0x7fffd804b0b0), SoupSocket 105 (0x8dea20), 
restarted
+> POST 
/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full?gsessionid=0cMHcOhSoQQJOW_tcXpzww
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375202822
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 111 (0x7fffe40158e0), SoupSocket 103 (0x775310), 
restarted
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
@@ -51,25 +51,25 @@
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gAcl='http://schemas.google.com/acl/2007' xmlns:gd='http://schemas.google.com/g/2005'><title 
type='text'>http://schemas.google.com/gCal/2005#editor</title><category 
term='http://schemas.google.com/acl/2007#accessRule' 
scheme='http://schemas.google.com/g/2005#kind'/><gAcl:role 
value='http://schemas.google.com/gCal/2005#editor'/><gAcl:scope type='user' value='darcy gmail 
com'/></entry>
   
 < HTTP/1.1 201 Created
-< Soup-Debug-Timestamp: 1375108036
-< Soup-Debug: SoupMessage 112 (0x7fffd804b0b0)
-< Update-Client-Auth: 
DQAAAM4AAAAlDUC-WQgltDHdndYDddr-geSwqup450dH73A2Cl-8pGWAz5Jr6k15x7ETDyyX-gKH9mQLgT8NgpcJeZVMLjIXm1EbZt7eOlczQvHw9uMmD40XUvTc3VuOvT58GOMc7bcR5a-xUVuHMkbEU3g2rCp7Fw3q3lP_QFTWqE59LQAuIJ1V1Mzrj5l73ZloZnprjZsoS6V737LE84MKS3EbUJwdhONiAUU1jBHCL_yAoimGEtnElJMGcEXxs1Pl3YW3Ceub90HJ43ybw11aZdO1mFDL
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:27:17 GMT
-< Set-Cookie: S=calendar=MGwq8cAp3Jus5E6mG_mldg;Expires=Wed, 07-Aug-2013 10:11:52 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:27:16 GMT
-< Date: Mon, 29 Jul 2013 14:27:16 GMT
+< Soup-Debug-Timestamp: 1375202822
+< Soup-Debug: SoupMessage 111 (0x7fffe40158e0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_q4NwI2V8UT-SSEMjiblkY8jTSCIGQJCo_ZFavemirrG0G2jzg3jjEVC3CQauPSZoNTFtDCw6Eu1-1S6nOyDK2J9zwLcpKLPHGuWk8fzL5JjKgN0Z0HbdhVtGaldMU2XCoc4_I0dsAZNFNzMl12pQ2IhlOpKYk_syrjXgbEIFWB07e6wSu6Mp1XswtWQL95nokCfWJkTHf4YGsR2zpy2736UplfLIVHDJLz7fiJzKG-5nUmoz2a5jdwopbkQ6flW44tTL7okPm_2Y6nqlPi74Mg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:47:03 GMT
+< Set-Cookie: S=calendar=VwlNXiAzfDEQTMMFHSsEkw;Expires=Tue, 13-Aug-2013 03:25:53 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:47:02 GMT
+< Date: Tue, 30 Jul 2013 16:47:02 GMT
 < Content-Type: application/atom+xml; charset=UTF-8; type=entry
 < Cache-control: private, max-age=0, must-revalidate, no-transform
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 2.6
-< ETag: W/"AkcHR3oyfip7JGA9WhFWEU0."
-< Location: 
https://www.google.com/calendar/feeds/b1om61kv040k1j2oe5nhsbe7f8%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com
-< Content-Location: 
https://www.google.com/calendar/feeds/b1om61kv040k1j2oe5nhsbe7f8%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com
+< ETag: W/"CE8GQ3o_eSp7JGA9WhFWEk0."
+< Location: 
https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com
+< Content-Location: 
https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
 < X-XSS-Protection: 1; mode=block
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:gAcl='http://schemas.google.com/acl/2007' gd:etag='W/&quot;AkcHR3oyfip7JGA9WhFWEU0.&quot;' 
gd:kind='calendar#acl'><id>http://www.google.com/calendar/feeds/b1om61kv040k1j2oe5nhsbe7f8%40group.calendar.google.com/acl/user%3Adarcy%40gmail.com</id><published>2013-07-29T14:27:16.496Z</published><updated>2013-07-29T14:27:16.000Z</updated><app:edited>2013-07-29T14:27:16.496Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/acl/2007#accessRule'/><title>editor</title><content/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/b1om61kv040k1j2oe5nhsbe7f8%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com'/><link
 rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/b1om61kv040k1j2oe5nhsbe7
 f8%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com'/><author><name>Temp Test 
Calendar</name><email>b1om61kv040k1j2oe5nhsbe7f8 group calendar google com</email></author><gAcl:role 
value='http://schemas.google.com/gCal/2005#editor'/><gAcl:scope type='user' value='darcy gmail com'/></entry>
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:gAcl='http://schemas.google.com/acl/2007' gd:etag='W/&quot;CE8GQ3o_eSp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#acl'><id>http://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/user%3Adarcy%40gmail.com</id><published>2013-07-30T16:47:02.441Z</published><updated>2013-07-30T16:47:02.000Z</updated><app:edited>2013-07-30T16:47:02.441Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/acl/2007#accessRule'/><title>editor</title><content/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com'/><link
 rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1
 m0%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com'/><author><name>Temp Test 
Calendar</name><email>i4jqlr6fcg9obf3qucemmcm1m0 group calendar google com</email></author><gAcl:role 
value='http://schemas.google.com/gCal/2005#editor'/><gAcl:scope type='user' value='darcy gmail com'/></entry>
   
diff --git a/gdata/tests/traces/calendar/access-rule-update b/gdata/tests/traces/calendar/access-rule-update
index 40587d8..b5a96cd 100644
--- a/gdata/tests/traces/calendar/access-rule-update
+++ b/gdata/tests/traces/calendar/access-rule-update
@@ -1,24 +1,24 @@
-> PUT 
/calendar/feeds/iidlo06fkle7p5kvl4o6u37rhs%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com 
HTTP/1.1
-> Soup-Debug-Timestamp: 1375108044
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 117 (0x7fffd804b1a0), SoupSocket 109 (0x8dea20)
+> PUT 
/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375202830
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 116 (0x7fffe003f640), SoupSocket 107 (0x7753d0)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
Connection: Keep-Alive

-> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gAcl='http://schemas.google.com/acl/2007' xmlns:gd='http://schemas.google.com/g/2005'><title 
type='text'>http://schemas.google.com/gCal/2005#read</title><id>http://www.google.com/calendar/feeds/iidlo06fkle7p5kvl4o6u37rhs%40group.calendar.google.com/acl/user%3Adarcy%40gmail.com</id><updated>2013-07-29T14:27:23Z</updated><published>2013-07-29T14:27:23Z</published><category
 term='http://schemas.google.com/acl/2007#accessRule' scheme='http://schemas.google.com/g/2005#kind'/><link 
href='https://www.google.com/calendar/feeds/iidlo06fkle7p5kvl4o6u37rhs%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com'
 rel='http://www.iana.org/assignments/relation/self' type='application/atom+xml'/><link 
href='https://www.google.com/calendar/feeds/iidlo06fkle7p5kvl4o6u37rhs%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com'
 rel='http://www.iana.org/assignments/relation/edit' type='applic
 ation/atom+xml'/><author><name>Temp Test Calendar</name><email>iidlo06fkle7p5kvl4o6u37rhs group calendar 
google com</email></author><gAcl:role value='http://schemas.google.com/gCal/2005#read'/><gAcl:scope 
type='user' value='darcy gmail com'/></entry>
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gAcl='http://schemas.google.com/acl/2007' xmlns:gd='http://schemas.google.com/g/2005'><title 
type='text'>http://schemas.google.com/gCal/2005#read</title><id>http://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/user%3Adarcy%40gmail.com</id><updated>2013-07-30T16:47:10Z</updated><published>2013-07-30T16:47:10Z</published><category
 term='http://schemas.google.com/acl/2007#accessRule' scheme='http://schemas.google.com/g/2005#kind'/><link 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com'
 rel='http://www.iana.org/assignments/relation/self' type='application/atom+xml'/><link 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com'
 rel='http://www.iana.org/assignments/relation/edit' type='applic
 ation/atom+xml'/><author><name>Temp Test Calendar</name><email>i4jqlr6fcg9obf3qucemmcm1m0 group calendar 
google com</email></author><gAcl:role value='http://schemas.google.com/gCal/2005#read'/><gAcl:scope 
type='user' value='darcy gmail com'/></entry>
   
 < HTTP/1.1 302 Moved Temporarily
-< Soup-Debug-Timestamp: 1375108044
-< Soup-Debug: SoupMessage 117 (0x7fffd804b1a0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXThTgckY3-hSb61OvnzXxSJ7d2jzDTq4SYJOcXEK19cfN8WmIspK2CGATjYnx3q1Fz9ZgntzaOCi00pQJhkctNT
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:27:25 GMT
-< Set-Cookie: S=calendar=UojPJw9xABqs2jOdKH6hvQ;Expires=Fri, 09-Aug-2013 00:10:53 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:27:24 GMT
-< Date: Mon, 29 Jul 2013 14:27:24 GMT
-< Location: 
https://www.google.com/calendar/feeds/iidlo06fkle7p5kvl4o6u37rhs%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com?gsessionid=UojPJw9xABqs2jOdKH6hvQ
+< Soup-Debug-Timestamp: 1375202830
+< Soup-Debug: SoupMessage 116 (0x7fffe003f640)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_lzf1dm9Ue8N3SJp2J6o695WrE5nMbNLIXgO1GwYSOH0dinvA7V6dAhAIAEim2gLMsmbC2ddMnDUzaVKIGr3_JWCh97kMTIAR1M2IeSsu02b7EZA-X4HjICLw-x5pMnXhR8i08nLbVHSLT_No8fvB518lPWszfELKmW9TYG0-BAxXFzn9IKi_SmDnEv70WeTVk9AKBXEZK8GgbVvG2jwg9IxQwwSgxxH2Am-wKlw1Xh28Ocyi9bXsxw2zvbHLluu_emFBzQJ8Ds6aIurEQIryfg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:47:11 GMT
+< Set-Cookie: S=calendar=rRDVDN6I2LALAeYTokq2zQ;Expires=Fri, 09-Aug-2013 11:51:01 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:47:10 GMT
+< Date: Tue, 30 Jul 2013 16:47:10 GMT
+< Location: 
https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com?gsessionid=rRDVDN6I2LALAeYTokq2zQ
 < Content-Type: text/html; charset=UTF-8
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -33,34 +33,34 @@
 < </HEAD>
 < <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
 < <H1>Moved Temporarily</H1>
-< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/iidlo06fkle7p5kvl4o6u37rhs%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com?gsessionid=UojPJw9xABqs2jOdKH6hvQ";>here</A>.
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com?gsessionid=rRDVDN6I2LALAeYTokq2zQ";>here</A>.
 < </BODY>
 < </HTML>
   
-> PUT 
/calendar/feeds/iidlo06fkle7p5kvl4o6u37rhs%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com?gsessionid=UojPJw9xABqs2jOdKH6hvQ
 HTTP/1.1
-> Soup-Debug-Timestamp: 1375108044
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 117 (0x7fffd804b1a0), SoupSocket 109 (0x8dea20), 
restarted
+> PUT 
/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com?gsessionid=rRDVDN6I2LALAeYTokq2zQ
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375202830
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 116 (0x7fffe003f640), SoupSocket 107 (0x7753d0), 
restarted
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
Content-Length: 1237

-> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gAcl='http://schemas.google.com/acl/2007' xmlns:gd='http://schemas.google.com/g/2005'><title 
type='text'>http://schemas.google.com/gCal/2005#read</title><id>http://www.google.com/calendar/feeds/iidlo06fkle7p5kvl4o6u37rhs%40group.calendar.google.com/acl/user%3Adarcy%40gmail.com</id><updated>2013-07-29T14:27:23Z</updated><published>2013-07-29T14:27:23Z</published><category
 term='http://schemas.google.com/acl/2007#accessRule' scheme='http://schemas.google.com/g/2005#kind'/><link 
href='https://www.google.com/calendar/feeds/iidlo06fkle7p5kvl4o6u37rhs%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com'
 rel='http://www.iana.org/assignments/relation/self' type='application/atom+xml'/><link 
href='https://www.google.com/calendar/feeds/iidlo06fkle7p5kvl4o6u37rhs%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com'
 rel='http://www.iana.org/assignments/relation/edit' type='applic
 ation/atom+xml'/><author><name>Temp Test Calendar</name><email>iidlo06fkle7p5kvl4o6u37rhs group calendar 
google com</email></author><gAcl:role value='http://schemas.google.com/gCal/2005#read'/><gAcl:scope 
type='user' value='darcy gmail com'/></entry>
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gAcl='http://schemas.google.com/acl/2007' xmlns:gd='http://schemas.google.com/g/2005'><title 
type='text'>http://schemas.google.com/gCal/2005#read</title><id>http://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/user%3Adarcy%40gmail.com</id><updated>2013-07-30T16:47:10Z</updated><published>2013-07-30T16:47:10Z</published><category
 term='http://schemas.google.com/acl/2007#accessRule' scheme='http://schemas.google.com/g/2005#kind'/><link 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com'
 rel='http://www.iana.org/assignments/relation/self' type='application/atom+xml'/><link 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com'
 rel='http://www.iana.org/assignments/relation/edit' type='applic
 ation/atom+xml'/><author><name>Temp Test Calendar</name><email>i4jqlr6fcg9obf3qucemmcm1m0 group calendar 
google com</email></author><gAcl:role value='http://schemas.google.com/gCal/2005#read'/><gAcl:scope 
type='user' value='darcy gmail com'/></entry>
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375108044
-< Soup-Debug: SoupMessage 117 (0x7fffd804b1a0)
-< Update-Client-Auth: 
DQAAAM4AAAAlDUC-WQgltDHdndYDddr-geSwqup450dH73A2Cl-8pGWAz5Jr6k15x7ETDyyX-gKH9mQLgT8NgpcJeZVMLjIXm1EbZt7eOlczQvHw9uMmD40XUvTc3VuOvT58GOMc7bcR5a-xUVuHMkbEU3g2rCp7Fw3q3lP_QFTWqE59LQAuIJ1V1Mzrj5l73ZloZnprjZsoS6V737LE84MKS3EbUJwdhONiAUU1jBHCL_yAoimGEtnElJMGcEXxs1Pl3YW3Ceub90HJ43ybw11aZdO1mFDL
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:27:25 GMT
-< Set-Cookie: S=calendar=M24AQXnQL6shPCpQoPm0FQ;Expires=Sat, 10-Aug-2013 10:50:48 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:27:24 GMT
-< Date: Mon, 29 Jul 2013 14:27:24 GMT
+< Soup-Debug-Timestamp: 1375202831
+< Soup-Debug: SoupMessage 116 (0x7fffe003f640)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_x9DCxs6Yn1ShR7x5wx1k6e37TbqaZyvZnHbBDD5MjDqIwu2doXjOCD97mfXE8YE20iZQLD52PYbtpDGgujgmHXXGW1wlvqMs94qpgxdE8eYecbfbso9UjfaO5uqfvsRXIhKhe7zV2m0bacHn0JcyH7mkYYXHxHv7XZ_tjZftH-i5SVfC5OZaKOQXxynRfd_Yz5PzuJngGrHUxv5bViZFI3gQCqJikX_t9TXaydAiNvFoCzIgXcLmw11rsBONKvKvzka6NqtM8xqoAdhWs62jAQ
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:47:12 GMT
+< Set-Cookie: S=calendar=TyBkhul0iYJOiCY2R0pDmQ;Expires=Fri, 09-Aug-2013 23:54:30 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:47:11 GMT
+< Date: Tue, 30 Jul 2013 16:47:11 GMT
 < Content-Type: application/atom+xml; charset=UTF-8; type=entry
 < GData-Version: 2.6
-< ETag: W/"AkcARXw9fSp7JGA9WhFWEU0."
+< ETag: W/"CE8HQH44eyp7JGA9WhFWEk0."
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
@@ -68,5 +68,5 @@
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:gAcl='http://schemas.google.com/acl/2007' gd:etag='W/&quot;AkcARXw9fSp7JGA9WhFWEU0.&quot;' 
gd:kind='calendar#acl'><id>http://www.google.com/calendar/feeds/iidlo06fkle7p5kvl4o6u37rhs%40group.calendar.google.com/acl/user%3Adarcy%40gmail.com</id><updated>2013-07-29T14:27:24.000Z</updated><app:edited>2013-07-29T14:27:24.265Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/acl/2007#accessRule'/><title>read</title><content/><link 
rel='http://www.iana.org/assignments/relation/self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/iidlo06fkle7p5kvl4o6u37rhs%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com'/><link
 rel='http://www.iana.org/assignments/relation/edit' type='application/atom+xml' 
href='https://www.google.com/calend
 ar/feeds/iidlo06fkle7p5kvl4o6u37rhs%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/iidlo06fkle7p5kvl4o6u37rhs%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/iidlo06fkle7p5kvl4o6u37rhs%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com'/><author><name>Temp
 Test Calendar</name><email>iidlo06fkle7p5kvl4o6u37rhs group calendar google com</email></author><gAcl:role 
value='http://schemas.google.com/gCal/2005#read'/><gAcl:scope type='user' value='darcy gmail com'/></entry>
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:gAcl='http://schemas.google.com/acl/2007' gd:etag='W/&quot;CE8HQH44eyp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#acl'><id>http://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/user%3Adarcy%40gmail.com</id><updated>2013-07-30T16:47:11.000Z</updated><app:edited>2013-07-30T16:47:11.033Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/acl/2007#accessRule'/><title>read</title><content/><link 
rel='http://www.iana.org/assignments/relation/self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com'/><link
 rel='http://www.iana.org/assignments/relation/edit' type='application/atom+xml' 
href='https://www.google.com/calend
 ar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com'/><author><name>Temp
 Test Calendar</name><email>i4jqlr6fcg9obf3qucemmcm1m0 group calendar google com</email></author><gAcl:role 
value='http://schemas.google.com/gCal/2005#read'/><gAcl:scope type='user' value='darcy gmail com'/></entry>
   
diff --git a/gdata/tests/traces/calendar/authentication b/gdata/tests/traces/calendar/authentication
index cead870..b6bb8ba 100644
--- a/gdata/tests/traces/calendar/authentication
+++ b/gdata/tests/traces/calendar/authentication
@@ -1,6 +1,6 @@
POST /accounts/ClientLogin HTTP/1.1
-> Soup-Debug-Timestamp: 1375107885
-> Soup-Debug: SoupSession 1 (0x6593d0), SoupMessage 1 (0x6d12c0), SoupSocket 1 (0x8de960)
+> Soup-Debug-Timestamp: 1375202659
+> Soup-Debug: SoupSession 1 (0x65a3f0), SoupMessage 1 (0x8c2aa0), SoupSocket 1 (0x775190)
Host: www.google.com
Content-Type: application/x-www-form-urlencoded
Accept-Encoding: gzip, deflate
@@ -9,19 +9,19 @@
accountType=HOSTED%5FOR%5FGOOGLE&Email=libgdata%2Etest%40gmail%2Ecom&Passwd=gdata%2Dgdata&service=cl&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375107885
-< Soup-Debug: SoupMessage 1 (0x6d12c0)
+< Soup-Debug-Timestamp: 1375202659
+< Soup-Debug: SoupMessage 1 (0x8c2aa0)
 < Content-Type: text/plain
 < Cache-control: no-cache, no-store
 < Pragma: no-cache
 < Expires: Mon, 01-Jan-1990 00:00:00 GMT
-< Date: Mon, 29 Jul 2013 14:24:45 GMT
+< Date: Tue, 30 Jul 2013 16:44:19 GMT
 < X-Content-Type-Options: nosniff
 < X-XSS-Protection: 1; mode=block
-< Content-Length: 881
+< Content-Length: 947
 < Server: GSE
 < 
-< 
SID=DQAAAMwAAAD9rHT8bdmpTU7a5LMsfA65u0Fh_6QRM8DUsQJg-EXklmdoDGIUPR23EasVPqLlDdq5-h165wdCF1-yae7a9se27qpQWghp20n2A9MWTZvdXT5UirX3_OM-KK5xht4lTNyBfY6eys0ZKPeBp8JgeSDkKkRfnGgqUEyEfgFzl4k7fc41mELCJcuSpXt-VBj1tAFngGbm7K5AIphLfWHvciv5aNU_K4Al5bVgJ-bQVpG2UCF_EVfhAKuoaMm28cL0EJH-EBb_C9vEywIMUpsMmSKP
-< 
LSID=DQAAANAAAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvCXQQiHyfN4mK1PbqfHpTiFEH6sXqSUP12PbW1JMOGTevMpDhLVWyaMHswUip1j1eHNnJHFyDkHJ7gloLcr1N69MmjhE7H2iDBHjq3klaZsH21fTuoQ0Cx69v4mlRZJxZYGWlJdkXLErmqRH6ps5gLWA5lOP8Cl9brsBXmLmXaQqkPk8iw3kEEPnnQvbqecRLLrbfaLfr3OoqbLWlEUrxLP
-< 
Auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDThxDEBfooOF9UIr6fneXVrmcawxCW-EksN7D6c7CIdQBQhKJPUz9QqAGWZHfJ5rwn
+< 
SID=DQAAANMAAABni88bXxZ1ccsGiahuDBcUANdzR1_t9LLvGG9u1tftUaxTNn5uYrL7pK0SxO5N4YQTnQo3wWRMOvZ7WibZnqTrdbujl3auw3aR6GopooEdkIbl3AW-nzqLMVV5H2-lJyLAoDy0JI9LrTqMzfHK__wyjX1wLNw2SsOLHvxQNrJIcreZmjwhc1e9gf0pmit9hi-l1Le2elhYOA_hgrDJsaP7RPcWI9z43ChrwrRePGs98EWqsbPKbvnJ5hDaGoJenxPkVbmkDkygonaYAF8p49cJdMdf1K78PDRWneUi-EOhXw
+< 
LSID=DQAAANYAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NhfZPNsQA4-wCB9yNVSjD2OSfMCPhH3Xs8jODVeKSaxR9rNyoxz3445acEnNK_XNXQlUcw7p2bTZYV6ghIrJ8z45VlzXfBRUNNO9TPseJK9VrmxUIHmOkvNZZ10oK-3LJObEvrgvdyw_zTWrcDbxNXmow71hStFy7AnYhPQy7fu6OgbJrYjI6zWgrqRTE0CZvLi2-XO-6aXzxT9Oeu6vOZFxAAeL67CkRbJBrRmpdw9vNQ
+< 
Auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJqhwGTJiPfQy7n4GJvb7i8UOzHL636SKX_8vyXlmm4pzU7wrlPZz9XRazxavg3y4lNg0_BRb7j6kj60hIJBRQEg
   
diff --git a/gdata/tests/traces/calendar/authentication-async 
b/gdata/tests/traces/calendar/authentication-async
index 5b397af..160cbf1 100644
--- a/gdata/tests/traces/calendar/authentication-async
+++ b/gdata/tests/traces/calendar/authentication-async
@@ -1,6 +1,6 @@
POST /accounts/ClientLogin HTTP/1.1
-> Soup-Debug-Timestamp: 1375107890
-> Soup-Debug: SoupSession 1 (0x6594e0), SoupMessage 1 (0x7fffe003aac0), SoupSocket 1 (0x7fffe003b970)
+> Soup-Debug-Timestamp: 1375202668
+> Soup-Debug: SoupSession 1 (0x65a500), SoupMessage 1 (0x8c2e60), SoupSocket 1 (0x7756d0)
Host: www.google.com
Content-Type: application/x-www-form-urlencoded
Accept-Encoding: gzip, deflate
@@ -9,19 +9,19 @@
accountType=HOSTED%5FOR%5FGOOGLE&Email=libgdata%2Etest%40gmail%2Ecom&Passwd=gdata%2Dgdata&service=cl&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375107890
-< Soup-Debug: SoupMessage 1 (0x7fffe003aac0)
+< Soup-Debug-Timestamp: 1375202668
+< Soup-Debug: SoupMessage 1 (0x8c2e60)
 < Content-Type: text/plain
 < Cache-control: no-cache, no-store
 < Pragma: no-cache
 < Expires: Mon, 01-Jan-1990 00:00:00 GMT
-< Date: Mon, 29 Jul 2013 14:24:50 GMT
+< Date: Tue, 30 Jul 2013 16:44:28 GMT
 < X-Content-Type-Options: nosniff
 < X-XSS-Protection: 1; mode=block
-< Content-Length: 881
+< Content-Length: 947
 < Server: GSE
 < 
-< 
SID=DQAAAMwAAABsn98BbU27jZCcCCeEymkCmNyJSqZ-4Wuk8_uxyRXw8QCWlOefGIjB_yxtDeZbgBj1j6ZaQZffLJHa9XjuaCZ9Nb5dETrqsZcpE6fvLaSCdJdT003f0lE5iq3PphM0I90d9CjPVkkdr1bcHboMUO22wSp9e-0vO2_MXKD2MhYd0nH7_EsGbdj1rZjtXIComJjNB-1b9_pzEbakZBxbugZTKT9E3fvSm1T6VvJ7ETv1VTXFnZXGKObHmUiXJx3w1cRT4JwE23lZVUhl9NEOIT10
-< 
LSID=DQAAAM4AAADDTZiND9bnvAZa71emQRkMXS09xqJSYJZaogJWBk1aNzaE97M3gP-IUpsAQNHhppcjqs9B1AmxziU6e0Vcx2RskK7Zy5HkOyBd5Pj3pysc6J-BhIP8vPQLrzb2c7hnnoWPthpqnH5ndjNgiFz_X5eiJSvkMceGt2mXlw_yXluGyObm4SA-NiwUpl1IxV-9lz5InPZmex0gde1wAnC_Ta4QIeB51auhB7ehAs43V_vOOzlVZ2tMpoBEeOKzCXzYFRLr37-Ymj0ufYjSZAZhbSE7
-< 
Auth=DQAAAM4AAADDTZiND9bnvAZa71emQRkMXS09xqJSYJZaogJWBk1aNzaE97M3gP-IUpsAQNHhppf99Lpz_pavZJHMoCykhRQru-aJFMLb5ADERZWwWs5NT7Ky3BNLCY8w91jLzEr29nrai_HUuxm0FT0220tZuYRPJEVOI08_mvmY2fd5YrQxwW5L4bfAqtukmemYpGnpccXf9jI0-j_Xn0NiAK040NYjdfmnGBSMq8EZbRXXHtxZV-avl5sUOV3v4Q_QDt6tFe6KSivQkz-YVN2Y4Sar8T64
+< 
SID=DQAAANMAAAA5TPwiRzzfN-bEUkWGky14iBRMIYTVPyryEy482_49cZp1ss-tNw2ZZ7_OyHKlPRac6uitjFFR0s4XRoONU0jQDBf6TAOpyrgiF8FaPbpsJllZx3n4tqTalW9nqiu28NVJ9veQ14qHNYVZ1TWz314mqDO5vDE48epfPTZ8jTrOadJJE1MpG4kOgo2zz-rd2jAwIVhA83vC4zYDSIqQIaHooj-rbzKlxx1mItMieAV_haI52zFc4JsJZZN-V6bj1ENMfSkkfBc0gb5-KV9zXQoQmHmEFlCdildQVkKZJJ1j7w
+< 
LSID=DQAAANYAAACYBxfakfI_s1gA-VJMlyNjfNDHSGxLwpYVDPJdjuNBGwuiq5Zp5IaWMC9XqDqtDK4NfeJ_mNEzgKv1cjn35hR4waUtDj79p1xkEVGnJ8G7hNigazTmdRJPbNedibsDJJWIzio1dOd6RuRwN0TlsBZlIzXkEipGdqFoI8WFxhWDtzPnqikqZZT9ohdOsN0N9EeEk6l32W-XX-bZTR3StL_W6WE1JdpDtNAkb7wTn7aJ_sJ252nFd4e59ZUCylWsOYXmL9UhdxqF_hUE5MUfu6QyYpoh190x9vLWAkNZ9oRjrg
+< 
Auth=DQAAANUAAACYBxfakfI_s1gA-VJMlyNjfNDHSGxLwpYVDPJdjuNBGwuiq5Zp5IaWMC9XqDqtDK4C1iEFJRNexcHZKjGfnfGY-xd74hgOcQa1v4y7CEAhnsVFaU8IN5J--hCbBX_A_TF4GUT7f86c2FmMu-iijM5auD0HSiSRB9ukn-v5tNDo2b463botICaU9hqHiGSQIfwZXXOhxvAD2nYOZJkEH1FvPP_w7xZ3PxU1IZRIKrC8iw6alRzniO9E110PpJn2XGaC7ehk78awj0dkLsvMCqqhl4Ogg2qunG_wjAG4GmUlvA
   
diff --git a/gdata/tests/traces/calendar/authentication-async-cancellation 
b/gdata/tests/traces/calendar/authentication-async-cancellation
new file mode 100644
index 0000000..0dc51ca
--- /dev/null
+++ b/gdata/tests/traces/calendar/authentication-async-cancellation
@@ -0,0 +1,27 @@
+> POST /accounts/ClientLogin HTTP/1.1
+> Soup-Debug-Timestamp: 1375202668
+> Soup-Debug: SoupSession 1 (0x65a500), SoupMessage 1 (0x7fffe003f280), SoupSocket 1 (0x7fffe0040970)
+> Host: www.google.com
+> Content-Type: application/x-www-form-urlencoded
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> 
accountType=HOSTED%5FOR%5FGOOGLE&Email=libgdata%2Etest%40gmail%2Ecom&Passwd=gdata%2Dgdata&service=cl&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375202669
+< Soup-Debug: SoupMessage 1 (0x7fffe003f280)
+< Content-Type: text/plain
+< Cache-control: no-cache, no-store
+< Pragma: no-cache
+< Expires: Mon, 01-Jan-1990 00:00:00 GMT
+< Date: Tue, 30 Jul 2013 16:44:29 GMT
+< X-Content-Type-Options: nosniff
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 947
+< Server: GSE
+< 
+< 
SID=DQAAANMAAAAyO-iKtE02Q_l9mBV_VkGPtsaGLoeLeCugvUoYqPJNpnUTZUcaVUznR1vMC6IqZeRT3513ogVFRX3u5zGZ1rNCq-9rJOGx-XjUDpn0alcAlMk0V9H_g8YqDUlsqb6BUYGOFrRe0tiSlxzSjVbc4pkzR6N8aFtdMLkE0ZnLsr6C4kI5b7uQFzOFs8VEZVXszYKmA7aaUXwRzCVSGxpwJLP-xi7oEii9hvYl0fZxDh8K_Yp6lNRJ8KvwFxwXRFwXCtV0N-rpGrHCaovsB_EidZfyg_X7DpnQq13__JynSBLlUg
+< 
LSID=DQAAANUAAADuDg9XwUBJlDCpVKMT_ROpJmS6ipK7ZLORLq-LC_iPJ5iE3Ru7avVUsPrunH2vU6t5kifxaGQciIj8H52B_ELPh6TUQHT2UhlduAGPVodfknFlZCHd50U61o9IxIrLCMivD4m7QlYpfwNk7X5LdeHrcvtTWa2Pqr6KsCw1FW1UDpqdjCMp0oWDHgBQ0PpFk7Xbn-HjB9lljRAzaU2WfvC02jsm9Cuq8W0i3UZU8V_EhxHlbU5Fsq2BkRDu8w8VSxbzQU2nRsh1Nz1WWZN5QE2_CkRzAlr4ZnmMbkFXGT4Btg
+< 
Auth=DQAAANUAAADuDg9XwUBJlDCpVKMT_ROpJmS6ipK7ZLORLq-LC_iPJ5iE3Ru7avVUsPrunH2vU6tQqMVohDrg8kXN24jvLtl9JtZzaOoMrJnQ9gMpLPCuO4iHf-kD8Na8jgNVuSZxHs1zXJ1djtDif1R5v7KgMsAzyR-QTAtL4YSYNQvykgfOA3syU-3EvcOaLPMHVCcPe8XtDjb0fJD25IGynGAFQDU42bAOkb7Gw185GxiDtdABUaHJ9vWu4aIdG7v_5vL-D1e4r82O_UjfdGoIR-x7Qd_WhU9iAK09lDQCIAaQ1sj1FA
+  
diff --git a/gdata/tests/traces/calendar/batch b/gdata/tests/traces/calendar/batch
index 0c22152..ca64c0b 100644
--- a/gdata/tests/traces/calendar/batch
+++ b/gdata/tests/traces/calendar/batch
@@ -1,24 +1,24 @@
POST /calendar/feeds/default/private/full/batch HTTP/1.1
-> Soup-Debug-Timestamp: 1375107885
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 1 (0x6d14a0), SoupSocket 1 (0x8dea20)
+> Soup-Debug-Timestamp: 1375202660
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 1 (0x8c2c80), SoupSocket 1 (0x775250)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
Connection: Keep-Alive

-> <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' xmlns:app='http://www.w3.org/2007/app'><title type='text'>Batch 
operation feed</title><id>batch1</id><updated>2013-07-29T14:24:45Z</updated><entry><title type='text'>Fooish 
Bar</title><category term='http://schemas.google.com/g/2005#event' 
scheme='http://schemas.google.com/g/2005#kind'/><batch:id>1</batch:id><batch:operation 
type='insert'/><gCal:guestsCanModify value='false'/><gCal:guestsCanInviteOthers 
value='false'/><gCal:guestsCanSeeGuests value='false'/><gCal:anyoneCanAddSelf value='false'/></entry></feed>
+> <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' xmlns:app='http://www.w3.org/2007/app'><title type='text'>Batch 
operation feed</title><id>batch1</id><updated>2013-07-30T16:44:19Z</updated><entry><title type='text'>Fooish 
Bar</title><category term='http://schemas.google.com/g/2005#event' 
scheme='http://schemas.google.com/g/2005#kind'/><batch:id>1</batch:id><batch:operation 
type='insert'/><gCal:guestsCanModify value='false'/><gCal:guestsCanInviteOthers 
value='false'/><gCal:guestsCanSeeGuests value='false'/><gCal:anyoneCanAddSelf value='false'/></entry></feed>
   
 < HTTP/1.1 302 Moved Temporarily
-< Soup-Debug-Timestamp: 1375107885
-< Soup-Debug: SoupMessage 1 (0x6d14a0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXThTgckY3-hSb61OvnzXxSJ7d2jzDTq4SYJOcXEK19cfN8WmIspK2CGATjYnx3q1Fz9ZgntzaOCi00pQJhkctNT
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:24:46 GMT
-< Set-Cookie: S=calendar=3HsAclt2rEH3g7DEpDWTVg;Expires=Mon, 12-Aug-2013 00:48:12 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:24:45 GMT
-< Date: Mon, 29 Jul 2013 14:24:45 GMT
-< Location: 
https://www.google.com/calendar/feeds/default/private/full/batch?gsessionid=3HsAclt2rEH3g7DEpDWTVg
+< Soup-Debug-Timestamp: 1375202660
+< Soup-Debug: SoupMessage 1 (0x8c2c80)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_t4EurujSJEVz4Oz9mAIOytzvk2x5HxgdMhjgmIZQyEhJEVxBkGa9tYZB61Yy8JtAPaktxoTLVkhp854Pjz3Lu2nGX3VFkbf3hmep1Z77H5UUPxIsLyYKJ-XIqF26WY8xy6o6N8-w_azdQg_R57FuB6O-GUgGUKDr2aKE9iTWpO0XsB7-zCP0UEx7yuXEnbLb7XVAw5KqOV1FqKEA6grSKkAqUaQftC9ppmNnCTUl0XskgKlvQxIBg-580Pa1-4yjY5tacPmBQVR42znpOSUkcg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:44:21 GMT
+< Set-Cookie: S=calendar=4LvMt86R18ABPUk3arm6EQ;Expires=Tue, 13-Aug-2013 10:27:30 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:44:20 GMT
+< Date: Tue, 30 Jul 2013 16:44:20 GMT
+< Location: 
https://www.google.com/calendar/feeds/default/private/full/batch?gsessionid=4LvMt86R18ABPUk3arm6EQ
 < Content-Type: text/html; charset=UTF-8
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -33,31 +33,31 @@
 < </HEAD>
 < <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
 < <H1>Moved Temporarily</H1>
-< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/private/full/batch?gsessionid=3HsAclt2rEH3g7DEpDWTVg";>here</A>.
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/private/full/batch?gsessionid=4LvMt86R18ABPUk3arm6EQ";>here</A>.
 < </BODY>
 < </HTML>
   
-> POST /calendar/feeds/default/private/full/batch?gsessionid=3HsAclt2rEH3g7DEpDWTVg HTTP/1.1
-> Soup-Debug-Timestamp: 1375107885
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 1 (0x6d14a0), SoupSocket 2 (0x8deae0), restarted
+> POST /calendar/feeds/default/private/full/batch?gsessionid=4LvMt86R18ABPUk3arm6EQ HTTP/1.1
+> Soup-Debug-Timestamp: 1375202660
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 1 (0x8c2c80), SoupSocket 2 (0x775310), restarted
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
Content-Length: 740

-> <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' xmlns:app='http://www.w3.org/2007/app'><title type='text'>Batch 
operation feed</title><id>batch1</id><updated>2013-07-29T14:24:45Z</updated><entry><title type='text'>Fooish 
Bar</title><category term='http://schemas.google.com/g/2005#event' 
scheme='http://schemas.google.com/g/2005#kind'/><batch:id>1</batch:id><batch:operation 
type='insert'/><gCal:guestsCanModify value='false'/><gCal:guestsCanInviteOthers 
value='false'/><gCal:guestsCanSeeGuests value='false'/><gCal:anyoneCanAddSelf value='false'/></entry></feed>
+> <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' xmlns:app='http://www.w3.org/2007/app'><title type='text'>Batch 
operation feed</title><id>batch1</id><updated>2013-07-30T16:44:19Z</updated><entry><title type='text'>Fooish 
Bar</title><category term='http://schemas.google.com/g/2005#event' 
scheme='http://schemas.google.com/g/2005#kind'/><batch:id>1</batch:id><batch:operation 
type='insert'/><gCal:guestsCanModify value='false'/><gCal:guestsCanInviteOthers 
value='false'/><gCal:guestsCanSeeGuests value='false'/><gCal:anyoneCanAddSelf value='false'/></entry></feed>
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375107887
-< Soup-Debug: SoupMessage 1 (0x6d14a0)
-< Update-Client-Auth: 
DQAAANAAAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXQ13oqRh_2p87WcrWeAQnJZpM9mi1et5TBGe84GimS7yuU_utQqgxo_ARltmYbhyQQy5oR9U-3hGYR8T6bNTF75
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:24:46 GMT
-< Set-Cookie: S=calendar=ThCc8FQOIiaDKtlMSD8PFg;Expires=Wed, 07-Aug-2013 22:34:33 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:24:46 GMT
-< Date: Mon, 29 Jul 2013 14:24:46 GMT
+< Soup-Debug-Timestamp: 1375202663
+< Soup-Debug: SoupMessage 1 (0x8c2c80)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_q4NwI2V8UT-SSEMjiblkY8jTSCIGQJCo_ZFavemirrG0G2jzg3jjEVC3CQauPSZoNTFtDCw6Eu1-1S6nOyDK2J9zwLcpKLPHGuWk8fzL5JjKgN0Z0HbdhVtGaldMU2XCoc4_I0dsAZNFNzMl12pQ2IhlOpKYk_syrjXgbEIFWB07e6wSu6Mp1XswtWQL95nokCfWJkTHf4YGsR2zpy2736UplfLIVHDJLz7fiJzKG-5nUmoz2a5jdwopbkQ6flW44tTL7okPm_2Y6nqlPi74Mg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:44:22 GMT
+< Set-Cookie: S=calendar=ZkM_e8YXKtPZ2ge_4rCuLg;Expires=Sun, 11-Aug-2013 20:52:42 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:44:23 GMT
+< Date: Tue, 30 Jul 2013 16:44:23 GMT
 < Content-Type: application/atom+xml; charset=UTF-8; type=feed
 < GData-Version: 2.6
 < Cache-control: private, max-age=0
@@ -67,29 +67,29 @@
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:kind='calendar#eventFeed'><id>https://www.google.com/calendar/feeds/default/events/batch/1375107885947</id><updated>2013-07-29T14:24:46.927Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title 
type='text'>Batch operation feed</title><entry xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
gd:etag='&quot;EEoDRgRJeyp7JGA6WhNS&quot;' 
gd:kind='calendar#event'><id>http://www.google.com/calendar/feeds/default/events/omgelpvl4j9iuvhl15ben77pqk</id><published>2013-07-29T14:24:45.000Z</published><updated>2013-07-29T14:24:45.000Z</updated><app:edited>2013-07-29T14:24:45.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title>Fooish 
 Bar</title><content/><link rel='alternate' type='text/html' 
href='https://www.google.com/calendar/event?eid=b21nZWxwdmw0ajlpdXZobDE1YmVuNzdwcWsgbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ'
 title='alternate'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/omgelpvl4j9iuvhl15ben77pqk'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/omgelpvl4j9iuvhl15ben77pqk'/><author><name>GData
 Test</name><email>libgdata test googlemail com</email></author><gd:comments><gd:feedLink 
href='https://www.google.com/calendar/feeds/default/private/full/omgelpvl4j9iuvhl15ben77pqk/comments'/></gd:comments><gd:eventStatus
 value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='libgdata 
test googlemail com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='GData 
Test'/><gd:when endTime='2013-07-29T15:24:45.000+01:00' startTi
 me='2013-07-29T15:24:45.000+01:00'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf 
value='false'/><batch:id>1</batch:id><batch:operation type='insert'/><batch:status code='201' 
reason='Created'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanModify 
value='false'/><gCal:guestsCanSeeGuests value='false'/><gCal:sequence value='0'/><gCal:uid 
value='omgelpvl4j9iuvhl15ben77pqk google com'/></entry></feed>
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:kind='calendar#eventFeed'><id>https://www.google.com/calendar/feeds/default/events/batch/1375202661105</id><updated>2013-07-30T16:44:23.960Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title 
type='text'>Batch operation feed</title><entry xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
gd:etag='&quot;EEUCQgxHfyp7JGA6WhNS&quot;' 
gd:kind='calendar#event'><id>http://www.google.com/calendar/feeds/default/events/86gfb05as8mshg1642j3uajt4g</id><published>2013-07-30T16:44:21.000Z</published><updated>2013-07-30T16:44:21.000Z</updated><app:edited>2013-07-30T16:44:21.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title>Fooish 
 Bar</title><content/><link rel='alternate' type='text/html' 
href='https://www.google.com/calendar/event?eid=ODZnZmIwNWFzOG1zaGcxNjQyajN1YWp0NGcgbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ'
 title='alternate'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/86gfb05as8mshg1642j3uajt4g'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/86gfb05as8mshg1642j3uajt4g'/><author><name>GData
 Test</name><email>libgdata test googlemail com</email></author><gd:comments><gd:feedLink 
href='https://www.google.com/calendar/feeds/default/private/full/86gfb05as8mshg1642j3uajt4g/comments'/></gd:comments><gd:eventStatus
 value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='libgdata 
test googlemail com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='GData 
Test'/><gd:when endTime='2013-07-30T17:44:21.000+01:00' startTi
 me='2013-07-30T17:44:21.000+01:00'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf 
value='false'/><batch:id>1</batch:id><batch:operation type='insert'/><batch:status code='201' 
reason='Created'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanModify 
value='false'/><gCal:guestsCanSeeGuests value='false'/><gCal:sequence value='0'/><gCal:uid 
value='86gfb05as8mshg1642j3uajt4g google com'/></entry></feed>
   
POST /calendar/feeds/default/private/full/batch HTTP/1.1
-> Soup-Debug-Timestamp: 1375107887
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 2 (0x6d12c0), SoupSocket 3 (0x8dec60)
+> Soup-Debug-Timestamp: 1375202664
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 2 (0x8c2aa0), SoupSocket 3 (0x775490)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
Connection: Keep-Alive

-> <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' xmlns:app='http://www.w3.org/2007/app'><title type='text'>Batch 
operation feed</title><id>batch1</id><updated>2013-07-29T14:24:47Z</updated><entry><title type='text'>Batch 
operation 
query</title><id>http://www.google.com/calendar/feeds/default/events/omgelpvl4j9iuvhl15ben77pqk</id><updated>2013-07-29T14:24:47Z</updated><batch:id>2</batch:id><batch:operation
 type='query'/></entry><entry><title type='text'>Cow Lunch</title><category 
term='http://schemas.google.com/g/2005#event' 
scheme='http://schemas.google.com/g/2005#kind'/><batch:id>1</batch:id><batch:operation 
type='insert'/><gCal:guestsCanModify value='false'/><gCal:guestsCanInviteOthers 
value='false'/><gCal:guestsCanSeeGuests value='false'/><gCal:anyoneCanAddSelf value='false'/></entry></feed>
+> <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' xmlns:app='http://www.w3.org/2007/app'><title type='text'>Batch 
operation feed</title><id>batch1</id><updated>2013-07-30T16:44:23Z</updated><entry><title type='text'>Batch 
operation 
query</title><id>http://www.google.com/calendar/feeds/default/events/86gfb05as8mshg1642j3uajt4g</id><updated>2013-07-30T16:44:23Z</updated><batch:id>2</batch:id><batch:operation
 type='query'/></entry><entry><title type='text'>Cow Lunch</title><category 
term='http://schemas.google.com/g/2005#event' 
scheme='http://schemas.google.com/g/2005#kind'/><batch:id>1</batch:id><batch:operation 
type='insert'/><gCal:guestsCanModify value='false'/><gCal:guestsCanInviteOthers 
value='false'/><gCal:guestsCanSeeGuests value='false'/><gCal:anyoneCanAddSelf value='false'/></entry></feed>
   
 < HTTP/1.1 302 Moved Temporarily
-< Soup-Debug-Timestamp: 1375107887
-< Soup-Debug: SoupMessage 2 (0x6d12c0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXThTgckY3-hSb61OvnzXxSJ7d2jzDTq4SYJOcXEK19cfN8WmIspK2CGATjYnx3q1Fz9ZgntzaOCi00pQJhkctNT
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:24:48 GMT
-< Set-Cookie: S=calendar=CujX8p6FM3Qnlw7aQbGpug;Expires=Fri, 09-Aug-2013 14:01:17 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:24:47 GMT
-< Date: Mon, 29 Jul 2013 14:24:47 GMT
-< Location: 
https://www.google.com/calendar/feeds/default/private/full/batch?gsessionid=CujX8p6FM3Qnlw7aQbGpug
+< Soup-Debug-Timestamp: 1375202664
+< Soup-Debug: SoupMessage 2 (0x8c2aa0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_t4EurujSJEVz4Oz9mAIOytzvk2x5HxgdMhjgmIZQyEhJEVxBkGa9tYZB61Yy8JtAPaktxoTLVkhp854Pjz3Lu2nGX3VFkbf3hmep1Z77H5UUPxIsLyYKJ-XIqF26WY8xy6o6N8-w_azdQg_R57FuB6O-GUgGUKDr2aKE9iTWpO0XsB7-zCP0UEx7yuXEnbLb7XVAw5KqOV1FqKEA6grSKkAqUaQftC9ppmNnCTUl0XskgKlvQxIBg-580Pa1-4yjY5tacPmBQVR42znpOSUkcg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:44:25 GMT
+< Set-Cookie: S=calendar=AcLu8STuYTVBNjV7HtOtVA;Expires=Sat, 10-Aug-2013 03:16:01 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:44:24 GMT
+< Date: Tue, 30 Jul 2013 16:44:24 GMT
+< Location: 
https://www.google.com/calendar/feeds/default/private/full/batch?gsessionid=AcLu8STuYTVBNjV7HtOtVA
 < Content-Type: text/html; charset=UTF-8
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -104,31 +104,31 @@
 < </HEAD>
 < <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
 < <H1>Moved Temporarily</H1>
-< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/private/full/batch?gsessionid=CujX8p6FM3Qnlw7aQbGpug";>here</A>.
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/private/full/batch?gsessionid=AcLu8STuYTVBNjV7HtOtVA";>here</A>.
 < </BODY>
 < </HTML>
   
-> POST /calendar/feeds/default/private/full/batch?gsessionid=CujX8p6FM3Qnlw7aQbGpug HTTP/1.1
-> Soup-Debug-Timestamp: 1375107887
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 2 (0x6d12c0), SoupSocket 4 (0x8ded20), restarted
+> POST /calendar/feeds/default/private/full/batch?gsessionid=AcLu8STuYTVBNjV7HtOtVA HTTP/1.1
+> Soup-Debug-Timestamp: 1375202664
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 2 (0x8c2aa0), SoupSocket 4 (0x775550), restarted
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
Content-Length: 981

-> <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' xmlns:app='http://www.w3.org/2007/app'><title type='text'>Batch 
operation feed</title><id>batch1</id><updated>2013-07-29T14:24:47Z</updated><entry><title type='text'>Batch 
operation 
query</title><id>http://www.google.com/calendar/feeds/default/events/omgelpvl4j9iuvhl15ben77pqk</id><updated>2013-07-29T14:24:47Z</updated><batch:id>2</batch:id><batch:operation
 type='query'/></entry><entry><title type='text'>Cow Lunch</title><category 
term='http://schemas.google.com/g/2005#event' 
scheme='http://schemas.google.com/g/2005#kind'/><batch:id>1</batch:id><batch:operation 
type='insert'/><gCal:guestsCanModify value='false'/><gCal:guestsCanInviteOthers 
value='false'/><gCal:guestsCanSeeGuests value='false'/><gCal:anyoneCanAddSelf value='false'/></entry></feed>
+> <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' xmlns:app='http://www.w3.org/2007/app'><title type='text'>Batch 
operation feed</title><id>batch1</id><updated>2013-07-30T16:44:23Z</updated><entry><title type='text'>Batch 
operation 
query</title><id>http://www.google.com/calendar/feeds/default/events/86gfb05as8mshg1642j3uajt4g</id><updated>2013-07-30T16:44:23Z</updated><batch:id>2</batch:id><batch:operation
 type='query'/></entry><entry><title type='text'>Cow Lunch</title><category 
term='http://schemas.google.com/g/2005#event' 
scheme='http://schemas.google.com/g/2005#kind'/><batch:id>1</batch:id><batch:operation 
type='insert'/><gCal:guestsCanModify value='false'/><gCal:guestsCanInviteOthers 
value='false'/><gCal:guestsCanSeeGuests value='false'/><gCal:anyoneCanAddSelf value='false'/></entry></feed>
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375107888
-< Soup-Debug: SoupMessage 2 (0x6d12c0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-ODYysS96Taaw1NaIYtJAAHEXCZ_GMPV8cwrWmi_-pskMkzDa8yS5h3Lx6BUX8K1OQLMPBV7rpZGHtUa1jYE1jA_4X05rZ800eKz2vNaGdZYoiYJwGnkqCe72OBS-ReHTEtvQtr7VG9ZYkAslaj0Tffvz8pB9ItwBfiM3-4oLSkIEFXx8_eyUlfeNChSfSAvSSqTyG58No5P6HZMRKSJtwsyLwtxAl4BhBMfGX_Uh_z0XCyGMW8beXiNXZ4h5XkwP
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:24:48 GMT
-< Set-Cookie: S=calendar=K-m2CP3pmitK3c--keFR5A;Expires=Sat, 10-Aug-2013 02:10:29 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:24:48 GMT
-< Date: Mon, 29 Jul 2013 14:24:48 GMT
+< Soup-Debug-Timestamp: 1375202666
+< Soup-Debug: SoupMessage 2 (0x8c2aa0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_x9DCxs6Yn1ShR7x5wx1k6e37TbqaZyvZnHbBDD5MjDqIwu2doXjOCD97mfXE8YE20iZQLD52PYbtpDGgujgmHXXGW1wlvqMs94qpgxdE8eYecbfbso9UjfaO5uqfvsRXIhKhe7zV2m0bacHn0JcyH7mkYYXHxHv7XZ_tjZftH-i5SVfC5OZaKOQXxynRfd_Yz5PzuJngGrHUxv5bViZFI3gQCqJikX_t9TXaydAiNvFoCzIgXcLmw11rsBONKvKvzka6NqtM8xqoAdhWs62jAQ
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:44:26 GMT
+< Set-Cookie: S=calendar=rxTVcnHI7NG71oHtESDSOg;Expires=Mon, 12-Aug-2013 19:58:12 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:44:26 GMT
+< Date: Tue, 30 Jul 2013 16:44:26 GMT
 < Content-Type: application/atom+xml; charset=UTF-8; type=feed
 < GData-Version: 2.6
 < Cache-control: private, max-age=0
@@ -138,29 +138,29 @@
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:kind='calendar#eventFeed'><id>https://www.google.com/calendar/feeds/default/events/batch/1375107887376</id><updated>2013-07-29T14:24:48.719Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title 
type='text'>Batch operation feed</title><entry xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
gd:etag='&quot;EEoDRgRJeyp7JGA6WhNS&quot;' 
gd:kind='calendar#event'><id>http://www.google.com/calendar/feeds/default/events/omgelpvl4j9iuvhl15ben77pqk</id><published>2013-07-29T14:24:45.000Z</published><updated>2013-07-29T14:24:45.000Z</updated><app:edited>2013-07-29T14:24:45.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title>Fooish 
 Bar</title><content/><link rel='alternate' type='text/html' 
href='https://www.google.com/calendar/event?eid=b21nZWxwdmw0ajlpdXZobDE1YmVuNzdwcWsgbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ'
 title='alternate'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/omgelpvl4j9iuvhl15ben77pqk'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/omgelpvl4j9iuvhl15ben77pqk'/><author><name>GData
 Test</name><email>libgdata test googlemail com</email></author><gd:comments><gd:feedLink 
href='https://www.google.com/calendar/feeds/default/private/full/omgelpvl4j9iuvhl15ben77pqk/comments'/></gd:comments><gd:eventStatus
 value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='libgdata 
test googlemail com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='GData 
Test'/><gd:when endTime='2013-07-29T15:24:45.000+01:00' startTi
 me='2013-07-29T15:24:45.000+01:00'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf 
value='false'/><batch:id>2</batch:id><batch:operation type='query'/><batch:status code='200' 
reason='Success'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanModify 
value='false'/><gCal:guestsCanSeeGuests value='false'/><gCal:sequence value='0'/><gCal:uid 
value='omgelpvl4j9iuvhl15ben77pqk google com'/></entry><entry 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:app='http://www.w3.org/2007/app' 
xmlns:gCal='http://schemas.google.com/gCal/2005' gd:etag='&quot;EEoDRgRJeSp7JGA6WhNS&quot;' 
gd:kind='calendar#event'><id>http://www.google.com/calendar/feeds/default/events/a0q500sd2r1vjodbdulbeilupo</id><published>2013-07-29T14:24:47.000Z</published><updated>2013-07-29T14:24:47.000Z</updated><app:edited>2013-07-29T14:24:47.000Z</app:edited><category
 scheme='http:/
 /schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title>Cow 
Lunch</title><content/><link rel='alternate' type='text/html' 
href='https://www.google.com/calendar/event?eid=YTBxNTAwc2QycjF2am9kYmR1bGJlaWx1cG8gbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ'
 title='alternate'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/a0q500sd2r1vjodbdulbeilupo'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/a0q500sd2r1vjodbdulbeilupo'/><author><name>GData
 Test</name><email>libgdata test googlemail com</email></author><gd:comments><gd:feedLink 
href='https://www.google.com/calendar/feeds/default/private/full/a0q500sd2r1vjodbdulbeilupo/comments'/></gd:comments><gd:eventStatus
 value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='libgdata 
test googlemail com' rel='http://schemas.google.com/g/2005#event.
 organizer' valueString='GData Test'/><gd:when endTime='2013-07-29T15:24:47.000+01:00' 
startTime='2013-07-29T15:24:47.000+01:00'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf 
value='false'/><batch:id>1</batch:id><batch:operation type='insert'/><batch:status code='201' 
reason='Created'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanModify 
value='false'/><gCal:guestsCanSeeGuests value='false'/><gCal:sequence value='0'/><gCal:uid 
value='a0q500sd2r1vjodbdulbeilupo google com'/></entry></feed>
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:kind='calendar#eventFeed'><id>https://www.google.com/calendar/feeds/default/events/batch/1375202665066</id><updated>2013-07-30T16:44:26.255Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title 
type='text'>Batch operation feed</title><entry xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
gd:etag='&quot;EEUCQgxHfyp7JGA6WhNS&quot;' 
gd:kind='calendar#event'><id>http://www.google.com/calendar/feeds/default/events/86gfb05as8mshg1642j3uajt4g</id><published>2013-07-30T16:44:21.000Z</published><updated>2013-07-30T16:44:21.000Z</updated><app:edited>2013-07-30T16:44:21.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title>Fooish 
 Bar</title><content/><link rel='alternate' type='text/html' 
href='https://www.google.com/calendar/event?eid=ODZnZmIwNWFzOG1zaGcxNjQyajN1YWp0NGcgbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ'
 title='alternate'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/86gfb05as8mshg1642j3uajt4g'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/86gfb05as8mshg1642j3uajt4g'/><author><name>GData
 Test</name><email>libgdata test googlemail com</email></author><gd:comments><gd:feedLink 
href='https://www.google.com/calendar/feeds/default/private/full/86gfb05as8mshg1642j3uajt4g/comments'/></gd:comments><gd:eventStatus
 value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='libgdata 
test googlemail com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='GData 
Test'/><gd:when endTime='2013-07-30T17:44:21.000+01:00' startTi
 me='2013-07-30T17:44:21.000+01:00'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf 
value='false'/><batch:id>2</batch:id><batch:operation type='query'/><batch:status code='200' 
reason='Success'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanModify 
value='false'/><gCal:guestsCanSeeGuests value='false'/><gCal:sequence value='0'/><gCal:uid 
value='86gfb05as8mshg1642j3uajt4g google com'/></entry><entry 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:app='http://www.w3.org/2007/app' 
xmlns:gCal='http://schemas.google.com/gCal/2005' gd:etag='&quot;EEUCQgxHeyp7JGA6WhNS&quot;' 
gd:kind='calendar#event'><id>http://www.google.com/calendar/feeds/default/events/g6pl8ihvj81ak1gak2n91m4468</id><published>2013-07-30T16:44:25.000Z</published><updated>2013-07-30T16:44:25.000Z</updated><app:edited>2013-07-30T16:44:25.000Z</app:edited><category
 scheme='http:/
 /schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title>Cow 
Lunch</title><content/><link rel='alternate' type='text/html' 
href='https://www.google.com/calendar/event?eid=ZzZwbDhpaHZqODFhazFnYWsybjkxbTQ0NjggbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ'
 title='alternate'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/g6pl8ihvj81ak1gak2n91m4468'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/g6pl8ihvj81ak1gak2n91m4468'/><author><name>GData
 Test</name><email>libgdata test googlemail com</email></author><gd:comments><gd:feedLink 
href='https://www.google.com/calendar/feeds/default/private/full/g6pl8ihvj81ak1gak2n91m4468/comments'/></gd:comments><gd:eventStatus
 value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='libgdata 
test googlemail com' rel='http://schemas.google.com/g/2005#event.
 organizer' valueString='GData Test'/><gd:when endTime='2013-07-30T17:44:25.000+01:00' 
startTime='2013-07-30T17:44:25.000+01:00'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf 
value='false'/><batch:id>1</batch:id><batch:operation type='insert'/><batch:status code='201' 
reason='Created'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanModify 
value='false'/><gCal:guestsCanSeeGuests value='false'/><gCal:sequence value='0'/><gCal:uid 
value='g6pl8ihvj81ak1gak2n91m4468 google com'/></entry></feed>
   
POST /calendar/feeds/default/private/full/batch HTTP/1.1
-> Soup-Debug-Timestamp: 1375107888
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 3 (0x6d11d0), SoupSocket 5 (0x8dede0)
+> Soup-Debug-Timestamp: 1375202666
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 3 (0x8c29b0), SoupSocket 5 (0x775610)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
Connection: Keep-Alive

-> <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' xmlns:app='http://www.w3.org/2007/app'><title type='text'>Batch 
operation feed</title><id>batch1</id><updated>2013-07-29T14:24:48Z</updated><entry 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;EEoDRgRJeSp7JGA6WhNS&quot;'><title 
type='text'>Toby</title><id>http://www.google.com/calendar/feeds/default/events/a0q500sd2r1vjodbdulbeilupo</id><updated>2013-07-29T14:24:47Z</updated><published>2013-07-29T14:24:47Z</published><category
 term='http://schemas.google.com/g/2005#event' scheme='http://schemas.google.com/g/2005#kind'/><link 
href='https://www.google.com/calendar/event?eid=YTBxNTAwc2QycjF2am9kYmR1bGJlaW
 x1cG8gbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ' title='alternate' 
rel='http://www.iana.org/assignments/relation/alternate' type='text/html'/><link 
href='https://www.google.com/calendar/feeds/default/private/full/a0q500sd2r1vjodbdulbeilupo' 
rel='http://www.iana.org/assignments/relation/self' type='application/atom+xml'/><link 
href='https://www.google.com/calendar/feeds/default/private/full/a0q500sd2r1vjodbdulbeilupo' 
rel='http://www.iana.org/assignments/relation/edit' type='application/atom+xml'/><author><name>GData 
Test</name><email>libgdata test googlemail com</email></author><batch:id>3</batch:id><batch:operation 
type='update'/><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gCal:uid value='a0q500sd2r1vjodbdulbeilupo google 
com'/><gCal:guestsCanModify value='false'/><gCal:guestsCanInviteOthers value='false'/
<gCal:guestsCanSeeGuests value='false'/><gCal:anyoneCanAddSelf value='false'/><gd:when 
startTime='2013-07-29T14:24:47Z' endTime='2013-07-29T14:24:47Z'/><gd:who email='libgdata test googlemail 
com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='GData Test'/><gd:where 
valueString=''/><gd:comments><gd:feedLink 
href="https://www.google.com/calendar/feeds/default/private/full/a0q500sd2r1vjodbdulbeilupo/comments"/></gd:comments></entry><entry><title
type='text'></title><id>foobar</id><category term='http://schemas.google.com/g/2005#event' 
scheme='http://schemas.google.com/g/2005#kind'/><batch:id>2</batch:id><batch:operation 
type='delete'/><gCal:guestsCanModify value='false'/><gCal:guestsCanInviteOthers 
value='false'/><gCal:guestsCanSeeGuests value='false'/><gCal:anyoneCanAddSelf value='false'/></entry><entry 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gd='htt
 p://schemas.google.com/g/2005' gd:etag='&quot;EEoDRgRJeyp7JGA6WhNS&quot;'><title type='text'>Fooish 
Bar</title><id>http://www.google.com/calendar/feeds/default/events/omgelpvl4j9iuvhl15ben77pqk</id><updated>2013-07-29T14:24:45Z</updated><published>2013-07-29T14:24:45Z</published><category
 term='http://schemas.google.com/g/2005#event' scheme='http://schemas.google.com/g/2005#kind'/><link 
href='https://www.google.com/calendar/event?eid=b21nZWxwdmw0ajlpdXZobDE1YmVuNzdwcWsgbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ'
 title='alternate' rel='http://www.iana.org/assignments/relation/alternate' type='text/html'/><link 
href='https://www.google.com/calendar/feeds/default/private/full/omgelpvl4j9iuvhl15ben77pqk' 
rel='http://www.iana.org/assignments/relation/self' type='application/atom+xml'/><link 
href='https://www.google.com/calendar/feeds/default/private/full/omgelpvl4j9iuvhl15ben77pqk' 
rel='http://www.iana.org/assignments/relation/edit' type='application/atom+xml'/><author><name>GData Te
 st</name><email>libgdata test googlemail com</email></author><batch:id>1</batch:id><batch:operation 
type='delete'/><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gCal:uid value='omgelpvl4j9iuvhl15ben77pqk google 
com'/><gCal:guestsCanModify value='false'/><gCal:guestsCanInviteOthers 
value='false'/><gCal:guestsCanSeeGuests value='false'/><gCal:anyoneCanAddSelf value='false'/><gd:when 
startTime='2013-07-29T14:24:45Z' endTime='2013-07-29T14:24:45Z'/><gd:who email='libgdata test googlemail com' 
rel='http://schemas.google.com/g/2005#event.organizer' valueString='GData Test'/><gd:where 
valueString=''/><gd:comments><gd:feedLink 
href="https://www.google.com/calendar/feeds/default/private/full/omgelpvl4j9iuvhl15ben77pqk/comments"/></gd:comments></entry></feed>
+> <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' xmlns:app='http://www.w3.org/2007/app'><title type='text'>Batch 
operation feed</title><id>batch1</id><updated>2013-07-30T16:44:26Z</updated><entry 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;EEUCQgxHeyp7JGA6WhNS&quot;'><title 
type='text'>Toby</title><id>http://www.google.com/calendar/feeds/default/events/g6pl8ihvj81ak1gak2n91m4468</id><updated>2013-07-30T16:44:25Z</updated><published>2013-07-30T16:44:25Z</published><category
 term='http://schemas.google.com/g/2005#event' scheme='http://schemas.google.com/g/2005#kind'/><link 
href='https://www.google.com/calendar/event?eid=ZzZwbDhpaHZqODFhazFnYWsybjkxbT
 Q0NjggbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ' title='alternate' 
rel='http://www.iana.org/assignments/relation/alternate' type='text/html'/><link 
href='https://www.google.com/calendar/feeds/default/private/full/g6pl8ihvj81ak1gak2n91m4468' 
rel='http://www.iana.org/assignments/relation/self' type='application/atom+xml'/><link 
href='https://www.google.com/calendar/feeds/default/private/full/g6pl8ihvj81ak1gak2n91m4468' 
rel='http://www.iana.org/assignments/relation/edit' type='application/atom+xml'/><author><name>GData 
Test</name><email>libgdata test googlemail com</email></author><batch:id>3</batch:id><batch:operation 
type='update'/><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gCal:uid value='g6pl8ihvj81ak1gak2n91m4468 google 
com'/><gCal:guestsCanModify value='false'/><gCal:guestsCanInviteOthers value='false'/
<gCal:guestsCanSeeGuests value='false'/><gCal:anyoneCanAddSelf value='false'/><gd:when 
startTime='2013-07-30T16:44:25Z' endTime='2013-07-30T16:44:25Z'/><gd:who email='libgdata test googlemail 
com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='GData Test'/><gd:where 
valueString=''/><gd:comments><gd:feedLink 
href="https://www.google.com/calendar/feeds/default/private/full/g6pl8ihvj81ak1gak2n91m4468/comments"/></gd:comments></entry><entry><title
type='text'></title><id>foobar</id><category term='http://schemas.google.com/g/2005#event' 
scheme='http://schemas.google.com/g/2005#kind'/><batch:id>2</batch:id><batch:operation 
type='delete'/><gCal:guestsCanModify value='false'/><gCal:guestsCanInviteOthers 
value='false'/><gCal:guestsCanSeeGuests value='false'/><gCal:anyoneCanAddSelf value='false'/></entry><entry 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gd='htt
 p://schemas.google.com/g/2005' gd:etag='&quot;EEUCQgxHfyp7JGA6WhNS&quot;'><title type='text'>Fooish 
Bar</title><id>http://www.google.com/calendar/feeds/default/events/86gfb05as8mshg1642j3uajt4g</id><updated>2013-07-30T16:44:21Z</updated><published>2013-07-30T16:44:21Z</published><category
 term='http://schemas.google.com/g/2005#event' scheme='http://schemas.google.com/g/2005#kind'/><link 
href='https://www.google.com/calendar/event?eid=ODZnZmIwNWFzOG1zaGcxNjQyajN1YWp0NGcgbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ'
 title='alternate' rel='http://www.iana.org/assignments/relation/alternate' type='text/html'/><link 
href='https://www.google.com/calendar/feeds/default/private/full/86gfb05as8mshg1642j3uajt4g' 
rel='http://www.iana.org/assignments/relation/self' type='application/atom+xml'/><link 
href='https://www.google.com/calendar/feeds/default/private/full/86gfb05as8mshg1642j3uajt4g' 
rel='http://www.iana.org/assignments/relation/edit' type='application/atom+xml'/><author><name>GData Te
 st</name><email>libgdata test googlemail com</email></author><batch:id>1</batch:id><batch:operation 
type='delete'/><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gCal:uid value='86gfb05as8mshg1642j3uajt4g google 
com'/><gCal:guestsCanModify value='false'/><gCal:guestsCanInviteOthers 
value='false'/><gCal:guestsCanSeeGuests value='false'/><gCal:anyoneCanAddSelf value='false'/><gd:when 
startTime='2013-07-30T16:44:21Z' endTime='2013-07-30T16:44:21Z'/><gd:who email='libgdata test googlemail com' 
rel='http://schemas.google.com/g/2005#event.organizer' valueString='GData Test'/><gd:where 
valueString=''/><gd:comments><gd:feedLink 
href="https://www.google.com/calendar/feeds/default/private/full/86gfb05as8mshg1642j3uajt4g/comments"/></gd:comments></entry></feed>
   
 < HTTP/1.1 302 Moved Temporarily
-< Soup-Debug-Timestamp: 1375107888
-< Soup-Debug: SoupMessage 3 (0x6d11d0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXThTgckY3-hSb61OvnzXxSJ7d2jzDTq4SYJOcXEK19cfN8WmIspK2CGATjYnx3q1Fz9ZgntzaOCi00pQJhkctNT
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:24:49 GMT
-< Set-Cookie: S=calendar=M5nBPwbGlSMIv_wYfi2Q1g;Expires=Mon, 12-Aug-2013 04:31:46 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:24:48 GMT
-< Date: Mon, 29 Jul 2013 14:24:48 GMT
-< Location: 
https://www.google.com/calendar/feeds/default/private/full/batch?gsessionid=M5nBPwbGlSMIv_wYfi2Q1g
+< Soup-Debug-Timestamp: 1375202666
+< Soup-Debug: SoupMessage 3 (0x8c29b0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_t4EurujSJEVz4Oz9mAIOytzvk2x5HxgdMhjgmIZQyEhJEVxBkGa9tYZB61Yy8JtAPaktxoTLVkhp854Pjz3Lu2nGX3VFkbf3hmep1Z77H5UUPxIsLyYKJ-XIqF26WY8xy6o6N8-w_azdQg_R57FuB6O-GUgGUKDr2aKE9iTWpO0XsB7-zCP0UEx7yuXEnbLb7XVAw5KqOV1FqKEA6grSKkAqUaQftC9ppmNnCTUl0XskgKlvQxIBg-580Pa1-4yjY5tacPmBQVR42znpOSUkcg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:44:27 GMT
+< Set-Cookie: S=calendar=eelCWQs_PZQYCrsXUvx-XA;Expires=Tue, 13-Aug-2013 12:40:55 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:44:26 GMT
+< Date: Tue, 30 Jul 2013 16:44:26 GMT
+< Location: 
https://www.google.com/calendar/feeds/default/private/full/batch?gsessionid=eelCWQs_PZQYCrsXUvx-XA
 < Content-Type: text/html; charset=UTF-8
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -175,31 +175,31 @@
 < </HEAD>
 < <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
 < <H1>Moved Temporarily</H1>
-< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/private/full/batch?gsessionid=M5nBPwbGlSMIv_wYfi2Q1g";>here</A>.
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/private/full/batch?gsessionid=eelCWQs_PZQYCrsXUvx-XA";>here</A>.
 < </BODY>
 < </HTML>
   
-> POST /calendar/feeds/default/private/full/batch?gsessionid=M5nBPwbGlSMIv_wYfi2Q1g HTTP/1.1
-> Soup-Debug-Timestamp: 1375107889
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 3 (0x6d11d0), SoupSocket 6 (0x8dec60), restarted
+> POST /calendar/feeds/default/private/full/batch?gsessionid=eelCWQs_PZQYCrsXUvx-XA HTTP/1.1
+> Soup-Debug-Timestamp: 1375202666
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 3 (0x8c29b0), SoupSocket 6 (0x775550), restarted
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
Content-Length: 4885

-> <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' xmlns:app='http://www.w3.org/2007/app'><title type='text'>Batch 
operation feed</title><id>batch1</id><updated>2013-07-29T14:24:48Z</updated><entry 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;EEoDRgRJeSp7JGA6WhNS&quot;'><title 
type='text'>Toby</title><id>http://www.google.com/calendar/feeds/default/events/a0q500sd2r1vjodbdulbeilupo</id><updated>2013-07-29T14:24:47Z</updated><published>2013-07-29T14:24:47Z</published><category
 term='http://schemas.google.com/g/2005#event' scheme='http://schemas.google.com/g/2005#kind'/><link 
href='https://www.google.com/calendar/event?eid=YTBxNTAwc2QycjF2am9kYmR1bGJlaW
 x1cG8gbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ' title='alternate' 
rel='http://www.iana.org/assignments/relation/alternate' type='text/html'/><link 
href='https://www.google.com/calendar/feeds/default/private/full/a0q500sd2r1vjodbdulbeilupo' 
rel='http://www.iana.org/assignments/relation/self' type='application/atom+xml'/><link 
href='https://www.google.com/calendar/feeds/default/private/full/a0q500sd2r1vjodbdulbeilupo' 
rel='http://www.iana.org/assignments/relation/edit' type='application/atom+xml'/><author><name>GData 
Test</name><email>libgdata test googlemail com</email></author><batch:id>3</batch:id><batch:operation 
type='update'/><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gCal:uid value='a0q500sd2r1vjodbdulbeilupo google 
com'/><gCal:guestsCanModify value='false'/><gCal:guestsCanInviteOthers value='false'/
<gCal:guestsCanSeeGuests value='false'/><gCal:anyoneCanAddSelf value='false'/><gd:when 
startTime='2013-07-29T14:24:47Z' endTime='2013-07-29T14:24:47Z'/><gd:who email='libgdata test googlemail 
com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='GData Test'/><gd:where 
valueString=''/><gd:comments><gd:feedLink 
href="https://www.google.com/calendar/feeds/default/private/full/a0q500sd2r1vjodbdulbeilupo/comments"/></gd:comments></entry><entry><title
type='text'></title><id>foobar</id><category term='http://schemas.google.com/g/2005#event' 
scheme='http://schemas.google.com/g/2005#kind'/><batch:id>2</batch:id><batch:operation 
type='delete'/><gCal:guestsCanModify value='false'/><gCal:guestsCanInviteOthers 
value='false'/><gCal:guestsCanSeeGuests value='false'/><gCal:anyoneCanAddSelf value='false'/></entry><entry 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gd='htt
 p://schemas.google.com/g/2005' gd:etag='&quot;EEoDRgRJeyp7JGA6WhNS&quot;'><title type='text'>Fooish 
Bar</title><id>http://www.google.com/calendar/feeds/default/events/omgelpvl4j9iuvhl15ben77pqk</id><updated>2013-07-29T14:24:45Z</updated><published>2013-07-29T14:24:45Z</published><category
 term='http://schemas.google.com/g/2005#event' scheme='http://schemas.google.com/g/2005#kind'/><link 
href='https://www.google.com/calendar/event?eid=b21nZWxwdmw0ajlpdXZobDE1YmVuNzdwcWsgbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ'
 title='alternate' rel='http://www.iana.org/assignments/relation/alternate' type='text/html'/><link 
href='https://www.google.com/calendar/feeds/default/private/full/omgelpvl4j9iuvhl15ben77pqk' 
rel='http://www.iana.org/assignments/relation/self' type='application/atom+xml'/><link 
href='https://www.google.com/calendar/feeds/default/private/full/omgelpvl4j9iuvhl15ben77pqk' 
rel='http://www.iana.org/assignments/relation/edit' type='application/atom+xml'/><author><name>GData Te
 st</name><email>libgdata test googlemail com</email></author><batch:id>1</batch:id><batch:operation 
type='delete'/><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gCal:uid value='omgelpvl4j9iuvhl15ben77pqk google 
com'/><gCal:guestsCanModify value='false'/><gCal:guestsCanInviteOthers 
value='false'/><gCal:guestsCanSeeGuests value='false'/><gCal:anyoneCanAddSelf value='false'/><gd:when 
startTime='2013-07-29T14:24:45Z' endTime='2013-07-29T14:24:45Z'/><gd:who email='libgdata test googlemail com' 
rel='http://schemas.google.com/g/2005#event.organizer' valueString='GData Test'/><gd:where 
valueString=''/><gd:comments><gd:feedLink 
href="https://www.google.com/calendar/feeds/default/private/full/omgelpvl4j9iuvhl15ben77pqk/comments"/></gd:comments></entry></feed>
+> <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' xmlns:app='http://www.w3.org/2007/app'><title type='text'>Batch 
operation feed</title><id>batch1</id><updated>2013-07-30T16:44:26Z</updated><entry 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;EEUCQgxHeyp7JGA6WhNS&quot;'><title 
type='text'>Toby</title><id>http://www.google.com/calendar/feeds/default/events/g6pl8ihvj81ak1gak2n91m4468</id><updated>2013-07-30T16:44:25Z</updated><published>2013-07-30T16:44:25Z</published><category
 term='http://schemas.google.com/g/2005#event' scheme='http://schemas.google.com/g/2005#kind'/><link 
href='https://www.google.com/calendar/event?eid=ZzZwbDhpaHZqODFhazFnYWsybjkxbT
 Q0NjggbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ' title='alternate' 
rel='http://www.iana.org/assignments/relation/alternate' type='text/html'/><link 
href='https://www.google.com/calendar/feeds/default/private/full/g6pl8ihvj81ak1gak2n91m4468' 
rel='http://www.iana.org/assignments/relation/self' type='application/atom+xml'/><link 
href='https://www.google.com/calendar/feeds/default/private/full/g6pl8ihvj81ak1gak2n91m4468' 
rel='http://www.iana.org/assignments/relation/edit' type='application/atom+xml'/><author><name>GData 
Test</name><email>libgdata test googlemail com</email></author><batch:id>3</batch:id><batch:operation 
type='update'/><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gCal:uid value='g6pl8ihvj81ak1gak2n91m4468 google 
com'/><gCal:guestsCanModify value='false'/><gCal:guestsCanInviteOthers value='false'/
<gCal:guestsCanSeeGuests value='false'/><gCal:anyoneCanAddSelf value='false'/><gd:when 
startTime='2013-07-30T16:44:25Z' endTime='2013-07-30T16:44:25Z'/><gd:who email='libgdata test googlemail 
com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='GData Test'/><gd:where 
valueString=''/><gd:comments><gd:feedLink 
href="https://www.google.com/calendar/feeds/default/private/full/g6pl8ihvj81ak1gak2n91m4468/comments"/></gd:comments></entry><entry><title
type='text'></title><id>foobar</id><category term='http://schemas.google.com/g/2005#event' 
scheme='http://schemas.google.com/g/2005#kind'/><batch:id>2</batch:id><batch:operation 
type='delete'/><gCal:guestsCanModify value='false'/><gCal:guestsCanInviteOthers 
value='false'/><gCal:guestsCanSeeGuests value='false'/><gCal:anyoneCanAddSelf value='false'/></entry><entry 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gd='htt
 p://schemas.google.com/g/2005' gd:etag='&quot;EEUCQgxHfyp7JGA6WhNS&quot;'><title type='text'>Fooish 
Bar</title><id>http://www.google.com/calendar/feeds/default/events/86gfb05as8mshg1642j3uajt4g</id><updated>2013-07-30T16:44:21Z</updated><published>2013-07-30T16:44:21Z</published><category
 term='http://schemas.google.com/g/2005#event' scheme='http://schemas.google.com/g/2005#kind'/><link 
href='https://www.google.com/calendar/event?eid=ODZnZmIwNWFzOG1zaGcxNjQyajN1YWp0NGcgbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ'
 title='alternate' rel='http://www.iana.org/assignments/relation/alternate' type='text/html'/><link 
href='https://www.google.com/calendar/feeds/default/private/full/86gfb05as8mshg1642j3uajt4g' 
rel='http://www.iana.org/assignments/relation/self' type='application/atom+xml'/><link 
href='https://www.google.com/calendar/feeds/default/private/full/86gfb05as8mshg1642j3uajt4g' 
rel='http://www.iana.org/assignments/relation/edit' type='application/atom+xml'/><author><name>GData Te
 st</name><email>libgdata test googlemail com</email></author><batch:id>1</batch:id><batch:operation 
type='delete'/><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gCal:uid value='86gfb05as8mshg1642j3uajt4g google 
com'/><gCal:guestsCanModify value='false'/><gCal:guestsCanInviteOthers 
value='false'/><gCal:guestsCanSeeGuests value='false'/><gCal:anyoneCanAddSelf value='false'/><gd:when 
startTime='2013-07-30T16:44:21Z' endTime='2013-07-30T16:44:21Z'/><gd:who email='libgdata test googlemail com' 
rel='http://schemas.google.com/g/2005#event.organizer' valueString='GData Test'/><gd:where 
valueString=''/><gd:comments><gd:feedLink 
href="https://www.google.com/calendar/feeds/default/private/full/86gfb05as8mshg1642j3uajt4g/comments"/></gd:comments></entry></feed>
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375107889
-< Soup-Debug: SoupMessage 3 (0x6d11d0)
-< Update-Client-Auth: 
DQAAANAAAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXQ13oqRh_2p87WcrWeAQnJZpM9mi1et5TBGe84GimS7yuU_utQqgxo_ARltmYbhyQQy5oR9U-3hGYR8T6bNTF75
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:24:50 GMT
-< Set-Cookie: S=calendar=vRQp_qGRI4O1mqmBWfaIdg;Expires=Thu, 08-Aug-2013 10:18:12 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:24:49 GMT
-< Date: Mon, 29 Jul 2013 14:24:49 GMT
+< Soup-Debug-Timestamp: 1375202667
+< Soup-Debug: SoupMessage 3 (0x8c29b0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_x9DCxs6Yn1ShR7x5wx1k6e37TbqaZyvZnHbBDD5MjDqIwu2doXjOCD97mfXE8YE20iZQLD52PYbtpDGgujgmHXXGW1wlvqMs94qpgxdE8eYecbfbso9UjfaO5uqfvsRXIhKhe7zV2m0bacHn0JcyH7mkYYXHxHv7XZ_tjZftH-i5SVfC5OZaKOQXxynRfd_Yz5PzuJngGrHUxv5bViZFI3gQCqJikX_t9TXaydAiNvFoCzIgXcLmw11rsBONKvKvzka6NqtM8xqoAdhWs62jAQ
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:44:27 GMT
+< Set-Cookie: S=calendar=OSm1ulRHCGoq2qruuE2TEg;Expires=Mon, 12-Aug-2013 08:01:00 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:44:27 GMT
+< Date: Tue, 30 Jul 2013 16:44:27 GMT
 < Content-Type: application/atom+xml; charset=UTF-8; type=feed
 < GData-Version: 2.6
 < Cache-control: private, max-age=0
@@ -209,29 +209,29 @@
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:kind='calendar#eventFeed'><id>https://www.google.com/calendar/feeds/default/events/batch/1375107889156</id><updated>2013-07-29T14:24:49.157Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title 
type='text'>Batch operation feed</title><entry 
xmlns:batch='http://schemas.google.com/gdata/batch'><id>foobar</id><updated>2013-07-29T14:24:49.157Z</updated><title>Error</title><content>Invalid
 entry Id/Uri</content><batch:id>2</batch:id><batch:operation type='delete'/><batch:status code='400' 
reason='Invalid entry Id/Uri'/></entry><entry xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
gd:etag='&quot;EEoDRgRJdyp7JGA6WhNS&quot;' 
gd:kind='calendar#event'><id>http://www.google.com/calendar/feeds/default/e
 
vents/a0q500sd2r1vjodbdulbeilupo</id><published>2013-07-29T14:24:47.000Z</published><updated>2013-07-29T14:24:49.000Z</updated><app:edited>2013-07-29T14:24:49.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/g/2005#event'/><title>Toby</title><content/><link rel='alternate' 
type='text/html' 
href='https://www.google.com/calendar/event?eid=YTBxNTAwc2QycjF2am9kYmR1bGJlaWx1cG8gbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ'
 title='alternate'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/a0q500sd2r1vjodbdulbeilupo'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/a0q500sd2r1vjodbdulbeilupo'/><author><name>GData
 Test</name><email>libgdata test googlemail com</email></author><gd:comments><gd:feedLink 
href='https://www.google.com/calendar/feeds/default/private/full/a0q500sd2r1vjodbdulbeilupo/comments'/></gd:com
 ments><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where 
valueString=''/><gd:who email='libgdata test googlemail com' 
rel='http://schemas.google.com/g/2005#event.organizer' valueString='GData Test'/><gd:when 
endTime='2013-07-29T15:24:47.000+01:00' startTime='2013-07-29T15:24:47.000+01:00'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf 
value='false'/><batch:id>3</batch:id><batch:operation type='update'/><batch:status code='200' 
reason='Success'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanModify 
value='false'/><gCal:guestsCanSeeGuests value='false'/><gCal:sequence value='0'/><gCal:uid 
value='a0q500sd2r1vjodbdulbeilupo google com'/></entry><entry 
xmlns:batch='http://schemas.google.com/gdata/batch'><id>http://www.google.com/calendar/feeds/default/events/omgelpvl4j9iuvhl15ben77pqk</id><updated>2013-07-29T14:24:49.2
 98Z</updated><title type='text'>Fooish 
Bar</title><content>Deleted</content><batch:id>1</batch:id><batch:operation type='delete'/><batch:status 
code='200' reason='Success'/></entry></feed>
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:kind='calendar#eventFeed'><id>https://www.google.com/calendar/feeds/default/events/batch/1375202666962</id><updated>2013-07-30T16:44:26.963Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title 
type='text'>Batch operation feed</title><entry 
xmlns:batch='http://schemas.google.com/gdata/batch'><id>foobar</id><updated>2013-07-30T16:44:26.963Z</updated><title>Error</title><content>Invalid
 entry Id/Uri</content><batch:id>2</batch:id><batch:operation type='delete'/><batch:status code='400' 
reason='Invalid entry Id/Uri'/></entry><entry xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
gd:etag='&quot;EEUCQgxHeSp7JGA6WhNS&quot;' 
gd:kind='calendar#event'><id>http://www.google.com/calendar/feeds/default/e
 
vents/g6pl8ihvj81ak1gak2n91m4468</id><published>2013-07-30T16:44:25.000Z</published><updated>2013-07-30T16:44:27.000Z</updated><app:edited>2013-07-30T16:44:27.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/g/2005#event'/><title>Toby</title><content/><link rel='alternate' 
type='text/html' 
href='https://www.google.com/calendar/event?eid=ZzZwbDhpaHZqODFhazFnYWsybjkxbTQ0NjggbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ'
 title='alternate'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/g6pl8ihvj81ak1gak2n91m4468'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/g6pl8ihvj81ak1gak2n91m4468'/><author><name>GData
 Test</name><email>libgdata test googlemail com</email></author><gd:comments><gd:feedLink 
href='https://www.google.com/calendar/feeds/default/private/full/g6pl8ihvj81ak1gak2n91m4468/comments'/></gd:com
 ments><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where 
valueString=''/><gd:who email='libgdata test googlemail com' 
rel='http://schemas.google.com/g/2005#event.organizer' valueString='GData Test'/><gd:when 
endTime='2013-07-30T17:44:25.000+01:00' startTime='2013-07-30T17:44:25.000+01:00'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf 
value='false'/><batch:id>3</batch:id><batch:operation type='update'/><batch:status code='200' 
reason='Success'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanModify 
value='false'/><gCal:guestsCanSeeGuests value='false'/><gCal:sequence value='0'/><gCal:uid 
value='g6pl8ihvj81ak1gak2n91m4468 google com'/></entry><entry 
xmlns:batch='http://schemas.google.com/gdata/batch'><id>http://www.google.com/calendar/feeds/default/events/86gfb05as8mshg1642j3uajt4g</id><updated>2013-07-30T16:44:27.1
 41Z</updated><title type='text'>Fooish 
Bar</title><content>Deleted</content><batch:id>1</batch:id><batch:operation type='delete'/><batch:status 
code='200' reason='Success'/></entry></feed>
   
POST /calendar/feeds/default/private/full/batch HTTP/1.1
-> Soup-Debug-Timestamp: 1375107889
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 4 (0x6d13b0), SoupSocket 7 (0x8ded20)
+> Soup-Debug-Timestamp: 1375202667
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 4 (0x8c2b90), SoupSocket 7 (0x775490)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
Connection: Keep-Alive

-> <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' xmlns:app='http://www.w3.org/2007/app'><title type='text'>Batch 
operation feed</title><id>batch1</id><updated>2013-07-29T14:24:49Z</updated><entry 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;EEoDRgRJdyp7JGA6WhNS&quot;'><title 
type='text'>Toby</title><id>http://www.google.com/calendar/feeds/default/events/a0q500sd2r1vjodbdulbeilupo</id><updated>2013-07-29T14:24:49Z</updated><published>2013-07-29T14:24:47Z</published><category
 term='http://schemas.google.com/g/2005#event' scheme='http://schemas.google.com/g/2005#kind'/><link 
href='https://www.google.com/calendar/event?eid=YTBxNTAwc2QycjF2am9kYmR1bGJlaW
 x1cG8gbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ' title='alternate' 
rel='http://www.iana.org/assignments/relation/alternate' type='text/html'/><link 
href='https://www.google.com/calendar/feeds/default/private/full/a0q500sd2r1vjodbdulbeilupo' 
rel='http://www.iana.org/assignments/relation/self' type='application/atom+xml'/><link 
href='https://www.google.com/calendar/feeds/default/private/full/a0q500sd2r1vjodbdulbeilupo' 
rel='http://www.iana.org/assignments/relation/edit' type='application/atom+xml'/><author><name>GData 
Test</name><email>libgdata test googlemail com</email></author><batch:id>1</batch:id><batch:operation 
type='delete'/><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gCal:uid value='a0q500sd2r1vjodbdulbeilupo google 
com'/><gCal:guestsCanModify value='false'/><gCal:guestsCanInviteOthers value='false'/
<gCal:guestsCanSeeGuests value='false'/><gCal:anyoneCanAddSelf value='false'/><gd:when 
startTime='2013-07-29T14:24:47Z' endTime='2013-07-29T14:24:47Z'/><gd:who email='libgdata test googlemail 
com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='GData Test'/><gd:where 
valueString=''/><gd:comments><gd:feedLink 
href="https://www.google.com/calendar/feeds/default/private/full/a0q500sd2r1vjodbdulbeilupo/comments"/></gd:comments></entry></feed>
+> <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' xmlns:app='http://www.w3.org/2007/app'><title type='text'>Batch 
operation feed</title><id>batch1</id><updated>2013-07-30T16:44:27Z</updated><entry 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;EEUCQgxHeSp7JGA6WhNS&quot;'><title 
type='text'>Toby</title><id>http://www.google.com/calendar/feeds/default/events/g6pl8ihvj81ak1gak2n91m4468</id><updated>2013-07-30T16:44:27Z</updated><published>2013-07-30T16:44:25Z</published><category
 term='http://schemas.google.com/g/2005#event' scheme='http://schemas.google.com/g/2005#kind'/><link 
href='https://www.google.com/calendar/event?eid=ZzZwbDhpaHZqODFhazFnYWsybjkxbT
 Q0NjggbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ' title='alternate' 
rel='http://www.iana.org/assignments/relation/alternate' type='text/html'/><link 
href='https://www.google.com/calendar/feeds/default/private/full/g6pl8ihvj81ak1gak2n91m4468' 
rel='http://www.iana.org/assignments/relation/self' type='application/atom+xml'/><link 
href='https://www.google.com/calendar/feeds/default/private/full/g6pl8ihvj81ak1gak2n91m4468' 
rel='http://www.iana.org/assignments/relation/edit' type='application/atom+xml'/><author><name>GData 
Test</name><email>libgdata test googlemail com</email></author><batch:id>1</batch:id><batch:operation 
type='delete'/><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gCal:uid value='g6pl8ihvj81ak1gak2n91m4468 google 
com'/><gCal:guestsCanModify value='false'/><gCal:guestsCanInviteOthers value='false'/
<gCal:guestsCanSeeGuests value='false'/><gCal:anyoneCanAddSelf value='false'/><gd:when 
startTime='2013-07-30T16:44:25Z' endTime='2013-07-30T16:44:25Z'/><gd:who email='libgdata test googlemail 
com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='GData Test'/><gd:where 
valueString=''/><gd:comments><gd:feedLink 
href="https://www.google.com/calendar/feeds/default/private/full/g6pl8ihvj81ak1gak2n91m4468/comments"/></gd:comments></entry></feed>
   
 < HTTP/1.1 302 Moved Temporarily
-< Soup-Debug-Timestamp: 1375107889
-< Soup-Debug: SoupMessage 4 (0x6d13b0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXThTgckY3-hSb61OvnzXxSJ7d2jzDTq4SYJOcXEK19cfN8WmIspK2CGATjYnx3q1Fz9ZgntzaOCi00pQJhkctNT
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:24:50 GMT
-< Set-Cookie: S=calendar=0CviaWR2FKKmcsnE0zh42g;Expires=Fri, 09-Aug-2013 22:01:38 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:24:49 GMT
-< Date: Mon, 29 Jul 2013 14:24:49 GMT
-< Location: 
https://www.google.com/calendar/feeds/default/private/full/batch?gsessionid=0CviaWR2FKKmcsnE0zh42g
+< Soup-Debug-Timestamp: 1375202667
+< Soup-Debug: SoupMessage 4 (0x8c2b90)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_t4EurujSJEVz4Oz9mAIOytzvk2x5HxgdMhjgmIZQyEhJEVxBkGa9tYZB61Yy8JtAPaktxoTLVkhp854Pjz3Lu2nGX3VFkbf3hmep1Z77H5UUPxIsLyYKJ-XIqF26WY8xy6o6N8-w_azdQg_R57FuB6O-GUgGUKDr2aKE9iTWpO0XsB7-zCP0UEx7yuXEnbLb7XVAw5KqOV1FqKEA6grSKkAqUaQftC9ppmNnCTUl0XskgKlvQxIBg-580Pa1-4yjY5tacPmBQVR42znpOSUkcg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:44:28 GMT
+< Set-Cookie: S=calendar=T32QnUKLkIOV6-MMRGY3BQ;Expires=Sun, 11-Aug-2013 22:39:13 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:44:27 GMT
+< Date: Tue, 30 Jul 2013 16:44:27 GMT
+< Location: 
https://www.google.com/calendar/feeds/default/private/full/batch?gsessionid=T32QnUKLkIOV6-MMRGY3BQ
 < Content-Type: text/html; charset=UTF-8
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -246,31 +246,31 @@
 < </HEAD>
 < <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
 < <H1>Moved Temporarily</H1>
-< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/private/full/batch?gsessionid=0CviaWR2FKKmcsnE0zh42g";>here</A>.
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/private/full/batch?gsessionid=T32QnUKLkIOV6-MMRGY3BQ";>here</A>.
 < </BODY>
 < </HTML>
   
-> POST /calendar/feeds/default/private/full/batch?gsessionid=0CviaWR2FKKmcsnE0zh42g HTTP/1.1
-> Soup-Debug-Timestamp: 1375107889
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 4 (0x6d13b0), SoupSocket 8 (0x8deae0), restarted
+> POST /calendar/feeds/default/private/full/batch?gsessionid=T32QnUKLkIOV6-MMRGY3BQ HTTP/1.1
+> Soup-Debug-Timestamp: 1375202667
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 4 (0x8c2b90), SoupSocket 8 (0x775310), restarted
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
Content-Length: 2439

-> <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' xmlns:app='http://www.w3.org/2007/app'><title type='text'>Batch 
operation feed</title><id>batch1</id><updated>2013-07-29T14:24:49Z</updated><entry 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;EEoDRgRJdyp7JGA6WhNS&quot;'><title 
type='text'>Toby</title><id>http://www.google.com/calendar/feeds/default/events/a0q500sd2r1vjodbdulbeilupo</id><updated>2013-07-29T14:24:49Z</updated><published>2013-07-29T14:24:47Z</published><category
 term='http://schemas.google.com/g/2005#event' scheme='http://schemas.google.com/g/2005#kind'/><link 
href='https://www.google.com/calendar/event?eid=YTBxNTAwc2QycjF2am9kYmR1bGJlaW
 x1cG8gbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ' title='alternate' 
rel='http://www.iana.org/assignments/relation/alternate' type='text/html'/><link 
href='https://www.google.com/calendar/feeds/default/private/full/a0q500sd2r1vjodbdulbeilupo' 
rel='http://www.iana.org/assignments/relation/self' type='application/atom+xml'/><link 
href='https://www.google.com/calendar/feeds/default/private/full/a0q500sd2r1vjodbdulbeilupo' 
rel='http://www.iana.org/assignments/relation/edit' type='application/atom+xml'/><author><name>GData 
Test</name><email>libgdata test googlemail com</email></author><batch:id>1</batch:id><batch:operation 
type='delete'/><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gCal:uid value='a0q500sd2r1vjodbdulbeilupo google 
com'/><gCal:guestsCanModify value='false'/><gCal:guestsCanInviteOthers value='false'/
<gCal:guestsCanSeeGuests value='false'/><gCal:anyoneCanAddSelf value='false'/><gd:when 
startTime='2013-07-29T14:24:47Z' endTime='2013-07-29T14:24:47Z'/><gd:who email='libgdata test googlemail 
com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='GData Test'/><gd:where 
valueString=''/><gd:comments><gd:feedLink 
href="https://www.google.com/calendar/feeds/default/private/full/a0q500sd2r1vjodbdulbeilupo/comments"/></gd:comments></entry></feed>
+> <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' xmlns:app='http://www.w3.org/2007/app'><title type='text'>Batch 
operation feed</title><id>batch1</id><updated>2013-07-30T16:44:27Z</updated><entry 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;EEUCQgxHeSp7JGA6WhNS&quot;'><title 
type='text'>Toby</title><id>http://www.google.com/calendar/feeds/default/events/g6pl8ihvj81ak1gak2n91m4468</id><updated>2013-07-30T16:44:27Z</updated><published>2013-07-30T16:44:25Z</published><category
 term='http://schemas.google.com/g/2005#event' scheme='http://schemas.google.com/g/2005#kind'/><link 
href='https://www.google.com/calendar/event?eid=ZzZwbDhpaHZqODFhazFnYWsybjkxbT
 Q0NjggbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ' title='alternate' 
rel='http://www.iana.org/assignments/relation/alternate' type='text/html'/><link 
href='https://www.google.com/calendar/feeds/default/private/full/g6pl8ihvj81ak1gak2n91m4468' 
rel='http://www.iana.org/assignments/relation/self' type='application/atom+xml'/><link 
href='https://www.google.com/calendar/feeds/default/private/full/g6pl8ihvj81ak1gak2n91m4468' 
rel='http://www.iana.org/assignments/relation/edit' type='application/atom+xml'/><author><name>GData 
Test</name><email>libgdata test googlemail com</email></author><batch:id>1</batch:id><batch:operation 
type='delete'/><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gCal:uid value='g6pl8ihvj81ak1gak2n91m4468 google 
com'/><gCal:guestsCanModify value='false'/><gCal:guestsCanInviteOthers value='false'/
<gCal:guestsCanSeeGuests value='false'/><gCal:anyoneCanAddSelf value='false'/><gd:when 
startTime='2013-07-30T16:44:25Z' endTime='2013-07-30T16:44:25Z'/><gd:who email='libgdata test googlemail 
com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='GData Test'/><gd:where 
valueString=''/><gd:comments><gd:feedLink 
href="https://www.google.com/calendar/feeds/default/private/full/g6pl8ihvj81ak1gak2n91m4468/comments"/></gd:comments></entry></feed>
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375107889
-< Soup-Debug: SoupMessage 4 (0x6d13b0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-ODYysS96Taaw1NaIYtJAAHEXCZ_GMPV8cwrWmi_-pskMkzDa8yS5h3Lx6BUX8K1OQLMPBV7rpZGHtUa1jYE1jA_4X05rZ800eKz2vNaGdZYoiYJwGnkqCe72OBS-ReHTEtvQtr7VG9ZYkAslaj0Tffvz8pB9ItwBfiM3-4oLSkIEFXx8_eyUlfeNChSfSAvSSqTyG58No5P6HZMRKSJtwsyLwtxAl4BhBMfGX_Uh_z0XCyGMW8beXiNXZ4h5XkwP
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:24:50 GMT
-< Set-Cookie: S=calendar=57lC8kqJlFkLJ6la9bFD5Q;Expires=Thu, 08-Aug-2013 05:16:04 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:24:49 GMT
-< Date: Mon, 29 Jul 2013 14:24:49 GMT
+< Soup-Debug-Timestamp: 1375202667
+< Soup-Debug: SoupMessage 4 (0x8c2b90)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_QMIIFxw1-89I4fIiltp3toM_OQPaV-s2Op5YfNNKqskJ-elHTN3M2YrIdeRcj84Q94sPukowimpQydy5Tbb14G3YJ4S-NHM8cpqZJBifvXkyktCQOlLQS03AMrw1-u6qvRouqxtCMYd1apUUU9kXVWwoSYowH2iqScUeke9qp_ZEetMmdoQ61WwPB5gd4Of34y2qjfi6BC-i8q-4AfecimYdMpxx-Z7ncnkPEftWV84VyvVUhWfLM8oWcP3zT943b_FOzjNl76pHK1Za70lHtw
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:44:28 GMT
+< Set-Cookie: S=calendar=zT30BR84KzjqxNvuCQ3GbQ;Expires=Sat, 10-Aug-2013 23:18:32 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:44:28 GMT
+< Date: Tue, 30 Jul 2013 16:44:28 GMT
 < Content-Type: application/atom+xml; charset=UTF-8; type=feed
 < GData-Version: 2.6
 < Cache-control: private, max-age=0
@@ -280,5 +280,5 @@
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:kind='calendar#eventFeed'><id>https://www.google.com/calendar/feeds/default/events/batch/1375107889724</id><updated>2013-07-29T14:24:49.866Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title 
type='text'>Batch operation feed</title><entry 
xmlns:batch='http://schemas.google.com/gdata/batch'><id>http://www.google.com/calendar/feeds/default/events/a0q500sd2r1vjodbdulbeilupo</id><updated>2013-07-29T14:24:49.866Z</updated><title
 type='text'>Toby</title><content>Deleted</content><batch:id>1</batch:id><batch:operation 
type='delete'/><batch:status code='200' reason='Success'/></entry></feed>
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:kind='calendar#eventFeed'><id>https://www.google.com/calendar/feeds/default/events/batch/1375202667859</id><updated>2013-07-30T16:44:28.004Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title 
type='text'>Batch operation feed</title><entry 
xmlns:batch='http://schemas.google.com/gdata/batch'><id>http://www.google.com/calendar/feeds/default/events/g6pl8ihvj81ak1gak2n91m4468</id><updated>2013-07-30T16:44:28.004Z</updated><title
 type='text'>Toby</title><content>Deleted</content><batch:id>1</batch:id><batch:operation 
type='delete'/><batch:status code='200' reason='Success'/></entry></feed>
   
diff --git a/gdata/tests/traces/calendar/batch-async b/gdata/tests/traces/calendar/batch-async
index 53ff8ed..fdaa957 100644
--- a/gdata/tests/traces/calendar/batch-async
+++ b/gdata/tests/traces/calendar/batch-async
@@ -1,24 +1,24 @@
POST /calendar/feeds/default/private/full/batch HTTP/1.1
-> Soup-Debug-Timestamp: 1375108053
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 125 (0x7fffe003a8e0), SoupSocket 116 (0x7fffe4004b00)
+> Soup-Debug-Timestamp: 1375202840
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 124 (0x7fffe40101a0), SoupSocket 114 (0x7fffe0040bb0)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
Connection: Keep-Alive

-> <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gd='http://schemas.google.com/g/2005'><title 
type='text'>Batch operation feed</title><id>batch1</id><updated>2013-07-29T14:27:33Z</updated><entry><title 
type='text'>Batch operation 
query</title><id>http://www.google.com/calendar/feeds/default/events/e5hhi9u9gibmgdr2u92kko13og</id><updated>2013-07-29T14:27:33Z</updated><batch:id>1</batch:id><batch:operation
 type='query'/></entry></feed>
+> <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gd='http://schemas.google.com/g/2005'><title 
type='text'>Batch operation feed</title><id>batch1</id><updated>2013-07-30T16:47:20Z</updated><entry><title 
type='text'>Batch operation 
query</title><id>http://www.google.com/calendar/feeds/default/events/ahv0vd4ntonr8vjf2skp7a3l34</id><updated>2013-07-30T16:47:20Z</updated><batch:id>1</batch:id><batch:operation
 type='query'/></entry></feed>
   
 < HTTP/1.1 302 Moved Temporarily
-< Soup-Debug-Timestamp: 1375108054
-< Soup-Debug: SoupMessage 125 (0x7fffe003a8e0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXThTgckY3-hSb61OvnzXxSJ7d2jzDTq4SYJOcXEK19cfN8WmIspK2CGATjYnx3q1Fz9ZgntzaOCi00pQJhkctNT
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:27:35 GMT
-< Set-Cookie: S=calendar=nM08iwCNlYiyFhbYu_SWbA;Expires=Wed, 07-Aug-2013 11:53:52 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:27:34 GMT
-< Date: Mon, 29 Jul 2013 14:27:34 GMT
-< Location: 
https://www.google.com/calendar/feeds/default/private/full/batch?gsessionid=nM08iwCNlYiyFhbYu_SWbA
+< Soup-Debug-Timestamp: 1375202840
+< Soup-Debug: SoupMessage 124 (0x7fffe40101a0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_lzf1dm9Ue8N3SJp2J6o695WrE5nMbNLIXgO1GwYSOH0dinvA7V6dAhAIAEim2gLMsmbC2ddMnDUzaVKIGr3_JWCh97kMTIAR1M2IeSsu02b7EZA-X4HjICLw-x5pMnXhR8i08nLbVHSLT_No8fvB518lPWszfELKmW9TYG0-BAxXFzn9IKi_SmDnEv70WeTVk9AKBXEZK8GgbVvG2jwg9IxQwwSgxxH2Am-wKlw1Xh28Ocyi9bXsxw2zvbHLluu_emFBzQJ8Ds6aIurEQIryfg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:47:22 GMT
+< Set-Cookie: S=calendar=ZZR7s5yXCc372muUY-yz1Q;Expires=Sun, 11-Aug-2013 00:33:43 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:47:21 GMT
+< Date: Tue, 30 Jul 2013 16:47:21 GMT
+< Location: 
https://www.google.com/calendar/feeds/default/private/full/batch?gsessionid=ZZR7s5yXCc372muUY-yz1Q
 < Content-Type: text/html; charset=UTF-8
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -33,31 +33,31 @@
 < </HEAD>
 < <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
 < <H1>Moved Temporarily</H1>
-< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/private/full/batch?gsessionid=nM08iwCNlYiyFhbYu_SWbA";>here</A>.
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/private/full/batch?gsessionid=ZZR7s5yXCc372muUY-yz1Q";>here</A>.
 < </BODY>
 < </HTML>
   
-> POST /calendar/feeds/default/private/full/batch?gsessionid=nM08iwCNlYiyFhbYu_SWbA HTTP/1.1
-> Soup-Debug-Timestamp: 1375108054
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 125 (0x7fffe003a8e0), SoupSocket 117 (0x8de8a0), 
restarted
+> POST /calendar/feeds/default/private/full/batch?gsessionid=ZZR7s5yXCc372muUY-yz1Q HTTP/1.1
+> Soup-Debug-Timestamp: 1375202841
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 124 (0x7fffe40101a0), SoupSocket 115 (0x7fffe00408b0), 
restarted
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
Content-Length: 526

-> <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gd='http://schemas.google.com/g/2005'><title 
type='text'>Batch operation feed</title><id>batch1</id><updated>2013-07-29T14:27:33Z</updated><entry><title 
type='text'>Batch operation 
query</title><id>http://www.google.com/calendar/feeds/default/events/e5hhi9u9gibmgdr2u92kko13og</id><updated>2013-07-29T14:27:33Z</updated><batch:id>1</batch:id><batch:operation
 type='query'/></entry></feed>
+> <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gd='http://schemas.google.com/g/2005'><title 
type='text'>Batch operation feed</title><id>batch1</id><updated>2013-07-30T16:47:20Z</updated><entry><title 
type='text'>Batch operation 
query</title><id>http://www.google.com/calendar/feeds/default/events/ahv0vd4ntonr8vjf2skp7a3l34</id><updated>2013-07-30T16:47:20Z</updated><batch:id>1</batch:id><batch:operation
 type='query'/></entry></feed>
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375108054
-< Soup-Debug: SoupMessage 125 (0x7fffe003a8e0)
-< Update-Client-Auth: 
DQAAANAAAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXQ13oqRh_2p87WcrWeAQnJZpM9mi1et5TBGe84GimS7yuU_utQqgxo_ARltmYbhyQQy5oR9U-3hGYR8T6bNTF75
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:27:35 GMT
-< Set-Cookie: S=calendar=C9G0kJ2NjcplY8ve85ptQQ;Expires=Wed, 07-Aug-2013 07:31:00 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:27:34 GMT
-< Date: Mon, 29 Jul 2013 14:27:34 GMT
+< Soup-Debug-Timestamp: 1375202841
+< Soup-Debug: SoupMessage 124 (0x7fffe40101a0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_x9DCxs6Yn1ShR7x5wx1k6e37TbqaZyvZnHbBDD5MjDqIwu2doXjOCD97mfXE8YE20iZQLD52PYbtpDGgujgmHXXGW1wlvqMs94qpgxdE8eYecbfbso9UjfaO5uqfvsRXIhKhe7zV2m0bacHn0JcyH7mkYYXHxHv7XZ_tjZftH-i5SVfC5OZaKOQXxynRfd_Yz5PzuJngGrHUxv5bViZFI3gQCqJikX_t9TXaydAiNvFoCzIgXcLmw11rsBONKvKvzka6NqtM8xqoAdhWs62jAQ
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:47:22 GMT
+< Set-Cookie: S=calendar=IJcHHNCcVSigUO8m6SZUPg;Expires=Mon, 12-Aug-2013 09:18:23 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:47:21 GMT
+< Date: Tue, 30 Jul 2013 16:47:21 GMT
 < Content-Type: application/atom+xml; charset=UTF-8; type=feed
 < GData-Version: 2.6
 < Cache-control: private, max-age=0
@@ -67,5 +67,5 @@
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:kind='calendar#eventFeed'><id>https://www.google.com/calendar/feeds/default/events/batch/1375108054312</id><updated>2013-07-29T14:27:34.372Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title 
type='text'>Batch operation feed</title><entry xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
gd:etag='&quot;EEoDRgZEfSp7JGA6WhNS&quot;' 
gd:kind='calendar#event'><id>http://www.google.com/calendar/feeds/default/events/e5hhi9u9gibmgdr2u92kko13og</id><published>2013-07-29T14:27:33.000Z</published><updated>2013-07-29T14:27:33.000Z</updated><app:edited>2013-07-29T14:27:33.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title>Party '
 Til You Puke</title><content/><link rel='alternate' type='text/html' 
href='https://www.google.com/calendar/event?eid=ZTVoaGk5dTlnaWJtZ2RyMnU5MmtrbzEzb2cgbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ'
 title='alternate'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/e5hhi9u9gibmgdr2u92kko13og'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/e5hhi9u9gibmgdr2u92kko13og'/><author><name>GData
 Test</name><email>libgdata test googlemail com</email></author><gd:comments><gd:feedLink 
href='https://www.google.com/calendar/feeds/default/private/full/e5hhi9u9gibmgdr2u92kko13og/comments'/></gd:comments><gd:eventStatus
 value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='libgdata 
test googlemail com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='GData 
Test'/><gd:when endTime='2013-07-29T15:27:33.000+01:00
 ' startTime='2013-07-29T15:27:33.000+01:00'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf 
value='false'/><batch:id>1</batch:id><batch:operation type='query'/><batch:status code='200' 
reason='Success'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanModify 
value='false'/><gCal:guestsCanSeeGuests value='false'/><gCal:sequence value='0'/><gCal:uid 
value='e5hhi9u9gibmgdr2u92kko13og google com'/></entry></feed>
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:kind='calendar#eventFeed'><id>https://www.google.com/calendar/feeds/default/events/batch/1375202841453</id><updated>2013-07-30T16:47:21.494Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title 
type='text'>Batch operation feed</title><entry xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
gd:etag='&quot;EEUCQQRFfip7JGA6WhNS&quot;' 
gd:kind='calendar#event'><id>http://www.google.com/calendar/feeds/default/events/ahv0vd4ntonr8vjf2skp7a3l34</id><published>2013-07-30T16:47:20.000Z</published><updated>2013-07-30T16:47:20.000Z</updated><app:edited>2013-07-30T16:47:20.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title>Party '
 Til You Puke</title><content/><link rel='alternate' type='text/html' 
href='https://www.google.com/calendar/event?eid=YWh2MHZkNG50b25yOHZqZjJza3A3YTNsMzQgbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ'
 title='alternate'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/ahv0vd4ntonr8vjf2skp7a3l34'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/ahv0vd4ntonr8vjf2skp7a3l34'/><author><name>GData
 Test</name><email>libgdata test googlemail com</email></author><gd:comments><gd:feedLink 
href='https://www.google.com/calendar/feeds/default/private/full/ahv0vd4ntonr8vjf2skp7a3l34/comments'/></gd:comments><gd:eventStatus
 value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='libgdata 
test googlemail com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='GData 
Test'/><gd:when endTime='2013-07-30T17:47:20.000+01:00
 ' startTime='2013-07-30T17:47:20.000+01:00'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf 
value='false'/><batch:id>1</batch:id><batch:operation type='query'/><batch:status code='200' 
reason='Success'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanModify 
value='false'/><gCal:guestsCanSeeGuests value='false'/><gCal:sequence value='0'/><gCal:uid 
value='ahv0vd4ntonr8vjf2skp7a3l34 google com'/></entry></feed>
   
diff --git a/gdata/tests/traces/calendar/event-insert b/gdata/tests/traces/calendar/event-insert
index 5c5a00a..fa9bbf9 100644
--- a/gdata/tests/traces/calendar/event-insert
+++ b/gdata/tests/traces/calendar/event-insert
@@ -1,8 +1,8 @@
POST /calendar/feeds/default/private/full HTTP/1.1
-> Soup-Debug-Timestamp: 1375108009
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 93 (0x7fffd804b0b0), SoupSocket 85 (0x7fffe003b970)
+> Soup-Debug-Timestamp: 1375202797
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 93 (0x7fffe40158e0), SoupSocket 85 (0x775190)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
@@ -11,14 +11,14 @@
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app'><title type='text'>Tennis with Beth</title><content 
type='text'>Meet for a quick lesson.</content><category term='http://schemas.google.com/g/2005#event' 
scheme='http://schemas.google.com/g/2005#kind'/><gd:eventStatus 
value='http://schemas.google.com/g/2005#event.confirmed'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gCal:guestsCanModify 
value='false'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanSeeGuests 
value='false'/><gCal:anyoneCanAddSelf value='false'/><gd:when startTime='2009-04-17T15:00:00Z' 
endTime='2009-04-17T17:00:00Z'/><gd:who email='john smith example com' 
rel='http://schemas.google.com/g/2005#event.organizer' valueString='John Smith‽'/><gd:where 
valueString='Rolling Lawn Courts'/></entry>
   
 < HTTP/1.1 302 Moved Temporarily
-< Soup-Debug-Timestamp: 1375108009
-< Soup-Debug: SoupMessage 93 (0x7fffd804b0b0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXThTgckY3-hSb61OvnzXxSJ7d2jzDTq4SYJOcXEK19cfN8WmIspK2CGATjYnx3q1Fz9ZgntzaOCi00pQJhkctNT
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:26:50 GMT
-< Set-Cookie: S=calendar=F-z8VsQGH9LZXIiGi1h6SQ;Expires=Wed, 07-Aug-2013 02:03:17 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:26:49 GMT
-< Date: Mon, 29 Jul 2013 14:26:49 GMT
-< Location: https://www.google.com/calendar/feeds/default/private/full?gsessionid=F-z8VsQGH9LZXIiGi1h6SQ
+< Soup-Debug-Timestamp: 1375202797
+< Soup-Debug: SoupMessage 93 (0x7fffe40158e0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_lzf1dm9Ue8N3SJp2J6o695WrE5nMbNLIXgO1GwYSOH0dinvA7V6dAhAIAEim2gLMsmbC2ddMnDUzaVKIGr3_JWCh97kMTIAR1M2IeSsu02b7EZA-X4HjICLw-x5pMnXhR8i08nLbVHSLT_No8fvB518lPWszfELKmW9TYG0-BAxXFzn9IKi_SmDnEv70WeTVk9AKBXEZK8GgbVvG2jwg9IxQwwSgxxH2Am-wKlw1Xh28Ocyi9bXsxw2zvbHLluu_emFBzQJ8Ds6aIurEQIryfg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:38 GMT
+< Set-Cookie: S=calendar=pXLEahphcQI4MiTg852zzQ;Expires=Tue, 13-Aug-2013 13:28:15 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:37 GMT
+< Date: Tue, 30 Jul 2013 16:46:37 GMT
+< Location: https://www.google.com/calendar/feeds/default/private/full?gsessionid=pXLEahphcQI4MiTg852zzQ
 < Content-Type: text/html; charset=UTF-8
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -33,15 +33,15 @@
 < </HEAD>
 < <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
 < <H1>Moved Temporarily</H1>
-< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/private/full?gsessionid=F-z8VsQGH9LZXIiGi1h6SQ";>here</A>.
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/private/full?gsessionid=pXLEahphcQI4MiTg852zzQ";>here</A>.
 < </BODY>
 < </HTML>
   
-> POST /calendar/feeds/default/private/full?gsessionid=F-z8VsQGH9LZXIiGi1h6SQ HTTP/1.1
-> Soup-Debug-Timestamp: 1375108009
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 93 (0x7fffd804b0b0), SoupSocket 86 (0x8dea20), restarted
+> POST /calendar/feeds/default/private/full?gsessionid=pXLEahphcQI4MiTg852zzQ HTTP/1.1
+> Soup-Debug-Timestamp: 1375202797
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 93 (0x7fffe40158e0), SoupSocket 86 (0x7753d0), restarted
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
@@ -51,25 +51,25 @@
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app'><title type='text'>Tennis with Beth</title><content 
type='text'>Meet for a quick lesson.</content><category term='http://schemas.google.com/g/2005#event' 
scheme='http://schemas.google.com/g/2005#kind'/><gd:eventStatus 
value='http://schemas.google.com/g/2005#event.confirmed'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gCal:guestsCanModify 
value='false'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanSeeGuests 
value='false'/><gCal:anyoneCanAddSelf value='false'/><gd:when startTime='2009-04-17T15:00:00Z' 
endTime='2009-04-17T17:00:00Z'/><gd:who email='john smith example com' 
rel='http://schemas.google.com/g/2005#event.organizer' valueString='John Smith‽'/><gd:where 
valueString='Rolling Lawn Courts'/></entry>
   
 < HTTP/1.1 201 Created
-< Soup-Debug-Timestamp: 1375108010
-< Soup-Debug: SoupMessage 93 (0x7fffd804b0b0)
-< Update-Client-Auth: 
DQAAANAAAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXQ13oqRh_2p87WcrWeAQnJZpM9mi1et5TBGe84GimS7yuU_utQqgxo_ARltmYbhyQQy5oR9U-3hGYR8T6bNTF75
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:26:50 GMT
-< Set-Cookie: S=calendar=ZKTwGuuu0LVa6nkVCb9P3w;Expires=Wed, 07-Aug-2013 12:46:06 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:26:50 GMT
-< Date: Mon, 29 Jul 2013 14:26:50 GMT
+< Soup-Debug-Timestamp: 1375202798
+< Soup-Debug: SoupMessage 93 (0x7fffe40158e0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_x9DCxs6Yn1ShR7x5wx1k6e37TbqaZyvZnHbBDD5MjDqIwu2doXjOCD97mfXE8YE20iZQLD52PYbtpDGgujgmHXXGW1wlvqMs94qpgxdE8eYecbfbso9UjfaO5uqfvsRXIhKhe7zV2m0bacHn0JcyH7mkYYXHxHv7XZ_tjZftH-i5SVfC5OZaKOQXxynRfd_Yz5PzuJngGrHUxv5bViZFI3gQCqJikX_t9TXaydAiNvFoCzIgXcLmw11rsBONKvKvzka6NqtM8xqoAdhWs62jAQ
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:39 GMT
+< Set-Cookie: S=calendar=iNRHwto9LpyLWjD7w52lOg;Expires=Fri, 09-Aug-2013 04:48:16 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:38 GMT
+< Date: Tue, 30 Jul 2013 16:46:38 GMT
 < Content-Type: application/atom+xml; charset=UTF-8; type=entry
 < Cache-control: private, max-age=0, must-revalidate, no-transform
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 2.6
-< ETag: "EEoDRgZAfip7JGA6WhNS"
-< Location: https://www.google.com/calendar/feeds/default/private/full/gicsn4ge8ge8qqhv1ft4rv2lv4
-< Content-Location: https://www.google.com/calendar/feeds/default/private/full/gicsn4ge8ge8qqhv1ft4rv2lv4
+< ETag: "EEUCQg1Idip7JGA6WhNS"
+< Location: https://www.google.com/calendar/feeds/default/private/full/oqb4030l7frkp05mse8u33pqgk
+< Content-Location: https://www.google.com/calendar/feeds/default/private/full/oqb4030l7frkp05mse8u33pqgk
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
 < X-XSS-Protection: 1; mode=block
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='&quot;EEoDRgZAfip7JGA6WhNS&quot;' 
gd:kind='calendar#event'><id>http://www.google.com/calendar/feeds/default/events/gicsn4ge8ge8qqhv1ft4rv2lv4</id><published>2013-07-29T14:26:49.000Z</published><updated>2013-07-29T14:26:50.000Z</updated><app:edited>2013-07-29T14:26:50.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title>Tennis 
with Beth</title><content>Meet for a quick lesson.</content><link rel='alternate' type='text/html' 
href='https://www.google.com/calendar/event?eid=Z2ljc240Z2U4Z2U4cXFodjFmdDRydjJsdjQgbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ'
 title='alternate'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/gicsn4ge8g
 e8qqhv1ft4rv2lv4'/><link rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/gicsn4ge8ge8qqhv1ft4rv2lv4'/><author><name>GData
 Test</name><email>libgdata test googlemail com</email></author><gd:comments><gd:feedLink 
href='https://www.google.com/calendar/feeds/default/private/full/gicsn4ge8ge8qqhv1ft4rv2lv4/comments'/></gd:comments><gd:eventStatus
 value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString='Rolling Lawn 
Courts'/><gd:who email='libgdata test googlemail com' rel='http://schemas.google.com/g/2005#event.organizer' 
valueString='GData Test'/><gd:when endTime='2009-04-17T18:00:00.000+01:00' 
startTime='2009-04-17T16:00:00.000+01:00'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf 
value='false'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanModify value='false'/><gCal:g
 uestsCanSeeGuests value='false'/><gCal:sequence value='0'/><gCal:uid value='gicsn4ge8ge8qqhv1ft4rv2lv4 
google com'/></entry>
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='&quot;EEUCQg1Idip7JGA6WhNS&quot;' 
gd:kind='calendar#event'><id>http://www.google.com/calendar/feeds/default/events/oqb4030l7frkp05mse8u33pqgk</id><published>2013-07-30T16:46:38.000Z</published><updated>2013-07-30T16:46:38.000Z</updated><app:edited>2013-07-30T16:46:38.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title>Tennis 
with Beth</title><content>Meet for a quick lesson.</content><link rel='alternate' type='text/html' 
href='https://www.google.com/calendar/event?eid=b3FiNDAzMGw3ZnJrcDA1bXNlOHUzM3BxZ2sgbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ'
 title='alternate'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/oqb4030l7f
 rkp05mse8u33pqgk'/><link rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/oqb4030l7frkp05mse8u33pqgk'/><author><name>GData
 Test</name><email>libgdata test googlemail com</email></author><gd:comments><gd:feedLink 
href='https://www.google.com/calendar/feeds/default/private/full/oqb4030l7frkp05mse8u33pqgk/comments'/></gd:comments><gd:eventStatus
 value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString='Rolling Lawn 
Courts'/><gd:who email='libgdata test googlemail com' rel='http://schemas.google.com/g/2005#event.organizer' 
valueString='GData Test'/><gd:when endTime='2009-04-17T18:00:00.000+01:00' 
startTime='2009-04-17T16:00:00.000+01:00'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf 
value='false'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanModify value='false'/><gCal:g
 uestsCanSeeGuests value='false'/><gCal:sequence value='0'/><gCal:uid value='oqb4030l7frkp05mse8u33pqgk 
google com'/></entry>
   
diff --git a/gdata/tests/traces/calendar/event-insert-async b/gdata/tests/traces/calendar/event_insert-async
similarity index 59%
rename from gdata/tests/traces/calendar/event-insert-async
rename to gdata/tests/traces/calendar/event_insert-async
index 985d0e0..11ceda4 100644
--- a/gdata/tests/traces/calendar/event-insert-async
+++ b/gdata/tests/traces/calendar/event_insert-async
@@ -1,8 +1,8 @@
POST /calendar/feeds/default/private/full HTTP/1.1
-> Soup-Debug-Timestamp: 1375108022
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 103 (0x6d11d0), SoupSocket 96 (0x8deae0)
+> Soup-Debug-Timestamp: 1375202802
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 97 (0x7fffe40100b0), SoupSocket 89 (0x7fffe0040a30)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
@@ -11,14 +11,14 @@
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app'><title type='text'>Tennis with Beth</title><content 
type='text'>Meet for a quick lesson.</content><category term='http://schemas.google.com/g/2005#event' 
scheme='http://schemas.google.com/g/2005#kind'/><gd:eventStatus 
value='http://schemas.google.com/g/2005#event.confirmed'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gCal:guestsCanModify 
value='false'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanSeeGuests 
value='false'/><gCal:anyoneCanAddSelf value='false'/><gd:when startTime='2009-04-17T15:00:00Z' 
endTime='2009-04-17T17:00:00Z'/><gd:who email='john smith example com' 
rel='http://schemas.google.com/g/2005#event.organizer' valueString='John Smith‽'/><gd:where 
valueString='Rolling Lawn Courts'/></entry>
   
 < HTTP/1.1 302 Moved Temporarily
-< Soup-Debug-Timestamp: 1375108022
-< Soup-Debug: SoupMessage 103 (0x6d11d0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXThTgckY3-hSb61OvnzXxSJ7d2jzDTq4SYJOcXEK19cfN8WmIspK2CGATjYnx3q1Fz9ZgntzaOCi00pQJhkctNT
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:27:03 GMT
-< Set-Cookie: S=calendar=lpBpId-knLdx6yAFjlO7gA;Expires=Mon, 12-Aug-2013 12:29:25 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:27:02 GMT
-< Date: Mon, 29 Jul 2013 14:27:02 GMT
-< Location: https://www.google.com/calendar/feeds/default/private/full?gsessionid=lpBpId-knLdx6yAFjlO7gA
+< Soup-Debug-Timestamp: 1375202802
+< Soup-Debug: SoupMessage 97 (0x7fffe40100b0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_lzf1dm9Ue8N3SJp2J6o695WrE5nMbNLIXgO1GwYSOH0dinvA7V6dAhAIAEim2gLMsmbC2ddMnDUzaVKIGr3_JWCh97kMTIAR1M2IeSsu02b7EZA-X4HjICLw-x5pMnXhR8i08nLbVHSLT_No8fvB518lPWszfELKmW9TYG0-BAxXFzn9IKi_SmDnEv70WeTVk9AKBXEZK8GgbVvG2jwg9IxQwwSgxxH2Am-wKlw1Xh28Ocyi9bXsxw2zvbHLluu_emFBzQJ8Ds6aIurEQIryfg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:43 GMT
+< Set-Cookie: S=calendar=_uGn716zCNMdfoTfGHp3FQ;Expires=Sat, 10-Aug-2013 23:31:44 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:42 GMT
+< Date: Tue, 30 Jul 2013 16:46:42 GMT
+< Location: https://www.google.com/calendar/feeds/default/private/full?gsessionid=_uGn716zCNMdfoTfGHp3FQ
 < Content-Type: text/html; charset=UTF-8
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -33,15 +33,15 @@
 < </HEAD>
 < <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
 < <H1>Moved Temporarily</H1>
-< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/private/full?gsessionid=lpBpId-knLdx6yAFjlO7gA";>here</A>.
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/private/full?gsessionid=_uGn716zCNMdfoTfGHp3FQ";>here</A>.
 < </BODY>
 < </HTML>
   
-> POST /calendar/feeds/default/private/full?gsessionid=lpBpId-knLdx6yAFjlO7gA HTTP/1.1
-> Soup-Debug-Timestamp: 1375108022
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 103 (0x6d11d0), SoupSocket 97 (0x8dede0), restarted
+> POST /calendar/feeds/default/private/full?gsessionid=_uGn716zCNMdfoTfGHp3FQ HTTP/1.1
+> Soup-Debug-Timestamp: 1375202802
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 97 (0x7fffe40100b0), SoupSocket 90 (0x7fffe0040af0), 
restarted
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
@@ -51,25 +51,25 @@
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app'><title type='text'>Tennis with Beth</title><content 
type='text'>Meet for a quick lesson.</content><category term='http://schemas.google.com/g/2005#event' 
scheme='http://schemas.google.com/g/2005#kind'/><gd:eventStatus 
value='http://schemas.google.com/g/2005#event.confirmed'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gCal:guestsCanModify 
value='false'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanSeeGuests 
value='false'/><gCal:anyoneCanAddSelf value='false'/><gd:when startTime='2009-04-17T15:00:00Z' 
endTime='2009-04-17T17:00:00Z'/><gd:who email='john smith example com' 
rel='http://schemas.google.com/g/2005#event.organizer' valueString='John Smith‽'/><gd:where 
valueString='Rolling Lawn Courts'/></entry>
   
 < HTTP/1.1 201 Created
-< Soup-Debug-Timestamp: 1375108023
-< Soup-Debug: SoupMessage 103 (0x6d11d0)
-< Update-Client-Auth: 
DQAAAM4AAAAlDUC-WQgltDHdndYDddr-geSwqup450dH73A2Cl-8pGWAz5Jr6k15x7ETDyyX-gKH9mQLgT8NgpcJeZVMLjIXm1EbZt7eOlczQvHw9uMmD40XUvTc3VuOvT58GOMc7bcR5a-xUVuHMkbEU3g2rCp7Fw3q3lP_QFTWqE59LQAuIJ1V1Mzrj5l73ZloZnprjZsoS6V737LE84MKS3EbUJwdhONiAUU1jBHCL_yAoimGEtnElJMGcEXxs1Pl3YW3Ceub90HJ43ybw11aZdO1mFDL
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:27:03 GMT
-< Set-Cookie: S=calendar=xzpPgu41Om7vgY9PpBglVA;Expires=Fri, 09-Aug-2013 19:48:00 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:27:02 GMT
-< Date: Mon, 29 Jul 2013 14:27:02 GMT
+< Soup-Debug-Timestamp: 1375202802
+< Soup-Debug: SoupMessage 97 (0x7fffe40100b0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_QMIIFxw1-89I4fIiltp3toM_OQPaV-s2Op5YfNNKqskJ-elHTN3M2YrIdeRcj84Q94sPukowimpQydy5Tbb14G3YJ4S-NHM8cpqZJBifvXkyktCQOlLQS03AMrw1-u6qvRouqxtCMYd1apUUU9kXVWwoSYowH2iqScUeke9qp_ZEetMmdoQ61WwPB5gd4Of34y2qjfi6BC-i8q-4AfecimYdMpxx-Z7ncnkPEftWV84VyvVUhWfLM8oWcP3zT943b_FOzjNl76pHK1Za70lHtw
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:43 GMT
+< Set-Cookie: S=calendar=T7e_5WJfXcmBXRmKcnZZSw;Expires=Tue, 13-Aug-2013 15:11:32 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:43 GMT
+< Date: Tue, 30 Jul 2013 16:46:43 GMT
 < Content-Type: application/atom+xml; charset=UTF-8; type=entry
 < Cache-control: private, max-age=0, must-revalidate, no-transform
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 2.6
-< ETag: "EEoDRgZDfCp7JGA6WhNS"
-< Location: https://www.google.com/calendar/feeds/default/private/full/0qrt69rd60alvb0ti70ji14ktk
-< Content-Location: https://www.google.com/calendar/feeds/default/private/full/0qrt69rd60alvb0ti70ji14ktk
+< ETag: "EEUCQQRBfCp7JGA6WhNS"
+< Location: https://www.google.com/calendar/feeds/default/private/full/oqb4030l7frkp05mse8u33pqgk
+< Content-Location: https://www.google.com/calendar/feeds/default/private/full/oqb4030l7frkp05mse8u33pqgk
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
 < X-XSS-Protection: 1; mode=block
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='&quot;EEoDRgZDfCp7JGA6WhNS&quot;' 
gd:kind='calendar#event'><id>http://www.google.com/calendar/feeds/default/events/0qrt69rd60alvb0ti70ji14ktk</id><published>2013-07-29T14:27:02.000Z</published><updated>2013-07-29T14:27:02.000Z</updated><app:edited>2013-07-29T14:27:02.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title>Tennis 
with Beth</title><content>Meet for a quick lesson.</content><link rel='alternate' type='text/html' 
href='https://www.google.com/calendar/event?eid=MHFydDY5cmQ2MGFsdmIwdGk3MGppMTRrdGsgbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ'
 title='alternate'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/0qrt69rd60
 alvb0ti70ji14ktk'/><link rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/0qrt69rd60alvb0ti70ji14ktk'/><author><name>GData
 Test</name><email>libgdata test googlemail com</email></author><gd:comments><gd:feedLink 
href='https://www.google.com/calendar/feeds/default/private/full/0qrt69rd60alvb0ti70ji14ktk/comments'/></gd:comments><gd:eventStatus
 value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString='Rolling Lawn 
Courts'/><gd:who email='libgdata test googlemail com' rel='http://schemas.google.com/g/2005#event.organizer' 
valueString='GData Test'/><gd:when endTime='2009-04-17T18:00:00.000+01:00' 
startTime='2009-04-17T16:00:00.000+01:00'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf 
value='false'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanModify value='false'/><gCal:g
 uestsCanSeeGuests value='false'/><gCal:sequence value='0'/><gCal:uid value='0qrt69rd60alvb0ti70ji14ktk 
google com'/></entry>
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='&quot;EEUCQQRBfCp7JGA6WhNS&quot;' 
gd:kind='calendar#event'><id>http://www.google.com/calendar/feeds/default/events/oqb4030l7frkp05mse8u33pqgk</id><published>2013-07-30T16:46:42.000Z</published><updated>2013-07-30T16:46:42.000Z</updated><app:edited>2013-07-30T16:46:42.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title>Tennis 
with Beth</title><content>Meet for a quick lesson.</content><link rel='alternate' type='text/html' 
href='https://www.google.com/calendar/event?eid=dm8xaGFnYWczYjczamQxdHBudW0wbGNwNm8gbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ'
 title='alternate'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/oqb4030l7f
 rkp05mse8u33pqgk'/><link rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/oqb4030l7frkp05mse8u33pqgk'/><author><name>GData
 Test</name><email>libgdata test googlemail com</email></author><gd:comments><gd:feedLink 
href='https://www.google.com/calendar/feeds/default/private/full/oqb4030l7frkp05mse8u33pqgk/comments'/></gd:comments><gd:eventStatus
 value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString='Rolling Lawn 
Courts'/><gd:who email='libgdata test googlemail com' rel='http://schemas.google.com/g/2005#event.organizer' 
valueString='GData Test'/><gd:when endTime='2009-04-17T18:00:00.000+01:00' 
startTime='2009-04-17T16:00:00.000+01:00'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf 
value='false'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanModify value='false'/><gCal:g
 uestsCanSeeGuests value='false'/><gCal:sequence value='0'/><gCal:uid value='oqb4030l7frkp05mse8u33pqgk 
google com'/></entry>
   
diff --git a/gdata/tests/traces/calendar/event_insert-async-cancellation 
b/gdata/tests/traces/calendar/event_insert-async-cancellation
new file mode 100644
index 0000000..6af3669
--- /dev/null
+++ b/gdata/tests/traces/calendar/event_insert-async-cancellation
@@ -0,0 +1,166 @@
+> POST /calendar/feeds/default/private/full HTTP/1.1
+> Soup-Debug-Timestamp: 1375202808
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 101 (0x7fffe4010380), SoupSocket 93 (0x7fffdc0043b0)
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app'><title type='text'>Tennis with Beth</title><content type='text'>Meet 
for a quick lesson.</content><category term='http://schemas.google.com/g/2005#event' 
scheme='http://schemas.google.com/g/2005#kind'/><gd:eventStatus 
value='http://schemas.google.com/g/2005#event.confirmed'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gCal:guestsCanModify 
value='false'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanSeeGuests 
value='false'/><gCal:anyoneCanAddSelf value='false'/><gd:when startTime='2009-04-17T15:00:00Z' 
endTime='2009-04-17T17:00:00Z'/><gd:who email='john smith example com' 
rel='http://schemas.google.com/g/2005#event.organizer' valueString='John Smith‽'/><gd:where 
valueString='Rolling Lawn Courts'/></entry>
+  
+< HTTP/1.1 1 Cancelled
+< Soup-Debug-Timestamp: 1375202808
+< Soup-Debug: SoupMessage 101 (0x7fffe4010380)
+  
+> POST /calendar/feeds/default/private/full HTTP/1.1
+> Soup-Debug-Timestamp: 1375202808
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 102 (0x8c2b90), SoupSocket 94 (0x775790)
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app'><title type='text'>Tennis with Beth</title><content type='text'>Meet 
for a quick lesson.</content><category term='http://schemas.google.com/g/2005#event' 
scheme='http://schemas.google.com/g/2005#kind'/><gd:eventStatus 
value='http://schemas.google.com/g/2005#event.confirmed'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gCal:guestsCanModify 
value='false'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanSeeGuests 
value='false'/><gCal:anyoneCanAddSelf value='false'/><gd:when startTime='2009-04-17T15:00:00Z' 
endTime='2009-04-17T17:00:00Z'/><gd:who email='john smith example com' 
rel='http://schemas.google.com/g/2005#event.organizer' valueString='John Smith‽'/><gd:where 
valueString='Rolling Lawn Courts'/></entry>
+  
+< HTTP/1.1 302 Moved Temporarily
+< Soup-Debug-Timestamp: 1375202808
+< Soup-Debug: SoupMessage 102 (0x8c2b90)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_lzf1dm9Ue8N3SJp2J6o695WrE5nMbNLIXgO1GwYSOH0dinvA7V6dAhAIAEim2gLMsmbC2ddMnDUzaVKIGr3_JWCh97kMTIAR1M2IeSsu02b7EZA-X4HjICLw-x5pMnXhR8i08nLbVHSLT_No8fvB518lPWszfELKmW9TYG0-BAxXFzn9IKi_SmDnEv70WeTVk9AKBXEZK8GgbVvG2jwg9IxQwwSgxxH2Am-wKlw1Xh28Ocyi9bXsxw2zvbHLluu_emFBzQJ8Ds6aIurEQIryfg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:49 GMT
+< Set-Cookie: S=calendar=1R8F1pQ3_HK-ksz_9_fJcw;Expires=Thu, 08-Aug-2013 23:57:31 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:48 GMT
+< Date: Tue, 30 Jul 2013 16:46:48 GMT
+< Location: https://www.google.com/calendar/feeds/default/private/full?gsessionid=1R8F1pQ3_HK-ksz_9_fJcw
+< Content-Type: text/html; charset=UTF-8
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <HTML>
+< <HEAD>
+< <TITLE>Moved Temporarily</TITLE>
+< </HEAD>
+< <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
+< <H1>Moved Temporarily</H1>
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/private/full?gsessionid=1R8F1pQ3_HK-ksz_9_fJcw";>here</A>.
+< </BODY>
+< </HTML>
+  
+> POST /calendar/feeds/default/private/full?gsessionid=1R8F1pQ3_HK-ksz_9_fJcw HTTP/1.1
+> Soup-Debug-Timestamp: 1375202808
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 102 (0x8c2b90), SoupSocket 95 (0x7fffe0040a30), restarted
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> Content-Length: 969
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app'><title type='text'>Tennis with Beth</title><content type='text'>Meet 
for a quick lesson.</content><category term='http://schemas.google.com/g/2005#event' 
scheme='http://schemas.google.com/g/2005#kind'/><gd:eventStatus 
value='http://schemas.google.com/g/2005#event.confirmed'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gCal:guestsCanModify 
value='false'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanSeeGuests 
value='false'/><gCal:anyoneCanAddSelf value='false'/><gd:when startTime='2009-04-17T15:00:00Z' 
endTime='2009-04-17T17:00:00Z'/><gd:who email='john smith example com' 
rel='http://schemas.google.com/g/2005#event.organizer' valueString='John Smith‽'/><gd:where 
valueString='Rolling Lawn Courts'/></entry>
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375202809
+< Soup-Debug: SoupMessage 102 (0x8c2b90)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_x9DCxs6Yn1ShR7x5wx1k6e37TbqaZyvZnHbBDD5MjDqIwu2doXjOCD97mfXE8YE20iZQLD52PYbtpDGgujgmHXXGW1wlvqMs94qpgxdE8eYecbfbso9UjfaO5uqfvsRXIhKhe7zV2m0bacHn0JcyH7mkYYXHxHv7XZ_tjZftH-i5SVfC5OZaKOQXxynRfd_Yz5PzuJngGrHUxv5bViZFI3gQCqJikX_t9TXaydAiNvFoCzIgXcLmw11rsBONKvKvzka6NqtM8xqoAdhWs62jAQ
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:49 GMT
+< Set-Cookie: S=calendar=M6symLc287DwtP4khAjq6Q;Expires=Sat, 10-Aug-2013 01:37:52 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:49 GMT
+< Date: Tue, 30 Jul 2013 16:46:49 GMT
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.6
+< ETag: "EEUCQQRBdyp7JGA6WhNS"
+< Location: https://www.google.com/calendar/feeds/default/private/full/oqb4030l7frkp05mse8u33pqgk
+< Content-Location: https://www.google.com/calendar/feeds/default/private/full/oqb4030l7frkp05mse8u33pqgk
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='&quot;EEUCQQRBdyp7JGA6WhNS&quot;' 
gd:kind='calendar#event'><id>http://www.google.com/calendar/feeds/default/events/oqb4030l7frkp05mse8u33pqgk</id><published>2013-07-30T16:46:49.000Z</published><updated>2013-07-30T16:46:49.000Z</updated><app:edited>2013-07-30T16:46:49.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title>Tennis 
with Beth</title><content>Meet for a quick lesson.</content><link rel='alternate' type='text/html' 
href='https://www.google.com/calendar/event?eid=ODE5OGhpMWpzczNuaWowM21uY3QwY2Z2Z3MgbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ'
 title='alternate'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/oqb4030l7f
 rkp05mse8u33pqgk'/><link rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/oqb4030l7frkp05mse8u33pqgk'/><author><name>GData
 Test</name><email>libgdata test googlemail com</email></author><gd:comments><gd:feedLink 
href='https://www.google.com/calendar/feeds/default/private/full/oqb4030l7frkp05mse8u33pqgk/comments'/></gd:comments><gd:eventStatus
 value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString='Rolling Lawn 
Courts'/><gd:who email='libgdata test googlemail com' rel='http://schemas.google.com/g/2005#event.organizer' 
valueString='GData Test'/><gd:when endTime='2009-04-17T18:00:00.000+01:00' 
startTime='2009-04-17T16:00:00.000+01:00'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf 
value='false'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanModify value='false'/><gCal:g
 uestsCanSeeGuests value='false'/><gCal:sequence value='0'/><gCal:uid value='oqb4030l7frkp05mse8u33pqgk 
google com'/></entry>
+  
+> POST /calendar/feeds/default/private/full HTTP/1.1
+> Soup-Debug-Timestamp: 1375202808
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 102 (0x8c2b90), SoupSocket 94 (0x775790)
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app'><title type='text'>Tennis with Beth</title><content type='text'>Meet 
for a quick lesson.</content><category term='http://schemas.google.com/g/2005#event' 
scheme='http://schemas.google.com/g/2005#kind'/><gd:eventStatus 
value='http://schemas.google.com/g/2005#event.confirmed'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gCal:guestsCanModify 
value='false'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanSeeGuests 
value='false'/><gCal:anyoneCanAddSelf value='false'/><gd:when startTime='2009-04-17T15:00:00Z' 
endTime='2009-04-17T17:00:00Z'/><gd:who email='john smith example com' 
rel='http://schemas.google.com/g/2005#event.organizer' valueString='John Smith‽'/><gd:where 
valueString='Rolling Lawn Courts'/></entry>
+  
+< HTTP/1.1 302 Moved Temporarily
+< Soup-Debug-Timestamp: 1375202808
+< Soup-Debug: SoupMessage 102 (0x8c2b90)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_lzf1dm9Ue8N3SJp2J6o695WrE5nMbNLIXgO1GwYSOH0dinvA7V6dAhAIAEim2gLMsmbC2ddMnDUzaVKIGr3_JWCh97kMTIAR1M2IeSsu02b7EZA-X4HjICLw-x5pMnXhR8i08nLbVHSLT_No8fvB518lPWszfELKmW9TYG0-BAxXFzn9IKi_SmDnEv70WeTVk9AKBXEZK8GgbVvG2jwg9IxQwwSgxxH2Am-wKlw1Xh28Ocyi9bXsxw2zvbHLluu_emFBzQJ8Ds6aIurEQIryfg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:49 GMT
+< Set-Cookie: S=calendar=1R8F1pQ3_HK-ksz_9_fJcw;Expires=Thu, 08-Aug-2013 23:57:31 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:48 GMT
+< Date: Tue, 30 Jul 2013 16:46:48 GMT
+< Location: https://www.google.com/calendar/feeds/default/private/full?gsessionid=1R8F1pQ3_HK-ksz_9_fJcw
+< Content-Type: text/html; charset=UTF-8
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <HTML>
+< <HEAD>
+< <TITLE>Moved Temporarily</TITLE>
+< </HEAD>
+< <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
+< <H1>Moved Temporarily</H1>
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/private/full?gsessionid=1R8F1pQ3_HK-ksz_9_fJcw";>here</A>.
+< </BODY>
+< </HTML>
+  
+> POST /calendar/feeds/default/private/full?gsessionid=1R8F1pQ3_HK-ksz_9_fJcw HTTP/1.1
+> Soup-Debug-Timestamp: 1375202808
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 102 (0x8c2b90), SoupSocket 95 (0x7fffe0040a30), restarted
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> Content-Length: 969
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app'><title type='text'>Tennis with Beth</title><content type='text'>Meet 
for a quick lesson.</content><category term='http://schemas.google.com/g/2005#event' 
scheme='http://schemas.google.com/g/2005#kind'/><gd:eventStatus 
value='http://schemas.google.com/g/2005#event.confirmed'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gCal:guestsCanModify 
value='false'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanSeeGuests 
value='false'/><gCal:anyoneCanAddSelf value='false'/><gd:when startTime='2009-04-17T15:00:00Z' 
endTime='2009-04-17T17:00:00Z'/><gd:who email='john smith example com' 
rel='http://schemas.google.com/g/2005#event.organizer' valueString='John Smith‽'/><gd:where 
valueString='Rolling Lawn Courts'/></entry>
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375202809
+< Soup-Debug: SoupMessage 102 (0x8c2b90)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_x9DCxs6Yn1ShR7x5wx1k6e37TbqaZyvZnHbBDD5MjDqIwu2doXjOCD97mfXE8YE20iZQLD52PYbtpDGgujgmHXXGW1wlvqMs94qpgxdE8eYecbfbso9UjfaO5uqfvsRXIhKhe7zV2m0bacHn0JcyH7mkYYXHxHv7XZ_tjZftH-i5SVfC5OZaKOQXxynRfd_Yz5PzuJngGrHUxv5bViZFI3gQCqJikX_t9TXaydAiNvFoCzIgXcLmw11rsBONKvKvzka6NqtM8xqoAdhWs62jAQ
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:49 GMT
+< Set-Cookie: S=calendar=M6symLc287DwtP4khAjq6Q;Expires=Sat, 10-Aug-2013 01:37:52 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:49 GMT
+< Date: Tue, 30 Jul 2013 16:46:49 GMT
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.6
+< ETag: "EEUCQQRBdyp7JGA6WhNS"
+< Location: https://www.google.com/calendar/feeds/default/private/full/oqb4030l7frkp05mse8u33pqgk
+< Content-Location: https://www.google.com/calendar/feeds/default/private/full/oqb4030l7frkp05mse8u33pqgk
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='&quot;EEUCQQRBdyp7JGA6WhNS&quot;' 
gd:kind='calendar#event'><id>http://www.google.com/calendar/feeds/default/events/oqb4030l7frkp05mse8u33pqgk</id><published>2013-07-30T16:46:49.000Z</published><updated>2013-07-30T16:46:49.000Z</updated><app:edited>2013-07-30T16:46:49.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title>Tennis 
with Beth</title><content>Meet for a quick lesson.</content><link rel='alternate' type='text/html' 
href='https://www.google.com/calendar/event?eid=ODE5OGhpMWpzczNuaWowM21uY3QwY2Z2Z3MgbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ'
 title='alternate'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/oqb4030l7f
 rkp05mse8u33pqgk'/><link rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/oqb4030l7frkp05mse8u33pqgk'/><author><name>GData
 Test</name><email>libgdata test googlemail com</email></author><gd:comments><gd:feedLink 
href='https://www.google.com/calendar/feeds/default/private/full/oqb4030l7frkp05mse8u33pqgk/comments'/></gd:comments><gd:eventStatus
 value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString='Rolling Lawn 
Courts'/><gd:who email='libgdata test googlemail com' rel='http://schemas.google.com/g/2005#event.organizer' 
valueString='GData Test'/><gd:when endTime='2009-04-17T18:00:00.000+01:00' 
startTime='2009-04-17T16:00:00.000+01:00'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf 
value='false'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanModify value='false'/><gCal:g
 uestsCanSeeGuests value='false'/><gCal:sequence value='0'/><gCal:uid value='oqb4030l7frkp05mse8u33pqgk 
google com'/></entry>
+  
diff --git a/gdata/tests/traces/calendar/global-authentication 
b/gdata/tests/traces/calendar/global-authentication
index 6b66757..f59286b 100644
--- a/gdata/tests/traces/calendar/global-authentication
+++ b/gdata/tests/traces/calendar/global-authentication
@@ -1,6 +1,6 @@
POST /accounts/ClientLogin HTTP/1.1
-> Soup-Debug-Timestamp: 1375107884
-> Soup-Debug: SoupSession 1 (0x6591b0), SoupMessage 1 (0x6d10e0), SoupSocket 1 (0x8de8a0)
+> Soup-Debug-Timestamp: 1375202658
+> Soup-Debug: SoupSession 1 (0x65a1d0), SoupMessage 1 (0x8c28c0), SoupSocket 1 (0x7750d0)
Host: www.google.com
Content-Type: application/x-www-form-urlencoded
Accept-Encoding: gzip, deflate
@@ -9,19 +9,19 @@
accountType=HOSTED%5FOR%5FGOOGLE&Email=libgdata%2Etest%40gmail%2Ecom&Passwd=gdata%2Dgdata&service=cl&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375107885
-< Soup-Debug: SoupMessage 1 (0x6d10e0)
+< Soup-Debug-Timestamp: 1375202659
+< Soup-Debug: SoupMessage 1 (0x8c28c0)
 < Content-Type: text/plain
 < Cache-control: no-cache, no-store
 < Pragma: no-cache
 < Expires: Mon, 01-Jan-1990 00:00:00 GMT
-< Date: Mon, 29 Jul 2013 14:24:45 GMT
+< Date: Tue, 30 Jul 2013 16:44:19 GMT
 < X-Content-Type-Options: nosniff
 < X-XSS-Protection: 1; mode=block
-< Content-Length: 881
+< Content-Length: 947
 < Server: GSE
 < 
-< 
SID=DQAAAM0AAAD9rHT8bdmpTU7a5LMsfA65u0Fh_6QRM8DUsQJg-EXklmdoDGIUPR23EasVPqLlDdq5-h165wdCF1-yae7a9se27qpQWghp20n2A9MWTZvdXT5UirX3_OM-KK5xht4lTNyBfY6eys0ZKPeBp8JgeSDkKkRfnGgqUEyEfgFzl4k7fc41mELCJcuSpXt-VBj1tAFRqugyBcOcdmpRCA9_G42oX6HBTOh3eSNIp4FhAn79g_YcDjow2RGB5UpdO5jnRuZKqaJrbe_nx_JKAMFTwGRy
-< 
LSID=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvCXQQiHyfN4mK1PbqfHpTiFEH6sXqSUP12PbW1JMOGTevMpDhLVWyaMHswUip1j1eHNnJHFyDkHJ7gloLcr1N69MmjhE7H2iDBHjq3klaZsH21fTuoQ0Cx69v4mlRZJxZZfqur-9YnM33-S_Ut2N8edJa7PtmmdPIdjDdlScFtkqYSyglNxubkMGU_YCAGx6vCl2RxdrhbgoIzkmJ7nfrwk
-< 
Auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+< 
SID=DQAAANMAAABni88bXxZ1ccsGiahuDBcUANdzR1_t9LLvGG9u1tftUaxTNn5uYrL7pK0SxO5N4YQTnQo3wWRMOvZ7WibZnqTrdbujl3auw3aR6GopooEdkIbl3AW-nzqLMVV5H2-lJyLAoDy0JI9LrTqMzfHK__wyjX1wLNw2SsOLHvxQNrJIcreZmjwhc1e9gf0pmit9hi-l1Le2elhYOA_hgrDJsaP7Gl5Ja1ddZ7hHuIJXCr1ro_j-R9wYlcTI-F72G7oT9G2P8QDJTJZw5hFFseazFmCIIIlDRlhwcCD07WDxSJxFZg
+< 
LSID=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NhfZPNsQA4-wCB9yNVSjD2OSfMCPhH3Xs8jODVeKSaxR9rNyoxz3445acEnNK_XNXQlUcw7p2bTZYV6ghIrJ8z45VlzXfBRUNNO9TPseJK9VrmxUIHmOkvNZZ10oK-3LJObEvrgvdyw_zTWrcDbxNXmo-iOLtgZxceF2K55LeER1XldXNzkTnwVrugvKnXduNieMLhgJoUB2a4_hN6c1lkIGtM34g3StT-F13gWuHX7RLQ
+< 
Auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
   
diff --git a/gdata/tests/traces/calendar/query-all-calendars b/gdata/tests/traces/calendar/query-all-calendars
index fb2dc84..53bd955 100644
--- a/gdata/tests/traces/calendar/query-all-calendars
+++ b/gdata/tests/traces/calendar/query-all-calendars
@@ -1,21 +1,21 @@
GET /calendar/feeds/default/allcalendars/full HTTP/1.1
-> Soup-Debug-Timestamp: 1375107895
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 7 (0x6d12c0), SoupSocket 12 (0x8dea20)
+> Soup-Debug-Timestamp: 1375202674
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 7 (0x8c2aa0), SoupSocket 12 (0x775250)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 302 Moved Temporarily
-< Soup-Debug-Timestamp: 1375107895
-< Soup-Debug: SoupMessage 7 (0x6d12c0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXThTgckY3-hSb61OvnzXxSJ7d2jzDTq4SYJOcXEK19cfN8WmIspK2CGATjYnx3q1Fz9ZgntzaOCi00pQJhkctNT
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:24:56 GMT
-< Set-Cookie: S=calendar=SZxZFiNUslkrr6PitF3XOg;Expires=Thu, 08-Aug-2013 09:36:20 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:24:55 GMT
-< Date: Mon, 29 Jul 2013 14:24:55 GMT
-< Location: https://www.google.com/calendar/feeds/default/allcalendars/full?gsessionid=SZxZFiNUslkrr6PitF3XOg
+< Soup-Debug-Timestamp: 1375202675
+< Soup-Debug: SoupMessage 7 (0x8c2aa0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_t4EurujSJEVz4Oz9mAIOytzvk2x5HxgdMhjgmIZQyEhJEVxBkGa9tYZB61Yy8JtAPaktxoTLVkhp854Pjz3Lu2nGX3VFkbf3hmep1Z77H5UUPxIsLyYKJ-XIqF26WY8xy6o6N8-w_azdQg_R57FuB6O-GUgGUKDr2aKE9iTWpO0XsB7-zCP0UEx7yuXEnbLb7XVAw5KqOV1FqKEA6grSKkAqUaQftC9ppmNnCTUl0XskgKlvQxIBg-580Pa1-4yjY5tacPmBQVR42znpOSUkcg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:44:36 GMT
+< Set-Cookie: S=calendar=58E7R9WlT_6a7-yMgWl0Vg;Expires=Sat, 10-Aug-2013 14:05:10 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:44:35 GMT
+< Date: Tue, 30 Jul 2013 16:44:35 GMT
+< Location: https://www.google.com/calendar/feeds/default/allcalendars/full?gsessionid=58E7R9WlT_6a7-yMgWl0Vg
 < Content-Type: text/html; charset=UTF-8
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -30,38 +30,38 @@
 < </HEAD>
 < <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
 < <H1>Moved Temporarily</H1>
-< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/allcalendars/full?gsessionid=SZxZFiNUslkrr6PitF3XOg";>here</A>.
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/allcalendars/full?gsessionid=58E7R9WlT_6a7-yMgWl0Vg";>here</A>.
 < </BODY>
 < </HTML>
   
-> GET /calendar/feeds/default/allcalendars/full?gsessionid=SZxZFiNUslkrr6PitF3XOg HTTP/1.1
-> Soup-Debug-Timestamp: 1375107895
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 7 (0x6d12c0), SoupSocket 12 (0x8dea20), restarted
+> GET /calendar/feeds/default/allcalendars/full?gsessionid=58E7R9WlT_6a7-yMgWl0Vg HTTP/1.1
+> Soup-Debug-Timestamp: 1375202675
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 7 (0x8c2aa0), SoupSocket 12 (0x775250), restarted
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375107896
-< Soup-Debug: SoupMessage 7 (0x6d12c0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-ODYysS96Taaw1NaIYtJAAHEXCZ_GMPV8cwrWmi_-pskMkzDa8yS5h3Lx6BUX8K1OQLMPBV7rpZGHtUa1jYE1jA_4X05rZ800eKz2vNaGdZYoiYJwGnkqCe72OBS-ReHTEtvQtr7VG9ZYkAslaj0Tffvz8pB9ItwBfiM3-4oLSkIEFXx8_eyUlfeNChSfSAvSSqTyG58No5P6HZMRKSJtwsyLwtxAl4BhBMfGX_Uh_z0XCyGMW8beXiNXZ4h5XkwP
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:24:56 GMT
-< Set-Cookie: S=calendar=_eztRlU6KU1a7lLy3lrqfQ;Expires=Wed, 07-Aug-2013 07:56:37 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:24:56 GMT
-< Date: Mon, 29 Jul 2013 14:24:56 GMT
+< Soup-Debug-Timestamp: 1375202675
+< Soup-Debug: SoupMessage 7 (0x8c2aa0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_q4NwI2V8UT-SSEMjiblkY8jTSCIGQJCo_ZFavemirrG0G2jzg3jjEVC3CQauPSZoNTFtDCw6Eu1-1S6nOyDK2J9zwLcpKLPHGuWk8fzL5JjKgN0Z0HbdhVtGaldMU2XCoc4_I0dsAZNFNzMl12pQ2IhlOpKYk_syrjXgbEIFWB07e6wSu6Mp1XswtWQL95nokCfWJkTHf4YGsR2zpy2736UplfLIVHDJLz7fiJzKG-5nUmoz2a5jdwopbkQ6flW44tTL7okPm_2Y6nqlPi74Mg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:44:36 GMT
+< Set-Cookie: S=calendar=QAxuXPE6j7fZqmf9NvuwwQ;Expires=Sun, 11-Aug-2013 00:55:31 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:44:35 GMT
+< Date: Tue, 30 Jul 2013 16:44:35 GMT
 < Content-Type: application/atom+xml; charset=UTF-8; type=feed
 < Cache-control: private, max-age=0, must-revalidate, no-transform
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 2.6
-< ETag: W/"DU8NR3wyfip7JGA9WhFWEU0."
-< Last-Modified: Mon, 29 Jul 2013 14:24:56 GMT
+< ETag: W/"CEEDRHk6eCp7JGA9WhFWEk0."
+< Last-Modified: Tue, 30 Jul 2013 16:44:35 GMT
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
 < X-XSS-Protection: 1; mode=block
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;DU8NR3wyfip7JGA9WhFWEU0.&quot;' 
gd:kind='calendar#calendarFeed'><id>http://www.google.com/calendar/feeds/default/allcalendars/full</id><updated>2013-07-29T14:24:56.296Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title>GData Test's Calendar List</title><link 
rel='alternate' type='text/html' href='https://www.google.com/calendar/render'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/all
 calendars/full'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><author><name>libgdata test 
googlemail com</name><email>libgdata test googlemail com</email></author><generator version='1.0' 
uri='http://www.google.com/calendar'>Google 
Calendar</generator><openSearch:startIndex>1</openSearch:startIndex><entry 
gd:etag='W/&quot;DU8NRH47eCp7JGA9WhFWEU0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/libgdata.test%40googlemail.com</id><published>2013-07-29T14:24:55.927Z</published><updated>2013-07-29T14:24:55.000Z</updated><app:edited>2013-07-29T14:24:55.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>libgdata test googlemail 
com</title><content type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link
  rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/acl/full'/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/libgdata.test%40googlemail.com'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/libgdata.test%40googlemail.com'/><author><name>libgdata
 test googlemail com</name><email>libgdata test googlemail com</email></author><gCal:accesslevel 
value='owner'/><gCal:color value='#2952A3'/><gCal:hidden value='false'/><gCal:select
 ed value='true'/><gCal:timezone value='Europe/London'/><gCal:timesCleaned value='4'/></entry><entry 
gd:etag='W/&quot;DU8NQn47eCp7JGA9WhFWEU0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/j6e041kl4qupp9me0214n6q62o%40group.calendar.google.com</id><published>2013-07-29T14:24:55.927Z</published><updated>2013-07-29T14:24:53.000Z</updated><app:edited>2013-07-29T14:24:53.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 1</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/j6e041kl4qupp9me0214n6q62o%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/j6e041kl4qupp9me0214n6q62o%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml'
  
href='https://www.google.com/calendar/feeds/j6e041kl4qupp9me0214n6q62o%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/j6e041kl4qupp9me0214n6q62o%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/j6e041kl4qupp9me0214n6q62o%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/j6e041kl4qupp9me0214n6q62o%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;A0MARX47eCp7JGA9WhFXFEs.&quot;' 
gd:kind='calendar#calendar'><id>http://w
 
ww.google.com/calendar/feeds/default/calendars/q5e0o6tibdrmt37nepdrgpi834%40group.calendar.google.com</id><published>2013-07-29T14:24:55.969Z</published><updated>2013-07-22T05:04:04.000Z</updated><app:edited>2013-07-22T05:04:04.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 1</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/q5e0o6tibdrmt37nepdrgpi834%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/q5e0o6tibdrmt37nepdrgpi834%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/q5e0o6tibdrmt37nepdrgpi834%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='app
 lication/atom+xml' 
href='https://www.google.com/calendar/feeds/q5e0o6tibdrmt37nepdrgpi834%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/q5e0o6tibdrmt37nepdrgpi834%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/q5e0o6tibdrmt37nepdrgpi834%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;D0QEQn47eCp7JGA9WhFXFEQ.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/pjtb9f9ftlagtskodcno87df64%40group.calendar.google.com</id><published>2013-07-29T14:24:55.958Z</published><updated>2013-07-22T12:15:03.000Z</u
 pdated><app:edited>2013-07-22T12:15:03.000Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 1</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/pjtb9f9ftlagtskodcno87df64%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/pjtb9f9ftlagtskodcno87df64%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/pjtb9f9ftlagtskodcno87df64%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/pjtb9f9ftlagtskodcno87df64%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' href='https://w
 
ww.google.com/calendar/feeds/default/allcalendars/full/pjtb9f9ftlagtskodcno87df64%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/pjtb9f9ftlagtskodcno87df64%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;CkUNQn47eCp7JGA9WhFXFEs.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/u1ba6qqo23qpu37hv798035fj4%40group.calendar.google.com</id><published>2013-07-29T14:24:56.014Z</published><updated>2013-07-22T02:31:33.000Z</updated><app:edited>2013-07-22T02:31:33.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>
 Test Calendar 1</title><content type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/u1ba6qqo23qpu37hv798035fj4%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/u1ba6qqo23qpu37hv798035fj4%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/u1ba6qqo23qpu37hv798035fj4%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/u1ba6qqo23qpu37hv798035fj4%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/u1ba6qqo23qpu37hv798035fj4%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' href='https://www.google.com/cal
 
endar/feeds/default/allcalendars/full/u1ba6qqo23qpu37hv798035fj4%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;CkcCRX47eCp7JGA9WhFXEEQ.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/0o4kev4meqmacse9dfg7spuc54%40group.calendar.google.com</id><published>2013-07-29T14:24:56.063Z</published><updated>2013-07-17T19:41:04.000Z</updated><app:edited>2013-07-17T19:41:04.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 1</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/0o4kev4meqmacse9dfg7spuc54%40group.calendar.google.com/private/full'/><link
 rel='alter
 nate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/0o4kev4meqmacse9dfg7spuc54%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/0o4kev4meqmacse9dfg7spuc54%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/0o4kev4meqmacse9dfg7spuc54%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/0o4kev4meqmacse9dfg7spuc54%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/0o4kev4meqmacse9dfg7spuc54%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color valu
 e='#7A367A'/><gCal:hidden value='false'/><gCal:selected value='false'/><gCal:timezone 
value='UTC'/><gCal:timesCleaned value='0'/></entry><entry gd:etag='W/&quot;C0IMSX47eCp7JGA9WhFXEUs.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/adj4kq31s34mapkjk2tqoeg10o%40group.calendar.google.com</id><published>2013-07-29T14:24:56.063Z</published><updated>2013-07-18T15:33:08.000Z</updated><app:edited>2013-07-18T15:33:08.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 1</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/adj4kq31s34mapkjk2tqoeg10o%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/adj4kq31s34mapkjk2tqoeg10o%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal
 /2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/adj4kq31s34mapkjk2tqoeg10o%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/adj4kq31s34mapkjk2tqoeg10o%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/adj4kq31s34mapkjk2tqoeg10o%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/adj4kq31s34mapkjk2tqoeg10o%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;DU8NRH47eCp7JGA9WhFWEU0.&quo
 t;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/uad96gmi54dhte3ui1c9v50bb4%40group.calendar.google.com</id><published>2013-07-29T14:24:55.951Z</published><updated>2013-07-29T14:24:55.000Z</updated><app:edited>2013-07-29T14:24:55.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 2</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/uad96gmi54dhte3ui1c9v50bb4%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/uad96gmi54dhte3ui1c9v50bb4%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/uad96gmi54dhte3ui1c9v50bb4%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.goog
 le.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/uad96gmi54dhte3ui1c9v50bb4%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/uad96gmi54dhte3ui1c9v50bb4%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/uad96gmi54dhte3ui1c9v50bb4%40group.calendar.google.com'/><author><name>Test
 Calendar 2</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;CEcEQH47eCp7JGA9WhFXFEk.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/tdfbnqgkir4ealuojaptg4ugo4%40group.calendar.google.com</id><published>2013-07-29T14:24:56.068Z</pu
 
blished><updated>2013-07-21T21:26:41.000Z</updated><app:edited>2013-07-21T21:26:41.000Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 2</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/tdfbnqgkir4ealuojaptg4ugo4%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/tdfbnqgkir4ealuojaptg4ugo4%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/tdfbnqgkir4ealuojaptg4ugo4%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/tdfbnqgkir4ealuojaptg4ugo4%40group.calendar.google.com/acl/full'/><link
 rel='self'
  type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/tdfbnqgkir4ealuojaptg4ugo4%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/tdfbnqgkir4ealuojaptg4ugo4%40group.calendar.google.com'/><author><name>Test
 Calendar 2</name></author><gCal:accesslevel value='owner'/><gCal:color value='#2952A3'/><gCal:hidden 
value='false'/><gCal:selected value='true'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;CUINSH47eCp7JGA9WhFXFkw.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/iukm1aqo76uncod4fiblvpf360%40group.calendar.google.com</id><published>2013-07-29T14:24:56.052Z</published><updated>2013-07-23T21:06:39.000Z</updated><app:edited>2013-07-23T21:06:39.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g
 Cal/2005#calendarmeta'/><title type='text'>Test Calendar 2</title><content type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/iukm1aqo76uncod4fiblvpf360%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/iukm1aqo76uncod4fiblvpf360%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/iukm1aqo76uncod4fiblvpf360%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/iukm1aqo76uncod4fiblvpf360%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/iukm1aqo76uncod4fiblvpf360%40group.calendar.google.com'/><link
 rel='edit' type='application
 /atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/iukm1aqo76uncod4fiblvpf360%40group.calendar.google.com'/><author><name>Test
 Calendar 2</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;CkcAR347eCp7JGA9WhFXEUo.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/g2s9f1415gpflngh79t7p4iupk%40group.calendar.google.com</id><published>2013-07-29T14:24:56.053Z</published><updated>2013-07-18T17:54:06.000Z</updated><app:edited>2013-07-18T17:54:06.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 2</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/g2s9f1415gpflngh79t7p4iupk%40group.calendar
 .google.com/private/full'/><link rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/g2s9f1415gpflngh79t7p4iupk%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/g2s9f1415gpflngh79t7p4iupk%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/g2s9f1415gpflngh79t7p4iupk%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/g2s9f1415gpflngh79t7p4iupk%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/g2s9f1415gpflngh79t7p4iupk%40group.calendar.google.com'/><author><name>Test
 Calendar 2</name></author><gCal:
 accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden value='false'/><gCal:selected 
value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned value='0'/></entry><entry 
gd:etag='W/&quot;DEUBR347eCp7JGA9WhFXE0s.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/qsr4sk4kj8s8o9rbnt3t9c6kr8%40group.calendar.google.com</id><published>2013-07-29T14:24:56.065Z</published><updated>2013-07-21T00:24:16.000Z</updated><app:edited>2013-07-21T00:24:16.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 3</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/qsr4sk4kj8s8o9rbnt3t9c6kr8%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/qsr4sk4kj8s8o9rbnt3t9c6kr8%40group.calendar.google.com/private/full'
 /><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/qsr4sk4kj8s8o9rbnt3t9c6kr8%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/qsr4sk4kj8s8o9rbnt3t9c6kr8%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/qsr4sk4kj8s8o9rbnt3t9c6kr8%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/qsr4sk4kj8s8o9rbnt3t9c6kr8%40group.calendar.google.com'/><author><name>Test
 Calendar 3</name></author><gCal:accesslevel value='owner'/><gCal:color value='#2952A3'/><gCal:hidden 
value='false'/><gCal:selected value='true'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry></feed>
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CEEDRHk6eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendarFeed'><id>http://www.google.com/calendar/feeds/default/allcalendars/full</id><updated>2013-07-30T16:44:35.710Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title>GData Test's Calendar List</title><link 
rel='alternate' type='text/html' href='https://www.google.com/calendar/render'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/all
 calendars/full'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><author><name>libgdata test 
googlemail com</name><email>libgdata test googlemail com</email></author><generator version='1.0' 
uri='http://www.google.com/calendar'>Google 
Calendar</generator><openSearch:startIndex>1</openSearch:startIndex><entry 
gd:etag='W/&quot;CEEDRX47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/libgdata.test%40googlemail.com</id><published>2013-07-30T16:44:35.550Z</published><updated>2013-07-30T16:44:34.000Z</updated><app:edited>2013-07-30T16:44:34.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>libgdata test googlemail 
com</title><content type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link
  rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/acl/full'/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/libgdata.test%40googlemail.com'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/libgdata.test%40googlemail.com'/><author><name>libgdata
 test googlemail com</name><email>libgdata test googlemail com</email></author><gCal:accesslevel 
value='owner'/><gCal:color value='#2952A3'/><gCal:hidden value='false'/><gCal:select
 ed value='true'/><gCal:timezone value='Europe/London'/><gCal:timesCleaned value='4'/></entry><entry 
gd:etag='W/&quot;CEEDQH47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/k3aqq5l45p35ehjnsona6f5lig%40group.calendar.google.com</id><published>2013-07-30T16:44:35.616Z</published><updated>2013-07-30T16:44:31.000Z</updated><app:edited>2013-07-30T16:44:31.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 1</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/k3aqq5l45p35ehjnsona6f5lig%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/k3aqq5l45p35ehjnsona6f5lig%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml'
  
href='https://www.google.com/calendar/feeds/k3aqq5l45p35ehjnsona6f5lig%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/k3aqq5l45p35ehjnsona6f5lig%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/k3aqq5l45p35ehjnsona6f5lig%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/k3aqq5l45p35ehjnsona6f5lig%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;CEEDRX47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://w
 
ww.google.com/calendar/feeds/default/calendars/l0fg03in3kl4loj3str7igu03g%40group.calendar.google.com</id><published>2013-07-30T16:44:35.636Z</published><updated>2013-07-30T16:44:34.000Z</updated><app:edited>2013-07-30T16:44:34.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 2</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/l0fg03in3kl4loj3str7igu03g%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/l0fg03in3kl4loj3str7igu03g%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/l0fg03in3kl4loj3str7igu03g%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='app
 lication/atom+xml' 
href='https://www.google.com/calendar/feeds/l0fg03in3kl4loj3str7igu03g%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/l0fg03in3kl4loj3str7igu03g%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/l0fg03in3kl4loj3str7igu03g%40group.calendar.google.com'/><author><name>Test
 Calendar 2</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry></feed>
   
diff --git a/gdata/tests/traces/calendar/query-all-calendars-async-progress-closure 
b/gdata/tests/traces/calendar/query-all-calendars-async-progress-closure
index 6cd1be6..1c651d6 100644
--- a/gdata/tests/traces/calendar/query-all-calendars-async-progress-closure
+++ b/gdata/tests/traces/calendar/query-all-calendars-async-progress-closure
@@ -1,21 +1,21 @@
GET /calendar/feeds/default/allcalendars/full HTTP/1.1
-> Soup-Debug-Timestamp: 1375107932
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 31 (0x7fffe406f1c0), SoupSocket 32 (0x8deea0)
+> Soup-Debug-Timestamp: 1375202716
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 31 (0x7fffe003f640), SoupSocket 32 (0x775310)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 302 Moved Temporarily
-< Soup-Debug-Timestamp: 1375107932
-< Soup-Debug: SoupMessage 31 (0x7fffe406f1c0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXThTgckY3-hSb61OvnzXxSJ7d2jzDTq4SYJOcXEK19cfN8WmIspK2CGATjYnx3q1Fz9ZgntzaOCi00pQJhkctNT
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:25:33 GMT
-< Set-Cookie: S=calendar=2m1xSHOJcSlRKB2NbBn7rg;Expires=Mon, 05-Aug-2013 14:58:37 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:25:32 GMT
-< Date: Mon, 29 Jul 2013 14:25:32 GMT
-< Location: https://www.google.com/calendar/feeds/default/allcalendars/full?gsessionid=2m1xSHOJcSlRKB2NbBn7rg
+< Soup-Debug-Timestamp: 1375202716
+< Soup-Debug: SoupMessage 31 (0x7fffe003f640)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_t4EurujSJEVz4Oz9mAIOytzvk2x5HxgdMhjgmIZQyEhJEVxBkGa9tYZB61Yy8JtAPaktxoTLVkhp854Pjz3Lu2nGX3VFkbf3hmep1Z77H5UUPxIsLyYKJ-XIqF26WY8xy6o6N8-w_azdQg_R57FuB6O-GUgGUKDr2aKE9iTWpO0XsB7-zCP0UEx7yuXEnbLb7XVAw5KqOV1FqKEA6grSKkAqUaQftC9ppmNnCTUl0XskgKlvQxIBg-580Pa1-4yjY5tacPmBQVR42znpOSUkcg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:45:17 GMT
+< Set-Cookie: S=calendar=1JcZXDt8pcgXe8x7dR5dgA;Expires=Fri, 09-Aug-2013 11:54:18 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:45:16 GMT
+< Date: Tue, 30 Jul 2013 16:45:16 GMT
+< Location: https://www.google.com/calendar/feeds/default/allcalendars/full?gsessionid=1JcZXDt8pcgXe8x7dR5dgA
 < Content-Type: text/html; charset=UTF-8
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -30,38 +30,38 @@
 < </HEAD>
 < <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
 < <H1>Moved Temporarily</H1>
-< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/allcalendars/full?gsessionid=2m1xSHOJcSlRKB2NbBn7rg";>here</A>.
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/allcalendars/full?gsessionid=1JcZXDt8pcgXe8x7dR5dgA";>here</A>.
 < </BODY>
 < </HTML>
   
-> GET /calendar/feeds/default/allcalendars/full?gsessionid=2m1xSHOJcSlRKB2NbBn7rg HTTP/1.1
-> Soup-Debug-Timestamp: 1375107932
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 31 (0x7fffe406f1c0), SoupSocket 32 (0x8deea0), restarted
+> GET /calendar/feeds/default/allcalendars/full?gsessionid=1JcZXDt8pcgXe8x7dR5dgA HTTP/1.1
+> Soup-Debug-Timestamp: 1375202716
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 31 (0x7fffe003f640), SoupSocket 32 (0x775310), restarted
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375107933
-< Soup-Debug: SoupMessage 31 (0x7fffe406f1c0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-ODYysS96Taaw1NaIYtJAAHEXCZ_GMPV8cwrWmi_-pskMkzDa8yS5h3Lx6BUX8K1OQLMPBV7rpZGHtUa1jYE1jA_4X05rZ800eKz2vNaGdZYoiYJwGnkqCe72OBS-ReHTEtvQtr7VG9ZYkAslaj0Tffvz8pB9ItwBfiM3-4oLSkIEFXx8_eyUlfeNChSfSAvSSqTyG58No5P6HZMRKSJtwsyLwtxAl4BhBMfGX_Uh_z0XCyGMW8beXiNXZ4h5XkwP
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:25:33 GMT
-< Set-Cookie: S=calendar=JLi_2EH3O7j7nJ0a4351LQ;Expires=Thu, 08-Aug-2013 06:33:56 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:25:33 GMT
-< Date: Mon, 29 Jul 2013 14:25:33 GMT
+< Soup-Debug-Timestamp: 1375202717
+< Soup-Debug: SoupMessage 31 (0x7fffe003f640)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_x9DCxs6Yn1ShR7x5wx1k6e37TbqaZyvZnHbBDD5MjDqIwu2doXjOCD97mfXE8YE20iZQLD52PYbtpDGgujgmHXXGW1wlvqMs94qpgxdE8eYecbfbso9UjfaO5uqfvsRXIhKhe7zV2m0bacHn0JcyH7mkYYXHxHv7XZ_tjZftH-i5SVfC5OZaKOQXxynRfd_Yz5PzuJngGrHUxv5bViZFI3gQCqJikX_t9TXaydAiNvFoCzIgXcLmw11rsBONKvKvzka6NqtM8xqoAdhWs62jAQ
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:45:18 GMT
+< Set-Cookie: S=calendar=OEkDTb3q_U4lKCiI6oeybw;Expires=Mon, 12-Aug-2013 17:52:13 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:45:17 GMT
+< Date: Tue, 30 Jul 2013 16:45:17 GMT
 < Content-Type: application/atom+xml; charset=UTF-8; type=feed
 < Cache-control: private, max-age=0, must-revalidate, no-transform
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 2.6
-< ETag: W/"DU4HQn08eCp7JGA9WhFWEU0."
-< Last-Modified: Mon, 29 Jul 2013 14:25:33 GMT
+< ETag: W/"CEAFRnoyeyp7JGA9WhFWEk0."
+< Last-Modified: Tue, 30 Jul 2013 16:45:17 GMT
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
 < X-XSS-Protection: 1; mode=block
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;DU4HQn08eCp7JGA9WhFWEU0.&quot;' 
gd:kind='calendar#calendarFeed'><id>http://www.google.com/calendar/feeds/default/allcalendars/full</id><updated>2013-07-29T14:25:33.370Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title>GData Test's Calendar List</title><link 
rel='alternate' type='text/html' href='https://www.google.com/calendar/render'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/all
 calendars/full'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><author><name>libgdata test 
googlemail com</name><email>libgdata test googlemail com</email></author><generator version='1.0' 
uri='http://www.google.com/calendar'>Google 
Calendar</generator><openSearch:startIndex>1</openSearch:startIndex><entry 
gd:etag='W/&quot;DU4HQH47eCp7JGA9WhFWEU0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/libgdata.test%40googlemail.com</id><published>2013-07-29T14:25:33.140Z</published><updated>2013-07-29T14:25:31.000Z</updated><app:edited>2013-07-29T14:25:31.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>libgdata test googlemail 
com</title><content type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link
  rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/acl/full'/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/libgdata.test%40googlemail.com'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/libgdata.test%40googlemail.com'/><author><name>libgdata
 test googlemail com</name><email>libgdata test googlemail com</email></author><gCal:accesslevel 
value='owner'/><gCal:color value='#2952A3'/><gCal:hidden value='false'/><gCal:select
 ed value='true'/><gCal:timezone value='Europe/London'/><gCal:timesCleaned value='4'/></entry><entry 
gd:etag='W/&quot;A0MARX47eCp7JGA9WhFXFEs.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/q5e0o6tibdrmt37nepdrgpi834%40group.calendar.google.com</id><published>2013-07-29T14:25:33.140Z</published><updated>2013-07-22T05:04:04.000Z</updated><app:edited>2013-07-22T05:04:04.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 1</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/q5e0o6tibdrmt37nepdrgpi834%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/q5e0o6tibdrmt37nepdrgpi834%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml'
  
href='https://www.google.com/calendar/feeds/q5e0o6tibdrmt37nepdrgpi834%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/q5e0o6tibdrmt37nepdrgpi834%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/q5e0o6tibdrmt37nepdrgpi834%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/q5e0o6tibdrmt37nepdrgpi834%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;DU4GSH47eCp7JGA9WhFWEU0.&quot;' 
gd:kind='calendar#calendar'><id>http://w
 
ww.google.com/calendar/feeds/default/calendars/s761qdbq2b6r8ec5ch7dd2885s%40group.calendar.google.com</id><published>2013-07-29T14:25:33.140Z</published><updated>2013-07-29T14:25:29.000Z</updated><app:edited>2013-07-29T14:25:29.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 1</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/s761qdbq2b6r8ec5ch7dd2885s%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/s761qdbq2b6r8ec5ch7dd2885s%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/s761qdbq2b6r8ec5ch7dd2885s%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='app
 lication/atom+xml' 
href='https://www.google.com/calendar/feeds/s761qdbq2b6r8ec5ch7dd2885s%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/s761qdbq2b6r8ec5ch7dd2885s%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/s761qdbq2b6r8ec5ch7dd2885s%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;D0QEQn47eCp7JGA9WhFXFEQ.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/pjtb9f9ftlagtskodcno87df64%40group.calendar.google.com</id><published>2013-07-29T14:25:33.140Z</published><updated>2013-07-22T12:15:03.000Z</u
 pdated><app:edited>2013-07-22T12:15:03.000Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 1</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/pjtb9f9ftlagtskodcno87df64%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/pjtb9f9ftlagtskodcno87df64%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/pjtb9f9ftlagtskodcno87df64%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/pjtb9f9ftlagtskodcno87df64%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' href='https://w
 
ww.google.com/calendar/feeds/default/allcalendars/full/pjtb9f9ftlagtskodcno87df64%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/pjtb9f9ftlagtskodcno87df64%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;CkUNQn47eCp7JGA9WhFXFEs.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/u1ba6qqo23qpu37hv798035fj4%40group.calendar.google.com</id><published>2013-07-29T14:25:33.141Z</published><updated>2013-07-22T02:31:33.000Z</updated><app:edited>2013-07-22T02:31:33.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>
 Test Calendar 1</title><content type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/u1ba6qqo23qpu37hv798035fj4%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/u1ba6qqo23qpu37hv798035fj4%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/u1ba6qqo23qpu37hv798035fj4%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/u1ba6qqo23qpu37hv798035fj4%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/u1ba6qqo23qpu37hv798035fj4%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' href='https://www.google.com/cal
 
endar/feeds/default/allcalendars/full/u1ba6qqo23qpu37hv798035fj4%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;CkcCRX47eCp7JGA9WhFXEEQ.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/0o4kev4meqmacse9dfg7spuc54%40group.calendar.google.com</id><published>2013-07-29T14:25:33.142Z</published><updated>2013-07-17T19:41:04.000Z</updated><app:edited>2013-07-17T19:41:04.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 1</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/0o4kev4meqmacse9dfg7spuc54%40group.calendar.google.com/private/full'/><link
 rel='alter
 nate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/0o4kev4meqmacse9dfg7spuc54%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/0o4kev4meqmacse9dfg7spuc54%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/0o4kev4meqmacse9dfg7spuc54%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/0o4kev4meqmacse9dfg7spuc54%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/0o4kev4meqmacse9dfg7spuc54%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color valu
 e='#7A367A'/><gCal:hidden value='false'/><gCal:selected value='false'/><gCal:timezone 
value='UTC'/><gCal:timesCleaned value='0'/></entry><entry gd:etag='W/&quot;C0IMSX47eCp7JGA9WhFXEUs.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/adj4kq31s34mapkjk2tqoeg10o%40group.calendar.google.com</id><published>2013-07-29T14:25:33.139Z</published><updated>2013-07-18T15:33:08.000Z</updated><app:edited>2013-07-18T15:33:08.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 1</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/adj4kq31s34mapkjk2tqoeg10o%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/adj4kq31s34mapkjk2tqoeg10o%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal
 /2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/adj4kq31s34mapkjk2tqoeg10o%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/adj4kq31s34mapkjk2tqoeg10o%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/adj4kq31s34mapkjk2tqoeg10o%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/adj4kq31s34mapkjk2tqoeg10o%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;CEcEQH47eCp7JGA9WhFXFEk.&quo
 t;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/tdfbnqgkir4ealuojaptg4ugo4%40group.calendar.google.com</id><published>2013-07-29T14:25:33.142Z</published><updated>2013-07-21T21:26:41.000Z</updated><app:edited>2013-07-21T21:26:41.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 2</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/tdfbnqgkir4ealuojaptg4ugo4%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/tdfbnqgkir4ealuojaptg4ugo4%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/tdfbnqgkir4ealuojaptg4ugo4%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.goog
 le.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/tdfbnqgkir4ealuojaptg4ugo4%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/tdfbnqgkir4ealuojaptg4ugo4%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/tdfbnqgkir4ealuojaptg4ugo4%40group.calendar.google.com'/><author><name>Test
 Calendar 2</name></author><gCal:accesslevel value='owner'/><gCal:color value='#2952A3'/><gCal:hidden 
value='false'/><gCal:selected value='true'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;DU4HQ347eCp7JGA9WhFWEU0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/tsropkd5p35mf7o2qgj1nh0020%40group.calendar.google.com</id><published>2013-07-29T14:25:33.224Z</pub
 lished><updated>2013-07-29T14:25:32.000Z</updated><app:edited>2013-07-29T14:25:32.000Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 2</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/tsropkd5p35mf7o2qgj1nh0020%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/tsropkd5p35mf7o2qgj1nh0020%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/tsropkd5p35mf7o2qgj1nh0020%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/tsropkd5p35mf7o2qgj1nh0020%40group.calendar.google.com/acl/full'/><link
 rel='self' 
 type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/tsropkd5p35mf7o2qgj1nh0020%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/tsropkd5p35mf7o2qgj1nh0020%40group.calendar.google.com'/><author><name>Test
 Calendar 2</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;CkcAR347eCp7JGA9WhFXEUo.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/g2s9f1415gpflngh79t7p4iupk%40group.calendar.google.com</id><published>2013-07-29T14:25:33.140Z</published><updated>2013-07-18T17:54:06.000Z</updated><app:edited>2013-07-18T17:54:06.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g
 Cal/2005#calendarmeta'/><title type='text'>Test Calendar 2</title><content type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/g2s9f1415gpflngh79t7p4iupk%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/g2s9f1415gpflngh79t7p4iupk%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/g2s9f1415gpflngh79t7p4iupk%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/g2s9f1415gpflngh79t7p4iupk%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/g2s9f1415gpflngh79t7p4iupk%40group.calendar.google.com'/><link
 rel='edit' type='application
 /atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/g2s9f1415gpflngh79t7p4iupk%40group.calendar.google.com'/><author><name>Test
 Calendar 2</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;CUINSH47eCp7JGA9WhFXFkw.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/iukm1aqo76uncod4fiblvpf360%40group.calendar.google.com</id><published>2013-07-29T14:25:33.139Z</published><updated>2013-07-23T21:06:39.000Z</updated><app:edited>2013-07-23T21:06:39.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 2</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/iukm1aqo76uncod4fiblvpf360%40group.calendar
 .google.com/private/full'/><link rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/iukm1aqo76uncod4fiblvpf360%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/iukm1aqo76uncod4fiblvpf360%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/iukm1aqo76uncod4fiblvpf360%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/iukm1aqo76uncod4fiblvpf360%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/iukm1aqo76uncod4fiblvpf360%40group.calendar.google.com'/><author><name>Test
 Calendar 2</name></author><gCal:
 accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden value='false'/><gCal:selected 
value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned value='0'/></entry><entry 
gd:etag='W/&quot;DEUBR347eCp7JGA9WhFXE0s.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/qsr4sk4kj8s8o9rbnt3t9c6kr8%40group.calendar.google.com</id><published>2013-07-29T14:25:33.142Z</published><updated>2013-07-21T00:24:16.000Z</updated><app:edited>2013-07-21T00:24:16.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 3</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/qsr4sk4kj8s8o9rbnt3t9c6kr8%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/qsr4sk4kj8s8o9rbnt3t9c6kr8%40group.calendar.google.com/private/full'
 /><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/qsr4sk4kj8s8o9rbnt3t9c6kr8%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/qsr4sk4kj8s8o9rbnt3t9c6kr8%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/qsr4sk4kj8s8o9rbnt3t9c6kr8%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/qsr4sk4kj8s8o9rbnt3t9c6kr8%40group.calendar.google.com'/><author><name>Test
 Calendar 3</name></author><gCal:accesslevel value='owner'/><gCal:color value='#2952A3'/><gCal:hidden 
value='false'/><gCal:selected value='true'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry></feed>
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CEAFRnoyeyp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendarFeed'><id>http://www.google.com/calendar/feeds/default/allcalendars/full</id><updated>2013-07-30T16:45:17.493Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title>GData Test's Calendar List</title><link 
rel='alternate' type='text/html' href='https://www.google.com/calendar/render'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/all
 calendars/full'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><author><name>libgdata test 
googlemail com</name><email>libgdata test googlemail com</email></author><generator version='1.0' 
uri='http://www.google.com/calendar'>Google 
Calendar</generator><openSearch:startIndex>1</openSearch:startIndex><entry 
gd:etag='W/&quot;CEAFR347eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/libgdata.test%40googlemail.com</id><published>2013-07-30T16:45:17.370Z</published><updated>2013-07-30T16:45:16.000Z</updated><app:edited>2013-07-30T16:45:16.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>libgdata test googlemail 
com</title><content type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link
  rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/acl/full'/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/libgdata.test%40googlemail.com'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/libgdata.test%40googlemail.com'/><author><name>libgdata
 test googlemail com</name><email>libgdata test googlemail com</email></author><gCal:accesslevel 
value='owner'/><gCal:color value='#2952A3'/><gCal:hidden value='false'/><gCal:select
 ed value='true'/><gCal:timezone value='Europe/London'/><gCal:timesCleaned value='4'/></entry><entry 
gd:etag='W/&quot;CEAFRH47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/tfn5sptdhn0te2l1koigfu6cak%40group.calendar.google.com</id><published>2013-07-30T16:45:17.395Z</published><updated>2013-07-30T16:45:15.000Z</updated><app:edited>2013-07-30T16:45:15.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 1</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/tfn5sptdhn0te2l1koigfu6cak%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/tfn5sptdhn0te2l1koigfu6cak%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml'
  
href='https://www.google.com/calendar/feeds/tfn5sptdhn0te2l1koigfu6cak%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/tfn5sptdhn0te2l1koigfu6cak%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/tfn5sptdhn0te2l1koigfu6cak%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/tfn5sptdhn0te2l1koigfu6cak%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;CEAFR347eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://w
 
ww.google.com/calendar/feeds/default/calendars/s7534c0sqfr8l21mi65nn7pmm8%40group.calendar.google.com</id><published>2013-07-30T16:45:17.425Z</published><updated>2013-07-30T16:45:16.000Z</updated><app:edited>2013-07-30T16:45:16.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 2</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/s7534c0sqfr8l21mi65nn7pmm8%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/s7534c0sqfr8l21mi65nn7pmm8%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/s7534c0sqfr8l21mi65nn7pmm8%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='app
 lication/atom+xml' 
href='https://www.google.com/calendar/feeds/s7534c0sqfr8l21mi65nn7pmm8%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/s7534c0sqfr8l21mi65nn7pmm8%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/s7534c0sqfr8l21mi65nn7pmm8%40group.calendar.google.com'/><author><name>Test
 Calendar 2</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry></feed>
   
diff --git a/gdata/tests/traces/calendar/query-events b/gdata/tests/traces/calendar/query-events
index 3cdb9b8..6c541dd 100644
--- a/gdata/tests/traces/calendar/query-events
+++ b/gdata/tests/traces/calendar/query-events
@@ -1,21 +1,21 @@
-> GET /calendar/feeds/cearmekccai4rpqlq932h43mko%40group.calendar.google.com/private/full HTTP/1.1
-> Soup-Debug-Timestamp: 1375107913
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 19 (0x7fffe003a9d0), SoupSocket 24 (0x8ded20)
+> GET /calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full HTTP/1.1
+> Soup-Debug-Timestamp: 1375202696
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 19 (0x8c2b90), SoupSocket 24 (0x7753d0)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 302 Moved Temporarily
-< Soup-Debug-Timestamp: 1375107913
-< Soup-Debug: SoupMessage 19 (0x7fffe003a9d0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXThTgckY3-hSb61OvnzXxSJ7d2jzDTq4SYJOcXEK19cfN8WmIspK2CGATjYnx3q1Fz9ZgntzaOCi00pQJhkctNT
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:25:14 GMT
-< Set-Cookie: S=calendar=F5xee2Rk_sxbHgdtUHZGJQ;Expires=Wed, 07-Aug-2013 16:39:04 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:25:13 GMT
-< Date: Mon, 29 Jul 2013 14:25:13 GMT
-< Location: 
https://www.google.com/calendar/feeds/cearmekccai4rpqlq932h43mko%40group.calendar.google.com/private/full?gsessionid=F5xee2Rk_sxbHgdtUHZGJQ
+< Soup-Debug-Timestamp: 1375202696
+< Soup-Debug: SoupMessage 19 (0x8c2b90)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_t4EurujSJEVz4Oz9mAIOytzvk2x5HxgdMhjgmIZQyEhJEVxBkGa9tYZB61Yy8JtAPaktxoTLVkhp854Pjz3Lu2nGX3VFkbf3hmep1Z77H5UUPxIsLyYKJ-XIqF26WY8xy6o6N8-w_azdQg_R57FuB6O-GUgGUKDr2aKE9iTWpO0XsB7-zCP0UEx7yuXEnbLb7XVAw5KqOV1FqKEA6grSKkAqUaQftC9ppmNnCTUl0XskgKlvQxIBg-580Pa1-4yjY5tacPmBQVR42znpOSUkcg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:44:57 GMT
+< Set-Cookie: S=calendar=zX87lcTPkns-ErdX3socLw;Expires=Fri, 09-Aug-2013 10:35:11 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:44:56 GMT
+< Date: Tue, 30 Jul 2013 16:44:56 GMT
+< Location: 
https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full?gsessionid=zX87lcTPkns-ErdX3socLw
 < Content-Type: text/html; charset=UTF-8
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -30,38 +30,38 @@
 < </HEAD>
 < <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
 < <H1>Moved Temporarily</H1>
-< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/cearmekccai4rpqlq932h43mko%40group.calendar.google.com/private/full?gsessionid=F5xee2Rk_sxbHgdtUHZGJQ";>here</A>.
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full?gsessionid=zX87lcTPkns-ErdX3socLw";>here</A>.
 < </BODY>
 < </HTML>
   
-> GET 
/calendar/feeds/cearmekccai4rpqlq932h43mko%40group.calendar.google.com/private/full?gsessionid=F5xee2Rk_sxbHgdtUHZGJQ
 HTTP/1.1
-> Soup-Debug-Timestamp: 1375107913
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 19 (0x7fffe003a9d0), SoupSocket 24 (0x8ded20), restarted
+> GET 
/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full?gsessionid=zX87lcTPkns-ErdX3socLw
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375202696
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 19 (0x8c2b90), SoupSocket 24 (0x7753d0), restarted
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375107913
-< Soup-Debug: SoupMessage 19 (0x7fffe003a9d0)
-< Update-Client-Auth: 
DQAAAM4AAAAlDUC-WQgltDHdndYDddr-geSwqup450dH73A2Cl-8pGWAz5Jr6k15x7ETDyyX-gKH9mQLgT8NgpcJeZVMLjIXm1EbZt7eOlczQvHw9uMmD40XUvTc3VuOvT58GOMc7bcR5a-xUVuHMkbEU3g2rCp7Fw3q3lP_QFTWqE59LQAuIJ1V1Mzrj5l73ZloZnprjZsoS6V737LE84MKS3EbUJwdhONiAUU1jBHCL_yAoimGEtnElJMGcEXxs1Pl3YW3Ceub90HJ43ybw11aZdO1mFDL
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:25:14 GMT
-< Set-Cookie: S=calendar=8J-lgke82yjXqwPQNxH3Xg;Expires=Sun, 11-Aug-2013 12:47:35 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:25:13 GMT
-< Date: Mon, 29 Jul 2013 14:25:13 GMT
+< Soup-Debug-Timestamp: 1375202697
+< Soup-Debug: SoupMessage 19 (0x8c2b90)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_x9DCxs6Yn1ShR7x5wx1k6e37TbqaZyvZnHbBDD5MjDqIwu2doXjOCD97mfXE8YE20iZQLD52PYbtpDGgujgmHXXGW1wlvqMs94qpgxdE8eYecbfbso9UjfaO5uqfvsRXIhKhe7zV2m0bacHn0JcyH7mkYYXHxHv7XZ_tjZftH-i5SVfC5OZaKOQXxynRfd_Yz5PzuJngGrHUxv5bViZFI3gQCqJikX_t9TXaydAiNvFoCzIgXcLmw11rsBONKvKvzka6NqtM8xqoAdhWs62jAQ
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:44:57 GMT
+< Set-Cookie: S=calendar=QMm_x9O4Ed_LxevBxx1rjg;Expires=Tue, 13-Aug-2013 16:03:11 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:44:57 GMT
+< Date: Tue, 30 Jul 2013 16:44:57 GMT
 < Content-Type: application/atom+xml; charset=UTF-8; type=feed
 < Cache-control: private, max-age=0, must-revalidate, no-transform
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 2.6
-< ETag: W/"DU4FQX47eCp7JGA9WhFWEU0."
-< Last-Modified: Mon, 29 Jul 2013 14:25:10 GMT
+< ETag: W/"CEENQn47eCp7JGA9WhFWEk0."
+< Last-Modified: Tue, 30 Jul 2013 16:44:53 GMT
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
 < X-XSS-Protection: 1; mode=block
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='W/&quot;DU4FQX47eCp7JGA9WhFWEU0.&quot;' 
gd:kind='calendar#eventFeed'><id>http://www.google.com/calendar/feeds/cearmekccai4rpqlq932h43mko%40group.calendar.google.com/private/full</id><updated>2013-07-29T14:25:10.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title>Temp 
Test Calendar</title><subtitle>Temp Test Calendar</subtitle><link rel='alternate' type='text/html' 
href='https://www.google.com/calendar/embed?src=cearmekccai4rpqlq932h43mko%40group.calendar.google.com'/><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/cearmekccai4rpqlq932h43mko%40group.calendar.google.com/private/full'/><link
 rel='h
 ttp://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/cearmekccai4rpqlq932h43mko%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/cearmekccai4rpqlq932h43mko%40group.calendar.google.com/private/full/batch'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/cearmekccai4rpqlq932h43mko%40group.calendar.google.com/private/full?max-results=25'/><author><name>GData
 Test</name><email>libgdata test googlemail com</email></author><generator version='1.0' 
uri='http://www.google.com/calendar'>Google 
Calendar</generator><openSearch:totalResults>0</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><gCal:timezone
 value='UTC'/><gCal:timesCleaned value='0'/></feed>
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='W/&quot;CEENQn47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#eventFeed'><id>http://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full</id><updated>2013-07-30T16:44:53.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title>Temp 
Test Calendar</title><subtitle>Temp Test Calendar</subtitle><link rel='alternate' type='text/html' 
href='https://www.google.com/calendar/embed?src=i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com'/><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full'/><link
 rel='h
 ttp://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full/batch'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full?max-results=25'/><author><name>Temp
 Test Calendar</name></author><generator version='1.0' uri='http://www.google.com/calendar'>Google 
Calendar</generator><openSearch:totalResults>0</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><gCal:timezone
 value='UTC'/><gCal:timesCleaned value='0'/></feed>
   
diff --git a/gdata/tests/traces/calendar/query-events-async-progress-closure 
b/gdata/tests/traces/calendar/query-events-async-progress-closure
index e76cf65..94c224a 100644
--- a/gdata/tests/traces/calendar/query-events-async-progress-closure
+++ b/gdata/tests/traces/calendar/query-events-async-progress-closure
@@ -1,21 +1,21 @@
-> GET /calendar/feeds/8to31bitv2k2siqsk53v36sbts%40group.calendar.google.com/private/full HTTP/1.1
-> Soup-Debug-Timestamp: 1375107992
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 75 (0x7fffe40148b0), SoupSocket 71 (0x7fffe003bdf0)
+> GET /calendar/feeds/hv8lcrggbk4khiq1keooek270g%40group.calendar.google.com/private/full HTTP/1.1
+> Soup-Debug-Timestamp: 1375202779
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 75 (0x7fffe003f280), SoupSocket 71 (0x775550)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 302 Moved Temporarily
-< Soup-Debug-Timestamp: 1375107992
-< Soup-Debug: SoupMessage 75 (0x7fffe40148b0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXThTgckY3-hSb61OvnzXxSJ7d2jzDTq4SYJOcXEK19cfN8WmIspK2CGATjYnx3q1Fz9ZgntzaOCi00pQJhkctNT
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:26:33 GMT
-< Set-Cookie: S=calendar=J8SKZN4J3PMh3FXJWcckGQ;Expires=Mon, 12-Aug-2013 11:56:12 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:26:32 GMT
-< Date: Mon, 29 Jul 2013 14:26:32 GMT
-< Location: 
https://www.google.com/calendar/feeds/8to31bitv2k2siqsk53v36sbts%40group.calendar.google.com/private/full?gsessionid=J8SKZN4J3PMh3FXJWcckGQ
+< Soup-Debug-Timestamp: 1375202779
+< Soup-Debug: SoupMessage 75 (0x7fffe003f280)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_lzf1dm9Ue8N3SJp2J6o695WrE5nMbNLIXgO1GwYSOH0dinvA7V6dAhAIAEim2gLMsmbC2ddMnDUzaVKIGr3_JWCh97kMTIAR1M2IeSsu02b7EZA-X4HjICLw-x5pMnXhR8i08nLbVHSLT_No8fvB518lPWszfELKmW9TYG0-BAxXFzn9IKi_SmDnEv70WeTVk9AKBXEZK8GgbVvG2jwg9IxQwwSgxxH2Am-wKlw1Xh28Ocyi9bXsxw2zvbHLluu_emFBzQJ8Ds6aIurEQIryfg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:20 GMT
+< Set-Cookie: S=calendar=UNRNTlLv59RnD1M7iC4YYg;Expires=Thu, 08-Aug-2013 07:48:14 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:19 GMT
+< Date: Tue, 30 Jul 2013 16:46:19 GMT
+< Location: 
https://www.google.com/calendar/feeds/hv8lcrggbk4khiq1keooek270g%40group.calendar.google.com/private/full?gsessionid=UNRNTlLv59RnD1M7iC4YYg
 < Content-Type: text/html; charset=UTF-8
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -30,38 +30,38 @@
 < </HEAD>
 < <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
 < <H1>Moved Temporarily</H1>
-< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/8to31bitv2k2siqsk53v36sbts%40group.calendar.google.com/private/full?gsessionid=J8SKZN4J3PMh3FXJWcckGQ";>here</A>.
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/hv8lcrggbk4khiq1keooek270g%40group.calendar.google.com/private/full?gsessionid=UNRNTlLv59RnD1M7iC4YYg";>here</A>.
 < </BODY>
 < </HTML>
   
-> GET 
/calendar/feeds/8to31bitv2k2siqsk53v36sbts%40group.calendar.google.com/private/full?gsessionid=J8SKZN4J3PMh3FXJWcckGQ
 HTTP/1.1
-> Soup-Debug-Timestamp: 1375107992
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 75 (0x7fffe40148b0), SoupSocket 71 (0x7fffe003bdf0), 
restarted
+> GET 
/calendar/feeds/hv8lcrggbk4khiq1keooek270g%40group.calendar.google.com/private/full?gsessionid=UNRNTlLv59RnD1M7iC4YYg
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375202779
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 75 (0x7fffe003f280), SoupSocket 71 (0x775550), restarted
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375107992
-< Soup-Debug: SoupMessage 75 (0x7fffe40148b0)
-< Update-Client-Auth: 
DQAAANAAAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXQ13oqRh_2p87WcrWeAQnJZpM9mi1et5TBGe84GimS7yuU_utQqgxo_ARltmYbhyQQy5oR9U-3hGYR8T6bNTF75
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:26:33 GMT
-< Set-Cookie: S=calendar=1Vw6rv55AHzj3e561yqZ3A;Expires=Fri, 09-Aug-2013 18:31:33 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:26:32 GMT
-< Date: Mon, 29 Jul 2013 14:26:32 GMT
+< Soup-Debug-Timestamp: 1375202779
+< Soup-Debug: SoupMessage 75 (0x7fffe003f280)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_x9DCxs6Yn1ShR7x5wx1k6e37TbqaZyvZnHbBDD5MjDqIwu2doXjOCD97mfXE8YE20iZQLD52PYbtpDGgujgmHXXGW1wlvqMs94qpgxdE8eYecbfbso9UjfaO5uqfvsRXIhKhe7zV2m0bacHn0JcyH7mkYYXHxHv7XZ_tjZftH-i5SVfC5OZaKOQXxynRfd_Yz5PzuJngGrHUxv5bViZFI3gQCqJikX_t9TXaydAiNvFoCzIgXcLmw11rsBONKvKvzka6NqtM8xqoAdhWs62jAQ
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:20 GMT
+< Set-Cookie: S=calendar=imjTXsve2K2ej2_cDD68nQ;Expires=Wed, 07-Aug-2013 14:07:34 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:19 GMT
+< Date: Tue, 30 Jul 2013 16:46:19 GMT
 < Content-Type: application/atom+xml; charset=UTF-8; type=feed
 < Cache-control: private, max-age=0, must-revalidate, no-transform
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 2.6
-< ETag: W/"DU4MSH47eCp7JGA9WhFWEU0."
-< Last-Modified: Mon, 29 Jul 2013 14:26:29 GMT
+< ETag: W/"CEADRH47eCp7JGA9WhFWEk0."
+< Last-Modified: Tue, 30 Jul 2013 16:46:15 GMT
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
 < X-XSS-Protection: 1; mode=block
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='W/&quot;DU4MSH47eCp7JGA9WhFWEU0.&quot;' 
gd:kind='calendar#eventFeed'><id>http://www.google.com/calendar/feeds/8to31bitv2k2siqsk53v36sbts%40group.calendar.google.com/private/full</id><updated>2013-07-29T14:26:29.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title>Temp 
Test Calendar</title><subtitle>Temp Test Calendar</subtitle><link rel='alternate' type='text/html' 
href='https://www.google.com/calendar/embed?src=8to31bitv2k2siqsk53v36sbts%40group.calendar.google.com'/><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/8to31bitv2k2siqsk53v36sbts%40group.calendar.google.com/private/full'/><link
 rel='h
 ttp://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/8to31bitv2k2siqsk53v36sbts%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/8to31bitv2k2siqsk53v36sbts%40group.calendar.google.com/private/full/batch'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/8to31bitv2k2siqsk53v36sbts%40group.calendar.google.com/private/full?max-results=25'/><author><name>GData
 Test</name><email>libgdata test googlemail com</email></author><generator version='1.0' 
uri='http://www.google.com/calendar'>Google 
Calendar</generator><openSearch:totalResults>0</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><gCal:timezone
 value='UTC'/><gCal:timesCleaned value='0'/></feed>
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='W/&quot;CEADRH47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#eventFeed'><id>http://www.google.com/calendar/feeds/hv8lcrggbk4khiq1keooek270g%40group.calendar.google.com/private/full</id><updated>2013-07-30T16:46:15.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title>Temp 
Test Calendar</title><subtitle>Temp Test Calendar</subtitle><link rel='alternate' type='text/html' 
href='https://www.google.com/calendar/embed?src=hv8lcrggbk4khiq1keooek270g%40group.calendar.google.com'/><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/hv8lcrggbk4khiq1keooek270g%40group.calendar.google.com/private/full'/><link
 rel='h
 ttp://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/hv8lcrggbk4khiq1keooek270g%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/hv8lcrggbk4khiq1keooek270g%40group.calendar.google.com/private/full/batch'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/hv8lcrggbk4khiq1keooek270g%40group.calendar.google.com/private/full?max-results=25'/><author><name>Temp
 Test Calendar</name></author><generator version='1.0' uri='http://www.google.com/calendar'>Google 
Calendar</generator><openSearch:totalResults>0</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><gCal:timezone
 value='UTC'/><gCal:timesCleaned value='0'/></feed>
   
diff --git a/gdata/tests/traces/calendar/query-own-calendars b/gdata/tests/traces/calendar/query-own-calendars
index 0bfa63a..244af44 100644
--- a/gdata/tests/traces/calendar/query-own-calendars
+++ b/gdata/tests/traces/calendar/query-own-calendars
@@ -1,21 +1,21 @@
GET /calendar/feeds/default/owncalendars/full HTTP/1.1
-> Soup-Debug-Timestamp: 1375107904
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 12 (0x7fffe003a8e0), SoupSocket 16 (0x8deea0)
+> Soup-Debug-Timestamp: 1375202685
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 12 (0x8c28c0), SoupSocket 16 (0x7fffe0040970)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 302 Moved Temporarily
-< Soup-Debug-Timestamp: 1375107904
-< Soup-Debug: SoupMessage 12 (0x7fffe003a8e0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXThTgckY3-hSb61OvnzXxSJ7d2jzDTq4SYJOcXEK19cfN8WmIspK2CGATjYnx3q1Fz9ZgntzaOCi00pQJhkctNT
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:25:05 GMT
-< Set-Cookie: S=calendar=Tln7fsuW3akXk_ZcNNPhBw;Expires=Tue, 06-Aug-2013 08:08:28 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:25:04 GMT
-< Date: Mon, 29 Jul 2013 14:25:04 GMT
-< Location: https://www.google.com/calendar/feeds/default/owncalendars/full?gsessionid=Tln7fsuW3akXk_ZcNNPhBw
+< Soup-Debug-Timestamp: 1375202686
+< Soup-Debug: SoupMessage 12 (0x8c28c0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_t4EurujSJEVz4Oz9mAIOytzvk2x5HxgdMhjgmIZQyEhJEVxBkGa9tYZB61Yy8JtAPaktxoTLVkhp854Pjz3Lu2nGX3VFkbf3hmep1Z77H5UUPxIsLyYKJ-XIqF26WY8xy6o6N8-w_azdQg_R57FuB6O-GUgGUKDr2aKE9iTWpO0XsB7-zCP0UEx7yuXEnbLb7XVAw5KqOV1FqKEA6grSKkAqUaQftC9ppmNnCTUl0XskgKlvQxIBg-580Pa1-4yjY5tacPmBQVR42znpOSUkcg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:44:47 GMT
+< Set-Cookie: S=calendar=GP-MbuWznyoJx3iOc8DC5g;Expires=Mon, 12-Aug-2013 09:16:15 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:44:46 GMT
+< Date: Tue, 30 Jul 2013 16:44:46 GMT
+< Location: https://www.google.com/calendar/feeds/default/owncalendars/full?gsessionid=GP-MbuWznyoJx3iOc8DC5g
 < Content-Type: text/html; charset=UTF-8
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -30,38 +30,38 @@
 < </HEAD>
 < <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
 < <H1>Moved Temporarily</H1>
-< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/owncalendars/full?gsessionid=Tln7fsuW3akXk_ZcNNPhBw";>here</A>.
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/owncalendars/full?gsessionid=GP-MbuWznyoJx3iOc8DC5g";>here</A>.
 < </BODY>
 < </HTML>
   
-> GET /calendar/feeds/default/owncalendars/full?gsessionid=Tln7fsuW3akXk_ZcNNPhBw HTTP/1.1
-> Soup-Debug-Timestamp: 1375107904
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 12 (0x7fffe003a8e0), SoupSocket 16 (0x8deea0), restarted
+> GET /calendar/feeds/default/owncalendars/full?gsessionid=GP-MbuWznyoJx3iOc8DC5g HTTP/1.1
+> Soup-Debug-Timestamp: 1375202686
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 12 (0x8c28c0), SoupSocket 16 (0x7fffe0040970), restarted
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375107905
-< Soup-Debug: SoupMessage 12 (0x7fffe003a8e0)
-< Update-Client-Auth: 
DQAAANAAAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXQ13oqRh_2p87WcrWeAQnJZpM9mi1et5TBGe84GimS7yuU_utQqgxo_ARltmYbhyQQy5oR9U-3hGYR8T6bNTF75
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:25:05 GMT
-< Set-Cookie: S=calendar=ZMOD_sqVEVoRegra-fOTLw;Expires=Fri, 09-Aug-2013 13:39:31 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:25:05 GMT
-< Date: Mon, 29 Jul 2013 14:25:05 GMT
+< Soup-Debug-Timestamp: 1375202686
+< Soup-Debug: SoupMessage 12 (0x8c28c0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_x9DCxs6Yn1ShR7x5wx1k6e37TbqaZyvZnHbBDD5MjDqIwu2doXjOCD97mfXE8YE20iZQLD52PYbtpDGgujgmHXXGW1wlvqMs94qpgxdE8eYecbfbso9UjfaO5uqfvsRXIhKhe7zV2m0bacHn0JcyH7mkYYXHxHv7XZ_tjZftH-i5SVfC5OZaKOQXxynRfd_Yz5PzuJngGrHUxv5bViZFI3gQCqJikX_t9TXaydAiNvFoCzIgXcLmw11rsBONKvKvzka6NqtM8xqoAdhWs62jAQ
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:44:47 GMT
+< Set-Cookie: S=calendar=HKhKqHTPYYB13j1iBtcRig;Expires=Fri, 09-Aug-2013 15:23:38 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:44:46 GMT
+< Date: Tue, 30 Jul 2013 16:44:46 GMT
 < Content-Type: application/atom+xml; charset=UTF-8; type=feed
 < Cache-control: private, max-age=0, must-revalidate, no-transform
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 2.6
-< ETag: W/"DU4ERH8zeip7JGA9WhFWEU0."
-< Last-Modified: Mon, 29 Jul 2013 14:25:05 GMT
+< ETag: W/"CEEMR3Y9cCp7JGA9WhFWEk0."
+< Last-Modified: Tue, 30 Jul 2013 16:44:46 GMT
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
 < X-XSS-Protection: 1; mode=block
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;DU4ERH8zeip7JGA9WhFWEU0.&quot;' 
gd:kind='calendar#calendarFeed'><id>http://www.google.com/calendar/feeds/default/owncalendars/full</id><updated>2013-07-29T14:25:05.182Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title>GData Test's Calendar List</title><link 
rel='alternate' type='text/html' href='https://www.google.com/calendar/render'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/own
 calendars/full'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full'/><author><name>libgdata test 
googlemail com</name><email>libgdata test googlemail com</email></author><generator version='1.0' 
uri='http://www.google.com/calendar'>Google 
Calendar</generator><openSearch:startIndex>1</openSearch:startIndex><entry 
gd:etag='W/&quot;DU4ERX47eCp7JGA9WhFWEU0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/libgdata.test%40googlemail.com</id><published>2013-07-29T14:25:04.850Z</published><updated>2013-07-29T14:25:04.000Z</updated><app:edited>2013-07-29T14:25:04.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>libgdata test googlemail 
com</title><content type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link
  rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/acl/full'/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/libgdata.test%40googlemail.com'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/libgdata.test%40googlemail.com'/><author><name>libgdata
 test googlemail com</name><email>libgdata test googlemail com</email></author><gCal:accesslevel 
value='owner'/><gCal:color value='#2952A3'/><gCal:hidden value='false'/><gCal:select
 ed value='true'/><gCal:timezone value='Europe/London'/><gCal:timesCleaned value='4'/></entry><entry 
gd:etag='W/&quot;DU4EQ347eCp7JGA9WhFWEU0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/s2cn7bccginh5rpl8fkvktbmvc%40group.calendar.google.com</id><published>2013-07-29T14:25:04.850Z</published><updated>2013-07-29T14:25:02.000Z</updated><app:edited>2013-07-29T14:25:02.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 1</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/s2cn7bccginh5rpl8fkvktbmvc%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/s2cn7bccginh5rpl8fkvktbmvc%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml'
  
href='https://www.google.com/calendar/feeds/s2cn7bccginh5rpl8fkvktbmvc%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/s2cn7bccginh5rpl8fkvktbmvc%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/s2cn7bccginh5rpl8fkvktbmvc%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/s2cn7bccginh5rpl8fkvktbmvc%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;D0QEQn47eCp7JGA9WhFXFEQ.&quot;' 
gd:kind='calendar#calendar'><id>http://w
 
ww.google.com/calendar/feeds/default/calendars/pjtb9f9ftlagtskodcno87df64%40group.calendar.google.com</id><published>2013-07-29T14:25:04.850Z</published><updated>2013-07-22T12:15:03.000Z</updated><app:edited>2013-07-22T12:15:03.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 1</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/pjtb9f9ftlagtskodcno87df64%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/pjtb9f9ftlagtskodcno87df64%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/pjtb9f9ftlagtskodcno87df64%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='app
 lication/atom+xml' 
href='https://www.google.com/calendar/feeds/pjtb9f9ftlagtskodcno87df64%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/pjtb9f9ftlagtskodcno87df64%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/pjtb9f9ftlagtskodcno87df64%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;CkUNQn47eCp7JGA9WhFXFEs.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/u1ba6qqo23qpu37hv798035fj4%40group.calendar.google.com</id><published>2013-07-29T14:25:04.859Z</published><updated>2013-07-22T02:31:33.000Z</u
 pdated><app:edited>2013-07-22T02:31:33.000Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 1</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/u1ba6qqo23qpu37hv798035fj4%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/u1ba6qqo23qpu37hv798035fj4%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/u1ba6qqo23qpu37hv798035fj4%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/u1ba6qqo23qpu37hv798035fj4%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' href='https://w
 
ww.google.com/calendar/feeds/default/owncalendars/full/u1ba6qqo23qpu37hv798035fj4%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/u1ba6qqo23qpu37hv798035fj4%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;A0MARX47eCp7JGA9WhFXFEs.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/q5e0o6tibdrmt37nepdrgpi834%40group.calendar.google.com</id><published>2013-07-29T14:25:04.875Z</published><updated>2013-07-22T05:04:04.000Z</updated><app:edited>2013-07-22T05:04:04.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>
 Test Calendar 1</title><content type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/q5e0o6tibdrmt37nepdrgpi834%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/q5e0o6tibdrmt37nepdrgpi834%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/q5e0o6tibdrmt37nepdrgpi834%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/q5e0o6tibdrmt37nepdrgpi834%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/q5e0o6tibdrmt37nepdrgpi834%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' href='https://www.google.com/cal
 
endar/feeds/default/owncalendars/full/q5e0o6tibdrmt37nepdrgpi834%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;CkcCRX47eCp7JGA9WhFXEEQ.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/0o4kev4meqmacse9dfg7spuc54%40group.calendar.google.com</id><published>2013-07-29T14:25:04.956Z</published><updated>2013-07-17T19:41:04.000Z</updated><app:edited>2013-07-17T19:41:04.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 1</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/0o4kev4meqmacse9dfg7spuc54%40group.calendar.google.com/private/full'/><link
 rel='alter
 nate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/0o4kev4meqmacse9dfg7spuc54%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/0o4kev4meqmacse9dfg7spuc54%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/0o4kev4meqmacse9dfg7spuc54%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/0o4kev4meqmacse9dfg7spuc54%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/0o4kev4meqmacse9dfg7spuc54%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color valu
 e='#7A367A'/><gCal:hidden value='false'/><gCal:selected value='false'/><gCal:timezone 
value='UTC'/><gCal:timesCleaned value='0'/></entry><entry gd:etag='W/&quot;C0IMSX47eCp7JGA9WhFXEUs.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/adj4kq31s34mapkjk2tqoeg10o%40group.calendar.google.com</id><published>2013-07-29T14:25:04.969Z</published><updated>2013-07-18T15:33:08.000Z</updated><app:edited>2013-07-18T15:33:08.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 1</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/adj4kq31s34mapkjk2tqoeg10o%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/adj4kq31s34mapkjk2tqoeg10o%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal
 /2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/adj4kq31s34mapkjk2tqoeg10o%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/adj4kq31s34mapkjk2tqoeg10o%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/adj4kq31s34mapkjk2tqoeg10o%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/adj4kq31s34mapkjk2tqoeg10o%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;CEcEQH47eCp7JGA9WhFXFEk.&quo
 t;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/tdfbnqgkir4ealuojaptg4ugo4%40group.calendar.google.com</id><published>2013-07-29T14:25:04.863Z</published><updated>2013-07-21T21:26:41.000Z</updated><app:edited>2013-07-21T21:26:41.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 2</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/tdfbnqgkir4ealuojaptg4ugo4%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/tdfbnqgkir4ealuojaptg4ugo4%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/tdfbnqgkir4ealuojaptg4ugo4%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.goog
 le.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/tdfbnqgkir4ealuojaptg4ugo4%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/tdfbnqgkir4ealuojaptg4ugo4%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/tdfbnqgkir4ealuojaptg4ugo4%40group.calendar.google.com'/><author><name>Test
 Calendar 2</name></author><gCal:accesslevel value='owner'/><gCal:color value='#2952A3'/><gCal:hidden 
value='false'/><gCal:selected value='true'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;DU4ERX47eCp7JGA9WhFWEU0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/jj6nib9ung70e98et0vpjvlpp8%40group.calendar.google.com</id><published>2013-07-29T14:25:04.873Z</pub
 lished><updated>2013-07-29T14:25:04.000Z</updated><app:edited>2013-07-29T14:25:04.000Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 2</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/jj6nib9ung70e98et0vpjvlpp8%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/jj6nib9ung70e98et0vpjvlpp8%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/jj6nib9ung70e98et0vpjvlpp8%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/jj6nib9ung70e98et0vpjvlpp8%40group.calendar.google.com/acl/full'/><link
 rel='self' 
 type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/jj6nib9ung70e98et0vpjvlpp8%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/jj6nib9ung70e98et0vpjvlpp8%40group.calendar.google.com'/><author><name>Test
 Calendar 2</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;CUINSH47eCp7JGA9WhFXFkw.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/iukm1aqo76uncod4fiblvpf360%40group.calendar.google.com</id><published>2013-07-29T14:25:04.953Z</published><updated>2013-07-23T21:06:39.000Z</updated><app:edited>2013-07-23T21:06:39.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g
 Cal/2005#calendarmeta'/><title type='text'>Test Calendar 2</title><content type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/iukm1aqo76uncod4fiblvpf360%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/iukm1aqo76uncod4fiblvpf360%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/iukm1aqo76uncod4fiblvpf360%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/iukm1aqo76uncod4fiblvpf360%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/iukm1aqo76uncod4fiblvpf360%40group.calendar.google.com'/><link
 rel='edit' type='application
 /atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/iukm1aqo76uncod4fiblvpf360%40group.calendar.google.com'/><author><name>Test
 Calendar 2</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;CkcAR347eCp7JGA9WhFXEUo.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/g2s9f1415gpflngh79t7p4iupk%40group.calendar.google.com</id><published>2013-07-29T14:25:04.955Z</published><updated>2013-07-18T17:54:06.000Z</updated><app:edited>2013-07-18T17:54:06.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 2</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/g2s9f1415gpflngh79t7p4iupk%40group.calendar
 .google.com/private/full'/><link rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/g2s9f1415gpflngh79t7p4iupk%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/g2s9f1415gpflngh79t7p4iupk%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/g2s9f1415gpflngh79t7p4iupk%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/g2s9f1415gpflngh79t7p4iupk%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/g2s9f1415gpflngh79t7p4iupk%40group.calendar.google.com'/><author><name>Test
 Calendar 2</name></author><gCal:
 accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden value='false'/><gCal:selected 
value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned value='0'/></entry><entry 
gd:etag='W/&quot;DEUBR347eCp7JGA9WhFXE0s.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/qsr4sk4kj8s8o9rbnt3t9c6kr8%40group.calendar.google.com</id><published>2013-07-29T14:25:04.957Z</published><updated>2013-07-21T00:24:16.000Z</updated><app:edited>2013-07-21T00:24:16.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 3</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/qsr4sk4kj8s8o9rbnt3t9c6kr8%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/qsr4sk4kj8s8o9rbnt3t9c6kr8%40group.calendar.google.com/private/full'
 /><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/qsr4sk4kj8s8o9rbnt3t9c6kr8%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/qsr4sk4kj8s8o9rbnt3t9c6kr8%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/qsr4sk4kj8s8o9rbnt3t9c6kr8%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/qsr4sk4kj8s8o9rbnt3t9c6kr8%40group.calendar.google.com'/><author><name>Test
 Calendar 3</name></author><gCal:accesslevel value='owner'/><gCal:color value='#2952A3'/><gCal:hidden 
value='false'/><gCal:selected value='true'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry></feed>
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CEEMR3Y9cCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendarFeed'><id>http://www.google.com/calendar/feeds/default/owncalendars/full</id><updated>2013-07-30T16:44:46.868Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title>GData Test's Calendar List</title><link 
rel='alternate' type='text/html' href='https://www.google.com/calendar/render'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/own
 calendars/full'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full'/><author><name>libgdata test 
googlemail com</name><email>libgdata test googlemail com</email></author><generator version='1.0' 
uri='http://www.google.com/calendar'>Google 
Calendar</generator><openSearch:startIndex>1</openSearch:startIndex><entry 
gd:etag='W/&quot;CEEMRH47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/libgdata.test%40googlemail.com</id><published>2013-07-30T16:44:46.749Z</published><updated>2013-07-30T16:44:45.000Z</updated><app:edited>2013-07-30T16:44:45.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>libgdata test googlemail 
com</title><content type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link
  rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/acl/full'/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/libgdata.test%40googlemail.com'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/libgdata.test%40googlemail.com'/><author><name>libgdata
 test googlemail com</name><email>libgdata test googlemail com</email></author><gCal:accesslevel 
value='owner'/><gCal:color value='#2952A3'/><gCal:hidden value='false'/><gCal:select
 ed value='true'/><gCal:timezone value='Europe/London'/><gCal:timesCleaned value='4'/></entry><entry 
gd:etag='W/&quot;CEEMQn47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/35jhepotuknkdd99v6plv1u3u4%40group.calendar.google.com</id><published>2013-07-30T16:44:46.778Z</published><updated>2013-07-30T16:44:43.000Z</updated><app:edited>2013-07-30T16:44:43.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 1</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/35jhepotuknkdd99v6plv1u3u4%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/35jhepotuknkdd99v6plv1u3u4%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml'
  
href='https://www.google.com/calendar/feeds/35jhepotuknkdd99v6plv1u3u4%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/35jhepotuknkdd99v6plv1u3u4%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/35jhepotuknkdd99v6plv1u3u4%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/35jhepotuknkdd99v6plv1u3u4%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;CEEMR347eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://w
 
ww.google.com/calendar/feeds/default/calendars/1d7hh58cr174hm2l5c0s8q5o0k%40group.calendar.google.com</id><published>2013-07-30T16:44:46.802Z</published><updated>2013-07-30T16:44:46.000Z</updated><app:edited>2013-07-30T16:44:46.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 2</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/1d7hh58cr174hm2l5c0s8q5o0k%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/1d7hh58cr174hm2l5c0s8q5o0k%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/1d7hh58cr174hm2l5c0s8q5o0k%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='app
 lication/atom+xml' 
href='https://www.google.com/calendar/feeds/1d7hh58cr174hm2l5c0s8q5o0k%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/1d7hh58cr174hm2l5c0s8q5o0k%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/1d7hh58cr174hm2l5c0s8q5o0k%40group.calendar.google.com'/><author><name>Test
 Calendar 2</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry></feed>
   
diff --git a/gdata/tests/traces/calendar/query-own-calendars-async-progress-closure 
b/gdata/tests/traces/calendar/query-own-calendars-async-progress-closure
index 33f8f05..d5f8b3f 100644
--- a/gdata/tests/traces/calendar/query-own-calendars-async-progress-closure
+++ b/gdata/tests/traces/calendar/query-own-calendars-async-progress-closure
@@ -1,21 +1,21 @@
GET /calendar/feeds/default/owncalendars/full HTTP/1.1
-> Soup-Debug-Timestamp: 1375107962
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 50 (0x7fffe003a8e0), SoupSocket 47 (0x8dea20)
+> Soup-Debug-Timestamp: 1375202746
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 50 (0x7fffe4010650), SoupSocket 47 (0x775250)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 302 Moved Temporarily
-< Soup-Debug-Timestamp: 1375107962
-< Soup-Debug: SoupMessage 50 (0x7fffe003a8e0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXThTgckY3-hSb61OvnzXxSJ7d2jzDTq4SYJOcXEK19cfN8WmIspK2CGATjYnx3q1Fz9ZgntzaOCi00pQJhkctNT
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:26:03 GMT
-< Set-Cookie: S=calendar=4HpQv3hpPCf3gwPWYTUtaQ;Expires=Sat, 10-Aug-2013 17:02:20 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:26:02 GMT
-< Date: Mon, 29 Jul 2013 14:26:02 GMT
-< Location: https://www.google.com/calendar/feeds/default/owncalendars/full?gsessionid=4HpQv3hpPCf3gwPWYTUtaQ
+< Soup-Debug-Timestamp: 1375202746
+< Soup-Debug: SoupMessage 50 (0x7fffe4010650)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_t4EurujSJEVz4Oz9mAIOytzvk2x5HxgdMhjgmIZQyEhJEVxBkGa9tYZB61Yy8JtAPaktxoTLVkhp854Pjz3Lu2nGX3VFkbf3hmep1Z77H5UUPxIsLyYKJ-XIqF26WY8xy6o6N8-w_azdQg_R57FuB6O-GUgGUKDr2aKE9iTWpO0XsB7-zCP0UEx7yuXEnbLb7XVAw5KqOV1FqKEA6grSKkAqUaQftC9ppmNnCTUl0XskgKlvQxIBg-580Pa1-4yjY5tacPmBQVR42znpOSUkcg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:45:47 GMT
+< Set-Cookie: S=calendar=lxQ9Y-wszFQQAVCSzWATOQ;Expires=Tue, 13-Aug-2013 06:01:56 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:45:46 GMT
+< Date: Tue, 30 Jul 2013 16:45:46 GMT
+< Location: https://www.google.com/calendar/feeds/default/owncalendars/full?gsessionid=lxQ9Y-wszFQQAVCSzWATOQ
 < Content-Type: text/html; charset=UTF-8
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -30,38 +30,38 @@
 < </HEAD>
 < <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
 < <H1>Moved Temporarily</H1>
-< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/owncalendars/full?gsessionid=4HpQv3hpPCf3gwPWYTUtaQ";>here</A>.
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/owncalendars/full?gsessionid=lxQ9Y-wszFQQAVCSzWATOQ";>here</A>.
 < </BODY>
 < </HTML>
   
-> GET /calendar/feeds/default/owncalendars/full?gsessionid=4HpQv3hpPCf3gwPWYTUtaQ HTTP/1.1
-> Soup-Debug-Timestamp: 1375107962
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 50 (0x7fffe003a8e0), SoupSocket 47 (0x8dea20), restarted
+> GET /calendar/feeds/default/owncalendars/full?gsessionid=lxQ9Y-wszFQQAVCSzWATOQ HTTP/1.1
+> Soup-Debug-Timestamp: 1375202746
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 50 (0x7fffe4010650), SoupSocket 47 (0x775250), restarted
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375107963
-< Soup-Debug: SoupMessage 50 (0x7fffe003a8e0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-ODYysS96Taaw1NaIYtJAAHEXCZ_GMPV8cwrWmi_-pskMkzDa8yS5h3Lx6BUX8K1OQLMPBV7rpZGHtUa1jYE1jA_4X05rZ800eKz2vNaGdZYoiYJwGnkqCe72OBS-ReHTEtvQtr7VG9ZYkAslaj0Tffvz8pB9ItwBfiM3-4oLSkIEFXx8_eyUlfeNChSfSAvSSqTyG58No5P6HZMRKSJtwsyLwtxAl4BhBMfGX_Uh_z0XCyGMW8beXiNXZ4h5XkwP
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:26:03 GMT
-< Set-Cookie: S=calendar=APyxTxK1fh0Xts4eE09gCw;Expires=Tue, 06-Aug-2013 07:55:08 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:26:03 GMT
-< Date: Mon, 29 Jul 2013 14:26:03 GMT
+< Soup-Debug-Timestamp: 1375202747
+< Soup-Debug: SoupMessage 50 (0x7fffe4010650)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_x9DCxs6Yn1ShR7x5wx1k6e37TbqaZyvZnHbBDD5MjDqIwu2doXjOCD97mfXE8YE20iZQLD52PYbtpDGgujgmHXXGW1wlvqMs94qpgxdE8eYecbfbso9UjfaO5uqfvsRXIhKhe7zV2m0bacHn0JcyH7mkYYXHxHv7XZ_tjZftH-i5SVfC5OZaKOQXxynRfd_Yz5PzuJngGrHUxv5bViZFI3gQCqJikX_t9TXaydAiNvFoCzIgXcLmw11rsBONKvKvzka6NqtM8xqoAdhWs62jAQ
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:45:47 GMT
+< Set-Cookie: S=calendar=EwgvHhyUD3Eo_XSH4g94jQ;Expires=Sun, 11-Aug-2013 10:27:20 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:45:47 GMT
+< Date: Tue, 30 Jul 2013 16:45:47 GMT
 < Content-Type: application/atom+xml; charset=UTF-8; type=feed
 < Cache-control: private, max-age=0, must-revalidate, no-transform
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 2.6
-< ETag: W/"DU4CQnw4fSp7JGA9WhFWEU0."
-< Last-Modified: Mon, 29 Jul 2013 14:26:03 GMT
+< ETag: W/"CEAARn0yfCp7JGA9WhFWEk0."
+< Last-Modified: Tue, 30 Jul 2013 16:45:47 GMT
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
 < X-XSS-Protection: 1; mode=block
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;DU4CQnw4fSp7JGA9WhFWEU0.&quot;' 
gd:kind='calendar#calendarFeed'><id>http://www.google.com/calendar/feeds/default/owncalendars/full</id><updated>2013-07-29T14:26:03.235Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title>GData Test's Calendar List</title><link 
rel='alternate' type='text/html' href='https://www.google.com/calendar/render'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/own
 calendars/full'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full'/><author><name>libgdata test 
googlemail com</name><email>libgdata test googlemail com</email></author><generator version='1.0' 
uri='http://www.google.com/calendar'>Google 
Calendar</generator><openSearch:startIndex>1</openSearch:startIndex><entry 
gd:etag='W/&quot;DU4CQ347eCp7JGA9WhFWEU0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/libgdata.test%40googlemail.com</id><published>2013-07-29T14:26:03.003Z</published><updated>2013-07-29T14:26:02.000Z</updated><app:edited>2013-07-29T14:26:02.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>libgdata test googlemail 
com</title><content type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link
  rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/acl/full'/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/libgdata.test%40googlemail.com'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/libgdata.test%40googlemail.com'/><author><name>libgdata
 test googlemail com</name><email>libgdata test googlemail com</email></author><gCal:accesslevel 
value='owner'/><gCal:color value='#2952A3'/><gCal:hidden value='false'/><gCal:select
 ed value='true'/><gCal:timezone value='Europe/London'/><gCal:timesCleaned value='4'/></entry><entry 
gd:etag='W/&quot;A0MARX47eCp7JGA9WhFXFEs.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/q5e0o6tibdrmt37nepdrgpi834%40group.calendar.google.com</id><published>2013-07-29T14:26:03.003Z</published><updated>2013-07-22T05:04:04.000Z</updated><app:edited>2013-07-22T05:04:04.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 1</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/q5e0o6tibdrmt37nepdrgpi834%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/q5e0o6tibdrmt37nepdrgpi834%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml'
  
href='https://www.google.com/calendar/feeds/q5e0o6tibdrmt37nepdrgpi834%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/q5e0o6tibdrmt37nepdrgpi834%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/q5e0o6tibdrmt37nepdrgpi834%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/q5e0o6tibdrmt37nepdrgpi834%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;CkUNQn47eCp7JGA9WhFXFEs.&quot;' 
gd:kind='calendar#calendar'><id>http://w
 
ww.google.com/calendar/feeds/default/calendars/u1ba6qqo23qpu37hv798035fj4%40group.calendar.google.com</id><published>2013-07-29T14:26:03.004Z</published><updated>2013-07-22T02:31:33.000Z</updated><app:edited>2013-07-22T02:31:33.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 1</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/u1ba6qqo23qpu37hv798035fj4%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/u1ba6qqo23qpu37hv798035fj4%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/u1ba6qqo23qpu37hv798035fj4%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='app
 lication/atom+xml' 
href='https://www.google.com/calendar/feeds/u1ba6qqo23qpu37hv798035fj4%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/u1ba6qqo23qpu37hv798035fj4%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/u1ba6qqo23qpu37hv798035fj4%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;DU4CQX47eCp7JGA9WhFWEU0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/kk7f6lefgpmgl9n2eb2q442654%40group.calendar.google.com</id><published>2013-07-29T14:26:03.074Z</published><updated>2013-07-29T14:26:00.000Z</u
 pdated><app:edited>2013-07-29T14:26:00.000Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 1</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/kk7f6lefgpmgl9n2eb2q442654%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/kk7f6lefgpmgl9n2eb2q442654%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/kk7f6lefgpmgl9n2eb2q442654%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/kk7f6lefgpmgl9n2eb2q442654%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' href='https://w
 
ww.google.com/calendar/feeds/default/owncalendars/full/kk7f6lefgpmgl9n2eb2q442654%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/kk7f6lefgpmgl9n2eb2q442654%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;D0QEQn47eCp7JGA9WhFXFEQ.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/pjtb9f9ftlagtskodcno87df64%40group.calendar.google.com</id><published>2013-07-29T14:26:03.004Z</published><updated>2013-07-22T12:15:03.000Z</updated><app:edited>2013-07-22T12:15:03.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>
 Test Calendar 1</title><content type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/pjtb9f9ftlagtskodcno87df64%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/pjtb9f9ftlagtskodcno87df64%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/pjtb9f9ftlagtskodcno87df64%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/pjtb9f9ftlagtskodcno87df64%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/pjtb9f9ftlagtskodcno87df64%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' href='https://www.google.com/cal
 
endar/feeds/default/owncalendars/full/pjtb9f9ftlagtskodcno87df64%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;C0IMSX47eCp7JGA9WhFXEUs.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/adj4kq31s34mapkjk2tqoeg10o%40group.calendar.google.com</id><published>2013-07-29T14:26:03.003Z</published><updated>2013-07-18T15:33:08.000Z</updated><app:edited>2013-07-18T15:33:08.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 1</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/adj4kq31s34mapkjk2tqoeg10o%40group.calendar.google.com/private/full'/><link
 rel='alter
 nate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/adj4kq31s34mapkjk2tqoeg10o%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/adj4kq31s34mapkjk2tqoeg10o%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/adj4kq31s34mapkjk2tqoeg10o%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/adj4kq31s34mapkjk2tqoeg10o%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/adj4kq31s34mapkjk2tqoeg10o%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color valu
 e='#7A367A'/><gCal:hidden value='false'/><gCal:selected value='false'/><gCal:timezone 
value='UTC'/><gCal:timesCleaned value='0'/></entry><entry gd:etag='W/&quot;CkcCRX47eCp7JGA9WhFXEEQ.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/0o4kev4meqmacse9dfg7spuc54%40group.calendar.google.com</id><published>2013-07-29T14:26:03.004Z</published><updated>2013-07-17T19:41:04.000Z</updated><app:edited>2013-07-17T19:41:04.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 1</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/0o4kev4meqmacse9dfg7spuc54%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/0o4kev4meqmacse9dfg7spuc54%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal
 /2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/0o4kev4meqmacse9dfg7spuc54%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/0o4kev4meqmacse9dfg7spuc54%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/0o4kev4meqmacse9dfg7spuc54%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/0o4kev4meqmacse9dfg7spuc54%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;DU4CQ347eCp7JGA9WhFWEU0.&quo
 t;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/ffgqorqe5gt2fkm9dmlo7irki0%40group.calendar.google.com</id><published>2013-07-29T14:26:03.004Z</published><updated>2013-07-29T14:26:02.000Z</updated><app:edited>2013-07-29T14:26:02.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 2</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/ffgqorqe5gt2fkm9dmlo7irki0%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/ffgqorqe5gt2fkm9dmlo7irki0%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/ffgqorqe5gt2fkm9dmlo7irki0%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.goog
 le.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/ffgqorqe5gt2fkm9dmlo7irki0%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/ffgqorqe5gt2fkm9dmlo7irki0%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/ffgqorqe5gt2fkm9dmlo7irki0%40group.calendar.google.com'/><author><name>Test
 Calendar 2</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;CEcEQH47eCp7JGA9WhFXFEk.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/tdfbnqgkir4ealuojaptg4ugo4%40group.calendar.google.com</id><published>2013-07-29T14:26:03.004Z</pu
 
blished><updated>2013-07-21T21:26:41.000Z</updated><app:edited>2013-07-21T21:26:41.000Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 2</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/tdfbnqgkir4ealuojaptg4ugo4%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/tdfbnqgkir4ealuojaptg4ugo4%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/tdfbnqgkir4ealuojaptg4ugo4%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/tdfbnqgkir4ealuojaptg4ugo4%40group.calendar.google.com/acl/full'/><link
 rel='self'
  type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/tdfbnqgkir4ealuojaptg4ugo4%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/tdfbnqgkir4ealuojaptg4ugo4%40group.calendar.google.com'/><author><name>Test
 Calendar 2</name></author><gCal:accesslevel value='owner'/><gCal:color value='#2952A3'/><gCal:hidden 
value='false'/><gCal:selected value='true'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;CUINSH47eCp7JGA9WhFXFkw.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/iukm1aqo76uncod4fiblvpf360%40group.calendar.google.com</id><published>2013-07-29T14:26:03.003Z</published><updated>2013-07-23T21:06:39.000Z</updated><app:edited>2013-07-23T21:06:39.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g
 Cal/2005#calendarmeta'/><title type='text'>Test Calendar 2</title><content type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/iukm1aqo76uncod4fiblvpf360%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/iukm1aqo76uncod4fiblvpf360%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/iukm1aqo76uncod4fiblvpf360%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/iukm1aqo76uncod4fiblvpf360%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/iukm1aqo76uncod4fiblvpf360%40group.calendar.google.com'/><link
 rel='edit' type='application
 /atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/iukm1aqo76uncod4fiblvpf360%40group.calendar.google.com'/><author><name>Test
 Calendar 2</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;CkcAR347eCp7JGA9WhFXEUo.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/g2s9f1415gpflngh79t7p4iupk%40group.calendar.google.com</id><published>2013-07-29T14:26:03.003Z</published><updated>2013-07-18T17:54:06.000Z</updated><app:edited>2013-07-18T17:54:06.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 2</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/g2s9f1415gpflngh79t7p4iupk%40group.calendar
 .google.com/private/full'/><link rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/g2s9f1415gpflngh79t7p4iupk%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/g2s9f1415gpflngh79t7p4iupk%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/g2s9f1415gpflngh79t7p4iupk%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/g2s9f1415gpflngh79t7p4iupk%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/g2s9f1415gpflngh79t7p4iupk%40group.calendar.google.com'/><author><name>Test
 Calendar 2</name></author><gCal:
 accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden value='false'/><gCal:selected 
value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned value='0'/></entry><entry 
gd:etag='W/&quot;DEUBR347eCp7JGA9WhFXE0s.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/qsr4sk4kj8s8o9rbnt3t9c6kr8%40group.calendar.google.com</id><published>2013-07-29T14:26:03.003Z</published><updated>2013-07-21T00:24:16.000Z</updated><app:edited>2013-07-21T00:24:16.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 3</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/qsr4sk4kj8s8o9rbnt3t9c6kr8%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/qsr4sk4kj8s8o9rbnt3t9c6kr8%40group.calendar.google.com/private/full'
 /><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/qsr4sk4kj8s8o9rbnt3t9c6kr8%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/qsr4sk4kj8s8o9rbnt3t9c6kr8%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/qsr4sk4kj8s8o9rbnt3t9c6kr8%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/qsr4sk4kj8s8o9rbnt3t9c6kr8%40group.calendar.google.com'/><author><name>Test
 Calendar 3</name></author><gCal:accesslevel value='owner'/><gCal:color value='#2952A3'/><gCal:hidden 
value='false'/><gCal:selected value='true'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry></feed>
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CEAARn0yfCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendarFeed'><id>http://www.google.com/calendar/feeds/default/owncalendars/full</id><updated>2013-07-30T16:45:47.394Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title>GData Test's Calendar List</title><link 
rel='alternate' type='text/html' href='https://www.google.com/calendar/render'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/own
 calendars/full'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full'/><author><name>libgdata test 
googlemail com</name><email>libgdata test googlemail com</email></author><generator version='1.0' 
uri='http://www.google.com/calendar'>Google 
Calendar</generator><openSearch:startIndex>1</openSearch:startIndex><entry 
gd:etag='W/&quot;CEAAR347eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/libgdata.test%40googlemail.com</id><published>2013-07-30T16:45:47.285Z</published><updated>2013-07-30T16:45:46.000Z</updated><app:edited>2013-07-30T16:45:46.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>libgdata test googlemail 
com</title><content type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link
  rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/acl/full'/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/libgdata.test%40googlemail.com'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/libgdata.test%40googlemail.com'/><author><name>libgdata
 test googlemail com</name><email>libgdata test googlemail com</email></author><gCal:accesslevel 
value='owner'/><gCal:color value='#2952A3'/><gCal:hidden value='false'/><gCal:select
 ed value='true'/><gCal:timezone value='Europe/London'/><gCal:timesCleaned value='4'/></entry><entry 
gd:etag='W/&quot;CEAARX47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/q9nqt82mkvlmt3clsu8hpeu96s%40group.calendar.google.com</id><published>2013-07-30T16:45:47.309Z</published><updated>2013-07-30T16:45:44.000Z</updated><app:edited>2013-07-30T16:45:44.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 1</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/q9nqt82mkvlmt3clsu8hpeu96s%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/q9nqt82mkvlmt3clsu8hpeu96s%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml'
  
href='https://www.google.com/calendar/feeds/q9nqt82mkvlmt3clsu8hpeu96s%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/q9nqt82mkvlmt3clsu8hpeu96s%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/q9nqt82mkvlmt3clsu8hpeu96s%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/q9nqt82mkvlmt3clsu8hpeu96s%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;CEAAR347eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://w
 
ww.google.com/calendar/feeds/default/calendars/o9nb1pfd0ifmh9sqrovejavfv8%40group.calendar.google.com</id><published>2013-07-30T16:45:47.313Z</published><updated>2013-07-30T16:45:46.000Z</updated><app:edited>2013-07-30T16:45:46.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 2</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/o9nb1pfd0ifmh9sqrovejavfv8%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/o9nb1pfd0ifmh9sqrovejavfv8%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/o9nb1pfd0ifmh9sqrovejavfv8%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='app
 lication/atom+xml' 
href='https://www.google.com/calendar/feeds/o9nb1pfd0ifmh9sqrovejavfv8%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/o9nb1pfd0ifmh9sqrovejavfv8%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/o9nb1pfd0ifmh9sqrovejavfv8%40group.calendar.google.com'/><author><name>Test
 Calendar 2</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry></feed>
   
diff --git a/gdata/tests/traces/calendar/query_all_calendars-async 
b/gdata/tests/traces/calendar/query_all_calendars-async
new file mode 100644
index 0000000..d499299
--- /dev/null
+++ b/gdata/tests/traces/calendar/query_all_calendars-async
@@ -0,0 +1,67 @@
+> GET /calendar/feeds/default/allcalendars/full HTTP/1.1
+> Soup-Debug-Timestamp: 1375202707
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 26 (0x7fffe003f550), SoupSocket 28 (0x775190)
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 302 Moved Temporarily
+< Soup-Debug-Timestamp: 1375202707
+< Soup-Debug: SoupMessage 26 (0x7fffe003f550)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_t4EurujSJEVz4Oz9mAIOytzvk2x5HxgdMhjgmIZQyEhJEVxBkGa9tYZB61Yy8JtAPaktxoTLVkhp854Pjz3Lu2nGX3VFkbf3hmep1Z77H5UUPxIsLyYKJ-XIqF26WY8xy6o6N8-w_azdQg_R57FuB6O-GUgGUKDr2aKE9iTWpO0XsB7-zCP0UEx7yuXEnbLb7XVAw5KqOV1FqKEA6grSKkAqUaQftC9ppmNnCTUl0XskgKlvQxIBg-580Pa1-4yjY5tacPmBQVR42znpOSUkcg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:45:08 GMT
+< Set-Cookie: S=calendar=dXpp_9Z3o1659tATizshWg;Expires=Fri, 09-Aug-2013 12:03:47 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:45:07 GMT
+< Date: Tue, 30 Jul 2013 16:45:07 GMT
+< Location: https://www.google.com/calendar/feeds/default/allcalendars/full?gsessionid=dXpp_9Z3o1659tATizshWg
+< Content-Type: text/html; charset=UTF-8
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <HTML>
+< <HEAD>
+< <TITLE>Moved Temporarily</TITLE>
+< </HEAD>
+< <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
+< <H1>Moved Temporarily</H1>
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/allcalendars/full?gsessionid=dXpp_9Z3o1659tATizshWg";>here</A>.
+< </BODY>
+< </HTML>
+  
+> GET /calendar/feeds/default/allcalendars/full?gsessionid=dXpp_9Z3o1659tATizshWg HTTP/1.1
+> Soup-Debug-Timestamp: 1375202707
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 26 (0x7fffe003f550), SoupSocket 28 (0x775190), restarted
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375202708
+< Soup-Debug: SoupMessage 26 (0x7fffe003f550)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_x9DCxs6Yn1ShR7x5wx1k6e37TbqaZyvZnHbBDD5MjDqIwu2doXjOCD97mfXE8YE20iZQLD52PYbtpDGgujgmHXXGW1wlvqMs94qpgxdE8eYecbfbso9UjfaO5uqfvsRXIhKhe7zV2m0bacHn0JcyH7mkYYXHxHv7XZ_tjZftH-i5SVfC5OZaKOQXxynRfd_Yz5PzuJngGrHUxv5bViZFI3gQCqJikX_t9TXaydAiNvFoCzIgXcLmw11rsBONKvKvzka6NqtM8xqoAdhWs62jAQ
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:45:08 GMT
+< Set-Cookie: S=calendar=WT7oFVPSye1qKoYNJoXoLw;Expires=Mon, 12-Aug-2013 19:21:38 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:45:08 GMT
+< Date: Tue, 30 Jul 2013 16:45:08 GMT
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.6
+< ETag: W/"CEAESX0-eip7JGA9WhFWEk0."
+< Last-Modified: Tue, 30 Jul 2013 16:45:08 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CEAESX0-eip7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendarFeed'><id>http://www.google.com/calendar/feeds/default/allcalendars/full</id><updated>2013-07-30T16:45:08.352Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title>GData Test's Calendar List</title><link 
rel='alternate' type='text/html' href='https://www.google.com/calendar/render'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/all
 calendars/full'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><author><name>libgdata test 
googlemail com</name><email>libgdata test googlemail com</email></author><generator version='1.0' 
uri='http://www.google.com/calendar'>Google 
Calendar</generator><openSearch:startIndex>1</openSearch:startIndex><entry 
gd:etag='W/&quot;CEAERn47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/libgdata.test%40googlemail.com</id><published>2013-07-30T16:45:08.284Z</published><updated>2013-07-30T16:45:07.000Z</updated><app:edited>2013-07-30T16:45:07.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>libgdata test googlemail 
com</title><content type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link
  rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/acl/full'/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/libgdata.test%40googlemail.com'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/libgdata.test%40googlemail.com'/><author><name>libgdata
 test googlemail com</name><email>libgdata test googlemail com</email></author><gCal:accesslevel 
value='owner'/><gCal:color value='#2952A3'/><gCal:hidden value='false'/><gCal:select
 ed value='true'/><gCal:timezone value='Europe/London'/><gCal:timesCleaned value='4'/></entry><entry 
gd:etag='W/&quot;CEAERX47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/8dc1p0kuphlpb7c0i64do76drs%40group.calendar.google.com</id><published>2013-07-30T16:45:08.285Z</published><updated>2013-07-30T16:45:04.000Z</updated><app:edited>2013-07-30T16:45:04.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 1</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/8dc1p0kuphlpb7c0i64do76drs%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/8dc1p0kuphlpb7c0i64do76drs%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml'
  
href='https://www.google.com/calendar/feeds/8dc1p0kuphlpb7c0i64do76drs%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/8dc1p0kuphlpb7c0i64do76drs%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/8dc1p0kuphlpb7c0i64do76drs%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/8dc1p0kuphlpb7c0i64do76drs%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;CEAERn47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://w
 
ww.google.com/calendar/feeds/default/calendars/d4m6hr1ja6djkds4nnf3ua2r88%40group.calendar.google.com</id><published>2013-07-30T16:45:08.309Z</published><updated>2013-07-30T16:45:07.000Z</updated><app:edited>2013-07-30T16:45:07.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 2</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/d4m6hr1ja6djkds4nnf3ua2r88%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/d4m6hr1ja6djkds4nnf3ua2r88%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/d4m6hr1ja6djkds4nnf3ua2r88%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='app
 lication/atom+xml' 
href='https://www.google.com/calendar/feeds/d4m6hr1ja6djkds4nnf3ua2r88%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/d4m6hr1ja6djkds4nnf3ua2r88%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/d4m6hr1ja6djkds4nnf3ua2r88%40group.calendar.google.com'/><author><name>Test
 Calendar 2</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry></feed>
+  
diff --git a/gdata/tests/traces/calendar/query_all_calendars-async-cancellation 
b/gdata/tests/traces/calendar/query_all_calendars-async-cancellation
new file mode 100644
index 0000000..2d45a13
--- /dev/null
+++ b/gdata/tests/traces/calendar/query_all_calendars-async-cancellation
@@ -0,0 +1,304 @@
+> GET /calendar/feeds/default/allcalendars/full HTTP/1.1
+> Soup-Debug-Timestamp: 1375202726
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 38 (0x7fffe4010380), SoupSocket 37 (0x775610)
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 302 Moved Temporarily
+< Soup-Debug-Timestamp: 1375202726
+< Soup-Debug: SoupMessage 38 (0x7fffe4010380)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_t4EurujSJEVz4Oz9mAIOytzvk2x5HxgdMhjgmIZQyEhJEVxBkGa9tYZB61Yy8JtAPaktxoTLVkhp854Pjz3Lu2nGX3VFkbf3hmep1Z77H5UUPxIsLyYKJ-XIqF26WY8xy6o6N8-w_azdQg_R57FuB6O-GUgGUKDr2aKE9iTWpO0XsB7-zCP0UEx7yuXEnbLb7XVAw5KqOV1FqKEA6grSKkAqUaQftC9ppmNnCTUl0XskgKlvQxIBg-580Pa1-4yjY5tacPmBQVR42znpOSUkcg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:45:27 GMT
+< Set-Cookie: S=calendar=8e-gokgg33yO1NSNxDua7g;Expires=Fri, 09-Aug-2013 00:35:55 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:45:26 GMT
+< Date: Tue, 30 Jul 2013 16:45:26 GMT
+< Location: https://www.google.com/calendar/feeds/default/allcalendars/full?gsessionid=8e-gokgg33yO1NSNxDua7g
+< Content-Type: text/html; charset=UTF-8
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <HTML>
+< <HEAD>
+< <TITLE>Moved Temporarily</TITLE>
+< </HEAD>
+< <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
+< <H1>Moved Temporarily</H1>
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/allcalendars/full?gsessionid=8e-gokgg33yO1NSNxDua7g";>here</A>.
+< </BODY>
+< </HTML>
+  
+> GET /calendar/feeds/default/allcalendars/full?gsessionid=8e-gokgg33yO1NSNxDua7g HTTP/1.1
+> Soup-Debug-Timestamp: 1375202726
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 38 (0x7fffe4010380), SoupSocket 37 (0x775610), restarted
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375202727
+< Soup-Debug: SoupMessage 38 (0x7fffe4010380)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_q4NwI2V8UT-SSEMjiblkY8jTSCIGQJCo_ZFavemirrG0G2jzg3jjEVC3CQauPSZoNTFtDCw6Eu1-1S6nOyDK2J9zwLcpKLPHGuWk8fzL5JjKgN0Z0HbdhVtGaldMU2XCoc4_I0dsAZNFNzMl12pQ2IhlOpKYk_syrjXgbEIFWB07e6wSu6Mp1XswtWQL95nokCfWJkTHf4YGsR2zpy2736UplfLIVHDJLz7fiJzKG-5nUmoz2a5jdwopbkQ6flW44tTL7okPm_2Y6nqlPi74Mg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:45:27 GMT
+< Set-Cookie: S=calendar=PTX9veeFxJZz_78OlCSqTw;Expires=Fri, 09-Aug-2013 03:29:07 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:45:27 GMT
+< Date: Tue, 30 Jul 2013 16:45:27 GMT
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.6
+< ETag: W/"CEAGRn84fSp7JGA9WhFWEk0."
+< Last-Modified: Tue, 30 Jul 2013 16:45:27 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CEAGRn84fSp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendarFeed'><id>http://www.google.com/calendar/feeds/default/allcalendars/full</id><updated>2013-07-30T16:45:27.135Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title>GData Test's Calendar List</title><link 
rel='alternate' type='text/html' href='https://www.google.com/calendar/render'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/all
 calendars/full'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><author><name>libgdata test 
googlemail com</name><email>libgdata test googlemail com</email></author><generator version='1.0' 
uri='http://www.google.com/calendar'>Google 
Calendar</generator><openSearch:startIndex>1</openSearch:startIndex><entry 
gd:etag='W/&quot;CEAGRH47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/libgdata.test%40googlemail.com</id><published>2013-07-30T16:45:27.025Z</published><updated>2013-07-30T16:45:25.000Z</updated><app:edited>2013-07-30T16:45:25.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>libgdata test googlemail 
com</title><content type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link
  rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/acl/full'/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/libgdata.test%40googlemail.com'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/libgdata.test%40googlemail.com'/><author><name>libgdata
 test googlemail com</name><email>libgdata test googlemail com</email></author><gCal:accesslevel 
value='owner'/><gCal:color value='#2952A3'/><gCal:hidden value='false'/><gCal:select
 ed value='true'/><gCal:timezone value='Europe/London'/><gCal:timesCleaned value='4'/></entry><entry 
gd:etag='W/&quot;CEAGQ347eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/ff7b0ij183d2njra3h5n6so954%40group.calendar.google.com</id><published>2013-07-30T16:45:27.094Z</published><updated>2013-07-30T16:45:22.000Z</updated><app:edited>2013-07-30T16:45:22.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 1</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/ff7b0ij183d2njra3h5n6so954%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/ff7b0ij183d2njra3h5n6so954%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml'
  
href='https://www.google.com/calendar/feeds/ff7b0ij183d2njra3h5n6so954%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/ff7b0ij183d2njra3h5n6so954%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/ff7b0ij183d2njra3h5n6so954%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/ff7b0ij183d2njra3h5n6so954%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;CEAGRH47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://w
 
ww.google.com/calendar/feeds/default/calendars/1vf5r6p1jo31ki910e56jgrm7s%40group.calendar.google.com</id><published>2013-07-30T16:45:27.025Z</published><updated>2013-07-30T16:45:25.000Z</updated><app:edited>2013-07-30T16:45:25.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 2</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/1vf5r6p1jo31ki910e56jgrm7s%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/1vf5r6p1jo31ki910e56jgrm7s%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/1vf5r6p1jo31ki910e56jgrm7s%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='app
 lication/atom+xml' 
href='https://www.google.com/calendar/feeds/1vf5r6p1jo31ki910e56jgrm7s%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/1vf5r6p1jo31ki910e56jgrm7s%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/1vf5r6p1jo31ki910e56jgrm7s%40group.calendar.google.com'/><author><name>Test
 Calendar 2</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry></feed>
+  
+> GET /calendar/feeds/default/allcalendars/full HTTP/1.1
+> Soup-Debug-Timestamp: 1375202725
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 37 (0x8c2e60), SoupSocket 35 (0x775610)
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 302 Moved Temporarily
+< Soup-Debug-Timestamp: 1375202726
+< Soup-Debug: SoupMessage 37 (0x8c2e60)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_t4EurujSJEVz4Oz9mAIOytzvk2x5HxgdMhjgmIZQyEhJEVxBkGa9tYZB61Yy8JtAPaktxoTLVkhp854Pjz3Lu2nGX3VFkbf3hmep1Z77H5UUPxIsLyYKJ-XIqF26WY8xy6o6N8-w_azdQg_R57FuB6O-GUgGUKDr2aKE9iTWpO0XsB7-zCP0UEx7yuXEnbLb7XVAw5KqOV1FqKEA6grSKkAqUaQftC9ppmNnCTUl0XskgKlvQxIBg-580Pa1-4yjY5tacPmBQVR42znpOSUkcg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:45:27 GMT
+< Set-Cookie: S=calendar=h14OI8mSZ3gJF4RBqoLQjA;Expires=Mon, 12-Aug-2013 14:17:21 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:45:26 GMT
+< Date: Tue, 30 Jul 2013 16:45:26 GMT
+< Location: https://www.google.com/calendar/feeds/default/allcalendars/full?gsessionid=h14OI8mSZ3gJF4RBqoLQjA
+< Content-Type: text/html; charset=UTF-8
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <HTML>
+< <HEAD>
+< <TITLE>Moved Temporarily</TITLE>
+< </HEAD>
+< <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
+< <H1>Moved Temporarily</H1>
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/allcalendars/full?gsessionid=h14OI8mSZ3gJF4RBqoLQjA";>here</A>.
+< </BODY>
+< </HTML>
+  
+> GET /calendar/feeds/default/allcalendars/full HTTP/1.1
+> Soup-Debug-Timestamp: 1375202726
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 38 (0x7fffe4010380), SoupSocket 37 (0x775610)
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 302 Moved Temporarily
+< Soup-Debug-Timestamp: 1375202726
+< Soup-Debug: SoupMessage 38 (0x7fffe4010380)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_t4EurujSJEVz4Oz9mAIOytzvk2x5HxgdMhjgmIZQyEhJEVxBkGa9tYZB61Yy8JtAPaktxoTLVkhp854Pjz3Lu2nGX3VFkbf3hmep1Z77H5UUPxIsLyYKJ-XIqF26WY8xy6o6N8-w_azdQg_R57FuB6O-GUgGUKDr2aKE9iTWpO0XsB7-zCP0UEx7yuXEnbLb7XVAw5KqOV1FqKEA6grSKkAqUaQftC9ppmNnCTUl0XskgKlvQxIBg-580Pa1-4yjY5tacPmBQVR42znpOSUkcg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:45:27 GMT
+< Set-Cookie: S=calendar=8e-gokgg33yO1NSNxDua7g;Expires=Fri, 09-Aug-2013 00:35:55 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:45:26 GMT
+< Date: Tue, 30 Jul 2013 16:45:26 GMT
+< Location: https://www.google.com/calendar/feeds/default/allcalendars/full?gsessionid=8e-gokgg33yO1NSNxDua7g
+< Content-Type: text/html; charset=UTF-8
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <HTML>
+< <HEAD>
+< <TITLE>Moved Temporarily</TITLE>
+< </HEAD>
+< <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
+< <H1>Moved Temporarily</H1>
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/allcalendars/full?gsessionid=8e-gokgg33yO1NSNxDua7g";>here</A>.
+< </BODY>
+< </HTML>
+  
+> GET /calendar/feeds/default/allcalendars/full?gsessionid=8e-gokgg33yO1NSNxDua7g HTTP/1.1
+> Soup-Debug-Timestamp: 1375202726
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 38 (0x7fffe4010380), SoupSocket 37 (0x775610), restarted
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375202727
+< Soup-Debug: SoupMessage 38 (0x7fffe4010380)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_q4NwI2V8UT-SSEMjiblkY8jTSCIGQJCo_ZFavemirrG0G2jzg3jjEVC3CQauPSZoNTFtDCw6Eu1-1S6nOyDK2J9zwLcpKLPHGuWk8fzL5JjKgN0Z0HbdhVtGaldMU2XCoc4_I0dsAZNFNzMl12pQ2IhlOpKYk_syrjXgbEIFWB07e6wSu6Mp1XswtWQL95nokCfWJkTHf4YGsR2zpy2736UplfLIVHDJLz7fiJzKG-5nUmoz2a5jdwopbkQ6flW44tTL7okPm_2Y6nqlPi74Mg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:45:27 GMT
+< Set-Cookie: S=calendar=PTX9veeFxJZz_78OlCSqTw;Expires=Fri, 09-Aug-2013 03:29:07 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:45:27 GMT
+< Date: Tue, 30 Jul 2013 16:45:27 GMT
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.6
+< ETag: W/"CEAGRn84fSp7JGA9WhFWEk0."
+< Last-Modified: Tue, 30 Jul 2013 16:45:27 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CEAGRn84fSp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendarFeed'><id>http://www.google.com/calendar/feeds/default/allcalendars/full</id><updated>2013-07-30T16:45:27.135Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title>GData Test's Calendar List</title><link 
rel='alternate' type='text/html' href='https://www.google.com/calendar/render'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/all
 calendars/full'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><author><name>libgdata test 
googlemail com</name><email>libgdata test googlemail com</email></author><generator version='1.0' 
uri='http://www.google.com/calendar'>Google 
Calendar</generator><openSearch:startIndex>1</openSearch:startIndex><entry 
gd:etag='W/&quot;CEAGRH47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/libgdata.test%40googlemail.com</id><published>2013-07-30T16:45:27.025Z</published><updated>2013-07-30T16:45:25.000Z</updated><app:edited>2013-07-30T16:45:25.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>libgdata test googlemail 
com</title><content type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link
  rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/acl/full'/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/libgdata.test%40googlemail.com'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/libgdata.test%40googlemail.com'/><author><name>libgdata
 test googlemail com</name><email>libgdata test googlemail com</email></author><gCal:accesslevel 
value='owner'/><gCal:color value='#2952A3'/><gCal:hidden value='false'/><gCal:select
 ed value='true'/><gCal:timezone value='Europe/London'/><gCal:timesCleaned value='4'/></entry><entry 
gd:etag='W/&quot;CEAGQ347eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/ff7b0ij183d2njra3h5n6so954%40group.calendar.google.com</id><published>2013-07-30T16:45:27.094Z</published><updated>2013-07-30T16:45:22.000Z</updated><app:edited>2013-07-30T16:45:22.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 1</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/ff7b0ij183d2njra3h5n6so954%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/ff7b0ij183d2njra3h5n6so954%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml'
  
href='https://www.google.com/calendar/feeds/ff7b0ij183d2njra3h5n6so954%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/ff7b0ij183d2njra3h5n6so954%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/ff7b0ij183d2njra3h5n6so954%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/ff7b0ij183d2njra3h5n6so954%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;CEAGRH47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://w
 
ww.google.com/calendar/feeds/default/calendars/1vf5r6p1jo31ki910e56jgrm7s%40group.calendar.google.com</id><published>2013-07-30T16:45:27.025Z</published><updated>2013-07-30T16:45:25.000Z</updated><app:edited>2013-07-30T16:45:25.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 2</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/1vf5r6p1jo31ki910e56jgrm7s%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/1vf5r6p1jo31ki910e56jgrm7s%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/1vf5r6p1jo31ki910e56jgrm7s%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='app
 lication/atom+xml' 
href='https://www.google.com/calendar/feeds/1vf5r6p1jo31ki910e56jgrm7s%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/1vf5r6p1jo31ki910e56jgrm7s%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/1vf5r6p1jo31ki910e56jgrm7s%40group.calendar.google.com'/><author><name>Test
 Calendar 2</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry></feed>
+  
+> GET /calendar/feeds/default/allcalendars/full HTTP/1.1
+> Soup-Debug-Timestamp: 1375202727
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 39 (0x7fffe003f370), SoupSocket 38 (0x775610)
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 302 Moved Temporarily
+< Soup-Debug-Timestamp: 1375202727
+< Soup-Debug: SoupMessage 39 (0x7fffe003f370)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_t4EurujSJEVz4Oz9mAIOytzvk2x5HxgdMhjgmIZQyEhJEVxBkGa9tYZB61Yy8JtAPaktxoTLVkhp854Pjz3Lu2nGX3VFkbf3hmep1Z77H5UUPxIsLyYKJ-XIqF26WY8xy6o6N8-w_azdQg_R57FuB6O-GUgGUKDr2aKE9iTWpO0XsB7-zCP0UEx7yuXEnbLb7XVAw5KqOV1FqKEA6grSKkAqUaQftC9ppmNnCTUl0XskgKlvQxIBg-580Pa1-4yjY5tacPmBQVR42znpOSUkcg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:45:28 GMT
+< Set-Cookie: S=calendar=84wQ5KkbGYW3gEgOm4JRqA;Expires=Wed, 07-Aug-2013 04:32:34 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:45:27 GMT
+< Date: Tue, 30 Jul 2013 16:45:27 GMT
+< Location: https://www.google.com/calendar/feeds/default/allcalendars/full?gsessionid=84wQ5KkbGYW3gEgOm4JRqA
+< Content-Type: text/html; charset=UTF-8
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <HTML>
+< <HEAD>
+< <TITLE>Moved Temporarily</TITLE>
+< </HEAD>
+< <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
+< <H1>Moved Temporarily</H1>
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/allcalendars/full?gsessionid=84wQ5KkbGYW3gEgOm4JRqA";>here</A>.
+< </BODY>
+< </HTML>
+  
+> GET /calendar/feeds/default/allcalendars/full?gsessionid=84wQ5KkbGYW3gEgOm4JRqA HTTP/1.1
+> Soup-Debug-Timestamp: 1375202727
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 39 (0x7fffe003f370), SoupSocket 38 (0x775610), restarted
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375202728
+< Soup-Debug: SoupMessage 39 (0x7fffe003f370)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_q4NwI2V8UT-SSEMjiblkY8jTSCIGQJCo_ZFavemirrG0G2jzg3jjEVC3CQauPSZoNTFtDCw6Eu1-1S6nOyDK2J9zwLcpKLPHGuWk8fzL5JjKgN0Z0HbdhVtGaldMU2XCoc4_I0dsAZNFNzMl12pQ2IhlOpKYk_syrjXgbEIFWB07e6wSu6Mp1XswtWQL95nokCfWJkTHf4YGsR2zpy2736UplfLIVHDJLz7fiJzKG-5nUmoz2a5jdwopbkQ6flW44tTL7okPm_2Y6nqlPi74Mg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:45:29 GMT
+< Set-Cookie: S=calendar=36_ssrqhcwPWhLlQvXLCNA;Expires=Tue, 13-Aug-2013 16:04:41 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:45:28 GMT
+< Date: Tue, 30 Jul 2013 16:45:28 GMT
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.6
+< ETag: W/"CEAGSX88eip7JGA9WhFWEk0."
+< Last-Modified: Tue, 30 Jul 2013 16:45:28 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CEAGSX88eip7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendarFeed'><id>http://www.google.com/calendar/feeds/default/allcalendars/full</id><updated>2013-07-30T16:45:28.172Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title>GData Test's Calendar List</title><link 
rel='alternate' type='text/html' href='https://www.google.com/calendar/render'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/all
 calendars/full'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><author><name>libgdata test 
googlemail com</name><email>libgdata test googlemail com</email></author><generator version='1.0' 
uri='http://www.google.com/calendar'>Google 
Calendar</generator><openSearch:startIndex>1</openSearch:startIndex><entry 
gd:etag='W/&quot;CEAGRH47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/libgdata.test%40googlemail.com</id><published>2013-07-30T16:45:28.154Z</published><updated>2013-07-30T16:45:25.000Z</updated><app:edited>2013-07-30T16:45:25.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>libgdata test googlemail 
com</title><content type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link
  rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/acl/full'/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/libgdata.test%40googlemail.com'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/libgdata.test%40googlemail.com'/><author><name>libgdata
 test googlemail com</name><email>libgdata test googlemail com</email></author><gCal:accesslevel 
value='owner'/><gCal:color value='#2952A3'/><gCal:hidden value='false'/><gCal:select
 ed value='true'/><gCal:timezone value='Europe/London'/><gCal:timesCleaned value='4'/></entry><entry 
gd:etag='W/&quot;CEAGQ347eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/ff7b0ij183d2njra3h5n6so954%40group.calendar.google.com</id><published>2013-07-30T16:45:28.154Z</published><updated>2013-07-30T16:45:22.000Z</updated><app:edited>2013-07-30T16:45:22.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 1</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/ff7b0ij183d2njra3h5n6so954%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/ff7b0ij183d2njra3h5n6so954%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml'
  
href='https://www.google.com/calendar/feeds/ff7b0ij183d2njra3h5n6so954%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/ff7b0ij183d2njra3h5n6so954%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/ff7b0ij183d2njra3h5n6so954%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/ff7b0ij183d2njra3h5n6so954%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;CEAGRH47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://w
 
ww.google.com/calendar/feeds/default/calendars/1vf5r6p1jo31ki910e56jgrm7s%40group.calendar.google.com</id><published>2013-07-30T16:45:28.154Z</published><updated>2013-07-30T16:45:25.000Z</updated><app:edited>2013-07-30T16:45:25.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 2</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/1vf5r6p1jo31ki910e56jgrm7s%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/1vf5r6p1jo31ki910e56jgrm7s%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/1vf5r6p1jo31ki910e56jgrm7s%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='app
 lication/atom+xml' 
href='https://www.google.com/calendar/feeds/1vf5r6p1jo31ki910e56jgrm7s%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/1vf5r6p1jo31ki910e56jgrm7s%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/1vf5r6p1jo31ki910e56jgrm7s%40group.calendar.google.com'/><author><name>Test
 Calendar 2</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry></feed>
+  
+> GET /calendar/feeds/default/allcalendars/full HTTP/1.1
+> Soup-Debug-Timestamp: 1375202728
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 40 (0x7fffe4010740), SoupSocket 39 (0x775550)
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 302 Moved Temporarily
+< Soup-Debug-Timestamp: 1375202728
+< Soup-Debug: SoupMessage 40 (0x7fffe4010740)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_t4EurujSJEVz4Oz9mAIOytzvk2x5HxgdMhjgmIZQyEhJEVxBkGa9tYZB61Yy8JtAPaktxoTLVkhp854Pjz3Lu2nGX3VFkbf3hmep1Z77H5UUPxIsLyYKJ-XIqF26WY8xy6o6N8-w_azdQg_R57FuB6O-GUgGUKDr2aKE9iTWpO0XsB7-zCP0UEx7yuXEnbLb7XVAw5KqOV1FqKEA6grSKkAqUaQftC9ppmNnCTUl0XskgKlvQxIBg-580Pa1-4yjY5tacPmBQVR42znpOSUkcg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:45:29 GMT
+< Set-Cookie: S=calendar=8r1o3ZcHhLzU1a6-mcul4g;Expires=Fri, 09-Aug-2013 17:21:14 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:45:28 GMT
+< Date: Tue, 30 Jul 2013 16:45:28 GMT
+< Location: https://www.google.com/calendar/feeds/default/allcalendars/full?gsessionid=8r1o3ZcHhLzU1a6-mcul4g
+< Content-Type: text/html; charset=UTF-8
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <HTML>
+< <HEAD>
+< <TITLE>Moved Temporarily</TITLE>
+< </HEAD>
+< <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
+< <H1>Moved Temporarily</H1>
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/allcalendars/full?gsessionid=8r1o3ZcHhLzU1a6-mcul4g";>here</A>.
+< </BODY>
+< </HTML>
+  
+> GET /calendar/feeds/default/allcalendars/full?gsessionid=8r1o3ZcHhLzU1a6-mcul4g HTTP/1.1
+> Soup-Debug-Timestamp: 1375202728
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 40 (0x7fffe4010740), SoupSocket 39 (0x775550), restarted
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375202728
+< Soup-Debug: SoupMessage 40 (0x7fffe4010740)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_q4NwI2V8UT-SSEMjiblkY8jTSCIGQJCo_ZFavemirrG0G2jzg3jjEVC3CQauPSZoNTFtDCw6Eu1-1S6nOyDK2J9zwLcpKLPHGuWk8fzL5JjKgN0Z0HbdhVtGaldMU2XCoc4_I0dsAZNFNzMl12pQ2IhlOpKYk_syrjXgbEIFWB07e6wSu6Mp1XswtWQL95nokCfWJkTHf4YGsR2zpy2736UplfLIVHDJLz7fiJzKG-5nUmoz2a5jdwopbkQ6flW44tTL7okPm_2Y6nqlPi74Mg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:45:29 GMT
+< Set-Cookie: S=calendar=nYgkCAhY0fKXphVwkctg7A;Expires=Sat, 10-Aug-2013 12:16:23 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:45:28 GMT
+< Date: Tue, 30 Jul 2013 16:45:28 GMT
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.6
+< ETag: W/"CEAGSXs4eip7JGA9WhFWEk0."
+< Last-Modified: Tue, 30 Jul 2013 16:45:28 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CEAGSXs4eip7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendarFeed'><id>http://www.google.com/calendar/feeds/default/allcalendars/full</id><updated>2013-07-30T16:45:28.532Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title>GData Test's Calendar List</title><link 
rel='alternate' type='text/html' href='https://www.google.com/calendar/render'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/all
 calendars/full'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><author><name>libgdata test 
googlemail com</name><email>libgdata test googlemail com</email></author><generator version='1.0' 
uri='http://www.google.com/calendar'>Google 
Calendar</generator><openSearch:startIndex>1</openSearch:startIndex><entry 
gd:etag='W/&quot;CEAGRH47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/libgdata.test%40googlemail.com</id><published>2013-07-30T16:45:28.512Z</published><updated>2013-07-30T16:45:25.000Z</updated><app:edited>2013-07-30T16:45:25.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>libgdata test googlemail 
com</title><content type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link
  rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/acl/full'/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/libgdata.test%40googlemail.com'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/libgdata.test%40googlemail.com'/><author><name>libgdata
 test googlemail com</name><email>libgdata test googlemail com</email></author><gCal:accesslevel 
value='owner'/><gCal:color value='#2952A3'/><gCal:hidden value='false'/><gCal:select
 ed value='true'/><gCal:timezone value='Europe/London'/><gCal:timesCleaned value='4'/></entry><entry 
gd:etag='W/&quot;CEAGQ347eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/ff7b0ij183d2njra3h5n6so954%40group.calendar.google.com</id><published>2013-07-30T16:45:28.512Z</published><updated>2013-07-30T16:45:22.000Z</updated><app:edited>2013-07-30T16:45:22.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 1</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/ff7b0ij183d2njra3h5n6so954%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/ff7b0ij183d2njra3h5n6so954%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml'
  
href='https://www.google.com/calendar/feeds/ff7b0ij183d2njra3h5n6so954%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/ff7b0ij183d2njra3h5n6so954%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/ff7b0ij183d2njra3h5n6so954%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/ff7b0ij183d2njra3h5n6so954%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;CEAGRH47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://w
 
ww.google.com/calendar/feeds/default/calendars/1vf5r6p1jo31ki910e56jgrm7s%40group.calendar.google.com</id><published>2013-07-30T16:45:28.512Z</published><updated>2013-07-30T16:45:25.000Z</updated><app:edited>2013-07-30T16:45:25.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 2</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/1vf5r6p1jo31ki910e56jgrm7s%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/1vf5r6p1jo31ki910e56jgrm7s%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/1vf5r6p1jo31ki910e56jgrm7s%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='app
 lication/atom+xml' 
href='https://www.google.com/calendar/feeds/1vf5r6p1jo31ki910e56jgrm7s%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/1vf5r6p1jo31ki910e56jgrm7s%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/allcalendars/full/1vf5r6p1jo31ki910e56jgrm7s%40group.calendar.google.com'/><author><name>Test
 Calendar 2</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry></feed>
+  
diff --git a/gdata/tests/traces/calendar/query_events-async b/gdata/tests/traces/calendar/query_events-async
new file mode 100644
index 0000000..b2582d0
--- /dev/null
+++ b/gdata/tests/traces/calendar/query_events-async
@@ -0,0 +1,67 @@
+> GET /calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full HTTP/1.1
+> Soup-Debug-Timestamp: 1375202770
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 66 (0x8c28c0), SoupSocket 63 (0x775490)
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 302 Moved Temporarily
+< Soup-Debug-Timestamp: 1375202770
+< Soup-Debug: SoupMessage 66 (0x8c28c0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_lzf1dm9Ue8N3SJp2J6o695WrE5nMbNLIXgO1GwYSOH0dinvA7V6dAhAIAEim2gLMsmbC2ddMnDUzaVKIGr3_JWCh97kMTIAR1M2IeSsu02b7EZA-X4HjICLw-x5pMnXhR8i08nLbVHSLT_No8fvB518lPWszfELKmW9TYG0-BAxXFzn9IKi_SmDnEv70WeTVk9AKBXEZK8GgbVvG2jwg9IxQwwSgxxH2Am-wKlw1Xh28Ocyi9bXsxw2zvbHLluu_emFBzQJ8Ds6aIurEQIryfg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:11 GMT
+< Set-Cookie: S=calendar=hcz4ERi0eDa5Chh4Ez07uw;Expires=Wed, 07-Aug-2013 02:05:33 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:10 GMT
+< Date: Tue, 30 Jul 2013 16:46:10 GMT
+< Location: 
https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full?gsessionid=hcz4ERi0eDa5Chh4Ez07uw
+< Content-Type: text/html; charset=UTF-8
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <HTML>
+< <HEAD>
+< <TITLE>Moved Temporarily</TITLE>
+< </HEAD>
+< <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
+< <H1>Moved Temporarily</H1>
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full?gsessionid=hcz4ERi0eDa5Chh4Ez07uw";>here</A>.
+< </BODY>
+< </HTML>
+  
+> GET 
/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full?gsessionid=hcz4ERi0eDa5Chh4Ez07uw
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375202770
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 66 (0x8c28c0), SoupSocket 63 (0x775490), restarted
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375202770
+< Soup-Debug: SoupMessage 66 (0x8c28c0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_q4NwI2V8UT-SSEMjiblkY8jTSCIGQJCo_ZFavemirrG0G2jzg3jjEVC3CQauPSZoNTFtDCw6Eu1-1S6nOyDK2J9zwLcpKLPHGuWk8fzL5JjKgN0Z0HbdhVtGaldMU2XCoc4_I0dsAZNFNzMl12pQ2IhlOpKYk_syrjXgbEIFWB07e6wSu6Mp1XswtWQL95nokCfWJkTHf4YGsR2zpy2736UplfLIVHDJLz7fiJzKG-5nUmoz2a5jdwopbkQ6flW44tTL7okPm_2Y6nqlPi74Mg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:11 GMT
+< Set-Cookie: S=calendar=Txey_ZM8qiZ1j9ie4EMfEw;Expires=Fri, 09-Aug-2013 12:26:53 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:10 GMT
+< Date: Tue, 30 Jul 2013 16:46:10 GMT
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.6
+< ETag: W/"CEACR347eCp7JGA9WhFWEk0."
+< Last-Modified: Tue, 30 Jul 2013 16:46:06 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='W/&quot;CEACR347eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#eventFeed'><id>http://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full</id><updated>2013-07-30T16:46:06.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title>Temp 
Test Calendar</title><subtitle>Temp Test Calendar</subtitle><link rel='alternate' type='text/html' 
href='https://www.google.com/calendar/embed?src=i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com'/><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full'/><link
 rel='h
 ttp://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full/batch'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full?max-results=25'/><author><name>Temp
 Test Calendar</name></author><generator version='1.0' uri='http://www.google.com/calendar'>Google 
Calendar</generator><openSearch:totalResults>0</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><gCal:timezone
 value='UTC'/><gCal:timesCleaned value='0'/></feed>
+  
diff --git a/gdata/tests/traces/calendar/query_events-async-cancellation 
b/gdata/tests/traces/calendar/query_events-async-cancellation
new file mode 100644
index 0000000..dbf3320
--- /dev/null
+++ b/gdata/tests/traces/calendar/query_events-async-cancellation
@@ -0,0 +1,237 @@
+> GET /calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full HTTP/1.1
+> Soup-Debug-Timestamp: 1375202789
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 84 (0x7fffe003f280), SoupSocket 79 (0x775490)
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 302 Moved Temporarily
+< Soup-Debug-Timestamp: 1375202789
+< Soup-Debug: SoupMessage 84 (0x7fffe003f280)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_lzf1dm9Ue8N3SJp2J6o695WrE5nMbNLIXgO1GwYSOH0dinvA7V6dAhAIAEim2gLMsmbC2ddMnDUzaVKIGr3_JWCh97kMTIAR1M2IeSsu02b7EZA-X4HjICLw-x5pMnXhR8i08nLbVHSLT_No8fvB518lPWszfELKmW9TYG0-BAxXFzn9IKi_SmDnEv70WeTVk9AKBXEZK8GgbVvG2jwg9IxQwwSgxxH2Am-wKlw1Xh28Ocyi9bXsxw2zvbHLluu_emFBzQJ8Ds6aIurEQIryfg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:30 GMT
+< Set-Cookie: S=calendar=Rm0OvTPGUldJoCTW5xxjEA;Expires=Thu, 08-Aug-2013 22:43:11 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:29 GMT
+< Date: Tue, 30 Jul 2013 16:46:29 GMT
+< Location: 
https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full?gsessionid=Rm0OvTPGUldJoCTW5xxjEA
+< Content-Type: text/html; charset=UTF-8
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <HTML>
+< <HEAD>
+< <TITLE>Moved Temporarily</TITLE>
+< </HEAD>
+< <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
+< <H1>Moved Temporarily</H1>
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full?gsessionid=Rm0OvTPGUldJoCTW5xxjEA";>here</A>.
+< </BODY>
+< </HTML>
+  
+> GET 
/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full?gsessionid=Rm0OvTPGUldJoCTW5xxjEA
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375202790
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 86 (0x7fffe4010380), SoupSocket 81 (0x775490), restarted
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375202790
+< Soup-Debug: SoupMessage 86 (0x7fffe4010380)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_QMIIFxw1-89I4fIiltp3toM_OQPaV-s2Op5YfNNKqskJ-elHTN3M2YrIdeRcj84Q94sPukowimpQydy5Tbb14G3YJ4S-NHM8cpqZJBifvXkyktCQOlLQS03AMrw1-u6qvRouqxtCMYd1apUUU9kXVWwoSYowH2iqScUeke9qp_ZEetMmdoQ61WwPB5gd4Of34y2qjfi6BC-i8q-4AfecimYdMpxx-Z7ncnkPEftWV84VyvVUhWfLM8oWcP3zT943b_FOzjNl76pHK1Za70lHtw
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:31 GMT
+< Set-Cookie: S=calendar=DNyu1fBu5BZbeqMI0QC35g;Expires=Sun, 11-Aug-2013 08:32:53 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:30 GMT
+< Date: Tue, 30 Jul 2013 16:46:30 GMT
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.6
+< ETag: W/"CEAMRH47eCp7JGA9WhFWEk0."
+< Last-Modified: Tue, 30 Jul 2013 16:46:25 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='W/&quot;CEAMRH47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#eventFeed'><id>http://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full</id><updated>2013-07-30T16:46:25.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title>Temp 
Test Calendar</title><subtitle>Temp Test Calendar</subtitle><link rel='alternate' type='text/html' 
href='https://www.google.com/calendar/embed?src=i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com'/><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full'/><link
 rel='h
 ttp://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full/batch'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full?max-results=25'/><author><name>Temp
 Test Calendar</name></author><generator version='1.0' uri='http://www.google.com/calendar'>Google 
Calendar</generator><openSearch:totalResults>0</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><gCal:timezone
 value='UTC'/><gCal:timesCleaned value='0'/></feed>
+  
+> GET /calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full HTTP/1.1
+> Soup-Debug-Timestamp: 1375202789
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 85 (0x7fffe003f730), SoupSocket 80 (0x775490)
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 302 Moved Temporarily
+< Soup-Debug-Timestamp: 1375202790
+< Soup-Debug: SoupMessage 85 (0x7fffe003f730)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_lzf1dm9Ue8N3SJp2J6o695WrE5nMbNLIXgO1GwYSOH0dinvA7V6dAhAIAEim2gLMsmbC2ddMnDUzaVKIGr3_JWCh97kMTIAR1M2IeSsu02b7EZA-X4HjICLw-x5pMnXhR8i08nLbVHSLT_No8fvB518lPWszfELKmW9TYG0-BAxXFzn9IKi_SmDnEv70WeTVk9AKBXEZK8GgbVvG2jwg9IxQwwSgxxH2Am-wKlw1Xh28Ocyi9bXsxw2zvbHLluu_emFBzQJ8Ds6aIurEQIryfg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:31 GMT
+< Set-Cookie: S=calendar=APwq7KMgNEvxfdl1xWGHkA;Expires=Mon, 12-Aug-2013 12:21:49 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:30 GMT
+< Date: Tue, 30 Jul 2013 16:46:30 GMT
+< Location: 
https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full?gsessionid=APwq7KMgNEvxfdl1xWGHkA
+< Content-Type: text/html; charset=UTF-8
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <HTML>
+< <HEAD>
+< <TITLE>Moved Temporarily</TITLE>
+< </HEAD>
+< <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
+< <H1>Moved Temporarily</H1>
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full?gsessionid=APwq7KMgNEvxfdl1xWGHkA";>here</A>.
+< </BODY>
+< </HTML>
+  
+> GET /calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full HTTP/1.1
+> Soup-Debug-Timestamp: 1375202790
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 86 (0x7fffe4010380), SoupSocket 81 (0x775490)
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 302 Moved Temporarily
+< Soup-Debug-Timestamp: 1375202790
+< Soup-Debug: SoupMessage 86 (0x7fffe4010380)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_lzf1dm9Ue8N3SJp2J6o695WrE5nMbNLIXgO1GwYSOH0dinvA7V6dAhAIAEim2gLMsmbC2ddMnDUzaVKIGr3_JWCh97kMTIAR1M2IeSsu02b7EZA-X4HjICLw-x5pMnXhR8i08nLbVHSLT_No8fvB518lPWszfELKmW9TYG0-BAxXFzn9IKi_SmDnEv70WeTVk9AKBXEZK8GgbVvG2jwg9IxQwwSgxxH2Am-wKlw1Xh28Ocyi9bXsxw2zvbHLluu_emFBzQJ8Ds6aIurEQIryfg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:31 GMT
+< Set-Cookie: S=calendar=WMVUagnRJLjVEymdLfMUhg;Expires=Fri, 09-Aug-2013 11:56:21 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:30 GMT
+< Date: Tue, 30 Jul 2013 16:46:30 GMT
+< Location: 
https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full?gsessionid=WMVUagnRJLjVEymdLfMUhg
+< Content-Type: text/html; charset=UTF-8
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <HTML>
+< <HEAD>
+< <TITLE>Moved Temporarily</TITLE>
+< </HEAD>
+< <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
+< <H1>Moved Temporarily</H1>
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full?gsessionid=WMVUagnRJLjVEymdLfMUhg";>here</A>.
+< </BODY>
+< </HTML>
+  
+> GET 
/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full?gsessionid=WMVUagnRJLjVEymdLfMUhg
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375202790
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 86 (0x7fffe4010380), SoupSocket 81 (0x775490), restarted
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375202790
+< Soup-Debug: SoupMessage 86 (0x7fffe4010380)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_QMIIFxw1-89I4fIiltp3toM_OQPaV-s2Op5YfNNKqskJ-elHTN3M2YrIdeRcj84Q94sPukowimpQydy5Tbb14G3YJ4S-NHM8cpqZJBifvXkyktCQOlLQS03AMrw1-u6qvRouqxtCMYd1apUUU9kXVWwoSYowH2iqScUeke9qp_ZEetMmdoQ61WwPB5gd4Of34y2qjfi6BC-i8q-4AfecimYdMpxx-Z7ncnkPEftWV84VyvVUhWfLM8oWcP3zT943b_FOzjNl76pHK1Za70lHtw
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:31 GMT
+< Set-Cookie: S=calendar=DNyu1fBu5BZbeqMI0QC35g;Expires=Sun, 11-Aug-2013 08:32:53 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:30 GMT
+< Date: Tue, 30 Jul 2013 16:46:30 GMT
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.6
+< ETag: W/"CEAMRH47eCp7JGA9WhFWEk0."
+< Last-Modified: Tue, 30 Jul 2013 16:46:25 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='W/&quot;CEAMRH47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#eventFeed'><id>http://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full</id><updated>2013-07-30T16:46:25.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title>Temp 
Test Calendar</title><subtitle>Temp Test Calendar</subtitle><link rel='alternate' type='text/html' 
href='https://www.google.com/calendar/embed?src=i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com'/><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full'/><link
 rel='h
 ttp://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full/batch'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full?max-results=25'/><author><name>Temp
 Test Calendar</name></author><generator version='1.0' uri='http://www.google.com/calendar'>Google 
Calendar</generator><openSearch:totalResults>0</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><gCal:timezone
 value='UTC'/><gCal:timesCleaned value='0'/></feed>
+  
+> GET /calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full HTTP/1.1
+> Soup-Debug-Timestamp: 1375202790
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 87 (0x8c28c0), SoupSocket 82 (0x775490)
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 302 Moved Temporarily
+< Soup-Debug-Timestamp: 1375202790
+< Soup-Debug: SoupMessage 87 (0x8c28c0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_lzf1dm9Ue8N3SJp2J6o695WrE5nMbNLIXgO1GwYSOH0dinvA7V6dAhAIAEim2gLMsmbC2ddMnDUzaVKIGr3_JWCh97kMTIAR1M2IeSsu02b7EZA-X4HjICLw-x5pMnXhR8i08nLbVHSLT_No8fvB518lPWszfELKmW9TYG0-BAxXFzn9IKi_SmDnEv70WeTVk9AKBXEZK8GgbVvG2jwg9IxQwwSgxxH2Am-wKlw1Xh28Ocyi9bXsxw2zvbHLluu_emFBzQJ8Ds6aIurEQIryfg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:31 GMT
+< Set-Cookie: S=calendar=5q7rqCQ-BsgH2H3ikzMJxg;Expires=Tue, 13-Aug-2013 03:25:52 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:30 GMT
+< Date: Tue, 30 Jul 2013 16:46:30 GMT
+< Location: 
https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full?gsessionid=5q7rqCQ-BsgH2H3ikzMJxg
+< Content-Type: text/html; charset=UTF-8
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <HTML>
+< <HEAD>
+< <TITLE>Moved Temporarily</TITLE>
+< </HEAD>
+< <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
+< <H1>Moved Temporarily</H1>
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full?gsessionid=5q7rqCQ-BsgH2H3ikzMJxg";>here</A>.
+< </BODY>
+< </HTML>
+  
+> GET 
/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full?gsessionid=5q7rqCQ-BsgH2H3ikzMJxg
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375202790
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 87 (0x8c28c0), SoupSocket 82 (0x775490), restarted
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375202791
+< Soup-Debug: SoupMessage 87 (0x8c28c0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_q4NwI2V8UT-SSEMjiblkY8jTSCIGQJCo_ZFavemirrG0G2jzg3jjEVC3CQauPSZoNTFtDCw6Eu1-1S6nOyDK2J9zwLcpKLPHGuWk8fzL5JjKgN0Z0HbdhVtGaldMU2XCoc4_I0dsAZNFNzMl12pQ2IhlOpKYk_syrjXgbEIFWB07e6wSu6Mp1XswtWQL95nokCfWJkTHf4YGsR2zpy2736UplfLIVHDJLz7fiJzKG-5nUmoz2a5jdwopbkQ6flW44tTL7okPm_2Y6nqlPi74Mg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:32 GMT
+< Set-Cookie: S=calendar=4CJYADT5Ok39om1leHy2Fw;Expires=Tue, 06-Aug-2013 22:35:18 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:31 GMT
+< Date: Tue, 30 Jul 2013 16:46:31 GMT
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.6
+< ETag: W/"CEAMRH47eCp7JGA9WhFWEk0."
+< Last-Modified: Tue, 30 Jul 2013 16:46:25 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='W/&quot;CEAMRH47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#eventFeed'><id>http://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full</id><updated>2013-07-30T16:46:25.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title>Temp 
Test Calendar</title><subtitle>Temp Test Calendar</subtitle><link rel='alternate' type='text/html' 
href='https://www.google.com/calendar/embed?src=i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com'/><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full'/><link
 rel='h
 ttp://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full/batch'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full?max-results=25'/><author><name>Temp
 Test Calendar</name></author><generator version='1.0' uri='http://www.google.com/calendar'>Google 
Calendar</generator><openSearch:totalResults>0</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><gCal:timezone
 value='UTC'/><gCal:timesCleaned value='0'/></feed>
+  
diff --git a/gdata/tests/traces/calendar/query_own_calendars-async 
b/gdata/tests/traces/calendar/query_own_calendars-async
new file mode 100644
index 0000000..0716ef2
--- /dev/null
+++ b/gdata/tests/traces/calendar/query_own_calendars-async
@@ -0,0 +1,67 @@
+> GET /calendar/feeds/default/owncalendars/full HTTP/1.1
+> Soup-Debug-Timestamp: 1375202737
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 45 (0x7fffe4010650), SoupSocket 43 (0x7753d0)
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 302 Moved Temporarily
+< Soup-Debug-Timestamp: 1375202737
+< Soup-Debug: SoupMessage 45 (0x7fffe4010650)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_t4EurujSJEVz4Oz9mAIOytzvk2x5HxgdMhjgmIZQyEhJEVxBkGa9tYZB61Yy8JtAPaktxoTLVkhp854Pjz3Lu2nGX3VFkbf3hmep1Z77H5UUPxIsLyYKJ-XIqF26WY8xy6o6N8-w_azdQg_R57FuB6O-GUgGUKDr2aKE9iTWpO0XsB7-zCP0UEx7yuXEnbLb7XVAw5KqOV1FqKEA6grSKkAqUaQftC9ppmNnCTUl0XskgKlvQxIBg-580Pa1-4yjY5tacPmBQVR42znpOSUkcg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:45:38 GMT
+< Set-Cookie: S=calendar=2LkaUmgNqlqQgTVl3-Vm9g;Expires=Sat, 10-Aug-2013 00:32:11 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:45:37 GMT
+< Date: Tue, 30 Jul 2013 16:45:37 GMT
+< Location: https://www.google.com/calendar/feeds/default/owncalendars/full?gsessionid=2LkaUmgNqlqQgTVl3-Vm9g
+< Content-Type: text/html; charset=UTF-8
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <HTML>
+< <HEAD>
+< <TITLE>Moved Temporarily</TITLE>
+< </HEAD>
+< <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
+< <H1>Moved Temporarily</H1>
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/owncalendars/full?gsessionid=2LkaUmgNqlqQgTVl3-Vm9g";>here</A>.
+< </BODY>
+< </HTML>
+  
+> GET /calendar/feeds/default/owncalendars/full?gsessionid=2LkaUmgNqlqQgTVl3-Vm9g HTTP/1.1
+> Soup-Debug-Timestamp: 1375202737
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 45 (0x7fffe4010650), SoupSocket 43 (0x7753d0), restarted
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375202737
+< Soup-Debug: SoupMessage 45 (0x7fffe4010650)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_QMIIFxw1-89I4fIiltp3toM_OQPaV-s2Op5YfNNKqskJ-elHTN3M2YrIdeRcj84Q94sPukowimpQydy5Tbb14G3YJ4S-NHM8cpqZJBifvXkyktCQOlLQS03AMrw1-u6qvRouqxtCMYd1apUUU9kXVWwoSYowH2iqScUeke9qp_ZEetMmdoQ61WwPB5gd4Of34y2qjfi6BC-i8q-4AfecimYdMpxx-Z7ncnkPEftWV84VyvVUhWfLM8oWcP3zT943b_FOzjNl76pHK1Za70lHtw
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:45:38 GMT
+< Set-Cookie: S=calendar=PMCUvvZc8BEET8CUAuuUsQ;Expires=Wed, 07-Aug-2013 23:54:03 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:45:37 GMT
+< Date: Tue, 30 Jul 2013 16:45:37 GMT
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.6
+< ETag: W/"CEAHRnYyfCp7JGA9WhFWEk0."
+< Last-Modified: Tue, 30 Jul 2013 16:45:37 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CEAHRnYyfCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendarFeed'><id>http://www.google.com/calendar/feeds/default/owncalendars/full</id><updated>2013-07-30T16:45:37.894Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title>GData Test's Calendar List</title><link 
rel='alternate' type='text/html' href='https://www.google.com/calendar/render'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/own
 calendars/full'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full'/><author><name>libgdata test 
googlemail com</name><email>libgdata test googlemail com</email></author><generator version='1.0' 
uri='http://www.google.com/calendar'>Google 
Calendar</generator><openSearch:startIndex>1</openSearch:startIndex><entry 
gd:etag='W/&quot;CEAHR347eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/libgdata.test%40googlemail.com</id><published>2013-07-30T16:45:37.804Z</published><updated>2013-07-30T16:45:36.000Z</updated><app:edited>2013-07-30T16:45:36.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>libgdata test googlemail 
com</title><content type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link
  rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/acl/full'/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/libgdata.test%40googlemail.com'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/libgdata.test%40googlemail.com'/><author><name>libgdata
 test googlemail com</name><email>libgdata test googlemail com</email></author><gCal:accesslevel 
value='owner'/><gCal:color value='#2952A3'/><gCal:hidden value='false'/><gCal:select
 ed value='true'/><gCal:timezone value='Europe/London'/><gCal:timesCleaned value='4'/></entry><entry 
gd:etag='W/&quot;CEAHRX47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/adam2vqp6q4htengjmhs9oc258%40group.calendar.google.com</id><published>2013-07-30T16:45:37.865Z</published><updated>2013-07-30T16:45:34.000Z</updated><app:edited>2013-07-30T16:45:34.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 1</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/adam2vqp6q4htengjmhs9oc258%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/adam2vqp6q4htengjmhs9oc258%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml'
  
href='https://www.google.com/calendar/feeds/adam2vqp6q4htengjmhs9oc258%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/adam2vqp6q4htengjmhs9oc258%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/adam2vqp6q4htengjmhs9oc258%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/adam2vqp6q4htengjmhs9oc258%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;CEAHR347eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://w
 
ww.google.com/calendar/feeds/default/calendars/aik77skiu8dmq5r4lhh75d5af0%40group.calendar.google.com</id><published>2013-07-30T16:45:37.805Z</published><updated>2013-07-30T16:45:36.000Z</updated><app:edited>2013-07-30T16:45:36.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 2</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/aik77skiu8dmq5r4lhh75d5af0%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/aik77skiu8dmq5r4lhh75d5af0%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/aik77skiu8dmq5r4lhh75d5af0%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='app
 lication/atom+xml' 
href='https://www.google.com/calendar/feeds/aik77skiu8dmq5r4lhh75d5af0%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/aik77skiu8dmq5r4lhh75d5af0%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/aik77skiu8dmq5r4lhh75d5af0%40group.calendar.google.com'/><author><name>Test
 Calendar 2</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry></feed>
+  
diff --git a/gdata/tests/traces/calendar/query_own_calendars-async-cancellation 
b/gdata/tests/traces/calendar/query_own_calendars-async-cancellation
new file mode 100644
index 0000000..3cb6fae
--- /dev/null
+++ b/gdata/tests/traces/calendar/query_own_calendars-async-cancellation
@@ -0,0 +1,304 @@
+> GET /calendar/feeds/default/owncalendars/full HTTP/1.1
+> Soup-Debug-Timestamp: 1375202757
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 57 (0x7fffe4010380), SoupSocket 53 (0x7fffe0040970)
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 302 Moved Temporarily
+< Soup-Debug-Timestamp: 1375202757
+< Soup-Debug: SoupMessage 57 (0x7fffe4010380)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_t4EurujSJEVz4Oz9mAIOytzvk2x5HxgdMhjgmIZQyEhJEVxBkGa9tYZB61Yy8JtAPaktxoTLVkhp854Pjz3Lu2nGX3VFkbf3hmep1Z77H5UUPxIsLyYKJ-XIqF26WY8xy6o6N8-w_azdQg_R57FuB6O-GUgGUKDr2aKE9iTWpO0XsB7-zCP0UEx7yuXEnbLb7XVAw5KqOV1FqKEA6grSKkAqUaQftC9ppmNnCTUl0XskgKlvQxIBg-580Pa1-4yjY5tacPmBQVR42znpOSUkcg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:45:59 GMT
+< Set-Cookie: S=calendar=HnzIQtCq1AumfEXUymyY8Q;Expires=Sun, 11-Aug-2013 11:33:34 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:45:58 GMT
+< Date: Tue, 30 Jul 2013 16:45:58 GMT
+< Location: https://www.google.com/calendar/feeds/default/owncalendars/full?gsessionid=HnzIQtCq1AumfEXUymyY8Q
+< Content-Type: text/html; charset=UTF-8
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <HTML>
+< <HEAD>
+< <TITLE>Moved Temporarily</TITLE>
+< </HEAD>
+< <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
+< <H1>Moved Temporarily</H1>
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/owncalendars/full?gsessionid=HnzIQtCq1AumfEXUymyY8Q";>here</A>.
+< </BODY>
+< </HTML>
+  
+> GET /calendar/feeds/default/owncalendars/full?gsessionid=HnzIQtCq1AumfEXUymyY8Q HTTP/1.1
+> Soup-Debug-Timestamp: 1375202757
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 57 (0x7fffe4010380), SoupSocket 53 (0x7fffe0040970), 
restarted
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375202758
+< Soup-Debug: SoupMessage 57 (0x7fffe4010380)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_q4NwI2V8UT-SSEMjiblkY8jTSCIGQJCo_ZFavemirrG0G2jzg3jjEVC3CQauPSZoNTFtDCw6Eu1-1S6nOyDK2J9zwLcpKLPHGuWk8fzL5JjKgN0Z0HbdhVtGaldMU2XCoc4_I0dsAZNFNzMl12pQ2IhlOpKYk_syrjXgbEIFWB07e6wSu6Mp1XswtWQL95nokCfWJkTHf4YGsR2zpy2736UplfLIVHDJLz7fiJzKG-5nUmoz2a5jdwopbkQ6flW44tTL7okPm_2Y6nqlPi74Mg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:45:59 GMT
+< Set-Cookie: S=calendar=diQz8jtFvWSKXGfY-MZLYA;Expires=Tue, 13-Aug-2013 05:35:26 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:45:58 GMT
+< Date: Tue, 30 Jul 2013 16:45:58 GMT
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.6
+< ETag: W/"CEABSXk5fCp7JGA9WhFWEk0."
+< Last-Modified: Tue, 30 Jul 2013 16:45:58 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CEABSXk5fCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendarFeed'><id>http://www.google.com/calendar/feeds/default/owncalendars/full</id><updated>2013-07-30T16:45:58.724Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title>GData Test's Calendar List</title><link 
rel='alternate' type='text/html' href='https://www.google.com/calendar/render'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/own
 calendars/full'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full'/><author><name>libgdata test 
googlemail com</name><email>libgdata test googlemail com</email></author><generator version='1.0' 
uri='http://www.google.com/calendar'>Google 
Calendar</generator><openSearch:startIndex>1</openSearch:startIndex><entry 
gd:etag='W/&quot;CEABR347eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/libgdata.test%40googlemail.com</id><published>2013-07-30T16:45:58.600Z</published><updated>2013-07-30T16:45:56.000Z</updated><app:edited>2013-07-30T16:45:56.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>libgdata test googlemail 
com</title><content type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link
  rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/acl/full'/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/libgdata.test%40googlemail.com'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/libgdata.test%40googlemail.com'/><author><name>libgdata
 test googlemail com</name><email>libgdata test googlemail com</email></author><gCal:accesslevel 
value='owner'/><gCal:color value='#2952A3'/><gCal:hidden value='false'/><gCal:select
 ed value='true'/><gCal:timezone value='Europe/London'/><gCal:timesCleaned value='4'/></entry><entry 
gd:etag='W/&quot;CEABQn47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com</id><published>2013-07-30T16:45:58.600Z</published><updated>2013-07-30T16:45:53.000Z</updated><app:edited>2013-07-30T16:45:53.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 1</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml'
  
href='https://www.google.com/calendar/feeds/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;CEABRn47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://w
 
ww.google.com/calendar/feeds/default/calendars/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com</id><published>2013-07-30T16:45:58.701Z</published><updated>2013-07-30T16:45:57.000Z</updated><app:edited>2013-07-30T16:45:57.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 2</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='app
 lication/atom+xml' 
href='https://www.google.com/calendar/feeds/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com'/><author><name>Test
 Calendar 2</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry></feed>
+  
+> GET /calendar/feeds/default/owncalendars/full HTTP/1.1
+> Soup-Debug-Timestamp: 1375202757
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 56 (0x8c2c80), SoupSocket 52 (0x7fffe0040970)
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 302 Moved Temporarily
+< Soup-Debug-Timestamp: 1375202757
+< Soup-Debug: SoupMessage 56 (0x8c2c80)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_t4EurujSJEVz4Oz9mAIOytzvk2x5HxgdMhjgmIZQyEhJEVxBkGa9tYZB61Yy8JtAPaktxoTLVkhp854Pjz3Lu2nGX3VFkbf3hmep1Z77H5UUPxIsLyYKJ-XIqF26WY8xy6o6N8-w_azdQg_R57FuB6O-GUgGUKDr2aKE9iTWpO0XsB7-zCP0UEx7yuXEnbLb7XVAw5KqOV1FqKEA6grSKkAqUaQftC9ppmNnCTUl0XskgKlvQxIBg-580Pa1-4yjY5tacPmBQVR42znpOSUkcg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:45:58 GMT
+< Set-Cookie: S=calendar=zI5hqKTZMzEv9y6Z-KkrWQ;Expires=Sat, 10-Aug-2013 14:14:56 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:45:58 GMT
+< Date: Tue, 30 Jul 2013 16:45:58 GMT
+< Location: https://www.google.com/calendar/feeds/default/owncalendars/full?gsessionid=zI5hqKTZMzEv9y6Z-KkrWQ
+< Content-Type: text/html; charset=UTF-8
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <HTML>
+< <HEAD>
+< <TITLE>Moved Temporarily</TITLE>
+< </HEAD>
+< <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
+< <H1>Moved Temporarily</H1>
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/owncalendars/full?gsessionid=zI5hqKTZMzEv9y6Z-KkrWQ";>here</A>.
+< </BODY>
+< </HTML>
+  
+> GET /calendar/feeds/default/owncalendars/full HTTP/1.1
+> Soup-Debug-Timestamp: 1375202757
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 57 (0x7fffe4010380), SoupSocket 53 (0x7fffe0040970)
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 302 Moved Temporarily
+< Soup-Debug-Timestamp: 1375202757
+< Soup-Debug: SoupMessage 57 (0x7fffe4010380)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_t4EurujSJEVz4Oz9mAIOytzvk2x5HxgdMhjgmIZQyEhJEVxBkGa9tYZB61Yy8JtAPaktxoTLVkhp854Pjz3Lu2nGX3VFkbf3hmep1Z77H5UUPxIsLyYKJ-XIqF26WY8xy6o6N8-w_azdQg_R57FuB6O-GUgGUKDr2aKE9iTWpO0XsB7-zCP0UEx7yuXEnbLb7XVAw5KqOV1FqKEA6grSKkAqUaQftC9ppmNnCTUl0XskgKlvQxIBg-580Pa1-4yjY5tacPmBQVR42znpOSUkcg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:45:59 GMT
+< Set-Cookie: S=calendar=HnzIQtCq1AumfEXUymyY8Q;Expires=Sun, 11-Aug-2013 11:33:34 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:45:58 GMT
+< Date: Tue, 30 Jul 2013 16:45:58 GMT
+< Location: https://www.google.com/calendar/feeds/default/owncalendars/full?gsessionid=HnzIQtCq1AumfEXUymyY8Q
+< Content-Type: text/html; charset=UTF-8
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <HTML>
+< <HEAD>
+< <TITLE>Moved Temporarily</TITLE>
+< </HEAD>
+< <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
+< <H1>Moved Temporarily</H1>
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/owncalendars/full?gsessionid=HnzIQtCq1AumfEXUymyY8Q";>here</A>.
+< </BODY>
+< </HTML>
+  
+> GET /calendar/feeds/default/owncalendars/full?gsessionid=HnzIQtCq1AumfEXUymyY8Q HTTP/1.1
+> Soup-Debug-Timestamp: 1375202757
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 57 (0x7fffe4010380), SoupSocket 53 (0x7fffe0040970), 
restarted
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375202758
+< Soup-Debug: SoupMessage 57 (0x7fffe4010380)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_q4NwI2V8UT-SSEMjiblkY8jTSCIGQJCo_ZFavemirrG0G2jzg3jjEVC3CQauPSZoNTFtDCw6Eu1-1S6nOyDK2J9zwLcpKLPHGuWk8fzL5JjKgN0Z0HbdhVtGaldMU2XCoc4_I0dsAZNFNzMl12pQ2IhlOpKYk_syrjXgbEIFWB07e6wSu6Mp1XswtWQL95nokCfWJkTHf4YGsR2zpy2736UplfLIVHDJLz7fiJzKG-5nUmoz2a5jdwopbkQ6flW44tTL7okPm_2Y6nqlPi74Mg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:45:59 GMT
+< Set-Cookie: S=calendar=diQz8jtFvWSKXGfY-MZLYA;Expires=Tue, 13-Aug-2013 05:35:26 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:45:58 GMT
+< Date: Tue, 30 Jul 2013 16:45:58 GMT
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.6
+< ETag: W/"CEABSXk5fCp7JGA9WhFWEk0."
+< Last-Modified: Tue, 30 Jul 2013 16:45:58 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CEABSXk5fCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendarFeed'><id>http://www.google.com/calendar/feeds/default/owncalendars/full</id><updated>2013-07-30T16:45:58.724Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title>GData Test's Calendar List</title><link 
rel='alternate' type='text/html' href='https://www.google.com/calendar/render'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/own
 calendars/full'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full'/><author><name>libgdata test 
googlemail com</name><email>libgdata test googlemail com</email></author><generator version='1.0' 
uri='http://www.google.com/calendar'>Google 
Calendar</generator><openSearch:startIndex>1</openSearch:startIndex><entry 
gd:etag='W/&quot;CEABR347eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/libgdata.test%40googlemail.com</id><published>2013-07-30T16:45:58.600Z</published><updated>2013-07-30T16:45:56.000Z</updated><app:edited>2013-07-30T16:45:56.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>libgdata test googlemail 
com</title><content type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link
  rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/acl/full'/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/libgdata.test%40googlemail.com'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/libgdata.test%40googlemail.com'/><author><name>libgdata
 test googlemail com</name><email>libgdata test googlemail com</email></author><gCal:accesslevel 
value='owner'/><gCal:color value='#2952A3'/><gCal:hidden value='false'/><gCal:select
 ed value='true'/><gCal:timezone value='Europe/London'/><gCal:timesCleaned value='4'/></entry><entry 
gd:etag='W/&quot;CEABQn47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com</id><published>2013-07-30T16:45:58.600Z</published><updated>2013-07-30T16:45:53.000Z</updated><app:edited>2013-07-30T16:45:53.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 1</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml'
  
href='https://www.google.com/calendar/feeds/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;CEABRn47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://w
 
ww.google.com/calendar/feeds/default/calendars/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com</id><published>2013-07-30T16:45:58.701Z</published><updated>2013-07-30T16:45:57.000Z</updated><app:edited>2013-07-30T16:45:57.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 2</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='app
 lication/atom+xml' 
href='https://www.google.com/calendar/feeds/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com'/><author><name>Test
 Calendar 2</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry></feed>
+  
+> GET /calendar/feeds/default/owncalendars/full HTTP/1.1
+> Soup-Debug-Timestamp: 1375202758
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 58 (0x8c2d70), SoupSocket 54 (0x7fffe0040970)
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 302 Moved Temporarily
+< Soup-Debug-Timestamp: 1375202758
+< Soup-Debug: SoupMessage 58 (0x8c2d70)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_t4EurujSJEVz4Oz9mAIOytzvk2x5HxgdMhjgmIZQyEhJEVxBkGa9tYZB61Yy8JtAPaktxoTLVkhp854Pjz3Lu2nGX3VFkbf3hmep1Z77H5UUPxIsLyYKJ-XIqF26WY8xy6o6N8-w_azdQg_R57FuB6O-GUgGUKDr2aKE9iTWpO0XsB7-zCP0UEx7yuXEnbLb7XVAw5KqOV1FqKEA6grSKkAqUaQftC9ppmNnCTUl0XskgKlvQxIBg-580Pa1-4yjY5tacPmBQVR42znpOSUkcg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:45:59 GMT
+< Set-Cookie: S=calendar=LMx8-iznxj_1X2O0_XBvQw;Expires=Fri, 09-Aug-2013 08:49:24 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:45:58 GMT
+< Date: Tue, 30 Jul 2013 16:45:58 GMT
+< Location: https://www.google.com/calendar/feeds/default/owncalendars/full?gsessionid=LMx8-iznxj_1X2O0_XBvQw
+< Content-Type: text/html; charset=UTF-8
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <HTML>
+< <HEAD>
+< <TITLE>Moved Temporarily</TITLE>
+< </HEAD>
+< <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
+< <H1>Moved Temporarily</H1>
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/owncalendars/full?gsessionid=LMx8-iznxj_1X2O0_XBvQw";>here</A>.
+< </BODY>
+< </HTML>
+  
+> GET /calendar/feeds/default/owncalendars/full?gsessionid=LMx8-iznxj_1X2O0_XBvQw HTTP/1.1
+> Soup-Debug-Timestamp: 1375202758
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 58 (0x8c2d70), SoupSocket 54 (0x7fffe0040970), restarted
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375202759
+< Soup-Debug: SoupMessage 58 (0x8c2d70)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_x9DCxs6Yn1ShR7x5wx1k6e37TbqaZyvZnHbBDD5MjDqIwu2doXjOCD97mfXE8YE20iZQLD52PYbtpDGgujgmHXXGW1wlvqMs94qpgxdE8eYecbfbso9UjfaO5uqfvsRXIhKhe7zV2m0bacHn0JcyH7mkYYXHxHv7XZ_tjZftH-i5SVfC5OZaKOQXxynRfd_Yz5PzuJngGrHUxv5bViZFI3gQCqJikX_t9TXaydAiNvFoCzIgXcLmw11rsBONKvKvzka6NqtM8xqoAdhWs62jAQ
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:00 GMT
+< Set-Cookie: S=calendar=M4_5bOxjQb3kAy-vkbpwQQ;Expires=Fri, 09-Aug-2013 12:20:36 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:45:59 GMT
+< Date: Tue, 30 Jul 2013 16:45:59 GMT
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.6
+< ETag: W/"CEABSHY5eyp7JGA9WhFWEk0."
+< Last-Modified: Tue, 30 Jul 2013 16:45:59 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CEABSHY5eyp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendarFeed'><id>http://www.google.com/calendar/feeds/default/owncalendars/full</id><updated>2013-07-30T16:45:59.823Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title>GData Test's Calendar List</title><link 
rel='alternate' type='text/html' href='https://www.google.com/calendar/render'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/own
 calendars/full'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full'/><author><name>libgdata test 
googlemail com</name><email>libgdata test googlemail com</email></author><generator version='1.0' 
uri='http://www.google.com/calendar'>Google 
Calendar</generator><openSearch:startIndex>1</openSearch:startIndex><entry 
gd:etag='W/&quot;CEABR347eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/libgdata.test%40googlemail.com</id><published>2013-07-30T16:45:59.820Z</published><updated>2013-07-30T16:45:56.000Z</updated><app:edited>2013-07-30T16:45:56.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>libgdata test googlemail 
com</title><content type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link
  rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/acl/full'/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/libgdata.test%40googlemail.com'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/libgdata.test%40googlemail.com'/><author><name>libgdata
 test googlemail com</name><email>libgdata test googlemail com</email></author><gCal:accesslevel 
value='owner'/><gCal:color value='#2952A3'/><gCal:hidden value='false'/><gCal:select
 ed value='true'/><gCal:timezone value='Europe/London'/><gCal:timesCleaned value='4'/></entry><entry 
gd:etag='W/&quot;CEABQn47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com</id><published>2013-07-30T16:45:59.820Z</published><updated>2013-07-30T16:45:53.000Z</updated><app:edited>2013-07-30T16:45:53.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 1</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml'
  
href='https://www.google.com/calendar/feeds/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;CEABRn47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://w
 
ww.google.com/calendar/feeds/default/calendars/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com</id><published>2013-07-30T16:45:59.820Z</published><updated>2013-07-30T16:45:57.000Z</updated><app:edited>2013-07-30T16:45:57.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 2</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='app
 lication/atom+xml' 
href='https://www.google.com/calendar/feeds/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com'/><author><name>Test
 Calendar 2</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry></feed>
+  
+> GET /calendar/feeds/default/owncalendars/full HTTP/1.1
+> Soup-Debug-Timestamp: 1375202759
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 59 (0x7fffe40100b0), SoupSocket 55 (0x7fffe0040970)
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 302 Moved Temporarily
+< Soup-Debug-Timestamp: 1375202759
+< Soup-Debug: SoupMessage 59 (0x7fffe40100b0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_t4EurujSJEVz4Oz9mAIOytzvk2x5HxgdMhjgmIZQyEhJEVxBkGa9tYZB61Yy8JtAPaktxoTLVkhp854Pjz3Lu2nGX3VFkbf3hmep1Z77H5UUPxIsLyYKJ-XIqF26WY8xy6o6N8-w_azdQg_R57FuB6O-GUgGUKDr2aKE9iTWpO0XsB7-zCP0UEx7yuXEnbLb7XVAw5KqOV1FqKEA6grSKkAqUaQftC9ppmNnCTUl0XskgKlvQxIBg-580Pa1-4yjY5tacPmBQVR42znpOSUkcg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:00 GMT
+< Set-Cookie: S=calendar=dL-AsXTaBeg5iLh3xK40Xg;Expires=Tue, 06-Aug-2013 18:08:05 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:45:59 GMT
+< Date: Tue, 30 Jul 2013 16:45:59 GMT
+< Location: https://www.google.com/calendar/feeds/default/owncalendars/full?gsessionid=dL-AsXTaBeg5iLh3xK40Xg
+< Content-Type: text/html; charset=UTF-8
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <HTML>
+< <HEAD>
+< <TITLE>Moved Temporarily</TITLE>
+< </HEAD>
+< <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
+< <H1>Moved Temporarily</H1>
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/owncalendars/full?gsessionid=dL-AsXTaBeg5iLh3xK40Xg";>here</A>.
+< </BODY>
+< </HTML>
+  
+> GET /calendar/feeds/default/owncalendars/full?gsessionid=dL-AsXTaBeg5iLh3xK40Xg HTTP/1.1
+> Soup-Debug-Timestamp: 1375202759
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 59 (0x7fffe40100b0), SoupSocket 55 (0x7fffe0040970), 
restarted
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375202760
+< Soup-Debug: SoupMessage 59 (0x7fffe40100b0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_q4NwI2V8UT-SSEMjiblkY8jTSCIGQJCo_ZFavemirrG0G2jzg3jjEVC3CQauPSZoNTFtDCw6Eu1-1S6nOyDK2J9zwLcpKLPHGuWk8fzL5JjKgN0Z0HbdhVtGaldMU2XCoc4_I0dsAZNFNzMl12pQ2IhlOpKYk_syrjXgbEIFWB07e6wSu6Mp1XswtWQL95nokCfWJkTHf4YGsR2zpy2736UplfLIVHDJLz7fiJzKG-5nUmoz2a5jdwopbkQ6flW44tTL7okPm_2Y6nqlPi74Mg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:01 GMT
+< Set-Cookie: S=calendar=MgRRnBRTOyBnSF6XBK5noQ;Expires=Fri, 09-Aug-2013 17:47:17 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:00 GMT
+< Date: Tue, 30 Jul 2013 16:46:00 GMT
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.6
+< ETag: W/"CEACQXw6fCp7JGA9WhFWEk0."
+< Last-Modified: Tue, 30 Jul 2013 16:46:00 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CEACQXw6fCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendarFeed'><id>http://www.google.com/calendar/feeds/default/owncalendars/full</id><updated>2013-07-30T16:46:00.214Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title>GData Test's Calendar List</title><link 
rel='alternate' type='text/html' href='https://www.google.com/calendar/render'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/own
 calendars/full'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full'/><author><name>libgdata test 
googlemail com</name><email>libgdata test googlemail com</email></author><generator version='1.0' 
uri='http://www.google.com/calendar'>Google 
Calendar</generator><openSearch:startIndex>1</openSearch:startIndex><entry 
gd:etag='W/&quot;CEABR347eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/libgdata.test%40googlemail.com</id><published>2013-07-30T16:46:00.149Z</published><updated>2013-07-30T16:45:56.000Z</updated><app:edited>2013-07-30T16:45:56.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>libgdata test googlemail 
com</title><content type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link
  rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/private/full'/><link 
rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/libgdata.test%40googlemail.com/acl/full'/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/libgdata.test%40googlemail.com'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/libgdata.test%40googlemail.com'/><author><name>libgdata
 test googlemail com</name><email>libgdata test googlemail com</email></author><gCal:accesslevel 
value='owner'/><gCal:color value='#2952A3'/><gCal:hidden value='false'/><gCal:select
 ed value='true'/><gCal:timezone value='Europe/London'/><gCal:timesCleaned value='4'/></entry><entry 
gd:etag='W/&quot;CEABQn47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com</id><published>2013-07-30T16:46:00.149Z</published><updated>2013-07-30T16:45:53.000Z</updated><app:edited>2013-07-30T16:45:53.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 1</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml'
  
href='https://www.google.com/calendar/feeds/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry><entry gd:etag='W/&quot;CEABRn47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://w
 
ww.google.com/calendar/feeds/default/calendars/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com</id><published>2013-07-30T16:46:00.149Z</published><updated>2013-07-30T16:45:57.000Z</updated><app:edited>2013-07-30T16:45:57.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Test Calendar 2</title><content 
type='application/atom+xml' 
src='https://www.google.com/calendar/feeds/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='app
 lication/atom+xml' 
href='https://www.google.com/calendar/feeds/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com'/><author><name>Test
 Calendar 2</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned 
value='0'/></entry></feed>
+  
diff --git a/gdata/tests/traces/calendar/setup-batch-async b/gdata/tests/traces/calendar/setup-batch-async
index 6b745b4..ea5ea94 100644
--- a/gdata/tests/traces/calendar/setup-batch-async
+++ b/gdata/tests/traces/calendar/setup-batch-async
@@ -1,8 +1,8 @@
POST /calendar/feeds/default/private/full HTTP/1.1
-> Soup-Debug-Timestamp: 1375108054
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 127 (0x7fffd804b0b0), SoupSocket 118 (0x8deae0)
+> Soup-Debug-Timestamp: 1375202842
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 126 (0x7fffe40158e0), SoupSocket 116 (0x7756d0)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
@@ -11,14 +11,14 @@
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app'><title type='text'>Party &apos;Til You Puke</title><category 
term='http://schemas.google.com/g/2005#event' 
scheme='http://schemas.google.com/g/2005#kind'/><gCal:guestsCanModify 
value='false'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanSeeGuests 
value='false'/><gCal:anyoneCanAddSelf value='false'/></entry>
   
 < HTTP/1.1 302 Moved Temporarily
-< Soup-Debug-Timestamp: 1375108055
-< Soup-Debug: SoupMessage 127 (0x7fffd804b0b0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXThTgckY3-hSb61OvnzXxSJ7d2jzDTq4SYJOcXEK19cfN8WmIspK2CGATjYnx3q1Fz9ZgntzaOCi00pQJhkctNT
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:27:36 GMT
-< Set-Cookie: S=calendar=sy7IlZQc0xDwS-SGGuG6Lg;Expires=Sun, 11-Aug-2013 21:01:05 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:27:35 GMT
-< Date: Mon, 29 Jul 2013 14:27:35 GMT
-< Location: https://www.google.com/calendar/feeds/default/private/full?gsessionid=sy7IlZQc0xDwS-SGGuG6Lg
+< Soup-Debug-Timestamp: 1375202842
+< Soup-Debug: SoupMessage 126 (0x7fffe40158e0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_lzf1dm9Ue8N3SJp2J6o695WrE5nMbNLIXgO1GwYSOH0dinvA7V6dAhAIAEim2gLMsmbC2ddMnDUzaVKIGr3_JWCh97kMTIAR1M2IeSsu02b7EZA-X4HjICLw-x5pMnXhR8i08nLbVHSLT_No8fvB518lPWszfELKmW9TYG0-BAxXFzn9IKi_SmDnEv70WeTVk9AKBXEZK8GgbVvG2jwg9IxQwwSgxxH2Am-wKlw1Xh28Ocyi9bXsxw2zvbHLluu_emFBzQJ8Ds6aIurEQIryfg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:47:23 GMT
+< Set-Cookie: S=calendar=sdIsMzx0L6SA-RR8WRNxDQ;Expires=Tue, 13-Aug-2013 01:24:30 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:47:22 GMT
+< Date: Tue, 30 Jul 2013 16:47:22 GMT
+< Location: https://www.google.com/calendar/feeds/default/private/full?gsessionid=sdIsMzx0L6SA-RR8WRNxDQ
 < Content-Type: text/html; charset=UTF-8
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -33,15 +33,15 @@
 < </HEAD>
 < <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
 < <H1>Moved Temporarily</H1>
-< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/private/full?gsessionid=sy7IlZQc0xDwS-SGGuG6Lg";>here</A>.
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/private/full?gsessionid=sdIsMzx0L6SA-RR8WRNxDQ";>here</A>.
 < </BODY>
 < </HTML>
   
-> POST /calendar/feeds/default/private/full?gsessionid=sy7IlZQc0xDwS-SGGuG6Lg HTTP/1.1
-> Soup-Debug-Timestamp: 1375108055
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 127 (0x7fffd804b0b0), SoupSocket 119 (0x8dede0), 
restarted
+> POST /calendar/feeds/default/private/full?gsessionid=sdIsMzx0L6SA-RR8WRNxDQ HTTP/1.1
+> Soup-Debug-Timestamp: 1375202842
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 126 (0x7fffe40158e0), SoupSocket 117 (0x7fffe00408b0), 
restarted
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
@@ -51,25 +51,25 @@
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app'><title type='text'>Party &apos;Til You Puke</title><category 
term='http://schemas.google.com/g/2005#event' 
scheme='http://schemas.google.com/g/2005#kind'/><gCal:guestsCanModify 
value='false'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanSeeGuests 
value='false'/><gCal:anyoneCanAddSelf value='false'/></entry>
   
 < HTTP/1.1 201 Created
-< Soup-Debug-Timestamp: 1375108055
-< Soup-Debug: SoupMessage 127 (0x7fffd804b0b0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-ODYysS96Taaw1NaIYtJAAHEXCZ_GMPV8cwrWmi_-pskMkzDa8yS5h3Lx6BUX8K1OQLMPBV7rpZGHtUa1jYE1jA_4X05rZ800eKz2vNaGdZYoiYJwGnkqCe72OBS-ReHTEtvQtr7VG9ZYkAslaj0Tffvz8pB9ItwBfiM3-4oLSkIEFXx8_eyUlfeNChSfSAvSSqTyG58No5P6HZMRKSJtwsyLwtxAl4BhBMfGX_Uh_z0XCyGMW8beXiNXZ4h5XkwP
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:27:36 GMT
-< Set-Cookie: S=calendar=RMChu5TZknrfgaA3fRZZng;Expires=Wed, 07-Aug-2013 12:29:20 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:27:35 GMT
-< Date: Mon, 29 Jul 2013 14:27:35 GMT
+< Soup-Debug-Timestamp: 1375202843
+< Soup-Debug: SoupMessage 126 (0x7fffe40158e0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_q4NwI2V8UT-SSEMjiblkY8jTSCIGQJCo_ZFavemirrG0G2jzg3jjEVC3CQauPSZoNTFtDCw6Eu1-1S6nOyDK2J9zwLcpKLPHGuWk8fzL5JjKgN0Z0HbdhVtGaldMU2XCoc4_I0dsAZNFNzMl12pQ2IhlOpKYk_syrjXgbEIFWB07e6wSu6Mp1XswtWQL95nokCfWJkTHf4YGsR2zpy2736UplfLIVHDJLz7fiJzKG-5nUmoz2a5jdwopbkQ6flW44tTL7okPm_2Y6nqlPi74Mg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:47:23 GMT
+< Set-Cookie: S=calendar=rEzm6qfyz69cs4lO8F8cNA;Expires=Fri, 09-Aug-2013 21:32:27 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:47:23 GMT
+< Date: Tue, 30 Jul 2013 16:47:23 GMT
 < Content-Type: application/atom+xml; charset=UTF-8; type=entry
 < Cache-control: private, max-age=0, must-revalidate, no-transform
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 2.6
-< ETag: "EEoDRgZEeyp7JGA6WhNS"
-< Location: https://www.google.com/calendar/feeds/default/private/full/4vj237jguoan48oeum6m3lhqss
-< Content-Location: https://www.google.com/calendar/feeds/default/private/full/4vj237jguoan48oeum6m3lhqss
+< ETag: "EEUCQQRFfSp7JGA6WhNS"
+< Location: https://www.google.com/calendar/feeds/default/private/full/62ga7dp4t4g0fld702rs147ia8
+< Content-Location: https://www.google.com/calendar/feeds/default/private/full/62ga7dp4t4g0fld702rs147ia8
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
 < X-XSS-Protection: 1; mode=block
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='&quot;EEoDRgZEeyp7JGA6WhNS&quot;' 
gd:kind='calendar#event'><id>http://www.google.com/calendar/feeds/default/events/4vj237jguoan48oeum6m3lhqss</id><published>2013-07-29T14:27:35.000Z</published><updated>2013-07-29T14:27:35.000Z</updated><app:edited>2013-07-29T14:27:35.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title>Party 
'Til You Puke</title><content/><link rel='alternate' type='text/html' 
href='https://www.google.com/calendar/event?eid=NHZqMjM3amd1b2FuNDhvZXVtNm0zbGhxc3MgbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ'
 title='alternate'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/4vj237jguoan48oeum6m3lhqss'/><link rel='
 edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/4vj237jguoan48oeum6m3lhqss'/><author><name>GData
 Test</name><email>libgdata test googlemail com</email></author><gd:comments><gd:feedLink 
href='https://www.google.com/calendar/feeds/default/private/full/4vj237jguoan48oeum6m3lhqss/comments'/></gd:comments><gd:eventStatus
 value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='libgdata 
test googlemail com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='GData 
Test'/><gd:when endTime='2013-07-29T15:27:35.000+01:00' 
startTime='2013-07-29T15:27:35.000+01:00'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf 
value='false'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanModify 
value='false'/><gCal:guestsCanSeeGuests value='false'/><gCal:sequence v
 alue='0'/><gCal:uid value='4vj237jguoan48oeum6m3lhqss google com'/></entry>
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='&quot;EEUCQQRFfSp7JGA6WhNS&quot;' 
gd:kind='calendar#event'><id>http://www.google.com/calendar/feeds/default/events/62ga7dp4t4g0fld702rs147ia8</id><published>2013-07-30T16:47:22.000Z</published><updated>2013-07-30T16:47:23.000Z</updated><app:edited>2013-07-30T16:47:23.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title>Party 
'Til You Puke</title><content/><link rel='alternate' type='text/html' 
href='https://www.google.com/calendar/event?eid=NjJnYTdkcDR0NGcwZmxkNzAycnMxNDdpYTggbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ'
 title='alternate'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/62ga7dp4t4g0fld702rs147ia8'/><link rel='
 edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/62ga7dp4t4g0fld702rs147ia8'/><author><name>GData
 Test</name><email>libgdata test googlemail com</email></author><gd:comments><gd:feedLink 
href='https://www.google.com/calendar/feeds/default/private/full/62ga7dp4t4g0fld702rs147ia8/comments'/></gd:comments><gd:eventStatus
 value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='libgdata 
test googlemail com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='GData 
Test'/><gd:when endTime='2013-07-30T17:47:22.000+01:00' 
startTime='2013-07-30T17:47:22.000+01:00'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf 
value='false'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanModify 
value='false'/><gCal:guestsCanSeeGuests value='false'/><gCal:sequence v
 alue='0'/><gCal:uid value='62ga7dp4t4g0fld702rs147ia8 google com'/></entry>
   
diff --git a/gdata/tests/traces/calendar/setup-query-calendars 
b/gdata/tests/traces/calendar/setup-query-calendars
index 8d41b3a..4f9a251 100644
--- a/gdata/tests/traces/calendar/setup-query-calendars
+++ b/gdata/tests/traces/calendar/setup-query-calendars
@@ -1,8 +1,8 @@
POST /calendar/feeds/default/owncalendars/full HTTP/1.1
-> Soup-Debug-Timestamp: 1375107966
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 53 (0x7fffe003abb0), SoupSocket 48 (0x8ded20)
+> Soup-Debug-Timestamp: 1375202751
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 53 (0x8c28c0), SoupSocket 48 (0x7753d0)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
@@ -11,14 +11,14 @@
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app'><title type='text'>Test Calendar 1</title><category 
term='http://schemas.google.com/gCal/2005#calendarmeta' 
scheme='http://schemas.google.com/g/2005#kind'/><gCal:hidden value='false'/><gCal:color 
value='#7a367a'/><gCal:selected value='false'/></entry>
   
 < HTTP/1.1 302 Moved Temporarily
-< Soup-Debug-Timestamp: 1375107966
-< Soup-Debug: SoupMessage 53 (0x7fffe003abb0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXThTgckY3-hSb61OvnzXxSJ7d2jzDTq4SYJOcXEK19cfN8WmIspK2CGATjYnx3q1Fz9ZgntzaOCi00pQJhkctNT
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:26:07 GMT
-< Set-Cookie: S=calendar=CAX1Js5qSCPbeNlgcSd06w;Expires=Wed, 07-Aug-2013 11:58:39 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:26:06 GMT
-< Date: Mon, 29 Jul 2013 14:26:06 GMT
-< Location: https://www.google.com/calendar/feeds/default/owncalendars/full?gsessionid=CAX1Js5qSCPbeNlgcSd06w
+< Soup-Debug-Timestamp: 1375202751
+< Soup-Debug: SoupMessage 53 (0x8c28c0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_t4EurujSJEVz4Oz9mAIOytzvk2x5HxgdMhjgmIZQyEhJEVxBkGa9tYZB61Yy8JtAPaktxoTLVkhp854Pjz3Lu2nGX3VFkbf3hmep1Z77H5UUPxIsLyYKJ-XIqF26WY8xy6o6N8-w_azdQg_R57FuB6O-GUgGUKDr2aKE9iTWpO0XsB7-zCP0UEx7yuXEnbLb7XVAw5KqOV1FqKEA6grSKkAqUaQftC9ppmNnCTUl0XskgKlvQxIBg-580Pa1-4yjY5tacPmBQVR42znpOSUkcg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:45:53 GMT
+< Set-Cookie: S=calendar=Lyp-F7Kp5ScT-QTe7TxLMg;Expires=Sat, 10-Aug-2013 23:16:39 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:45:52 GMT
+< Date: Tue, 30 Jul 2013 16:45:52 GMT
+< Location: https://www.google.com/calendar/feeds/default/owncalendars/full?gsessionid=Lyp-F7Kp5ScT-QTe7TxLMg
 < Content-Type: text/html; charset=UTF-8
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -33,15 +33,15 @@
 < </HEAD>
 < <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
 < <H1>Moved Temporarily</H1>
-< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/owncalendars/full?gsessionid=CAX1Js5qSCPbeNlgcSd06w";>here</A>.
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/owncalendars/full?gsessionid=Lyp-F7Kp5ScT-QTe7TxLMg";>here</A>.
 < </BODY>
 < </HTML>
   
-> POST /calendar/feeds/default/owncalendars/full?gsessionid=CAX1Js5qSCPbeNlgcSd06w HTTP/1.1
-> Soup-Debug-Timestamp: 1375107966
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 53 (0x7fffe003abb0), SoupSocket 49 (0x8deba0), restarted
+> POST /calendar/feeds/default/owncalendars/full?gsessionid=Lyp-F7Kp5ScT-QTe7TxLMg HTTP/1.1
+> Soup-Debug-Timestamp: 1375202752
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 53 (0x8c28c0), SoupSocket 49 (0x775490), restarted
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
@@ -51,33 +51,33 @@
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app'><title type='text'>Test Calendar 1</title><category 
term='http://schemas.google.com/gCal/2005#calendarmeta' 
scheme='http://schemas.google.com/g/2005#kind'/><gCal:hidden value='false'/><gCal:color 
value='#7a367a'/><gCal:selected value='false'/></entry>
   
 < HTTP/1.1 201 Created
-< Soup-Debug-Timestamp: 1375107968
-< Soup-Debug: SoupMessage 53 (0x7fffe003abb0)
-< Update-Client-Auth: 
DQAAANAAAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXQ13oqRh_2p87WcrWeAQnJZpM9mi1et5TBGe84GimS7yuU_utQqgxo_ARltmYbhyQQy5oR9U-3hGYR8T6bNTF75
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:26:07 GMT
-< Set-Cookie: S=calendar=1-9rXrChrnL08DIyfik3pQ;Expires=Thu, 08-Aug-2013 13:29:09 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:26:08 GMT
-< Date: Mon, 29 Jul 2013 14:26:08 GMT
+< Soup-Debug-Timestamp: 1375202753
+< Soup-Debug: SoupMessage 53 (0x8c28c0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_q4NwI2V8UT-SSEMjiblkY8jTSCIGQJCo_ZFavemirrG0G2jzg3jjEVC3CQauPSZoNTFtDCw6Eu1-1S6nOyDK2J9zwLcpKLPHGuWk8fzL5JjKgN0Z0HbdhVtGaldMU2XCoc4_I0dsAZNFNzMl12pQ2IhlOpKYk_syrjXgbEIFWB07e6wSu6Mp1XswtWQL95nokCfWJkTHf4YGsR2zpy2736UplfLIVHDJLz7fiJzKG-5nUmoz2a5jdwopbkQ6flW44tTL7okPm_2Y6nqlPi74Mg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:45:53 GMT
+< Set-Cookie: S=calendar=uDJIQe7ySRQWTH9UR6s3fA;Expires=Wed, 07-Aug-2013 07:30:24 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:45:53 GMT
+< Date: Tue, 30 Jul 2013 16:45:53 GMT
 < Content-Type: application/atom+xml; charset=UTF-8; type=entry
 < Cache-control: private, max-age=0, must-revalidate, no-transform
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 2.6
-< ETag: W/"DU4CSX47eCp7JGA9WhFWEU0."
-< Location: 
https://www.google.com/calendar/feeds/default/owncalendars/full/rak7fnvu9m3p8tq87a2bqjt37o%40group.calendar.google.com
-< Content-Location: 
https://www.google.com/calendar/feeds/default/owncalendars/full/rak7fnvu9m3p8tq87a2bqjt37o%40group.calendar.google.com
+< ETag: W/"CEABQn47eCp7JGA9WhFWEk0."
+< Location: 
https://www.google.com/calendar/feeds/default/owncalendars/full/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com
+< Content-Location: 
https://www.google.com/calendar/feeds/default/owncalendars/full/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
 < X-XSS-Protection: 1; mode=block
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='W/&quot;DU4CSX47eCp7JGA9WhFWEU0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/rak7fnvu9m3p8tq87a2bqjt37o%40group.calendar.google.com</id><published>2013-07-29T14:26:08.705Z</published><updated>2013-07-29T14:26:08.000Z</updated><app:edited>2013-07-29T14:26:08.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title>Test Calendar 1</title><content 
type='application/atom+xml;type=feed' 
src='https://www.google.com/calendar/feeds/rak7fnvu9m3p8tq87a2bqjt37o%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/rak7fnvu9m3p8tq87a2bqjt37o%40group.calenda
 r.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' 
type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/rak7fnvu9m3p8tq87a2bqjt37o%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/rak7fnvu9m3p8tq87a2bqjt37o%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/rak7fnvu9m3p8tq87a2bqjt37o%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/rak7fnvu9m3p8tq87a2bqjt37o%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned va
 lue='0'/></entry>
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='W/&quot;CEABQn47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com</id><published>2013-07-30T16:45:53.840Z</published><updated>2013-07-30T16:45:53.000Z</updated><app:edited>2013-07-30T16:45:53.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title>Test Calendar 1</title><content 
type='application/atom+xml;type=feed' 
src='https://www.google.com/calendar/feeds/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/he77hbv0jl50q88btpe8ihrb18%40group.calenda
 r.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' 
type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com'/><author><name>Test
 Calendar 1</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned va
 lue='0'/></entry>
   
POST /calendar/feeds/default/owncalendars/full HTTP/1.1
-> Soup-Debug-Timestamp: 1375107968
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 54 (0x7fffe40149a0), SoupSocket 50 (0x8deea0)
+> Soup-Debug-Timestamp: 1375202753
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 54 (0x8c2aa0), SoupSocket 50 (0x775310)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
@@ -86,14 +86,14 @@
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app'><title type='text'>Test Calendar 2</title><category 
term='http://schemas.google.com/gCal/2005#calendarmeta' 
scheme='http://schemas.google.com/g/2005#kind'/><gCal:hidden value='false'/><gCal:color 
value='#7a367a'/><gCal:selected value='false'/></entry>
   
 < HTTP/1.1 302 Moved Temporarily
-< Soup-Debug-Timestamp: 1375107968
-< Soup-Debug: SoupMessage 54 (0x7fffe40149a0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXThTgckY3-hSb61OvnzXxSJ7d2jzDTq4SYJOcXEK19cfN8WmIspK2CGATjYnx3q1Fz9ZgntzaOCi00pQJhkctNT
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:26:09 GMT
-< Set-Cookie: S=calendar=qXtsU8C1Csqzmyw74orGeA;Expires=Mon, 05-Aug-2013 17:33:33 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:26:08 GMT
-< Date: Mon, 29 Jul 2013 14:26:08 GMT
-< Location: https://www.google.com/calendar/feeds/default/owncalendars/full?gsessionid=qXtsU8C1Csqzmyw74orGeA
+< Soup-Debug-Timestamp: 1375202754
+< Soup-Debug: SoupMessage 54 (0x8c2aa0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_t4EurujSJEVz4Oz9mAIOytzvk2x5HxgdMhjgmIZQyEhJEVxBkGa9tYZB61Yy8JtAPaktxoTLVkhp854Pjz3Lu2nGX3VFkbf3hmep1Z77H5UUPxIsLyYKJ-XIqF26WY8xy6o6N8-w_azdQg_R57FuB6O-GUgGUKDr2aKE9iTWpO0XsB7-zCP0UEx7yuXEnbLb7XVAw5KqOV1FqKEA6grSKkAqUaQftC9ppmNnCTUl0XskgKlvQxIBg-580Pa1-4yjY5tacPmBQVR42znpOSUkcg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:45:55 GMT
+< Set-Cookie: S=calendar=vGmNP6U-iXmMqJUYqEz8xA;Expires=Thu, 08-Aug-2013 15:50:48 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:45:54 GMT
+< Date: Tue, 30 Jul 2013 16:45:54 GMT
+< Location: https://www.google.com/calendar/feeds/default/owncalendars/full?gsessionid=vGmNP6U-iXmMqJUYqEz8xA
 < Content-Type: text/html; charset=UTF-8
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -108,15 +108,15 @@
 < </HEAD>
 < <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
 < <H1>Moved Temporarily</H1>
-< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/owncalendars/full?gsessionid=qXtsU8C1Csqzmyw74orGeA";>here</A>.
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/owncalendars/full?gsessionid=vGmNP6U-iXmMqJUYqEz8xA";>here</A>.
 < </BODY>
 < </HTML>
   
-> POST /calendar/feeds/default/owncalendars/full?gsessionid=qXtsU8C1Csqzmyw74orGeA HTTP/1.1
-> Soup-Debug-Timestamp: 1375107969
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 54 (0x7fffe40149a0), SoupSocket 51 (0x7fffe003bdf0), 
restarted
+> POST /calendar/feeds/default/owncalendars/full?gsessionid=vGmNP6U-iXmMqJUYqEz8xA HTTP/1.1
+> Soup-Debug-Timestamp: 1375202754
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 54 (0x8c2aa0), SoupSocket 51 (0x7fffe0040970), restarted
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
@@ -126,25 +126,25 @@
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app'><title type='text'>Test Calendar 2</title><category 
term='http://schemas.google.com/gCal/2005#calendarmeta' 
scheme='http://schemas.google.com/g/2005#kind'/><gCal:hidden value='false'/><gCal:color 
value='#7a367a'/><gCal:selected value='false'/></entry>
   
 < HTTP/1.1 201 Created
-< Soup-Debug-Timestamp: 1375107971
-< Soup-Debug: SoupMessage 54 (0x7fffe40149a0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-ODYysS96Taaw1NaIYtJAAHEXCZ_GMPV8cwrWmi_-pskMkzDa8yS5h3Lx6BUX8K1OQLMPBV7rpZGHtUa1jYE1jA_4X05rZ800eKz2vNaGdZYoiYJwGnkqCe72OBS-ReHTEtvQtr7VG9ZYkAslaj0Tffvz8pB9ItwBfiM3-4oLSkIEFXx8_eyUlfeNChSfSAvSSqTyG58No5P6HZMRKSJtwsyLwtxAl4BhBMfGX_Uh_z0XCyGMW8beXiNXZ4h5XkwP
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:26:10 GMT
-< Set-Cookie: S=calendar=7lhv6ddijMCe2du6F47uXQ;Expires=Sun, 11-Aug-2013 17:21:31 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:26:11 GMT
-< Date: Mon, 29 Jul 2013 14:26:11 GMT
+< Soup-Debug-Timestamp: 1375202756
+< Soup-Debug: SoupMessage 54 (0x8c2aa0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_x9DCxs6Yn1ShR7x5wx1k6e37TbqaZyvZnHbBDD5MjDqIwu2doXjOCD97mfXE8YE20iZQLD52PYbtpDGgujgmHXXGW1wlvqMs94qpgxdE8eYecbfbso9UjfaO5uqfvsRXIhKhe7zV2m0bacHn0JcyH7mkYYXHxHv7XZ_tjZftH-i5SVfC5OZaKOQXxynRfd_Yz5PzuJngGrHUxv5bViZFI3gQCqJikX_t9TXaydAiNvFoCzIgXcLmw11rsBONKvKvzka6NqtM8xqoAdhWs62jAQ
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:45:55 GMT
+< Set-Cookie: S=calendar=gkJe0N0WjR8w23nKU3xOZw;Expires=Sun, 11-Aug-2013 02:55:21 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:45:57 GMT
+< Date: Tue, 30 Jul 2013 16:45:57 GMT
 < Content-Type: application/atom+xml; charset=UTF-8; type=entry
 < Cache-control: private, max-age=0, must-revalidate, no-transform
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 2.6
-< ETag: W/"DU4DQH47eCp7JGA9WhFWEU0."
-< Location: 
https://www.google.com/calendar/feeds/default/owncalendars/full/shq8d62hnnkefppgvodj6lqdo4%40group.calendar.google.com
-< Content-Location: 
https://www.google.com/calendar/feeds/default/owncalendars/full/shq8d62hnnkefppgvodj6lqdo4%40group.calendar.google.com
+< ETag: W/"CEABRn47eCp7JGA9WhFWEk0."
+< Location: 
https://www.google.com/calendar/feeds/default/owncalendars/full/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com
+< Content-Location: 
https://www.google.com/calendar/feeds/default/owncalendars/full/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
 < X-XSS-Protection: 1; mode=block
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='W/&quot;DU4DQH47eCp7JGA9WhFWEU0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/shq8d62hnnkefppgvodj6lqdo4%40group.calendar.google.com</id><published>2013-07-29T14:26:11.153Z</published><updated>2013-07-29T14:26:11.000Z</updated><app:edited>2013-07-29T14:26:11.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title>Test Calendar 2</title><content 
type='application/atom+xml;type=feed' 
src='https://www.google.com/calendar/feeds/shq8d62hnnkefppgvodj6lqdo4%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/shq8d62hnnkefppgvodj6lqdo4%40group.calenda
 r.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' 
type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/shq8d62hnnkefppgvodj6lqdo4%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/shq8d62hnnkefppgvodj6lqdo4%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/shq8d62hnnkefppgvodj6lqdo4%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/shq8d62hnnkefppgvodj6lqdo4%40group.calendar.google.com'/><author><name>Test
 Calendar 2</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned va
 lue='0'/></entry>
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='W/&quot;CEABRn47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com</id><published>2013-07-30T16:45:57.065Z</published><updated>2013-07-30T16:45:57.000Z</updated><app:edited>2013-07-30T16:45:57.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title>Test Calendar 2</title><content 
type='application/atom+xml;type=feed' 
src='https://www.google.com/calendar/feeds/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/iv9qp0fql6sbf3hl3dk45bogb8%40group.calenda
 r.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' 
type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com'/><author><name>Test
 Calendar 2</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesCleaned va
 lue='0'/></entry>
   
diff --git a/gdata/tests/traces/calendar/setup-query-events b/gdata/tests/traces/calendar/setup-query-events
index 2a6ee20..5fa96ef 100644
--- a/gdata/tests/traces/calendar/setup-query-events
+++ b/gdata/tests/traces/calendar/setup-query-events
@@ -1,8 +1,8 @@
POST /calendar/feeds/default/private/full HTTP/1.1
-> Soup-Debug-Timestamp: 1375107999
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 81 (0x7fffe003a9d0), SoupSocket 74 (0x8dec60)
+> Soup-Debug-Timestamp: 1375202786
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 81 (0x7fffe003f550), SoupSocket 74 (0x7756d0)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
@@ -11,14 +11,14 @@
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app'><title type='text'>Test Event 1</title><category 
term='http://schemas.google.com/g/2005#event' 
scheme='http://schemas.google.com/g/2005#kind'/><gCal:guestsCanModify 
value='false'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanSeeGuests 
value='false'/><gCal:anyoneCanAddSelf value='false'/></entry>
   
 < HTTP/1.1 302 Moved Temporarily
-< Soup-Debug-Timestamp: 1375107999
-< Soup-Debug: SoupMessage 81 (0x7fffe003a9d0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXThTgckY3-hSb61OvnzXxSJ7d2jzDTq4SYJOcXEK19cfN8WmIspK2CGATjYnx3q1Fz9ZgntzaOCi00pQJhkctNT
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:26:40 GMT
-< Set-Cookie: S=calendar=x0NwbP_fxgLZSGYXrPcHwA;Expires=Mon, 05-Aug-2013 19:30:07 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:26:39 GMT
-< Date: Mon, 29 Jul 2013 14:26:39 GMT
-< Location: https://www.google.com/calendar/feeds/default/private/full?gsessionid=x0NwbP_fxgLZSGYXrPcHwA
+< Soup-Debug-Timestamp: 1375202786
+< Soup-Debug: SoupMessage 81 (0x7fffe003f550)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_lzf1dm9Ue8N3SJp2J6o695WrE5nMbNLIXgO1GwYSOH0dinvA7V6dAhAIAEim2gLMsmbC2ddMnDUzaVKIGr3_JWCh97kMTIAR1M2IeSsu02b7EZA-X4HjICLw-x5pMnXhR8i08nLbVHSLT_No8fvB518lPWszfELKmW9TYG0-BAxXFzn9IKi_SmDnEv70WeTVk9AKBXEZK8GgbVvG2jwg9IxQwwSgxxH2Am-wKlw1Xh28Ocyi9bXsxw2zvbHLluu_emFBzQJ8Ds6aIurEQIryfg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:27 GMT
+< Set-Cookie: S=calendar=k7cXcwqWPX8rnPhqST7EYw;Expires=Tue, 13-Aug-2013 04:38:22 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:26 GMT
+< Date: Tue, 30 Jul 2013 16:46:26 GMT
+< Location: https://www.google.com/calendar/feeds/default/private/full?gsessionid=k7cXcwqWPX8rnPhqST7EYw
 < Content-Type: text/html; charset=UTF-8
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -33,15 +33,15 @@
 < </HEAD>
 < <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
 < <H1>Moved Temporarily</H1>
-< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/private/full?gsessionid=x0NwbP_fxgLZSGYXrPcHwA";>here</A>.
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/private/full?gsessionid=k7cXcwqWPX8rnPhqST7EYw";>here</A>.
 < </BODY>
 < </HTML>
   
-> POST /calendar/feeds/default/private/full?gsessionid=x0NwbP_fxgLZSGYXrPcHwA HTTP/1.1
-> Soup-Debug-Timestamp: 1375107999
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 81 (0x7fffe003a9d0), SoupSocket 75 (0x7fffe003bdf0), 
restarted
+> POST /calendar/feeds/default/private/full?gsessionid=k7cXcwqWPX8rnPhqST7EYw HTTP/1.1
+> Soup-Debug-Timestamp: 1375202786
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 81 (0x7fffe003f550), SoupSocket 75 (0x7750d0), restarted
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
@@ -51,33 +51,33 @@
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app'><title type='text'>Test Event 1</title><category 
term='http://schemas.google.com/g/2005#event' 
scheme='http://schemas.google.com/g/2005#kind'/><gCal:guestsCanModify 
value='false'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanSeeGuests 
value='false'/><gCal:anyoneCanAddSelf value='false'/></entry>
   
 < HTTP/1.1 201 Created
-< Soup-Debug-Timestamp: 1375108000
-< Soup-Debug: SoupMessage 81 (0x7fffe003a9d0)
-< Update-Client-Auth: 
DQAAAM4AAAAlDUC-WQgltDHdndYDddr-geSwqup450dH73A2Cl-8pGWAz5Jr6k15x7ETDyyX-gKH9mQLgT8NgpcJeZVMLjIXm1EbZt7eOlczQvHw9uMmD40XUvTc3VuOvT58GOMc7bcR5a-xUVuHMkbEU3g2rCp7Fw3q3lP_QFTWqE59LQAuIJ1V1Mzrj5l73ZloZnprjZsoS6V737LE84MKS3EbUJwdhONiAUU1jBHCL_yAoimGEtnElJMGcEXxs1Pl3YW3Ceub90HJ43ybw11aZdO1mFDL
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:26:40 GMT
-< Set-Cookie: S=calendar=pK6IA_jZWMEWOZxNthJTuw;Expires=Fri, 09-Aug-2013 11:16:06 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:26:39 GMT
-< Date: Mon, 29 Jul 2013 14:26:39 GMT
+< Soup-Debug-Timestamp: 1375202787
+< Soup-Debug: SoupMessage 81 (0x7fffe003f550)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_QMIIFxw1-89I4fIiltp3toM_OQPaV-s2Op5YfNNKqskJ-elHTN3M2YrIdeRcj84Q94sPukowimpQydy5Tbb14G3YJ4S-NHM8cpqZJBifvXkyktCQOlLQS03AMrw1-u6qvRouqxtCMYd1apUUU9kXVWwoSYowH2iqScUeke9qp_ZEetMmdoQ61WwPB5gd4Of34y2qjfi6BC-i8q-4AfecimYdMpxx-Z7ncnkPEftWV84VyvVUhWfLM8oWcP3zT943b_FOzjNl76pHK1Za70lHtw
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:27 GMT
+< Set-Cookie: S=calendar=yNiBFSWOALvGOhSRm4sh6g;Expires=Sun, 11-Aug-2013 00:50:44 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:27 GMT
+< Date: Tue, 30 Jul 2013 16:46:27 GMT
 < Content-Type: application/atom+xml; charset=UTF-8; type=entry
 < Cache-control: private, max-age=0, must-revalidate, no-transform
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 2.6
-< ETag: "EEoDRgVIdyp7JGA6WhNS"
-< Location: https://www.google.com/calendar/feeds/default/private/full/nc5gdt040m67ol63hf0h71v79s
-< Content-Location: https://www.google.com/calendar/feeds/default/private/full/nc5gdt040m67ol63hf0h71v79s
+< ETag: "EEUCQg1JeSp7JGA6WhNS"
+< Location: https://www.google.com/calendar/feeds/default/private/full/tc791pjf1ndnicqvb2jgorvdj8
+< Content-Location: https://www.google.com/calendar/feeds/default/private/full/tc791pjf1ndnicqvb2jgorvdj8
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
 < X-XSS-Protection: 1; mode=block
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='&quot;EEoDRgVIdyp7JGA6WhNS&quot;' 
gd:kind='calendar#event'><id>http://www.google.com/calendar/feeds/default/events/nc5gdt040m67ol63hf0h71v79s</id><published>2013-07-29T14:26:39.000Z</published><updated>2013-07-29T14:26:39.000Z</updated><app:edited>2013-07-29T14:26:39.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title>Test 
Event 1</title><content/><link rel='alternate' type='text/html' 
href='https://www.google.com/calendar/event?eid=bmM1Z2R0MDQwbTY3b2w2M2hmMGg3MXY3OXMgbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ'
 title='alternate'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/nc5gdt040m67ol63hf0h71v79s'/><link 
rel='edit' t
 ype='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/nc5gdt040m67ol63hf0h71v79s'/><author><name>GData
 Test</name><email>libgdata test googlemail com</email></author><gd:comments><gd:feedLink 
href='https://www.google.com/calendar/feeds/default/private/full/nc5gdt040m67ol63hf0h71v79s/comments'/></gd:comments><gd:eventStatus
 value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='libgdata 
test googlemail com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='GData 
Test'/><gd:when endTime='2013-07-29T15:26:39.000+01:00' 
startTime='2013-07-29T15:26:39.000+01:00'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf 
value='false'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanModify 
value='false'/><gCal:guestsCanSeeGuests value='false'/><gCal:sequence value='0
 '/><gCal:uid value='nc5gdt040m67ol63hf0h71v79s google com'/></entry>
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='&quot;EEUCQg1JeSp7JGA6WhNS&quot;' 
gd:kind='calendar#event'><id>http://www.google.com/calendar/feeds/default/events/tc791pjf1ndnicqvb2jgorvdj8</id><published>2013-07-30T16:46:27.000Z</published><updated>2013-07-30T16:46:27.000Z</updated><app:edited>2013-07-30T16:46:27.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title>Test 
Event 1</title><content/><link rel='alternate' type='text/html' 
href='https://www.google.com/calendar/event?eid=dGM3OTFwamYxbmRuaWNxdmIyamdvcnZkajggbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ'
 title='alternate'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/tc791pjf1ndnicqvb2jgorvdj8'/><link 
rel='edit' t
 ype='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/tc791pjf1ndnicqvb2jgorvdj8'/><author><name>GData
 Test</name><email>libgdata test googlemail com</email></author><gd:comments><gd:feedLink 
href='https://www.google.com/calendar/feeds/default/private/full/tc791pjf1ndnicqvb2jgorvdj8/comments'/></gd:comments><gd:eventStatus
 value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='libgdata 
test googlemail com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='GData 
Test'/><gd:when endTime='2013-07-30T17:46:27.000+01:00' 
startTime='2013-07-30T17:46:27.000+01:00'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf 
value='false'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanModify 
value='false'/><gCal:guestsCanSeeGuests value='false'/><gCal:sequence value='0
 '/><gCal:uid value='tc791pjf1ndnicqvb2jgorvdj8 google com'/></entry>
   
POST /calendar/feeds/default/private/full HTTP/1.1
-> Soup-Debug-Timestamp: 1375108000
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 82 (0x7fffe4014c70), SoupSocket 76 (0x8deba0)
+> Soup-Debug-Timestamp: 1375202787
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 82 (0x7fffe003f0a0), SoupSocket 76 (0x7fffe0040970)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
@@ -86,14 +86,14 @@
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app'><title type='text'>Test Event 2</title><category 
term='http://schemas.google.com/g/2005#event' 
scheme='http://schemas.google.com/g/2005#kind'/><gCal:guestsCanModify 
value='false'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanSeeGuests 
value='false'/><gCal:anyoneCanAddSelf value='false'/></entry>
   
 < HTTP/1.1 302 Moved Temporarily
-< Soup-Debug-Timestamp: 1375108000
-< Soup-Debug: SoupMessage 82 (0x7fffe4014c70)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXThTgckY3-hSb61OvnzXxSJ7d2jzDTq4SYJOcXEK19cfN8WmIspK2CGATjYnx3q1Fz9ZgntzaOCi00pQJhkctNT
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:26:41 GMT
-< Set-Cookie: S=calendar=uBqC0MmTGC7Yd4xHan0Ucw;Expires=Mon, 12-Aug-2013 11:26:58 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:26:40 GMT
-< Date: Mon, 29 Jul 2013 14:26:40 GMT
-< Location: https://www.google.com/calendar/feeds/default/private/full?gsessionid=uBqC0MmTGC7Yd4xHan0Ucw
+< Soup-Debug-Timestamp: 1375202787
+< Soup-Debug: SoupMessage 82 (0x7fffe003f0a0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_lzf1dm9Ue8N3SJp2J6o695WrE5nMbNLIXgO1GwYSOH0dinvA7V6dAhAIAEim2gLMsmbC2ddMnDUzaVKIGr3_JWCh97kMTIAR1M2IeSsu02b7EZA-X4HjICLw-x5pMnXhR8i08nLbVHSLT_No8fvB518lPWszfELKmW9TYG0-BAxXFzn9IKi_SmDnEv70WeTVk9AKBXEZK8GgbVvG2jwg9IxQwwSgxxH2Am-wKlw1Xh28Ocyi9bXsxw2zvbHLluu_emFBzQJ8Ds6aIurEQIryfg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:28 GMT
+< Set-Cookie: S=calendar=X5bVHI-2JyrxX7YRrMhQ4g;Expires=Sun, 11-Aug-2013 04:04:47 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:27 GMT
+< Date: Tue, 30 Jul 2013 16:46:27 GMT
+< Location: https://www.google.com/calendar/feeds/default/private/full?gsessionid=X5bVHI-2JyrxX7YRrMhQ4g
 < Content-Type: text/html; charset=UTF-8
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -108,15 +108,15 @@
 < </HEAD>
 < <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
 < <H1>Moved Temporarily</H1>
-< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/private/full?gsessionid=uBqC0MmTGC7Yd4xHan0Ucw";>here</A>.
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/private/full?gsessionid=X5bVHI-2JyrxX7YRrMhQ4g";>here</A>.
 < </BODY>
 < </HTML>
   
-> POST /calendar/feeds/default/private/full?gsessionid=uBqC0MmTGC7Yd4xHan0Ucw HTTP/1.1
-> Soup-Debug-Timestamp: 1375108000
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 82 (0x7fffe4014c70), SoupSocket 77 (0x8ded20), restarted
+> POST /calendar/feeds/default/private/full?gsessionid=X5bVHI-2JyrxX7YRrMhQ4g HTTP/1.1
+> Soup-Debug-Timestamp: 1375202787
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 82 (0x7fffe003f0a0), SoupSocket 77 (0x775550), restarted
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
@@ -126,33 +126,33 @@
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app'><title type='text'>Test Event 2</title><category 
term='http://schemas.google.com/g/2005#event' 
scheme='http://schemas.google.com/g/2005#kind'/><gCal:guestsCanModify 
value='false'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanSeeGuests 
value='false'/><gCal:anyoneCanAddSelf value='false'/></entry>
   
 < HTTP/1.1 201 Created
-< Soup-Debug-Timestamp: 1375108000
-< Soup-Debug: SoupMessage 82 (0x7fffe4014c70)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-ODYysS96Taaw1NaIYtJAAHEXCZ_GMPV8cwrWmi_-pskMkzDa8yS5h3Lx6BUX8K1OQLMPBV7rpZGHtUa1jYE1jA_4X05rZ800eKz2vNaGdZYoiYJwGnkqCe72OBS-ReHTEtvQtr7VG9ZYkAslaj0Tffvz8pB9ItwBfiM3-4oLSkIEFXx8_eyUlfeNChSfSAvSSqTyG58No5P6HZMRKSJtwsyLwtxAl4BhBMfGX_Uh_z0XCyGMW8beXiNXZ4h5XkwP
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:26:41 GMT
-< Set-Cookie: S=calendar=Z3Yg48Gw6w840nbxNZgNqw;Expires=Tue, 06-Aug-2013 00:14:23 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:26:40 GMT
-< Date: Mon, 29 Jul 2013 14:26:40 GMT
+< Soup-Debug-Timestamp: 1375202788
+< Soup-Debug: SoupMessage 82 (0x7fffe003f0a0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_x9DCxs6Yn1ShR7x5wx1k6e37TbqaZyvZnHbBDD5MjDqIwu2doXjOCD97mfXE8YE20iZQLD52PYbtpDGgujgmHXXGW1wlvqMs94qpgxdE8eYecbfbso9UjfaO5uqfvsRXIhKhe7zV2m0bacHn0JcyH7mkYYXHxHv7XZ_tjZftH-i5SVfC5OZaKOQXxynRfd_Yz5PzuJngGrHUxv5bViZFI3gQCqJikX_t9TXaydAiNvFoCzIgXcLmw11rsBONKvKvzka6NqtM8xqoAdhWs62jAQ
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:28 GMT
+< Set-Cookie: S=calendar=GALN8I3zxFSNshL7sBYClA;Expires=Fri, 09-Aug-2013 22:23:06 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:28 GMT
+< Date: Tue, 30 Jul 2013 16:46:28 GMT
 < Content-Type: application/atom+xml; charset=UTF-8; type=entry
 < Cache-control: private, max-age=0, must-revalidate, no-transform
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 2.6
-< ETag: "EEoDRgZBfip7JGA6WhNS"
-< Location: https://www.google.com/calendar/feeds/default/private/full/fp1j04magk0odf8k2tc074fce4
-< Content-Location: https://www.google.com/calendar/feeds/default/private/full/fp1j04magk0odf8k2tc074fce4
+< ETag: "EEUCQg1Jdip7JGA6WhNS"
+< Location: https://www.google.com/calendar/feeds/default/private/full/i0h3hd7ash2mno0h4srh1vvu9s
+< Content-Location: https://www.google.com/calendar/feeds/default/private/full/i0h3hd7ash2mno0h4srh1vvu9s
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
 < X-XSS-Protection: 1; mode=block
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='&quot;EEoDRgZBfip7JGA6WhNS&quot;' 
gd:kind='calendar#event'><id>http://www.google.com/calendar/feeds/default/events/fp1j04magk0odf8k2tc074fce4</id><published>2013-07-29T14:26:40.000Z</published><updated>2013-07-29T14:26:40.000Z</updated><app:edited>2013-07-29T14:26:40.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title>Test 
Event 2</title><content/><link rel='alternate' type='text/html' 
href='https://www.google.com/calendar/event?eid=ZnAxajA0bWFnazBvZGY4azJ0YzA3NGZjZTQgbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ'
 title='alternate'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/fp1j04magk0odf8k2tc074fce4'/><link 
rel='edit' t
 ype='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/fp1j04magk0odf8k2tc074fce4'/><author><name>GData
 Test</name><email>libgdata test googlemail com</email></author><gd:comments><gd:feedLink 
href='https://www.google.com/calendar/feeds/default/private/full/fp1j04magk0odf8k2tc074fce4/comments'/></gd:comments><gd:eventStatus
 value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='libgdata 
test googlemail com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='GData 
Test'/><gd:when endTime='2013-07-29T15:26:40.000+01:00' 
startTime='2013-07-29T15:26:40.000+01:00'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf 
value='false'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanModify 
value='false'/><gCal:guestsCanSeeGuests value='false'/><gCal:sequence value='0
 '/><gCal:uid value='fp1j04magk0odf8k2tc074fce4 google com'/></entry>
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='&quot;EEUCQg1Jdip7JGA6WhNS&quot;' 
gd:kind='calendar#event'><id>http://www.google.com/calendar/feeds/default/events/i0h3hd7ash2mno0h4srh1vvu9s</id><published>2013-07-30T16:46:28.000Z</published><updated>2013-07-30T16:46:28.000Z</updated><app:edited>2013-07-30T16:46:28.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title>Test 
Event 2</title><content/><link rel='alternate' type='text/html' 
href='https://www.google.com/calendar/event?eid=aTBoM2hkN2FzaDJtbm8waDRzcmgxdnZ1OXMgbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ'
 title='alternate'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/i0h3hd7ash2mno0h4srh1vvu9s'/><link 
rel='edit' t
 ype='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/i0h3hd7ash2mno0h4srh1vvu9s'/><author><name>GData
 Test</name><email>libgdata test googlemail com</email></author><gd:comments><gd:feedLink 
href='https://www.google.com/calendar/feeds/default/private/full/i0h3hd7ash2mno0h4srh1vvu9s/comments'/></gd:comments><gd:eventStatus
 value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='libgdata 
test googlemail com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='GData 
Test'/><gd:when endTime='2013-07-30T17:46:27.000+01:00' 
startTime='2013-07-30T17:46:27.000+01:00'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf 
value='false'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanModify 
value='false'/><gCal:guestsCanSeeGuests value='false'/><gCal:sequence value='0
 '/><gCal:uid value='i0h3hd7ash2mno0h4srh1vvu9s google com'/></entry>
   
POST /calendar/feeds/default/private/full HTTP/1.1
-> Soup-Debug-Timestamp: 1375108000
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 83 (0x7fffd804b0b0), SoupSocket 78 (0x8deea0)
+> Soup-Debug-Timestamp: 1375202788
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 83 (0x7fffe40158e0), SoupSocket 78 (0x775310)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
@@ -161,14 +161,14 @@
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app'><title type='text'>Test Event 3</title><category 
term='http://schemas.google.com/g/2005#event' 
scheme='http://schemas.google.com/g/2005#kind'/><gCal:guestsCanModify 
value='false'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanSeeGuests 
value='false'/><gCal:anyoneCanAddSelf value='false'/></entry>
   
 < HTTP/1.1 302 Moved Temporarily
-< Soup-Debug-Timestamp: 1375108001
-< Soup-Debug: SoupMessage 83 (0x7fffd804b0b0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXThTgckY3-hSb61OvnzXxSJ7d2jzDTq4SYJOcXEK19cfN8WmIspK2CGATjYnx3q1Fz9ZgntzaOCi00pQJhkctNT
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:26:41 GMT
-< Set-Cookie: S=calendar=_lu89F7htlh3-c8BWGj8OQ;Expires=Thu, 08-Aug-2013 02:35:50 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:26:40 GMT
-< Date: Mon, 29 Jul 2013 14:26:40 GMT
-< Location: https://www.google.com/calendar/feeds/default/private/full?gsessionid=_lu89F7htlh3-c8BWGj8OQ
+< Soup-Debug-Timestamp: 1375202788
+< Soup-Debug: SoupMessage 83 (0x7fffe40158e0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_lzf1dm9Ue8N3SJp2J6o695WrE5nMbNLIXgO1GwYSOH0dinvA7V6dAhAIAEim2gLMsmbC2ddMnDUzaVKIGr3_JWCh97kMTIAR1M2IeSsu02b7EZA-X4HjICLw-x5pMnXhR8i08nLbVHSLT_No8fvB518lPWszfELKmW9TYG0-BAxXFzn9IKi_SmDnEv70WeTVk9AKBXEZK8GgbVvG2jwg9IxQwwSgxxH2Am-wKlw1Xh28Ocyi9bXsxw2zvbHLluu_emFBzQJ8Ds6aIurEQIryfg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:29 GMT
+< Set-Cookie: S=calendar=VaocSW42z6SNxkHwz5uzOQ;Expires=Sun, 11-Aug-2013 16:37:15 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:28 GMT
+< Date: Tue, 30 Jul 2013 16:46:28 GMT
+< Location: https://www.google.com/calendar/feeds/default/private/full?gsessionid=VaocSW42z6SNxkHwz5uzOQ
 < Content-Type: text/html; charset=UTF-8
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -183,15 +183,15 @@
 < </HEAD>
 < <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
 < <H1>Moved Temporarily</H1>
-< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/private/full?gsessionid=_lu89F7htlh3-c8BWGj8OQ";>here</A>.
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/private/full?gsessionid=VaocSW42z6SNxkHwz5uzOQ";>here</A>.
 < </BODY>
 < </HTML>
   
-> POST /calendar/feeds/default/private/full?gsessionid=_lu89F7htlh3-c8BWGj8OQ HTTP/1.1
-> Soup-Debug-Timestamp: 1375108001
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 83 (0x7fffd804b0b0), SoupSocket 79 (0x8dea20), restarted
+> POST /calendar/feeds/default/private/full?gsessionid=VaocSW42z6SNxkHwz5uzOQ HTTP/1.1
+> Soup-Debug-Timestamp: 1375202788
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 83 (0x7fffe40158e0), SoupSocket 79 (0x775490), restarted
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
@@ -201,25 +201,25 @@
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app'><title type='text'>Test Event 3</title><category 
term='http://schemas.google.com/g/2005#event' 
scheme='http://schemas.google.com/g/2005#kind'/><gCal:guestsCanModify 
value='false'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanSeeGuests 
value='false'/><gCal:anyoneCanAddSelf value='false'/></entry>
   
 < HTTP/1.1 201 Created
-< Soup-Debug-Timestamp: 1375108001
-< Soup-Debug: SoupMessage 83 (0x7fffd804b0b0)
-< Update-Client-Auth: 
DQAAAM4AAAAlDUC-WQgltDHdndYDddr-geSwqup450dH73A2Cl-8pGWAz5Jr6k15x7ETDyyX-gKH9mQLgT8NgpcJeZVMLjIXm1EbZt7eOlczQvHw9uMmD40XUvTc3VuOvT58GOMc7bcR5a-xUVuHMkbEU3g2rCp7Fw3q3lP_QFTWqE59LQAuIJ1V1Mzrj5l73ZloZnprjZsoS6V737LE84MKS3EbUJwdhONiAUU1jBHCL_yAoimGEtnElJMGcEXxs1Pl3YW3Ceub90HJ43ybw11aZdO1mFDL
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:26:42 GMT
-< Set-Cookie: S=calendar=iYIQyKIkALCaeoxmICQlDA;Expires=Fri, 09-Aug-2013 08:50:34 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:26:41 GMT
-< Date: Mon, 29 Jul 2013 14:26:41 GMT
+< Soup-Debug-Timestamp: 1375202789
+< Soup-Debug: SoupMessage 83 (0x7fffe40158e0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_QMIIFxw1-89I4fIiltp3toM_OQPaV-s2Op5YfNNKqskJ-elHTN3M2YrIdeRcj84Q94sPukowimpQydy5Tbb14G3YJ4S-NHM8cpqZJBifvXkyktCQOlLQS03AMrw1-u6qvRouqxtCMYd1apUUU9kXVWwoSYowH2iqScUeke9qp_ZEetMmdoQ61WwPB5gd4Of34y2qjfi6BC-i8q-4AfecimYdMpxx-Z7ncnkPEftWV84VyvVUhWfLM8oWcP3zT943b_FOzjNl76pHK1Za70lHtw
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:30 GMT
+< Set-Cookie: S=calendar=VvwPpJlh4ijzuVagm37qnQ;Expires=Fri, 09-Aug-2013 18:44:14 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:29 GMT
+< Date: Tue, 30 Jul 2013 16:46:29 GMT
 < Content-Type: application/atom+xml; charset=UTF-8; type=entry
 < Cache-control: private, max-age=0, must-revalidate, no-transform
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 2.6
-< ETag: "EEoDRgZBfyp7JGA6WhNS"
-< Location: https://www.google.com/calendar/feeds/default/private/full/d9s8fr5ao8l4ebm1f5qbdmb8gg
-< Content-Location: https://www.google.com/calendar/feeds/default/private/full/d9s8fr5ao8l4ebm1f5qbdmb8gg
+< ETag: "EEUCQg1Jdyp7JGA6WhNS"
+< Location: https://www.google.com/calendar/feeds/default/private/full/qv6rqh2gmrlee1uevomk3b1jok
+< Content-Location: https://www.google.com/calendar/feeds/default/private/full/qv6rqh2gmrlee1uevomk3b1jok
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
 < X-XSS-Protection: 1; mode=block
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='&quot;EEoDRgZBfyp7JGA6WhNS&quot;' 
gd:kind='calendar#event'><id>http://www.google.com/calendar/feeds/default/events/d9s8fr5ao8l4ebm1f5qbdmb8gg</id><published>2013-07-29T14:26:41.000Z</published><updated>2013-07-29T14:26:41.000Z</updated><app:edited>2013-07-29T14:26:41.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title>Test 
Event 3</title><content/><link rel='alternate' type='text/html' 
href='https://www.google.com/calendar/event?eid=ZDlzOGZyNWFvOGw0ZWJtMWY1cWJkbWI4Z2cgbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ'
 title='alternate'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/d9s8fr5ao8l4ebm1f5qbdmb8gg'/><link 
rel='edit' t
 ype='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/d9s8fr5ao8l4ebm1f5qbdmb8gg'/><author><name>GData
 Test</name><email>libgdata test googlemail com</email></author><gd:comments><gd:feedLink 
href='https://www.google.com/calendar/feeds/default/private/full/d9s8fr5ao8l4ebm1f5qbdmb8gg/comments'/></gd:comments><gd:eventStatus
 value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='libgdata 
test googlemail com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='GData 
Test'/><gd:when endTime='2013-07-29T15:26:41.000+01:00' 
startTime='2013-07-29T15:26:41.000+01:00'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf 
value='false'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanModify 
value='false'/><gCal:guestsCanSeeGuests value='false'/><gCal:sequence value='0
 '/><gCal:uid value='d9s8fr5ao8l4ebm1f5qbdmb8gg google com'/></entry>
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='&quot;EEUCQg1Jdyp7JGA6WhNS&quot;' 
gd:kind='calendar#event'><id>http://www.google.com/calendar/feeds/default/events/qv6rqh2gmrlee1uevomk3b1jok</id><published>2013-07-30T16:46:29.000Z</published><updated>2013-07-30T16:46:29.000Z</updated><app:edited>2013-07-30T16:46:29.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title>Test 
Event 3</title><content/><link rel='alternate' type='text/html' 
href='https://www.google.com/calendar/event?eid=cXY2cnFoMmdtcmxlZTF1ZXZvbWszYjFqb2sgbGliZ2RhdGEudGVzdEBnb29nbGVtYWlsLmNvbQ'
 title='alternate'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/qv6rqh2gmrlee1uevomk3b1jok'/><link 
rel='edit' t
 ype='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/private/full/qv6rqh2gmrlee1uevomk3b1jok'/><author><name>GData
 Test</name><email>libgdata test googlemail com</email></author><gd:comments><gd:feedLink 
href='https://www.google.com/calendar/feeds/default/private/full/qv6rqh2gmrlee1uevomk3b1jok/comments'/></gd:comments><gd:eventStatus
 value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='libgdata 
test googlemail com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='GData 
Test'/><gd:when endTime='2013-07-30T17:46:29.000+01:00' 
startTime='2013-07-30T17:46:29.000+01:00'/><gd:transparency 
value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility 
value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf 
value='false'/><gCal:guestsCanInviteOthers value='false'/><gCal:guestsCanModify 
value='false'/><gCal:guestsCanSeeGuests value='false'/><gCal:sequence value='0
 '/><gCal:uid value='qv6rqh2gmrlee1uevomk3b1jok google com'/></entry>
   
diff --git a/gdata/tests/traces/calendar/setup-temp-calendar b/gdata/tests/traces/calendar/setup-temp-calendar
index a1ef6cc..a99879a 100644
--- a/gdata/tests/traces/calendar/setup-temp-calendar
+++ b/gdata/tests/traces/calendar/setup-temp-calendar
@@ -1,8 +1,8 @@
POST /calendar/feeds/default/owncalendars/full HTTP/1.1
-> Soup-Debug-Timestamp: 1375108047
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 120 (0x7fffd804b0b0), SoupSocket 110 (0x8deba0)
+> Soup-Debug-Timestamp: 1375202833
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 119 (0x7fffe40158e0), SoupSocket 108 (0x775250)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
@@ -11,14 +11,14 @@
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app'><title type='text'>Temp Test Calendar</title><category 
term='http://schemas.google.com/gCal/2005#calendarmeta' 
scheme='http://schemas.google.com/g/2005#kind'/><gCal:hidden value='false'/><gCal:color 
value='#7a367a'/><gCal:selected value='false'/></entry>
   
 < HTTP/1.1 302 Moved Temporarily
-< Soup-Debug-Timestamp: 1375108047
-< Soup-Debug: SoupMessage 120 (0x7fffd804b0b0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXThTgckY3-hSb61OvnzXxSJ7d2jzDTq4SYJOcXEK19cfN8WmIspK2CGATjYnx3q1Fz9ZgntzaOCi00pQJhkctNT
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:27:28 GMT
-< Set-Cookie: S=calendar=mEYcRZVblEeI4hanC5hvhg;Expires=Sat, 10-Aug-2013 20:24:03 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:27:27 GMT
-< Date: Mon, 29 Jul 2013 14:27:27 GMT
-< Location: https://www.google.com/calendar/feeds/default/owncalendars/full?gsessionid=mEYcRZVblEeI4hanC5hvhg
+< Soup-Debug-Timestamp: 1375202833
+< Soup-Debug: SoupMessage 119 (0x7fffe40158e0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_lzf1dm9Ue8N3SJp2J6o695WrE5nMbNLIXgO1GwYSOH0dinvA7V6dAhAIAEim2gLMsmbC2ddMnDUzaVKIGr3_JWCh97kMTIAR1M2IeSsu02b7EZA-X4HjICLw-x5pMnXhR8i08nLbVHSLT_No8fvB518lPWszfELKmW9TYG0-BAxXFzn9IKi_SmDnEv70WeTVk9AKBXEZK8GgbVvG2jwg9IxQwwSgxxH2Am-wKlw1Xh28Ocyi9bXsxw2zvbHLluu_emFBzQJ8Ds6aIurEQIryfg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:47:15 GMT
+< Set-Cookie: S=calendar=-kHvfZmLSg-swDZiGpo5Lw;Expires=Mon, 12-Aug-2013 23:24:30 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:47:14 GMT
+< Date: Tue, 30 Jul 2013 16:47:14 GMT
+< Location: https://www.google.com/calendar/feeds/default/owncalendars/full?gsessionid=-kHvfZmLSg-swDZiGpo5Lw
 < Content-Type: text/html; charset=UTF-8
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -33,15 +33,15 @@
 < </HEAD>
 < <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
 < <H1>Moved Temporarily</H1>
-< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/owncalendars/full?gsessionid=mEYcRZVblEeI4hanC5hvhg";>here</A>.
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/owncalendars/full?gsessionid=-kHvfZmLSg-swDZiGpo5Lw";>here</A>.
 < </BODY>
 < </HTML>
   
-> POST /calendar/feeds/default/owncalendars/full?gsessionid=mEYcRZVblEeI4hanC5hvhg HTTP/1.1
-> Soup-Debug-Timestamp: 1375108047
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 120 (0x7fffd804b0b0), SoupSocket 111 (0x7fffe003bf70), 
restarted
+> POST /calendar/feeds/default/owncalendars/full?gsessionid=-kHvfZmLSg-swDZiGpo5Lw HTTP/1.1
+> Soup-Debug-Timestamp: 1375202834
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 119 (0x7fffe40158e0), SoupSocket 109 (0x775310), 
restarted
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
@@ -51,25 +51,25 @@
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app'><title type='text'>Temp Test Calendar</title><category 
term='http://schemas.google.com/gCal/2005#calendarmeta' 
scheme='http://schemas.google.com/g/2005#kind'/><gCal:hidden value='false'/><gCal:color 
value='#7a367a'/><gCal:selected value='false'/></entry>
   
 < HTTP/1.1 201 Created
-< Soup-Debug-Timestamp: 1375108050
-< Soup-Debug: SoupMessage 120 (0x7fffd804b0b0)
-< Update-Client-Auth: 
DQAAAM4AAAAlDUC-WQgltDHdndYDddr-geSwqup450dH73A2Cl-8pGWAz5Jr6k15x7ETDyyX-gKH9mQLgT8NgpcJeZVMLjIXm1EbZt7eOlczQvHw9uMmD40XUvTc3VuOvT58GOMc7bcR5a-xUVuHMkbEU3g2rCp7Fw3q3lP_QFTWqE59LQAuIJ1V1Mzrj5l73ZloZnprjZsoS6V737LE84MKS3EbUJwdhONiAUU1jBHCL_yAoimGEtnElJMGcEXxs1Pl3YW3Ceub90HJ43ybw11aZdO1mFDL
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:27:28 GMT
-< Set-Cookie: S=calendar=rjlFsCUgUAuEMKLKYabArQ;Expires=Sat, 10-Aug-2013 23:41:41 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:27:29 GMT
-< Date: Mon, 29 Jul 2013 14:27:29 GMT
+< Soup-Debug-Timestamp: 1375202835
+< Soup-Debug: SoupMessage 119 (0x7fffe40158e0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_QMIIFxw1-89I4fIiltp3toM_OQPaV-s2Op5YfNNKqskJ-elHTN3M2YrIdeRcj84Q94sPukowimpQydy5Tbb14G3YJ4S-NHM8cpqZJBifvXkyktCQOlLQS03AMrw1-u6qvRouqxtCMYd1apUUU9kXVWwoSYowH2iqScUeke9qp_ZEetMmdoQ61WwPB5gd4Of34y2qjfi6BC-i8q-4AfecimYdMpxx-Z7ncnkPEftWV84VyvVUhWfLM8oWcP3zT943b_FOzjNl76pHK1Za70lHtw
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:47:15 GMT
+< Set-Cookie: S=calendar=WDyL_96_JmfwHLNGQg_bqw;Expires=Sun, 11-Aug-2013 04:02:02 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:47:15 GMT
+< Date: Tue, 30 Jul 2013 16:47:15 GMT
 < Content-Type: application/atom+xml; charset=UTF-8; type=entry
 < Cache-control: private, max-age=0, must-revalidate, no-transform
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 2.6
-< ETag: W/"AkcASH47eCp7JGA9WhFWEU0."
-< Location: 
https://www.google.com/calendar/feeds/default/owncalendars/full/j3pof8q060uvthc62v9falj6ik%40group.calendar.google.com
-< Content-Location: 
https://www.google.com/calendar/feeds/default/owncalendars/full/j3pof8q060uvthc62v9falj6ik%40group.calendar.google.com
+< ETag: W/"CE8HRH47eCp7JGA9WhFWEk0."
+< Location: 
https://www.google.com/calendar/feeds/default/owncalendars/full/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com
+< Content-Location: 
https://www.google.com/calendar/feeds/default/owncalendars/full/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
 < X-XSS-Protection: 1; mode=block
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='W/&quot;AkcASH47eCp7JGA9WhFWEU0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/j3pof8q060uvthc62v9falj6ik%40group.calendar.google.com</id><published>2013-07-29T14:27:29.621Z</published><updated>2013-07-29T14:27:29.000Z</updated><app:edited>2013-07-29T14:27:29.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title>Temp Test Calendar</title><content 
type='application/atom+xml;type=feed' 
src='https://www.google.com/calendar/feeds/j3pof8q060uvthc62v9falj6ik%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/j3pof8q060uvthc62v9falj6ik%40group.cale
 ndar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' 
type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/j3pof8q060uvthc62v9falj6ik%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/j3pof8q060uvthc62v9falj6ik%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/j3pof8q060uvthc62v9falj6ik%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/j3pof8q060uvthc62v9falj6ik%40group.calendar.google.com'/><author><name>Temp
 Test Calendar</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesClea
 ned value='0'/></entry>
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gCal='http://schemas.google.com/gCal/2005' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='W/&quot;CE8HRH47eCp7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#calendar'><id>http://www.google.com/calendar/feeds/default/calendars/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com</id><published>2013-07-30T16:47:15.997Z</published><updated>2013-07-30T16:47:15.000Z</updated><app:edited>2013-07-30T16:47:15.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/gCal/2005#calendarmeta'/><title>Temp Test Calendar</title><content 
type='application/atom+xml;type=feed' 
src='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full'/><link
 rel='alternate' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.cale
 ndar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' 
type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/private/full'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full'/><link
 rel='self' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com'/><link
 rel='edit' type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/default/owncalendars/full/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com'/><author><name>Temp
 Test Calendar</name></author><gCal:accesslevel value='owner'/><gCal:color value='#7A367A'/><gCal:hidden 
value='false'/><gCal:selected value='false'/><gCal:timezone value='UTC'/><gCal:timesClea
 ned value='0'/></entry>
   
diff --git a/gdata/tests/traces/calendar/setup-temp-calendar-acls 
b/gdata/tests/traces/calendar/setup-temp-calendar-acls
index 569e910..56c3b8c 100644
--- a/gdata/tests/traces/calendar/setup-temp-calendar-acls
+++ b/gdata/tests/traces/calendar/setup-temp-calendar-acls
@@ -1,8 +1,8 @@
-> POST /calendar/feeds/j3pof8q060uvthc62v9falj6ik%40group.calendar.google.com/acl/full HTTP/1.1
-> Soup-Debug-Timestamp: 1375108050
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 121 (0x7fffd804b0b0), SoupSocket 112 (0x8deae0)
+> POST /calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full HTTP/1.1
+> Soup-Debug-Timestamp: 1375202836
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 120 (0x7fffe40158e0), SoupSocket 110 (0x7fffe0040af0)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
@@ -11,14 +11,14 @@
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gAcl='http://schemas.google.com/acl/2007' xmlns:gd='http://schemas.google.com/g/2005'><title 
type='text'>http://schemas.google.com/gCal/2005#editor</title><category 
term='http://schemas.google.com/acl/2007#accessRule' 
scheme='http://schemas.google.com/g/2005#kind'/><gAcl:role 
value='http://schemas.google.com/gCal/2005#editor'/><gAcl:scope type='user' value='darcy gmail 
com'/></entry>
   
 < HTTP/1.1 302 Moved Temporarily
-< Soup-Debug-Timestamp: 1375108050
-< Soup-Debug: SoupMessage 121 (0x7fffd804b0b0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXThTgckY3-hSb61OvnzXxSJ7d2jzDTq4SYJOcXEK19cfN8WmIspK2CGATjYnx3q1Fz9ZgntzaOCi00pQJhkctNT
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:27:31 GMT
-< Set-Cookie: S=calendar=NlqQZiXRe-9clPKh5yrqjA;Expires=Mon, 12-Aug-2013 14:25:38 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:27:30 GMT
-< Date: Mon, 29 Jul 2013 14:27:30 GMT
-< Location: 
https://www.google.com/calendar/feeds/j3pof8q060uvthc62v9falj6ik%40group.calendar.google.com/acl/full?gsessionid=NlqQZiXRe-9clPKh5yrqjA
+< Soup-Debug-Timestamp: 1375202836
+< Soup-Debug: SoupMessage 120 (0x7fffe40158e0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_lzf1dm9Ue8N3SJp2J6o695WrE5nMbNLIXgO1GwYSOH0dinvA7V6dAhAIAEim2gLMsmbC2ddMnDUzaVKIGr3_JWCh97kMTIAR1M2IeSsu02b7EZA-X4HjICLw-x5pMnXhR8i08nLbVHSLT_No8fvB518lPWszfELKmW9TYG0-BAxXFzn9IKi_SmDnEv70WeTVk9AKBXEZK8GgbVvG2jwg9IxQwwSgxxH2Am-wKlw1Xh28Ocyi9bXsxw2zvbHLluu_emFBzQJ8Ds6aIurEQIryfg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:47:17 GMT
+< Set-Cookie: S=calendar=ZeDIKMUxNaJdSQptI64v2w;Expires=Wed, 07-Aug-2013 20:50:45 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:47:16 GMT
+< Date: Tue, 30 Jul 2013 16:47:16 GMT
+< Location: 
https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full?gsessionid=ZeDIKMUxNaJdSQptI64v2w
 < Content-Type: text/html; charset=UTF-8
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -33,15 +33,15 @@
 < </HEAD>
 < <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
 < <H1>Moved Temporarily</H1>
-< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/j3pof8q060uvthc62v9falj6ik%40group.calendar.google.com/acl/full?gsessionid=NlqQZiXRe-9clPKh5yrqjA";>here</A>.
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full?gsessionid=ZeDIKMUxNaJdSQptI64v2w";>here</A>.
 < </BODY>
 < </HTML>
   
-> POST 
/calendar/feeds/j3pof8q060uvthc62v9falj6ik%40group.calendar.google.com/acl/full?gsessionid=NlqQZiXRe-9clPKh5yrqjA
 HTTP/1.1
-> Soup-Debug-Timestamp: 1375108050
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 121 (0x7fffd804b0b0), SoupSocket 113 (0x8dede0), 
restarted
+> POST 
/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full?gsessionid=ZeDIKMUxNaJdSQptI64v2w
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375202836
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 120 (0x7fffe40158e0), SoupSocket 111 (0x7fffe0040970), 
restarted
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
@@ -51,25 +51,25 @@
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gAcl='http://schemas.google.com/acl/2007' xmlns:gd='http://schemas.google.com/g/2005'><title 
type='text'>http://schemas.google.com/gCal/2005#editor</title><category 
term='http://schemas.google.com/acl/2007#accessRule' 
scheme='http://schemas.google.com/g/2005#kind'/><gAcl:role 
value='http://schemas.google.com/gCal/2005#editor'/><gAcl:scope type='user' value='darcy gmail 
com'/></entry>
   
 < HTTP/1.1 201 Created
-< Soup-Debug-Timestamp: 1375108051
-< Soup-Debug: SoupMessage 121 (0x7fffd804b0b0)
-< Update-Client-Auth: 
DQAAAM4AAAAlDUC-WQgltDHdndYDddr-geSwqup450dH73A2Cl-8pGWAz5Jr6k15x7ETDyyX-gKH9mQLgT8NgpcJeZVMLjIXm1EbZt7eOlczQvHw9uMmD40XUvTc3VuOvT58GOMc7bcR5a-xUVuHMkbEU3g2rCp7Fw3q3lP_QFTWqE59LQAuIJ1V1Mzrj5l73ZloZnprjZsoS6V737LE84MKS3EbUJwdhONiAUU1jBHCL_yAoimGEtnElJMGcEXxs1Pl3YW3Ceub90HJ43ybw11aZdO1mFDL
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:27:31 GMT
-< Set-Cookie: S=calendar=G11HJwfjpf09Octp1ttbQw;Expires=Mon, 12-Aug-2013 07:33:16 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:27:30 GMT
-< Date: Mon, 29 Jul 2013 14:27:30 GMT
+< Soup-Debug-Timestamp: 1375202837
+< Soup-Debug: SoupMessage 120 (0x7fffe40158e0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_q4NwI2V8UT-SSEMjiblkY8jTSCIGQJCo_ZFavemirrG0G2jzg3jjEVC3CQauPSZoNTFtDCw6Eu1-1S6nOyDK2J9zwLcpKLPHGuWk8fzL5JjKgN0Z0HbdhVtGaldMU2XCoc4_I0dsAZNFNzMl12pQ2IhlOpKYk_syrjXgbEIFWB07e6wSu6Mp1XswtWQL95nokCfWJkTHf4YGsR2zpy2736UplfLIVHDJLz7fiJzKG-5nUmoz2a5jdwopbkQ6flW44tTL7okPm_2Y6nqlPi74Mg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:47:18 GMT
+< Set-Cookie: S=calendar=xDRPVc8CWeuqjiBdPj6K4A;Expires=Mon, 12-Aug-2013 17:58:51 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:47:17 GMT
+< Date: Tue, 30 Jul 2013 16:47:17 GMT
 < Content-Type: application/atom+xml; charset=UTF-8; type=entry
 < Cache-control: private, max-age=0, must-revalidate, no-transform
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 2.6
-< ETag: W/"AkcBQXY7eCp7JGA9WhFWEU0."
-< Location: 
https://www.google.com/calendar/feeds/j3pof8q060uvthc62v9falj6ik%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com
-< Content-Location: 
https://www.google.com/calendar/feeds/j3pof8q060uvthc62v9falj6ik%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com
+< ETag: W/"CE8HRn46eip7JGA9WhFWEk0."
+< Location: 
https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com
+< Content-Location: 
https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
 < X-XSS-Protection: 1; mode=block
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:gAcl='http://schemas.google.com/acl/2007' gd:etag='W/&quot;AkcBQXY7eCp7JGA9WhFWEU0.&quot;' 
gd:kind='calendar#acl'><id>http://www.google.com/calendar/feeds/j3pof8q060uvthc62v9falj6ik%40group.calendar.google.com/acl/user%3Adarcy%40gmail.com</id><published>2013-07-29T14:27:30.800Z</published><updated>2013-07-29T14:27:30.000Z</updated><app:edited>2013-07-29T14:27:30.800Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/acl/2007#accessRule'/><title>editor</title><content/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/j3pof8q060uvthc62v9falj6ik%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com'/><link
 rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/j3pof8q060uvthc62v9falj6
 ik%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com'/><author><name>Temp Test 
Calendar</name><email>j3pof8q060uvthc62v9falj6ik group calendar google com</email></author><gAcl:role 
value='http://schemas.google.com/gCal/2005#editor'/><gAcl:scope type='user' value='darcy gmail com'/></entry>
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:gAcl='http://schemas.google.com/acl/2007' gd:etag='W/&quot;CE8HRn46eip7JGA9WhFWEk0.&quot;' 
gd:kind='calendar#acl'><id>http://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/user%3Adarcy%40gmail.com</id><published>2013-07-30T16:47:17.012Z</published><updated>2013-07-30T16:47:17.000Z</updated><app:edited>2013-07-30T16:47:17.012Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/acl/2007#accessRule'/><title>editor</title><content/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com'/><link
 rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1
 m0%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com'/><author><name>Temp Test 
Calendar</name><email>i4jqlr6fcg9obf3qucemmcm1m0 group calendar google com</email></author><gAcl:role 
value='http://schemas.google.com/gCal/2005#editor'/><gAcl:scope type='user' value='darcy gmail com'/></entry>
   
diff --git a/gdata/tests/traces/calendar/teardown-batch-async 
b/gdata/tests/traces/calendar/teardown-batch-async
index 29126c5..0fd9f3d 100644
--- a/gdata/tests/traces/calendar/teardown-batch-async
+++ b/gdata/tests/traces/calendar/teardown-batch-async
@@ -1,22 +1,22 @@
-> DELETE /calendar/feeds/default/private/full/4vj237jguoan48oeum6m3lhqss HTTP/1.1
-> Soup-Debug-Timestamp: 1375108055
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 128 (0x7fffe4014c70), SoupSocket 119 (0x8dede0)
+> DELETE /calendar/feeds/default/private/full/62ga7dp4t4g0fld702rs147ia8 HTTP/1.1
+> Soup-Debug-Timestamp: 1375202843
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 127 (0x7fffe003f0a0), SoupSocket 117 (0x7fffe00408b0)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
-> If-Match: "EEoDRgZEeyp7JGA6WhNS"
+> If-Match: "EEUCQQRFfSp7JGA6WhNS"
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 302 Moved Temporarily
-< Soup-Debug-Timestamp: 1375108055
-< Soup-Debug: SoupMessage 128 (0x7fffe4014c70)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXThTgckY3-hSb61OvnzXxSJ7d2jzDTq4SYJOcXEK19cfN8WmIspK2CGATjYnx3q1Fz9ZgntzaOCi00pQJhkctNT
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:27:36 GMT
-< Set-Cookie: S=calendar=1t2cXGNeHZwuwcWU-4gUhg;Expires=Sun, 11-Aug-2013 12:10:26 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:27:35 GMT
-< Date: Mon, 29 Jul 2013 14:27:35 GMT
-< Location: 
https://www.google.com/calendar/feeds/default/private/full/4vj237jguoan48oeum6m3lhqss?gsessionid=1t2cXGNeHZwuwcWU-4gUhg
+< Soup-Debug-Timestamp: 1375202843
+< Soup-Debug: SoupMessage 127 (0x7fffe003f0a0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_lzf1dm9Ue8N3SJp2J6o695WrE5nMbNLIXgO1GwYSOH0dinvA7V6dAhAIAEim2gLMsmbC2ddMnDUzaVKIGr3_JWCh97kMTIAR1M2IeSsu02b7EZA-X4HjICLw-x5pMnXhR8i08nLbVHSLT_No8fvB518lPWszfELKmW9TYG0-BAxXFzn9IKi_SmDnEv70WeTVk9AKBXEZK8GgbVvG2jwg9IxQwwSgxxH2Am-wKlw1Xh28Ocyi9bXsxw2zvbHLluu_emFBzQJ8Ds6aIurEQIryfg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:47:24 GMT
+< Set-Cookie: S=calendar=56Ii33CoTYj5kf8KcE9T2w;Expires=Fri, 09-Aug-2013 18:41:13 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:47:23 GMT
+< Date: Tue, 30 Jul 2013 16:47:23 GMT
+< Location: 
https://www.google.com/calendar/feeds/default/private/full/62ga7dp4t4g0fld702rs147ia8?gsessionid=56Ii33CoTYj5kf8KcE9T2w
 < Content-Type: text/html; charset=UTF-8
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -31,28 +31,28 @@
 < </HEAD>
 < <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
 < <H1>Moved Temporarily</H1>
-< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/private/full/4vj237jguoan48oeum6m3lhqss?gsessionid=1t2cXGNeHZwuwcWU-4gUhg";>here</A>.
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/private/full/62ga7dp4t4g0fld702rs147ia8?gsessionid=56Ii33CoTYj5kf8KcE9T2w";>here</A>.
 < </BODY>
 < </HTML>
   
-> DELETE /calendar/feeds/default/private/full/4vj237jguoan48oeum6m3lhqss?gsessionid=1t2cXGNeHZwuwcWU-4gUhg 
HTTP/1.1
-> Soup-Debug-Timestamp: 1375108055
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 128 (0x7fffe4014c70), SoupSocket 119 (0x8dede0), 
restarted
+> DELETE /calendar/feeds/default/private/full/62ga7dp4t4g0fld702rs147ia8?gsessionid=56Ii33CoTYj5kf8KcE9T2w 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375202843
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 127 (0x7fffe003f0a0), SoupSocket 117 (0x7fffe00408b0), 
restarted
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
-> If-Match: "EEoDRgZEeyp7JGA6WhNS"
+> If-Match: "EEUCQQRFfSp7JGA6WhNS"
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375108056
-< Soup-Debug: SoupMessage 128 (0x7fffe4014c70)
-< Update-Client-Auth: 
DQAAAM4AAAAlDUC-WQgltDHdndYDddr-geSwqup450dH73A2Cl-8pGWAz5Jr6k15x7ETDyyX-gKH9mQLgT8NgpcJeZVMLjIXm1EbZt7eOlczQvHw9uMmD40XUvTc3VuOvT58GOMc7bcR5a-xUVuHMkbEU3g2rCp7Fw3q3lP_QFTWqE59LQAuIJ1V1Mzrj5l73ZloZnprjZsoS6V737LE84MKS3EbUJwdhONiAUU1jBHCL_yAoimGEtnElJMGcEXxs1Pl3YW3Ceub90HJ43ybw11aZdO1mFDL
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:27:36 GMT
-< Set-Cookie: S=calendar=URo0zerkQKtBuLTLKEiZvQ;Expires=Fri, 09-Aug-2013 08:06:19 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:27:36 GMT
-< Date: Mon, 29 Jul 2013 14:27:36 GMT
+< Soup-Debug-Timestamp: 1375202843
+< Soup-Debug: SoupMessage 127 (0x7fffe003f0a0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_x9DCxs6Yn1ShR7x5wx1k6e37TbqaZyvZnHbBDD5MjDqIwu2doXjOCD97mfXE8YE20iZQLD52PYbtpDGgujgmHXXGW1wlvqMs94qpgxdE8eYecbfbso9UjfaO5uqfvsRXIhKhe7zV2m0bacHn0JcyH7mkYYXHxHv7XZ_tjZftH-i5SVfC5OZaKOQXxynRfd_Yz5PzuJngGrHUxv5bViZFI3gQCqJikX_t9TXaydAiNvFoCzIgXcLmw11rsBONKvKvzka6NqtM8xqoAdhWs62jAQ
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:47:24 GMT
+< Set-Cookie: S=calendar=v2wGTyR49ijSvxHVM1G9QQ;Expires=Sat, 10-Aug-2013 13:43:59 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:47:23 GMT
+< Date: Tue, 30 Jul 2013 16:47:23 GMT
 < GData-Version: 2.6
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
diff --git a/gdata/tests/traces/calendar/teardown-insert-event 
b/gdata/tests/traces/calendar/teardown-insert-event
index f78122a..742292b 100644
--- a/gdata/tests/traces/calendar/teardown-insert-event
+++ b/gdata/tests/traces/calendar/teardown-insert-event
@@ -1,22 +1,22 @@
-> DELETE /calendar/feeds/default/private/full/0qrt69rd60alvb0ti70ji14ktk HTTP/1.1
-> Soup-Debug-Timestamp: 1375108023
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 104 (0x7fffd804b1a0), SoupSocket 97 (0x8dede0)
+> DELETE /calendar/feeds/default/private/full/oqb4030l7frkp05mse8u33pqgk HTTP/1.1
+> Soup-Debug-Timestamp: 1375202809
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 103 (0x7fffe003f640), SoupSocket 95 (0x7fffe0040a30)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
-> If-Match: "EEoDRgZDfCp7JGA6WhNS"
+> If-Match: "EEUCQQRBdyp7JGA6WhNS"
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 302 Moved Temporarily
-< Soup-Debug-Timestamp: 1375108023
-< Soup-Debug: SoupMessage 104 (0x7fffd804b1a0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXThTgckY3-hSb61OvnzXxSJ7d2jzDTq4SYJOcXEK19cfN8WmIspK2CGATjYnx3q1Fz9ZgntzaOCi00pQJhkctNT
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:27:04 GMT
-< Set-Cookie: S=calendar=P2FvqNggn2DMywk7he79_w;Expires=Fri, 09-Aug-2013 10:31:15 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:27:03 GMT
-< Date: Mon, 29 Jul 2013 14:27:03 GMT
-< Location: 
https://www.google.com/calendar/feeds/default/private/full/0qrt69rd60alvb0ti70ji14ktk?gsessionid=P2FvqNggn2DMywk7he79_w
+< Soup-Debug-Timestamp: 1375202809
+< Soup-Debug: SoupMessage 103 (0x7fffe003f640)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_lzf1dm9Ue8N3SJp2J6o695WrE5nMbNLIXgO1GwYSOH0dinvA7V6dAhAIAEim2gLMsmbC2ddMnDUzaVKIGr3_JWCh97kMTIAR1M2IeSsu02b7EZA-X4HjICLw-x5pMnXhR8i08nLbVHSLT_No8fvB518lPWszfELKmW9TYG0-BAxXFzn9IKi_SmDnEv70WeTVk9AKBXEZK8GgbVvG2jwg9IxQwwSgxxH2Am-wKlw1Xh28Ocyi9bXsxw2zvbHLluu_emFBzQJ8Ds6aIurEQIryfg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:50 GMT
+< Set-Cookie: S=calendar=Uq4hBKxAoNj4T-2qzarcjw;Expires=Tue, 13-Aug-2013 08:41:14 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:49 GMT
+< Date: Tue, 30 Jul 2013 16:46:49 GMT
+< Location: 
https://www.google.com/calendar/feeds/default/private/full/oqb4030l7frkp05mse8u33pqgk?gsessionid=Uq4hBKxAoNj4T-2qzarcjw
 < Content-Type: text/html; charset=UTF-8
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -31,28 +31,28 @@
 < </HEAD>
 < <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
 < <H1>Moved Temporarily</H1>
-< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/private/full/0qrt69rd60alvb0ti70ji14ktk?gsessionid=P2FvqNggn2DMywk7he79_w";>here</A>.
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/private/full/oqb4030l7frkp05mse8u33pqgk?gsessionid=Uq4hBKxAoNj4T-2qzarcjw";>here</A>.
 < </BODY>
 < </HTML>
   
-> DELETE /calendar/feeds/default/private/full/0qrt69rd60alvb0ti70ji14ktk?gsessionid=P2FvqNggn2DMywk7he79_w 
HTTP/1.1
-> Soup-Debug-Timestamp: 1375108023
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 104 (0x7fffd804b1a0), SoupSocket 97 (0x8dede0), restarted
+> DELETE /calendar/feeds/default/private/full/oqb4030l7frkp05mse8u33pqgk?gsessionid=Uq4hBKxAoNj4T-2qzarcjw 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375202809
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 103 (0x7fffe003f640), SoupSocket 95 (0x7fffe0040a30), 
restarted
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
-> If-Match: "EEoDRgZDfCp7JGA6WhNS"
+> If-Match: "EEUCQQRBdyp7JGA6WhNS"
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375108023
-< Soup-Debug: SoupMessage 104 (0x7fffd804b1a0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-ODYysS96Taaw1NaIYtJAAHEXCZ_GMPV8cwrWmi_-pskMkzDa8yS5h3Lx6BUX8K1OQLMPBV7rpZGHtUa1jYE1jA_4X05rZ800eKz2vNaGdZYoiYJwGnkqCe72OBS-ReHTEtvQtr7VG9ZYkAslaj0Tffvz8pB9ItwBfiM3-4oLSkIEFXx8_eyUlfeNChSfSAvSSqTyG58No5P6HZMRKSJtwsyLwtxAl4BhBMfGX_Uh_z0XCyGMW8beXiNXZ4h5XkwP
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:27:04 GMT
-< Set-Cookie: S=calendar=wFPZRfM-e5C77dPtLdpNTw;Expires=Thu, 08-Aug-2013 05:21:32 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:27:03 GMT
-< Date: Mon, 29 Jul 2013 14:27:03 GMT
+< Soup-Debug-Timestamp: 1375202809
+< Soup-Debug: SoupMessage 103 (0x7fffe003f640)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_q4NwI2V8UT-SSEMjiblkY8jTSCIGQJCo_ZFavemirrG0G2jzg3jjEVC3CQauPSZoNTFtDCw6Eu1-1S6nOyDK2J9zwLcpKLPHGuWk8fzL5JjKgN0Z0HbdhVtGaldMU2XCoc4_I0dsAZNFNzMl12pQ2IhlOpKYk_syrjXgbEIFWB07e6wSu6Mp1XswtWQL95nokCfWJkTHf4YGsR2zpy2736UplfLIVHDJLz7fiJzKG-5nUmoz2a5jdwopbkQ6flW44tTL7okPm_2Y6nqlPi74Mg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:50 GMT
+< Set-Cookie: S=calendar=prn2NDnInSXbDnfH6nCI5A;Expires=Fri, 09-Aug-2013 21:40:52 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:49 GMT
+< Date: Tue, 30 Jul 2013 16:46:49 GMT
 < GData-Version: 2.6
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
diff --git a/gdata/tests/traces/calendar/teardown-query-calendars 
b/gdata/tests/traces/calendar/teardown-query-calendars
index 23e2c34..e7ff526 100644
--- a/gdata/tests/traces/calendar/teardown-query-calendars
+++ b/gdata/tests/traces/calendar/teardown-query-calendars
@@ -1,21 +1,21 @@
-> DELETE /calendar/feeds/default/owncalendars/full/rak7fnvu9m3p8tq87a2bqjt37o%40group.calendar.google.com 
HTTP/1.1
-> Soup-Debug-Timestamp: 1375107975
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 60 (0x7fffd8022460), SoupSocket 55 (0x7fffe003bdf0)
+> DELETE /calendar/feeds/default/owncalendars/full/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375202760
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 60 (0x8c2c80), SoupSocket 55 (0x7fffe0040970)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 302 Moved Temporarily
-< Soup-Debug-Timestamp: 1375107975
-< Soup-Debug: SoupMessage 60 (0x7fffd8022460)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXThTgckY3-hSb61OvnzXxSJ7d2jzDTq4SYJOcXEK19cfN8WmIspK2CGATjYnx3q1Fz9ZgntzaOCi00pQJhkctNT
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:26:16 GMT
-< Set-Cookie: S=calendar=93ar2XktFwuCO6_iQUb5Ug;Expires=Sat, 10-Aug-2013 16:03:33 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:26:15 GMT
-< Date: Mon, 29 Jul 2013 14:26:15 GMT
-< Location: 
https://www.google.com/calendar/feeds/default/owncalendars/full/rak7fnvu9m3p8tq87a2bqjt37o%40group.calendar.google.com?gsessionid=93ar2XktFwuCO6_iQUb5Ug
+< Soup-Debug-Timestamp: 1375202760
+< Soup-Debug: SoupMessage 60 (0x8c2c80)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_t4EurujSJEVz4Oz9mAIOytzvk2x5HxgdMhjgmIZQyEhJEVxBkGa9tYZB61Yy8JtAPaktxoTLVkhp854Pjz3Lu2nGX3VFkbf3hmep1Z77H5UUPxIsLyYKJ-XIqF26WY8xy6o6N8-w_azdQg_R57FuB6O-GUgGUKDr2aKE9iTWpO0XsB7-zCP0UEx7yuXEnbLb7XVAw5KqOV1FqKEA6grSKkAqUaQftC9ppmNnCTUl0XskgKlvQxIBg-580Pa1-4yjY5tacPmBQVR42znpOSUkcg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:01 GMT
+< Set-Cookie: S=calendar=vEBrssU4Q3VWiFDo8n30tw;Expires=Tue, 06-Aug-2013 21:09:32 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:00 GMT
+< Date: Tue, 30 Jul 2013 16:46:00 GMT
+< Location: 
https://www.google.com/calendar/feeds/default/owncalendars/full/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com?gsessionid=vEBrssU4Q3VWiFDo8n30tw
 < Content-Type: text/html; charset=UTF-8
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -30,27 +30,27 @@
 < </HEAD>
 < <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
 < <H1>Moved Temporarily</H1>
-< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/owncalendars/full/rak7fnvu9m3p8tq87a2bqjt37o%40group.calendar.google.com?gsessionid=93ar2XktFwuCO6_iQUb5Ug";>here</A>.
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/owncalendars/full/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com?gsessionid=vEBrssU4Q3VWiFDo8n30tw";>here</A>.
 < </BODY>
 < </HTML>
   
-> DELETE 
/calendar/feeds/default/owncalendars/full/rak7fnvu9m3p8tq87a2bqjt37o%40group.calendar.google.com?gsessionid=93ar2XktFwuCO6_iQUb5Ug
 HTTP/1.1
-> Soup-Debug-Timestamp: 1375107975
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 60 (0x7fffd8022460), SoupSocket 55 (0x7fffe003bdf0), 
restarted
+> DELETE 
/calendar/feeds/default/owncalendars/full/he77hbv0jl50q88btpe8ihrb18%40group.calendar.google.com?gsessionid=vEBrssU4Q3VWiFDo8n30tw
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375202760
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 60 (0x8c2c80), SoupSocket 55 (0x7fffe0040970), restarted
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375107977
-< Soup-Debug: SoupMessage 60 (0x7fffd8022460)
-< Update-Client-Auth: 
DQAAAM4AAAAlDUC-WQgltDHdndYDddr-geSwqup450dH73A2Cl-8pGWAz5Jr6k15x7ETDyyX-gKH9mQLgT8NgpcJeZVMLjIXm1EbZt7eOlczQvHw9uMmD40XUvTc3VuOvT58GOMc7bcR5a-xUVuHMkbEU3g2rCp7Fw3q3lP_QFTWqE59LQAuIJ1V1Mzrj5l73ZloZnprjZsoS6V737LE84MKS3EbUJwdhONiAUU1jBHCL_yAoimGEtnElJMGcEXxs1Pl3YW3Ceub90HJ43ybw11aZdO1mFDL
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:26:16 GMT
-< Set-Cookie: S=calendar=ZQbUucJyMzrGn8KqSBxvDQ;Expires=Mon, 05-Aug-2013 22:39:17 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:26:17 GMT
-< Date: Mon, 29 Jul 2013 14:26:17 GMT
+< Soup-Debug-Timestamp: 1375202761
+< Soup-Debug: SoupMessage 60 (0x8c2c80)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_q4NwI2V8UT-SSEMjiblkY8jTSCIGQJCo_ZFavemirrG0G2jzg3jjEVC3CQauPSZoNTFtDCw6Eu1-1S6nOyDK2J9zwLcpKLPHGuWk8fzL5JjKgN0Z0HbdhVtGaldMU2XCoc4_I0dsAZNFNzMl12pQ2IhlOpKYk_syrjXgbEIFWB07e6wSu6Mp1XswtWQL95nokCfWJkTHf4YGsR2zpy2736UplfLIVHDJLz7fiJzKG-5nUmoz2a5jdwopbkQ6flW44tTL7okPm_2Y6nqlPi74Mg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:01 GMT
+< Set-Cookie: S=calendar=5xW--tHlrIPgCU560jfnDg;Expires=Wed, 07-Aug-2013 23:34:56 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:01 GMT
+< Date: Tue, 30 Jul 2013 16:46:01 GMT
 < GData-Version: 2.6
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -61,24 +61,24 @@
 < Content-Type: text/html; charset=UTF-8
 < 
   
-> DELETE /calendar/feeds/default/owncalendars/full/shq8d62hnnkefppgvodj6lqdo4%40group.calendar.google.com 
HTTP/1.1
-> Soup-Debug-Timestamp: 1375107977
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 61 (0x7fffd804b0b0), SoupSocket 55 (0x7fffe003bdf0)
+> DELETE /calendar/feeds/default/owncalendars/full/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375202761
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 61 (0x7fffe40158e0), SoupSocket 55 (0x7fffe0040970)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 302 Moved Temporarily
-< Soup-Debug-Timestamp: 1375107977
-< Soup-Debug: SoupMessage 61 (0x7fffd804b0b0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXThTgckY3-hSb61OvnzXxSJ7d2jzDTq4SYJOcXEK19cfN8WmIspK2CGATjYnx3q1Fz9ZgntzaOCi00pQJhkctNT
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:26:18 GMT
-< Set-Cookie: S=calendar=E8IphVT0zC5yLpCySMW10A;Expires=Wed, 07-Aug-2013 05:25:14 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:26:17 GMT
-< Date: Mon, 29 Jul 2013 14:26:17 GMT
-< Location: 
https://www.google.com/calendar/feeds/default/owncalendars/full/shq8d62hnnkefppgvodj6lqdo4%40group.calendar.google.com?gsessionid=E8IphVT0zC5yLpCySMW10A
+< Soup-Debug-Timestamp: 1375202761
+< Soup-Debug: SoupMessage 61 (0x7fffe40158e0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_t4EurujSJEVz4Oz9mAIOytzvk2x5HxgdMhjgmIZQyEhJEVxBkGa9tYZB61Yy8JtAPaktxoTLVkhp854Pjz3Lu2nGX3VFkbf3hmep1Z77H5UUPxIsLyYKJ-XIqF26WY8xy6o6N8-w_azdQg_R57FuB6O-GUgGUKDr2aKE9iTWpO0XsB7-zCP0UEx7yuXEnbLb7XVAw5KqOV1FqKEA6grSKkAqUaQftC9ppmNnCTUl0XskgKlvQxIBg-580Pa1-4yjY5tacPmBQVR42znpOSUkcg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:02 GMT
+< Set-Cookie: S=calendar=iGJo_26flFtneGahmM7t-A;Expires=Fri, 09-Aug-2013 03:02:31 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:01 GMT
+< Date: Tue, 30 Jul 2013 16:46:01 GMT
+< Location: 
https://www.google.com/calendar/feeds/default/owncalendars/full/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com?gsessionid=iGJo_26flFtneGahmM7t-A
 < Content-Type: text/html; charset=UTF-8
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -93,27 +93,27 @@
 < </HEAD>
 < <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
 < <H1>Moved Temporarily</H1>
-< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/owncalendars/full/shq8d62hnnkefppgvodj6lqdo4%40group.calendar.google.com?gsessionid=E8IphVT0zC5yLpCySMW10A";>here</A>.
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/owncalendars/full/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com?gsessionid=iGJo_26flFtneGahmM7t-A";>here</A>.
 < </BODY>
 < </HTML>
   
-> DELETE 
/calendar/feeds/default/owncalendars/full/shq8d62hnnkefppgvodj6lqdo4%40group.calendar.google.com?gsessionid=E8IphVT0zC5yLpCySMW10A
 HTTP/1.1
-> Soup-Debug-Timestamp: 1375107977
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 61 (0x7fffd804b0b0), SoupSocket 55 (0x7fffe003bdf0), 
restarted
+> DELETE 
/calendar/feeds/default/owncalendars/full/iv9qp0fql6sbf3hl3dk45bogb8%40group.calendar.google.com?gsessionid=iGJo_26flFtneGahmM7t-A
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375202761
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 61 (0x7fffe40158e0), SoupSocket 55 (0x7fffe0040970), 
restarted
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375107979
-< Soup-Debug: SoupMessage 61 (0x7fffd804b0b0)
-< Update-Client-Auth: 
DQAAANAAAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXQ13oqRh_2p87WcrWeAQnJZpM9mi1et5TBGe84GimS7yuU_utQqgxo_ARltmYbhyQQy5oR9U-3hGYR8T6bNTF75
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:26:18 GMT
-< Set-Cookie: S=calendar=eBiP10mZlfU6H72q_Mom9g;Expires=Sat, 10-Aug-2013 08:39:20 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:26:19 GMT
-< Date: Mon, 29 Jul 2013 14:26:19 GMT
+< Soup-Debug-Timestamp: 1375202763
+< Soup-Debug: SoupMessage 61 (0x7fffe40158e0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_x9DCxs6Yn1ShR7x5wx1k6e37TbqaZyvZnHbBDD5MjDqIwu2doXjOCD97mfXE8YE20iZQLD52PYbtpDGgujgmHXXGW1wlvqMs94qpgxdE8eYecbfbso9UjfaO5uqfvsRXIhKhe7zV2m0bacHn0JcyH7mkYYXHxHv7XZ_tjZftH-i5SVfC5OZaKOQXxynRfd_Yz5PzuJngGrHUxv5bViZFI3gQCqJikX_t9TXaydAiNvFoCzIgXcLmw11rsBONKvKvzka6NqtM8xqoAdhWs62jAQ
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:02 GMT
+< Set-Cookie: S=calendar=8JOXvPw5WgiCAwn4syggeA;Expires=Wed, 07-Aug-2013 09:11:57 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:03 GMT
+< Date: Tue, 30 Jul 2013 16:46:03 GMT
 < GData-Version: 2.6
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
diff --git a/gdata/tests/traces/calendar/teardown-query-events 
b/gdata/tests/traces/calendar/teardown-query-events
index e2ea208..93f353d 100644
--- a/gdata/tests/traces/calendar/teardown-query-events
+++ b/gdata/tests/traces/calendar/teardown-query-events
@@ -1,22 +1,22 @@
-> DELETE /calendar/feeds/default/private/full/nc5gdt040m67ol63hf0h71v79s HTTP/1.1
-> Soup-Debug-Timestamp: 1375108003
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 88 (0x7fffe003a9d0), SoupSocket 82 (0x8dea20)
+> DELETE /calendar/feeds/default/private/full/tc791pjf1ndnicqvb2jgorvdj8 HTTP/1.1
+> Soup-Debug-Timestamp: 1375202791
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 88 (0x7fffe003f550), SoupSocket 82 (0x775490)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
-> If-Match: "EEoDRgVIdyp7JGA6WhNS"
+> If-Match: "EEUCQg1JeSp7JGA6WhNS"
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 302 Moved Temporarily
-< Soup-Debug-Timestamp: 1375108004
-< Soup-Debug: SoupMessage 88 (0x7fffe003a9d0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXThTgckY3-hSb61OvnzXxSJ7d2jzDTq4SYJOcXEK19cfN8WmIspK2CGATjYnx3q1Fz9ZgntzaOCi00pQJhkctNT
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:26:44 GMT
-< Set-Cookie: S=calendar=9PSjBL1PzvH9owYHeo38xw;Expires=Thu, 08-Aug-2013 07:10:46 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:26:43 GMT
-< Date: Mon, 29 Jul 2013 14:26:43 GMT
-< Location: 
https://www.google.com/calendar/feeds/default/private/full/nc5gdt040m67ol63hf0h71v79s?gsessionid=9PSjBL1PzvH9owYHeo38xw
+< Soup-Debug-Timestamp: 1375202791
+< Soup-Debug: SoupMessage 88 (0x7fffe003f550)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_lzf1dm9Ue8N3SJp2J6o695WrE5nMbNLIXgO1GwYSOH0dinvA7V6dAhAIAEim2gLMsmbC2ddMnDUzaVKIGr3_JWCh97kMTIAR1M2IeSsu02b7EZA-X4HjICLw-x5pMnXhR8i08nLbVHSLT_No8fvB518lPWszfELKmW9TYG0-BAxXFzn9IKi_SmDnEv70WeTVk9AKBXEZK8GgbVvG2jwg9IxQwwSgxxH2Am-wKlw1Xh28Ocyi9bXsxw2zvbHLluu_emFBzQJ8Ds6aIurEQIryfg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:32 GMT
+< Set-Cookie: S=calendar=aAwoDFpNOS9GdVMKHXee_A;Expires=Sun, 11-Aug-2013 17:31:00 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:31 GMT
+< Date: Tue, 30 Jul 2013 16:46:31 GMT
+< Location: 
https://www.google.com/calendar/feeds/default/private/full/tc791pjf1ndnicqvb2jgorvdj8?gsessionid=aAwoDFpNOS9GdVMKHXee_A
 < Content-Type: text/html; charset=UTF-8
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -31,28 +31,28 @@
 < </HEAD>
 < <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
 < <H1>Moved Temporarily</H1>
-< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/private/full/nc5gdt040m67ol63hf0h71v79s?gsessionid=9PSjBL1PzvH9owYHeo38xw";>here</A>.
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/private/full/tc791pjf1ndnicqvb2jgorvdj8?gsessionid=aAwoDFpNOS9GdVMKHXee_A";>here</A>.
 < </BODY>
 < </HTML>
   
-> DELETE /calendar/feeds/default/private/full/nc5gdt040m67ol63hf0h71v79s?gsessionid=9PSjBL1PzvH9owYHeo38xw 
HTTP/1.1
-> Soup-Debug-Timestamp: 1375108004
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 88 (0x7fffe003a9d0), SoupSocket 82 (0x8dea20), restarted
+> DELETE /calendar/feeds/default/private/full/tc791pjf1ndnicqvb2jgorvdj8?gsessionid=aAwoDFpNOS9GdVMKHXee_A 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375202791
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 88 (0x7fffe003f550), SoupSocket 82 (0x775490), restarted
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
-> If-Match: "EEoDRgVIdyp7JGA6WhNS"
+> If-Match: "EEUCQg1JeSp7JGA6WhNS"
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375108004
-< Soup-Debug: SoupMessage 88 (0x7fffe003a9d0)
-< Update-Client-Auth: 
DQAAANAAAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXQ13oqRh_2p87WcrWeAQnJZpM9mi1et5TBGe84GimS7yuU_utQqgxo_ARltmYbhyQQy5oR9U-3hGYR8T6bNTF75
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:26:45 GMT
-< Set-Cookie: S=calendar=nhNSNKTrVRcNM9gw_a2f0w;Expires=Sun, 11-Aug-2013 15:51:20 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:26:44 GMT
-< Date: Mon, 29 Jul 2013 14:26:44 GMT
+< Soup-Debug-Timestamp: 1375202791
+< Soup-Debug: SoupMessage 88 (0x7fffe003f550)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_q4NwI2V8UT-SSEMjiblkY8jTSCIGQJCo_ZFavemirrG0G2jzg3jjEVC3CQauPSZoNTFtDCw6Eu1-1S6nOyDK2J9zwLcpKLPHGuWk8fzL5JjKgN0Z0HbdhVtGaldMU2XCoc4_I0dsAZNFNzMl12pQ2IhlOpKYk_syrjXgbEIFWB07e6wSu6Mp1XswtWQL95nokCfWJkTHf4YGsR2zpy2736UplfLIVHDJLz7fiJzKG-5nUmoz2a5jdwopbkQ6flW44tTL7okPm_2Y6nqlPi74Mg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:32 GMT
+< Set-Cookie: S=calendar=G2GNRSBusQjhDmPzsRBTew;Expires=Thu, 08-Aug-2013 21:38:35 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:31 GMT
+< Date: Tue, 30 Jul 2013 16:46:31 GMT
 < GData-Version: 2.6
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -63,25 +63,25 @@
 < Content-Type: text/html; charset=UTF-8
 < 
   
-> DELETE /calendar/feeds/default/private/full/fp1j04magk0odf8k2tc074fce4 HTTP/1.1
-> Soup-Debug-Timestamp: 1375108004
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 89 (0x7fffe4014c70), SoupSocket 82 (0x8dea20)
+> DELETE /calendar/feeds/default/private/full/i0h3hd7ash2mno0h4srh1vvu9s HTTP/1.1
+> Soup-Debug-Timestamp: 1375202791
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 89 (0x7fffe003f0a0), SoupSocket 82 (0x775490)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
-> If-Match: "EEoDRgZBfip7JGA6WhNS"
+> If-Match: "EEUCQg1Jdip7JGA6WhNS"
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 302 Moved Temporarily
-< Soup-Debug-Timestamp: 1375108004
-< Soup-Debug: SoupMessage 89 (0x7fffe4014c70)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXThTgckY3-hSb61OvnzXxSJ7d2jzDTq4SYJOcXEK19cfN8WmIspK2CGATjYnx3q1Fz9ZgntzaOCi00pQJhkctNT
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:26:45 GMT
-< Set-Cookie: S=calendar=CWYZzaWKKce27-tnWohbMw;Expires=Thu, 08-Aug-2013 17:50:56 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:26:44 GMT
-< Date: Mon, 29 Jul 2013 14:26:44 GMT
-< Location: 
https://www.google.com/calendar/feeds/default/private/full/fp1j04magk0odf8k2tc074fce4?gsessionid=CWYZzaWKKce27-tnWohbMw
+< Soup-Debug-Timestamp: 1375202791
+< Soup-Debug: SoupMessage 89 (0x7fffe003f0a0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_lzf1dm9Ue8N3SJp2J6o695WrE5nMbNLIXgO1GwYSOH0dinvA7V6dAhAIAEim2gLMsmbC2ddMnDUzaVKIGr3_JWCh97kMTIAR1M2IeSsu02b7EZA-X4HjICLw-x5pMnXhR8i08nLbVHSLT_No8fvB518lPWszfELKmW9TYG0-BAxXFzn9IKi_SmDnEv70WeTVk9AKBXEZK8GgbVvG2jwg9IxQwwSgxxH2Am-wKlw1Xh28Ocyi9bXsxw2zvbHLluu_emFBzQJ8Ds6aIurEQIryfg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:32 GMT
+< Set-Cookie: S=calendar=G45UfMvKT2wL-HKKZ9RUOw;Expires=Sat, 10-Aug-2013 07:27:48 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:31 GMT
+< Date: Tue, 30 Jul 2013 16:46:31 GMT
+< Location: 
https://www.google.com/calendar/feeds/default/private/full/i0h3hd7ash2mno0h4srh1vvu9s?gsessionid=G45UfMvKT2wL-HKKZ9RUOw
 < Content-Type: text/html; charset=UTF-8
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -96,28 +96,28 @@
 < </HEAD>
 < <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
 < <H1>Moved Temporarily</H1>
-< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/private/full/fp1j04magk0odf8k2tc074fce4?gsessionid=CWYZzaWKKce27-tnWohbMw";>here</A>.
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/private/full/i0h3hd7ash2mno0h4srh1vvu9s?gsessionid=G45UfMvKT2wL-HKKZ9RUOw";>here</A>.
 < </BODY>
 < </HTML>
   
-> DELETE /calendar/feeds/default/private/full/fp1j04magk0odf8k2tc074fce4?gsessionid=CWYZzaWKKce27-tnWohbMw 
HTTP/1.1
-> Soup-Debug-Timestamp: 1375108004
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 89 (0x7fffe4014c70), SoupSocket 82 (0x8dea20), restarted
+> DELETE /calendar/feeds/default/private/full/i0h3hd7ash2mno0h4srh1vvu9s?gsessionid=G45UfMvKT2wL-HKKZ9RUOw 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375202791
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 89 (0x7fffe003f0a0), SoupSocket 82 (0x775490), restarted
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
-> If-Match: "EEoDRgZBfip7JGA6WhNS"
+> If-Match: "EEUCQg1Jdip7JGA6WhNS"
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375108004
-< Soup-Debug: SoupMessage 89 (0x7fffe4014c70)
-< Update-Client-Auth: 
DQAAANAAAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXQ13oqRh_2p87WcrWeAQnJZpM9mi1et5TBGe84GimS7yuU_utQqgxo_ARltmYbhyQQy5oR9U-3hGYR8T6bNTF75
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:26:45 GMT
-< Set-Cookie: S=calendar=67Eg6BfzpKIzXfAG46cNhA;Expires=Tue, 06-Aug-2013 06:46:44 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:26:44 GMT
-< Date: Mon, 29 Jul 2013 14:26:44 GMT
+< Soup-Debug-Timestamp: 1375202791
+< Soup-Debug: SoupMessage 89 (0x7fffe003f0a0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_q4NwI2V8UT-SSEMjiblkY8jTSCIGQJCo_ZFavemirrG0G2jzg3jjEVC3CQauPSZoNTFtDCw6Eu1-1S6nOyDK2J9zwLcpKLPHGuWk8fzL5JjKgN0Z0HbdhVtGaldMU2XCoc4_I0dsAZNFNzMl12pQ2IhlOpKYk_syrjXgbEIFWB07e6wSu6Mp1XswtWQL95nokCfWJkTHf4YGsR2zpy2736UplfLIVHDJLz7fiJzKG-5nUmoz2a5jdwopbkQ6flW44tTL7okPm_2Y6nqlPi74Mg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:32 GMT
+< Set-Cookie: S=calendar=08UGw44y91rpdvXKiWRC_Q;Expires=Sun, 11-Aug-2013 13:27:57 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:32 GMT
+< Date: Tue, 30 Jul 2013 16:46:32 GMT
 < GData-Version: 2.6
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -128,25 +128,25 @@
 < Content-Type: text/html; charset=UTF-8
 < 
   
-> DELETE /calendar/feeds/default/private/full/d9s8fr5ao8l4ebm1f5qbdmb8gg HTTP/1.1
-> Soup-Debug-Timestamp: 1375108004
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 90 (0x7fffd804b0b0), SoupSocket 82 (0x8dea20)
+> DELETE /calendar/feeds/default/private/full/qv6rqh2gmrlee1uevomk3b1jok HTTP/1.1
+> Soup-Debug-Timestamp: 1375202791
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 90 (0x7fffe40158e0), SoupSocket 82 (0x775490)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
-> If-Match: "EEoDRgZBfyp7JGA6WhNS"
+> If-Match: "EEUCQg1Jdyp7JGA6WhNS"
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 302 Moved Temporarily
-< Soup-Debug-Timestamp: 1375108005
-< Soup-Debug: SoupMessage 90 (0x7fffd804b0b0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXThTgckY3-hSb61OvnzXxSJ7d2jzDTq4SYJOcXEK19cfN8WmIspK2CGATjYnx3q1Fz9ZgntzaOCi00pQJhkctNT
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:26:46 GMT
-< Set-Cookie: S=calendar=bdhFJWSBnr7HJcfrofEsmw;Expires=Sat, 10-Aug-2013 13:08:55 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:26:45 GMT
-< Date: Mon, 29 Jul 2013 14:26:45 GMT
-< Location: 
https://www.google.com/calendar/feeds/default/private/full/d9s8fr5ao8l4ebm1f5qbdmb8gg?gsessionid=bdhFJWSBnr7HJcfrofEsmw
+< Soup-Debug-Timestamp: 1375202792
+< Soup-Debug: SoupMessage 90 (0x7fffe40158e0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_lzf1dm9Ue8N3SJp2J6o695WrE5nMbNLIXgO1GwYSOH0dinvA7V6dAhAIAEim2gLMsmbC2ddMnDUzaVKIGr3_JWCh97kMTIAR1M2IeSsu02b7EZA-X4HjICLw-x5pMnXhR8i08nLbVHSLT_No8fvB518lPWszfELKmW9TYG0-BAxXFzn9IKi_SmDnEv70WeTVk9AKBXEZK8GgbVvG2jwg9IxQwwSgxxH2Am-wKlw1Xh28Ocyi9bXsxw2zvbHLluu_emFBzQJ8Ds6aIurEQIryfg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:33 GMT
+< Set-Cookie: S=calendar=8PAeMbuMXvTRndwL5HsKow;Expires=Sun, 11-Aug-2013 21:06:25 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:32 GMT
+< Date: Tue, 30 Jul 2013 16:46:32 GMT
+< Location: 
https://www.google.com/calendar/feeds/default/private/full/qv6rqh2gmrlee1uevomk3b1jok?gsessionid=8PAeMbuMXvTRndwL5HsKow
 < Content-Type: text/html; charset=UTF-8
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -161,28 +161,28 @@
 < </HEAD>
 < <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
 < <H1>Moved Temporarily</H1>
-< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/private/full/d9s8fr5ao8l4ebm1f5qbdmb8gg?gsessionid=bdhFJWSBnr7HJcfrofEsmw";>here</A>.
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/private/full/qv6rqh2gmrlee1uevomk3b1jok?gsessionid=8PAeMbuMXvTRndwL5HsKow";>here</A>.
 < </BODY>
 < </HTML>
   
-> DELETE /calendar/feeds/default/private/full/d9s8fr5ao8l4ebm1f5qbdmb8gg?gsessionid=bdhFJWSBnr7HJcfrofEsmw 
HTTP/1.1
-> Soup-Debug-Timestamp: 1375108005
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 90 (0x7fffd804b0b0), SoupSocket 82 (0x8dea20), restarted
+> DELETE /calendar/feeds/default/private/full/qv6rqh2gmrlee1uevomk3b1jok?gsessionid=8PAeMbuMXvTRndwL5HsKow 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375202792
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 90 (0x7fffe40158e0), SoupSocket 82 (0x775490), restarted
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
-> If-Match: "EEoDRgZBfyp7JGA6WhNS"
+> If-Match: "EEUCQg1Jdyp7JGA6WhNS"
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375108005
-< Soup-Debug: SoupMessage 90 (0x7fffd804b0b0)
-< Update-Client-Auth: 
DQAAAM4AAAAlDUC-WQgltDHdndYDddr-geSwqup450dH73A2Cl-8pGWAz5Jr6k15x7ETDyyX-gKH9mQLgT8NgpcJeZVMLjIXm1EbZt7eOlczQvHw9uMmD40XUvTc3VuOvT58GOMc7bcR5a-xUVuHMkbEU3g2rCp7Fw3q3lP_QFTWqE59LQAuIJ1V1Mzrj5l73ZloZnprjZsoS6V737LE84MKS3EbUJwdhONiAUU1jBHCL_yAoimGEtnElJMGcEXxs1Pl3YW3Ceub90HJ43ybw11aZdO1mFDL
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:26:46 GMT
-< Set-Cookie: S=calendar=eyQxpte4IM2e8PV0u_VLew;Expires=Fri, 09-Aug-2013 14:19:41 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:26:45 GMT
-< Date: Mon, 29 Jul 2013 14:26:45 GMT
+< Soup-Debug-Timestamp: 1375202792
+< Soup-Debug: SoupMessage 90 (0x7fffe40158e0)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_x9DCxs6Yn1ShR7x5wx1k6e37TbqaZyvZnHbBDD5MjDqIwu2doXjOCD97mfXE8YE20iZQLD52PYbtpDGgujgmHXXGW1wlvqMs94qpgxdE8eYecbfbso9UjfaO5uqfvsRXIhKhe7zV2m0bacHn0JcyH7mkYYXHxHv7XZ_tjZftH-i5SVfC5OZaKOQXxynRfd_Yz5PzuJngGrHUxv5bViZFI3gQCqJikX_t9TXaydAiNvFoCzIgXcLmw11rsBONKvKvzka6NqtM8xqoAdhWs62jAQ
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:46:33 GMT
+< Set-Cookie: S=calendar=744KciCep53jBKPqGTy7YQ;Expires=Mon, 12-Aug-2013 01:58:04 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:46:32 GMT
+< Date: Tue, 30 Jul 2013 16:46:32 GMT
 < GData-Version: 2.6
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
diff --git a/gdata/tests/traces/calendar/teardown-temp-calendar 
b/gdata/tests/traces/calendar/teardown-temp-calendar
index 47d66e6..618c41c 100644
--- a/gdata/tests/traces/calendar/teardown-temp-calendar
+++ b/gdata/tests/traces/calendar/teardown-temp-calendar
@@ -1,21 +1,21 @@
-> DELETE /calendar/feeds/default/owncalendars/full/j3pof8q060uvthc62v9falj6ik%40group.calendar.google.com 
HTTP/1.1
-> Soup-Debug-Timestamp: 1375108051
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 123 (0x7fffd804b1a0), SoupSocket 113 (0x8dede0)
+> DELETE /calendar/feeds/default/owncalendars/full/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375202838
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 122 (0x7fffe003f640), SoupSocket 111 (0x7fffe0040970)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 302 Moved Temporarily
-< Soup-Debug-Timestamp: 1375108051
-< Soup-Debug: SoupMessage 123 (0x7fffd804b1a0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXThTgckY3-hSb61OvnzXxSJ7d2jzDTq4SYJOcXEK19cfN8WmIspK2CGATjYnx3q1Fz9ZgntzaOCi00pQJhkctNT
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:27:32 GMT
-< Set-Cookie: S=calendar=G9Q3r6rLSe-0LE_rluuM9A;Expires=Mon, 12-Aug-2013 01:19:31 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:27:31 GMT
-< Date: Mon, 29 Jul 2013 14:27:31 GMT
-< Location: 
https://www.google.com/calendar/feeds/default/owncalendars/full/j3pof8q060uvthc62v9falj6ik%40group.calendar.google.com?gsessionid=G9Q3r6rLSe-0LE_rluuM9A
+< Soup-Debug-Timestamp: 1375202838
+< Soup-Debug: SoupMessage 122 (0x7fffe003f640)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_lzf1dm9Ue8N3SJp2J6o695WrE5nMbNLIXgO1GwYSOH0dinvA7V6dAhAIAEim2gLMsmbC2ddMnDUzaVKIGr3_JWCh97kMTIAR1M2IeSsu02b7EZA-X4HjICLw-x5pMnXhR8i08nLbVHSLT_No8fvB518lPWszfELKmW9TYG0-BAxXFzn9IKi_SmDnEv70WeTVk9AKBXEZK8GgbVvG2jwg9IxQwwSgxxH2Am-wKlw1Xh28Ocyi9bXsxw2zvbHLluu_emFBzQJ8Ds6aIurEQIryfg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:47:19 GMT
+< Set-Cookie: S=calendar=IwHNge3C9dN10mD3wPg4lA;Expires=Sat, 10-Aug-2013 19:22:45 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:47:18 GMT
+< Date: Tue, 30 Jul 2013 16:47:18 GMT
+< Location: 
https://www.google.com/calendar/feeds/default/owncalendars/full/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com?gsessionid=IwHNge3C9dN10mD3wPg4lA
 < Content-Type: text/html; charset=UTF-8
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
@@ -30,27 +30,27 @@
 < </HEAD>
 < <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
 < <H1>Moved Temporarily</H1>
-< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/owncalendars/full/j3pof8q060uvthc62v9falj6ik%40group.calendar.google.com?gsessionid=G9Q3r6rLSe-0LE_rluuM9A";>here</A>.
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/default/owncalendars/full/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com?gsessionid=IwHNge3C9dN10mD3wPg4lA";>here</A>.
 < </BODY>
 < </HTML>
   
-> DELETE 
/calendar/feeds/default/owncalendars/full/j3pof8q060uvthc62v9falj6ik%40group.calendar.google.com?gsessionid=G9Q3r6rLSe-0LE_rluuM9A
 HTTP/1.1
-> Soup-Debug-Timestamp: 1375108051
-> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 123 (0x7fffd804b1a0), SoupSocket 113 (0x8dede0), 
restarted
+> DELETE 
/calendar/feeds/default/owncalendars/full/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com?gsessionid=IwHNge3C9dN10mD3wPg4lA
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375202838
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 122 (0x7fffe003f640), SoupSocket 111 (0x7fffe0040970), 
restarted
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAAAlDUC-WQgltDHdndYDddr-1F5rVSSb-XFGPYjU_reMdFj7RP5AC-wIlZUljXXhCvATEt-rmld3pWsbivzPlhqzJUZcnSXxXjuP_PPM9e9TDVfyT7zXdclDNBmUEUHpuRE2pV8FcZ694nfSJrFnDanE5PgCG-Dp1I5RxEuTPBxWWO7bnTkK1M79Pq_KbuLDIXRpK4Q4OopOOwGyiV_NzUDT4fZ6Kw_yLolXssa1hHDvNlxFt5JLoN5p81KiTlQbRKh13BT_PF54cV4v9VkeqkDm
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
GData-Version: 2
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375108053
-< Soup-Debug: SoupMessage 123 (0x7fffd804b1a0)
-< Update-Client-Auth: 
DQAAAM8AAAAlDUC-WQgltDHdndYDddr-ODYysS96Taaw1NaIYtJAAHEXCZ_GMPV8cwrWmi_-pskMkzDa8yS5h3Lx6BUX8K1OQLMPBV7rpZGHtUa1jYE1jA_4X05rZ800eKz2vNaGdZYoiYJwGnkqCe72OBS-ReHTEtvQtr7VG9ZYkAslaj0Tffvz8pB9ItwBfiM3-4oLSkIEFXx8_eyUlfeNChSfSAvSSqTyG58No5P6HZMRKSJtwsyLwtxAl4BhBMfGX_Uh_z0XCyGMW8beXiNXZ4h5XkwP
-< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Mon, 29-Jul-2013 14:27:32 GMT
-< Set-Cookie: S=calendar=Ig-VHyzEk6QF7qRJGEyZ8Q;Expires=Sat, 10-Aug-2013 00:59:24 GMT;Secure
-< Expires: Mon, 29 Jul 2013 14:27:32 GMT
-< Date: Mon, 29 Jul 2013 14:27:32 GMT
+< Soup-Debug-Timestamp: 1375202839
+< Soup-Debug: SoupMessage 122 (0x7fffe003f640)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_x9DCxs6Yn1ShR7x5wx1k6e37TbqaZyvZnHbBDD5MjDqIwu2doXjOCD97mfXE8YE20iZQLD52PYbtpDGgujgmHXXGW1wlvqMs94qpgxdE8eYecbfbso9UjfaO5uqfvsRXIhKhe7zV2m0bacHn0JcyH7mkYYXHxHv7XZ_tjZftH-i5SVfC5OZaKOQXxynRfd_Yz5PzuJngGrHUxv5bViZFI3gQCqJikX_t9TXaydAiNvFoCzIgXcLmw11rsBONKvKvzka6NqtM8xqoAdhWs62jAQ
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:47:19 GMT
+< Set-Cookie: S=calendar=NJ7wyAqYpz_8dzic7TTqoA;Expires=Mon, 12-Aug-2013 14:12:22 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:47:19 GMT
+< Date: Tue, 30 Jul 2013 16:47:19 GMT
 < GData-Version: 2.6
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
diff --git a/gdata/tests/traces/calendar/teardown-temp-calendar-acls 
b/gdata/tests/traces/calendar/teardown-temp-calendar-acls
index e69de29..28912f9 100644
--- a/gdata/tests/traces/calendar/teardown-temp-calendar-acls
+++ b/gdata/tests/traces/calendar/teardown-temp-calendar-acls
@@ -0,0 +1,63 @@
+> DELETE 
/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375202837
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 121 (0x7fffe003f550), SoupSocket 111 (0x7fffe0040970)
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 302 Moved Temporarily
+< Soup-Debug-Timestamp: 1375202837
+< Soup-Debug: SoupMessage 121 (0x7fffe003f550)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_lzf1dm9Ue8N3SJp2J6o695WrE5nMbNLIXgO1GwYSOH0dinvA7V6dAhAIAEim2gLMsmbC2ddMnDUzaVKIGr3_JWCh97kMTIAR1M2IeSsu02b7EZA-X4HjICLw-x5pMnXhR8i08nLbVHSLT_No8fvB518lPWszfELKmW9TYG0-BAxXFzn9IKi_SmDnEv70WeTVk9AKBXEZK8GgbVvG2jwg9IxQwwSgxxH2Am-wKlw1Xh28Ocyi9bXsxw2zvbHLluu_emFBzQJ8Ds6aIurEQIryfg
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:47:18 GMT
+< Set-Cookie: S=calendar=jBZUb79fi9kSaQXb1FBYKA;Expires=Sat, 10-Aug-2013 22:54:10 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:47:17 GMT
+< Date: Tue, 30 Jul 2013 16:47:17 GMT
+< Location: 
https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com?gsessionid=jBZUb79fi9kSaQXb1FBYKA
+< Content-Type: text/html; charset=UTF-8
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <HTML>
+< <HEAD>
+< <TITLE>Moved Temporarily</TITLE>
+< </HEAD>
+< <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
+< <H1>Moved Temporarily</H1>
+< The document has moved <A 
HREF="https://www.google.com/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com?gsessionid=jBZUb79fi9kSaQXb1FBYKA";>here</A>.
+< </BODY>
+< </HTML>
+  
+> DELETE 
/calendar/feeds/i4jqlr6fcg9obf3qucemmcm1m0%40group.calendar.google.com/acl/full/user%3Adarcy%40gmail.com?gsessionid=jBZUb79fi9kSaQXb1FBYKA
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375202837
+> Soup-Debug: SoupSession 1 (0x65a2e0), SoupMessage 121 (0x7fffe003f550), SoupSocket 111 (0x7fffe0040970), 
restarted
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAACtQA4YYe986jGVKTRKjvf_LQKCUZ-IrhGFxQuS1Zfjc3yd5y6Y5AHV3CUuKKT-NheGlvH_Hh7TOXLccehoG2zbN5TDNxZ-TDfe29rhXBteyCMVj5DvD7eNA2g8k8tM1sbnqitPfsPs-kbfR6iXisr9Yp_3Vt3LqvpmmxJI6AKoXpC08YhV24rZiqJZMMHhxxFr_TeYYtgiPL9vOqjnfhJJI6rGgNQ6eYvVaKo7TzLgbhWkg6Sikn3hbkowxi8_rA9_Bvwwxs77T15OWlsObAigagTJyjsQoAUGISPhESplZQ
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375202837
+< Soup-Debug: SoupMessage 121 (0x7fffe003f550)
+< Update-Client-Auth: 
DQAAANYAAACtQA4YYe986jGVKTRKjvf_QMIIFxw1-89I4fIiltp3toM_OQPaV-s2Op5YfNNKqskJ-elHTN3M2YrIdeRcj84Q94sPukowimpQydy5Tbb14G3YJ4S-NHM8cpqZJBifvXkyktCQOlLQS03AMrw1-u6qvRouqxtCMYd1apUUU9kXVWwoSYowH2iqScUeke9qp_ZEetMmdoQ61WwPB5gd4Of34y2qjfi6BC-i8q-4AfecimYdMpxx-Z7ncnkPEftWV84VyvVUhWfLM8oWcP3zT943b_FOzjNl76pHK1Za70lHtw
+< Set-Cookie: DO_NOT_CACHE_RESPONSE=true;Expires=Tue, 30-Jul-2013 16:47:18 GMT
+< Set-Cookie: S=calendar=4cE4wWxAns3je5eEC48OpQ;Expires=Mon, 12-Aug-2013 16:53:14 GMT;Secure
+< Expires: Tue, 30 Jul 2013 16:47:18 GMT
+< Date: Tue, 30 Jul 2013 16:47:18 GMT
+< GData-Version: 2.6
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 0
+< Server: GSE
+< Content-Type: text/html; charset=UTF-8
+< 
+  


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]