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



commit 9547316561adfdf6f66b7eb1358af46f92133c37
Author: Philip Withnall <philip tecnocode co uk>
Date:   Wed Jul 31 09:06:27 2013 +0200

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

 gdata/tests/contacts.c                             |   28 --------
 gdata/tests/traces/contacts/authentication         |   18 +++---
 gdata/tests/traces/contacts/authentication-async   |   18 +++---
 .../contacts/authentication-async-cancellation     |   27 ++++++++
 gdata/tests/traces/contacts/contact-insert         |   22 +++---
 gdata/tests/traces/contacts/contact-update         |   24 ++++----
 gdata/tests/traces/contacts/global-authentication  |   18 +++---
 gdata/tests/traces/contacts/group-insert           |   22 +++---
 .../{group-insert-async => group_insert-async}     |   22 +++---
 ...nsert-async => group_insert-async-cancellation} |   22 +++---
 gdata/tests/traces/contacts/query-all-contacts     |   20 +++---
 .../tests/traces/contacts/query-all-contacts-async |   28 --------
 .../query-all-contacts-async-progress-closure      |   20 +++---
 gdata/tests/traces/contacts/query-all-groups       |   20 +++---
 gdata/tests/traces/contacts/query-all-groups-async |   28 --------
 .../query-all-groups-async-progress-closure        |   20 +++---
 .../tests/traces/contacts/query_all_contacts-async |   28 ++++++++
 .../contacts/query_all_contacts-async-cancellation |   28 ++++++++
 gdata/tests/traces/contacts/query_all_groups-async |   28 ++++++++
 .../contacts/query_all_groups-async-cancellation   |   28 ++++++++
 .../tests/traces/contacts/setup-query-all-contacts |   66 ++++++++++----------
 gdata/tests/traces/contacts/setup-query-all-groups |   66 ++++++++++----------
 gdata/tests/traces/contacts/setup-temp-contact     |   22 +++---
 gdata/tests/traces/contacts/teardown-insert        |   18 +++---
 .../traces/contacts/teardown-query-all-contacts    |   54 ++++++++--------
 gdata/tests/traces/contacts/teardown-temp-contact  |   40 ++++++------
 26 files changed, 395 insertions(+), 340 deletions(-)
---
diff --git a/gdata/tests/contacts.c b/gdata/tests/contacts.c
index 9fc59cd..c9afdcd 100644
--- a/gdata/tests/contacts.c
+++ b/gdata/tests/contacts.c
@@ -113,8 +113,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_CONTACTS_SERVICE);
 
@@ -149,8 +147,6 @@ G_STMT_START {
                g_assert (gdata_authorizer_is_authorized_for_domain (GDATA_AUTHORIZER (authorizer),
                                                                     
gdata_contacts_service_get_primary_authorization_domain ()) == FALSE);
        }
-
-       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 typedef struct {
@@ -230,8 +226,6 @@ GDATA_ASYNC_CLOSURE_FUNCTIONS (query_all_contacts, QueryAllContactsData);
 
 GDATA_ASYNC_TEST_FUNCTIONS (query_all_contacts, QueryAllContactsData,
 G_STMT_START {
-       gdata_test_mock_server_start_trace (mock_server, "query-all-contacts-async");
-
        gdata_contacts_service_query_contacts_async (GDATA_CONTACTS_SERVICE (service), NULL, cancellable, 
NULL,
                                                     NULL, NULL, async_ready_callback, async_data);
 } G_STMT_END,
@@ -248,8 +242,6 @@ G_STMT_START {
        } else {
                g_assert (feed == NULL);
        }
-
-       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 static void
@@ -684,8 +676,6 @@ GDATA_ASYNC_CLOSURE_FUNCTIONS (query_all_groups, QueryAllGroupsData);
 
 GDATA_ASYNC_TEST_FUNCTIONS (query_all_groups, QueryAllGroupsData,
 G_STMT_START {
-       gdata_test_mock_server_start_trace (mock_server, "query-all-groups-async");
-
        gdata_contacts_service_query_groups_async (GDATA_CONTACTS_SERVICE (service), NULL, cancellable, NULL, 
NULL, NULL,
                                                   async_ready_callback, async_data);
 } G_STMT_END,
@@ -702,8 +692,6 @@ G_STMT_START {
        } else {
                g_assert (feed == NULL);
        }
-
-       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 static void
@@ -805,8 +793,6 @@ GDATA_ASYNC_TEST_FUNCTIONS (group_insert, InsertGroupData,
 G_STMT_START {
        GDataContactsGroup *group;
 
-       gdata_test_mock_server_start_trace (mock_server, "group-insert-async");
-
        group = gdata_contacts_group_new (NULL);
 
        /* Check the kind is present and correct */
@@ -834,8 +820,6 @@ G_STMT_START {
        } else {
                g_assert (entry == NULL);
        }
-
-       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 static void
@@ -2009,8 +1993,6 @@ G_STMT_START {
        guint8 *photo_data;
        gsize length;
 
-       gdata_test_mock_server_start_trace (mock_server, "photo-add-async");
-
        /* Get the photo */
        g_assert (g_file_get_contents (TEST_FILE_DIR "photo.jpg", (gchar**) &photo_data, &length, NULL) == 
TRUE);
 
@@ -2033,8 +2015,6 @@ G_STMT_START {
                g_assert (success == FALSE);
                g_assert (gdata_contacts_contact_get_photo_etag (contact) == NULL);
        }
-
-       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 static void
@@ -2102,8 +2082,6 @@ test_photo_get (TempContactData *data, gconstpointer service)
 
 GDATA_ASYNC_TEST_FUNCTIONS (photo_get, TempContactData,
 G_STMT_START {
-       gdata_test_mock_server_start_trace (mock_server, "photo-get-async");
-
        g_assert (gdata_contacts_contact_get_photo_etag (data->contact) != NULL);
 
        /* Get the photo from the network asynchronously */
@@ -2132,8 +2110,6 @@ G_STMT_START {
 
        g_free (content_type);
        g_free (photo_data);
-
-       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 static void
@@ -2158,8 +2134,6 @@ test_photo_delete (TempContactData *data, gconstpointer service)
 
 GDATA_ASYNC_TEST_FUNCTIONS (photo_delete, TempContactData,
 G_STMT_START {
-       gdata_test_mock_server_start_trace (mock_server, "photo-delete-async");
-
        g_assert (gdata_contacts_contact_get_photo_etag (data->contact) != NULL);
 
        /* Delete it from the contact asynchronously */
@@ -2179,8 +2153,6 @@ G_STMT_START {
                g_assert (success == FALSE);
                g_assert (gdata_contacts_contact_get_photo_etag (contact) != NULL);
        }
-
-       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 static void
diff --git a/gdata/tests/traces/contacts/authentication b/gdata/tests/traces/contacts/authentication
index 7650d9b..1d67fad 100644
--- a/gdata/tests/traces/contacts/authentication
+++ b/gdata/tests/traces/contacts/authentication
@@ -1,6 +1,6 @@
POST /accounts/ClientLogin HTTP/1.1
-> Soup-Debug-Timestamp: 1373312486
-> Soup-Debug: SoupSession 1 (0x66d3d0), SoupMessage 1 (0x992280), SoupSocket 1 (0x8f2190)
+> Soup-Debug-Timestamp: 1375253707
+> Soup-Debug: SoupSession 1 (0x66f3f0), SoupMessage 1 (0x7d2aa0), SoupSocket 1 (0x72a190)
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=cp&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1373312487
-< Soup-Debug: SoupMessage 1 (0x992280)
+< Soup-Debug-Timestamp: 1375253707
+< Soup-Debug: SoupMessage 1 (0x7d2aa0)
 < Content-Type: text/plain
 < Cache-control: no-cache, no-store
 < Pragma: no-cache
 < Expires: Mon, 01-Jan-1990 00:00:00 GMT
-< Date: Mon, 08 Jul 2013 19:41:27 GMT
+< Date: Wed, 31 Jul 2013 06:55:07 GMT
 < X-Content-Type-Options: nosniff
 < X-XSS-Protection: 1; mode=block
-< Content-Length: 881
+< Content-Length: 947
 < Server: GSE
 < 
-< 
SID=DQAAAMwAAABHW2h9bkXL6pAXiBEKGvayOYrMShTH5-J3wdQQnRsZ17rkpb_BmNxBjVuMwseNC8De8Rh0i_1FKuoCfoY-25CHr8uYXjkLZCl7F5o5pFmEaPnSsP46v8rK880838oJrwB_3ZLM9rqnmmvJlGKsA9eqWYXQgOTXCWG6ZB4dd5TqndtQIvIKiYqp-ESwZ104LYUeDw8FiQINZ5BvMb2fQMriaf-YQVBl0HuI6BBpiGeaQt5TpmEv0aspJyHtKII5il8RcJkby0Va3kUNmna8l7-H
-< 
LSID=DQAAAM8AAAAI9HyEAXnI3Pes9Ten9W-EW5SL9yuNuRAOupR1aFiCCsqQJrcza112Dj7Ucfung3U-_ETeDQiQcZDBST0sjJ_3W0hpcpFeQm0TZsnt5jJZHyvKrrCFM9dwMxh0c79yylEwwpnDpAlo8ci2v26Pvnf8h-qZDjDeExvxESAaTRx2qOOcL7Tk_KVYs3J5w7Ku5Ozrl8hme76kut3CxyHXMyFyJdYz8EhDLqK-ztHnb-5gTVeLMjsqMZUb1jDRgQQiQ9zacPQylvZXk3cujaCv5IT-
-< 
Auth=DQAAAM4AAAAI9HyEAXnI3Pes9Ten9W-EW5SL9yuNuRAOupR1aFiCCsqQJrcza112Dj7Ucfung3Uu5Tv2fRK2qN5uD9mcsPnbjt6eLtnqhm5ToUCJkbujJAlrMQHUPBQqfGFQIM25thRthC1Cx8so85DKLOzI8JgbMA7K5tRsgzJrXSUD2m0c1iGFr5Atwau1os1kIZUIt06kToVNhEx69TyZBNEoO2U-3GSx9LRt1V0S9q27IU7iXu5gGw1282MsHim3C920_o3lZeYsy835ufKhY-cBwcMW
+< 
SID=DQAAANMAAABLVNYA7llnN5GVblNPXi5xnUpfn_1Nt5rUGq5fgJHP3lGFHSyWeFu8iaAhhTy_IkFR4abU1u0PItdmErKC7BAb4yEUNfBsE_DAJW3QiSX9gsUN9Upn3OGfkWWE9rtc3SuMRRUtVa5uIrI3LFeFpTj-mDugsJ6eLNSXuBX_I2ZXut0cc2cye4-y6sIqgEa6bBitbGbEPUUWUaXzXJUu19achuiThwDIztR8au8tSMH6vOxDEpwiFwKoH6MmUj7uyFf1Vfe-CEQlBTjg4gjDCWGlgGudKAQC-7tnHa8Mpi4A3g
+< 
LSID=DQAAANUAAAANiE0kPwbpbCxKR_R7h-ekhx_I6BM74CA7iCX0q8ILYiIGXDhjanJyMF8-YSr48czMnizyxddpEDZQL5v8W6CaLltlzVYSdSEegJ_p9G0_n6dfhQjgn-2d0prbi6g9_KoLs71vaMnTXGma8Honl3n1_cfdI7asujoOns4QUbs4vhk_n9Ag9wJzNjHW5h7dNerxKH4uzqeOMRifAefv3_ZWNhUdytaF-gx-nTcigWqNiGwTMNT1EnzobE5VzZeHoEAFApRxgK3u-M6QRy9GunbTpPuAqTSivnjFIOCSSV_KrA
+< 
Auth=DQAAANYAAAANiE0kPwbpbCxKR_R7h-ekhx_I6BM74CA7iCX0q8ILYiIGXDhjanJyMF8-YSr48cy3WO11uK-_KLeoeuvXODGKn-9bqQT-KaNXSV63Iojd-SXaAiAhSaxuNwEGXj5Z7KO_QAebRcA_bmVZzZGO0vjwhBGmnYrukoKPnlexCe2AZeuEyqR-ZY-Hl1JHY3iQ30RK70nlQOM__saeNQYzVz3WoQ35SzAFKQT1edoPh8nL3buIc7jlQGGeNIgn-uV1NTnwMglaxeuT-e67DkK9sDHf-p6UyUYO6xlcyoHTL25Nxw
   
diff --git a/gdata/tests/traces/contacts/authentication-async 
b/gdata/tests/traces/contacts/authentication-async
index 45fb5c9..09d657b 100644
--- a/gdata/tests/traces/contacts/authentication-async
+++ b/gdata/tests/traces/contacts/authentication-async
@@ -1,6 +1,6 @@
POST /accounts/ClientLogin HTTP/1.1
-> Soup-Debug-Timestamp: 1373312489
-> Soup-Debug: SoupSession 1 (0x66d3d0), SoupMessage 1 (0x7fffe40030b0), SoupSocket 1 (0x7fffdc003bc0)
+> Soup-Debug-Timestamp: 1375253707
+> Soup-Debug: SoupSession 1 (0x66f500), SoupMessage 1 (0x7d2e60), SoupSocket 1 (0x72a6d0)
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=cp&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1373312490
-< Soup-Debug: SoupMessage 1 (0x7fffe40030b0)
+< Soup-Debug-Timestamp: 1375253707
+< Soup-Debug: SoupMessage 1 (0x7d2e60)
 < Content-Type: text/plain
 < Cache-control: no-cache, no-store
 < Pragma: no-cache
 < Expires: Mon, 01-Jan-1990 00:00:00 GMT
-< Date: Mon, 08 Jul 2013 19:41:30 GMT
+< Date: Wed, 31 Jul 2013 06:55:07 GMT
 < X-Content-Type-Options: nosniff
 < X-XSS-Protection: 1; mode=block
-< Content-Length: 881
+< Content-Length: 947
 < Server: GSE
 < 
-< 
SID=DQAAAMwAAABCtr-P2xLdfYuGcH79eE1b-Kork84uxOZXyiGiGr4GX7yJ3h-gfX6ANj4Es0UwKUKiGFgVuuNzkn8ZXftoTmlzLxhBb3zxAyVEtKePS5Huqy2_JKD0y6XiVUWowDXqpYN8QgXsGQF4Jp6rFQtHmqzpzFZUb_TLuu6cDJffqVn2WjK6SzgD0KBTPcrXwqLtREMti1I1tGxtSZpSGJyvsFgnH2bz2b7VjtxZDu4YxLXSiI78aVILkiUvoRHnkCQCNd3e1xMUDQMAj9rvUAaQutbx
-< 
LSID=DQAAAM4AAABZcOfeSk82etXFBL7XxbkpnvVwiP83_DHzFCz1U87kG2fVvoeQPFJongkebbMdlLdAg7Lvp01h_C6wJA-PKWDwxo7vESsfzprLOeAGCtgLwCSqUBQsoBndnkuVJ2RJXStF8FIEYeBlSGT_LoAYynfmkix6VKkxuU4mkrF-p8B8tnZJK1OIX_KC6CGmRq2A6bD4E4cht84dmAM3-ZzxrC_7zhYVFYe1tBEF-J8vq3OIvlH7Yd2ZT7l3DWHatg8RXB3EbeWA2DPzVDTMoL5udu7m
-< 
Auth=DQAAAM8AAABZcOfeSk82etXFBL7XxbkpnvVwiP83_DHzFCz1U87kG2fVvoeQPFJongkebbMdlLfgisdUpkfPJ9wpxQZD7acFzWPDOu5F6NjxglDssoW0y73HUhj0mvzlWd9ojCpp9U2rfijv8U1BdqtCTQgm7D22AzzETGWvVpFwOwWRu1oHm9c9Na5rZnsdOaLsh_7S67QHs5N2NqRx0ab-yb2pK3gvOQkjxlIwrAp1ysRdzQ5LfCGI9xqFqcPJsSJxJKrpMpCy1r1-2QIBzgVkJOEVq7Ic
+< 
SID=DQAAANMAAABLVNYA7llnN5GVblNPXi5xnUpfn_1Nt5rUGq5fgJHP3lGFHSyWeFu8iaAhhTy_IkFR4abU1u0PItdmErKC7BAb4yEUNfBsE_DAJW3QiSX9gsUN9Upn3OGfkWWE9rtc3SuMRRUtVa5uIrI3LFeFpTj-mDugsJ6eLNSXuBX_I2ZXut0cc2cye4-y6sIqgEa6bBitbGbEPUUWUaXzXJUu19acTECE-3-B2krVhb8vfG1AHN5rzSoc1Q_VyilznzxZBPVRfPhJw3Y5IebOCCnZIXPh7WmGG1ZD873sWpj-kpUpcg
+< 
LSID=DQAAANYAAAANiE0kPwbpbCxKR_R7h-ekhx_I6BM74CA7iCX0q8ILYiIGXDhjanJyMF8-YSr48czMnizyxddpEDZQL5v8W6CaLltlzVYSdSEegJ_p9G0_n6dfhQjgn-2d0prbi6g9_KoLs71vaMnTXGma8Honl3n1_cfdI7asujoOns4QUbs4vhk_n9Ag9wJzNjHW5h7dNerxKH4uzqeOMRifAefv3_ZWZdV1jE37C_HM4lrLBkVs4g5Nn7QGbEu4zBRfm6tbUsyGGArm184KaDmtlj56BazwIuMxn2vgWds0PoDaD--qFg
+< 
Auth=DQAAANUAAAANiE0kPwbpbCxKR_R7h-ekhx_I6BM74CA7iCX0q8ILYiIGXDhjanJyMF8-YSr48cy3WO11uK-_KLeoeuvXODGKn-9bqQT-KaNXSV63Iojd-SXaAiAhSaxuNwEGXj5Z7KO_QAebRcA_bmVZzZGO0vjwhBGmnYrukoKPnlexCe2AZeuEyqR-ZY-Hl1JHY3iQ30RK70nlQOM__saeNQYzVz3WzcUjGZQ_0atIQbbOPrlNJvWPUOKBHHVuHDl-TJPvFhdUmvTRCMke4EDhQGxWnq3kfeSnDCzg-OCkD4CAcaOWeQ
   
diff --git a/gdata/tests/traces/contacts/authentication-async-cancellation 
b/gdata/tests/traces/contacts/authentication-async-cancellation
new file mode 100644
index 0000000..0b9e2fb
--- /dev/null
+++ b/gdata/tests/traces/contacts/authentication-async-cancellation
@@ -0,0 +1,27 @@
+> POST /accounts/ClientLogin HTTP/1.1
+> Soup-Debug-Timestamp: 1375253708
+> Soup-Debug: SoupSession 1 (0x66f500), SoupMessage 1 (0x7fffe00262a0), SoupSocket 1 (0x7fffe0028190)
+> 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=cp&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375253708
+< Soup-Debug: SoupMessage 1 (0x7fffe00262a0)
+< Content-Type: text/plain
+< Cache-control: no-cache, no-store
+< Pragma: no-cache
+< Expires: Mon, 01-Jan-1990 00:00:00 GMT
+< Date: Wed, 31 Jul 2013 06:55:08 GMT
+< X-Content-Type-Options: nosniff
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 947
+< Server: GSE
+< 
+< 
SID=DQAAANMAAAAunusdFJGM1KPwpqzc212kxe0mrSl2NxjpDEq5kCraje_aRE5F-vTgUxDFd2J3_7_snxzNa0pX8sGs-NTcnI2d-2q9fGyosn-1M6rPh3qQA8qy42qG0C2HnOOtogVSG4vWM1nI9upHtxzcGSw4npSifFmn1Rxnhv08ZIMjHNJpIfhaCM4fkeSvEsyxn4lFRdXO4xTrtrjhGlTVTG-Dyqw7vq_i-ngOJqNjcxB8Oxx_CwwgVo16TYC88VIyZp5jS_2btuWvoHYmO-fYxCdJVktq_uXbbxPshT32bfNcRxxroQ
+< 
LSID=DQAAANUAAADlUiDDxmgwYEQV4ONy1MTegorp3YgAKT-J--NcNIwz1nJvdKlhFWau_6plMST0IUMr9GoPEokwCv7v3YZnLtK1P7wvqIgdQkP6I22lFNIrINcizDYxO_03NJ0QBVsQ4bFCl_zSdILGLIEtUqeos12Z5RCIbgrYoYG_C4I2OoNH33QfeK4v9eFDgmycbDNIXvIkCVkVkN-UpYw6lgp4M-Mwz6UZ6JM5Ow0mzOXe_X-3ObjimaF0dZhTq4f8eqAvYUIZ9MKtRzfGpMRSnTqR5gC7u0F5aLNY78hcwi2-Jf2gqA
+< 
Auth=DQAAANUAAADlUiDDxmgwYEQV4ONy1MTegorp3YgAKT-J--NcNIwz1nJvdKlhFWau_6plMST0IUMunH-1EPsydhwp7D-n9RF5dIaQg8ezkxVCT2oit_CR7ZIWdyB7LF0F_Nn5fy8S7NWHepGq0pYhHNbCqMUBbr9KWZ6FH_MKT6TmqkrOeWXTuRujoiuv3_F22AIPwJ6coTIyDn5A2FW_YtxU2ZW9mTEbpdFkfwY5MWFoME3wBpxti1C3vVClkEhSr6ZBw5d1Ygiol1jCfzV3BcFtPeHQe6y-A6OAhtDUKb2eeOirjRPr0Q
+  
diff --git a/gdata/tests/traces/contacts/contact-insert b/gdata/tests/traces/contacts/contact-insert
index a8a70d2..7446f87 100644
--- a/gdata/tests/traces/contacts/contact-insert
+++ b/gdata/tests/traces/contacts/contact-insert
@@ -1,8 +1,8 @@
POST /m8/feeds/contacts/default/full HTTP/1.1
-> Soup-Debug-Timestamp: 1373312490
-> Soup-Debug: SoupSession 1 (0x66d2c0), SoupMessage 1 (0x992460), SoupSocket 1 (0x8f2250)
+> Soup-Debug-Timestamp: 1375253708
+> Soup-Debug: SoupSession 1 (0x66f2e0), SoupMessage 1 (0x7d2c80), SoupSocket 1 (0x72a250)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAABKUrSFzs8R87l64lxNJ2sdklhR-Xok8Cd28d10ttViz3pkeSosVgf5IXErmDHQMM9qajB6ZiW2R88u_SpE3SfL5uy_oNPB5Mlmte4X-TOdOSUGjIGRr6cv7JClAOlVBIxmkZVSWC_cCUFKRIuZ9VBkSIKSD9kCHJEBwWlhgcZsHSNAVuv9pIagsMR06K24PtAIO_VIRitw2VisJNxl3kqjDzobMqoyQypuTBXft5oOD2vHaJWkSI5JH5JM6zBxNnxLOUPt7oqUbLeJP8xe6FsF
+> Authorization: GoogleLogin 
auth=DQAAANUAAAAXK6VbKHFb8MrY8VDDk8TplfYU8Pl8OJ_JDJA5Ku7Q1SXgGXmiXXNSumd183YRnbThEZBRN5nYygedI2kQsVKzOFACPFEPo7ShQaRGycnxE3GLDfmMWN_zc43HzWPka0-WgOvpmqpxLFWh0EYyD3pF7Yebk_jLBxJEBWU9v8FZrljhbtK-g4kiiBeuNs4kYYLTu-vF7GCSIcSC2WuHSkxI091viwmbQhZY_6fi_MaY_qgOPss9HlAHeJ543JSjtRmsVtK_4aNWbmaz9VcCr9lXEksu1dUTvroRvtlr8XyvOg
GData-Version: 3
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
@@ -11,22 +11,22 @@
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app'><title type='text'>John Smith</title><content 
type='text'>Notes</content><category term='http://schemas.google.com/contact/2008#contact' 
scheme='http://schemas.google.com/g/2005#kind'/><gd:name><gd:givenName>John</gd:givenName><gd:familyName>Smith</gd:familyName><gd:fullName>John
 Smith</gd:fullName></gd:name><gd:email address='liz gmail com' 
rel='http://schemas.google.com/g/2005#work' primary='false'/><gd:email address='liz example org' 
rel='http://schemas.google.com/g/2005#home' primary='false'/><gd:im address='liz gmail com' 
protocol='http://schemas.google.com/g/2005#GOOGLE_TALK' rel='http://schemas.google.com/g/2005#home' 
primary='false'/><gd:phoneNumber rel='http://schemas.google.com/g/2005#work' 
primary='true'>(206)555-1212</gd:phoneNumber><gd:phoneNum
 ber rel='http://schemas.google.com/g/2005#home' 
primary='false'>(206)555-1213</gd:phoneNumber><gd:structuredPostalAddress 
rel='http://schemas.google.com/g/2005#work' primary='true'><gd:street>1600 Amphitheatre Pkwy Mountain 
View</gd:street></gd:structuredPostalAddress><gd:organization rel='http://schemas.google.com/g/2005#work' 
primary='false'><gd:orgName>OrgCorp</gd:orgName><gd:orgTitle>President</gd:orgTitle></gd:organization><gContact:jot
 rel='other'>This is a jot.</gContact:jot><gContact:relation rel='friend'>Brian 
Haddock</gContact:relation><gContact:website href='http://example.com/' rel='profile' 
primary='true'/><gContact:event rel='anniversary'><gd:when 
startTime='1900-01-01'/></gContact:event><gContact:calendarLink href='http://calendar.example.com/' 
rel='home' primary='true'/><gContact:externalId value='Number Six' rel='organization'/><gContact:language 
code='en-GB'/><gd:extendedProperty 
name='CALURI'>http://example.com/</gd:extendedProperty><gContact:userDefinedFi
 eld key='Favourite colour' value='Blue'/><gContact:userDefinedField key='My notes' 
value=''/><gContact:userDefinedField key='Owes me' value='£10'/><gContact:userDefinedField key='' 
value='Foo'/><gContact:hobby>Rowing</gContact:hobby><gContact:nickname>Big 
J</gContact:nickname><gContact:fileAs>J, Big</gContact:fileAs><gContact:birthday 
when='--01-01'/><gContact:billingInformation>Big J Enterprises, 
Ltd.</gContact:billingInformation><gContact:directoryServer>This is a 
server</gContact:directoryServer><gContact:gender value='male'/><gContact:initials>A. B. 
C.</gContact:initials><gContact:maidenName>Smith</gContact:maidenName><gContact:mileage>12km</gContact:mileage><gContact:occupation>Professional
 bum</gContact:occupation><gContact:priority rel='high'/><gContact:sensitivity 
rel='personal'/><gContact:shortName>Jon</gContact:shortName><gContact:subject>Charity 
work</gContact:subject></entry>
   
 < HTTP/1.1 201 Created
-< Soup-Debug-Timestamp: 1373312490
-< Soup-Debug: SoupMessage 1 (0x992460)
+< Soup-Debug-Timestamp: 1375253709
+< Soup-Debug: SoupMessage 1 (0x7d2c80)
 < Content-Type: application/atom+xml; charset=UTF-8; type=entry
-< Expires: Mon, 08 Jul 2013 19:41:30 GMT
-< Date: Mon, 08 Jul 2013 19:41:30 GMT
+< Expires: Wed, 31 Jul 2013 06:55:09 GMT
+< Date: Wed, 31 Jul 2013 06:55:09 GMT
 < Cache-control: private, max-age=0, must-revalidate, no-transform
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 3.1
-< ETag: "QXY-fDVSLyt7I2A9WhFQE0wIQw0."
-< Location: https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/2fe60f6f8bc0d692
-< Content-Location: 
https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/2fe60f6f8bc0d692
+< ETag: "SXcyfTVSLit7I2A9WhFWEkgJQAQ."
+< Location: https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/669aee080ec47f33
+< Content-Location: 
https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/669aee080ec47f33
 < 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:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;QXY-fDVSLyt7I2A9WhFQE0wIQw0.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/2fe60f6f8bc0d692</id><updated>2013-07-08T19:41:30.854Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:41:30.854Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title>John Smith</title><content>Notes</content><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/2fe60f6f8bc0d692'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/2fe6
 0f6f8bc0d692'/><link rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/2fe60f6f8bc0d692'/><gd:name><gd:fullName>John
 
Smith</gd:fullName><gd:givenName>John</gd:givenName><gd:familyName>Smith</gd:familyName></gd:name><gContact:nickname>Big
 
J</gContact:nickname><gContact:maidenName>Smith</gContact:maidenName><gContact:shortName>Jon</gContact:shortName><gContact:initials>A.
 B. C.</gContact:initials><gContact:gender value='male'/><gContact:birthday 
when='--01-01'/><gContact:occupation>Professional bum</gContact:occupation><gContact:sensitivity 
rel='personal'/><gContact:billingInformation>Big J Enterprises, 
Ltd.</gContact:billingInformation><gContact:priority 
rel='high'/><gContact:mileage>12km</gContact:mileage><gContact:directoryServer>This is a 
server</gContact:directoryServer><gContact:subject>Charity work</gContact:subject><gContact:fileAs>J, 
Big</gContact:fileAs><gd:organization rel='http://schemas.google
 
.com/g/2005#work'><gd:orgName>OrgCorp</gd:orgName><gd:orgTitle>President</gd:orgTitle></gd:organization><gd:email
 rel='http://schemas.google.com/g/2005#work' address='liz gmail com'/><gd:email 
rel='http://schemas.google.com/g/2005#home' address='liz example org'/><gd:im address='liz gmail com' 
protocol='http://schemas.google.com/g/2005#GOOGLE_TALK' 
rel='http://schemas.google.com/g/2005#home'/><gd:phoneNumber rel='http://schemas.google.com/g/2005#work' 
primary='true'>(206)555-1212</gd:phoneNumber><gd:phoneNumber 
rel='http://schemas.google.com/g/2005#home'>(206)555-1213</gd:phoneNumber><gd:structuredPostalAddress 
primary='true' rel='http://schemas.google.com/g/2005#work'><gd:formattedAddress>1600 Amphitheatre Pkwy 
Mountain View</gd:formattedAddress><gd:street>1600 Amphitheatre Pkwy Mountain 
View</gd:street></gd:structuredPostalAddress><gContact:event rel='anniversary'><gd:when 
startTime='1900-01-01'/></gContact:event><gContact:externalId rel='organization' value='Number Six'/>
 <gContact:relation rel='friend'>Brian Haddock</gContact:relation><gContact:userDefinedField key='Favourite 
colour' value='Blue'/><gContact:userDefinedField key='My notes' value=''/><gContact:userDefinedField 
key='Owes me' value='£10'/><gContact:userDefinedField key='' value='Foo'/><gContact:website 
href='http://example.com/' primary='true' rel='profile'/><gContact:calendarLink 
href='http://calendar.example.com/' primary='true' rel='home'/><gContact:language code='en-GB'/><gContact:jot 
rel='other'>This is a jot.</gContact:jot><gContact:hobby>Rowing</gContact:hobby><gd:extendedProperty 
name='CALURI'>http://example.com/</gd:extendedProperty></entry>
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;SXcyfTVSLit7I2A9WhFWEkgJQAQ.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/669aee080ec47f33</id><updated>2013-07-31T06:55:08.995Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:08.995Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title>John Smith</title><content>Notes</content><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/669aee080ec47f33'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/669a
 ee080ec47f33'/><link rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/669aee080ec47f33'/><gd:name><gd:fullName>John
 
Smith</gd:fullName><gd:givenName>John</gd:givenName><gd:familyName>Smith</gd:familyName></gd:name><gContact:nickname>Big
 
J</gContact:nickname><gContact:maidenName>Smith</gContact:maidenName><gContact:shortName>Jon</gContact:shortName><gContact:initials>A.
 B. C.</gContact:initials><gContact:gender value='male'/><gContact:birthday 
when='--01-01'/><gContact:occupation>Professional bum</gContact:occupation><gContact:sensitivity 
rel='personal'/><gContact:billingInformation>Big J Enterprises, 
Ltd.</gContact:billingInformation><gContact:priority 
rel='high'/><gContact:mileage>12km</gContact:mileage><gContact:directoryServer>This is a 
server</gContact:directoryServer><gContact:subject>Charity work</gContact:subject><gContact:fileAs>J, 
Big</gContact:fileAs><gd:organization rel='http://schemas.google
 
.com/g/2005#work'><gd:orgName>OrgCorp</gd:orgName><gd:orgTitle>President</gd:orgTitle></gd:organization><gd:email
 rel='http://schemas.google.com/g/2005#work' address='liz gmail com'/><gd:email 
rel='http://schemas.google.com/g/2005#home' address='liz example org'/><gd:im address='liz gmail com' 
protocol='http://schemas.google.com/g/2005#GOOGLE_TALK' 
rel='http://schemas.google.com/g/2005#home'/><gd:phoneNumber rel='http://schemas.google.com/g/2005#work' 
primary='true'>(206)555-1212</gd:phoneNumber><gd:phoneNumber 
rel='http://schemas.google.com/g/2005#home'>(206)555-1213</gd:phoneNumber><gd:structuredPostalAddress 
primary='true' rel='http://schemas.google.com/g/2005#work'><gd:formattedAddress>1600 Amphitheatre Pkwy 
Mountain View</gd:formattedAddress><gd:street>1600 Amphitheatre Pkwy Mountain 
View</gd:street></gd:structuredPostalAddress><gContact:event rel='anniversary'><gd:when 
startTime='1900-01-01'/></gContact:event><gContact:externalId rel='organization' value='Number Six'/>
 <gContact:relation rel='friend'>Brian Haddock</gContact:relation><gContact:userDefinedField key='Favourite 
colour' value='Blue'/><gContact:userDefinedField key='My notes' value=''/><gContact:userDefinedField 
key='Owes me' value='£10'/><gContact:userDefinedField key='' value='Foo'/><gContact:website 
href='http://example.com/' primary='true' rel='profile'/><gContact:calendarLink 
href='http://calendar.example.com/' primary='true' rel='home'/><gContact:language code='en-GB'/><gContact:jot 
rel='other'>This is a jot.</gContact:jot><gContact:hobby>Rowing</gContact:hobby><gd:extendedProperty 
name='CALURI'>http://example.com/</gd:extendedProperty></entry>
   
diff --git a/gdata/tests/traces/contacts/contact-update b/gdata/tests/traces/contacts/contact-update
index 8533f0e..41f58d8 100644
--- a/gdata/tests/traces/contacts/contact-update
+++ b/gdata/tests/traces/contacts/contact-update
@@ -1,24 +1,24 @@
-> PUT /m8/feeds/contacts/libgdata.test%40googlemail.com/full/37c810c60df519d1 HTTP/1.1
-> Soup-Debug-Timestamp: 1373312492
-> Soup-Debug: SoupSession 1 (0x66d2c0), SoupMessage 4 (0x9920a0), SoupSocket 2 (0x8f2310)
+> PUT /m8/feeds/contacts/libgdata.test%40googlemail.com/full/6e556ece0dd08021 HTTP/1.1
+> Soup-Debug-Timestamp: 1375253710
+> Soup-Debug: SoupSession 1 (0x66f2e0), SoupMessage 4 (0x7d28c0), SoupSocket 2 (0x72a310)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAABKUrSFzs8R87l64lxNJ2sdklhR-Xok8Cd28d10ttViz3pkeSosVgf5IXErmDHQMM9qajB6ZiW2R88u_SpE3SfL5uy_oNPB5Mlmte4X-TOdOSUGjIGRr6cv7JClAOlVBIxmkZVSWC_cCUFKRIuZ9VBkSIKSD9kCHJEBwWlhgcZsHSNAVuv9pIagsMR06K24PtAIO_VIRitw2VisJNxl3kqjDzobMqoyQypuTBXft5oOD2vHaJWkSI5JH5JM6zBxNnxLOUPt7oqUbLeJP8xe6FsF
+> Authorization: GoogleLogin 
auth=DQAAANUAAAAXK6VbKHFb8MrY8VDDk8TplfYU8Pl8OJ_JDJA5Ku7Q1SXgGXmiXXNSumd183YRnbThEZBRN5nYygedI2kQsVKzOFACPFEPo7ShQaRGycnxE3GLDfmMWN_zc43HzWPka0-WgOvpmqpxLFWh0EYyD3pF7Yebk_jLBxJEBWU9v8FZrljhbtK-g4kiiBeuNs4kYYLTu-vF7GCSIcSC2WuHSkxI091viwmbQhZY_6fi_MaY_qgOPss9HlAHeJ543JSjtRmsVtK_4aNWbmaz9VcCr9lXEksu1dUTvroRvtlr8XyvOg
GData-Version: 3
-> If-Match: "Q3k4ezVSLit7I2A9WhFQE0wIQw0."
+> If-Match: "SHY-fDVSLit7I2A9WhFWEkgJQAQ."
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:gContact='http://schemas.google.com/contact/2008' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app' gd:etag='&quot;Q3k4ezVSLit7I2A9WhFQE0wIQw0.&quot;'><title 
type='text'>John 
Wilson</title><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/37c810c60df519d1</id><updated>2013-07-08T19:41:32Z</updated><category
 term='http://schemas.google.com/contact/2008#contact' scheme='http://schemas.google.com/g/2005#kind'/><link 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/37c810c60df519d1' 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*'/><link 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/37c810c60df519d1' 
rel='http://www.iana.org/assignments/relation/self' type='application/atom+xml'/><link 
href='https://www.google.com/m8/feeds/contacts/libgdat
 a.test%40googlemail.com/full/37c810c60df519d1' rel='http://www.iana.org/assignments/relation/edit' 
type='application/atom+xml'/><gd:name><gd:fullName>John Wilson</gd:fullName></gd:name><gd:extendedProperty 
name='contact-test'>value</gd:extendedProperty><gContact:nickname>Test Contact 
Esq.</gContact:nickname></entry>
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app' gd:etag='&quot;SHY-fDVSLit7I2A9WhFWEkgJQAQ.&quot;'><title 
type='text'>John 
Wilson</title><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/6e556ece0dd08021</id><updated>2013-07-31T06:55:09Z</updated><category
 term='http://schemas.google.com/contact/2008#contact' scheme='http://schemas.google.com/g/2005#kind'/><link 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/6e556ece0dd08021' 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*'/><link 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/6e556ece0dd08021' 
rel='http://www.iana.org/assignments/relation/self' type='application/atom+xml'/><link 
href='https://www.google.com/m8/feeds/contacts/libgdat
 a.test%40googlemail.com/full/6e556ece0dd08021' rel='http://www.iana.org/assignments/relation/edit' 
type='application/atom+xml'/><gd:name><gd:fullName>John Wilson</gd:fullName></gd:name><gd:extendedProperty 
name='contact-test'>value</gd:extendedProperty><gContact:nickname>Test Contact 
Esq.</gContact:nickname></entry>
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1373312493
-< Soup-Debug: SoupMessage 4 (0x9920a0)
+< Soup-Debug-Timestamp: 1375253710
+< Soup-Debug: SoupMessage 4 (0x7d28c0)
 < Content-Type: application/atom+xml; charset=UTF-8; type=entry
 < GData-Version: 3.1
-< ETag: "Q3czezVSLit7I2A9WhFQE0wIQw0."
-< Date: Mon, 08 Jul 2013 19:41:33 GMT
-< Expires: Mon, 08 Jul 2013 19:41:33 GMT
+< ETag: "QXw_eDVSLit7I2A9WhFWEkgJQAU."
+< Date: Wed, 31 Jul 2013 06:55:10 GMT
+< Expires: Wed, 31 Jul 2013 06:55:10 GMT
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
@@ -26,5 +26,5 @@
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;Q3czezVSLit7I2A9WhFQE0wIQw0.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/37c810c60df519d1</id><updated>2013-07-08T19:41:32.983Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:41:32.983Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title>John Wilson</title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/37c810c60df519d1'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/37c810c60df519d1'/><link re
 l='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/37c810c60df519d1'/><gd:name><gd:fullName>John
 
Wilson</gd:fullName><gd:givenName>John</gd:givenName><gd:familyName>Wilson</gd:familyName></gd:name><gContact:nickname>Test
 Contact Esq.</gContact:nickname><gd:extendedProperty name='contact-test'>value</gd:extendedProperty></entry>
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;QXw_eDVSLit7I2A9WhFWEkgJQAU.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/6e556ece0dd08021</id><updated>2013-07-31T06:55:10.240Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:10.240Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title>John Wilson</title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/6e556ece0dd08021'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/6e556ece0dd08021'/><link re
 l='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/6e556ece0dd08021'/><gd:name><gd:fullName>John
 
Wilson</gd:fullName><gd:givenName>John</gd:givenName><gd:familyName>Wilson</gd:familyName></gd:name><gContact:nickname>Test
 Contact Esq.</gContact:nickname><gd:extendedProperty name='contact-test'>value</gd:extendedProperty></entry>
   
diff --git a/gdata/tests/traces/contacts/global-authentication 
b/gdata/tests/traces/contacts/global-authentication
index 7d683d3..ee37a29 100644
--- a/gdata/tests/traces/contacts/global-authentication
+++ b/gdata/tests/traces/contacts/global-authentication
@@ -1,6 +1,6 @@
POST /accounts/ClientLogin HTTP/1.1
-> Soup-Debug-Timestamp: 1373312486
-> Soup-Debug: SoupSession 1 (0x66d1b0), SoupMessage 1 (0x9920a0), SoupSocket 1 (0x8f20d0)
+> Soup-Debug-Timestamp: 1375253706
+> Soup-Debug: SoupSession 1 (0x66f1d0), SoupMessage 1 (0x7d28c0), SoupSocket 1 (0x72a0d0)
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=cp&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1373312486
-< Soup-Debug: SoupMessage 1 (0x9920a0)
+< Soup-Debug-Timestamp: 1375253706
+< Soup-Debug: SoupMessage 1 (0x7d28c0)
 < Content-Type: text/plain
 < Cache-control: no-cache, no-store
 < Pragma: no-cache
 < Expires: Mon, 01-Jan-1990 00:00:00 GMT
-< Date: Mon, 08 Jul 2013 19:41:26 GMT
+< Date: Wed, 31 Jul 2013 06:55:06 GMT
 < X-Content-Type-Options: nosniff
 < X-XSS-Protection: 1; mode=block
-< Content-Length: 881
+< Content-Length: 947
 < Server: GSE
 < 
-< 
SID=DQAAAM0AAADPBnBpvELnjeHy5l6gL9uDe5bvpSrcuJTL8i3_PEKiRMbvHud94KB9uXBDoTGia5hu0I5G0IH7KkRHGUBHnHeGva_d5BxH8QhaLJJ_xLwwQ5lAopEcr5QeJ6XrLqIjESZwQzcGzdrkN6mFqe70kmGQ2WDNEpeSYccnTo_2RgSlxRdV0UbIoODBGl3w7lmlsE-C20Y7__sWHXOUxbY2Xd1l0H20yDIkS7gVkUrxhEA5Z22u4GIUP9gB0TRppybLanPiejZF3w2kYMWBuYM3jF9f
-< 
LSID=DQAAAM8AAABKUrSFzs8R87l64lxNJ2sdklhR-Xok8Cd28d10ttViz3pkeSosVgf5IXErmDHQMM-6JbBk0Lgzwb_HCbnw9037uIwbl3u0F1vBADIfNuUtzS6teSmp7JI1Dv1KtBQHZpm--6S8jk_p1pwMAV8Xnn7B2cpg8FFcIg2guoX_001zL7B2TzCP2t5XQ3b9tA7Xlo8SCFLpOlTM4EwvuilEpP3wHcyT35uRtriAxlDEA5x9rDuzu7tm02kPeAWjdQza05LlbSJWy4dsgyNGIfkALjm4
-< 
Auth=DQAAAM4AAABKUrSFzs8R87l64lxNJ2sdklhR-Xok8Cd28d10ttViz3pkeSosVgf5IXErmDHQMM9qajB6ZiW2R88u_SpE3SfL5uy_oNPB5Mlmte4X-TOdOSUGjIGRr6cv7JClAOlVBIxmkZVSWC_cCUFKRIuZ9VBkSIKSD9kCHJEBwWlhgcZsHSNAVuv9pIagsMR06K24PtAIO_VIRitw2VisJNxl3kqjDzobMqoyQypuTBXft5oOD2vHaJWkSI5JH5JM6zBxNnxLOUPt7oqUbLeJP8xe6FsF
+< 
SID=DQAAANMAAABiomI0i2mTz0XIsHiXhvkCAIhg77jDxAnpZZJkD8k7BS8fN-amtX5cmwp1cM_k31GHQ0k1SoFRGQ60gEq-hMQ5ECTTT3AH4aB6mOzbUeFXDefhXpxkWF3TUh6qxJ1gl9SbiVRyKyVNV6L9Qso4VaBi-DHys8O-GBxd4YBigvSeWG27PdxMp1LGiYUki12YQKtT_GbDKXLaPVYjsXgABlF2LvQ9Gi_Yh0St9iU0483baeDiTlXgQWLG5e_R89gZ07Y8CU1c-Ckr39nhchOVlf8n-tBoJhVIHTSXqL8mF9-F4A
+< 
LSID=DQAAANUAAAAXK6VbKHFb8MrY8VDDk8TplfYU8Pl8OJ_JDJA5Ku7Q1SXgGXmiXXNSumd183YRnbSZlFuPWTwnL8PkzUc2mii2dkgEBQY7yQ7U3axV4WxDa8Yha6huzxKmb_2zS60rC1WsU1soyNONQQ4cF1PSFbk9ZNSdhTL7k57OmAT4p-qCI0htfGJtypLry6C-gnmWsH3RF2gZESDacg8bjCK_eyUgJJEIss_JzLgmP1ik7qXM6gmZV0eLodDMPkTxG3QI9RCce9SU3pj3gVVzt_vXGrrK0QfYSBVJnYmY_1Sn2Qrsgg
+< 
Auth=DQAAANUAAAAXK6VbKHFb8MrY8VDDk8TplfYU8Pl8OJ_JDJA5Ku7Q1SXgGXmiXXNSumd183YRnbThEZBRN5nYygedI2kQsVKzOFACPFEPo7ShQaRGycnxE3GLDfmMWN_zc43HzWPka0-WgOvpmqpxLFWh0EYyD3pF7Yebk_jLBxJEBWU9v8FZrljhbtK-g4kiiBeuNs4kYYLTu-vF7GCSIcSC2WuHSkxI091viwmbQhZY_6fi_MaY_qgOPss9HlAHeJ543JSjtRmsVtK_4aNWbmaz9VcCr9lXEksu1dUTvroRvtlr8XyvOg
   
diff --git a/gdata/tests/traces/contacts/group-insert b/gdata/tests/traces/contacts/group-insert
index 9e93db6..d8f980e 100644
--- a/gdata/tests/traces/contacts/group-insert
+++ b/gdata/tests/traces/contacts/group-insert
@@ -1,8 +1,8 @@
POST /m8/feeds/groups/default/full HTTP/1.1
-> Soup-Debug-Timestamp: 1373312512
-> Soup-Debug: SoupSession 1 (0x66d2c0), SoupMessage 41 (0x992280), SoupSocket 20 (0x8f2610)
+> Soup-Debug-Timestamp: 1375253742
+> Soup-Debug: SoupSession 1 (0x66f2e0), SoupMessage 41 (0x7d2aa0), SoupSocket 20 (0x72a610)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAABKUrSFzs8R87l64lxNJ2sdklhR-Xok8Cd28d10ttViz3pkeSosVgf5IXErmDHQMM9qajB6ZiW2R88u_SpE3SfL5uy_oNPB5Mlmte4X-TOdOSUGjIGRr6cv7JClAOlVBIxmkZVSWC_cCUFKRIuZ9VBkSIKSD9kCHJEBwWlhgcZsHSNAVuv9pIagsMR06K24PtAIO_VIRitw2VisJNxl3kqjDzobMqoyQypuTBXft5oOD2vHaJWkSI5JH5JM6zBxNnxLOUPt7oqUbLeJP8xe6FsF
+> Authorization: GoogleLogin 
auth=DQAAANUAAAAXK6VbKHFb8MrY8VDDk8TplfYU8Pl8OJ_JDJA5Ku7Q1SXgGXmiXXNSumd183YRnbThEZBRN5nYygedI2kQsVKzOFACPFEPo7ShQaRGycnxE3GLDfmMWN_zc43HzWPka0-WgOvpmqpxLFWh0EYyD3pF7Yebk_jLBxJEBWU9v8FZrljhbtK-g4kiiBeuNs4kYYLTu-vF7GCSIcSC2WuHSkxI091viwmbQhZY_6fi_MaY_qgOPss9HlAHeJ543JSjtRmsVtK_4aNWbmaz9VcCr9lXEksu1dUTvroRvtlr8XyvOg
GData-Version: 3
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
@@ -11,22 +11,22 @@
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app'><title type='text'>New Group!</title><content type='text'>New 
Group!</content><category term='http://schemas.google.com/contact/2008#group' 
scheme='http://schemas.google.com/g/2005#kind'/><gd:extendedProperty 
name='foobar'>barfoo</gd:extendedProperty></entry>
   
 < HTTP/1.1 201 Created
-< Soup-Debug-Timestamp: 1373312512
-< Soup-Debug: SoupMessage 41 (0x992280)
+< Soup-Debug-Timestamp: 1375253742
+< Soup-Debug: SoupMessage 41 (0x7d2aa0)
 < Content-Type: application/atom+xml; charset=UTF-8; type=entry
-< Expires: Mon, 08 Jul 2013 19:41:52 GMT
-< Date: Mon, 08 Jul 2013 19:41:52 GMT
+< Expires: Wed, 31 Jul 2013 06:55:42 GMT
+< Date: Wed, 31 Jul 2013 06:55:42 GMT
 < Cache-control: private, max-age=0, must-revalidate, no-transform
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 3.1
-< ETag: "Q3Y4ezVSLyt7I2A9WhFQE0wIQgU."
-< Location: https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/6e9d055e895bedba
-< Content-Location: 
https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/6e9d055e895bedba
+< ETag: "Q3g7fDVSLit7I2A9WhFWEkgJQAA."
+< Location: https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/609cf4d409a6b3b4
+< Content-Location: 
https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/609cf4d409a6b3b4
 < 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:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;Q3Y4ezVSLyt7I2A9WhFQE0wIQgU.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/6e9d055e895bedba</id><updated>2013-07-08T19:41:52.833Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:41:52.833Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>New Group!</title><content>New 
Group!</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/6e9d055e895bedba'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/6e9d055e895bedba'/><gd:extendedPropert
 y name='foobar'>barfoo</gd:extendedProperty></entry>
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;Q3g7fDVSLit7I2A9WhFWEkgJQAA.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/609cf4d409a6b3b4</id><updated>2013-07-31T06:55:42.604Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:42.604Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>New Group!</title><content>New 
Group!</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/609cf4d409a6b3b4'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/609cf4d409a6b3b4'/><gd:extendedPropert
 y name='foobar'>barfoo</gd:extendedProperty></entry>
   
diff --git a/gdata/tests/traces/contacts/group-insert-async b/gdata/tests/traces/contacts/group_insert-async
similarity index 57%
copy from gdata/tests/traces/contacts/group-insert-async
copy to gdata/tests/traces/contacts/group_insert-async
index 73871b2..21753e8 100644
--- a/gdata/tests/traces/contacts/group-insert-async
+++ b/gdata/tests/traces/contacts/group_insert-async
@@ -1,8 +1,8 @@
POST /m8/feeds/groups/default/full HTTP/1.1
-> Soup-Debug-Timestamp: 1373312526
-> Soup-Debug: SoupSession 1 (0x66d2c0), SoupMessage 59 (0x7fffe0017580), SoupSocket 35 (0x7fffdc003e00)
+> Soup-Debug-Timestamp: 1375253747
+> Soup-Debug: SoupSession 1 (0x66f2e0), SoupMessage 56 (0x7fffe4002f70), SoupSocket 32 (0x7fffe0028250)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAABKUrSFzs8R87l64lxNJ2sdklhR-Xok8Cd28d10ttViz3pkeSosVgf5IXErmDHQMM9qajB6ZiW2R88u_SpE3SfL5uy_oNPB5Mlmte4X-TOdOSUGjIGRr6cv7JClAOlVBIxmkZVSWC_cCUFKRIuZ9VBkSIKSD9kCHJEBwWlhgcZsHSNAVuv9pIagsMR06K24PtAIO_VIRitw2VisJNxl3kqjDzobMqoyQypuTBXft5oOD2vHaJWkSI5JH5JM6zBxNnxLOUPt7oqUbLeJP8xe6FsF
+> Authorization: GoogleLogin 
auth=DQAAANUAAAAXK6VbKHFb8MrY8VDDk8TplfYU8Pl8OJ_JDJA5Ku7Q1SXgGXmiXXNSumd183YRnbThEZBRN5nYygedI2kQsVKzOFACPFEPo7ShQaRGycnxE3GLDfmMWN_zc43HzWPka0-WgOvpmqpxLFWh0EYyD3pF7Yebk_jLBxJEBWU9v8FZrljhbtK-g4kiiBeuNs4kYYLTu-vF7GCSIcSC2WuHSkxI091viwmbQhZY_6fi_MaY_qgOPss9HlAHeJ543JSjtRmsVtK_4aNWbmaz9VcCr9lXEksu1dUTvroRvtlr8XyvOg
GData-Version: 3
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
@@ -11,22 +11,22 @@
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app'><title type='text'>New Group!</title><content type='text'>New 
Group!</content><category term='http://schemas.google.com/contact/2008#group' 
scheme='http://schemas.google.com/g/2005#kind'/><gd:extendedProperty 
name='foobar'>barfoo</gd:extendedProperty></entry>
   
 < HTTP/1.1 201 Created
-< Soup-Debug-Timestamp: 1373312526
-< Soup-Debug: SoupMessage 59 (0x7fffe0017580)
+< Soup-Debug-Timestamp: 1375253747
+< Soup-Debug: SoupMessage 56 (0x7fffe4002f70)
 < Content-Type: application/atom+xml; charset=UTF-8; type=entry
-< Expires: Mon, 08 Jul 2013 19:42:06 GMT
-< Date: Mon, 08 Jul 2013 19:42:06 GMT
+< Expires: Wed, 31 Jul 2013 06:55:47 GMT
+< Date: Wed, 31 Jul 2013 06:55:47 GMT
 < Cache-control: private, max-age=0, must-revalidate, no-transform
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 3.1
-< ETag: "R3c4fjVSLyt7I2A9WhFQE0wIQgY."
-< Location: https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/5b7e3fcd0f252526
-< Content-Location: 
https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/5b7e3fcd0f252526
+< ETag: "Rns-eTVSLit7I2A9WhFWEkgJQAA."
+< Location: https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/51ef079d09c9c9fb
+< Content-Location: 
https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/51ef079d09c9c9fb
 < 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:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;R3c4fjVSLyt7I2A9WhFQE0wIQgY.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/5b7e3fcd0f252526</id><updated>2013-07-08T19:42:06.936Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:42:06.936Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>New Group!</title><content>New 
Group!</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/5b7e3fcd0f252526'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/5b7e3fcd0f252526'/><gd:extendedPropert
 y name='foobar'>barfoo</gd:extendedProperty></entry>
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;Rns-eTVSLit7I2A9WhFWEkgJQAA.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/51ef079d09c9c9fb</id><updated>2013-07-31T06:55:47.551Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:47.551Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>New Group!</title><content>New 
Group!</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/51ef079d09c9c9fb'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/51ef079d09c9c9fb'/><gd:extendedPropert
 y name='foobar'>barfoo</gd:extendedProperty></entry>
   
diff --git a/gdata/tests/traces/contacts/group-insert-async 
b/gdata/tests/traces/contacts/group_insert-async-cancellation
similarity index 57%
rename from gdata/tests/traces/contacts/group-insert-async
rename to gdata/tests/traces/contacts/group_insert-async-cancellation
index 73871b2..54e0970 100644
--- a/gdata/tests/traces/contacts/group-insert-async
+++ b/gdata/tests/traces/contacts/group_insert-async-cancellation
@@ -1,8 +1,8 @@
POST /m8/feeds/groups/default/full HTTP/1.1
-> Soup-Debug-Timestamp: 1373312526
-> Soup-Debug: SoupSession 1 (0x66d2c0), SoupMessage 59 (0x7fffe0017580), SoupSocket 35 (0x7fffdc003e00)
+> Soup-Debug-Timestamp: 1375253748
+> Soup-Debug: SoupSession 1 (0x66f2e0), SoupMessage 57 (0x7fffe4002d90), SoupSocket 33 (0x7fffe0028490)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAABKUrSFzs8R87l64lxNJ2sdklhR-Xok8Cd28d10ttViz3pkeSosVgf5IXErmDHQMM9qajB6ZiW2R88u_SpE3SfL5uy_oNPB5Mlmte4X-TOdOSUGjIGRr6cv7JClAOlVBIxmkZVSWC_cCUFKRIuZ9VBkSIKSD9kCHJEBwWlhgcZsHSNAVuv9pIagsMR06K24PtAIO_VIRitw2VisJNxl3kqjDzobMqoyQypuTBXft5oOD2vHaJWkSI5JH5JM6zBxNnxLOUPt7oqUbLeJP8xe6FsF
+> Authorization: GoogleLogin 
auth=DQAAANUAAAAXK6VbKHFb8MrY8VDDk8TplfYU8Pl8OJ_JDJA5Ku7Q1SXgGXmiXXNSumd183YRnbThEZBRN5nYygedI2kQsVKzOFACPFEPo7ShQaRGycnxE3GLDfmMWN_zc43HzWPka0-WgOvpmqpxLFWh0EYyD3pF7Yebk_jLBxJEBWU9v8FZrljhbtK-g4kiiBeuNs4kYYLTu-vF7GCSIcSC2WuHSkxI091viwmbQhZY_6fi_MaY_qgOPss9HlAHeJ543JSjtRmsVtK_4aNWbmaz9VcCr9lXEksu1dUTvroRvtlr8XyvOg
GData-Version: 3
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
@@ -11,22 +11,22 @@
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app'><title type='text'>New Group!</title><content type='text'>New 
Group!</content><category term='http://schemas.google.com/contact/2008#group' 
scheme='http://schemas.google.com/g/2005#kind'/><gd:extendedProperty 
name='foobar'>barfoo</gd:extendedProperty></entry>
   
 < HTTP/1.1 201 Created
-< Soup-Debug-Timestamp: 1373312526
-< Soup-Debug: SoupMessage 59 (0x7fffe0017580)
+< Soup-Debug-Timestamp: 1375253748
+< Soup-Debug: SoupMessage 57 (0x7fffe4002d90)
 < Content-Type: application/atom+xml; charset=UTF-8; type=entry
-< Expires: Mon, 08 Jul 2013 19:42:06 GMT
-< Date: Mon, 08 Jul 2013 19:42:06 GMT
+< Expires: Wed, 31 Jul 2013 06:55:48 GMT
+< Date: Wed, 31 Jul 2013 06:55:48 GMT
 < Cache-control: private, max-age=0, must-revalidate, no-transform
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 3.1
-< ETag: "R3c4fjVSLyt7I2A9WhFQE0wIQgY."
-< Location: https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/5b7e3fcd0f252526
-< Content-Location: 
https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/5b7e3fcd0f252526
+< ETag: "SXw_fzVSLit7I2A9WhFWEkgJQAA."
+< Location: https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/696510588e5e8665
+< Content-Location: 
https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/696510588e5e8665
 < 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:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;R3c4fjVSLyt7I2A9WhFQE0wIQgY.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/5b7e3fcd0f252526</id><updated>2013-07-08T19:42:06.936Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:42:06.936Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>New Group!</title><content>New 
Group!</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/5b7e3fcd0f252526'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/5b7e3fcd0f252526'/><gd:extendedPropert
 y name='foobar'>barfoo</gd:extendedProperty></entry>
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;SXw_fzVSLit7I2A9WhFWEkgJQAA.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/696510588e5e8665</id><updated>2013-07-31T06:55:48.247Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:48.247Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>New Group!</title><content>New 
Group!</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/696510588e5e8665'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/696510588e5e8665'/><gd:extendedPropert
 y name='foobar'>barfoo</gd:extendedProperty></entry>
   
diff --git a/gdata/tests/traces/contacts/query-all-contacts b/gdata/tests/traces/contacts/query-all-contacts
index 29f0836..6946035 100644
--- a/gdata/tests/traces/contacts/query-all-contacts
+++ b/gdata/tests/traces/contacts/query-all-contacts
@@ -1,28 +1,28 @@
GET /m8/feeds/contacts/default/full HTTP/1.1
-> Soup-Debug-Timestamp: 1373312496
-> Soup-Debug: SoupSession 1 (0x66d2c0), SoupMessage 10 (0x9920a0), SoupSocket 5 (0x8f2550)
+> Soup-Debug-Timestamp: 1375253717
+> Soup-Debug: SoupSession 1 (0x66f2e0), SoupMessage 10 (0x7d28c0), SoupSocket 5 (0x72a550)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAABKUrSFzs8R87l64lxNJ2sdklhR-Xok8Cd28d10ttViz3pkeSosVgf5IXErmDHQMM9qajB6ZiW2R88u_SpE3SfL5uy_oNPB5Mlmte4X-TOdOSUGjIGRr6cv7JClAOlVBIxmkZVSWC_cCUFKRIuZ9VBkSIKSD9kCHJEBwWlhgcZsHSNAVuv9pIagsMR06K24PtAIO_VIRitw2VisJNxl3kqjDzobMqoyQypuTBXft5oOD2vHaJWkSI5JH5JM6zBxNnxLOUPt7oqUbLeJP8xe6FsF
+> Authorization: GoogleLogin 
auth=DQAAANUAAAAXK6VbKHFb8MrY8VDDk8TplfYU8Pl8OJ_JDJA5Ku7Q1SXgGXmiXXNSumd183YRnbThEZBRN5nYygedI2kQsVKzOFACPFEPo7ShQaRGycnxE3GLDfmMWN_zc43HzWPka0-WgOvpmqpxLFWh0EYyD3pF7Yebk_jLBxJEBWU9v8FZrljhbtK-g4kiiBeuNs4kYYLTu-vF7GCSIcSC2WuHSkxI091viwmbQhZY_6fi_MaY_qgOPss9HlAHeJ543JSjtRmsVtK_4aNWbmaz9VcCr9lXEksu1dUTvroRvtlr8XyvOg
GData-Version: 3
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1373312496
-< Soup-Debug: SoupMessage 10 (0x9920a0)
+< Soup-Debug-Timestamp: 1375253717
+< Soup-Debug: SoupMessage 10 (0x7d28c0)
 < Content-Type: application/atom+xml; charset=UTF-8; type=feed
-< Expires: Mon, 08 Jul 2013 19:41:36 GMT
-< Date: Mon, 08 Jul 2013 19:41:36 GMT
+< Expires: Wed, 31 Jul 2013 06:55:17 GMT
+< Date: Wed, 31 Jul 2013 06:55:17 GMT
 < Cache-control: private, max-age=0, must-revalidate, no-transform
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 3.1
-< ETag: W/"CEMNR3o4eyt7I2A9WhFQE0w."
-< Last-Modified: Mon, 08 Jul 2013 19:41:36 GMT
+< ETag: W/"CUAFRn4zfit7I2A9WhFWEkg."
+< Last-Modified: Wed, 31 Jul 2013 06:55: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:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='W/&quot;CEMNR3o4eyt7I2A9WhFQE0w.&quot;'><id>libgdata 
test googlemail com</id><updated>2013-07-08T19:41:36.433Z</updated><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title>GData Test's Contacts</title><link 
rel='alternate' type='text/html' href='http://www.google.com/'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full'/><link 
rel='http://schemas.
 google.com/g/2005#batch' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/batch'/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full?max-results=25'/><link 
rel='next' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full?start-index=26&amp;max-results=25'/><author><name>GData
 Test</name><email>libgdata test googlemail com</email></author><generator version='1.0' 
uri='http://www.google.com/m8/feeds'>Contacts</generator><openSearch:totalResults>72</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry
 
gd:etag='&quot;R3k_fTVSLit7I2A9WhJbGUQNRgE.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/4b7059f89aa79c1</id><updated>2012-09-30T09:25:56.745Z</updated><app:edited
 xmln
 s:app='http://www.w3.org/2007/app'>2012-09-30T09:25:56.745Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title>Toby</title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/4b7059f89aa79c1'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/4b7059f89aa79c1'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/4b7059f89aa79c1'/><gd:name><gd:fullName>Toby</gd:fullName><gd:givenName>Brian</gd:givenName></gd:name></entry><entry
 
gd:etag='&quot;RX05cTVSLyt7I2A9WhJTGUwJRQA.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/65bc1a20a718f48</id><updated>2012-06-28T19:54:04.329Z</updated><app:edited
 xmlns:app='h
 ttp://www.w3.org/2007/app'>2012-06-28T19:54:04.329Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/65bc1a20a718f48' 
gd:etag='&quot;cgl0NAVFSit7I2BiPUJORzYOFXJCOkoLZBQ.&quot;'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/65bc1a20a718f48'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/65bc1a20a718f48'/></entry><entry
 
gd:etag='&quot;R3w7fTVSLyt7I2A9WhJSE0gORQY.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/7000f108822c609</id><updated>2012-07-03T22:23:46.205Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-07-03
 T22:23:46.205Z</app:edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/7000f108822c609' 
gd:etag='&quot;MjNyZn8GSit7I2BGJE4IcUQOM1YUNG0hMlE.&quot;'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/7000f108822c609'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/7000f108822c609'/></entry><entry
 
gd:etag='&quot;Q3Y4fzBQLCt7I2A9WhFTFkoJQwU.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/7b573890ed9711e</id><updated>2013-06-08T06:36:52.837Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-06-08T06:36:52.837Z</app:edited><category 
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title>John Smith</title><content>Notes</content><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/7b573890ed9711e'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/7b573890ed9711e'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/7b573890ed9711e'/><gd:name><gd:fullName>John
 
Smith</gd:fullName><gd:givenName>John</gd:givenName><gd:familyName>Smith</gd:familyName></gd:name><gContact:nickname>Big
 
J</gContact:nickname><gContact:maidenName>Smith</gContact:maidenName><gContact:shortName>Jon</gContact:shortName><gContact:initials>A.
 B. C.</gContact:initials><gContact:gender value='male'/><gContact:birthday when='--01-
 01'/><gContact:occupation>Professional bum</gContact:occupation><gContact:sensitivity 
rel='personal'/><gContact:billingInformation>Big J Enterprises, 
Ltd.</gContact:billingInformation><gContact:priority 
rel='high'/><gContact:mileage>12km</gContact:mileage><gContact:directoryServer>This is a 
server</gContact:directoryServer><gContact:subject>Charity work</gContact:subject><gContact:fileAs>J, 
Big</gContact:fileAs><gd:organization 
rel='http://schemas.google.com/g/2005#work'><gd:orgName>OrgCorp</gd:orgName><gd:orgTitle>President</gd:orgTitle></gd:organization><gd:email
 rel='http://schemas.google.com/g/2005#work' address='liz gmail com'/><gd:email 
rel='http://schemas.google.com/g/2005#home' address='liz example org'/><gd:im address='liz gmail com' 
protocol='http://schemas.google.com/g/2005#GOOGLE_TALK' 
rel='http://schemas.google.com/g/2005#home'/><gd:phoneNumber rel='http://schemas.google.com/g/2005#work' 
primary='true'>(206)555-1212</gd:phoneNumber><gd:phoneNumber rel='http://sc
 hemas.google.com/g/2005#home'>(206)555-1213</gd:phoneNumber><gd:structuredPostalAddress primary='true' 
rel='http://schemas.google.com/g/2005#work'><gd:formattedAddress>1600 Amphitheatre Pkwy Mountain 
View</gd:formattedAddress><gd:street>1600 Amphitheatre Pkwy Mountain 
View</gd:street></gd:structuredPostalAddress><gContact:event rel='anniversary'><gd:when 
startTime='1900-01-01'/></gContact:event><gContact:externalId rel='organization' value='Number 
Six'/><gContact:relation rel='friend'>Brian Haddock</gContact:relation><gContact:userDefinedField 
key='Favourite colour' value='Blue'/><gContact:userDefinedField key='My notes' 
value=''/><gContact:userDefinedField key='Owes me' value='£10'/><gContact:userDefinedField key='' 
value='Foo'/><gContact:website href='http://example.com/' primary='true' 
rel='profile'/><gContact:calendarLink href='http://calendar.example.com/' primary='true' 
rel='home'/><gContact:language code='en-GB'/><gContact:jot rel='other'>This is a jot.</gContact:jot
<gContact:hobby>Rowing</gContact:hobby><gd:extendedProperty 
name='CALURI'>http://example.com/</gd:extendedProperty></entry><entry 
gd:etag='&quot;Q3Y4fzBQLCt7I2A9WhFTFkoJQwU.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/ac76dcd8e30ac6f</id><updated>2013-06-08T06:36:52.837Z</updated><app:edited
xmlns:app='http://www.w3.org/2007/app'>2013-06-08T06:36:52.837Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title>John 
Smith</title><content>Notes</content><link rel='http://schemas.google.com/contacts/2008/rel#photo' 
type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/ac76dcd8e30ac6f'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/ac76dcd8e30ac6f'/><link 
rel='edit' type='application/atom+xml' href='https://www.google.com/m8/feeds/contacts/
 libgdata.test%40googlemail.com/full/ac76dcd8e30ac6f'/><gd:name><gd:fullName>John 
Smith</gd:fullName><gd:givenName>John</gd:givenName><gd:familyName>Smith</gd:familyName></gd:name><gContact:nickname>Big
 
J</gContact:nickname><gContact:maidenName>Smith</gContact:maidenName><gContact:shortName>Jon</gContact:shortName><gContact:initials>A.
 B. C.</gContact:initials><gContact:gender value='male'/><gContact:birthday 
when='--01-01'/><gContact:occupation>Professional bum</gContact:occupation><gContact:sensitivity 
rel='personal'/><gContact:billingInformation>Big J Enterprises, 
Ltd.</gContact:billingInformation><gContact:priority 
rel='high'/><gContact:mileage>12km</gContact:mileage><gContact:directoryServer>This is a 
server</gContact:directoryServer><gContact:subject>Charity work</gContact:subject><gd:organization 
rel='http://schemas.google.com/g/2005#work'><gd:orgName>OrgCorp</gd:orgName><gd:orgTitle>President</gd:orgTitle></gd:organization><gd:email
 rel='http://schemas.google.com/g/20
 05#work' address='liz gmail com'/><gd:email rel='http://schemas.google.com/g/2005#home' address='liz example 
org'/><gd:im address='liz gmail com' protocol='http://schemas.google.com/g/2005#GOOGLE_TALK' 
rel='http://schemas.google.com/g/2005#home'/><gd:phoneNumber rel='http://schemas.google.com/g/2005#work' 
primary='true'>(206)555-1212</gd:phoneNumber><gd:phoneNumber 
rel='http://schemas.google.com/g/2005#home'>(206)555-1213</gd:phoneNumber><gd:structuredPostalAddress 
primary='true' rel='http://schemas.google.com/g/2005#work'><gd:formattedAddress>1600 Amphitheatre Pkwy 
Mountain View</gd:formattedAddress><gd:street>1600 Amphitheatre Pkwy Mountain 
View</gd:street></gd:structuredPostalAddress><gContact:event rel='anniversary'><gd:when 
startTime='1900-01-01'/></gContact:event><gContact:externalId rel='organization' value='Number 
Six'/><gContact:relation rel='friend'>Brian Haddock</gContact:relation><gContact:userDefinedField 
key='Favourite colour' value='Blue'/><gContact:userDefine
 dField key='My notes' value=''/><gContact:userDefinedField key='Owes me' value='£10'/><gContact:website 
href='http://example.com/' primary='true' rel='profile'/><gContact:calendarLink 
href='http://calendar.example.com/' primary='true' rel='home'/><gContact:language code='en-GB'/><gContact:jot 
rel='other'>This is a jot.</gContact:jot><gContact:hobby>Rowing</gContact:hobby><gd:extendedProperty 
name='CALURI'>http://example.com/</gd:extendedProperty></entry><entry 
gd:etag='&quot;Qnk8fzVSLit7I2A9WhdQF0QIRwM.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/cd6c6d88af66408</id><updated>2011-08-19T22:14:33.777Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2011-08-19T22:14:33.777Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' href='https://www.google.com/m8/feeds
 /photos/media/libgdata.test%40googlemail.com/cd6c6d88af66408' 
gd:etag='&quot;cDpVYHkGbCt7I2BNH3YJVDd-JF0rPkMxR1I.&quot;'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/cd6c6d88af66408'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/cd6c6d88af66408'/><gContact:nickname>Test
 Contact Esq.</gContact:nickname></entry><entry 
gd:etag='&quot;RHs5eTVSLit7I2A9WhJSE0gORAM.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/102482f70d9b84e7</id><updated>2012-07-03T22:26:15.521Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-07-03T22:26:15.521Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' href='https://www
 .google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/102482f70d9b84e7'/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/102482f70d9b84e7'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/102482f70d9b84e7'/><gContact:nickname>Test
 Contact 2</gContact:nickname></entry><entry 
gd:etag='&quot;RXc6cTVSLit7I2A9WhJSE0gORAM.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/1226d54c88cfd048</id><updated>2012-07-03T22:26:14.919Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-07-03T22:26:14.919Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgd
 ata.test%40googlemail.com/1226d54c88cfd048'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/1226d54c88cfd048'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/1226d54c88cfd048'/><gContact:nickname>Test
 Contact 1</gContact:nickname></entry><entry 
gd:etag='&quot;QH0_eTVSLit7I2A9WhFQEkUJRww.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/1596e0680819dd85</id><updated>2013-07-08T11:31:21.341Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T11:31:21.341Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title>Toby</title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/1596e0680
 819dd85'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/1596e0680819dd85'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/1596e0680819dd85'/><gd:name><gd:fullName>Toby</gd:fullName><gd:givenName>Brian</gd:givenName></gd:name></entry><entry
 
gd:etag='&quot;Q3Y4fzBQLCt7I2A9WhFTFkoJQwU.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/161aa4b38b4338c4</id><updated>2013-06-08T06:36:52.837Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-06-08T06:36:52.837Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title>John Smith</title><content>Notes</content><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%
 40googlemail.com/161aa4b38b4338c4'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/161aa4b38b4338c4'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/161aa4b38b4338c4'/><gd:name><gd:fullName>John
 
Smith</gd:fullName><gd:givenName>John</gd:givenName><gd:familyName>Smith</gd:familyName></gd:name><gContact:nickname>Big
 
J</gContact:nickname><gContact:maidenName>Smith</gContact:maidenName><gContact:shortName>Jon</gContact:shortName><gContact:initials>A.
 B. C.</gContact:initials><gContact:gender value='male'/><gContact:birthday 
when='--01-01'/><gContact:occupation>Professional bum</gContact:occupation><gContact:sensitivity 
rel='personal'/><gContact:billingInformation>Big J Enterprises, 
Ltd.</gContact:billingInformation><gContact:priority 
rel='high'/><gContact:mileage>12km</gContact:mileage><gContact:directoryServer>This is 
 a server</gContact:directoryServer><gContact:subject>Charity work</gContact:subject><gContact:fileAs>J, 
Big</gContact:fileAs><gd:organization 
rel='http://schemas.google.com/g/2005#work'><gd:orgName>OrgCorp</gd:orgName><gd:orgTitle>President</gd:orgTitle></gd:organization><gd:email
 rel='http://schemas.google.com/g/2005#work' address='liz gmail com'/><gd:email 
rel='http://schemas.google.com/g/2005#home' address='liz example org'/><gd:im address='liz gmail com' 
protocol='http://schemas.google.com/g/2005#GOOGLE_TALK' 
rel='http://schemas.google.com/g/2005#home'/><gd:phoneNumber rel='http://schemas.google.com/g/2005#work' 
primary='true'>(206)555-1212</gd:phoneNumber><gd:phoneNumber 
rel='http://schemas.google.com/g/2005#home'>(206)555-1213</gd:phoneNumber><gd:structuredPostalAddress 
primary='true' rel='http://schemas.google.com/g/2005#work'><gd:formattedAddress>1600 Amphitheatre Pkwy 
Mountain View</gd:formattedAddress><gd:street>1600 Amphitheatre Pkwy Mountain View</gd:street></gd:
 structuredPostalAddress><gContact:event rel='anniversary'><gd:when 
startTime='1900-01-01'/></gContact:event><gContact:externalId rel='organization' value='Number 
Six'/><gContact:relation rel='friend'>Brian Haddock</gContact:relation><gContact:userDefinedField 
key='Favourite colour' value='Blue'/><gContact:userDefinedField key='My notes' 
value=''/><gContact:userDefinedField key='Owes me' value='£10'/><gContact:userDefinedField key='' 
value='Foo'/><gContact:website href='http://example.com/' primary='true' 
rel='profile'/><gContact:calendarLink href='http://calendar.example.com/' primary='true' 
rel='home'/><gContact:language code='en-GB'/><gContact:jot rel='other'>This is a 
jot.</gContact:jot><gContact:hobby>Rowing</gContact:hobby><gd:extendedProperty 
name='CALURI'>http://example.com/</gd:extendedProperty></entry><entry 
gd:etag='&quot;QXw6fDVSLit7I2A9WhJSE0gJQAA.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/1666943f09922805</id><update
 d>2012-07-03T22:15:40.214Z</updated><app:edited 
xmlns:app='http://www.w3.org/2007/app'>2012-07-03T22:15:40.214Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/1666943f09922805' 
gd:etag='&quot;cXFBF2AxSit7I2BiMVUEeT95TmZDY3kGaC0.&quot;'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/1666943f09922805'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/1666943f09922805'/></entry><entry
 
gd:etag='&quot;Q3Y4fzBQLCt7I2A9WhFTFkoJQwU.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/190beb188fb7cd51</id><updated>2013-06-08T06:36:52.837Z</updat
 ed><app:edited xmlns:app='http://www.w3.org/2007/app'>2013-06-08T06:36:52.837Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title>John Smith</title><content>Notes</content><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/190beb188fb7cd51'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/190beb188fb7cd51'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/190beb188fb7cd51'/><gd:name><gd:fullName>John
 
Smith</gd:fullName><gd:givenName>John</gd:givenName><gd:familyName>Smith</gd:familyName></gd:name><gContact:nickname>Big
 
J</gContact:nickname><gContact:maidenName>Smith</gContact:maidenName><gContact:shortName>Jon</gContact:shortName><gCo
 ntact:initials>A. B. C.</gContact:initials><gContact:gender value='male'/><gContact:birthday 
when='--01-01'/><gContact:occupation>Professional bum</gContact:occupation><gContact:sensitivity 
rel='personal'/><gContact:billingInformation>Big J Enterprises, 
Ltd.</gContact:billingInformation><gContact:priority 
rel='high'/><gContact:mileage>12km</gContact:mileage><gContact:directoryServer>This is a 
server</gContact:directoryServer><gContact:subject>Charity work</gContact:subject><gContact:fileAs>J, 
Big</gContact:fileAs><gd:organization 
rel='http://schemas.google.com/g/2005#work'><gd:orgName>OrgCorp</gd:orgName><gd:orgTitle>President</gd:orgTitle></gd:organization><gd:email
 rel='http://schemas.google.com/g/2005#work' address='liz gmail com'/><gd:email 
rel='http://schemas.google.com/g/2005#home' address='liz example org'/><gd:im address='liz gmail com' 
protocol='http://schemas.google.com/g/2005#GOOGLE_TALK' 
rel='http://schemas.google.com/g/2005#home'/><gd:phoneNumber rel='http://sch
 emas.google.com/g/2005#work' primary='true'>(206)555-1212</gd:phoneNumber><gd:phoneNumber 
rel='http://schemas.google.com/g/2005#home'>(206)555-1213</gd:phoneNumber><gd:structuredPostalAddress 
primary='true' rel='http://schemas.google.com/g/2005#work'><gd:formattedAddress>1600 Amphitheatre Pkwy 
Mountain View</gd:formattedAddress><gd:street>1600 Amphitheatre Pkwy Mountain 
View</gd:street></gd:structuredPostalAddress><gContact:event rel='anniversary'><gd:when 
startTime='1900-01-01'/></gContact:event><gContact:externalId rel='organization' value='Number 
Six'/><gContact:relation rel='friend'>Brian Haddock</gContact:relation><gContact:userDefinedField 
key='Favourite colour' value='Blue'/><gContact:userDefinedField key='My notes' 
value=''/><gContact:userDefinedField key='Owes me' value='£10'/><gContact:userDefinedField key='' 
value='Foo'/><gContact:website href='http://example.com/' primary='true' 
rel='profile'/><gContact:calendarLink href='http://calendar.example.com/' primary='t
 rue' rel='home'/><gContact:language code='en-GB'/><gContact:jot rel='other'>This is a 
jot.</gContact:jot><gContact:hobby>Rowing</gContact:hobby><gd:extendedProperty 
name='CALURI'>http://example.com/</gd:extendedProperty></entry><entry 
gd:etag='&quot;Q3Y4fzBQLCt7I2A9WhFTFkoJQwU.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/19517fd1080aec99</id><updated>2013-06-08T06:36:52.837Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-06-08T06:36:52.837Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title>John Smith</title><content>Notes</content><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/19517fd1080aec99'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/1951
 7fd1080aec99'/><link rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/19517fd1080aec99'/><gd:name><gd:fullName>John
 
Smith</gd:fullName><gd:givenName>John</gd:givenName><gd:familyName>Smith</gd:familyName></gd:name><gContact:nickname>Big
 
J</gContact:nickname><gContact:maidenName>Smith</gContact:maidenName><gContact:shortName>Jon</gContact:shortName><gContact:initials>A.
 B. C.</gContact:initials><gContact:gender value='male'/><gContact:birthday 
when='--01-01'/><gContact:occupation>Professional bum</gContact:occupation><gContact:sensitivity 
rel='personal'/><gContact:billingInformation>Big J Enterprises, 
Ltd.</gContact:billingInformation><gContact:priority 
rel='high'/><gContact:mileage>12km</gContact:mileage><gContact:directoryServer>This is a 
server</gContact:directoryServer><gContact:subject>Charity work</gContact:subject><gContact:fileAs>J, 
Big</gContact:fileAs><gd:organization rel='http://schemas.google
 
.com/g/2005#work'><gd:orgName>OrgCorp</gd:orgName><gd:orgTitle>President</gd:orgTitle></gd:organization><gd:email
 rel='http://schemas.google.com/g/2005#work' address='liz gmail com'/><gd:email 
rel='http://schemas.google.com/g/2005#home' address='liz example org'/><gd:im address='liz gmail com' 
protocol='http://schemas.google.com/g/2005#GOOGLE_TALK' 
rel='http://schemas.google.com/g/2005#home'/><gd:phoneNumber rel='http://schemas.google.com/g/2005#work' 
primary='true'>(206)555-1212</gd:phoneNumber><gd:phoneNumber 
rel='http://schemas.google.com/g/2005#home'>(206)555-1213</gd:phoneNumber><gd:structuredPostalAddress 
primary='true' rel='http://schemas.google.com/g/2005#work'><gd:formattedAddress>1600 Amphitheatre Pkwy 
Mountain View</gd:formattedAddress><gd:street>1600 Amphitheatre Pkwy Mountain 
View</gd:street></gd:structuredPostalAddress><gContact:event rel='anniversary'><gd:when 
startTime='1900-01-01'/></gContact:event><gContact:externalId rel='organization' value='Number Six'/>
 <gContact:relation rel='friend'>Brian Haddock</gContact:relation><gContact:userDefinedField key='Favourite 
colour' value='Blue'/><gContact:userDefinedField key='My notes' value=''/><gContact:userDefinedField 
key='Owes me' value='£10'/><gContact:userDefinedField key='' value='Foo'/><gContact:website 
href='http://example.com/' primary='true' rel='profile'/><gContact:calendarLink 
href='http://calendar.example.com/' primary='true' rel='home'/><gContact:language code='en-GB'/><gContact:jot 
rel='other'>This is a jot.</gContact:jot><gContact:hobby>Rowing</gContact:hobby><gd:extendedProperty 
name='CALURI'>http://example.com/</gd:extendedProperty></entry><entry 
gd:etag='&quot;Q3Y4fzBQLCt7I2A9WhFTFkoJQwU.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/1b6f96430e863e1a</id><updated>2013-06-08T06:36:52.837Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-06-08T06:36:52.837Z</app:edited><category 
scheme='http://schemas.google.com/
 g/2005#kind' term='http://schemas.google.com/contact/2008#contact'/><title>John 
Smith</title><content>Notes</content><link rel='http://schemas.google.com/contacts/2008/rel#photo' 
type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/1b6f96430e863e1a'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/1b6f96430e863e1a'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/1b6f96430e863e1a'/><gd:name><gd:fullName>John
 
Smith</gd:fullName><gd:givenName>John</gd:givenName><gd:familyName>Smith</gd:familyName></gd:name><gContact:nickname>Big
 
J</gContact:nickname><gContact:maidenName>Smith</gContact:maidenName><gContact:shortName>Jon</gContact:shortName><gContact:initials>A.
 B. C.</gContact:initials><gContact:gender value='male'/><gContact:birthday 
when='--01-01'/><gContact:occupation>Profe
 ssional bum</gContact:occupation><gContact:sensitivity rel='personal'/><gContact:billingInformation>Big J 
Enterprises, Ltd.</gContact:billingInformation><gContact:priority 
rel='high'/><gContact:mileage>12km</gContact:mileage><gContact:directoryServer>This is a 
server</gContact:directoryServer><gContact:subject>Charity work</gContact:subject><gContact:fileAs>J, 
Big</gContact:fileAs><gd:organization 
rel='http://schemas.google.com/g/2005#work'><gd:orgName>OrgCorp</gd:orgName><gd:orgTitle>President</gd:orgTitle></gd:organization><gd:email
 rel='http://schemas.google.com/g/2005#work' address='liz gmail com'/><gd:email 
rel='http://schemas.google.com/g/2005#home' address='liz example org'/><gd:im address='liz gmail com' 
protocol='http://schemas.google.com/g/2005#GOOGLE_TALK' 
rel='http://schemas.google.com/g/2005#home'/><gd:phoneNumber rel='http://schemas.google.com/g/2005#work' 
primary='true'>(206)555-1212</gd:phoneNumber><gd:phoneNumber rel='http://schemas.google.com/g/2005#home'>(
 206)555-1213</gd:phoneNumber><gd:structuredPostalAddress primary='true' 
rel='http://schemas.google.com/g/2005#work'><gd:formattedAddress>1600 Amphitheatre Pkwy Mountain 
View</gd:formattedAddress><gd:street>1600 Amphitheatre Pkwy Mountain 
View</gd:street></gd:structuredPostalAddress><gContact:event rel='anniversary'><gd:when 
startTime='1900-01-01'/></gContact:event><gContact:externalId rel='organization' value='Number 
Six'/><gContact:relation rel='friend'>Brian Haddock</gContact:relation><gContact:userDefinedField 
key='Favourite colour' value='Blue'/><gContact:userDefinedField key='My notes' 
value=''/><gContact:userDefinedField key='Owes me' value='£10'/><gContact:userDefinedField key='' 
value='Foo'/><gContact:website href='http://example.com/' primary='true' 
rel='profile'/><gContact:calendarLink href='http://calendar.example.com/' primary='true' 
rel='home'/><gContact:language code='en-GB'/><gContact:jot rel='other'>This is a 
jot.</gContact:jot><gContact:hobby>Rowing</gConta
 ct:hobby><gd:extendedProperty name='CALURI'>http://example.com/</gd:extendedProperty></entry><entry 
gd:etag='&quot;Q3Y4fzBQLCt7I2A9WhFTFkoJQwU.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/1c14b53c0c9483d1</id><updated>2013-06-08T06:36:52.837Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-06-08T06:36:52.837Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title>John Smith</title><content>Notes</content><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/1c14b53c0c9483d1'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/1c14b53c0c9483d1'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.c
 om/full/1c14b53c0c9483d1'/><gd:name><gd:fullName>John 
Smith</gd:fullName><gd:givenName>John</gd:givenName><gd:familyName>Smith</gd:familyName></gd:name><gContact:nickname>Big
 
J</gContact:nickname><gContact:maidenName>Smith</gContact:maidenName><gContact:shortName>Jon</gContact:shortName><gContact:initials>A.
 B. C.</gContact:initials><gContact:gender value='male'/><gContact:birthday 
when='--01-01'/><gContact:occupation>Professional bum</gContact:occupation><gContact:sensitivity 
rel='personal'/><gContact:billingInformation>Big J Enterprises, 
Ltd.</gContact:billingInformation><gContact:priority 
rel='high'/><gContact:mileage>12km</gContact:mileage><gContact:directoryServer>This is a 
server</gContact:directoryServer><gContact:subject>Charity work</gContact:subject><gContact:fileAs>J, 
Big</gContact:fileAs><gd:organization 
rel='http://schemas.google.com/g/2005#work'><gd:orgName>OrgCorp</gd:orgName><gd:orgTitle>President</gd:orgTitle></gd:organization><gd:email
 rel='http://schemas.g
 oogle.com/g/2005#work' address='liz gmail com'/><gd:email rel='http://schemas.google.com/g/2005#home' 
address='liz example org'/><gd:im address='liz gmail com' 
protocol='http://schemas.google.com/g/2005#GOOGLE_TALK' 
rel='http://schemas.google.com/g/2005#home'/><gd:phoneNumber rel='http://schemas.google.com/g/2005#work' 
primary='true'>(206)555-1212</gd:phoneNumber><gd:phoneNumber 
rel='http://schemas.google.com/g/2005#home'>(206)555-1213</gd:phoneNumber><gd:structuredPostalAddress 
primary='true' rel='http://schemas.google.com/g/2005#work'><gd:formattedAddress>1600 Amphitheatre Pkwy 
Mountain View</gd:formattedAddress><gd:street>1600 Amphitheatre Pkwy Mountain 
View</gd:street></gd:structuredPostalAddress><gContact:event rel='anniversary'><gd:when 
startTime='1900-01-01'/></gContact:event><gContact:externalId rel='organization' value='Number 
Six'/><gContact:relation rel='friend'>Brian Haddock</gContact:relation><gContact:userDefinedField 
key='Favourite colour' value='Blue'/><gCont
 act:userDefinedField key='My notes' value=''/><gContact:userDefinedField key='Owes me' 
value='£10'/><gContact:userDefinedField key='' value='Foo'/><gContact:website href='http://example.com/' 
primary='true' rel='profile'/><gContact:calendarLink href='http://calendar.example.com/' primary='true' 
rel='home'/><gContact:language code='en-GB'/><gContact:jot rel='other'>This is a 
jot.</gContact:jot><gContact:hobby>Rowing</gContact:hobby><gd:extendedProperty 
name='CALURI'>http://example.com/</gd:extendedProperty></entry><entry 
gd:etag='&quot;SH0yeTVSLit7I2A9WhJSE0gORQI.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/1d2b10b808609587</id><updated>2012-07-03T22:24:29.391Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-07-03T22:24:29.391Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/r
 el#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/1d2b10b808609587' 
gd:etag='&quot;fDhLBWc-bCt7I2BiOUw1cRICWmQTY2Y8QhA.&quot;'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/1d2b10b808609587'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/1d2b10b808609587'/></entry><entry
 
gd:etag='&quot;R3c9ejVSLyt7I2A9WhJSFU8LRwU.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/218f31ad0c130aca</id><updated>2012-07-05T20:43:36.962Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-07-05T20:43:36.962Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' href='ht
 tps://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/218f31ad0c130aca' 
gd:etag='&quot;LT5gZFcjbCt7I2BVP1UOVwdYLVojPmcRaAk.&quot;'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/218f31ad0c130aca'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/218f31ad0c130aca'/></entry><entry
 
gd:etag='&quot;SH06eDVSLit7I2A9WhJbGUQMTg0.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/2357fd980bc95e86</id><updated>2012-09-30T09:23:19.310Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-09-30T09:23:19.310Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/pho
 tos/media/libgdata.test%40googlemail.com/2357fd980bc95e86' 
gd:etag='&quot;TQVdAl8hfCt7I2BrDUU7Wi1oGVEwG3gadlY.&quot;'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/2357fd980bc95e86'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/2357fd980bc95e86'/><gContact:nickname>Test
 Contact Esq.</gContact:nickname></entry><entry 
gd:etag='&quot;R389eTVSLyt7I2A9WhFQE0wIQw0.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/2534c04c8a6dc280</id><updated>2013-07-08T19:41:36.161Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:41:36.161Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' href='https://www.
 google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/2534c04c8a6dc280'/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/2534c04c8a6dc280'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/2534c04c8a6dc280'/><gContact:nickname>Test
 Contact 3</gContact:nickname></entry><entry 
gd:etag='&quot;RXw-ejVSLit7I2A9WhJSE0kCQgc.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/2571b489091c14e6</id><updated>2012-07-03T20:48:54.252Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-07-03T20:48:54.252Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgda
 ta.test%40googlemail.com/2571b489091c14e6' gd:etag='&quot;LxReO0RBWit7I2BoUEM8bhgMD3I2G24tQw0.&quot;'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/2571b489091c14e6'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/2571b489091c14e6'/></entry><entry
 
gd:etag='&quot;Q3Y4fzBQLCt7I2A9WhFTFkoJQwU.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/28db0e230ca0370f</id><updated>2013-06-08T06:36:52.837Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-06-08T06:36:52.837Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title>John Smith</title><content>Notes</content><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgd
 ata.test%40googlemail.com/28db0e230ca0370f'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/28db0e230ca0370f'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/28db0e230ca0370f'/><gd:name><gd:fullName>John
 
Smith</gd:fullName><gd:givenName>John</gd:givenName><gd:familyName>Smith</gd:familyName></gd:name><gContact:nickname>Big
 
J</gContact:nickname><gContact:maidenName>Smith</gContact:maidenName><gContact:shortName>Jon</gContact:shortName><gContact:initials>A.
 B. C.</gContact:initials><gContact:gender value='male'/><gContact:birthday 
when='--01-01'/><gContact:occupation>Professional bum</gContact:occupation><gContact:sensitivity 
rel='personal'/><gContact:billingInformation>Big J Enterprises, 
Ltd.</gContact:billingInformation><gContact:priority 
rel='high'/><gContact:mileage>12km</gContact:mileage><gContact:directoryServer
This is a server</gContact:directoryServer><gContact:subject>Charity 
work</gContact:subject><gContact:fileAs>J, Big</gContact:fileAs><gd:organization 
rel='http://schemas.google.com/g/2005#work'><gd:orgName>OrgCorp</gd:orgName><gd:orgTitle>President</gd:orgTitle></gd:organization><gd:email
rel='http://schemas.google.com/g/2005#work' address='liz gmail com'/><gd:email 
rel='http://schemas.google.com/g/2005#home' address='liz example org'/><gd:im address='liz gmail com' 
protocol='http://schemas.google.com/g/2005#GOOGLE_TALK' 
rel='http://schemas.google.com/g/2005#home'/><gd:phoneNumber rel='http://schemas.google.com/g/2005#work' 
primary='true'>(206)555-1212</gd:phoneNumber><gd:phoneNumber 
rel='http://schemas.google.com/g/2005#home'>(206)555-1213</gd:phoneNumber><gd:structuredPostalAddress 
primary='true' rel='http://schemas.google.com/g/2005#work'><gd:formattedAddress>1600 Amphitheatre Pkwy 
Mountain View</gd:formattedAddress><gd:street>1600 Amphitheatre Pkwy Mountain View</gd:str
 eet></gd:structuredPostalAddress><gContact:event rel='anniversary'><gd:when 
startTime='1900-01-01'/></gContact:event><gContact:externalId rel='organization' value='Number 
Six'/><gContact:relation rel='friend'>Brian Haddock</gContact:relation><gContact:userDefinedField 
key='Favourite colour' value='Blue'/><gContact:userDefinedField key='My notes' 
value=''/><gContact:userDefinedField key='Owes me' value='£10'/><gContact:userDefinedField key='' 
value='Foo'/><gContact:website href='http://example.com/' primary='true' 
rel='profile'/><gContact:calendarLink href='http://calendar.example.com/' primary='true' 
rel='home'/><gContact:language code='en-GB'/><gContact:jot rel='other'>This is a 
jot.</gContact:jot><gContact:hobby>Rowing</gContact:hobby><gd:extendedProperty 
name='CALURI'>http://example.com/</gd:extendedProperty></entry><entry 
gd:etag='&quot;QHo9cDVSLit7I2A9WhJTGUwJRQA.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/2a1140920b75f94f</i
 d><updated>2012-06-28T19:54:01.468Z</updated><app:edited 
xmlns:app='http://www.w3.org/2007/app'>2012-06-28T19:54:01.468Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/2a1140920b75f94f' 
gd:etag='&quot;Zg8se2wlbCt7I2BqDVQGUh9pLXwldz4xdgY.&quot;'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/2a1140920b75f94f'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/2a1140920b75f94f'/></entry><entry
 
gd:etag='&quot;Q3Y4fzBQLCt7I2A9WhFTFkoJQwU.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/2d05d0880c30da83</id><updated>2013-06-08T06:36:52.83
 7Z</updated><app:edited 
xmlns:app='http://www.w3.org/2007/app'>2013-06-08T06:36:52.837Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title>John Smith</title><content>Notes</content><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/2d05d0880c30da83'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/2d05d0880c30da83'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/2d05d0880c30da83'/><gd:name><gd:fullName>John
 
Smith</gd:fullName><gd:givenName>John</gd:givenName><gd:familyName>Smith</gd:familyName></gd:name><gContact:nickname>Big
 J</gContact:nickname><gContact:maidenName>Smith</gContact:maidenName><gContact:shortName>Jon</gContact:short
 Name><gContact:initials>A. B. C.</gContact:initials><gContact:gender value='male'/><gContact:birthday 
when='--01-01'/><gContact:occupation>Professional bum</gContact:occupation><gContact:sensitivity 
rel='personal'/><gContact:billingInformation>Big J Enterprises, 
Ltd.</gContact:billingInformation><gContact:priority 
rel='high'/><gContact:mileage>12km</gContact:mileage><gContact:directoryServer>This is a 
server</gContact:directoryServer><gContact:subject>Charity work</gContact:subject><gd:organization 
rel='http://schemas.google.com/g/2005#work'><gd:orgName>OrgCorp</gd:orgName><gd:orgTitle>President</gd:orgTitle></gd:organization><gd:email
 rel='http://schemas.google.com/g/2005#work' address='liz gmail com'/><gd:email 
rel='http://schemas.google.com/g/2005#home' address='liz example org'/><gd:im address='liz gmail com' 
protocol='http://schemas.google.com/g/2005#GOOGLE_TALK' 
rel='http://schemas.google.com/g/2005#home'/><gd:phoneNumber rel='http://schemas.google.com/g/2005#work' pri
 mary='true'>(206)555-1212</gd:phoneNumber><gd:phoneNumber 
rel='http://schemas.google.com/g/2005#home'>(206)555-1213</gd:phoneNumber><gd:structuredPostalAddress 
primary='true' rel='http://schemas.google.com/g/2005#work'><gd:formattedAddress>1600 Amphitheatre Pkwy 
Mountain View</gd:formattedAddress><gd:street>1600 Amphitheatre Pkwy Mountain 
View</gd:street></gd:structuredPostalAddress><gContact:event rel='anniversary'><gd:when 
startTime='1900-01-01'/></gContact:event><gContact:externalId rel='organization' value='Number 
Six'/><gContact:relation rel='friend'>Brian Haddock</gContact:relation><gContact:userDefinedField 
key='Favourite colour' value='Blue'/><gContact:userDefinedField key='My notes' 
value=''/><gContact:userDefinedField key='Owes me' value='£10'/><gContact:userDefinedField key='' 
value='Foo'/><gContact:website href='http://example.com/' primary='true' 
rel='profile'/><gContact:calendarLink href='http://calendar.example.com/' primary='true' 
rel='home'/><gContact:langu
 age code='en-GB'/><gContact:jot rel='other'>This is a 
jot.</gContact:jot><gContact:hobby>Rowing</gContact:hobby><gd:extendedProperty 
name='CALURI'>http://example.com/</gd:extendedProperty></entry><entry 
gd:etag='&quot;RHw8cTVSLyt7I2A9WhNTGEgNQAE.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/2d9e26a48d120228</id><updated>2012-10-21T22:15:55.279Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-10-21T22:15:55.279Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/2d9e26a48d120228' 
gd:etag='&quot;Xmh2Il8GSit7I2B8L0sQSRdbJlIoKjwidDc.&quot;'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/2d9e26a48d1
 20228'/><link rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/2d9e26a48d120228'/><gContact:nickname>Test
 Contact Esq.</gContact:nickname></entry><entry 
gd:etag='&quot;R3g6cDVSLit7I2A9WhFQEkwCQQQ.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/2dbedc3b88565202</id><updated>2013-07-07T17:36:46.618Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-07T17:36:46.618Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title>Toby</title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/2dbedc3b88565202'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/2dbedc3b88565202'/><link 
rel='edit' type='a
 pplication/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/2dbedc3b88565202'/><gd:name><gd:fullName>Toby</gd:fullName><gd:givenName>Brian</gd:givenName></gd:name></entry></feed>
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='W/&quot;CUAFRn4zfit7I2A9WhFWEkg.&quot;'><id>libgdata 
test googlemail com</id><updated>2013-07-31T06:55:17.086Z</updated><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title>GData Test's Contacts</title><link 
rel='alternate' type='text/html' href='http://www.google.com/'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full'/><link 
rel='http://schemas.
 google.com/g/2005#batch' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/batch'/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/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/m8/feeds'>Contacts</generator><openSearch:totalResults>3</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry
 
gd:etag='&quot;QH86cDVSLit7I2A9WhFWEkgJQAU.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/1660ed0d098026ce</id><updated>2013-07-31T06:55:11.118Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:11.118Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/con
 tact/2008#contact'/><title></title><link rel='http://schemas.google.com/contacts/2008/rel#photo' 
type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/1660ed0d098026ce'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/1660ed0d098026ce'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/1660ed0d098026ce'/><gContact:nickname>Test
 Contact 1</gContact:nickname></entry><entry 
gd:etag='&quot;QHo5eTVSLit7I2A9WhFWEkgJQAU.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/359e540f0902d2fd</id><updated>2013-07-31T06:55:11.421Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:11.421Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><lin
 k rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/359e540f0902d2fd'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/359e540f0902d2fd'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/359e540f0902d2fd'/><gContact:nickname>Test
 Contact 2</gContact:nickname></entry><entry 
gd:etag='&quot;QHY4fDVSLyt7I2A9WhFWEkgJQAU.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/667e01988b79ac61</id><updated>2013-07-31T06:55:11.834Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:11.834Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contac
 ts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/667e01988b79ac61'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/667e01988b79ac61'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/667e01988b79ac61'/><gContact:nickname>Test
 Contact 3</gContact:nickname></entry></feed>
   
diff --git a/gdata/tests/traces/contacts/query-all-contacts-async-progress-closure 
b/gdata/tests/traces/contacts/query-all-contacts-async-progress-closure
index 352dfcb..b33af77 100644
--- a/gdata/tests/traces/contacts/query-all-contacts-async-progress-closure
+++ b/gdata/tests/traces/contacts/query-all-contacts-async-progress-closure
@@ -1,28 +1,28 @@
GET /m8/feeds/contacts/default/full HTTP/1.1
-> Soup-Debug-Timestamp: 1373312508
-> Soup-Debug: SoupSession 1 (0x66d2c0), SoupMessage 33 (0x7fffd8015640), SoupSocket 16 (0x7fffdc003bc0)
+> Soup-Debug-Timestamp: 1375253740
+> Soup-Debug: SoupSession 1 (0x66f2e0), SoupMessage 33 (0x7fffe0026660), SoupSocket 16 (0x7fffe0028190)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAABKUrSFzs8R87l64lxNJ2sdklhR-Xok8Cd28d10ttViz3pkeSosVgf5IXErmDHQMM9qajB6ZiW2R88u_SpE3SfL5uy_oNPB5Mlmte4X-TOdOSUGjIGRr6cv7JClAOlVBIxmkZVSWC_cCUFKRIuZ9VBkSIKSD9kCHJEBwWlhgcZsHSNAVuv9pIagsMR06K24PtAIO_VIRitw2VisJNxl3kqjDzobMqoyQypuTBXft5oOD2vHaJWkSI5JH5JM6zBxNnxLOUPt7oqUbLeJP8xe6FsF
+> Authorization: GoogleLogin 
auth=DQAAANUAAAAXK6VbKHFb8MrY8VDDk8TplfYU8Pl8OJ_JDJA5Ku7Q1SXgGXmiXXNSumd183YRnbThEZBRN5nYygedI2kQsVKzOFACPFEPo7ShQaRGycnxE3GLDfmMWN_zc43HzWPka0-WgOvpmqpxLFWh0EYyD3pF7Yebk_jLBxJEBWU9v8FZrljhbtK-g4kiiBeuNs4kYYLTu-vF7GCSIcSC2WuHSkxI091viwmbQhZY_6fi_MaY_qgOPss9HlAHeJ543JSjtRmsVtK_4aNWbmaz9VcCr9lXEksu1dUTvroRvtlr8XyvOg
GData-Version: 3
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1373312509
-< Soup-Debug: SoupMessage 33 (0x7fffd8015640)
+< Soup-Debug-Timestamp: 1375253740
+< Soup-Debug: SoupMessage 33 (0x7fffe0026660)
 < Content-Type: application/atom+xml; charset=UTF-8; type=feed
-< Expires: Mon, 08 Jul 2013 19:41:49 GMT
-< Date: Mon, 08 Jul 2013 19:41:49 GMT
+< Expires: Wed, 31 Jul 2013 06:55:40 GMT
+< Date: Wed, 31 Jul 2013 06:55:40 GMT
 < Cache-control: private, max-age=0, must-revalidate, no-transform
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 3.1
-< ETag: W/"CEIESH87fCt7I2A9WhFQE0w."
-< Last-Modified: Mon, 08 Jul 2013 19:41:49 GMT
+< ETag: W/"CUAAQX8-eit7I2A9WhFWEkg."
+< Last-Modified: Wed, 31 Jul 2013 06:55:40 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:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='W/&quot;CEIESH87fCt7I2A9WhFQE0w.&quot;'><id>libgdata 
test googlemail com</id><updated>2013-07-08T19:41:49.104Z</updated><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title>GData Test's Contacts</title><link 
rel='alternate' type='text/html' href='http://www.google.com/'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full'/><link 
rel='http://schemas.
 google.com/g/2005#batch' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/batch'/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full?max-results=25'/><link 
rel='next' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full?start-index=26&amp;max-results=25'/><author><name>GData
 Test</name><email>libgdata test googlemail com</email></author><generator version='1.0' 
uri='http://www.google.com/m8/feeds'>Contacts</generator><openSearch:totalResults>72</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry
 
gd:etag='&quot;R3k_fTVSLit7I2A9WhJbGUQNRgE.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/4b7059f89aa79c1</id><updated>2012-09-30T09:25:56.745Z</updated><app:edited
 xmln
 s:app='http://www.w3.org/2007/app'>2012-09-30T09:25:56.745Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title>Toby</title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/4b7059f89aa79c1'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/4b7059f89aa79c1'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/4b7059f89aa79c1'/><gd:name><gd:fullName>Toby</gd:fullName><gd:givenName>Brian</gd:givenName></gd:name></entry><entry
 
gd:etag='&quot;RX05cTVSLyt7I2A9WhJTGUwJRQA.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/65bc1a20a718f48</id><updated>2012-06-28T19:54:04.329Z</updated><app:edited
 xmlns:app='h
 ttp://www.w3.org/2007/app'>2012-06-28T19:54:04.329Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/65bc1a20a718f48' 
gd:etag='&quot;cgl0NAVFSit7I2BiPUJORzYOFXJCOkoLZBQ.&quot;'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/65bc1a20a718f48'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/65bc1a20a718f48'/></entry><entry
 
gd:etag='&quot;R3w7fTVSLyt7I2A9WhJSE0gORQY.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/7000f108822c609</id><updated>2012-07-03T22:23:46.205Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-07-03
 T22:23:46.205Z</app:edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/7000f108822c609' 
gd:etag='&quot;MjNyZn8GSit7I2BGJE4IcUQOM1YUNG0hMlE.&quot;'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/7000f108822c609'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/7000f108822c609'/></entry><entry
 
gd:etag='&quot;Q3Y4fzBQLCt7I2A9WhFTFkoJQwU.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/7b573890ed9711e</id><updated>2013-06-08T06:36:52.837Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-06-08T06:36:52.837Z</app:edited><category 
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title>John Smith</title><content>Notes</content><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/7b573890ed9711e'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/7b573890ed9711e'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/7b573890ed9711e'/><gd:name><gd:fullName>John
 
Smith</gd:fullName><gd:givenName>John</gd:givenName><gd:familyName>Smith</gd:familyName></gd:name><gContact:nickname>Big
 
J</gContact:nickname><gContact:maidenName>Smith</gContact:maidenName><gContact:shortName>Jon</gContact:shortName><gContact:initials>A.
 B. C.</gContact:initials><gContact:gender value='male'/><gContact:birthday when='--01-
 01'/><gContact:occupation>Professional bum</gContact:occupation><gContact:sensitivity 
rel='personal'/><gContact:billingInformation>Big J Enterprises, 
Ltd.</gContact:billingInformation><gContact:priority 
rel='high'/><gContact:mileage>12km</gContact:mileage><gContact:directoryServer>This is a 
server</gContact:directoryServer><gContact:subject>Charity work</gContact:subject><gContact:fileAs>J, 
Big</gContact:fileAs><gd:organization 
rel='http://schemas.google.com/g/2005#work'><gd:orgName>OrgCorp</gd:orgName><gd:orgTitle>President</gd:orgTitle></gd:organization><gd:email
 rel='http://schemas.google.com/g/2005#work' address='liz gmail com'/><gd:email 
rel='http://schemas.google.com/g/2005#home' address='liz example org'/><gd:im address='liz gmail com' 
protocol='http://schemas.google.com/g/2005#GOOGLE_TALK' 
rel='http://schemas.google.com/g/2005#home'/><gd:phoneNumber rel='http://schemas.google.com/g/2005#work' 
primary='true'>(206)555-1212</gd:phoneNumber><gd:phoneNumber rel='http://sc
 hemas.google.com/g/2005#home'>(206)555-1213</gd:phoneNumber><gd:structuredPostalAddress primary='true' 
rel='http://schemas.google.com/g/2005#work'><gd:formattedAddress>1600 Amphitheatre Pkwy Mountain 
View</gd:formattedAddress><gd:street>1600 Amphitheatre Pkwy Mountain 
View</gd:street></gd:structuredPostalAddress><gContact:event rel='anniversary'><gd:when 
startTime='1900-01-01'/></gContact:event><gContact:externalId rel='organization' value='Number 
Six'/><gContact:relation rel='friend'>Brian Haddock</gContact:relation><gContact:userDefinedField 
key='Favourite colour' value='Blue'/><gContact:userDefinedField key='My notes' 
value=''/><gContact:userDefinedField key='Owes me' value='£10'/><gContact:userDefinedField key='' 
value='Foo'/><gContact:website href='http://example.com/' primary='true' 
rel='profile'/><gContact:calendarLink href='http://calendar.example.com/' primary='true' 
rel='home'/><gContact:language code='en-GB'/><gContact:jot rel='other'>This is a jot.</gContact:jot
<gContact:hobby>Rowing</gContact:hobby><gd:extendedProperty 
name='CALURI'>http://example.com/</gd:extendedProperty></entry><entry 
gd:etag='&quot;SXYzfTVSLit7I2A9WhFQE0wIQgQ.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/9e18fbb08d355e7</id><updated>2013-07-08T19:41:48.885Z</updated><app:edited
xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:41:48.885Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/9e18fbb08d355e7'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/9e18fbb08d355e7'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/ful
 l/9e18fbb08d355e7'/><gContact:nickname>Test Contact 3</gContact:nickname></entry><entry 
gd:etag='&quot;Q3Y4fzBQLCt7I2A9WhFTFkoJQwU.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/ac76dcd8e30ac6f</id><updated>2013-06-08T06:36:52.837Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-06-08T06:36:52.837Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title>John Smith</title><content>Notes</content><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/ac76dcd8e30ac6f'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/ac76dcd8e30ac6f'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/ac76dcd
 8e30ac6f'/><gd:name><gd:fullName>John 
Smith</gd:fullName><gd:givenName>John</gd:givenName><gd:familyName>Smith</gd:familyName></gd:name><gContact:nickname>Big
 
J</gContact:nickname><gContact:maidenName>Smith</gContact:maidenName><gContact:shortName>Jon</gContact:shortName><gContact:initials>A.
 B. C.</gContact:initials><gContact:gender value='male'/><gContact:birthday 
when='--01-01'/><gContact:occupation>Professional bum</gContact:occupation><gContact:sensitivity 
rel='personal'/><gContact:billingInformation>Big J Enterprises, 
Ltd.</gContact:billingInformation><gContact:priority 
rel='high'/><gContact:mileage>12km</gContact:mileage><gContact:directoryServer>This is a 
server</gContact:directoryServer><gContact:subject>Charity work</gContact:subject><gd:organization 
rel='http://schemas.google.com/g/2005#work'><gd:orgName>OrgCorp</gd:orgName><gd:orgTitle>President</gd:orgTitle></gd:organization><gd:email
 rel='http://schemas.google.com/g/2005#work' address='liz gmail com'/><gd:email
  rel='http://schemas.google.com/g/2005#home' address='liz example org'/><gd:im address='liz gmail com' 
protocol='http://schemas.google.com/g/2005#GOOGLE_TALK' 
rel='http://schemas.google.com/g/2005#home'/><gd:phoneNumber rel='http://schemas.google.com/g/2005#work' 
primary='true'>(206)555-1212</gd:phoneNumber><gd:phoneNumber 
rel='http://schemas.google.com/g/2005#home'>(206)555-1213</gd:phoneNumber><gd:structuredPostalAddress 
primary='true' rel='http://schemas.google.com/g/2005#work'><gd:formattedAddress>1600 Amphitheatre Pkwy 
Mountain View</gd:formattedAddress><gd:street>1600 Amphitheatre Pkwy Mountain 
View</gd:street></gd:structuredPostalAddress><gContact:event rel='anniversary'><gd:when 
startTime='1900-01-01'/></gContact:event><gContact:externalId rel='organization' value='Number 
Six'/><gContact:relation rel='friend'>Brian Haddock</gContact:relation><gContact:userDefinedField 
key='Favourite colour' value='Blue'/><gContact:userDefinedField key='My notes' value=''/><gContact:u
 serDefinedField key='Owes me' value='£10'/><gContact:website href='http://example.com/' primary='true' 
rel='profile'/><gContact:calendarLink href='http://calendar.example.com/' primary='true' 
rel='home'/><gContact:language code='en-GB'/><gContact:jot rel='other'>This is a 
jot.</gContact:jot><gContact:hobby>Rowing</gContact:hobby><gd:extendedProperty 
name='CALURI'>http://example.com/</gd:extendedProperty></entry><entry 
gd:etag='&quot;Qnk8fzVSLit7I2A9WhdQF0QIRwM.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/cd6c6d88af66408</id><updated>2011-08-19T22:14:33.777Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2011-08-19T22:14:33.777Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.co
 m/cd6c6d88af66408' gd:etag='&quot;cDpVYHkGbCt7I2BNH3YJVDd-JF0rPkMxR1I.&quot;'/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/cd6c6d88af66408'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/cd6c6d88af66408'/><gContact:nickname>Test
 Contact Esq.</gContact:nickname></entry><entry 
gd:etag='&quot;RHs5eTVSLit7I2A9WhJSE0gORAM.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/102482f70d9b84e7</id><updated>2012-07-03T22:26:15.521Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-07-03T22:26:15.521Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.
 test%40googlemail.com/102482f70d9b84e7'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/102482f70d9b84e7'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/102482f70d9b84e7'/><gContact:nickname>Test
 Contact 2</gContact:nickname></entry><entry 
gd:etag='&quot;RXc6cTVSLit7I2A9WhJSE0gORAM.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/1226d54c88cfd048</id><updated>2012-07-03T22:26:14.919Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-07-03T22:26:14.919Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/1226d54c88cfd048'
 /><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/1226d54c88cfd048'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/1226d54c88cfd048'/><gContact:nickname>Test
 Contact 1</gContact:nickname></entry><entry 
gd:etag='&quot;QH0_eTVSLit7I2A9WhFQEkUJRww.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/1596e0680819dd85</id><updated>2013-07-08T11:31:21.341Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T11:31:21.341Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title>Toby</title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/1596e0680819dd85'/><link 
rel='self' type='applicatio
 n/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/1596e0680819dd85'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/1596e0680819dd85'/><gd:name><gd:fullName>Toby</gd:fullName><gd:givenName>Brian</gd:givenName></gd:name></entry><entry
 
gd:etag='&quot;Q3Y4fzBQLCt7I2A9WhFTFkoJQwU.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/161aa4b38b4338c4</id><updated>2013-06-08T06:36:52.837Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-06-08T06:36:52.837Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title>John Smith</title><content>Notes</content><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/161aa4b38b4338c4'/><link r
 el='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/161aa4b38b4338c4'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/161aa4b38b4338c4'/><gd:name><gd:fullName>John
 
Smith</gd:fullName><gd:givenName>John</gd:givenName><gd:familyName>Smith</gd:familyName></gd:name><gContact:nickname>Big
 
J</gContact:nickname><gContact:maidenName>Smith</gContact:maidenName><gContact:shortName>Jon</gContact:shortName><gContact:initials>A.
 B. C.</gContact:initials><gContact:gender value='male'/><gContact:birthday 
when='--01-01'/><gContact:occupation>Professional bum</gContact:occupation><gContact:sensitivity 
rel='personal'/><gContact:billingInformation>Big J Enterprises, 
Ltd.</gContact:billingInformation><gContact:priority 
rel='high'/><gContact:mileage>12km</gContact:mileage><gContact:directoryServer>This is a 
server</gContact:directoryServer><gContac
 t:subject>Charity work</gContact:subject><gContact:fileAs>J, Big</gContact:fileAs><gd:organization 
rel='http://schemas.google.com/g/2005#work'><gd:orgName>OrgCorp</gd:orgName><gd:orgTitle>President</gd:orgTitle></gd:organization><gd:email
 rel='http://schemas.google.com/g/2005#work' address='liz gmail com'/><gd:email 
rel='http://schemas.google.com/g/2005#home' address='liz example org'/><gd:im address='liz gmail com' 
protocol='http://schemas.google.com/g/2005#GOOGLE_TALK' 
rel='http://schemas.google.com/g/2005#home'/><gd:phoneNumber rel='http://schemas.google.com/g/2005#work' 
primary='true'>(206)555-1212</gd:phoneNumber><gd:phoneNumber 
rel='http://schemas.google.com/g/2005#home'>(206)555-1213</gd:phoneNumber><gd:structuredPostalAddress 
primary='true' rel='http://schemas.google.com/g/2005#work'><gd:formattedAddress>1600 Amphitheatre Pkwy 
Mountain View</gd:formattedAddress><gd:street>1600 Amphitheatre Pkwy Mountain 
View</gd:street></gd:structuredPostalAddress><gContact:event rel
 ='anniversary'><gd:when startTime='1900-01-01'/></gContact:event><gContact:externalId rel='organization' 
value='Number Six'/><gContact:relation rel='friend'>Brian 
Haddock</gContact:relation><gContact:userDefinedField key='Favourite colour' 
value='Blue'/><gContact:userDefinedField key='My notes' value=''/><gContact:userDefinedField key='Owes me' 
value='£10'/><gContact:userDefinedField key='' value='Foo'/><gContact:website href='http://example.com/' 
primary='true' rel='profile'/><gContact:calendarLink href='http://calendar.example.com/' primary='true' 
rel='home'/><gContact:language code='en-GB'/><gContact:jot rel='other'>This is a 
jot.</gContact:jot><gContact:hobby>Rowing</gContact:hobby><gd:extendedProperty 
name='CALURI'>http://example.com/</gd:extendedProperty></entry><entry 
gd:etag='&quot;QXw6fDVSLit7I2A9WhJSE0gJQAA.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/1666943f09922805</id><updated>2012-07-03T22:15:40.214Z</updated><app:ed
 ited xmlns:app='http://www.w3.org/2007/app'>2012-07-03T22:15:40.214Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/1666943f09922805' 
gd:etag='&quot;cXFBF2AxSit7I2BiMVUEeT95TmZDY3kGaC0.&quot;'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/1666943f09922805'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/1666943f09922805'/></entry><entry
 
gd:etag='&quot;Q3Y4fzBQLCt7I2A9WhFTFkoJQwU.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/190beb188fb7cd51</id><updated>2013-06-08T06:36:52.837Z</updated><app:edited
 xmlns:app='http://www.w3.org
 /2007/app'>2013-06-08T06:36:52.837Z</app:edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title>John Smith</title><content>Notes</content><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/190beb188fb7cd51'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/190beb188fb7cd51'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/190beb188fb7cd51'/><gd:name><gd:fullName>John
 
Smith</gd:fullName><gd:givenName>John</gd:givenName><gd:familyName>Smith</gd:familyName></gd:name><gContact:nickname>Big
 
J</gContact:nickname><gContact:maidenName>Smith</gContact:maidenName><gContact:shortName>Jon</gContact:shortName><gContact:initials>A.
 B. C.</gContact:initials>
 <gContact:gender value='male'/><gContact:birthday when='--01-01'/><gContact:occupation>Professional 
bum</gContact:occupation><gContact:sensitivity rel='personal'/><gContact:billingInformation>Big J 
Enterprises, Ltd.</gContact:billingInformation><gContact:priority 
rel='high'/><gContact:mileage>12km</gContact:mileage><gContact:directoryServer>This is a 
server</gContact:directoryServer><gContact:subject>Charity work</gContact:subject><gContact:fileAs>J, 
Big</gContact:fileAs><gd:organization 
rel='http://schemas.google.com/g/2005#work'><gd:orgName>OrgCorp</gd:orgName><gd:orgTitle>President</gd:orgTitle></gd:organization><gd:email
 rel='http://schemas.google.com/g/2005#work' address='liz gmail com'/><gd:email 
rel='http://schemas.google.com/g/2005#home' address='liz example org'/><gd:im address='liz gmail com' 
protocol='http://schemas.google.com/g/2005#GOOGLE_TALK' 
rel='http://schemas.google.com/g/2005#home'/><gd:phoneNumber rel='http://schemas.google.com/g/2005#work' 
primary='true'
(206)555-1212</gd:phoneNumber><gd:phoneNumber 
rel='http://schemas.google.com/g/2005#home'>(206)555-1213</gd:phoneNumber><gd:structuredPostalAddress 
primary='true' rel='http://schemas.google.com/g/2005#work'><gd:formattedAddress>1600 Amphitheatre Pkwy 
Mountain View</gd:formattedAddress><gd:street>1600 Amphitheatre Pkwy Mountain 
View</gd:street></gd:structuredPostalAddress><gContact:event rel='anniversary'><gd:when 
startTime='1900-01-01'/></gContact:event><gContact:externalId rel='organization' value='Number 
Six'/><gContact:relation rel='friend'>Brian Haddock</gContact:relation><gContact:userDefinedField 
key='Favourite colour' value='Blue'/><gContact:userDefinedField key='My notes' 
value=''/><gContact:userDefinedField key='Owes me' value='£10'/><gContact:userDefinedField key='' 
value='Foo'/><gContact:website href='http://example.com/' primary='true' 
rel='profile'/><gContact:calendarLink href='http://calendar.example.com/' primary='true' 
rel='home'/><gContact:language code='e
 n-GB'/><gContact:jot rel='other'>This is a 
jot.</gContact:jot><gContact:hobby>Rowing</gContact:hobby><gd:extendedProperty 
name='CALURI'>http://example.com/</gd:extendedProperty></entry><entry 
gd:etag='&quot;Q3Y4fzBQLCt7I2A9WhFTFkoJQwU.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/19517fd1080aec99</id><updated>2013-06-08T06:36:52.837Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-06-08T06:36:52.837Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title>John Smith</title><content>Notes</content><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/19517fd1080aec99'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/19517fd1080aec99'/><link 
rel='edit' type='appli
 cation/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/19517fd1080aec99'/><gd:name><gd:fullName>John
 
Smith</gd:fullName><gd:givenName>John</gd:givenName><gd:familyName>Smith</gd:familyName></gd:name><gContact:nickname>Big
 
J</gContact:nickname><gContact:maidenName>Smith</gContact:maidenName><gContact:shortName>Jon</gContact:shortName><gContact:initials>A.
 B. C.</gContact:initials><gContact:gender value='male'/><gContact:birthday 
when='--01-01'/><gContact:occupation>Professional bum</gContact:occupation><gContact:sensitivity 
rel='personal'/><gContact:billingInformation>Big J Enterprises, 
Ltd.</gContact:billingInformation><gContact:priority 
rel='high'/><gContact:mileage>12km</gContact:mileage><gContact:directoryServer>This is a 
server</gContact:directoryServer><gContact:subject>Charity work</gContact:subject><gContact:fileAs>J, 
Big</gContact:fileAs><gd:organization rel='http://schemas.google.com/g/2005#work'><gd:orgName>OrgCorp</gd:o
 rgName><gd:orgTitle>President</gd:orgTitle></gd:organization><gd:email 
rel='http://schemas.google.com/g/2005#work' address='liz gmail com'/><gd:email 
rel='http://schemas.google.com/g/2005#home' address='liz example org'/><gd:im address='liz gmail com' 
protocol='http://schemas.google.com/g/2005#GOOGLE_TALK' 
rel='http://schemas.google.com/g/2005#home'/><gd:phoneNumber rel='http://schemas.google.com/g/2005#work' 
primary='true'>(206)555-1212</gd:phoneNumber><gd:phoneNumber 
rel='http://schemas.google.com/g/2005#home'>(206)555-1213</gd:phoneNumber><gd:structuredPostalAddress 
primary='true' rel='http://schemas.google.com/g/2005#work'><gd:formattedAddress>1600 Amphitheatre Pkwy 
Mountain View</gd:formattedAddress><gd:street>1600 Amphitheatre Pkwy Mountain 
View</gd:street></gd:structuredPostalAddress><gContact:event rel='anniversary'><gd:when 
startTime='1900-01-01'/></gContact:event><gContact:externalId rel='organization' value='Number 
Six'/><gContact:relation rel='friend'>Brian Haddo
 ck</gContact:relation><gContact:userDefinedField key='Favourite colour' 
value='Blue'/><gContact:userDefinedField key='My notes' value=''/><gContact:userDefinedField key='Owes me' 
value='£10'/><gContact:userDefinedField key='' value='Foo'/><gContact:website href='http://example.com/' 
primary='true' rel='profile'/><gContact:calendarLink href='http://calendar.example.com/' primary='true' 
rel='home'/><gContact:language code='en-GB'/><gContact:jot rel='other'>This is a 
jot.</gContact:jot><gContact:hobby>Rowing</gContact:hobby><gd:extendedProperty 
name='CALURI'>http://example.com/</gd:extendedProperty></entry><entry 
gd:etag='&quot;Q3Y4fzBQLCt7I2A9WhFTFkoJQwU.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/1b6f96430e863e1a</id><updated>2013-06-08T06:36:52.837Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-06-08T06:36:52.837Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.co
 m/contact/2008#contact'/><title>John Smith</title><content>Notes</content><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/1b6f96430e863e1a'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/1b6f96430e863e1a'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/1b6f96430e863e1a'/><gd:name><gd:fullName>John
 
Smith</gd:fullName><gd:givenName>John</gd:givenName><gd:familyName>Smith</gd:familyName></gd:name><gContact:nickname>Big
 
J</gContact:nickname><gContact:maidenName>Smith</gContact:maidenName><gContact:shortName>Jon</gContact:shortName><gContact:initials>A.
 B. C.</gContact:initials><gContact:gender value='male'/><gContact:birthday 
when='--01-01'/><gContact:occupation>Professional bum</gContact:occupation><gContact:
 sensitivity rel='personal'/><gContact:billingInformation>Big J Enterprises, 
Ltd.</gContact:billingInformation><gContact:priority 
rel='high'/><gContact:mileage>12km</gContact:mileage><gContact:directoryServer>This is a 
server</gContact:directoryServer><gContact:subject>Charity work</gContact:subject><gContact:fileAs>J, 
Big</gContact:fileAs><gd:organization 
rel='http://schemas.google.com/g/2005#work'><gd:orgName>OrgCorp</gd:orgName><gd:orgTitle>President</gd:orgTitle></gd:organization><gd:email
 rel='http://schemas.google.com/g/2005#work' address='liz gmail com'/><gd:email 
rel='http://schemas.google.com/g/2005#home' address='liz example org'/><gd:im address='liz gmail com' 
protocol='http://schemas.google.com/g/2005#GOOGLE_TALK' 
rel='http://schemas.google.com/g/2005#home'/><gd:phoneNumber rel='http://schemas.google.com/g/2005#work' 
primary='true'>(206)555-1212</gd:phoneNumber><gd:phoneNumber 
rel='http://schemas.google.com/g/2005#home'>(206)555-1213</gd:phoneNumber><gd:structured
 PostalAddress primary='true' rel='http://schemas.google.com/g/2005#work'><gd:formattedAddress>1600 
Amphitheatre Pkwy Mountain View</gd:formattedAddress><gd:street>1600 Amphitheatre Pkwy Mountain 
View</gd:street></gd:structuredPostalAddress><gContact:event rel='anniversary'><gd:when 
startTime='1900-01-01'/></gContact:event><gContact:externalId rel='organization' value='Number 
Six'/><gContact:relation rel='friend'>Brian Haddock</gContact:relation><gContact:userDefinedField 
key='Favourite colour' value='Blue'/><gContact:userDefinedField key='My notes' 
value=''/><gContact:userDefinedField key='Owes me' value='£10'/><gContact:userDefinedField key='' 
value='Foo'/><gContact:website href='http://example.com/' primary='true' 
rel='profile'/><gContact:calendarLink href='http://calendar.example.com/' primary='true' 
rel='home'/><gContact:language code='en-GB'/><gContact:jot rel='other'>This is a 
jot.</gContact:jot><gContact:hobby>Rowing</gContact:hobby><gd:extendedProperty name='CALURI'
http://example.com/</gd:extendedProperty></entry><entry 
gd:etag='&quot;Q3Y4fzBQLCt7I2A9WhFTFkoJQwU.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/1c14b53c0c9483d1</id><updated>2013-06-08T06:36:52.837Z</updated><app:edited
xmlns:app='http://www.w3.org/2007/app'>2013-06-08T06:36:52.837Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title>John 
Smith</title><content>Notes</content><link rel='http://schemas.google.com/contacts/2008/rel#photo' 
type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/1c14b53c0c9483d1'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/1c14b53c0c9483d1'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/1c14b53c0c9483d1'/><gd:name><gd:ful
 lName>John 
Smith</gd:fullName><gd:givenName>John</gd:givenName><gd:familyName>Smith</gd:familyName></gd:name><gContact:nickname>Big
 
J</gContact:nickname><gContact:maidenName>Smith</gContact:maidenName><gContact:shortName>Jon</gContact:shortName><gContact:initials>A.
 B. C.</gContact:initials><gContact:gender value='male'/><gContact:birthday 
when='--01-01'/><gContact:occupation>Professional bum</gContact:occupation><gContact:sensitivity 
rel='personal'/><gContact:billingInformation>Big J Enterprises, 
Ltd.</gContact:billingInformation><gContact:priority 
rel='high'/><gContact:mileage>12km</gContact:mileage><gContact:directoryServer>This is a 
server</gContact:directoryServer><gContact:subject>Charity work</gContact:subject><gContact:fileAs>J, 
Big</gContact:fileAs><gd:organization 
rel='http://schemas.google.com/g/2005#work'><gd:orgName>OrgCorp</gd:orgName><gd:orgTitle>President</gd:orgTitle></gd:organization><gd:email
 rel='http://schemas.google.com/g/2005#work' address='liz gmail c
 om'/><gd:email rel='http://schemas.google.com/g/2005#home' address='liz example org'/><gd:im address='liz 
gmail com' protocol='http://schemas.google.com/g/2005#GOOGLE_TALK' 
rel='http://schemas.google.com/g/2005#home'/><gd:phoneNumber rel='http://schemas.google.com/g/2005#work' 
primary='true'>(206)555-1212</gd:phoneNumber><gd:phoneNumber 
rel='http://schemas.google.com/g/2005#home'>(206)555-1213</gd:phoneNumber><gd:structuredPostalAddress 
primary='true' rel='http://schemas.google.com/g/2005#work'><gd:formattedAddress>1600 Amphitheatre Pkwy 
Mountain View</gd:formattedAddress><gd:street>1600 Amphitheatre Pkwy Mountain 
View</gd:street></gd:structuredPostalAddress><gContact:event rel='anniversary'><gd:when 
startTime='1900-01-01'/></gContact:event><gContact:externalId rel='organization' value='Number 
Six'/><gContact:relation rel='friend'>Brian Haddock</gContact:relation><gContact:userDefinedField 
key='Favourite colour' value='Blue'/><gContact:userDefinedField key='My notes' value='
 '/><gContact:userDefinedField key='Owes me' value='£10'/><gContact:userDefinedField key='' 
value='Foo'/><gContact:website href='http://example.com/' primary='true' 
rel='profile'/><gContact:calendarLink href='http://calendar.example.com/' primary='true' 
rel='home'/><gContact:language code='en-GB'/><gContact:jot rel='other'>This is a 
jot.</gContact:jot><gContact:hobby>Rowing</gContact:hobby><gd:extendedProperty 
name='CALURI'>http://example.com/</gd:extendedProperty></entry><entry 
gd:etag='&quot;SH0yeTVSLit7I2A9WhJSE0gORQI.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/1d2b10b808609587</id><updated>2012-07-03T22:24:29.391Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-07-03T22:24:29.391Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' href='https://www.
 google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/1d2b10b808609587' 
gd:etag='&quot;fDhLBWc-bCt7I2BiOUw1cRICWmQTY2Y8QhA.&quot;'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/1d2b10b808609587'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/1d2b10b808609587'/></entry><entry
 
gd:etag='&quot;R3c9ejVSLyt7I2A9WhJSFU8LRwU.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/218f31ad0c130aca</id><updated>2012-07-05T20:43:36.962Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-07-05T20:43:36.962Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/
 libgdata.test%40googlemail.com/218f31ad0c130aca' 
gd:etag='&quot;LT5gZFcjbCt7I2BVP1UOVwdYLVojPmcRaAk.&quot;'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/218f31ad0c130aca'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/218f31ad0c130aca'/></entry><entry
 
gd:etag='&quot;SH06eDVSLit7I2A9WhJbGUQMTg0.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/2357fd980bc95e86</id><updated>2012-09-30T09:23:19.310Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-09-30T09:23:19.310Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/23
 57fd980bc95e86' gd:etag='&quot;TQVdAl8hfCt7I2BrDUU7Wi1oGVEwG3gadlY.&quot;'/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/2357fd980bc95e86'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/2357fd980bc95e86'/><gContact:nickname>Test
 Contact Esq.</gContact:nickname></entry><entry 
gd:etag='&quot;RXw-ejVSLit7I2A9WhJSE0kCQgc.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/2571b489091c14e6</id><updated>2012-07-03T20:48:54.252Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-07-03T20:48:54.252Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.t
 est%40googlemail.com/2571b489091c14e6' gd:etag='&quot;LxReO0RBWit7I2BoUEM8bhgMD3I2G24tQw0.&quot;'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/2571b489091c14e6'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/2571b489091c14e6'/></entry><entry
 
gd:etag='&quot;Q3Y4fzBQLCt7I2A9WhFTFkoJQwU.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/28db0e230ca0370f</id><updated>2013-06-08T06:36:52.837Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-06-08T06:36:52.837Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title>John Smith</title><content>Notes</content><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.
 test%40googlemail.com/28db0e230ca0370f'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/28db0e230ca0370f'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/28db0e230ca0370f'/><gd:name><gd:fullName>John
 
Smith</gd:fullName><gd:givenName>John</gd:givenName><gd:familyName>Smith</gd:familyName></gd:name><gContact:nickname>Big
 
J</gContact:nickname><gContact:maidenName>Smith</gContact:maidenName><gContact:shortName>Jon</gContact:shortName><gContact:initials>A.
 B. C.</gContact:initials><gContact:gender value='male'/><gContact:birthday 
when='--01-01'/><gContact:occupation>Professional bum</gContact:occupation><gContact:sensitivity 
rel='personal'/><gContact:billingInformation>Big J Enterprises, 
Ltd.</gContact:billingInformation><gContact:priority 
rel='high'/><gContact:mileage>12km</gContact:mileage><gContact:directoryServer>Thi
 s is a server</gContact:directoryServer><gContact:subject>Charity work</gContact:subject><gContact:fileAs>J, 
Big</gContact:fileAs><gd:organization 
rel='http://schemas.google.com/g/2005#work'><gd:orgName>OrgCorp</gd:orgName><gd:orgTitle>President</gd:orgTitle></gd:organization><gd:email
 rel='http://schemas.google.com/g/2005#work' address='liz gmail com'/><gd:email 
rel='http://schemas.google.com/g/2005#home' address='liz example org'/><gd:im address='liz gmail com' 
protocol='http://schemas.google.com/g/2005#GOOGLE_TALK' 
rel='http://schemas.google.com/g/2005#home'/><gd:phoneNumber rel='http://schemas.google.com/g/2005#work' 
primary='true'>(206)555-1212</gd:phoneNumber><gd:phoneNumber 
rel='http://schemas.google.com/g/2005#home'>(206)555-1213</gd:phoneNumber><gd:structuredPostalAddress 
primary='true' rel='http://schemas.google.com/g/2005#work'><gd:formattedAddress>1600 Amphitheatre Pkwy 
Mountain View</gd:formattedAddress><gd:street>1600 Amphitheatre Pkwy Mountain View</gd:street>
 </gd:structuredPostalAddress><gContact:event rel='anniversary'><gd:when 
startTime='1900-01-01'/></gContact:event><gContact:externalId rel='organization' value='Number 
Six'/><gContact:relation rel='friend'>Brian Haddock</gContact:relation><gContact:userDefinedField 
key='Favourite colour' value='Blue'/><gContact:userDefinedField key='My notes' 
value=''/><gContact:userDefinedField key='Owes me' value='£10'/><gContact:userDefinedField key='' 
value='Foo'/><gContact:website href='http://example.com/' primary='true' 
rel='profile'/><gContact:calendarLink href='http://calendar.example.com/' primary='true' 
rel='home'/><gContact:language code='en-GB'/><gContact:jot rel='other'>This is a 
jot.</gContact:jot><gContact:hobby>Rowing</gContact:hobby><gd:extendedProperty 
name='CALURI'>http://example.com/</gd:extendedProperty></entry><entry 
gd:etag='&quot;QHo9cDVSLit7I2A9WhJTGUwJRQA.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/2a1140920b75f94f</id><u
 pdated>2012-06-28T19:54:01.468Z</updated><app:edited 
xmlns:app='http://www.w3.org/2007/app'>2012-06-28T19:54:01.468Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/2a1140920b75f94f' 
gd:etag='&quot;Zg8se2wlbCt7I2BqDVQGUh9pLXwldz4xdgY.&quot;'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/2a1140920b75f94f'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/2a1140920b75f94f'/></entry><entry
 
gd:etag='&quot;Q3Y4fzBQLCt7I2A9WhFTFkoJQwU.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/2d05d0880c30da83</id><updated>2013-06-08T06:36:52.837Z</
 updated><app:edited xmlns:app='http://www.w3.org/2007/app'>2013-06-08T06:36:52.837Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title>John Smith</title><content>Notes</content><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/2d05d0880c30da83'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/2d05d0880c30da83'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/2d05d0880c30da83'/><gd:name><gd:fullName>John
 
Smith</gd:fullName><gd:givenName>John</gd:givenName><gd:familyName>Smith</gd:familyName></gd:name><gContact:nickname>Big
 
J</gContact:nickname><gContact:maidenName>Smith</gContact:maidenName><gContact:shortName>Jon</gContact:shortName
<gContact:initials>A. B. C.</gContact:initials><gContact:gender value='male'/><gContact:birthday 
when='--01-01'/><gContact:occupation>Professional bum</gContact:occupation><gContact:sensitivity 
rel='personal'/><gContact:billingInformation>Big J Enterprises, 
Ltd.</gContact:billingInformation><gContact:priority 
rel='high'/><gContact:mileage>12km</gContact:mileage><gContact:directoryServer>This is a 
server</gContact:directoryServer><gContact:subject>Charity work</gContact:subject><gd:organization 
rel='http://schemas.google.com/g/2005#work'><gd:orgName>OrgCorp</gd:orgName><gd:orgTitle>President</gd:orgTitle></gd:organization><gd:email
rel='http://schemas.google.com/g/2005#work' address='liz gmail com'/><gd:email 
rel='http://schemas.google.com/g/2005#home' address='liz example org'/><gd:im address='liz gmail com' 
protocol='http://schemas.google.com/g/2005#GOOGLE_TALK' 
rel='http://schemas.google.com/g/2005#home'/><gd:phoneNumber rel='http://schemas.google.com/g/2005#work' 
primary
 ='true'>(206)555-1212</gd:phoneNumber><gd:phoneNumber 
rel='http://schemas.google.com/g/2005#home'>(206)555-1213</gd:phoneNumber><gd:structuredPostalAddress 
primary='true' rel='http://schemas.google.com/g/2005#work'><gd:formattedAddress>1600 Amphitheatre Pkwy 
Mountain View</gd:formattedAddress><gd:street>1600 Amphitheatre Pkwy Mountain 
View</gd:street></gd:structuredPostalAddress><gContact:event rel='anniversary'><gd:when 
startTime='1900-01-01'/></gContact:event><gContact:externalId rel='organization' value='Number 
Six'/><gContact:relation rel='friend'>Brian Haddock</gContact:relation><gContact:userDefinedField 
key='Favourite colour' value='Blue'/><gContact:userDefinedField key='My notes' 
value=''/><gContact:userDefinedField key='Owes me' value='£10'/><gContact:userDefinedField key='' 
value='Foo'/><gContact:website href='http://example.com/' primary='true' 
rel='profile'/><gContact:calendarLink href='http://calendar.example.com/' primary='true' 
rel='home'/><gContact:language 
 code='en-GB'/><gContact:jot rel='other'>This is a 
jot.</gContact:jot><gContact:hobby>Rowing</gContact:hobby><gd:extendedProperty 
name='CALURI'>http://example.com/</gd:extendedProperty></entry><entry 
gd:etag='&quot;RHw8cTVSLyt7I2A9WhNTGEgNQAE.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/2d9e26a48d120228</id><updated>2012-10-21T22:15:55.279Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-10-21T22:15:55.279Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/2d9e26a48d120228' 
gd:etag='&quot;Xmh2Il8GSit7I2B8L0sQSRdbJlIoKjwidDc.&quot;'/><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/2d9e26a48d12022
 8'/><link rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/2d9e26a48d120228'/><gContact:nickname>Test
 Contact Esq.</gContact:nickname></entry><entry 
gd:etag='&quot;R3g6cDVSLit7I2A9WhFQEkwCQQQ.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/2dbedc3b88565202</id><updated>2013-07-07T17:36:46.618Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-07T17:36:46.618Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title>Toby</title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/2dbedc3b88565202'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/2dbedc3b88565202'/><link 
rel='edit' type='appli
 cation/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/2dbedc3b88565202'/><gd:name><gd:fullName>Toby</gd:fullName><gd:givenName>Brian</gd:givenName></gd:name></entry></feed>
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='W/&quot;CUAAQX8-eit7I2A9WhFWEkg.&quot;'><id>libgdata 
test googlemail com</id><updated>2013-07-31T06:55:40.152Z</updated><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title>GData Test's Contacts</title><link 
rel='alternate' type='text/html' href='http://www.google.com/'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full'/><link 
rel='http://schemas.
 google.com/g/2005#batch' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/batch'/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/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/m8/feeds'>Contacts</generator><openSearch:totalResults>3</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry
 
gd:etag='&quot;RXw9fjVSLit7I2A9WhFWEkgJQAc.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/169313448d21bd4c</id><updated>2013-07-31T06:55:34.266Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:34.266Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/con
 tact/2008#contact'/><title></title><link rel='http://schemas.google.com/contacts/2008/rel#photo' 
type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/169313448d21bd4c'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/169313448d21bd4c'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/169313448d21bd4c'/><gContact:nickname>Test
 Contact 1</gContact:nickname></entry><entry 
gd:etag='&quot;RXg_eDVSLit7I2A9WhFWEkgJQAc.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/436c264a097a0e67</id><updated>2013-07-31T06:55:34.640Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:34.640Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><lin
 k rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/436c264a097a0e67'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/436c264a097a0e67'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/436c264a097a0e67'/><gContact:nickname>Test
 Contact 2</gContact:nickname></entry><entry 
gd:etag='&quot;RXc7cDVSLit7I2A9WhFWEkgJQAc.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/4e3d4cd30d411fa8</id><updated>2013-07-31T06:55:34.908Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:34.908Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contac
 ts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/4e3d4cd30d411fa8'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/4e3d4cd30d411fa8'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/4e3d4cd30d411fa8'/><gContact:nickname>Test
 Contact 3</gContact:nickname></entry></feed>
   
diff --git a/gdata/tests/traces/contacts/query-all-groups b/gdata/tests/traces/contacts/query-all-groups
index 558d89a..8865623 100644
--- a/gdata/tests/traces/contacts/query-all-groups
+++ b/gdata/tests/traces/contacts/query-all-groups
@@ -1,28 +1,28 @@
GET /m8/feeds/groups/default/full HTTP/1.1
-> Soup-Debug-Timestamp: 1373312512
-> Soup-Debug: SoupSession 1 (0x66d2c0), SoupMessage 40 (0x9920a0), SoupSocket 19 (0x8f23d0)
+> Soup-Debug-Timestamp: 1375253742
+> Soup-Debug: SoupSession 1 (0x66f2e0), SoupMessage 40 (0x7d28c0), SoupSocket 19 (0x72a3d0)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAABKUrSFzs8R87l64lxNJ2sdklhR-Xok8Cd28d10ttViz3pkeSosVgf5IXErmDHQMM9qajB6ZiW2R88u_SpE3SfL5uy_oNPB5Mlmte4X-TOdOSUGjIGRr6cv7JClAOlVBIxmkZVSWC_cCUFKRIuZ9VBkSIKSD9kCHJEBwWlhgcZsHSNAVuv9pIagsMR06K24PtAIO_VIRitw2VisJNxl3kqjDzobMqoyQypuTBXft5oOD2vHaJWkSI5JH5JM6zBxNnxLOUPt7oqUbLeJP8xe6FsF
+> Authorization: GoogleLogin 
auth=DQAAANUAAAAXK6VbKHFb8MrY8VDDk8TplfYU8Pl8OJ_JDJA5Ku7Q1SXgGXmiXXNSumd183YRnbThEZBRN5nYygedI2kQsVKzOFACPFEPo7ShQaRGycnxE3GLDfmMWN_zc43HzWPka0-WgOvpmqpxLFWh0EYyD3pF7Yebk_jLBxJEBWU9v8FZrljhbtK-g4kiiBeuNs4kYYLTu-vF7GCSIcSC2WuHSkxI091viwmbQhZY_6fi_MaY_qgOPss9HlAHeJ543JSjtRmsVtK_4aNWbmaz9VcCr9lXEksu1dUTvroRvtlr8XyvOg
GData-Version: 3
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1373312512
-< Soup-Debug: SoupMessage 40 (0x9920a0)
+< Soup-Debug-Timestamp: 1375253742
+< Soup-Debug: SoupMessage 40 (0x7d28c0)
 < Content-Type: application/atom+xml; charset=UTF-8; type=feed
-< Expires: Mon, 08 Jul 2013 19:41:52 GMT
-< Date: Mon, 08 Jul 2013 19:41:52 GMT
+< Expires: Wed, 31 Jul 2013 06:55:42 GMT
+< Date: Wed, 31 Jul 2013 06:55:42 GMT
 < Cache-control: private, max-age=0, must-revalidate, no-transform
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 3.1
-< ETag: W/"CEIFQ3w8fyt7I2A9WhFQE0w."
-< Last-Modified: Mon, 08 Jul 2013 19:41:52 GMT
+< ETag: W/"CUAAQ3wzeit7I2A9WhFWEkg."
+< Last-Modified: Wed, 31 Jul 2013 06:55:42 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:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='W/&quot;CEIFQ3w8fyt7I2A9WhFQE0w.&quot;'><id>libgdata 
test googlemail com</id><updated>2013-07-08T19:41:52.277Z</updated><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>GData Test's Contact Groups</title><link 
rel='alternate' type='text/html' href='http://www.google.com/'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full'/><link rel='http://schemas.
 google.com/g/2005#batch' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/batch'/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full?max-results=25'/><link 
rel='next' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full?start-index=26&amp;max-results=25'/><author><name>GData
 Test</name><email>libgdata test googlemail com</email></author><generator version='1.0' 
uri='http://www.google.com/m8/feeds'>Contacts</generator><openSearch:totalResults>27</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry
 
gd:etag='&quot;YDwreyM.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/6</id><updated>1970-01-01T00:00:00.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' t
 erm='http://schemas.google.com/contact/2008#group'/><title>System Group: My Contacts</title><content>System 
Group: My Contacts</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/6'/><gContact:systemGroup 
id='Contacts'/></entry><entry 
gd:etag='&quot;YDwreyM.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/d</id><updated>1970-01-01T00:00:00.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>System Group: Friends</title><content>System 
Group: Friends</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/d'/><gContact:systemGroup 
id='Friends'/></entry><entry 
gd:etag='&quot;YDwreyM.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/e</id><updated>1970-01-01T00:00:00.00
 0Z</updated><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>System Group: Family</title><content>System 
Group: Family</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/e'/><gContact:systemGroup 
id='Family'/></entry><entry 
gd:etag='&quot;YDwreyM.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/f</id><updated>1970-01-01T00:00:00.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>System Group: Coworkers</title><content>System 
Group: Coworkers</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/f'/><gContact:systemGroup 
id='Coworkers'/></entry><entry 
gd:etag='&quot;RH88fTVSLyt7I2A9WhRVEUwJQwA.&quot;'><id>http://www.google.com/m8/fe
 
eds/groups/libgdata.test%40googlemail.com/base/9f9c4590d0290d7</id><updated>2012-01-09T12:50:45.175Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-01-09T12:50:45.175Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Starred in Android</title><content>Starred in 
Android</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/9f9c4590d0290d7'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/9f9c4590d0290d7'/></entry><entry
 
gd:etag='&quot;Q3k9fjVSLit7I2A9WhdaF00KTwI.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/ceda7a8098d65d8</id><updated>2011-10-27T07:34:22.766Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2011-10-27T07:34:22.766Z</app:edited><category scheme='http://sch
 emas.google.com/g/2005#kind' term='http://schemas.google.com/contact/2008#group'/><title>New 
Group!</title><content>New Group!</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/ceda7a8098d65d8'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/ceda7a8098d65d8'/><gd:extendedProperty
 name='foobar'>barfoo</gd:extendedProperty></entry><entry 
gd:etag='&quot;QHw8fzVSLit7I2A9WhFQE0wIQgU.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/e9364a38f93cd69</id><updated>2013-07-08T19:41:51.277Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:41:51.277Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 1</title><content>Test Group 
1</content><link rel='self' type='application/atom
 +xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/e9364a38f93cd69'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/e9364a38f93cd69'/></entry><entry
 
gd:etag='&quot;RHcycTVSLit7I2A9WhVSFEgJQAU.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/103a86838e9d1619</id><updated>2012-03-11T08:15:15.999Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-03-11T08:15:15.999Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>New Group!</title><content>New 
Group!</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/103a86838e9d1619'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/103a86838
 e9d1619'/><gd:extendedProperty name='foobar'>barfoo</gd:extendedProperty></entry><entry 
gd:etag='&quot;SHg6fzVSLit7I2A9WhFQE0wLTwA.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/15adee270f46e129</id><updated>2013-07-08T19:30:49.617Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:30:49.617Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 1</title><content>Test Group 
1</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/15adee270f46e129'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/15adee270f46e129'/></entry><entry
 
gd:etag='&quot;QXkyfzVSLit7I2A9WhFQE0wLQQQ.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/15c0fe5b8ddbfbc6</
 id><updated>2013-07-08T19:26:40.797Z</updated><app:edited 
xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:26:40.797Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 3</title><content>Test Group 
3</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/15c0fe5b8ddbfbc6'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/15c0fe5b8ddbfbc6'/></entry><entry
 
gd:etag='&quot;QHw_fjVSLit7I2A9WhFQE0wLTwE.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/240ef615880f341e</id><updated>2013-07-08T19:30:51.246Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:30:51.246Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/contact/2008
 #group'/><title>Test Group 3</title><content>Test Group 3</content><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/240ef615880f341e'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/240ef615880f341e'/></entry><entry
 
gd:etag='&quot;QHY-fTVSLit7I2A9WhFQE0wIQgU.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/2fc0d100888d0ffe</id><updated>2013-07-08T19:41:51.855Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:41:51.855Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 2</title><content>Test Group 
2</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/2fc0d100888d0ffe'/><link 
rel='edit' type='
 application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/2fc0d100888d0ffe'/></entry><entry
 
gd:etag='&quot;Q3w7eDVSLSt7I2A9WhFQE0wLTwE.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/345d441d8dfd18f6</id><updated>2013-07-08T19:30:52.200Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:30:52.200Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>New Group!</title><content>New 
Group!</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/345d441d8dfd18f6'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/345d441d8dfd18f6'/><gd:extendedProperty
 name='foobar'>barfoo</gd:extendedProperty></entry><entry gd:etag='&quot;RngycDVSLit7I2A9WhJbGUQN
 
RQY.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/381f05888a4764f1</id><updated>2012-09-30T09:27:07.698Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-09-30T09:27:07.698Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 1</title><content>Test Group 
1</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/381f05888a4764f1'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/381f05888a4764f1'/></entry><entry
 
gd:etag='&quot;SXoycDVSLit7I2A9WhJbGUQNRQY.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/3eac3501098535e9</id><updated>2012-09-30T09:27:08.498Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-09-30T09:27:08.498Z</app:
 edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 3</title><content>Test Group 
3</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/3eac3501098535e9'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/3eac3501098535e9'/></entry><entry
 
gd:etag='&quot;Qn8-fDVSLit7I2A9WhFQE0wLQAc.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/42e4fb468e5145bb</id><updated>2013-07-08T19:28:53.154Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:28:53.154Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 1</title><content>Test Group 
1</content><link rel='self' type='application/atom+xml' href='https://w
 ww.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/42e4fb468e5145bb'/><link rel='edit' 
type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/42e4fb468e5145bb'/></entry><entry
 
gd:etag='&quot;SHo-eDVSLit7I2A9WhdaF00LTgU.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/4dea3ecd8da074a4</id><updated>2011-10-27T07:51:59.450Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2011-10-27T07:51:59.450Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>New Group!</title><content>New 
Group!</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/4dea3ecd8da074a4'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/4dea3ecd8da074a4'/><gd:exten
 dedProperty name='foobar'>barfoo</gd:extendedProperty></entry><entry 
gd:etag='&quot;SHk6cDVSLit7I2A9WhdaF00LTgU.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/55e0c0e18ed73198</id><updated>2011-10-27T07:51:59.718Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2011-10-27T07:51:59.718Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>New Group!</title><content>New 
Group!</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/55e0c0e18ed73198'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/55e0c0e18ed73198'/><gd:extendedProperty
 name='foobar'>barfoo</gd:extendedProperty></entry><entry 
gd:etag='&quot;SHw6fDVSLit7I2A9WhFQE0wLQg0.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%
 40googlemail.com/base/580db14f8de07aed</id><updated>2013-07-08T19:26:39.214Z</updated><app:edited 
xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:26:39.214Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 1</title><content>Test Group 
1</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/580db14f8de07aed'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/580db14f8de07aed'/></entry><entry
 
gd:etag='&quot;RXY6fDVSLit7I2A9WhFQE0wLQAc.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/598751ad88d93027</id><updated>2013-07-08T19:28:54.814Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:28:54.814Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term
 ='http://schemas.google.com/contact/2008#group'/><title>Test Group 3</title><content>Test Group 
3</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/598751ad88d93027'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/598751ad88d93027'/></entry><entry
 
gd:etag='&quot;RX4-fjVSLit7I2A9WhFQE0wLQAc.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/5ba19f428dea89fa</id><updated>2013-07-08T19:28:54.056Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:28:54.056Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 2</title><content>Test Group 
2</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/5b
 a19f428dea89fa'/><link rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/5ba19f428dea89fa'/></entry><entry
 
gd:etag='&quot;SX4yfjVSLyt7I2A9WhJbGUQNRQY.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/5d9275a48cf10b66</id><updated>2012-09-30T09:27:08.096Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-09-30T09:27:08.096Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 2</title><content>Test Group 
2</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/5d9275a48cf10b66'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/5d9275a48cf10b66'/></entry><entry
 gd:etag='&quot;RHg8cDVSLit7I2A9WhVSFEgJQAU.&quot;'><id>htt
 
p://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/67146a4c8a491d5e</id><updated>2012-03-11T08:15:15.678Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-03-11T08:15:15.678Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>New Group!</title><content>New 
Group!</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/67146a4c8a491d5e'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/67146a4c8a491d5e'/><gd:extendedProperty
 name='foobar'>barfoo</gd:extendedProperty></entry><entry 
gd:etag='&quot;Q3Y_ejVSLit7I2A9WhdaF00KTwI.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/6a5c6e938ca7cfd5</id><updated>2011-10-27T07:34:22.842Z</updated><app:edited
 xmlns:app='http://www.w3.org/
 2007/app'>2011-10-27T07:34:22.842Z</app:edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>New Group!</title><content>New 
Group!</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/6a5c6e938ca7cfd5'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/6a5c6e938ca7cfd5'/><gd:extendedProperty
 name='foobar'>barfoo</gd:extendedProperty></entry><entry 
gd:etag='&quot;QXo8eDVSLit7I2A9WhFQE0wLTwE.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/6b3132998861e571</id><updated>2013-07-08T19:30:50.470Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:30:50.470Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 2
 </title><content>Test Group 2</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/6b3132998861e571'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/6b3132998861e571'/></entry></feed>
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='W/&quot;CUAAQ3wzeit7I2A9WhFWEkg.&quot;'><id>libgdata 
test googlemail com</id><updated>2013-07-31T06:55:42.282Z</updated><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>GData Test's Contact Groups</title><link 
rel='alternate' type='text/html' href='http://www.google.com/'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full'/><link rel='http://schemas.
 google.com/g/2005#batch' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/batch'/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/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/m8/feeds'>Contacts</generator><openSearch:totalResults>8</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry
 
gd:etag='&quot;YDwreyM.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/6</id><updated>1970-01-01T00:00:00.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>System Group: My Contacts</title><content>System 
Group: My Contacts</content><link rel='self' type='appl
 ication/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/6'/><gContact:systemGroup 
id='Contacts'/></entry><entry 
gd:etag='&quot;YDwreyM.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/d</id><updated>1970-01-01T00:00:00.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>System Group: Friends</title><content>System 
Group: Friends</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/d'/><gContact:systemGroup 
id='Friends'/></entry><entry 
gd:etag='&quot;YDwreyM.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/e</id><updated>1970-01-01T00:00:00.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>System Group: Family</title><conte
 nt>System Group: Family</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/e'/><gContact:systemGroup 
id='Family'/></entry><entry 
gd:etag='&quot;YDwreyM.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/f</id><updated>1970-01-01T00:00:00.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>System Group: Coworkers</title><content>System 
Group: Coworkers</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/f'/><gContact:systemGroup 
id='Coworkers'/></entry><entry 
gd:etag='&quot;QHk8ejVSLit7I2A9WhFWEkgJQAA.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/41c12c10deddb0a</id><updated>2013-07-31T06:55:41.772Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>20
 13-07-31T06:55:41.772Z</app:edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 2</title><content>Test Group 
2</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/41c12c10deddb0a'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/41c12c10deddb0a'/></entry><entry
 
gd:etag='&quot;QH09eTVSLSt7I2A9WhFWEkgJQAA.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/9c46ac50e7507de</id><updated>2013-07-31T06:55:41.361Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:41.361Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 1</title><content>Test Group 
1</content><link rel='self' type='application/
 atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/9c46ac50e7507de'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/9c46ac50e7507de'/></entry><entry
 
gd:etag='&quot;RH88fTVSLyt7I2A9WhRVEUwJQwA.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/9f9c4590d0290d7</id><updated>2012-01-09T12:50:45.175Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-01-09T12:50:45.175Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Starred in Android</title><content>Starred in 
Android</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/9f9c4590d0290d7'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.
 com/full/9f9c4590d0290d7'/></entry><entry 
gd:etag='&quot;Q34_eDVSLit7I2A9WhFWEkgJQAA.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/5c431be00b02b2dc</id><updated>2013-07-31T06:55:42.040Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:42.040Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 3</title><content>Test Group 
3</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/5c431be00b02b2dc'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/5c431be00b02b2dc'/></entry></feed>
   
diff --git a/gdata/tests/traces/contacts/query-all-groups-async-progress-closure 
b/gdata/tests/traces/contacts/query-all-groups-async-progress-closure
index 4f3a3f6..6d706d7 100644
--- a/gdata/tests/traces/contacts/query-all-groups-async-progress-closure
+++ b/gdata/tests/traces/contacts/query-all-groups-async-progress-closure
@@ -1,28 +1,28 @@
GET /m8/feeds/groups/default/full HTTP/1.1
-> Soup-Debug-Timestamp: 1373312517
-> Soup-Debug: SoupSession 1 (0x66d2c0), SoupMessage 49 (0x7fffd8015460), SoupSocket 26 (0x7fffe0018e20)
+> Soup-Debug-Timestamp: 1375253744
+> Soup-Debug: SoupSession 1 (0x66f2e0), SoupMessage 49 (0x7fffe0026570), SoupSocket 26 (0x7fffe0028610)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAABKUrSFzs8R87l64lxNJ2sdklhR-Xok8Cd28d10ttViz3pkeSosVgf5IXErmDHQMM9qajB6ZiW2R88u_SpE3SfL5uy_oNPB5Mlmte4X-TOdOSUGjIGRr6cv7JClAOlVBIxmkZVSWC_cCUFKRIuZ9VBkSIKSD9kCHJEBwWlhgcZsHSNAVuv9pIagsMR06K24PtAIO_VIRitw2VisJNxl3kqjDzobMqoyQypuTBXft5oOD2vHaJWkSI5JH5JM6zBxNnxLOUPt7oqUbLeJP8xe6FsF
+> Authorization: GoogleLogin 
auth=DQAAANUAAAAXK6VbKHFb8MrY8VDDk8TplfYU8Pl8OJ_JDJA5Ku7Q1SXgGXmiXXNSumd183YRnbThEZBRN5nYygedI2kQsVKzOFACPFEPo7ShQaRGycnxE3GLDfmMWN_zc43HzWPka0-WgOvpmqpxLFWh0EYyD3pF7Yebk_jLBxJEBWU9v8FZrljhbtK-g4kiiBeuNs4kYYLTu-vF7GCSIcSC2WuHSkxI091viwmbQhZY_6fi_MaY_qgOPss9HlAHeJ543JSjtRmsVtK_4aNWbmaz9VcCr9lXEksu1dUTvroRvtlr8XyvOg
GData-Version: 3
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1373312517
-< Soup-Debug: SoupMessage 49 (0x7fffd8015460)
+< Soup-Debug-Timestamp: 1375253745
+< Soup-Debug: SoupMessage 49 (0x7fffe0026570)
 < Content-Type: application/atom+xml; charset=UTF-8; type=feed
-< Expires: Mon, 08 Jul 2013 19:41:57 GMT
-< Date: Mon, 08 Jul 2013 19:41:57 GMT
+< Expires: Wed, 31 Jul 2013 06:55:45 GMT
+< Date: Wed, 31 Jul 2013 06:55:45 GMT
 < Cache-control: private, max-age=0, must-revalidate, no-transform
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 3.1
-< ETag: W/"CEIFRn0zeit7I2A9WhFQE0w."
-< Last-Modified: Mon, 08 Jul 2013 19:41:57 GMT
+< ETag: W/"CUAARH44fCt7I2A9WhFWEkg."
+< Last-Modified: Wed, 31 Jul 2013 06:55:45 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:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='W/&quot;CEIFRn0zeit7I2A9WhFQE0w.&quot;'><id>libgdata 
test googlemail com</id><updated>2013-07-08T19:41:57.382Z</updated><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>GData Test's Contact Groups</title><link 
rel='alternate' type='text/html' href='http://www.google.com/'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full'/><link rel='http://schemas.
 google.com/g/2005#batch' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/batch'/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full?max-results=25'/><link 
rel='next' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full?start-index=26&amp;max-results=25'/><author><name>GData
 Test</name><email>libgdata test googlemail com</email></author><generator version='1.0' 
uri='http://www.google.com/m8/feeds'>Contacts</generator><openSearch:totalResults>31</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry
 
gd:etag='&quot;YDwreyM.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/6</id><updated>1970-01-01T00:00:00.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' t
 erm='http://schemas.google.com/contact/2008#group'/><title>System Group: My Contacts</title><content>System 
Group: My Contacts</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/6'/><gContact:systemGroup 
id='Contacts'/></entry><entry 
gd:etag='&quot;YDwreyM.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/d</id><updated>1970-01-01T00:00:00.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>System Group: Friends</title><content>System 
Group: Friends</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/d'/><gContact:systemGroup 
id='Friends'/></entry><entry 
gd:etag='&quot;YDwreyM.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/e</id><updated>1970-01-01T00:00:00.00
 0Z</updated><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>System Group: Family</title><content>System 
Group: Family</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/e'/><gContact:systemGroup 
id='Family'/></entry><entry 
gd:etag='&quot;YDwreyM.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/f</id><updated>1970-01-01T00:00:00.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>System Group: Coworkers</title><content>System 
Group: Coworkers</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/f'/><gContact:systemGroup 
id='Coworkers'/></entry><entry 
gd:etag='&quot;RH88fTVSLyt7I2A9WhRVEUwJQwA.&quot;'><id>http://www.google.com/m8/fe
 
eds/groups/libgdata.test%40googlemail.com/base/9f9c4590d0290d7</id><updated>2012-01-09T12:50:45.175Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-01-09T12:50:45.175Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Starred in Android</title><content>Starred in 
Android</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/9f9c4590d0290d7'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/9f9c4590d0290d7'/></entry><entry
 
gd:etag='&quot;Q3k9fjVSLit7I2A9WhdaF00KTwI.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/ceda7a8098d65d8</id><updated>2011-10-27T07:34:22.766Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2011-10-27T07:34:22.766Z</app:edited><category scheme='http://sch
 emas.google.com/g/2005#kind' term='http://schemas.google.com/contact/2008#group'/><title>New 
Group!</title><content>New Group!</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/ceda7a8098d65d8'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/ceda7a8098d65d8'/><gd:extendedProperty
 name='foobar'>barfoo</gd:extendedProperty></entry><entry 
gd:etag='&quot;QHw8fzVSLit7I2A9WhFQE0wIQgU.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/e9364a38f93cd69</id><updated>2013-07-08T19:41:51.277Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:41:51.277Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 1</title><content>Test Group 
1</content><link rel='self' type='application/atom
 +xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/e9364a38f93cd69'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/e9364a38f93cd69'/></entry><entry
 
gd:etag='&quot;RHcycTVSLit7I2A9WhVSFEgJQAU.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/103a86838e9d1619</id><updated>2012-03-11T08:15:15.999Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-03-11T08:15:15.999Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>New Group!</title><content>New 
Group!</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/103a86838e9d1619'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/103a86838
 e9d1619'/><gd:extendedProperty name='foobar'>barfoo</gd:extendedProperty></entry><entry 
gd:etag='&quot;SHg6fzVSLit7I2A9WhFQE0wLTwA.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/15adee270f46e129</id><updated>2013-07-08T19:30:49.617Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:30:49.617Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 1</title><content>Test Group 
1</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/15adee270f46e129'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/15adee270f46e129'/></entry><entry
 
gd:etag='&quot;QXkyfzVSLit7I2A9WhFQE0wLQQQ.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/15c0fe5b8ddbfbc6</
 id><updated>2013-07-08T19:26:40.797Z</updated><app:edited 
xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:26:40.797Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 3</title><content>Test Group 
3</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/15c0fe5b8ddbfbc6'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/15c0fe5b8ddbfbc6'/></entry><entry
 
gd:etag='&quot;QHw_fjVSLit7I2A9WhFQE0wLTwE.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/240ef615880f341e</id><updated>2013-07-08T19:30:51.246Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:30:51.246Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/contact/2008
 #group'/><title>Test Group 3</title><content>Test Group 3</content><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/240ef615880f341e'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/240ef615880f341e'/></entry><entry
 
gd:etag='&quot;QHY-fTVSLit7I2A9WhFQE0wIQgU.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/2fc0d100888d0ffe</id><updated>2013-07-08T19:41:51.855Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:41:51.855Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 2</title><content>Test Group 
2</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/2fc0d100888d0ffe'/><link 
rel='edit' type='
 application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/2fc0d100888d0ffe'/></entry><entry
 
gd:etag='&quot;Q3w7eDVSLSt7I2A9WhFQE0wLTwE.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/345d441d8dfd18f6</id><updated>2013-07-08T19:30:52.200Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:30:52.200Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>New Group!</title><content>New 
Group!</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/345d441d8dfd18f6'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/345d441d8dfd18f6'/><gd:extendedProperty
 name='foobar'>barfoo</gd:extendedProperty></entry><entry gd:etag='&quot;RHw4fzVSLit7I2A9WhFQE0wI
 
QgU.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/36a5440488fdacfe</id><updated>2013-07-08T19:41:55.237Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:41:55.237Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 3</title><content>Test Group 
3</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/36a5440488fdacfe'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/36a5440488fdacfe'/></entry><entry
 
gd:etag='&quot;RngycDVSLit7I2A9WhJbGUQNRQY.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/381f05888a4764f1</id><updated>2012-09-30T09:27:07.698Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-09-30T09:27:07.698Z</app:
 edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 1</title><content>Test Group 
1</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/381f05888a4764f1'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/381f05888a4764f1'/></entry><entry
 
gd:etag='&quot;SXoycDVSLit7I2A9WhJbGUQNRQY.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/3eac3501098535e9</id><updated>2012-09-30T09:27:08.498Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-09-30T09:27:08.498Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 3</title><content>Test Group 
3</content><link rel='self' type='application/atom+xml' href='https://w
 ww.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/3eac3501098535e9'/><link rel='edit' 
type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/3eac3501098535e9'/></entry><entry
 
gd:etag='&quot;Qn8-fDVSLit7I2A9WhFQE0wLQAc.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/42e4fb468e5145bb</id><updated>2013-07-08T19:28:53.154Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:28:53.154Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 1</title><content>Test Group 
1</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/42e4fb468e5145bb'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/42e4fb468e5145bb'/></ent
 ry><entry 
gd:etag='&quot;SHo-eDVSLit7I2A9WhdaF00LTgU.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/4dea3ecd8da074a4</id><updated>2011-10-27T07:51:59.450Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2011-10-27T07:51:59.450Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>New Group!</title><content>New 
Group!</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/4dea3ecd8da074a4'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/4dea3ecd8da074a4'/><gd:extendedProperty
 name='foobar'>barfoo</gd:extendedProperty></entry><entry 
gd:etag='&quot;SHk6cDVSLit7I2A9WhdaF00LTgU.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/55e0c0e18ed73198</id><updated>2011-10
 -27T07:51:59.718Z</updated><app:edited 
xmlns:app='http://www.w3.org/2007/app'>2011-10-27T07:51:59.718Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>New Group!</title><content>New 
Group!</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/55e0c0e18ed73198'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/55e0c0e18ed73198'/><gd:extendedProperty
 name='foobar'>barfoo</gd:extendedProperty></entry><entry 
gd:etag='&quot;Qnk5fjVSLit7I2A9WhFQE0wIQgU.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/5744eb290a991a8d</id><updated>2013-07-08T19:41:53.726Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:41:53.726Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term
 ='http://schemas.google.com/contact/2008#group'/><title>Test Group 1</title><content>Test Group 
1</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/5744eb290a991a8d'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/5744eb290a991a8d'/></entry><entry
 
gd:etag='&quot;SHw6fDVSLit7I2A9WhFQE0wLQg0.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/580db14f8de07aed</id><updated>2013-07-08T19:26:39.214Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:26:39.214Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 1</title><content>Test Group 
1</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/58
 0db14f8de07aed'/><link rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/580db14f8de07aed'/></entry><entry
 
gd:etag='&quot;RXY6fDVSLit7I2A9WhFQE0wLQAc.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/598751ad88d93027</id><updated>2013-07-08T19:28:54.814Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:28:54.814Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 3</title><content>Test Group 
3</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/598751ad88d93027'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/598751ad88d93027'/></entry><entry
 gd:etag='&quot;RX4-fjVSLit7I2A9WhFQE0wLQAc.&quot;'><id>htt
 
p://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/5ba19f428dea89fa</id><updated>2013-07-08T19:28:54.056Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:28:54.056Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 2</title><content>Test Group 
2</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/5ba19f428dea89fa'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/5ba19f428dea89fa'/></entry><entry
 
gd:etag='&quot;SX4yfjVSLyt7I2A9WhJbGUQNRQY.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/5d9275a48cf10b66</id><updated>2012-09-30T09:27:08.096Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-09-30T09:27:08.096Z</app:edited><category sc
 heme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 2</title><content>Test Group 
2</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/5d9275a48cf10b66'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/5d9275a48cf10b66'/></entry><entry
 
gd:etag='&quot;RXs4fjVSLit7I2A9WhFQE0wIQgU.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/6322bf8b8b4bc216</id><updated>2013-07-08T19:41:54.536Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:41:54.536Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 2</title><content>Test Group 
2</content><link rel='self' type='application/atom+xml' href='https://www.google.com/m8/fe
 eds/groups/libgdata.test%40googlemail.com/full/6322bf8b8b4bc216'/><link rel='edit' 
type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/6322bf8b8b4bc216'/></entry></feed>
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='W/&quot;CUAARH44fCt7I2A9WhFWEkg.&quot;'><id>libgdata 
test googlemail com</id><updated>2013-07-31T06:55:45.034Z</updated><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>GData Test's Contact Groups</title><link 
rel='alternate' type='text/html' href='http://www.google.com/'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full'/><link rel='http://schemas.
 google.com/g/2005#batch' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/batch'/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/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/m8/feeds'>Contacts</generator><openSearch:totalResults>7</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry
 
gd:etag='&quot;YDwreyM.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/6</id><updated>1970-01-01T00:00:00.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>System Group: My Contacts</title><content>System 
Group: My Contacts</content><link rel='self' type='appl
 ication/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/6'/><gContact:systemGroup 
id='Contacts'/></entry><entry 
gd:etag='&quot;YDwreyM.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/d</id><updated>1970-01-01T00:00:00.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>System Group: Friends</title><content>System 
Group: Friends</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/d'/><gContact:systemGroup 
id='Friends'/></entry><entry 
gd:etag='&quot;YDwreyM.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/e</id><updated>1970-01-01T00:00:00.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>System Group: Family</title><conte
 nt>System Group: Family</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/e'/><gContact:systemGroup 
id='Family'/></entry><entry 
gd:etag='&quot;YDwreyM.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/f</id><updated>1970-01-01T00:00:00.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>System Group: Coworkers</title><content>System 
Group: Coworkers</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/f'/><gContact:systemGroup 
id='Coworkers'/></entry><entry 
gd:etag='&quot;RH88fTVSLyt7I2A9WhRVEUwJQwA.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/9f9c4590d0290d7</id><updated>2012-01-09T12:50:45.175Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>20
 12-01-09T12:50:45.175Z</app:edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Starred in Android</title><content>Starred in 
Android</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/9f9c4590d0290d7'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/9f9c4590d0290d7'/></entry><entry
 
gd:etag='&quot;Qnw6ejVSLit7I2A9WhFWEkgJQAA.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/423d87938c22cbb9</id><updated>2013-07-31T06:55:43.212Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:43.212Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 2</title><content>Test Group 
2</content><link rel='self' type=
 'application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/423d87938c22cbb9'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/423d87938c22cbb9'/></entry><entry
 
gd:etag='&quot;RXkyfjVSLit7I2A9WhFWEkgJQAA.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/427217908c585920</id><updated>2013-07-31T06:55:44.796Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:44.796Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 3</title><content>Test Group 
3</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/427217908c585920'/><link 
rel='edit' type='application/atom+xml' href='https://www.google.com/m8/feeds/groups/libgdata.test%40google
 mail.com/full/427217908c585920'/></entry></feed>
   
diff --git a/gdata/tests/traces/contacts/query_all_contacts-async 
b/gdata/tests/traces/contacts/query_all_contacts-async
new file mode 100644
index 0000000..4f4cd4f
--- /dev/null
+++ b/gdata/tests/traces/contacts/query_all_contacts-async
@@ -0,0 +1,28 @@
+> GET /m8/feeds/contacts/default/full HTTP/1.1
+> Soup-Debug-Timestamp: 1375253724
+> Soup-Debug: SoupSession 1 (0x66f2e0), SoupMessage 17 (0x7fffe0026660), SoupSocket 8 (0x72a250)
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAAAXK6VbKHFb8MrY8VDDk8TplfYU8Pl8OJ_JDJA5Ku7Q1SXgGXmiXXNSumd183YRnbThEZBRN5nYygedI2kQsVKzOFACPFEPo7ShQaRGycnxE3GLDfmMWN_zc43HzWPka0-WgOvpmqpxLFWh0EYyD3pF7Yebk_jLBxJEBWU9v8FZrljhbtK-g4kiiBeuNs4kYYLTu-vF7GCSIcSC2WuHSkxI091viwmbQhZY_6fi_MaY_qgOPss9HlAHeJ543JSjtRmsVtK_4aNWbmaz9VcCr9lXEksu1dUTvroRvtlr8XyvOg
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375253724
+< Soup-Debug: SoupMessage 17 (0x7fffe0026660)
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Expires: Wed, 31 Jul 2013 06:55:24 GMT
+< Date: Wed, 31 Jul 2013 06:55:24 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.1
+< ETag: W/"CUAGRXo-fCt7I2A9WhFWEkg."
+< Last-Modified: Wed, 31 Jul 2013 06:55:24 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:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='W/&quot;CUAGRXo-fCt7I2A9WhFWEkg.&quot;'><id>libgdata 
test googlemail com</id><updated>2013-07-31T06:55:24.454Z</updated><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title>GData Test's Contacts</title><link 
rel='alternate' type='text/html' href='http://www.google.com/'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full'/><link 
rel='http://schemas.
 google.com/g/2005#batch' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/batch'/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/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/m8/feeds'>Contacts</generator><openSearch:totalResults>3</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry
 
gd:etag='&quot;SXo6cTVSLit7I2A9WhFWEkgJQAU.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/276293b50c9c9c90</id><updated>2013-07-31T06:55:18.419Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:18.419Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/con
 tact/2008#contact'/><title></title><link rel='http://schemas.google.com/contacts/2008/rel#photo' 
type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/276293b50c9c9c90'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/276293b50c9c9c90'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/276293b50c9c9c90'/><gContact:nickname>Test
 Contact 1</gContact:nickname></entry><entry 
gd:etag='&quot;SH8zfzVSLit7I2A9WhFWEkgJQAU.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/5383be18886ab2dd</id><updated>2013-07-31T06:55:19.187Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:19.187Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><lin
 k rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/5383be18886ab2dd'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/5383be18886ab2dd'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/5383be18886ab2dd'/><gContact:nickname>Test
 Contact 3</gContact:nickname></entry><entry 
gd:etag='&quot;SXY6fDVSLit7I2A9WhFWEkgJQAU.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/7164f0b208a6afbe</id><updated>2013-07-31T06:55:18.814Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:18.814Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contac
 ts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/7164f0b208a6afbe'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/7164f0b208a6afbe'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/7164f0b208a6afbe'/><gContact:nickname>Test
 Contact 2</gContact:nickname></entry></feed>
+  
diff --git a/gdata/tests/traces/contacts/query_all_contacts-async-cancellation 
b/gdata/tests/traces/contacts/query_all_contacts-async-cancellation
new file mode 100644
index 0000000..3b99245
--- /dev/null
+++ b/gdata/tests/traces/contacts/query_all_contacts-async-cancellation
@@ -0,0 +1,28 @@
+> GET /m8/feeds/contacts/default/full HTTP/1.1
+> Soup-Debug-Timestamp: 1375253733
+> Soup-Debug: SoupSession 1 (0x66f2e0), SoupMessage 26 (0x7fffe4002ac0), SoupSocket 13 (0x7fffe0028610)
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAAAXK6VbKHFb8MrY8VDDk8TplfYU8Pl8OJ_JDJA5Ku7Q1SXgGXmiXXNSumd183YRnbThEZBRN5nYygedI2kQsVKzOFACPFEPo7ShQaRGycnxE3GLDfmMWN_zc43HzWPka0-WgOvpmqpxLFWh0EYyD3pF7Yebk_jLBxJEBWU9v8FZrljhbtK-g4kiiBeuNs4kYYLTu-vF7GCSIcSC2WuHSkxI091viwmbQhZY_6fi_MaY_qgOPss9HlAHeJ543JSjtRmsVtK_4aNWbmaz9VcCr9lXEksu1dUTvroRvtlr8XyvOg
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375253733
+< Soup-Debug: SoupMessage 26 (0x7fffe4002ac0)
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Expires: Wed, 31 Jul 2013 06:55:33 GMT
+< Date: Wed, 31 Jul 2013 06:55:33 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.1
+< ETag: W/"CUAHQn4ycCt7I2A9WhFWEkg."
+< Last-Modified: Wed, 31 Jul 2013 06:55:33 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:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='W/&quot;CUAHQn4ycCt7I2A9WhFWEkg.&quot;'><id>libgdata 
test googlemail com</id><updated>2013-07-31T06:55:33.098Z</updated><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title>GData Test's Contacts</title><link 
rel='alternate' type='text/html' href='http://www.google.com/'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full'/><link 
rel='http://schemas.
 google.com/g/2005#batch' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/batch'/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/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/m8/feeds'>Contacts</generator><openSearch:totalResults>3</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry
 
gd:etag='&quot;RHk4fzVSLit7I2A9WhFWEkgJQAY.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/3ccb56000a5f60e9</id><updated>2013-07-31T06:55:25.737Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:25.737Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/con
 tact/2008#contact'/><title></title><link rel='http://schemas.google.com/contacts/2008/rel#photo' 
type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/3ccb56000a5f60e9'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/3ccb56000a5f60e9'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/3ccb56000a5f60e9'/><gContact:nickname>Test
 Contact 1</gContact:nickname></entry><entry 
gd:etag='&quot;R3gzfTVSLit7I2A9WhFWEkgJQAY.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/5f1e7d538ff8fc72</id><updated>2013-07-31T06:55:26.685Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:26.685Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><lin
 k rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/5f1e7d538ff8fc72'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/5f1e7d538ff8fc72'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/5f1e7d538ff8fc72'/><gContact:nickname>Test
 Contact 3</gContact:nickname></entry><entry 
gd:etag='&quot;R384fzVSLit7I2A9WhFWEkgJQAY.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/6c6edb5e0ff91e8f</id><updated>2013-07-31T06:55:26.137Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:26.137Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contac
 ts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/6c6edb5e0ff91e8f'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/6c6edb5e0ff91e8f'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/6c6edb5e0ff91e8f'/><gContact:nickname>Test
 Contact 2</gContact:nickname></entry></feed>
+  
diff --git a/gdata/tests/traces/contacts/query_all_groups-async 
b/gdata/tests/traces/contacts/query_all_groups-async
new file mode 100644
index 0000000..7738675
--- /dev/null
+++ b/gdata/tests/traces/contacts/query_all_groups-async
@@ -0,0 +1,28 @@
+> GET /m8/feeds/groups/default/full HTTP/1.1
+> Soup-Debug-Timestamp: 1375253743
+> Soup-Debug: SoupSession 1 (0x66f2e0), SoupMessage 45 (0x7fffe0026570), SoupSocket 23 (0x72a550)
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAAAXK6VbKHFb8MrY8VDDk8TplfYU8Pl8OJ_JDJA5Ku7Q1SXgGXmiXXNSumd183YRnbThEZBRN5nYygedI2kQsVKzOFACPFEPo7ShQaRGycnxE3GLDfmMWN_zc43HzWPka0-WgOvpmqpxLFWh0EYyD3pF7Yebk_jLBxJEBWU9v8FZrljhbtK-g4kiiBeuNs4kYYLTu-vF7GCSIcSC2WuHSkxI091viwmbQhZY_6fi_MaY_qgOPss9HlAHeJ543JSjtRmsVtK_4aNWbmaz9VcCr9lXEksu1dUTvroRvtlr8XyvOg
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375253743
+< Soup-Debug: SoupMessage 45 (0x7fffe0026570)
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Expires: Wed, 31 Jul 2013 06:55:43 GMT
+< Date: Wed, 31 Jul 2013 06:55:43 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.1
+< ETag: W/"CUAAQnY6eSt7I2A9WhFWEkg."
+< Last-Modified: Wed, 31 Jul 2013 06:55:43 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:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='W/&quot;CUAAQnY6eSt7I2A9WhFWEkg.&quot;'><id>libgdata 
test googlemail com</id><updated>2013-07-31T06:55:43.811Z</updated><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>GData Test's Contact Groups</title><link 
rel='alternate' type='text/html' href='http://www.google.com/'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full'/><link rel='http://schemas.
 google.com/g/2005#batch' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/batch'/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/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/m8/feeds'>Contacts</generator><openSearch:totalResults>8</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry
 
gd:etag='&quot;YDwreyM.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/6</id><updated>1970-01-01T00:00:00.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>System Group: My Contacts</title><content>System 
Group: My Contacts</content><link rel='self' type='appl
 ication/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/6'/><gContact:systemGroup 
id='Contacts'/></entry><entry 
gd:etag='&quot;YDwreyM.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/d</id><updated>1970-01-01T00:00:00.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>System Group: Friends</title><content>System 
Group: Friends</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/d'/><gContact:systemGroup 
id='Friends'/></entry><entry 
gd:etag='&quot;YDwreyM.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/e</id><updated>1970-01-01T00:00:00.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>System Group: Family</title><conte
 nt>System Group: Family</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/e'/><gContact:systemGroup 
id='Family'/></entry><entry 
gd:etag='&quot;YDwreyM.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/f</id><updated>1970-01-01T00:00:00.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>System Group: Coworkers</title><content>System 
Group: Coworkers</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/f'/><gContact:systemGroup 
id='Coworkers'/></entry><entry 
gd:etag='&quot;QHk8ejVSLit7I2A9WhFWEkgJQAA.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/41c12c10deddb0a</id><updated>2013-07-31T06:55:41.772Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>20
 13-07-31T06:55:41.772Z</app:edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 2</title><content>Test Group 
2</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/41c12c10deddb0a'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/41c12c10deddb0a'/></entry><entry
 
gd:etag='&quot;QH09eTVSLSt7I2A9WhFWEkgJQAA.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/9c46ac50e7507de</id><updated>2013-07-31T06:55:41.361Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:41.361Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 1</title><content>Test Group 
1</content><link rel='self' type='application/
 atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/9c46ac50e7507de'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/9c46ac50e7507de'/></entry><entry
 
gd:etag='&quot;RH88fTVSLyt7I2A9WhRVEUwJQwA.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/9f9c4590d0290d7</id><updated>2012-01-09T12:50:45.175Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-01-09T12:50:45.175Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Starred in Android</title><content>Starred in 
Android</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/9f9c4590d0290d7'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.
 com/full/9f9c4590d0290d7'/></entry><entry 
gd:etag='&quot;Q34_eDVSLit7I2A9WhFWEkgJQAA.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/5c431be00b02b2dc</id><updated>2013-07-31T06:55:42.040Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:42.040Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 3</title><content>Test Group 
3</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/5c431be00b02b2dc'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/5c431be00b02b2dc'/></entry></feed>
+  
diff --git a/gdata/tests/traces/contacts/query_all_groups-async-cancellation 
b/gdata/tests/traces/contacts/query_all_groups-async-cancellation
new file mode 100644
index 0000000..d4fe004
--- /dev/null
+++ b/gdata/tests/traces/contacts/query_all_groups-async-cancellation
@@ -0,0 +1,28 @@
+> GET /m8/feeds/groups/default/full HTTP/1.1
+> Soup-Debug-Timestamp: 1375253747
+> Soup-Debug: SoupSession 1 (0x66f2e0), SoupMessage 55 (0x7fffe4002bb0), SoupSocket 31 (0x7fffe00286d0)
+> Host: www.google.com
+> Authorization: GoogleLogin 
auth=DQAAANUAAAAXK6VbKHFb8MrY8VDDk8TplfYU8Pl8OJ_JDJA5Ku7Q1SXgGXmiXXNSumd183YRnbThEZBRN5nYygedI2kQsVKzOFACPFEPo7ShQaRGycnxE3GLDfmMWN_zc43HzWPka0-WgOvpmqpxLFWh0EYyD3pF7Yebk_jLBxJEBWU9v8FZrljhbtK-g4kiiBeuNs4kYYLTu-vF7GCSIcSC2WuHSkxI091viwmbQhZY_6fi_MaY_qgOPss9HlAHeJ543JSjtRmsVtK_4aNWbmaz9VcCr9lXEksu1dUTvroRvtlr8XyvOg
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375253747
+< Soup-Debug: SoupMessage 55 (0x7fffe4002bb0)
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Expires: Wed, 31 Jul 2013 06:55:47 GMT
+< Date: Wed, 31 Jul 2013 06:55:47 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.1
+< ETag: W/"CUAARnw4fit7I2A9WhFWEkg."
+< Last-Modified: Wed, 31 Jul 2013 06:55: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:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' gd:etag='W/&quot;CUAARnw4fit7I2A9WhFWEkg.&quot;'><id>libgdata 
test googlemail com</id><updated>2013-07-31T06:55:47.236Z</updated><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>GData Test's Contact Groups</title><link 
rel='alternate' type='text/html' href='http://www.google.com/'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full'/><link rel='http://schemas.
 google.com/g/2005#batch' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/batch'/><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/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/m8/feeds'>Contacts</generator><openSearch:totalResults>17</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry
 
gd:etag='&quot;YDwreyM.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/6</id><updated>1970-01-01T00:00:00.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>System Group: My Contacts</title><content>System 
Group: My Contacts</content><link rel='self' type='app
 lication/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/6'/><gContact:systemGroup 
id='Contacts'/></entry><entry 
gd:etag='&quot;YDwreyM.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/d</id><updated>1970-01-01T00:00:00.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>System Group: Friends</title><content>System 
Group: Friends</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/d'/><gContact:systemGroup 
id='Friends'/></entry><entry 
gd:etag='&quot;YDwreyM.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/e</id><updated>1970-01-01T00:00:00.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>System Group: Family</title><cont
 ent>System Group: Family</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/e'/><gContact:systemGroup 
id='Family'/></entry><entry 
gd:etag='&quot;YDwreyM.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/f</id><updated>1970-01-01T00:00:00.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>System Group: Coworkers</title><content>System 
Group: Coworkers</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/f'/><gContact:systemGroup 
id='Coworkers'/></entry><entry 
gd:etag='&quot;QHk8ejVSLit7I2A9WhFWEkgJQAA.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/41c12c10deddb0a</id><updated>2013-07-31T06:55:41.772Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2
 013-07-31T06:55:41.772Z</app:edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 2</title><content>Test Group 
2</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/41c12c10deddb0a'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/41c12c10deddb0a'/></entry><entry
 
gd:etag='&quot;RXo4fjVSLit7I2A9WhFWEkgJQAA.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/43bb3a68f54765e</id><updated>2013-07-31T06:55:44.436Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:44.436Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 2</title><content>Test Group 
2</content><link rel='self' type='application
 /atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/43bb3a68f54765e'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/43bb3a68f54765e'/></entry><entry
 
gd:etag='&quot;QH09eTVSLSt7I2A9WhFWEkgJQAA.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/9c46ac50e7507de</id><updated>2013-07-31T06:55:41.361Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:41.361Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 1</title><content>Test Group 
1</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/9c46ac50e7507de'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/9c
 46ac50e7507de'/></entry><entry 
gd:etag='&quot;RH88fTVSLyt7I2A9WhRVEUwJQwA.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/9f9c4590d0290d7</id><updated>2012-01-09T12:50:45.175Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-01-09T12:50:45.175Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Starred in Android</title><content>Starred in 
Android</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/9f9c4590d0290d7'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/9f9c4590d0290d7'/></entry><entry
 
gd:etag='&quot;Qns5fTVSLit7I2A9WhFWEkgJQAA.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/15b429820cc238c0</id><updated>2013-07-31T06:55:43.525Z</updated><a
 pp:edited xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:43.525Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 3</title><content>Test Group 
3</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/15b429820cc238c0'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/15b429820cc238c0'/></entry><entry
 
gd:etag='&quot;RHc5fzVSLyt7I2A9WhFWEkgJQAA.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/20ec45c60a5db757</id><updated>2013-07-31T06:55:45.927Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:45.927Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 3</title><content>Tes
 t Group 3</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/20ec45c60a5db757'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/20ec45c60a5db757'/></entry><entry
 
gd:etag='&quot;RHg4ezVSLit7I2A9WhFWEkgJQAA.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/2b75ddaa8edbe01c</id><updated>2013-07-31T06:55:45.633Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:45.633Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 2</title><content>Test Group 
2</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/2b75ddaa8edbe01c'/><link 
rel='edit' type='application/atom+xml' href='https://www.google.c
 om/m8/feeds/groups/libgdata.test%40googlemail.com/full/2b75ddaa8edbe01c'/></entry><entry 
gd:etag='&quot;Qnw6ejVSLit7I2A9WhFWEkgJQAA.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/423d87938c22cbb9</id><updated>2013-07-31T06:55:43.212Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:43.212Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 2</title><content>Test Group 
2</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/423d87938c22cbb9'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/423d87938c22cbb9'/></entry><entry
 
gd:etag='&quot;Q3c4cTVSLit7I2A9WhFWEkgJQAA.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/4651b45a88d65971<
 /id><updated>2013-07-31T06:55:42.939Z</updated><app:edited 
xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:42.939Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 1</title><content>Test Group 
1</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/4651b45a88d65971'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/4651b45a88d65971'/></entry><entry
 
gd:etag='&quot;RH08eTVSLit7I2A9WhFWEkgJQAA.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/4dd4a4c30dbdb339</id><updated>2013-07-31T06:55:45.371Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:45.371Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/contact/200
 8#group'/><title>Test Group 1</title><content>Test Group 1</content><link rel='self' 
type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/4dd4a4c30dbdb339'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/4dd4a4c30dbdb339'/></entry><entry
 
gd:etag='&quot;Q34_eDVSLit7I2A9WhFWEkgJQAA.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/5c431be00b02b2dc</id><updated>2013-07-31T06:55:42.040Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:42.040Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 3</title><content>Test Group 
3</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/5c431be00b02b2dc'/><link 
rel='edit' type=
 'application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/5c431be00b02b2dc'/></entry><entry
 
gd:etag='&quot;Q3g7fDVSLit7I2A9WhFWEkgJQAA.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/609cf4d409a6b3b4</id><updated>2013-07-31T06:55:42.604Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:42.604Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>New Group!</title><content>New 
Group!</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/609cf4d409a6b3b4'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/609cf4d409a6b3b4'/><gd:extendedProperty
 name='foobar'>barfoo</gd:extendedProperty></entry><entry gd:etag='&quot;RX8-cTVSLyt7I2A9WhFWEkg
 
JQAA.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/6ca68c6b0e8b2521</id><updated>2013-07-31T06:55:44.159Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:44.159Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 1</title><content>Test Group 
1</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/6ca68c6b0e8b2521'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/6ca68c6b0e8b2521'/></entry></feed>
+  
diff --git a/gdata/tests/traces/contacts/setup-query-all-contacts 
b/gdata/tests/traces/contacts/setup-query-all-contacts
index e7738e3..dddde16 100644
--- a/gdata/tests/traces/contacts/setup-query-all-contacts
+++ b/gdata/tests/traces/contacts/setup-query-all-contacts
@@ -1,8 +1,8 @@
POST /m8/feeds/contacts/default/full HTTP/1.1
-> Soup-Debug-Timestamp: 1373312506
-> Soup-Debug: SoupSession 1 (0x66d2c0), SoupMessage 30 (0x992460), SoupSocket 14 (0x8f2250)
+> Soup-Debug-Timestamp: 1375253734
+> Soup-Debug: SoupSession 1 (0x66f2e0), SoupMessage 30 (0x7d2c80), SoupSocket 14 (0x72a310)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAABKUrSFzs8R87l64lxNJ2sdklhR-Xok8Cd28d10ttViz3pkeSosVgf5IXErmDHQMM9qajB6ZiW2R88u_SpE3SfL5uy_oNPB5Mlmte4X-TOdOSUGjIGRr6cv7JClAOlVBIxmkZVSWC_cCUFKRIuZ9VBkSIKSD9kCHJEBwWlhgcZsHSNAVuv9pIagsMR06K24PtAIO_VIRitw2VisJNxl3kqjDzobMqoyQypuTBXft5oOD2vHaJWkSI5JH5JM6zBxNnxLOUPt7oqUbLeJP8xe6FsF
+> Authorization: GoogleLogin 
auth=DQAAANUAAAAXK6VbKHFb8MrY8VDDk8TplfYU8Pl8OJ_JDJA5Ku7Q1SXgGXmiXXNSumd183YRnbThEZBRN5nYygedI2kQsVKzOFACPFEPo7ShQaRGycnxE3GLDfmMWN_zc43HzWPka0-WgOvpmqpxLFWh0EYyD3pF7Yebk_jLBxJEBWU9v8FZrljhbtK-g4kiiBeuNs4kYYLTu-vF7GCSIcSC2WuHSkxI091viwmbQhZY_6fi_MaY_qgOPss9HlAHeJ543JSjtRmsVtK_4aNWbmaz9VcCr9lXEksu1dUTvroRvtlr8XyvOg
GData-Version: 3
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
@@ -11,30 +11,30 @@
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app'><title type='text'></title><category 
term='http://schemas.google.com/contact/2008#contact' 
scheme='http://schemas.google.com/g/2005#kind'/><gd:name/><gContact:nickname>Test Contact 
1</gContact:nickname></entry>
   
 < HTTP/1.1 201 Created
-< Soup-Debug-Timestamp: 1373312507
-< Soup-Debug: SoupMessage 30 (0x992460)
+< Soup-Debug-Timestamp: 1375253734
+< Soup-Debug: SoupMessage 30 (0x7d2c80)
 < Content-Type: application/atom+xml; charset=UTF-8; type=entry
-< Expires: Mon, 08 Jul 2013 19:41:47 GMT
-< Date: Mon, 08 Jul 2013 19:41:47 GMT
+< Expires: Wed, 31 Jul 2013 06:55:34 GMT
+< Date: Wed, 31 Jul 2013 06:55:34 GMT
 < Cache-control: private, max-age=0, must-revalidate, no-transform
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 3.1
-< ETag: "Rn8-fzVSLyt7I2A9WhFQE0wIQgQ."
-< Location: https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/328ff50a88aea463
-< Content-Location: 
https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/328ff50a88aea463
+< ETag: "RXw9fjVSLit7I2A9WhFWEkgJQAc."
+< Location: https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/169313448d21bd4c
+< Content-Location: 
https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/169313448d21bd4c
 < 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:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;Rn8-fzVSLyt7I2A9WhFQE0wIQgQ.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/328ff50a88aea463</id><updated>2013-07-08T19:41:47.157Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:41:47.157Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/328ff50a88aea463'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/328ff50a88aea463'/><link 
rel='edit' ty
 pe='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/328ff50a88aea463'/><gContact:nickname>Test
 Contact 1</gContact:nickname></entry>
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;RXw9fjVSLit7I2A9WhFWEkgJQAc.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/169313448d21bd4c</id><updated>2013-07-31T06:55:34.266Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:34.266Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/169313448d21bd4c'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/169313448d21bd4c'/><link 
rel='edit' ty
 pe='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/169313448d21bd4c'/><gContact:nickname>Test
 Contact 1</gContact:nickname></entry>
   
POST /m8/feeds/contacts/default/full HTTP/1.1
-> Soup-Debug-Timestamp: 1373312507
-> Soup-Debug: SoupSession 1 (0x66d2c0), SoupMessage 31 (0x992280), SoupSocket 15 (0x8f2310)
+> Soup-Debug-Timestamp: 1375253734
+> Soup-Debug: SoupSession 1 (0x66f2e0), SoupMessage 31 (0x7d2aa0), SoupSocket 15 (0x72a250)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAABKUrSFzs8R87l64lxNJ2sdklhR-Xok8Cd28d10ttViz3pkeSosVgf5IXErmDHQMM9qajB6ZiW2R88u_SpE3SfL5uy_oNPB5Mlmte4X-TOdOSUGjIGRr6cv7JClAOlVBIxmkZVSWC_cCUFKRIuZ9VBkSIKSD9kCHJEBwWlhgcZsHSNAVuv9pIagsMR06K24PtAIO_VIRitw2VisJNxl3kqjDzobMqoyQypuTBXft5oOD2vHaJWkSI5JH5JM6zBxNnxLOUPt7oqUbLeJP8xe6FsF
+> Authorization: GoogleLogin 
auth=DQAAANUAAAAXK6VbKHFb8MrY8VDDk8TplfYU8Pl8OJ_JDJA5Ku7Q1SXgGXmiXXNSumd183YRnbThEZBRN5nYygedI2kQsVKzOFACPFEPo7ShQaRGycnxE3GLDfmMWN_zc43HzWPka0-WgOvpmqpxLFWh0EYyD3pF7Yebk_jLBxJEBWU9v8FZrljhbtK-g4kiiBeuNs4kYYLTu-vF7GCSIcSC2WuHSkxI091viwmbQhZY_6fi_MaY_qgOPss9HlAHeJ543JSjtRmsVtK_4aNWbmaz9VcCr9lXEksu1dUTvroRvtlr8XyvOg
GData-Version: 3
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
@@ -43,30 +43,30 @@
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app'><title type='text'></title><category 
term='http://schemas.google.com/contact/2008#contact' 
scheme='http://schemas.google.com/g/2005#kind'/><gd:name/><gContact:nickname>Test Contact 
2</gContact:nickname></entry>
   
 < HTTP/1.1 201 Created
-< Soup-Debug-Timestamp: 1373312508
-< Soup-Debug: SoupMessage 31 (0x992280)
+< Soup-Debug-Timestamp: 1375253734
+< Soup-Debug: SoupMessage 31 (0x7d2aa0)
 < Content-Type: application/atom+xml; charset=UTF-8; type=entry
-< Expires: Mon, 08 Jul 2013 19:41:48 GMT
-< Date: Mon, 08 Jul 2013 19:41:48 GMT
+< Expires: Wed, 31 Jul 2013 06:55:34 GMT
+< Date: Wed, 31 Jul 2013 06:55:34 GMT
 < Cache-control: private, max-age=0, must-revalidate, no-transform
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 3.1
-< ETag: "SX8-ezVSLit7I2A9WhFQE0wIQgQ."
-< Location: https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/4886c6530f41c3d5
-< Content-Location: 
https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/4886c6530f41c3d5
+< ETag: "RXg_eDVSLit7I2A9WhFWEkgJQAc."
+< Location: https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/436c264a097a0e67
+< Content-Location: 
https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/436c264a097a0e67
 < 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:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;SX8-ezVSLit7I2A9WhFQE0wIQgQ.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/4886c6530f41c3d5</id><updated>2013-07-08T19:41:48.153Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:41:48.153Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/4886c6530f41c3d5'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/4886c6530f41c3d5'/><link 
rel='edit' ty
 pe='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/4886c6530f41c3d5'/><gContact:nickname>Test
 Contact 2</gContact:nickname></entry>
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;RXg_eDVSLit7I2A9WhFWEkgJQAc.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/436c264a097a0e67</id><updated>2013-07-31T06:55:34.640Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:34.640Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/436c264a097a0e67'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/436c264a097a0e67'/><link 
rel='edit' ty
 pe='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/436c264a097a0e67'/><gContact:nickname>Test
 Contact 2</gContact:nickname></entry>
   
POST /m8/feeds/contacts/default/full HTTP/1.1
-> Soup-Debug-Timestamp: 1373312508
-> Soup-Debug: SoupSession 1 (0x66d2c0), SoupMessage 32 (0x9920a0), SoupSocket 16 (0x7fffdc003bc0)
+> Soup-Debug-Timestamp: 1375253734
+> Soup-Debug: SoupSession 1 (0x66f2e0), SoupMessage 32 (0x7d28c0), SoupSocket 16 (0x7fffe0028190)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAABKUrSFzs8R87l64lxNJ2sdklhR-Xok8Cd28d10ttViz3pkeSosVgf5IXErmDHQMM9qajB6ZiW2R88u_SpE3SfL5uy_oNPB5Mlmte4X-TOdOSUGjIGRr6cv7JClAOlVBIxmkZVSWC_cCUFKRIuZ9VBkSIKSD9kCHJEBwWlhgcZsHSNAVuv9pIagsMR06K24PtAIO_VIRitw2VisJNxl3kqjDzobMqoyQypuTBXft5oOD2vHaJWkSI5JH5JM6zBxNnxLOUPt7oqUbLeJP8xe6FsF
+> Authorization: GoogleLogin 
auth=DQAAANUAAAAXK6VbKHFb8MrY8VDDk8TplfYU8Pl8OJ_JDJA5Ku7Q1SXgGXmiXXNSumd183YRnbThEZBRN5nYygedI2kQsVKzOFACPFEPo7ShQaRGycnxE3GLDfmMWN_zc43HzWPka0-WgOvpmqpxLFWh0EYyD3pF7Yebk_jLBxJEBWU9v8FZrljhbtK-g4kiiBeuNs4kYYLTu-vF7GCSIcSC2WuHSkxI091viwmbQhZY_6fi_MaY_qgOPss9HlAHeJ543JSjtRmsVtK_4aNWbmaz9VcCr9lXEksu1dUTvroRvtlr8XyvOg
GData-Version: 3
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
@@ -75,22 +75,22 @@
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app'><title type='text'></title><category 
term='http://schemas.google.com/contact/2008#contact' 
scheme='http://schemas.google.com/g/2005#kind'/><gd:name/><gContact:nickname>Test Contact 
3</gContact:nickname></entry>
   
 < HTTP/1.1 201 Created
-< Soup-Debug-Timestamp: 1373312508
-< Soup-Debug: SoupMessage 32 (0x9920a0)
+< Soup-Debug-Timestamp: 1375253735
+< Soup-Debug: SoupMessage 32 (0x7d28c0)
 < Content-Type: application/atom+xml; charset=UTF-8; type=entry
-< Expires: Mon, 08 Jul 2013 19:41:48 GMT
-< Date: Mon, 08 Jul 2013 19:41:48 GMT
+< Expires: Wed, 31 Jul 2013 06:55:34 GMT
+< Date: Wed, 31 Jul 2013 06:55:34 GMT
 < Cache-control: private, max-age=0, must-revalidate, no-transform
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 3.1
-< ETag: "SXYzfTVSLit7I2A9WhFQE0wIQgQ."
-< Location: https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/9e18fbb08d355e7
-< Content-Location: 
https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/9e18fbb08d355e7
+< ETag: "RXc7cDVSLit7I2A9WhFWEkgJQAc."
+< Location: https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/4e3d4cd30d411fa8
+< Content-Location: 
https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/4e3d4cd30d411fa8
 < 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:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;SXYzfTVSLit7I2A9WhFQE0wIQgQ.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/9e18fbb08d355e7</id><updated>2013-07-08T19:41:48.885Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:41:48.885Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/9e18fbb08d355e7'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/9e18fbb08d355e7'/><link 
rel='edit' type=
 'application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/9e18fbb08d355e7'/><gContact:nickname>Test
 Contact 3</gContact:nickname></entry>
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;RXc7cDVSLit7I2A9WhFWEkgJQAc.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/4e3d4cd30d411fa8</id><updated>2013-07-31T06:55:34.908Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:34.908Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/4e3d4cd30d411fa8'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/4e3d4cd30d411fa8'/><link 
rel='edit' ty
 pe='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/4e3d4cd30d411fa8'/><gContact:nickname>Test
 Contact 3</gContact:nickname></entry>
   
diff --git a/gdata/tests/traces/contacts/setup-query-all-groups 
b/gdata/tests/traces/contacts/setup-query-all-groups
index 2fddc97..5e353f8 100644
--- a/gdata/tests/traces/contacts/setup-query-all-groups
+++ b/gdata/tests/traces/contacts/setup-query-all-groups
@@ -1,8 +1,8 @@
POST /m8/feeds/groups/default/full HTTP/1.1
-> Soup-Debug-Timestamp: 1373312517
-> Soup-Debug: SoupSession 1 (0x66d2c0), SoupMessage 50 (0x992460), SoupSocket 27 (0x8f2250)
+> Soup-Debug-Timestamp: 1375253745
+> Soup-Debug: SoupSession 1 (0x66f2e0), SoupMessage 50 (0x7d2c80), SoupSocket 27 (0x72a310)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAABKUrSFzs8R87l64lxNJ2sdklhR-Xok8Cd28d10ttViz3pkeSosVgf5IXErmDHQMM9qajB6ZiW2R88u_SpE3SfL5uy_oNPB5Mlmte4X-TOdOSUGjIGRr6cv7JClAOlVBIxmkZVSWC_cCUFKRIuZ9VBkSIKSD9kCHJEBwWlhgcZsHSNAVuv9pIagsMR06K24PtAIO_VIRitw2VisJNxl3kqjDzobMqoyQypuTBXft5oOD2vHaJWkSI5JH5JM6zBxNnxLOUPt7oqUbLeJP8xe6FsF
+> Authorization: GoogleLogin 
auth=DQAAANUAAAAXK6VbKHFb8MrY8VDDk8TplfYU8Pl8OJ_JDJA5Ku7Q1SXgGXmiXXNSumd183YRnbThEZBRN5nYygedI2kQsVKzOFACPFEPo7ShQaRGycnxE3GLDfmMWN_zc43HzWPka0-WgOvpmqpxLFWh0EYyD3pF7Yebk_jLBxJEBWU9v8FZrljhbtK-g4kiiBeuNs4kYYLTu-vF7GCSIcSC2WuHSkxI091viwmbQhZY_6fi_MaY_qgOPss9HlAHeJ543JSjtRmsVtK_4aNWbmaz9VcCr9lXEksu1dUTvroRvtlr8XyvOg
GData-Version: 3
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
@@ -11,30 +11,30 @@
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app'><title type='text'>Test Group 1</title><content type='text'>Test 
Group 1</content><category term='http://schemas.google.com/contact/2008#group' 
scheme='http://schemas.google.com/g/2005#kind'/></entry>
   
 < HTTP/1.1 201 Created
-< Soup-Debug-Timestamp: 1373312518
-< Soup-Debug: SoupMessage 50 (0x992460)
+< Soup-Debug-Timestamp: 1375253745
+< Soup-Debug: SoupMessage 50 (0x7d2c80)
 < Content-Type: application/atom+xml; charset=UTF-8; type=entry
-< Expires: Mon, 08 Jul 2013 19:41:58 GMT
-< Date: Mon, 08 Jul 2013 19:41:58 GMT
+< Expires: Wed, 31 Jul 2013 06:55:45 GMT
+< Date: Wed, 31 Jul 2013 06:55:45 GMT
 < Cache-control: private, max-age=0, must-revalidate, no-transform
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 3.1
-< ETag: "SX88fzVSLit7I2A9WhFQE0wIQgU."
-< Location: https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/60e706d28d38c6e5
-< Content-Location: 
https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/60e706d28d38c6e5
+< ETag: "RH08eTVSLit7I2A9WhFWEkgJQAA."
+< Location: https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/4dd4a4c30dbdb339
+< Content-Location: 
https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/4dd4a4c30dbdb339
 < 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:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;SX88fzVSLit7I2A9WhFQE0wIQgU.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/60e706d28d38c6e5</id><updated>2013-07-08T19:41:58.177Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:41:58.177Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 1</title><content>Test Group 
1</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/60e706d28d38c6e5'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/60e706d28d38c6e5'/></entry>
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;RH08eTVSLit7I2A9WhFWEkgJQAA.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/4dd4a4c30dbdb339</id><updated>2013-07-31T06:55:45.371Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:45.371Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 1</title><content>Test Group 
1</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/4dd4a4c30dbdb339'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/4dd4a4c30dbdb339'/></entry>
   
POST /m8/feeds/groups/default/full HTTP/1.1
-> Soup-Debug-Timestamp: 1373312518
-> Soup-Debug: SoupSession 1 (0x66d2c0), SoupMessage 51 (0x992460), SoupSocket 28 (0x8f2190)
+> Soup-Debug-Timestamp: 1375253745
+> Soup-Debug: SoupSession 1 (0x66f2e0), SoupMessage 51 (0x7d2c80), SoupSocket 28 (0x72a6d0)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAABKUrSFzs8R87l64lxNJ2sdklhR-Xok8Cd28d10ttViz3pkeSosVgf5IXErmDHQMM9qajB6ZiW2R88u_SpE3SfL5uy_oNPB5Mlmte4X-TOdOSUGjIGRr6cv7JClAOlVBIxmkZVSWC_cCUFKRIuZ9VBkSIKSD9kCHJEBwWlhgcZsHSNAVuv9pIagsMR06K24PtAIO_VIRitw2VisJNxl3kqjDzobMqoyQypuTBXft5oOD2vHaJWkSI5JH5JM6zBxNnxLOUPt7oqUbLeJP8xe6FsF
+> Authorization: GoogleLogin 
auth=DQAAANUAAAAXK6VbKHFb8MrY8VDDk8TplfYU8Pl8OJ_JDJA5Ku7Q1SXgGXmiXXNSumd183YRnbThEZBRN5nYygedI2kQsVKzOFACPFEPo7ShQaRGycnxE3GLDfmMWN_zc43HzWPka0-WgOvpmqpxLFWh0EYyD3pF7Yebk_jLBxJEBWU9v8FZrljhbtK-g4kiiBeuNs4kYYLTu-vF7GCSIcSC2WuHSkxI091viwmbQhZY_6fi_MaY_qgOPss9HlAHeJ543JSjtRmsVtK_4aNWbmaz9VcCr9lXEksu1dUTvroRvtlr8XyvOg
GData-Version: 3
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
@@ -43,30 +43,30 @@
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app'><title type='text'>Test Group 2</title><content type='text'>Test 
Group 2</content><category term='http://schemas.google.com/contact/2008#group' 
scheme='http://schemas.google.com/g/2005#kind'/></entry>
   
 < HTTP/1.1 201 Created
-< Soup-Debug-Timestamp: 1373312519
-< Soup-Debug: SoupMessage 51 (0x992460)
+< Soup-Debug-Timestamp: 1375253745
+< Soup-Debug: SoupMessage 51 (0x7d2c80)
 < Content-Type: application/atom+xml; charset=UTF-8; type=entry
-< Expires: Mon, 08 Jul 2013 19:41:59 GMT
-< Date: Mon, 08 Jul 2013 19:41:59 GMT
+< Expires: Wed, 31 Jul 2013 06:55:45 GMT
+< Date: Wed, 31 Jul 2013 06:55:45 GMT
 < Cache-control: private, max-age=0, must-revalidate, no-transform
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 3.1
-< ETag: "SH46fjVSLit7I2A9WhFQE0wIQgU."
-< Location: https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/1764e04088a5c72d
-< Content-Location: 
https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/1764e04088a5c72d
+< ETag: "RHg4ezVSLit7I2A9WhFWEkgJQAA."
+< Location: https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/2b75ddaa8edbe01c
+< Content-Location: 
https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/2b75ddaa8edbe01c
 < 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:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;SH46fjVSLit7I2A9WhFQE0wIQgU.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/1764e04088a5c72d</id><updated>2013-07-08T19:41:59.016Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:41:59.016Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 2</title><content>Test Group 
2</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/1764e04088a5c72d'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/1764e04088a5c72d'/></entry>
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;RHg4ezVSLit7I2A9WhFWEkgJQAA.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/2b75ddaa8edbe01c</id><updated>2013-07-31T06:55:45.633Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:45.633Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 2</title><content>Test Group 
2</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/2b75ddaa8edbe01c'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/2b75ddaa8edbe01c'/></entry>
   
POST /m8/feeds/groups/default/full HTTP/1.1
-> Soup-Debug-Timestamp: 1373312519
-> Soup-Debug: SoupSession 1 (0x66d2c0), SoupMessage 52 (0x992280), SoupSocket 29 (0x8f2250)
+> Soup-Debug-Timestamp: 1375253745
+> Soup-Debug: SoupSession 1 (0x66f2e0), SoupMessage 52 (0x7d2aa0), SoupSocket 29 (0x72a310)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAABKUrSFzs8R87l64lxNJ2sdklhR-Xok8Cd28d10ttViz3pkeSosVgf5IXErmDHQMM9qajB6ZiW2R88u_SpE3SfL5uy_oNPB5Mlmte4X-TOdOSUGjIGRr6cv7JClAOlVBIxmkZVSWC_cCUFKRIuZ9VBkSIKSD9kCHJEBwWlhgcZsHSNAVuv9pIagsMR06K24PtAIO_VIRitw2VisJNxl3kqjDzobMqoyQypuTBXft5oOD2vHaJWkSI5JH5JM6zBxNnxLOUPt7oqUbLeJP8xe6FsF
+> Authorization: GoogleLogin 
auth=DQAAANUAAAAXK6VbKHFb8MrY8VDDk8TplfYU8Pl8OJ_JDJA5Ku7Q1SXgGXmiXXNSumd183YRnbThEZBRN5nYygedI2kQsVKzOFACPFEPo7ShQaRGycnxE3GLDfmMWN_zc43HzWPka0-WgOvpmqpxLFWh0EYyD3pF7Yebk_jLBxJEBWU9v8FZrljhbtK-g4kiiBeuNs4kYYLTu-vF7GCSIcSC2WuHSkxI091viwmbQhZY_6fi_MaY_qgOPss9HlAHeJ543JSjtRmsVtK_4aNWbmaz9VcCr9lXEksu1dUTvroRvtlr8XyvOg
GData-Version: 3
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
@@ -75,22 +75,22 @@
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app'><title type='text'>Test Group 3</title><content type='text'>Test 
Group 3</content><category term='http://schemas.google.com/contact/2008#group' 
scheme='http://schemas.google.com/g/2005#kind'/></entry>
   
 < HTTP/1.1 201 Created
-< Soup-Debug-Timestamp: 1373312519
-< Soup-Debug: SoupMessage 52 (0x992280)
+< Soup-Debug-Timestamp: 1375253745
+< Soup-Debug: SoupMessage 52 (0x7d2aa0)
 < Content-Type: application/atom+xml; charset=UTF-8; type=entry
-< Expires: Mon, 08 Jul 2013 19:41:59 GMT
-< Date: Mon, 08 Jul 2013 19:41:59 GMT
+< Expires: Wed, 31 Jul 2013 06:55:45 GMT
+< Date: Wed, 31 Jul 2013 06:55:45 GMT
 < Cache-control: private, max-age=0, must-revalidate, no-transform
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 3.1
-< ETag: "SHo9cDVSLit7I2A9WhFQE0wIQgU."
-< Location: https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/533560330ab24b0d
-< Content-Location: 
https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/533560330ab24b0d
+< ETag: "RHc5fzVSLyt7I2A9WhFWEkgJQAA."
+< Location: https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/20ec45c60a5db757
+< Content-Location: 
https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/20ec45c60a5db757
 < 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:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;SHo9cDVSLit7I2A9WhFQE0wIQgU.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/533560330ab24b0d</id><updated>2013-07-08T19:41:59.468Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:41:59.468Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 3</title><content>Test Group 
3</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/533560330ab24b0d'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/533560330ab24b0d'/></entry>
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;RHc5fzVSLyt7I2A9WhFWEkgJQAA.&quot;'><id>http://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/base/20ec45c60a5db757</id><updated>2013-07-31T06:55:45.927Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:45.927Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#group'/><title>Test Group 3</title><content>Test Group 
3</content><link rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/20ec45c60a5db757'/><link 
rel='edit' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/groups/libgdata.test%40googlemail.com/full/20ec45c60a5db757'/></entry>
   
diff --git a/gdata/tests/traces/contacts/setup-temp-contact b/gdata/tests/traces/contacts/setup-temp-contact
index 404f51e..697a057 100644
--- a/gdata/tests/traces/contacts/setup-temp-contact
+++ b/gdata/tests/traces/contacts/setup-temp-contact
@@ -1,8 +1,8 @@
POST /m8/feeds/contacts/default/full HTTP/1.1
-> Soup-Debug-Timestamp: 1373312492
-> Soup-Debug: SoupSession 1 (0x66d2c0), SoupMessage 3 (0x992280), SoupSocket 2 (0x8f2310)
+> Soup-Debug-Timestamp: 1375253709
+> Soup-Debug: SoupSession 1 (0x66f2e0), SoupMessage 3 (0x7d2aa0), SoupSocket 2 (0x72a310)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAABKUrSFzs8R87l64lxNJ2sdklhR-Xok8Cd28d10ttViz3pkeSosVgf5IXErmDHQMM9qajB6ZiW2R88u_SpE3SfL5uy_oNPB5Mlmte4X-TOdOSUGjIGRr6cv7JClAOlVBIxmkZVSWC_cCUFKRIuZ9VBkSIKSD9kCHJEBwWlhgcZsHSNAVuv9pIagsMR06K24PtAIO_VIRitw2VisJNxl3kqjDzobMqoyQypuTBXft5oOD2vHaJWkSI5JH5JM6zBxNnxLOUPt7oqUbLeJP8xe6FsF
+> Authorization: GoogleLogin 
auth=DQAAANUAAAAXK6VbKHFb8MrY8VDDk8TplfYU8Pl8OJ_JDJA5Ku7Q1SXgGXmiXXNSumd183YRnbThEZBRN5nYygedI2kQsVKzOFACPFEPo7ShQaRGycnxE3GLDfmMWN_zc43HzWPka0-WgOvpmqpxLFWh0EYyD3pF7Yebk_jLBxJEBWU9v8FZrljhbtK-g4kiiBeuNs4kYYLTu-vF7GCSIcSC2WuHSkxI091viwmbQhZY_6fi_MaY_qgOPss9HlAHeJ543JSjtRmsVtK_4aNWbmaz9VcCr9lXEksu1dUTvroRvtlr8XyvOg
GData-Version: 3
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
@@ -11,22 +11,22 @@
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app'><title type='text'></title><category 
term='http://schemas.google.com/contact/2008#contact' 
scheme='http://schemas.google.com/g/2005#kind'/><gd:name/><gContact:nickname>Test Contact 
Esq.</gContact:nickname></entry>
   
 < HTTP/1.1 201 Created
-< Soup-Debug-Timestamp: 1373312492
-< Soup-Debug: SoupMessage 3 (0x992280)
+< Soup-Debug-Timestamp: 1375253709
+< Soup-Debug: SoupMessage 3 (0x7d2aa0)
 < Content-Type: application/atom+xml; charset=UTF-8; type=entry
-< Expires: Mon, 08 Jul 2013 19:41:32 GMT
-< Date: Mon, 08 Jul 2013 19:41:32 GMT
+< Expires: Wed, 31 Jul 2013 06:55:09 GMT
+< Date: Wed, 31 Jul 2013 06:55:09 GMT
 < Cache-control: private, max-age=0, must-revalidate, no-transform
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 3.1
-< ETag: "Q3k4ezVSLit7I2A9WhFQE0wIQw0."
-< Location: https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/37c810c60df519d1
-< Content-Location: 
https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/37c810c60df519d1
+< ETag: "SHY-fDVSLit7I2A9WhFWEkgJQAQ."
+< Location: https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/6e556ece0dd08021
+< Content-Location: 
https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/6e556ece0dd08021
 < 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:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;Q3k4ezVSLit7I2A9WhFQE0wIQw0.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/37c810c60df519d1</id><updated>2013-07-08T19:41:32.733Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:41:32.733Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/37c810c60df519d1'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/37c810c60df519d1'/><link 
rel='edit' ty
 pe='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/37c810c60df519d1'/><gContact:nickname>Test
 Contact Esq.</gContact:nickname></entry>
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;SHY-fDVSLit7I2A9WhFWEkgJQAQ.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/6e556ece0dd08021</id><updated>2013-07-31T06:55:09.854Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:09.854Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/6e556ece0dd08021'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/6e556ece0dd08021'/><link 
rel='edit' ty
 pe='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/6e556ece0dd08021'/><gContact:nickname>Test
 Contact Esq.</gContact:nickname></entry>
   
diff --git a/gdata/tests/traces/contacts/teardown-insert b/gdata/tests/traces/contacts/teardown-insert
index a2d9aa2..a835da6 100644
--- a/gdata/tests/traces/contacts/teardown-insert
+++ b/gdata/tests/traces/contacts/teardown-insert
@@ -1,19 +1,19 @@
-> DELETE /m8/feeds/contacts/libgdata.test%40googlemail.com/full/2fe60f6f8bc0d692 HTTP/1.1
-> Soup-Debug-Timestamp: 1373312491
-> Soup-Debug: SoupSession 1 (0x66d2c0), SoupMessage 2 (0x992460), SoupSocket 1 (0x8f2250)
+> DELETE /m8/feeds/contacts/libgdata.test%40googlemail.com/full/669aee080ec47f33 HTTP/1.1
+> Soup-Debug-Timestamp: 1375253709
+> Soup-Debug: SoupSession 1 (0x66f2e0), SoupMessage 2 (0x7d2c80), SoupSocket 1 (0x72a250)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAABKUrSFzs8R87l64lxNJ2sdklhR-Xok8Cd28d10ttViz3pkeSosVgf5IXErmDHQMM9qajB6ZiW2R88u_SpE3SfL5uy_oNPB5Mlmte4X-TOdOSUGjIGRr6cv7JClAOlVBIxmkZVSWC_cCUFKRIuZ9VBkSIKSD9kCHJEBwWlhgcZsHSNAVuv9pIagsMR06K24PtAIO_VIRitw2VisJNxl3kqjDzobMqoyQypuTBXft5oOD2vHaJWkSI5JH5JM6zBxNnxLOUPt7oqUbLeJP8xe6FsF
+> Authorization: GoogleLogin 
auth=DQAAANUAAAAXK6VbKHFb8MrY8VDDk8TplfYU8Pl8OJ_JDJA5Ku7Q1SXgGXmiXXNSumd183YRnbThEZBRN5nYygedI2kQsVKzOFACPFEPo7ShQaRGycnxE3GLDfmMWN_zc43HzWPka0-WgOvpmqpxLFWh0EYyD3pF7Yebk_jLBxJEBWU9v8FZrljhbtK-g4kiiBeuNs4kYYLTu-vF7GCSIcSC2WuHSkxI091viwmbQhZY_6fi_MaY_qgOPss9HlAHeJ543JSjtRmsVtK_4aNWbmaz9VcCr9lXEksu1dUTvroRvtlr8XyvOg
GData-Version: 3
-> If-Match: "QXY-fDVSLyt7I2A9WhFQE0wIQw0."
+> If-Match: "SXcyfTVSLit7I2A9WhFWEkgJQAQ."
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1373312491
-< Soup-Debug: SoupMessage 2 (0x992460)
+< Soup-Debug-Timestamp: 1375253709
+< Soup-Debug: SoupMessage 2 (0x7d2c80)
 < GData-Version: 3.1
-< Date: Mon, 08 Jul 2013 19:41:31 GMT
-< Expires: Mon, 08 Jul 2013 19:41:31 GMT
+< Date: Wed, 31 Jul 2013 06:55:09 GMT
+< Expires: Wed, 31 Jul 2013 06:55:09 GMT
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
diff --git a/gdata/tests/traces/contacts/teardown-query-all-contacts 
b/gdata/tests/traces/contacts/teardown-query-all-contacts
index befea91..6af83d4 100644
--- a/gdata/tests/traces/contacts/teardown-query-all-contacts
+++ b/gdata/tests/traces/contacts/teardown-query-all-contacts
@@ -1,19 +1,19 @@
-> DELETE /m8/feeds/contacts/libgdata.test%40googlemail.com/full/328ff50a88aea463 HTTP/1.1
-> Soup-Debug-Timestamp: 1373312509
-> Soup-Debug: SoupSession 1 (0x66d2c0), SoupMessage 34 (0x9920a0), SoupSocket 16 (0x7fffdc003bc0)
+> DELETE /m8/feeds/contacts/libgdata.test%40googlemail.com/full/169313448d21bd4c HTTP/1.1
+> Soup-Debug-Timestamp: 1375253740
+> Soup-Debug: SoupSession 1 (0x66f2e0), SoupMessage 34 (0x7d28c0), SoupSocket 16 (0x7fffe0028190)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAABKUrSFzs8R87l64lxNJ2sdklhR-Xok8Cd28d10ttViz3pkeSosVgf5IXErmDHQMM9qajB6ZiW2R88u_SpE3SfL5uy_oNPB5Mlmte4X-TOdOSUGjIGRr6cv7JClAOlVBIxmkZVSWC_cCUFKRIuZ9VBkSIKSD9kCHJEBwWlhgcZsHSNAVuv9pIagsMR06K24PtAIO_VIRitw2VisJNxl3kqjDzobMqoyQypuTBXft5oOD2vHaJWkSI5JH5JM6zBxNnxLOUPt7oqUbLeJP8xe6FsF
+> Authorization: GoogleLogin 
auth=DQAAANUAAAAXK6VbKHFb8MrY8VDDk8TplfYU8Pl8OJ_JDJA5Ku7Q1SXgGXmiXXNSumd183YRnbThEZBRN5nYygedI2kQsVKzOFACPFEPo7ShQaRGycnxE3GLDfmMWN_zc43HzWPka0-WgOvpmqpxLFWh0EYyD3pF7Yebk_jLBxJEBWU9v8FZrljhbtK-g4kiiBeuNs4kYYLTu-vF7GCSIcSC2WuHSkxI091viwmbQhZY_6fi_MaY_qgOPss9HlAHeJ543JSjtRmsVtK_4aNWbmaz9VcCr9lXEksu1dUTvroRvtlr8XyvOg
GData-Version: 3
-> If-Match: "Rn8-fzVSLyt7I2A9WhFQE0wIQgQ."
+> If-Match: "RXw9fjVSLit7I2A9WhFWEkgJQAc."
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1373312509
-< Soup-Debug: SoupMessage 34 (0x9920a0)
+< Soup-Debug-Timestamp: 1375253740
+< Soup-Debug: SoupMessage 34 (0x7d28c0)
 < GData-Version: 3.1
-< Date: Mon, 08 Jul 2013 19:41:49 GMT
-< Expires: Mon, 08 Jul 2013 19:41:49 GMT
+< Date: Wed, 31 Jul 2013 06:55:40 GMT
+< Expires: Wed, 31 Jul 2013 06:55:40 GMT
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
@@ -23,22 +23,22 @@
 < Content-Type: text/html; charset=UTF-8
 < 
   
-> DELETE /m8/feeds/contacts/libgdata.test%40googlemail.com/full/4886c6530f41c3d5 HTTP/1.1
-> Soup-Debug-Timestamp: 1373312509
-> Soup-Debug: SoupSession 1 (0x66d2c0), SoupMessage 35 (0x992280), SoupSocket 16 (0x7fffdc003bc0)
+> DELETE /m8/feeds/contacts/libgdata.test%40googlemail.com/full/436c264a097a0e67 HTTP/1.1
+> Soup-Debug-Timestamp: 1375253740
+> Soup-Debug: SoupSession 1 (0x66f2e0), SoupMessage 35 (0x7d2aa0), SoupSocket 16 (0x7fffe0028190)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAABKUrSFzs8R87l64lxNJ2sdklhR-Xok8Cd28d10ttViz3pkeSosVgf5IXErmDHQMM9qajB6ZiW2R88u_SpE3SfL5uy_oNPB5Mlmte4X-TOdOSUGjIGRr6cv7JClAOlVBIxmkZVSWC_cCUFKRIuZ9VBkSIKSD9kCHJEBwWlhgcZsHSNAVuv9pIagsMR06K24PtAIO_VIRitw2VisJNxl3kqjDzobMqoyQypuTBXft5oOD2vHaJWkSI5JH5JM6zBxNnxLOUPt7oqUbLeJP8xe6FsF
+> Authorization: GoogleLogin 
auth=DQAAANUAAAAXK6VbKHFb8MrY8VDDk8TplfYU8Pl8OJ_JDJA5Ku7Q1SXgGXmiXXNSumd183YRnbThEZBRN5nYygedI2kQsVKzOFACPFEPo7ShQaRGycnxE3GLDfmMWN_zc43HzWPka0-WgOvpmqpxLFWh0EYyD3pF7Yebk_jLBxJEBWU9v8FZrljhbtK-g4kiiBeuNs4kYYLTu-vF7GCSIcSC2WuHSkxI091viwmbQhZY_6fi_MaY_qgOPss9HlAHeJ543JSjtRmsVtK_4aNWbmaz9VcCr9lXEksu1dUTvroRvtlr8XyvOg
GData-Version: 3
-> If-Match: "SX8-ezVSLit7I2A9WhFQE0wIQgQ."
+> If-Match: "RXg_eDVSLit7I2A9WhFWEkgJQAc."
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1373312509
-< Soup-Debug: SoupMessage 35 (0x992280)
+< Soup-Debug-Timestamp: 1375253740
+< Soup-Debug: SoupMessage 35 (0x7d2aa0)
 < GData-Version: 3.1
-< Date: Mon, 08 Jul 2013 19:41:49 GMT
-< Expires: Mon, 08 Jul 2013 19:41:49 GMT
+< Date: Wed, 31 Jul 2013 06:55:40 GMT
+< Expires: Wed, 31 Jul 2013 06:55:40 GMT
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
@@ -48,22 +48,22 @@
 < Content-Type: text/html; charset=UTF-8
 < 
   
-> DELETE /m8/feeds/contacts/libgdata.test%40googlemail.com/full/9e18fbb08d355e7 HTTP/1.1
-> Soup-Debug-Timestamp: 1373312509
-> Soup-Debug: SoupSession 1 (0x66d2c0), SoupMessage 36 (0x992460), SoupSocket 16 (0x7fffdc003bc0)
+> DELETE /m8/feeds/contacts/libgdata.test%40googlemail.com/full/4e3d4cd30d411fa8 HTTP/1.1
+> Soup-Debug-Timestamp: 1375253740
+> Soup-Debug: SoupSession 1 (0x66f2e0), SoupMessage 36 (0x7d2c80), SoupSocket 16 (0x7fffe0028190)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAABKUrSFzs8R87l64lxNJ2sdklhR-Xok8Cd28d10ttViz3pkeSosVgf5IXErmDHQMM9qajB6ZiW2R88u_SpE3SfL5uy_oNPB5Mlmte4X-TOdOSUGjIGRr6cv7JClAOlVBIxmkZVSWC_cCUFKRIuZ9VBkSIKSD9kCHJEBwWlhgcZsHSNAVuv9pIagsMR06K24PtAIO_VIRitw2VisJNxl3kqjDzobMqoyQypuTBXft5oOD2vHaJWkSI5JH5JM6zBxNnxLOUPt7oqUbLeJP8xe6FsF
+> Authorization: GoogleLogin 
auth=DQAAANUAAAAXK6VbKHFb8MrY8VDDk8TplfYU8Pl8OJ_JDJA5Ku7Q1SXgGXmiXXNSumd183YRnbThEZBRN5nYygedI2kQsVKzOFACPFEPo7ShQaRGycnxE3GLDfmMWN_zc43HzWPka0-WgOvpmqpxLFWh0EYyD3pF7Yebk_jLBxJEBWU9v8FZrljhbtK-g4kiiBeuNs4kYYLTu-vF7GCSIcSC2WuHSkxI091viwmbQhZY_6fi_MaY_qgOPss9HlAHeJ543JSjtRmsVtK_4aNWbmaz9VcCr9lXEksu1dUTvroRvtlr8XyvOg
GData-Version: 3
-> If-Match: "SXYzfTVSLit7I2A9WhFQE0wIQgQ."
+> If-Match: "RXc7cDVSLit7I2A9WhFWEkgJQAc."
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1373312510
-< Soup-Debug: SoupMessage 36 (0x992460)
+< Soup-Debug-Timestamp: 1375253741
+< Soup-Debug: SoupMessage 36 (0x7d2c80)
 < GData-Version: 3.1
-< Date: Mon, 08 Jul 2013 19:41:50 GMT
-< Expires: Mon, 08 Jul 2013 19:41:50 GMT
+< Date: Wed, 31 Jul 2013 06:55:40 GMT
+< Expires: Wed, 31 Jul 2013 06:55:40 GMT
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
diff --git a/gdata/tests/traces/contacts/teardown-temp-contact 
b/gdata/tests/traces/contacts/teardown-temp-contact
index 3ba9f41..686d3d1 100644
--- a/gdata/tests/traces/contacts/teardown-temp-contact
+++ b/gdata/tests/traces/contacts/teardown-temp-contact
@@ -1,47 +1,47 @@
-> GET /m8/feeds/contacts/libgdata.test%40googlemail.com/full/37c810c60df519d1 HTTP/1.1
-> Soup-Debug-Timestamp: 1373312493
-> Soup-Debug: SoupSession 1 (0x66d2c0), SoupMessage 5 (0x9920a0), SoupSocket 2 (0x8f2310)
+> GET /m8/feeds/contacts/libgdata.test%40googlemail.com/full/6e556ece0dd08021 HTTP/1.1
+> Soup-Debug-Timestamp: 1375253710
+> Soup-Debug: SoupSession 1 (0x66f2e0), SoupMessage 5 (0x7d28c0), SoupSocket 2 (0x72a310)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAABKUrSFzs8R87l64lxNJ2sdklhR-Xok8Cd28d10ttViz3pkeSosVgf5IXErmDHQMM9qajB6ZiW2R88u_SpE3SfL5uy_oNPB5Mlmte4X-TOdOSUGjIGRr6cv7JClAOlVBIxmkZVSWC_cCUFKRIuZ9VBkSIKSD9kCHJEBwWlhgcZsHSNAVuv9pIagsMR06K24PtAIO_VIRitw2VisJNxl3kqjDzobMqoyQypuTBXft5oOD2vHaJWkSI5JH5JM6zBxNnxLOUPt7oqUbLeJP8xe6FsF
+> Authorization: GoogleLogin 
auth=DQAAANUAAAAXK6VbKHFb8MrY8VDDk8TplfYU8Pl8OJ_JDJA5Ku7Q1SXgGXmiXXNSumd183YRnbThEZBRN5nYygedI2kQsVKzOFACPFEPo7ShQaRGycnxE3GLDfmMWN_zc43HzWPka0-WgOvpmqpxLFWh0EYyD3pF7Yebk_jLBxJEBWU9v8FZrljhbtK-g4kiiBeuNs4kYYLTu-vF7GCSIcSC2WuHSkxI091viwmbQhZY_6fi_MaY_qgOPss9HlAHeJ543JSjtRmsVtK_4aNWbmaz9VcCr9lXEksu1dUTvroRvtlr8XyvOg
GData-Version: 3
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1373312493
-< Soup-Debug: SoupMessage 5 (0x9920a0)
+< Soup-Debug-Timestamp: 1375253710
+< Soup-Debug: SoupMessage 5 (0x7d28c0)
 < Content-Type: application/atom+xml; charset=UTF-8; type=entry
-< Expires: Mon, 08 Jul 2013 19:41:33 GMT
-< Date: Mon, 08 Jul 2013 19:41:33 GMT
+< Expires: Wed, 31 Jul 2013 06:55:10 GMT
+< Date: Wed, 31 Jul 2013 06:55:10 GMT
 < Cache-control: private, max-age=0, must-revalidate, no-transform
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 3.1
-< ETag: "Q3k4ezVSLit7I2A9WhFQE0wIQw0."
-< Last-Modified: Mon, 08 Jul 2013 19:41:32 GMT
+< ETag: "SHY-fDVSLit7I2A9WhFWEkgJQAQ."
+< Last-Modified: Wed, 31 Jul 2013 06:55:09 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'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;Q3k4ezVSLit7I2A9WhFQE0wIQw0.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/37c810c60df519d1</id><updated>2013-07-08T19:41:32.733Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-08T19:41:32.733Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/37c810c60df519d1'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/37c810c60df519d1'/><link 
rel='edit' ty
 pe='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/37c810c60df519d1'/><gContact:nickname>Test
 Contact Esq.</gContact:nickname></entry>
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;SHY-fDVSLit7I2A9WhFWEkgJQAQ.&quot;'><id>http://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/base/6e556ece0dd08021</id><updated>2013-07-31T06:55:09.854Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-31T06:55:09.854Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/contact/2008#contact'/><title></title><link 
rel='http://schemas.google.com/contacts/2008/rel#photo' type='image/*' 
href='https://www.google.com/m8/feeds/photos/media/libgdata.test%40googlemail.com/6e556ece0dd08021'/><link 
rel='self' type='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/6e556ece0dd08021'/><link 
rel='edit' ty
 pe='application/atom+xml' 
href='https://www.google.com/m8/feeds/contacts/libgdata.test%40googlemail.com/full/6e556ece0dd08021'/><gContact:nickname>Test
 Contact Esq.</gContact:nickname></entry>
   
-> DELETE /m8/feeds/contacts/libgdata.test%40googlemail.com/full/37c810c60df519d1 HTTP/1.1
-> Soup-Debug-Timestamp: 1373312493
-> Soup-Debug: SoupSession 1 (0x66d2c0), SoupMessage 6 (0x992280), SoupSocket 2 (0x8f2310)
+> DELETE /m8/feeds/contacts/libgdata.test%40googlemail.com/full/6e556ece0dd08021 HTTP/1.1
+> Soup-Debug-Timestamp: 1375253710
+> Soup-Debug: SoupSession 1 (0x66f2e0), SoupMessage 6 (0x7d2aa0), SoupSocket 2 (0x72a310)
Host: www.google.com
-> Authorization: GoogleLogin 
auth=DQAAAM4AAABKUrSFzs8R87l64lxNJ2sdklhR-Xok8Cd28d10ttViz3pkeSosVgf5IXErmDHQMM9qajB6ZiW2R88u_SpE3SfL5uy_oNPB5Mlmte4X-TOdOSUGjIGRr6cv7JClAOlVBIxmkZVSWC_cCUFKRIuZ9VBkSIKSD9kCHJEBwWlhgcZsHSNAVuv9pIagsMR06K24PtAIO_VIRitw2VisJNxl3kqjDzobMqoyQypuTBXft5oOD2vHaJWkSI5JH5JM6zBxNnxLOUPt7oqUbLeJP8xe6FsF
+> Authorization: GoogleLogin 
auth=DQAAANUAAAAXK6VbKHFb8MrY8VDDk8TplfYU8Pl8OJ_JDJA5Ku7Q1SXgGXmiXXNSumd183YRnbThEZBRN5nYygedI2kQsVKzOFACPFEPo7ShQaRGycnxE3GLDfmMWN_zc43HzWPka0-WgOvpmqpxLFWh0EYyD3pF7Yebk_jLBxJEBWU9v8FZrljhbtK-g4kiiBeuNs4kYYLTu-vF7GCSIcSC2WuHSkxI091viwmbQhZY_6fi_MaY_qgOPss9HlAHeJ543JSjtRmsVtK_4aNWbmaz9VcCr9lXEksu1dUTvroRvtlr8XyvOg
GData-Version: 3
-> If-Match: "Q3k4ezVSLit7I2A9WhFQE0wIQw0."
+> If-Match: "SHY-fDVSLit7I2A9WhFWEkgJQAQ."
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1373312493
-< Soup-Debug: SoupMessage 6 (0x992280)
+< Soup-Debug-Timestamp: 1375253710
+< Soup-Debug: SoupMessage 6 (0x7d2aa0)
 < GData-Version: 3.1
-< Date: Mon, 08 Jul 2013 19:41:33 GMT
-< Expires: Mon, 08 Jul 2013 19:41:33 GMT
+< Date: Wed, 31 Jul 2013 06:55:10 GMT
+< Expires: Wed, 31 Jul 2013 06:55:10 GMT
 < Cache-control: private, max-age=0
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN



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