diff --git a/ChangeLog.txt b/ChangeLog.txt index 22df55b602..7cf51dfb73 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,8 +1,8 @@ -2012.03.19 Version 0.6.12 +2012.03.25 Version 0.7.0 +* Breaking change: Primitive types will be stored for table storage. * Adding support for creating and deleting affinity groups * Replacing http-mock by nock and making all tests use it by default * Adding notification hubs messages for WNS and APNS -* Fixing issues around table storage serialization / querying * Add Strict SSL validation for server certificates * Add support for creating subscriptions that expire diff --git a/lib/services/sqlAzure/models/databaseresult.js b/lib/services/sqlAzure/models/databaseresult.js index 92908b7ddf..e531ed5917 100644 --- a/lib/services/sqlAzure/models/databaseresult.js +++ b/lib/services/sqlAzure/models/databaseresult.js @@ -21,52 +21,19 @@ exports = module.exports; exports.serialize = function (databaseName, collation, edition, maxSizeInGB) { var databaseDescription = { }; - if (collation) { - databaseDescription['d:CollationName'] = collation; - } else { - databaseDescription['d:CollationName'] = { '$': { 'm:null': 'true' } }; - } - - databaseDescription['d:CreationDate'] = { '$': { 'm:type': 'Edm.DateTime' }, '_': '0001-01-01T00:00:00' }; - - if (edition) { - databaseDescription['d:Edition'] = edition; - } else { - databaseDescription['d:Edition'] = { '$': { 'm:null': 'true' } }; - } - - databaseDescription['d:Id'] = { '$': { 'm:type': 'Edm.Int32' }, '_': '0' }; - databaseDescription['d:IsFederationRoot'] = { '$': { 'm:type': 'Edm.Boolean', 'm:null': 'true' } }; - databaseDescription['d:IsReadonly'] = { '$': { 'm:type': 'Edm.Boolean' }, '_': 'false' }; - databaseDescription['d:IsRecursiveTriggersOn'] = { '$': { 'm:type': 'Edm.Boolean', 'm:null': 'true' } }; - databaseDescription['d:IsSystemObject'] = { '$': { 'm:type': 'Edm.Boolean' }, '_': 'false' }; - - if (maxSizeInGB) { - databaseDescription['d:MaxSizeGB'] = { '$': { 'm:type': 'Edm.Int32' }, '_': maxSizeInGB }; - } else { - databaseDescription['d:MaxSizeGB'] = { '$': { 'm:type': 'Edm.Int32', 'm:null': 'true' } }; - } - - if (databaseName) { - databaseDescription['d:Name'] = databaseName; - } - - databaseDescription['d:SizeMB'] = { '$': { 'm:type': 'Edm.Decimal' }, '_': '0' }; - databaseDescription['d:Status'] = { '$': { 'm:type': 'Edm.Int32' }, '_': '0' }; - - var atom = { - 'title': '', - 'updated': new Date().toISOString(), - 'author': { - name: '' - }, - 'id': '', - 'content': { - '$': { type: 'application/xml' }, - 'm:properties': databaseDescription - } - }; + databaseDescription['CollationName'] = { '$': { 'type': 'Edm.String' }, '_': collation }; + databaseDescription['CreationDate'] = { '$': { 'm:type': 'Edm.DateTime' }, '_': '0001-01-01T00:00:00' }; + databaseDescription['Edition'] = { '$': { 'type': 'Edm.String' }, '_': edition }; + databaseDescription['Id'] = { '$': { 'type': 'Edm.Int32' }, '_': 0 }; + databaseDescription['IsFederationRoot'] = { '$': { 'type': 'Edm.Boolean' }, '_': null }; + databaseDescription['IsReadonly'] = { '$': { 'type': 'Edm.Boolean' }, '_': false }; + databaseDescription['IsRecursiveTriggersOn'] = { '$': { 'type': 'Edm.Boolean' }, '_': null }; + databaseDescription['IsSystemObject'] = { '$': { 'type': 'Edm.Boolean' }, '_': false }; + databaseDescription['MaxSizeGB'] = { '$': { 'type': 'Edm.Int32' }, '_': maxSizeInGB }; + databaseDescription['Name'] = { '$': { 'type': 'Edm.String' }, '_': databaseName }; + databaseDescription['SizeMB'] = { '$': { 'type': 'Edm.Decimal' }, '_': 0 }; + databaseDescription['Status'] = { '$': { 'type': 'Edm.Int32' }, '_': 0 }; var odataHandler = new OdataHandler(); - return odataHandler.serialize(atom); -}; + return odataHandler.serialize(databaseDescription); +}; \ No newline at end of file diff --git a/lib/services/table/models/entityresult.js b/lib/services/table/models/entityresult.js index 7436d289f9..f15f7950e5 100644 --- a/lib/services/table/models/entityresult.js +++ b/lib/services/table/models/entityresult.js @@ -15,47 +15,12 @@ // Module dependencies. var OdataHandler = require('../../../util/odatahandler'); -var Constants = require('../../../util/constants'); exports = module.exports; exports.serialize = function (entity) { - var properties = {}; - - for (var name in entity) { - if (name !== '_') { - - if (entity[name] && - entity[name][Constants.XML_METADATA_MARKER] && - entity[name][Constants.XML_METADATA_MARKER].type) { - - properties[OdataHandler.NSDATA + ':' + name] = entity[name]; - properties[OdataHandler.NSDATA + ':' + name][Constants.XML_METADATA_MARKER][OdataHandler.NSMETA + ':type'] = properties[OdataHandler.NSDATA + ':' + name][Constants.XML_METADATA_MARKER].type; - - delete properties[OdataHandler.NSDATA + ':' + name][Constants.XML_METADATA_MARKER].type; - } - else { - properties[OdataHandler.NSDATA + ':' + name] = entity[name]; - } - } - } - - var atomEntity = { - 'title': '', - 'updated': new Date().toISOString(), - 'author': { - name: '' - }, - 'id': entity.id ? entity.id : '', - 'content': { - '$': { type: 'application/xml' } - } - }; - - atomEntity.content[OdataHandler.NSMETA + ':properties'] = properties; - var odataHandler = new OdataHandler(); - return odataHandler.serialize(atomEntity); + return odataHandler.serialize(entity); }; exports.parse = function (entityXml) { diff --git a/lib/services/table/models/tableresult.js b/lib/services/table/models/tableresult.js index 0af1fa0426..113bdd28a0 100644 --- a/lib/services/table/models/tableresult.js +++ b/lib/services/table/models/tableresult.js @@ -19,23 +19,8 @@ var OdataHandler = require('../../../util/odatahandler'); exports = module.exports; exports.serialize = function (tableName) { - var atomTable = { - 'title': '', - 'updated': new Date().toISOString(), - 'author': { - name: '' - }, - 'id': '', - 'content': { - '$': { type: 'application/xml' }, - 'm:properties': { - 'd:TableName': tableName - } - } - }; - var odataHandler = new OdataHandler(); - return odataHandler.serialize(atomTable); + return odataHandler.serialize({ TableName: tableName }, true); }; exports.parse = function (tableXml) { diff --git a/lib/util/edmtype.js b/lib/util/edmtype.js index d81287f92b..140d48313a 100644 --- a/lib/util/edmtype.js +++ b/lib/util/edmtype.js @@ -16,8 +16,6 @@ var _ = require('underscore'); var azureutil = require('./util'); -var dateFormat = require('dateformat'); - /** * Get the Edm type of an object. * @@ -26,7 +24,7 @@ var dateFormat = require('dateformat'); */ exports.propertyType = function (value) { if (_.isNumber(value)) { - if (azureutil.stringIsInt(value)) { + if (azureutil.objectIsInt(value)) { if (Math.abs(value) < Math.pow(2, 31)) { return 'Edm.Int32'; } else { @@ -65,6 +63,12 @@ exports.serializeValue = function (type, value) { } return ''; + case 'Edm.DateTime': + if (!_.isDate(value)) { + value = new Date(value); + } + + return value.toISOString(); default: return value.toString(); } @@ -121,9 +125,7 @@ exports.serializeQueryValue = function (value) { if (_.isNumber(value)) { return value.toString(); } else if (_.isDate(value)) { - var dateValue = dateFormat(value, 'yyyy-mm-dd') + 'T' + dateFormat(value, 'HH:MM:sso'); - dateValue = dateValue.substr(0, dateValue.length - 2) + ':' + dateValue.substr(dateValue.length - 2); - return 'datetime\'' + dateValue + '\''; + return 'datetime\'' + value.toISOString() + '\''; } else if (_.isBoolean(value)) { return value ? 'true' : 'false'; } else { diff --git a/lib/util/js2xml.js b/lib/util/js2xml.js index 8c069aee1c..d2da1a662e 100644 --- a/lib/util/js2xml.js +++ b/lib/util/js2xml.js @@ -39,22 +39,37 @@ function _writeElementValue(parentElement, name, value) { !_.isDate(value)) { if (Array.isArray(value) && value.length > 0) { + // Example: + // JSON: element: [ { property1: 'hi there' }, { property2: 'hello there' } ] + // XML: hi therehello there + Object.keys(value).forEach(function (i) { parentElement = _writeElementValue(parentElement, name, value[i]); }); // For an array no element was actually added at this level, so skip uping level. ignored = true; - } else if (_.isObject(value)) { + } else if (value[Constants.XML_METADATA_MARKER] !== undefined && + value[Constants.XML_VALUE_MARKER] !== undefined) { + // Example: + // JSON: element: { '$': { 'm:type' = 'Edm.String' }, '_': 'hi there' } + // XML: hi there + + parentElement = parentElement.ele(propertyTagName); + if (!azureutil.stringIsEmpty(value[Constants.XML_VALUE_MARKER])) { + parentElement = parentElement.txt(value[Constants.XML_VALUE_MARKER]); + } + } else { + // Example: + // JSON: element: { '$': { 'metadata' = 'value' }, 'property1': 'hi there', 'property2': 'hello there' } + // XML: hi therehello there + parentElement = parentElement.ele(propertyTagName); for (var propertyName in value) { if (propertyName !== Constants.XML_METADATA_MARKER && value.hasOwnProperty(propertyName)) { parentElement = _writeElementValue(parentElement, propertyName, value[propertyName]); } } - } else { - // Ignoring complex elements - ignored = true; } } else { parentElement = parentElement.ele(propertyTagName); diff --git a/lib/util/odatahandler.js b/lib/util/odatahandler.js index 243f557756..5852facec7 100644 --- a/lib/util/odatahandler.js +++ b/lib/util/odatahandler.js @@ -14,8 +14,7 @@ */ // Module dependencies. -var _ = require('underscore'); -var xmlbuilder = require('xmlbuilder'); +var atomHandler = require('./atomhandler'); var azureutil = require('./util'); var Constants = require('./constants'); @@ -94,7 +93,7 @@ OdataHandler.prototype.parse = function (entityXml, innerTag) { // Has an entry for value if (entityXml.content[propertiesXmlTag][property][Constants.XML_METADATA_MARKER] && entityXml.content[propertiesXmlTag][property][Constants.XML_METADATA_MARKER][this._xmlQualifyXmlTagName('type', this.nsMeta)]) { - // Has metadata for type + // Has metadata for type this._setProperty( entity, propertyName, @@ -144,111 +143,62 @@ OdataHandler.prototype._setProperty = function (entity, propertyName, value, typ entity[propertyName] = edmType.unserializeValue(type, value); }; -OdataHandler.prototype.serialize = function (entity) { - var self = this; - var doc = xmlbuilder.create(); +/* +* Serializes an entity to an Odata (Atom based) payload. +* +* The following formats are accepted: +* - { stringValue: { '$': { type: 'Edm.String' }, '_': 'my string' }, myInt: { '$': { type: 'Edm.Int32' }, '_': 3 } } +* - { stringValue: 'my string', myInt: 3 } +*/ +OdataHandler.prototype.serialize = function (entity, skipType) { + var properties = {}; - doc = doc.begin('entry', { version: '1.0', encoding: 'utf-8', standalone: 'yes' }) - .att('xmlns', 'http://www.w3.org/2005/Atom'); + for (var name in entity) { + if (name !== '_') { + properties[OdataHandler.NSDATA + ':' + name] = { }; + properties[OdataHandler.NSDATA + ':' + name][Constants.XML_METADATA_MARKER] = {}; - if (this.nsMeta) { - doc = doc.att('xmlns:' + this.nsMeta, 'http://schemas.microsoft.com/ado/2007/08/dataservices/metadata'); - } + var propertyType = null; + var propertyValue = null; - if (this.nsData) { - doc = doc.att('xmlns:' + this.nsData, 'http://schemas.microsoft.com/ado/2007/08/dataservices'); - } + if (entity[name] && + entity[name][Constants.XML_VALUE_MARKER] !== undefined && + entity[name][Constants.XML_METADATA_MARKER] !== undefined && + entity[name][Constants.XML_METADATA_MARKER].type !== undefined) { - Object.keys(entity).forEach(function (element) { - doc = self._writeAtomEntryValue(doc, element, entity[element]); - }); + propertyValue = edmType.serializeValue(entity[name][Constants.XML_METADATA_MARKER].type, entity[name][Constants.XML_VALUE_MARKER]); + propertyType = entity[name][Constants.XML_METADATA_MARKER].type; + } + else { + if (entity[name] !== undefined && entity[name] !== null) { + propertyType = edmType.propertyType(entity[name]); + } - doc = doc.doc(); + propertyValue = edmType.serializeValue(propertyType, entity[name]); + } - return doc.toString(); -}; + properties[OdataHandler.NSDATA + ':' + name][Constants.XML_VALUE_MARKER] = propertyValue; -/* -* Writes a single property for an entry or complex type. -* -* @param {object} parentElement Parent DOM element under which the property should be added. -* @param {string} name Property name. -* @param {object} value Property value. -* @return {object} The current DOM element. -*/ -OdataHandler.prototype._writeAtomEntryValue = function (parentElement, name, value) { - var ignored = false; - var propertyTagName = name; - - // Treat dates as primitives, not objects - if (!azureutil.stringIsEmpty(value) && - _.isObject(value) && - !_.isDate(value)) { - - if (!azureutil.objectIsNull(value[Constants.XML_VALUE_MARKER]) && - !azureutil.objectIsNull(value[Constants.XML_METADATA_MARKER]) && - !azureutil.objectIsNull(value[Constants.XML_METADATA_MARKER][this._xmlQualifyXmlTagName('type', this.nsMeta)])) { - - // Primitive value + type - var propertyType = value[Constants.XML_METADATA_MARKER]['m:type']; - parentElement = parentElement.ele(propertyTagName); - - if (!azureutil.stringIsEmpty(value[Constants.XML_VALUE_MARKER])) { - parentElement = parentElement.txt(this._convertToAtomPropertyText(value[Constants.XML_VALUE_MARKER], propertyType)); - } else if (azureutil.stringStartsWith(propertyTagName, this.nsData + ':')) { - // If the property is data, we may need to mark it as null - parentElement.att(this._xmlQualifyXmlTagName('null', this.nsMeta), 'true'); + if (!skipType && propertyType !== null) { + properties[OdataHandler.NSDATA + ':' + name][Constants.XML_METADATA_MARKER][OdataHandler.NSMETA + ':type'] = propertyType; } - } else if (Array.isArray(value) && value.length > 0) { - _.each(value, function (currentValue) { - parentElement = this._writeAtomEntryValue(parentElement, name, currentValue); - }); - - // For an array no element was actually added at this level, so skip uping level. - ignored = true; - } else { - parentElement = parentElement.ele(propertyTagName); - for (var propertyName in value) { - if (propertyName !== Constants.XML_METADATA_MARKER) { - parentElement = this._writeAtomEntryValue(parentElement, propertyName, value[propertyName]); - } + + if (azureutil.stringIsEmpty(propertyValue)) { + properties[OdataHandler.NSDATA + ':' + name][Constants.XML_METADATA_MARKER][OdataHandler.NSMETA + ':null'] = true; } } - } else { - parentElement = parentElement.ele(propertyTagName); - if (!azureutil.stringIsEmpty(value)) { - parentElement = parentElement.txt(this._convertToAtomPropertyText(value)); - } else if (azureutil.stringStartsWith(propertyTagName, this.nsData + ':')) { - // If the property is data, we may need to mark it as null - parentElement.att(this._xmlQualifyXmlTagName('null', this.nsMeta), 'true'); - } - } - - if (value && value[Constants.XML_METADATA_MARKER]) { - // include the metadata - var attributeList = value[Constants.XML_METADATA_MARKER]; - Object.keys(attributeList).forEach(function (attribute) { - parentElement = parentElement.att(attribute, attributeList[attribute]); - }); - } - - if (!ignored) { - parentElement = parentElement.up(); } - return parentElement; -}; - -/** -* Converts a typed value from the specified target type into a text value. -* -* @param {object} value Typed value to convert. -* @param {object} targetType Name of type to convert to. -* @return {string} The converted value as text. -*/ -OdataHandler.prototype._convertToAtomPropertyText = function (value) { - var type = edmType.propertyType(value); - return edmType.serializeValue(type, value); + return atomHandler.serializeEntry({ 'm:properties': properties }, [ + { + key: OdataHandler.NSDATA, + url: 'http://schemas.microsoft.com/ado/2007/08/dataservices' + }, + { + key: OdataHandler.NSMETA, + url: 'http://schemas.microsoft.com/ado/2007/08/dataservices/metadata' + } + ]); }; module.exports = OdataHandler; \ No newline at end of file diff --git a/lib/util/util.js b/lib/util/util.js index 7e7a67d04a..cf32a70f80 100644 --- a/lib/util/util.js +++ b/lib/util/util.js @@ -81,6 +81,16 @@ exports.objectIsEmpty = function (object) { return _.isEmpty(object); }; +/** +* Determines if an object contains an integer number. +* +* @param {object} value The object to assert. +* @return {bool} True if the object contains an integer number; false otherwise. +*/ +exports.objectIsInt = function (value) { + return typeof value === 'number' && parseFloat(value) == parseInt(value, 10) && !isNaN(value); +}; + /** * Checks if an object is a string. * diff --git a/package.json b/package.json index c46fad3eb9..9c06544958 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "Rodrigues, Andre ", "Tavares, Chris " ], - "version": "0.6.12", + "version": "0.7.0", "description": "Windows Azure Client Library for node", "tags" : ["azure", "sdk"], "keywords": [ "node", "azure" ], diff --git a/test/recordings/blobservice-tests.nock.js b/test/recordings/blobservice-tests.nock.js index 8915598cee..6d769e1d41 100644 --- a/test/recordings/blobservice-tests.nock.js +++ b/test/recordings/blobservice-tests.nock.js @@ -7,9 +7,9 @@ nock('https://ciserversdk.blob.core.windows.net:443') .reply(200, "", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'abe58abe-d666-4452-b395-912e28890aed', + 'x-ms-request-id': '121833c2-9e3e-49e3-b9af-5a41a0d79e2d', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:26:31 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:09 GMT' }); return result; }], [function (nock) { var result = @@ -18,9 +18,9 @@ nock('https://ciserversdk.blob.core.windows.net:443') .reply(200, "", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '71932943-8818-458f-bca1-cd84dc21e29a', + 'x-ms-request-id': '50c91698-0c3b-4009-a88d-3bee3d80eea5', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:26:32 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:11 GMT' }); return result; }], [function (nock) { var result = @@ -29,9 +29,9 @@ nock('https://ciserversdk.blob.core.windows.net:443') .reply(200, "1.0truefalsefalsefalse1.0falsefalse2009-09-19", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '5c27f5e3-08b1-4cf3-8f85-3a77815f42e6', + 'x-ms-request-id': 'f19df9bb-d741-4354-99b1-9d24f33a5cb8', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:26:33 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:12 GMT' }); return result; }, function (nock) { var result = @@ -40,9 +40,9 @@ nock('https://ciserversdk.blob.core.windows.net:443') .reply(200, "", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '0a42d5b9-83ce-4650-98f0-f50c321dcd55', + 'x-ms-request-id': '91a22405-9986-4df0-a768-4fb0a9860afe', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:26:33 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:12 GMT' }); return result; }], [function (nock) { var result = @@ -51,9 +51,9 @@ nock('https://ciserversdk.blob.core.windows.net:443') .reply(200, "1.0truefalsefalsefalse1.0falsefalse2009-09-19", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'b6e00c1d-8fed-4d96-9223-39d563264614', + 'x-ms-request-id': '05e680b4-8099-4a87-904c-ff6e94ad2e0b', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:26:35 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:15 GMT' }); return result; }, function (nock) { var result = @@ -62,9 +62,9 @@ nock('https://ciserversdk.blob.core.windows.net:443') .put('/?comp=properties&restype=service', '*') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'f11f9dfb-fd67-421e-8ab9-30abe2d1e8ac', + 'x-ms-request-id': '18155369-cf7b-4cb1-87a9-f1f7d3d5517a', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:26:36 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:14 GMT' }); return result; }, function (nock) { var result = @@ -73,9 +73,9 @@ nock('https://ciserversdk.blob.core.windows.net:443') .reply(200, "1.0truefalsefalsefalse1.0falsefalse2009-09-19", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '3770a146-4092-4b2f-beeb-c908398f3b68', + 'x-ms-request-id': 'f8dce91c-1729-444a-a2d0-ec0feac2621d', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:26:37 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:15 GMT' }); return result; }, function (nock) { var result = @@ -84,90 +84,90 @@ nock('https://ciserversdk.blob.core.windows.net:443') .reply(200, "", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'f18b99e9-3657-4b6c-b989-e843aa02c1ea', + 'x-ms-request-id': 'fcd355f8-c7d5-40c1-8264-ba120dfd396c', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:26:39 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:18 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont1?restype=container') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:26:40 GMT', - etag: '"0x8CFE22B47E2B338"', + 'last-modified': 'Thu, 21 Mar 2013 12:42:19 GMT', + etag: '"0x8CFF448A965411E"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'd63b35c9-2c45-4c5c-9d25-8b08dd6f2973', + 'x-ms-request-id': '15a51033-89d6-4705-958a-390594a71ec2', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:26:39 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:19 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont2?restype=container') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:26:40 GMT', - etag: '"0x8CFE22B482364EA"', + 'last-modified': 'Thu, 21 Mar 2013 12:42:20 GMT', + etag: '"0x8CFF448A99DBA4E"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '55d37b5d-3f08-4af9-843b-a0432fd89e85', + 'x-ms-request-id': '36dbd221-abd1-42ec-bc87-a5933b1adae1', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:26:39 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:20 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont3?restype=container') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:26:43 GMT', - etag: '"0x8CFE22B49CF1289"', + 'last-modified': 'Thu, 21 Mar 2013 12:42:21 GMT', + etag: '"0x8CFF448AA5A93F7"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '08e42d6e-090d-457d-a403-f786cfec3214', + 'x-ms-request-id': 'abe456f3-1a95-4f16-b87d-4c1264fe566e', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:26:42 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:20 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont4?restype=container') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:26:43 GMT', - etag: '"0x8CFE22B4A26E02B"', + 'last-modified': 'Thu, 21 Mar 2013 12:42:22 GMT', + etag: '"0x8CFF448AADBDBE4"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'b463b692-019a-4822-9312-cce645498b3b', + 'x-ms-request-id': '1fa13856-0903-4a9d-b50d-e2540271dcde', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:26:43 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:22 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/?comp=list&maxresults=3&include=metadata') - .reply(200, "3cont1https://ciserversdk.blob.core.windows.net/cont1Tue, 26 Feb 2013 11:26:40 GMT\"0x8CFE22B47E2B338\"orange01SomeMetadataValuecont2https://ciserversdk.blob.core.windows.net/cont2Tue, 26 Feb 2013 11:26:40 GMT\"0x8CFE22B482364EA\"pink02SomeMetadataValuecont3https://ciserversdk.blob.core.windows.net/cont3Tue, 26 Feb 2013 11:26:43 GMT\"0x8CFE22B49CF1289\"brown03SomeMetadataValue/ciserversdk/cont4", { 'transfer-encoding': 'chunked', + .reply(200, "3cont1https://ciserversdk.blob.core.windows.net/cont1Thu, 21 Mar 2013 12:42:19 GMT\"0x8CFF448A965411E\"orange01SomeMetadataValuecont2https://ciserversdk.blob.core.windows.net/cont2Thu, 21 Mar 2013 12:42:20 GMT\"0x8CFF448A99DBA4E\"pink02SomeMetadataValuecont3https://ciserversdk.blob.core.windows.net/cont3Thu, 21 Mar 2013 12:42:21 GMT\"0x8CFF448AA5A93F7\"brown03SomeMetadataValue/ciserversdk/cont4", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'c7fb4bde-6ab7-4e16-93f2-72aef284c05e', + 'x-ms-request-id': 'f8a24ae5-b966-45d5-9bc6-c3754a3f2123', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:26:43 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:22 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/?comp=list&marker=/ciserversdk/cont4&maxresults=3&include=metadata') - .reply(200, "/ciserversdk/cont43cont4https://ciserversdk.blob.core.windows.net/cont4Tue, 26 Feb 2013 11:26:43 GMT\"0x8CFE22B4A26E02B\"blue04SomeMetadataValue", { 'transfer-encoding': 'chunked', + .reply(200, "/ciserversdk/cont43cont4https://ciserversdk.blob.core.windows.net/cont4Thu, 21 Mar 2013 12:42:22 GMT\"0x8CFF448AADBDBE4\"blue04SomeMetadataValue", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '34fb70a3-3ff7-49c1-89e5-89bd70db70f6', + 'x-ms-request-id': 'c32f4cc6-2221-4a1f-801d-5ac6c8fe99e9', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:26:44 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:24 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/?comp=list') - .reply(200, "cont1https://ciserversdk.blob.core.windows.net/cont1Tue, 26 Feb 2013 11:26:40 GMT\"0x8CFE22B47E2B338\"cont2https://ciserversdk.blob.core.windows.net/cont2Tue, 26 Feb 2013 11:26:40 GMT\"0x8CFE22B482364EA\"cont3https://ciserversdk.blob.core.windows.net/cont3Tue, 26 Feb 2013 11:26:43 GMT\"0x8CFE22B49CF1289\"cont4https://ciserversdk.blob.core.windows.net/cont4Tue, 26 Feb 2013 11:26:43 GMT\"0x8CFE22B4A26E02B\"", { 'transfer-encoding': 'chunked', + .reply(200, "cont1https://ciserversdk.blob.core.windows.net/cont1Thu, 21 Mar 2013 12:42:19 GMT\"0x8CFF448A965411E\"cont2https://ciserversdk.blob.core.windows.net/cont2Thu, 21 Mar 2013 12:42:20 GMT\"0x8CFF448A99DBA4E\"cont3https://ciserversdk.blob.core.windows.net/cont3Thu, 21 Mar 2013 12:42:21 GMT\"0x8CFF448AA5A93F7\"cont4https://ciserversdk.blob.core.windows.net/cont4Thu, 21 Mar 2013 12:42:22 GMT\"0x8CFF448AADBDBE4\"", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '03931e2a-9900-417d-be98-1733ffe53e1f', + 'x-ms-request-id': 'e6715a5f-bcb7-4cba-86cf-eb8c66f293bb', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:26:45 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:24 GMT' }); return result; }, function (nock) { var result = @@ -175,9 +175,9 @@ nock('https://ciserversdk.blob.core.windows.net:443') .delete('/cont4?restype=container') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '5bdb3a7a-46c7-421a-8dd0-4a2f1c3670e4', + 'x-ms-request-id': '9cdaf032-6350-4551-9f58-03d4deed15de', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:26:46 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:25 GMT' }); return result; }, function (nock) { var result = @@ -185,9 +185,9 @@ nock('https://ciserversdk.blob.core.windows.net:443') .delete('/cont3?restype=container') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '26f7f349-cf49-4f57-9d31-759fcca97a7a', + 'x-ms-request-id': '63e5b295-4a6b-4d7f-b402-64ede5b5bb2b', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:26:47 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:27 GMT' }); return result; }, function (nock) { var result = @@ -195,9 +195,9 @@ nock('https://ciserversdk.blob.core.windows.net:443') .delete('/cont2?restype=container') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '20695b99-304f-4d57-bd28-5993efccfd29', + 'x-ms-request-id': '192dafcf-582f-4dbc-9415-7e95aff5352d', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:26:49 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:28 GMT' }); return result; }, function (nock) { var result = @@ -205,9 +205,9 @@ nock('https://ciserversdk.blob.core.windows.net:443') .delete('/cont1?restype=container') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'ef608077-8f5f-49c1-a9c9-f801ceadabc4', + 'x-ms-request-id': '169f3969-15cc-40ba-b2cd-59edc9fc3174', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:26:50 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:29 GMT' }); return result; }], [function (nock) { var result = @@ -216,9 +216,9 @@ nock('https://ciserversdk.blob.core.windows.net:443') .reply(200, "", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '03cff3ab-d135-41e8-a95b-21fa6136e42f', + 'x-ms-request-id': '45286d06-fb00-4f02-b0ee-3360bbe9aafc', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:26:51 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:30 GMT' }); return result; }, function (nock) { var result = @@ -227,43 +227,43 @@ nock('https://ciserversdk.blob.core.windows.net:443') .reply(200, "", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '84cae58a-d64a-4b1f-9d6f-e4d8b150cd48', + 'x-ms-request-id': '55683a73-3b4a-46b6-abae-da494f9885dc', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:26:51 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:31 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont5?restype=container') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:26:53 GMT', - etag: '"0x8CFE22B4FF12761"', + 'last-modified': 'Thu, 21 Mar 2013 12:42:32 GMT', + etag: '"0x8CFF448B0D4F91E"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'd997a9f9-c9a1-44aa-959e-1571e182b68c', + 'x-ms-request-id': '246ab30e-1004-43c5-8453-399e722f6a22', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:26:53 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:31 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont5?restype=container') - .reply(409, "ContainerAlreadyExistsThe specified container already exists.\nRequestId:b8e13ffc-937a-43e7-a843-428cd44630a5\nTime:2013-02-26T11:26:55.0420963Z", { 'content-length': '230', + .reply(409, "ContainerAlreadyExistsThe specified container already exists.\nRequestId:65b283bd-0807-4ad4-b9d3-2598d6a0a94f\nTime:2013-03-21T12:42:34.1362129Z", { 'content-length': '230', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'b8e13ffc-937a-43e7-a843-428cd44630a5', + 'x-ms-request-id': '65b283bd-0807-4ad4-b9d3-2598d6a0a94f', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:26:54 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:34 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/?comp=list') - .reply(200, "cont5https://ciserversdk.blob.core.windows.net/cont5Tue, 26 Feb 2013 11:26:53 GMT\"0x8CFE22B4FF12761\"", { 'transfer-encoding': 'chunked', + .reply(200, "cont5https://ciserversdk.blob.core.windows.net/cont5Thu, 21 Mar 2013 12:42:32 GMT\"0x8CFF448B0D4F91E\"", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'f8398979-0443-417e-bd1f-311caa2d8bbd', + 'x-ms-request-id': 'dc243034-d169-4d02-9a6e-c7cca845a289', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:26:55 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:34 GMT' }); return result; }, function (nock) { var result = @@ -271,43 +271,43 @@ nock('https://ciserversdk.blob.core.windows.net:443') .delete('/cont5?restype=container') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '26342c1e-b2bc-42b3-9c8e-020fc9984182', + 'x-ms-request-id': '5e3ddc4b-5af6-4f7f-a0cd-075e309802bc', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:26:56 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:35 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont6?restype=container') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:26:58 GMT', - etag: '"0x8CFE22B52AFA8BE"', + 'last-modified': 'Thu, 21 Mar 2013 12:42:36 GMT', + etag: '"0x8CFF448B38B8D99"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'fcf27c25-709e-4b32-a4f5-06211ecfbe53', + 'x-ms-request-id': 'fa165966-955f-44c3-8ede-4236e32af3d2', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:26:57 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:36 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont6?restype=container') - .reply(409, "ContainerAlreadyExistsThe specified container already exists.\nRequestId:2dc565cf-c266-4c29-8939-6c631cb009f7\nTime:2013-02-26T11:26:59.6287782Z", { 'content-length': '230', + .reply(409, "ContainerAlreadyExistsThe specified container already exists.\nRequestId:6171fc08-e12b-44f5-8100-fbb5afd49fae\nTime:2013-03-21T12:42:37.5600055Z", { 'content-length': '230', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '2dc565cf-c266-4c29-8939-6c631cb009f7', + 'x-ms-request-id': '6171fc08-e12b-44f5-8100-fbb5afd49fae', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:26:58 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:36 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/?comp=list') - .reply(200, "cont6https://ciserversdk.blob.core.windows.net/cont6Tue, 26 Feb 2013 11:26:58 GMT\"0x8CFE22B52AFA8BE\"", { 'transfer-encoding': 'chunked', + .reply(200, "cont6https://ciserversdk.blob.core.windows.net/cont6Thu, 21 Mar 2013 12:42:36 GMT\"0x8CFF448B38B8D99\"", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '6df7e7ac-9cdd-43dc-94a6-479ca25031c0', + 'x-ms-request-id': '179fd820-1d06-4dcd-a54f-0eea1e83a72e', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:26:59 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:37 GMT' }); return result; }, function (nock) { var result = @@ -315,9 +315,9 @@ nock('https://ciserversdk.blob.core.windows.net:443') .delete('/cont6?restype=container') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '42c4af74-4f18-42ac-85fc-e1730b90e7bc', + 'x-ms-request-id': '4bf6d781-8352-4790-b4bb-6b806b5f337c', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:01 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:39 GMT' }); return result; }], [function (nock) { var result = @@ -326,45 +326,45 @@ nock('https://ciserversdk.blob.core.windows.net:443') .reply(200, "", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'e161981b-eabf-4c82-9807-5554df7fb2bd', + 'x-ms-request-id': '586403a0-8823-445d-b474-815d77adf1bd', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:00 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:39 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont7?restype=container') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:27:03 GMT', - etag: '"0x8CFE22B55C0ED1C"', + 'last-modified': 'Thu, 21 Mar 2013 12:42:42 GMT', + etag: '"0x8CFF448B69123B1"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '89ce1c63-ba88-4e91-a58b-aeb0f9f2c463', + 'x-ms-request-id': '9492db24-fd5e-4275-a59e-654d912c8fe1', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:02 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:41 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .head('/cont7?restype=container') .reply(200, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:27:03 GMT', - etag: '"0x8CFE22B55C0ED1C"', + 'last-modified': 'Thu, 21 Mar 2013 12:42:42 GMT', + etag: '"0x8CFF448B69123B1"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '81d40127-d12c-4518-a2c6-6f2be2be3648', + 'x-ms-request-id': '9d51f979-a2aa-48cd-a219-3c0b9076d74b', 'x-ms-version': '2011-08-18', 'x-ms-meta-color': 'blue', - date: 'Tue, 26 Feb 2013 11:27:03 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:42 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/?comp=list') - .reply(200, "cont7https://ciserversdk.blob.core.windows.net/cont7Tue, 26 Feb 2013 11:27:03 GMT\"0x8CFE22B55C0ED1C\"", { 'transfer-encoding': 'chunked', + .reply(200, "cont7https://ciserversdk.blob.core.windows.net/cont7Thu, 21 Mar 2013 12:42:42 GMT\"0x8CFF448B69123B1\"", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '387008e3-d2cd-449b-a0a4-4da4dda4a2b5', + 'x-ms-request-id': '7ee26344-d0bd-438c-8ac8-1751dc6ea58d', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:04 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:43 GMT' }); return result; }, function (nock) { var result = @@ -372,57 +372,57 @@ nock('https://ciserversdk.blob.core.windows.net:443') .delete('/cont7?restype=container') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'ca56614f-f4ea-443c-880a-57b518913346', + 'x-ms-request-id': '977b222d-3620-4f31-ac81-b1a45222cc5e', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:05 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:45 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont8?restype=container') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:27:08 GMT', - etag: '"0x8CFE22B58CFD1FF"', + 'last-modified': 'Thu, 21 Mar 2013 12:42:47 GMT', + etag: '"0x8CFF448B9E3E5E9"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'fd4aa330-f214-4ec8-b309-fbd199026a87', + 'x-ms-request-id': 'cc33179b-b387-4684-bcc2-a3ef503b30c0', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:07 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:47 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont8?restype=container&comp=metadata') .reply(200, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:27:09 GMT', - etag: '"0x8CFE22B59AF94B8"', + 'last-modified': 'Thu, 21 Mar 2013 12:42:48 GMT', + etag: '"0x8CFF448BA46D443"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'd84b17ee-b5a8-4be2-ab4c-dc38b78bae7d', + 'x-ms-request-id': 'd206e3c4-d6d0-424f-a1b2-bc336e36f300', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:08 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:48 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .head('/cont8?restype=container&comp=metadata') .reply(200, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:27:09 GMT', - etag: '"0x8CFE22B59AF94B8"', + 'last-modified': 'Thu, 21 Mar 2013 12:42:48 GMT', + etag: '"0x8CFF448BA46D443"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '9ca01dcd-e690-4bcb-bfbf-3f4f4bb184ee', + 'x-ms-request-id': '83183d3d-4d7c-415c-b6cf-d255208aa5fa', 'x-ms-version': '2011-08-18', 'x-ms-meta-class': 'test', - date: 'Tue, 26 Feb 2013 11:27:10 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:48 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/?comp=list') - .reply(200, "cont8https://ciserversdk.blob.core.windows.net/cont8Tue, 26 Feb 2013 11:27:09 GMT\"0x8CFE22B59AF94B8\"", { 'transfer-encoding': 'chunked', + .reply(200, "cont8https://ciserversdk.blob.core.windows.net/cont8Thu, 21 Mar 2013 12:42:48 GMT\"0x8CFF448BA46D443\"", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '8edf5d3d-f48c-4471-9996-303d17b0970a', + 'x-ms-request-id': 'f9271063-e2c0-44cd-b49f-d4544e38e329', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:11 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:51 GMT' }); return result; }, function (nock) { var result = @@ -430,21 +430,21 @@ nock('https://ciserversdk.blob.core.windows.net:443') .delete('/cont8?restype=container') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '1c4ab225-f84a-499b-af0f-4460bbfb7211', + 'x-ms-request-id': '4c0cabdd-b35b-4209-93ea-2badcbc0cfa7', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:12 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:52 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont9?restype=container') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:27:14 GMT', - etag: '"0x8CFE22B5C358B42"', + 'last-modified': 'Thu, 21 Mar 2013 12:42:54 GMT', + etag: '"0x8CFF448BE0BC4F4"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'bc5396ed-2a12-4846-8a2c-c00918a4ac63', + 'x-ms-request-id': 'c668db4a-6345-4c05-8010-225df061900f', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:13 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:53 GMT' }); return result; }, function (nock) { var result = @@ -452,23 +452,23 @@ nock('https://ciserversdk.blob.core.windows.net:443') .get('/cont9?restype=container&comp=acl') .reply(200, "", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', - 'last-modified': 'Tue, 26 Feb 2013 11:27:14 GMT', - etag: '"0x8CFE22B5C358B42"', + 'last-modified': 'Thu, 21 Mar 2013 12:42:54 GMT', + etag: '"0x8CFF448BE0BC4F4"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '3f0b69af-0456-4c6b-b484-5dafbe95614e', + 'x-ms-request-id': '9a5ff986-9706-48fb-8e57-11c9bfb9ea8b', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:14 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:54 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/?comp=list') - .reply(200, "cont9https://ciserversdk.blob.core.windows.net/cont9Tue, 26 Feb 2013 11:27:14 GMT\"0x8CFE22B5C358B42\"", { 'transfer-encoding': 'chunked', + .reply(200, "cont9https://ciserversdk.blob.core.windows.net/cont9Thu, 21 Mar 2013 12:42:54 GMT\"0x8CFF448BE0BC4F4\"", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'd8891df6-22fb-496d-94a2-459977c013a5', + 'x-ms-request-id': 'fe7bc2df-1d5c-4874-8af3-fb7e84f4c666', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:16 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:55 GMT' }); return result; }, function (nock) { var result = @@ -476,33 +476,33 @@ nock('https://ciserversdk.blob.core.windows.net:443') .delete('/cont9?restype=container') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'fe481fd0-4b7e-4202-ab38-7ea14a2f5bd1', + 'x-ms-request-id': '7bb567ff-6080-4909-83cf-aabbc26758c4', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:16 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:57 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont10?restype=container') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:27:19 GMT', - etag: '"0x8CFE22B5F51DBE5"', + 'last-modified': 'Thu, 21 Mar 2013 12:42:58 GMT', + etag: '"0x8CFF448C0585D49"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '8a1d1029-7db3-4006-a688-07413dedee32', + 'x-ms-request-id': 'f310e18e-0a35-4d4a-ae2a-13034ab23311', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:19 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:58 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont10?restype=container&comp=acl') .reply(200, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:27:20 GMT', - etag: '"0x8CFE22B5FFA0081"', + 'last-modified': 'Thu, 21 Mar 2013 12:42:58 GMT', + etag: '"0x8CFF448C0661041"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'eef9b494-6078-40b1-9dfd-94a61c27a771', + 'x-ms-request-id': '0bad7999-fcd0-45e3-ab86-499fd468b970', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:19 GMT' }); + date: 'Thu, 21 Mar 2013 12:42:57 GMT' }); return result; }, function (nock) { var result = @@ -510,25 +510,25 @@ nock('https://ciserversdk.blob.core.windows.net:443') .get('/cont10?restype=container&comp=acl') .reply(200, "", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', - 'last-modified': 'Tue, 26 Feb 2013 11:27:20 GMT', - etag: '"0x8CFE22B5FFA0081"', + 'last-modified': 'Thu, 21 Mar 2013 12:42:58 GMT', + etag: '"0x8CFF448C0661041"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '438ab5ec-eee9-4d23-a2c6-3c95cdfb315f', + 'x-ms-request-id': '7fa32b3b-626d-413c-a065-8201c4bf7590', 'x-ms-version': '2011-08-18', 'x-ms-blob-public-access': 'blob', - date: 'Tue, 26 Feb 2013 11:27:21 GMT' }); + date: 'Thu, 21 Mar 2013 12:43:00 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont10?restype=container&comp=acl') .reply(200, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:27:22 GMT', - etag: '"0x8CFE22B613FCF48"', + 'last-modified': 'Thu, 21 Mar 2013 12:43:01 GMT', + etag: '"0x8CFF448C2606697"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'cf559d09-f063-4384-8ded-2e99cd7b6a18', + 'x-ms-request-id': 'ae56b7bc-aa1f-47d4-ae3e-2b30dfcc58e5', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:21 GMT' }); + date: 'Thu, 21 Mar 2013 12:43:02 GMT' }); return result; }, function (nock) { var result = @@ -536,24 +536,24 @@ nock('https://ciserversdk.blob.core.windows.net:443') .get('/cont10?restype=container&comp=acl') .reply(200, "", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', - 'last-modified': 'Tue, 26 Feb 2013 11:27:22 GMT', - etag: '"0x8CFE22B613FCF48"', + 'last-modified': 'Thu, 21 Mar 2013 12:43:01 GMT', + etag: '"0x8CFF448C2606697"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'd62e01f0-4263-48ca-ae31-3626f262b2e0', + 'x-ms-request-id': 'b472c5ba-632a-46af-936c-379038f11c01', 'x-ms-version': '2011-08-18', 'x-ms-blob-public-access': 'container', - date: 'Tue, 26 Feb 2013 11:27:27 GMT' }); + date: 'Thu, 21 Mar 2013 12:43:28 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/?comp=list') - .reply(200, "cont10https://ciserversdk.blob.core.windows.net/cont10Tue, 26 Feb 2013 11:27:22 GMT\"0x8CFE22B613FCF48\"", { 'transfer-encoding': 'chunked', + .reply(200, "cont10https://ciserversdk.blob.core.windows.net/cont10Thu, 21 Mar 2013 12:43:01 GMT\"0x8CFF448C2606697\"", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'c8faff44-bcf3-4604-bb0e-4cf8dd9e5e27', + 'x-ms-request-id': 'f93738f1-39a6-428a-a539-8f3e470201fb', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:29 GMT' }); + date: 'Thu, 21 Mar 2013 12:43:29 GMT' }); return result; }, function (nock) { var result = @@ -561,21 +561,21 @@ nock('https://ciserversdk.blob.core.windows.net:443') .delete('/cont10?restype=container') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '5a208aa7-4133-4b02-82b8-9f36e49e0ea5', + 'x-ms-request-id': '7927e8aa-af66-4476-9d5d-f0cab836ea29', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:30 GMT' }); + date: 'Thu, 21 Mar 2013 12:43:33 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont11?restype=container') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:27:31 GMT', - etag: '"0x8CFE22B66DEDC2F"', + 'last-modified': 'Thu, 21 Mar 2013 12:43:34 GMT', + etag: '"0x8CFF448D5F79512"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'ab1b0313-ea98-45f6-aacc-5d08715b1667', + 'x-ms-request-id': 'a78cd02c-5a7e-4f02-99c9-b2c52a320b89', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:31 GMT' }); + date: 'Thu, 21 Mar 2013 12:43:34 GMT' }); return result; }, function (nock) { var result = @@ -583,12 +583,12 @@ nock('https://ciserversdk.blob.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .put('/cont11?restype=container&comp=acl', '*') .reply(200, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:27:33 GMT', - etag: '"0x8CFE22B679E11B3"', + 'last-modified': 'Thu, 21 Mar 2013 12:43:34 GMT', + etag: '"0x8CFF448D5F8775D"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '43174a2c-ec9d-465d-9ef8-100c2d33d497', + 'x-ms-request-id': '7d799924-883e-4890-bacb-b2216a740e56', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:32 GMT' }); + date: 'Thu, 21 Mar 2013 12:43:35 GMT' }); return result; }, function (nock) { var result = @@ -596,25 +596,25 @@ nock('https://ciserversdk.blob.core.windows.net:443') .get('/cont11?restype=container&comp=acl') .reply(200, "readwrite2012-11-10T00:00:00.0000000Z2012-11-10T00:10:00.9990000Zrwread2012-11-10T00:00:00.0000000Zr", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', - 'last-modified': 'Tue, 26 Feb 2013 11:27:33 GMT', - etag: '"0x8CFE22B679E11B3"', + 'last-modified': 'Thu, 21 Mar 2013 12:43:34 GMT', + etag: '"0x8CFF448D5F8775D"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '3b9cbe50-2e30-457f-b647-d43288f6370b', + 'x-ms-request-id': '274652c1-738d-4d59-8ae2-fe953a7a6ccd', 'x-ms-version': '2011-08-18', 'x-ms-blob-public-access': 'blob', - date: 'Tue, 26 Feb 2013 11:27:34 GMT' }); + date: 'Thu, 21 Mar 2013 12:43:36 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont11?restype=container&comp=acl') .reply(200, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:27:35 GMT', - etag: '"0x8CFE22B68E12148"', + 'last-modified': 'Thu, 21 Mar 2013 12:43:36 GMT', + etag: '"0x8CFF448D736CBE3"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'a0185d94-6c11-46bc-9e57-4a2efa15e970', + 'x-ms-request-id': 'e74cc145-2499-4228-824f-cbd5b121acfd', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:35 GMT' }); + date: 'Thu, 21 Mar 2013 12:43:37 GMT' }); return result; }, function (nock) { var result = @@ -622,24 +622,24 @@ nock('https://ciserversdk.blob.core.windows.net:443') .get('/cont11?restype=container&comp=acl') .reply(200, "", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', - 'last-modified': 'Tue, 26 Feb 2013 11:27:35 GMT', - etag: '"0x8CFE22B68E12148"', + 'last-modified': 'Thu, 21 Mar 2013 12:43:36 GMT', + etag: '"0x8CFF448D736CBE3"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '7d40e747-1472-4c97-98ea-ddc23f14a845', + 'x-ms-request-id': '51a5b6ab-0500-4fa4-a543-28972ab0282d', 'x-ms-version': '2011-08-18', 'x-ms-blob-public-access': 'container', - date: 'Tue, 26 Feb 2013 11:27:36 GMT' }); + date: 'Thu, 21 Mar 2013 12:43:38 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/?comp=list') - .reply(200, "cont11https://ciserversdk.blob.core.windows.net/cont11Tue, 26 Feb 2013 11:27:35 GMT\"0x8CFE22B68E12148\"", { 'transfer-encoding': 'chunked', + .reply(200, "cont11https://ciserversdk.blob.core.windows.net/cont11Thu, 21 Mar 2013 12:43:36 GMT\"0x8CFF448D736CBE3\"", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '415a1ee9-c9a3-45dc-95df-a3a923a3fbcd', + 'x-ms-request-id': '3f53512e-fe42-4b45-9874-44ac80e00ce7', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:37 GMT' }); + date: 'Thu, 21 Mar 2013 12:43:39 GMT' }); return result; }, function (nock) { var result = @@ -647,21 +647,21 @@ nock('https://ciserversdk.blob.core.windows.net:443') .delete('/cont11?restype=container') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'd7649995-94cb-465d-b7e5-b0f2e62b19b9', + 'x-ms-request-id': '7170849c-3e38-46e7-b8ac-83af816908f2', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:38 GMT' }); + date: 'Thu, 21 Mar 2013 12:43:40 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont12?restype=container') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:27:39 GMT', - etag: '"0x8CFE22B6B3DE61F"', + 'last-modified': 'Thu, 21 Mar 2013 12:43:42 GMT', + etag: '"0x8CFF448DAB5A5E7"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'fd4dea51-83b5-4c02-b45e-899367778dbe', + 'x-ms-request-id': 'ea8d1db0-dc9c-40ea-9c70-eab725e449fe', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:39 GMT' }); + date: 'Thu, 21 Mar 2013 12:43:41 GMT' }); return result; }, function (nock) { var result = @@ -669,12 +669,12 @@ nock('https://ciserversdk.blob.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .put('/cont12?restype=container&comp=acl', '*') .reply(200, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:27:40 GMT', - etag: '"0x8CFE22B6C0CFA90"', + 'last-modified': 'Thu, 21 Mar 2013 12:43:42 GMT', + etag: '"0x8CFF448DAB5A5E8"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'c47e4ee2-61c6-4ca9-9a66-73d20dbb7a34', + 'x-ms-request-id': '3e94caac-f01b-4bbc-93e6-fc8d529ab695', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:39 GMT' }); + date: 'Thu, 21 Mar 2013 12:43:42 GMT' }); return result; }, function (nock) { var result = @@ -682,23 +682,23 @@ nock('https://ciserversdk.blob.core.windows.net:443') .get('/cont12?restype=container&comp=acl') .reply(200, "id12009-10-10T00:00:00.1230000Z2009-10-11T00:00:00.4560000Zrid22009-11-10T00:00:00.0060000Z2009-11-11T00:00:00.4000000Zw", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', - 'last-modified': 'Tue, 26 Feb 2013 11:27:40 GMT', - etag: '"0x8CFE22B6C0CFA90"', + 'last-modified': 'Thu, 21 Mar 2013 12:43:42 GMT', + etag: '"0x8CFF448DAB5A5E8"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '59d88297-0be9-4d55-8742-7a6cc86a9908', + 'x-ms-request-id': '77231c2d-040a-4796-89b0-03235f3c9b15', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:41 GMT' }); + date: 'Thu, 21 Mar 2013 12:43:43 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/?comp=list') - .reply(200, "cont12https://ciserversdk.blob.core.windows.net/cont12Tue, 26 Feb 2013 11:27:40 GMT\"0x8CFE22B6C0CFA90\"", { 'transfer-encoding': 'chunked', + .reply(200, "cont12https://ciserversdk.blob.core.windows.net/cont12Thu, 21 Mar 2013 12:43:42 GMT\"0x8CFF448DAB5A5E8\"", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'feb58e7d-f6a3-4466-9eae-89ace3d22dcd', + 'x-ms-request-id': 'cf256667-c7ae-4025-ad3c-6146cde60287', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:42 GMT' }); + date: 'Thu, 21 Mar 2013 12:43:44 GMT' }); return result; }, function (nock) { var result = @@ -706,21 +706,21 @@ nock('https://ciserversdk.blob.core.windows.net:443') .delete('/cont12?restype=container') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'cf8d1556-f95d-4acf-a032-2273c0f04771', + 'x-ms-request-id': 'f2b0d328-22ea-4ed5-b46e-3c9ae1fe7b75', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:42 GMT' }); + date: 'Thu, 21 Mar 2013 12:43:46 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont13?restype=container') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:27:44 GMT', - etag: '"0x8CFE22B6E6F973C"', + 'last-modified': 'Thu, 21 Mar 2013 12:43:47 GMT', + etag: '"0x8CFF448DDE128B3"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '9a5bef28-9fab-472c-9bb8-5d021e3a0722', + 'x-ms-request-id': 'db34c463-e8b7-4805-9f50-a18b61e3e842', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:43 GMT' }); + date: 'Thu, 21 Mar 2013 12:43:47 GMT' }); return result; }, function (nock) { var result = @@ -729,12 +729,12 @@ nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont13/blob1', '*') .reply(201, "", { 'transfer-encoding': 'chunked', 'content-md5': 'sQqNsWTgdUEFt6mb5y4/5Q==', - 'last-modified': 'Tue, 26 Feb 2013 11:27:45 GMT', - etag: '"0x8CFE22B6F20BB68"', + 'last-modified': 'Thu, 21 Mar 2013 12:43:48 GMT', + etag: '"0x8CFF448DDEC3403"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '0bccef2f-17e5-47da-a103-ad379bdf24a3', + 'x-ms-request-id': 'e71a398c-132f-4842-90be-15eda42499fe', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:44 GMT' }); + date: 'Thu, 21 Mar 2013 12:43:48 GMT' }); return result; }, function (nock) { var result = @@ -742,26 +742,26 @@ nock('https://ciserversdk.blob.core.windows.net:443') .get('/cont13/blob1') .reply(200, "Hello World", { 'content-length': '11', 'content-type': 'text/plain;charset="utf-8"', - 'last-modified': 'Tue, 26 Feb 2013 11:27:45 GMT', + 'last-modified': 'Thu, 21 Mar 2013 12:43:48 GMT', 'accept-ranges': 'bytes', - etag: '"0x8CFE22B6F20BB68"', + etag: '"0x8CFF448DDEC3403"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'ed720ebf-9992-4872-915a-f83cf886ae62', + 'x-ms-request-id': 'ece46858-23b1-497c-bf68-34397b1b515e', 'x-ms-version': '2011-08-18', 'x-ms-lease-status': 'unlocked', 'x-ms-blob-type': 'BlockBlob', - date: 'Tue, 26 Feb 2013 11:27:47 GMT' }); + date: 'Thu, 21 Mar 2013 12:43:49 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/?comp=list') - .reply(200, "cont13https://ciserversdk.blob.core.windows.net/cont13Tue, 26 Feb 2013 11:27:44 GMT\"0x8CFE22B6E6F973C\"", { 'transfer-encoding': 'chunked', + .reply(200, "cont13https://ciserversdk.blob.core.windows.net/cont13Thu, 21 Mar 2013 12:43:47 GMT\"0x8CFF448DDE128B3\"", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '15ef69e0-4ff2-41a8-a145-1cfab199d677', + 'x-ms-request-id': '82099531-cca8-4596-9516-a172417a32bb', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:47 GMT' }); + date: 'Thu, 21 Mar 2013 12:43:50 GMT' }); return result; }, function (nock) { var result = @@ -769,21 +769,21 @@ nock('https://ciserversdk.blob.core.windows.net:443') .delete('/cont13?restype=container') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '9f9a649b-c493-4210-97e7-ea4e971247ba', + 'x-ms-request-id': '1d10cb81-e87f-4a2d-96e9-270aa0a06cc0', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:48 GMT' }); + date: 'Thu, 21 Mar 2013 12:43:51 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont14?restype=container') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:27:50 GMT', - etag: '"0x8CFE22B71BCC6C8"', + 'last-modified': 'Thu, 21 Mar 2013 12:43:52 GMT', + etag: '"0x8CFF448E0CD5258"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '3fda406a-c1bb-4ea8-b758-d9f18522e2d6', + 'x-ms-request-id': '9259db08-0c1a-4f98-9918-19ee2b2e7062', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:49 GMT' }); + date: 'Thu, 21 Mar 2013 12:43:52 GMT' }); return result; }, function (nock) { var result = @@ -792,25 +792,25 @@ nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont14/blob2', '*') .reply(201, "", { 'transfer-encoding': 'chunked', 'content-md5': 'sQqNsWTgdUEFt6mb5y4/5Q==', - 'last-modified': 'Tue, 26 Feb 2013 11:27:51 GMT', - etag: '"0x8CFE22B724345A3"', + 'last-modified': 'Thu, 21 Mar 2013 12:43:53 GMT', + etag: '"0x8CFF448E0FC0C13"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '87a82c31-eafc-4ffc-aefe-1833203e2114', + 'x-ms-request-id': '7f789e7d-576a-421d-872a-2eb4e269b246', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:50 GMT' }); + date: 'Thu, 21 Mar 2013 12:43:52 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont14/blob2?comp=snapshot') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:27:51 GMT', - etag: '"0x8CFE22B724345A3"', + 'last-modified': 'Thu, 21 Mar 2013 12:43:53 GMT', + etag: '"0x8CFF448E0FC0C13"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'a3110eec-9eff-4d9a-9cd5-4b168e3ff7fc', + 'x-ms-request-id': '7c14fc94-1bfc-4b26-bffc-4a39762b1603', 'x-ms-version': '2011-08-18', - 'x-ms-snapshot': '2013-02-26T11:27:52.1112757Z', - date: 'Tue, 26 Feb 2013 11:27:51 GMT' }); + 'x-ms-snapshot': '2013-03-21T12:43:54.2256483Z', + date: 'Thu, 21 Mar 2013 12:43:54 GMT' }); return result; }, function (nock) { var result = @@ -818,26 +818,26 @@ nock('https://ciserversdk.blob.core.windows.net:443') .get('/cont14/blob2') .reply(200, "Hello World", { 'content-length': '11', 'content-type': 'text/plain;charset="utf-8"', - 'last-modified': 'Tue, 26 Feb 2013 11:27:51 GMT', + 'last-modified': 'Thu, 21 Mar 2013 12:43:53 GMT', 'accept-ranges': 'bytes', - etag: '"0x8CFE22B724345A3"', + etag: '"0x8CFF448E0FC0C13"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '5c0fd3a2-0223-4224-a63f-f90349fe0037', + 'x-ms-request-id': 'a76ac7e8-949d-414d-9689-c9ba4595fe02', 'x-ms-version': '2011-08-18', 'x-ms-lease-status': 'unlocked', 'x-ms-blob-type': 'BlockBlob', - date: 'Tue, 26 Feb 2013 11:27:53 GMT' }); + date: 'Thu, 21 Mar 2013 12:43:55 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/?comp=list') - .reply(200, "cont14https://ciserversdk.blob.core.windows.net/cont14Tue, 26 Feb 2013 11:27:50 GMT\"0x8CFE22B71BCC6C8\"", { 'transfer-encoding': 'chunked', + .reply(200, "cont14https://ciserversdk.blob.core.windows.net/cont14Thu, 21 Mar 2013 12:43:52 GMT\"0x8CFF448E0CD5258\"", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'ab30c55b-da19-46ff-a320-311a20461644', + 'x-ms-request-id': '5135c8a0-8822-407b-a608-d8c8f454e10c', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:53 GMT' }); + date: 'Thu, 21 Mar 2013 12:43:55 GMT' }); return result; }, function (nock) { var result = @@ -845,33 +845,33 @@ nock('https://ciserversdk.blob.core.windows.net:443') .delete('/cont14?restype=container') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '71f15f04-be17-432e-af37-9ea5cbcfbee0', + 'x-ms-request-id': '55d02b36-9e05-47ce-8ec2-cc1fe5d12f69', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:54 GMT' }); + date: 'Thu, 21 Mar 2013 12:43:57 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont15?restype=container') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:27:56 GMT', - etag: '"0x8CFE22B759CAF4F"', + 'last-modified': 'Thu, 21 Mar 2013 12:43:57 GMT', + etag: '"0x8CFF448E37235E7"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'de2d8c08-598d-44b6-a2af-24feeb99523d', + 'x-ms-request-id': 'cde0bda8-baee-421f-a0c6-2232c27a3c03', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:55 GMT' }); + date: 'Thu, 21 Mar 2013 12:43:57 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont16?restype=container') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:27:57 GMT', - etag: '"0x8CFE22B75F1B662"', + 'last-modified': 'Thu, 21 Mar 2013 12:43:59 GMT', + etag: '"0x8CFF448E4DB8978"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'cacfa078-aa4e-4d13-a8c1-cafdd042da04', + 'x-ms-request-id': '5d7e3420-cfdd-4e8f-8524-141a3b08dc48', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:56 GMT' }); + date: 'Thu, 21 Mar 2013 12:43:59 GMT' }); return result; }, function (nock) { var result = @@ -880,24 +880,24 @@ nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont15/blob3', '*') .reply(201, "", { 'transfer-encoding': 'chunked', 'content-md5': '/TPi6K08sb3T6o9WM/z1xw==', - 'last-modified': 'Tue, 26 Feb 2013 11:27:58 GMT', - etag: '"0x8CFE22B768D8E90"', + 'last-modified': 'Thu, 21 Mar 2013 12:44:00 GMT', + etag: '"0x8CFF448E55AD253"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '27f58c2c-368d-4b03-bd30-6c5feefad1f8', + 'x-ms-request-id': '9be3e2e2-5ce3-4c08-bcf5-a47d69e8f591', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:58 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:00 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont16/blob4') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:27:59 GMT', - etag: '"0x8CFE22B773607E0"', + 'last-modified': 'Thu, 21 Mar 2013 12:44:01 GMT', + etag: '"0x8CFF448E6008833"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '4b8848a4-51ed-4023-94e9-3c4b34c106b1', + 'x-ms-request-id': '510dcbd9-692a-4e92-89af-418eaf07bc6f', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:27:59 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:01 GMT' }); return result; }, function (nock) { var result = @@ -905,26 +905,26 @@ nock('https://ciserversdk.blob.core.windows.net:443') .get('/cont16/blob4') .reply(200, "hi there", { 'content-length': '8', 'content-type': 'text/plain;charset="utf-8"', - 'last-modified': 'Tue, 26 Feb 2013 11:27:59 GMT', + 'last-modified': 'Thu, 21 Mar 2013 12:44:01 GMT', 'accept-ranges': 'bytes', - etag: '"0x8CFE22B773607E0"', + etag: '"0x8CFF448E6008833"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'd8275f04-b893-4a95-ac75-7b907922864f', + 'x-ms-request-id': 'ae8d6d62-97b1-4d8a-9683-0273b23add4b', 'x-ms-version': '2011-08-18', 'x-ms-lease-status': 'unlocked', 'x-ms-blob-type': 'BlockBlob', - date: 'Tue, 26 Feb 2013 11:27:59 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:02 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/?comp=list') - .reply(200, "cont15https://ciserversdk.blob.core.windows.net/cont15Tue, 26 Feb 2013 11:27:56 GMT\"0x8CFE22B759CAF4F\"cont16https://ciserversdk.blob.core.windows.net/cont16Tue, 26 Feb 2013 11:27:57 GMT\"0x8CFE22B75F1B662\"", { 'transfer-encoding': 'chunked', + .reply(200, "cont15https://ciserversdk.blob.core.windows.net/cont15Thu, 21 Mar 2013 12:43:57 GMT\"0x8CFF448E37235E7\"cont16https://ciserversdk.blob.core.windows.net/cont16Thu, 21 Mar 2013 12:43:59 GMT\"0x8CFF448E4DB8978\"", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '74a8d390-cd9d-447a-b8e7-5e682f1c9085', + 'x-ms-request-id': 'a814aab3-65ae-4ede-9848-6f3342405abd', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:00 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:03 GMT' }); return result; }, function (nock) { var result = @@ -932,9 +932,9 @@ nock('https://ciserversdk.blob.core.windows.net:443') .delete('/cont16?restype=container') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '94078010-cf35-4624-a114-b5adf84156f9', + 'x-ms-request-id': '798316b2-9312-4fe1-aa36-16dccfd68acf', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:02 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:03 GMT' }); return result; }, function (nock) { var result = @@ -942,21 +942,21 @@ nock('https://ciserversdk.blob.core.windows.net:443') .delete('/cont15?restype=container') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '2c47119e-cf15-428a-82dc-0c85d4ba3295', + 'x-ms-request-id': '202ac5fc-1627-468a-8fdf-ba5300d27aaf', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:03 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:06 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont17?restype=container') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:28:04 GMT', - etag: '"0x8CFE22B7A076546"', + 'last-modified': 'Thu, 21 Mar 2013 12:44:07 GMT', + etag: '"0x8CFF448E997C49A"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'd37b44f2-fcfa-4561-8b96-b87bd5535c4e', + 'x-ms-request-id': '5f8dba94-33f1-48a2-a838-39a41c94790e', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:04 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:06 GMT' }); return result; }, function (nock) { var result = @@ -965,12 +965,12 @@ nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont17/blob5', '*') .reply(201, "", { 'transfer-encoding': 'chunked', 'content-md5': 'XUFAKrxLKna5cZ2REBfFkg==', - 'last-modified': 'Tue, 26 Feb 2013 11:28:05 GMT', - etag: '"0x8CFE22B7B0243F3"', + 'last-modified': 'Thu, 21 Mar 2013 12:44:08 GMT', + etag: '"0x8CFF448E9E64DE3"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'b1531a1d-79c0-49dd-997e-eec8f5118b8b', + 'x-ms-request-id': 'e127f566-f67a-400a-b7cf-f28dec07fb57', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:05 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:07 GMT' }); return result; }, function (nock) { var result = @@ -978,43 +978,43 @@ nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont17/blob5?comp=lease') .reply(201, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '4a0ff2a4-8f07-4f11-bd62-8b5a916c4427', + 'x-ms-request-id': 'ba580557-55ad-41e4-bc11-32c958794655', 'x-ms-version': '2011-08-18', - 'x-ms-lease-id': '86cfc07b-011e-4e6e-985b-3e2e20177388', - date: 'Tue, 26 Feb 2013 11:28:06 GMT' }); + 'x-ms-lease-id': 'cb904979-3312-46de-8247-90cef8092a5d', + date: 'Thu, 21 Mar 2013 12:44:09 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont17/blob5?comp=lease') - .reply(409, "LeaseAlreadyPresentThere is already a lease present.\nRequestId:c4f47789-834d-4d21-b6d9-8e1c1ceaa664\nTime:2013-02-26T11:28:07.6513719Z", { 'content-length': '221', + .reply(409, "LeaseAlreadyPresentThere is already a lease present.\nRequestId:3df3625e-ced3-443c-aa66-03680b086c0c\nTime:2013-03-21T12:44:11.0881580Z", { 'content-length': '221', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'c4f47789-834d-4d21-b6d9-8e1c1ceaa664', + 'x-ms-request-id': '3df3625e-ced3-443c-aa66-03680b086c0c', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:06 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:10 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .delete('/cont17/blob5') - .reply(412, "LeaseIdMissingThere is currently a lease on the blob and no lease ID was specified in the request.\nRequestId:11676daf-38a5-459e-8629-a17957c761d3\nTime:2013-02-26T11:28:08.6745930Z", { 'content-length': '267', + .reply(412, "LeaseIdMissingThere is currently a lease on the blob and no lease ID was specified in the request.\nRequestId:6db4031f-e1f0-4f4b-b5f4-d92025d589bc\nTime:2013-03-21T12:44:12.5666079Z", { 'content-length': '267', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '11676daf-38a5-459e-8629-a17957c761d3', + 'x-ms-request-id': '6db4031f-e1f0-4f4b-b5f4-d92025d589bc', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:07 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:11 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/?comp=list') - .reply(200, "cont17https://ciserversdk.blob.core.windows.net/cont17Tue, 26 Feb 2013 11:28:04 GMT\"0x8CFE22B7A076546\"", { 'transfer-encoding': 'chunked', + .reply(200, "cont17https://ciserversdk.blob.core.windows.net/cont17Thu, 21 Mar 2013 12:44:07 GMT\"0x8CFF448E997C49A\"", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'a5f6a93f-464f-402f-a97b-6d71a2263850', + 'x-ms-request-id': '1a2d1cf2-c8ac-45d8-9d88-88be3a2daede', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:08 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:12 GMT' }); return result; }, function (nock) { var result = @@ -1022,21 +1022,21 @@ nock('https://ciserversdk.blob.core.windows.net:443') .delete('/cont17?restype=container') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '29da0435-5523-4db7-9e98-1ed26f520d02', + 'x-ms-request-id': 'ecffd4d7-322a-4593-bf2f-6452d58fb43a', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:09 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:13 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont18?restype=container') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:28:12 GMT', - etag: '"0x8CFE22B7EE0FABE"', + 'last-modified': 'Thu, 21 Mar 2013 12:44:15 GMT', + etag: '"0x8CFF448EE107C40"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '0f43b1d5-f732-45ce-9fbb-b881de02d3ed', + 'x-ms-request-id': 'e26e8305-f320-4786-9b8a-3346b5a4746b', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:11 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:14 GMT' }); return result; }, function (nock) { var result = @@ -1045,12 +1045,12 @@ nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont18/blob6', '*') .reply(201, "", { 'transfer-encoding': 'chunked', 'content-md5': 'XUFAKrxLKna5cZ2REBfFkg==', - 'last-modified': 'Tue, 26 Feb 2013 11:28:13 GMT', - etag: '"0x8CFE22B7F595E74"', + 'last-modified': 'Thu, 21 Mar 2013 12:44:15 GMT', + etag: '"0x8CFF448EE5B8253"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'af7e4653-c2ed-4459-888b-bc57828b0589', + 'x-ms-request-id': '730bd850-b792-4635-9aad-367faeb298ba', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:12 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:15 GMT' }); return result; }, function (nock) { var result = @@ -1058,26 +1058,26 @@ nock('https://ciserversdk.blob.core.windows.net:443') .head('/cont18/blob6') .reply(200, "", { 'content-length': '5', 'content-type': 'text/plain;charset="utf-8"', - 'last-modified': 'Tue, 26 Feb 2013 11:28:13 GMT', - etag: '"0x8CFE22B7F595E74"', + 'last-modified': 'Thu, 21 Mar 2013 12:44:15 GMT', + etag: '"0x8CFF448EE5B8253"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '85dd5238-fc24-423c-8212-dff510e4e68a', + 'x-ms-request-id': '332c4709-cad0-4ff2-9b6d-b88c32a9d177', 'x-ms-version': '2011-08-18', 'x-ms-meta-color': 'blue', 'x-ms-lease-status': 'unlocked', 'x-ms-blob-type': 'BlockBlob', - date: 'Tue, 26 Feb 2013 11:28:13 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:16 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/?comp=list') - .reply(200, "cont18https://ciserversdk.blob.core.windows.net/cont18Tue, 26 Feb 2013 11:28:12 GMT\"0x8CFE22B7EE0FABE\"", { 'transfer-encoding': 'chunked', + .reply(200, "cont18https://ciserversdk.blob.core.windows.net/cont18Thu, 21 Mar 2013 12:44:15 GMT\"0x8CFF448EE107C40\"", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'd72e196d-a258-4766-a1d8-6fbbd4e3e047', + 'x-ms-request-id': 'd0221326-d10c-49f2-8f94-f2363ab0e91f', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:14 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:16 GMT' }); return result; }, function (nock) { var result = @@ -1085,21 +1085,21 @@ nock('https://ciserversdk.blob.core.windows.net:443') .delete('/cont18?restype=container') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'b79be203-3350-423a-ab24-f5a5a6c8dcb8', + 'x-ms-request-id': '1dea4d81-4951-457a-a6de-6350b8ce7070', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:15 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:18 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont19?restype=container') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:28:18 GMT', - etag: '"0x8CFE22B8277DCF6"', + 'last-modified': 'Thu, 21 Mar 2013 12:44:19 GMT', + etag: '"0x8CFF448F0EFF17C"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '2886f118-a70b-4735-b1b1-96c79e1a34db', + 'x-ms-request-id': 'bd6f5cf4-5b36-4d7b-9fe8-91e9410422d7', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:17 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:19 GMT' }); return result; }, function (nock) { var result = @@ -1108,24 +1108,24 @@ nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont19/blob7', '*') .reply(201, "", { 'transfer-encoding': 'chunked', 'content-md5': 'XUFAKrxLKna5cZ2REBfFkg==', - 'last-modified': 'Tue, 26 Feb 2013 11:28:19 GMT', - etag: '"0x8CFE22B82E53481"', + 'last-modified': 'Thu, 21 Mar 2013 12:44:20 GMT', + etag: '"0x8CFF448F162A7D3"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '6c92e598-fccc-422a-aa09-6c3c7fdbc022', + 'x-ms-request-id': '073c50df-ea39-45fc-87ee-a00da083a518', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:17 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:20 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont19/blob7?comp=properties') .reply(200, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:28:20 GMT', - etag: '"0x8CFE22B8386F6E5"', + 'last-modified': 'Thu, 21 Mar 2013 12:44:21 GMT', + etag: '"0x8CFF448F1FC9DE3"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'a4b99012-85f3-432c-8fcb-057ba831f50f', + 'x-ms-request-id': '1678f0a6-1362-498d-9c66-05e29603ed1b', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:19 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:22 GMT' }); return result; }, function (nock) { var result = @@ -1136,25 +1136,25 @@ nock('https://ciserversdk.blob.core.windows.net:443') 'content-type': 'text', 'content-encoding': 'utf8', 'content-language': 'pt', - 'last-modified': 'Tue, 26 Feb 2013 11:28:20 GMT', - etag: '"0x8CFE22B8386F6E5"', + 'last-modified': 'Thu, 21 Mar 2013 12:44:21 GMT', + etag: '"0x8CFF448F1FC9DE3"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '4bd9b900-9a71-40fb-b182-b7cdd2fc8353', + 'x-ms-request-id': '31beee4c-548c-432b-89ea-d7e2aebd7eba', 'x-ms-version': '2011-08-18', 'x-ms-lease-status': 'unlocked', 'x-ms-blob-type': 'BlockBlob', - date: 'Tue, 26 Feb 2013 11:28:18 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:22 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/?comp=list') - .reply(200, "cont19https://ciserversdk.blob.core.windows.net/cont19Tue, 26 Feb 2013 11:28:18 GMT\"0x8CFE22B8277DCF6\"", { 'transfer-encoding': 'chunked', + .reply(200, "cont19https://ciserversdk.blob.core.windows.net/cont19Thu, 21 Mar 2013 12:44:19 GMT\"0x8CFF448F0EFF17C\"", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '80067176-a1e5-4a7a-8cd6-392f663b39a4', + 'x-ms-request-id': '96653f06-0c3d-49e7-abe5-004de4d7e6d2', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:21 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:23 GMT' }); return result; }, function (nock) { var result = @@ -1162,21 +1162,21 @@ nock('https://ciserversdk.blob.core.windows.net:443') .delete('/cont19?restype=container') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '317da0b7-e019-49c7-ad73-74cf15924031', + 'x-ms-request-id': '739d8a06-7afc-44c2-97f5-ceeb6426d206', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:21 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:24 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont20?restype=container') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:28:24 GMT', - etag: '"0x8CFE22B8614336C"', + 'last-modified': 'Thu, 21 Mar 2013 12:44:26 GMT', + etag: '"0x8CFF448F4956437"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '4c7a746d-5a11-4b3a-a5c3-043910824a88', + 'x-ms-request-id': '612f5649-d781-49a6-96ad-fb8d6f83b4bb', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:24 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:25 GMT' }); return result; }, function (nock) { var result = @@ -1185,36 +1185,36 @@ nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont20/blob8', '*') .reply(201, "", { 'transfer-encoding': 'chunked', 'content-md5': 'XUFAKrxLKna5cZ2REBfFkg==', - 'last-modified': 'Tue, 26 Feb 2013 11:28:25 GMT', - etag: '"0x8CFE22B86929D2A"', + 'last-modified': 'Thu, 21 Mar 2013 12:44:27 GMT', + etag: '"0x8CFF448F522BD13"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'c5381953-d1e3-42e4-b43a-292dc385b468', + 'x-ms-request-id': 'ca6a0bec-1aff-4ca2-a94a-6173821fb8bf', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:24 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:26 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .head('/cont20/blob8?comp=metadata') .reply(200, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:28:25 GMT', - etag: '"0x8CFE22B86929D2A"', + 'last-modified': 'Thu, 21 Mar 2013 12:44:27 GMT', + etag: '"0x8CFF448F522BD13"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '7762662c-c725-4f3f-b96f-e40b48b3a40e', + 'x-ms-request-id': '59adbffa-8e29-483f-b4b9-84dc5cab75da', 'x-ms-version': '2011-08-18', 'x-ms-meta-color': 'blue', - date: 'Tue, 26 Feb 2013 11:28:25 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:27 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/?comp=list') - .reply(200, "cont20https://ciserversdk.blob.core.windows.net/cont20Tue, 26 Feb 2013 11:28:24 GMT\"0x8CFE22B8614336C\"", { 'transfer-encoding': 'chunked', + .reply(200, "cont20https://ciserversdk.blob.core.windows.net/cont20Thu, 21 Mar 2013 12:44:26 GMT\"0x8CFF448F4956437\"", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '17745d37-2818-4f69-ae15-e0b2a2f06291', + 'x-ms-request-id': 'e133f92f-3ced-4737-b5bd-5526c6a94147', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:27 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:29 GMT' }); return result; }, function (nock) { var result = @@ -1222,21 +1222,21 @@ nock('https://ciserversdk.blob.core.windows.net:443') .delete('/cont20?restype=container') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'b20c293c-1022-4aa0-b50c-ae5891069a4a', + 'x-ms-request-id': '37d97ff3-08d7-4a3d-8a9e-4aaa3b2bfd96', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:27 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:28 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont21?restype=container') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:28:29 GMT', - etag: '"0x8CFE22B8933F44E"', + 'last-modified': 'Thu, 21 Mar 2013 12:44:32 GMT', + etag: '"0x8CFF448F868070F"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'b7dde470-e383-4bb8-8f1f-b8abc9b4ffb7', + 'x-ms-request-id': '39f2fd9a-f99b-4210-931c-bb7b7307a3b6', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:28 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:32 GMT' }); return result; }, function (nock) { var result = @@ -1245,9 +1245,9 @@ nock('https://ciserversdk.blob.core.windows.net:443') .reply(200, "", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'b5ccbb80-3d13-40d3-a21e-f826995f40ac', + 'x-ms-request-id': '3867e217-32f0-4bfe-ba38-4ae9d143a119', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:30 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:32 GMT' }); return result; }, function (nock) { var result = @@ -1256,23 +1256,23 @@ nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont21/blob9', '*') .reply(201, "", { 'transfer-encoding': 'chunked', 'content-md5': 'IDrV/6HXxlCtaB/f85Zc0g==', - 'last-modified': 'Tue, 26 Feb 2013 11:28:31 GMT', - etag: '"0x8CFE22B8A589784"', + 'last-modified': 'Thu, 21 Mar 2013 12:44:33 GMT', + etag: '"0x8CFF448F9110E43"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'b9f8f0dc-f2cc-4002-8064-4bea09d78f55', + 'x-ms-request-id': '4a129b62-aacc-473c-a641-68655c73a0dd', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:31 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:33 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/cont21?restype=container&comp=list') - .reply(200, "blob9https://ciserversdk.blob.core.windows.net/cont21/blob9Tue, 26 Feb 2013 11:28:31 GMT0x8CFE22B8A5897846text/plain;charset=\"utf-8\"BlockBlobunlocked", { 'transfer-encoding': 'chunked', + .reply(200, "blob9https://ciserversdk.blob.core.windows.net/cont21/blob9Thu, 21 Mar 2013 12:44:33 GMT0x8CFF448F9110E436text/plain;charset=\"utf-8\"BlockBlobunlocked", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'b690c907-232c-49b1-91ff-d845029f362b', + 'x-ms-request-id': '10bd1318-2118-4382-b7d8-fbf9653bc8cb', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:32 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:35 GMT' }); return result; }, function (nock) { var result = @@ -1281,69 +1281,69 @@ nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont21/blob10', '*') .reply(201, "", { 'transfer-encoding': 'chunked', 'content-md5': 'boCcvaBzKsSEWRalkBb5VA==', - 'last-modified': 'Tue, 26 Feb 2013 11:28:33 GMT', - etag: '"0x8CFE22B8B947AFA"', + 'last-modified': 'Thu, 21 Mar 2013 12:44:35 GMT', + etag: '"0x8CFF448FA498E43"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '75164fae-03be-4d22-82bc-2dfcea690b6b', + 'x-ms-request-id': '35d20f5d-be9b-4b87-99f3-7b6c20c1763e', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:33 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:34 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/cont21?restype=container&comp=list') - .reply(200, "blob10https://ciserversdk.blob.core.windows.net/cont21/blob10Tue, 26 Feb 2013 11:28:33 GMT0x8CFE22B8B947AFA6text/plain;charset=\"utf-8\"BlockBlobunlockedblob9https://ciserversdk.blob.core.windows.net/cont21/blob9Tue, 26 Feb 2013 11:28:31 GMT0x8CFE22B8A5897846text/plain;charset=\"utf-8\"BlockBlobunlocked", { 'transfer-encoding': 'chunked', + .reply(200, "blob10https://ciserversdk.blob.core.windows.net/cont21/blob10Thu, 21 Mar 2013 12:44:35 GMT0x8CFF448FA498E436text/plain;charset=\"utf-8\"BlockBlobunlockedblob9https://ciserversdk.blob.core.windows.net/cont21/blob9Thu, 21 Mar 2013 12:44:33 GMT0x8CFF448F9110E436text/plain;charset=\"utf-8\"BlockBlobunlocked", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '02f26007-cf31-4d51-a700-a021ad0368f9', + 'x-ms-request-id': '47c38e71-85c1-47ea-9996-b51d583b045a', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:33 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:36 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont21/blob9?comp=snapshot') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:28:31 GMT', - etag: '"0x8CFE22B8A589784"', + 'last-modified': 'Thu, 21 Mar 2013 12:44:33 GMT', + etag: '"0x8CFF448F9110E43"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '951bc552-798b-4583-b08f-c588ba0d71af', + 'x-ms-request-id': '5d686bc2-77f4-473d-b325-37ae50838565', 'x-ms-version': '2011-08-18', - 'x-ms-snapshot': '2013-02-26T11:28:35.6886330Z', - date: 'Tue, 26 Feb 2013 11:28:35 GMT' }); + 'x-ms-snapshot': '2013-03-21T12:44:37.6306483Z', + date: 'Thu, 21 Mar 2013 12:44:36 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/cont21?restype=container&comp=list') - .reply(200, "blob10https://ciserversdk.blob.core.windows.net/cont21/blob10Tue, 26 Feb 2013 11:28:33 GMT0x8CFE22B8B947AFA6text/plain;charset=\"utf-8\"BlockBlobunlockedblob9https://ciserversdk.blob.core.windows.net/cont21/blob9Tue, 26 Feb 2013 11:28:31 GMT0x8CFE22B8A5897846text/plain;charset=\"utf-8\"BlockBlobunlocked", { 'transfer-encoding': 'chunked', + .reply(200, "blob10https://ciserversdk.blob.core.windows.net/cont21/blob10Thu, 21 Mar 2013 12:44:35 GMT0x8CFF448FA498E436text/plain;charset=\"utf-8\"BlockBlobunlockedblob9https://ciserversdk.blob.core.windows.net/cont21/blob9Thu, 21 Mar 2013 12:44:33 GMT0x8CFF448F9110E436text/plain;charset=\"utf-8\"BlockBlobunlocked", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '16bf8174-07f7-411f-a911-72b06c2c7969', + 'x-ms-request-id': 'f2cd4da0-853f-4d4f-a90c-8d86d176b6fa', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:37 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:38 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/cont21?restype=container&comp=list&include=snapshots') - .reply(200, "blob10https://ciserversdk.blob.core.windows.net/cont21/blob10Tue, 26 Feb 2013 11:28:33 GMT0x8CFE22B8B947AFA6text/plain;charset=\"utf-8\"BlockBlobunlockedblob92013-02-26T11:28:35.6886330Zhttps://ciserversdk.blob.core.windows.net/cont21/blob9?snapshot=2013-02-26T11%3a28%3a35.6886330ZTue, 26 Feb 2013 11:28:31 GMT0x8CFE22B8A5897846text/plain;charset=\"utf-8\"BlockBlobblob9https://ciserversdk.blob.core.windows.net/cont21/blob9Tue, 26 Feb 2013 11:28:31 GMT0x8CFE22B8A5897846text/plain;charset=\"utf-8\"BlockBlobunlocked", { 'transfer-encoding': 'chunked', + .reply(200, "blob10https://ciserversdk.blob.core.windows.net/cont21/blob10Thu, 21 Mar 2013 12:44:35 GMT0x8CFF448FA498E436text/plain;charset=\"utf-8\"BlockBlobunlockedblob92013-03-21T12:44:37.6306483Zhttps://ciserversdk.blob.core.windows.net/cont21/blob9?snapshot=2013-03-21T12%3a44%3a37.6306483ZThu, 21 Mar 2013 12:44:33 GMT0x8CFF448F9110E436text/plain;charset=\"utf-8\"BlockBlobblob9https://ciserversdk.blob.core.windows.net/cont21/blob9Thu, 21 Mar 2013 12:44:33 GMT0x8CFF448F9110E436text/plain;charset=\"utf-8\"BlockBlobunlocked", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '7991aadf-9a63-4b6f-a297-3f4ff362098f', + 'x-ms-request-id': 'f1949bc7-2687-4186-92a6-1bbbec8e8526', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:36 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:39 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/?comp=list') - .reply(200, "cont21https://ciserversdk.blob.core.windows.net/cont21Tue, 26 Feb 2013 11:28:29 GMT\"0x8CFE22B8933F44E\"", { 'transfer-encoding': 'chunked', + .reply(200, "cont21https://ciserversdk.blob.core.windows.net/cont21Thu, 21 Mar 2013 12:44:32 GMT\"0x8CFF448F868070F\"", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '4fa5f101-d609-4a6e-87ea-cbfa1e7cc846', + 'x-ms-request-id': 'd75621f4-d488-4a3d-ad08-2b58117f39fb', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:38 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:40 GMT' }); return result; }, function (nock) { var result = @@ -1351,33 +1351,33 @@ nock('https://ciserversdk.blob.core.windows.net:443') .delete('/cont21?restype=container') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'c9619780-c426-4b27-991c-b5fa93bc9922', + 'x-ms-request-id': '059369eb-abb0-47c4-90cb-be7004415f30', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:40 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:41 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont22?restype=container') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:28:40 GMT', - etag: '"0x8CFE22B8FD8682B"', + 'last-modified': 'Thu, 21 Mar 2013 12:44:42 GMT', + etag: '"0x8CFF448FE71C435"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'eecc90d5-ed02-45f6-a78d-c83eafded876', + 'x-ms-request-id': 'c94af8f1-c2ec-4008-a687-af0ed0659f9d', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:39 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:42 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont22/blob11') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:28:42 GMT', - etag: '"0x8CFE22B90B9C032"', + 'last-modified': 'Thu, 21 Mar 2013 12:44:43 GMT', + etag: '"0x8CFF448FF374E13"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '912152b7-ee57-407b-9a93-9a7b33d3d861', + 'x-ms-request-id': 'dfc96608-3210-475f-ba9f-9d5660117d43', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:41 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:43 GMT' }); return result; }, function (nock) { var result = @@ -1386,13 +1386,13 @@ nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont22/blob11?comp=page', '*') .reply(201, "", { 'transfer-encoding': 'chunked', 'content-md5': 'hWqCH89IXa3HIcoVA3zIWw==', - 'last-modified': 'Tue, 26 Feb 2013 11:28:43 GMT', - etag: '"0x8CFE22B915EDE0C"', + 'last-modified': 'Thu, 21 Mar 2013 12:44:44 GMT', + etag: '"0x8CFF448FFD5D803"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'afd89125-7f5c-47d5-9734-0886ece5737d', + 'x-ms-request-id': '4657cb96-036e-4389-9beb-2ec30ce5b8c6', 'x-ms-version': '2011-08-18', 'x-ms-blob-sequence-number': '0', - date: 'Tue, 26 Feb 2013 11:28:43 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:45 GMT' }); return result; }, function (nock) { var result = @@ -1400,29 +1400,29 @@ nock('https://ciserversdk.blob.core.windows.net:443') .get('/cont22/blob11') .reply(200, "Hello, World! ", { 'content-length': '1024', 'content-type': 'application/octet-stream', - 'last-modified': 'Tue, 26 Feb 2013 11:28:43 GMT', + 'last-modified': 'Thu, 21 Mar 2013 12:44:44 GMT', 'accept-ranges': 'bytes', - etag: '"0x8CFE22B915EDE0C"', + etag: '"0x8CFF448FFD5D803"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '789d90a3-7fb5-44d0-bc00-66a5646c0974', + 'x-ms-request-id': '86d9c207-5c8c-4c9f-a74a-04cd7005c198', 'x-ms-version': '2011-08-18', 'x-ms-lease-status': 'unlocked', 'x-ms-blob-type': 'PageBlob', 'x-ms-blob-sequence-number': '0', - date: 'Tue, 26 Feb 2013 11:28:44 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:45 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont22/blob11?comp=page') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:28:45 GMT', - etag: '"0x8CFE22B929717EA"', + 'last-modified': 'Thu, 21 Mar 2013 12:44:47 GMT', + etag: '"0x8CFF449011A17D3"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'f6474dde-9036-4158-b9ae-636e4dad2dd0', + 'x-ms-request-id': '1da2342b-f137-4bd3-b844-400cf9c59d29', 'x-ms-version': '2011-08-18', 'x-ms-blob-sequence-number': '0', - date: 'Tue, 26 Feb 2013 11:28:45 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:46 GMT' }); return result; }, function (nock) { var result = @@ -1431,13 +1431,13 @@ nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont22/blob11?comp=page', '*') .reply(201, "", { 'transfer-encoding': 'chunked', 'content-md5': 'm+VKVRpGcfXpe9/QtKa0Yg==', - 'last-modified': 'Tue, 26 Feb 2013 11:28:46 GMT', - etag: '"0x8CFE22B933EA6D4"', + 'last-modified': 'Thu, 21 Mar 2013 12:44:48 GMT', + etag: '"0x8CFF44901AF7A03"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '4552156e-b941-4ac0-9a3a-a4f10e8eba85', + 'x-ms-request-id': '67cd34cd-64e4-4b76-8a3f-353fd8f73664', 'x-ms-version': '2011-08-18', 'x-ms-blob-sequence-number': '0', - date: 'Tue, 26 Feb 2013 11:28:45 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:48 GMT' }); return result; }, function (nock) { var result = @@ -1446,13 +1446,13 @@ nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont22/blob11?comp=page', '*') .reply(201, "", { 'transfer-encoding': 'chunked', 'content-md5': 'm+VKVRpGcfXpe9/QtKa0Yg==', - 'last-modified': 'Tue, 26 Feb 2013 11:28:47 GMT', - etag: '"0x8CFE22B93D8EEF7"', + 'last-modified': 'Thu, 21 Mar 2013 12:44:49 GMT', + etag: '"0x8CFF449024BBA03"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '76334b90-e2e5-4afb-af4d-23b225c10ab6', + 'x-ms-request-id': 'fa8d7ebb-fd5c-4446-955e-27e7b601bf6d', 'x-ms-version': '2011-08-18', 'x-ms-blob-sequence-number': '0', - date: 'Tue, 26 Feb 2013 11:28:47 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:49 GMT' }); return result; }, function (nock) { var result = @@ -1460,27 +1460,27 @@ nock('https://ciserversdk.blob.core.windows.net:443') .get('/cont22/blob11') .reply(200, "Hello, World! Hello, World! ", { 'content-length': '1024', 'content-type': 'application/octet-stream', - 'last-modified': 'Tue, 26 Feb 2013 11:28:47 GMT', + 'last-modified': 'Thu, 21 Mar 2013 12:44:49 GMT', 'accept-ranges': 'bytes', - etag: '"0x8CFE22B93D8EEF7"', + etag: '"0x8CFF449024BBA03"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '81929096-d331-4a9f-8359-dff871e39eb5', + 'x-ms-request-id': '36112907-f368-443a-b3b8-bd155e345a7e', 'x-ms-version': '2011-08-18', 'x-ms-lease-status': 'unlocked', 'x-ms-blob-type': 'PageBlob', 'x-ms-blob-sequence-number': '0', - date: 'Tue, 26 Feb 2013 11:28:47 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:49 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/?comp=list') - .reply(200, "cont22https://ciserversdk.blob.core.windows.net/cont22Tue, 26 Feb 2013 11:28:40 GMT\"0x8CFE22B8FD8682B\"", { 'transfer-encoding': 'chunked', + .reply(200, "cont22https://ciserversdk.blob.core.windows.net/cont22Thu, 21 Mar 2013 12:44:42 GMT\"0x8CFF448FE71C435\"", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '8dcf72f3-07ec-46fe-bb84-559eb9dc759c', + 'x-ms-request-id': 'd5007614-3d94-468a-a3bd-c3d291ddb096', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:48 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:49 GMT' }); return result; }, function (nock) { var result = @@ -1488,33 +1488,33 @@ nock('https://ciserversdk.blob.core.windows.net:443') .delete('/cont22?restype=container') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '14147e37-4b60-4d05-a75a-43dd01346a91', + 'x-ms-request-id': '15d97521-6c11-4f74-914b-130721026a79', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:49 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:52 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont23?restype=container') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:28:50 GMT', - etag: '"0x8CFE22B95829EEF"', + 'last-modified': 'Thu, 21 Mar 2013 12:44:53 GMT', + etag: '"0x8CFF44904F92EA8"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '9d9ef296-2b53-48aa-bcab-1df4a75eb863', + 'x-ms-request-id': 'c9752c35-b09a-4c31-9196-0bda1d6a842f', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:50 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:53 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont23/blob12') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:28:52 GMT', - etag: '"0x8CFE22B96E5CDC4"', + 'last-modified': 'Thu, 21 Mar 2013 12:44:54 GMT', + etag: '"0x8CFF4490572C393"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '42e01e90-d0b5-449e-a2aa-437eb313d69b', + 'x-ms-request-id': 'cb3ff09f-2744-4ffb-81a0-b6ac612920f5', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:51 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:53 GMT' }); return result; }, function (nock) { var result = @@ -1523,13 +1523,13 @@ nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont23/blob12?comp=page', '*') .reply(201, "", { 'transfer-encoding': 'chunked', 'content-md5': 'm+VKVRpGcfXpe9/QtKa0Yg==', - 'last-modified': 'Tue, 26 Feb 2013 11:28:53 GMT', - etag: '"0x8CFE22B978211C4"', + 'last-modified': 'Thu, 21 Mar 2013 12:44:55 GMT', + etag: '"0x8CFF449060EDC83"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '09a5b08a-f2d9-4086-a9eb-85fe93dad73a', + 'x-ms-request-id': '5ac9cd1c-67e1-483d-80b1-e969f8399d80', 'x-ms-version': '2011-08-18', 'x-ms-blob-sequence-number': '0', - date: 'Tue, 26 Feb 2013 11:28:53 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:54 GMT' }); return result; }, function (nock) { var result = @@ -1538,13 +1538,13 @@ nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont23/blob12?comp=page', '*') .reply(201, "", { 'transfer-encoding': 'chunked', 'content-md5': 'm+VKVRpGcfXpe9/QtKa0Yg==', - 'last-modified': 'Tue, 26 Feb 2013 11:28:54 GMT', - etag: '"0x8CFE22B98238606"', + 'last-modified': 'Thu, 21 Mar 2013 12:44:56 GMT', + etag: '"0x8CFF44906A5EC63"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '0b63b0eb-75bc-4c77-87b6-13afa09014c4', + 'x-ms-request-id': '303c4e29-6472-436b-81a1-71f94583cf28', 'x-ms-version': '2011-08-18', 'x-ms-blob-sequence-number': '0', - date: 'Tue, 26 Feb 2013 11:28:54 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:56 GMT' }); return result; }, function (nock) { var result = @@ -1552,24 +1552,24 @@ nock('https://ciserversdk.blob.core.windows.net:443') .get('/cont23/blob12?comp=pagelist') .reply(200, "051110485761049087", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', - 'last-modified': 'Tue, 26 Feb 2013 11:28:54 GMT', - etag: '"0x8CFE22B98238606"', + 'last-modified': 'Thu, 21 Mar 2013 12:44:56 GMT', + etag: '"0x8CFF44906A5EC63"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'b534e58b-ba7e-42b4-9c65-55b965a9147b', + 'x-ms-request-id': '3bc54226-b1b3-40bf-9059-73d6a7af9abc', 'x-ms-version': '2011-08-18', 'x-ms-blob-content-length': '1073741824', - date: 'Tue, 26 Feb 2013 11:28:55 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:57 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/?comp=list') - .reply(200, "cont23https://ciserversdk.blob.core.windows.net/cont23Tue, 26 Feb 2013 11:28:50 GMT\"0x8CFE22B95829EEF\"", { 'transfer-encoding': 'chunked', + .reply(200, "cont23https://ciserversdk.blob.core.windows.net/cont23Thu, 21 Mar 2013 12:44:53 GMT\"0x8CFF44904F92EA8\"", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '12b49490-bebd-4d03-ac31-ca754fb73a31', + 'x-ms-request-id': '6957fbda-ca54-460c-a84b-e20725d6d241', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:56 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:58 GMT' }); return result; }, function (nock) { var result = @@ -1577,21 +1577,21 @@ nock('https://ciserversdk.blob.core.windows.net:443') .delete('/cont23?restype=container') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '6c69777c-c20d-482a-b917-05617eeced4d', + 'x-ms-request-id': 'decb76fd-f6fe-45d7-8b16-551a369d3fe0', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:57 GMT' }); + date: 'Thu, 21 Mar 2013 12:44:58 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont24?restype=container') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:28:58 GMT', - etag: '"0x8CFE22B9A9C048C"', + 'last-modified': 'Thu, 21 Mar 2013 12:45:00 GMT', + etag: '"0x8CFF4490941445A"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '0d44e17f-13e5-411f-851d-6cf23f182378', + 'x-ms-request-id': 'f2fd856a-1a98-4436-96a1-2bf0e225e733', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:58 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:00 GMT' }); return result; }, function (nock) { var result = @@ -1600,12 +1600,12 @@ nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont24/blob13', '*') .reply(201, "", { 'transfer-encoding': 'chunked', 'content-md5': 'XUFAKrxLKna5cZ2REBfFkg==', - 'last-modified': 'Tue, 26 Feb 2013 11:28:59 GMT', - etag: '"0x8CFE22B9B4FFB92"', + 'last-modified': 'Thu, 21 Mar 2013 12:45:01 GMT', + etag: '"0x8CFF44909BCF063"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'd9dcd876-6aad-472d-bd11-81d3f7386cb4', + 'x-ms-request-id': 'a0d704c9-476e-4567-82d3-8b238bb6f074', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:28:59 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:01 GMT' }); return result; }, function (nock) { var result = @@ -1613,37 +1613,37 @@ nock('https://ciserversdk.blob.core.windows.net:443') .head('/cont24/blob13') .reply(200, "", { 'content-length': '5', 'content-type': 'text/plain;charset="utf-8"', - 'last-modified': 'Tue, 26 Feb 2013 11:28:59 GMT', - etag: '"0x8CFE22B9B4FFB92"', + 'last-modified': 'Thu, 21 Mar 2013 12:45:01 GMT', + etag: '"0x8CFF44909BCF063"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '262fde7c-db1c-47f9-8922-f55b3e7a157c', + 'x-ms-request-id': '1462e658-70a6-4d10-a21b-58ba6398cbd5', 'x-ms-version': '2011-08-18', 'x-ms-lease-status': 'unlocked', 'x-ms-blob-type': 'BlockBlob', - date: 'Tue, 26 Feb 2013 11:28:59 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:02 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .put('/cont24/blob13', '*') - .reply(412, "ConditionNotMetThe condition specified using HTTP conditional header(s) is not met.\nRequestId:c89f9e92-4331-4a5a-87a1-1b4b026e1ff9\nTime:2013-02-26T11:29:01.8635372Z", { 'content-length': '252', + .reply(412, "ConditionNotMetThe condition specified using HTTP conditional header(s) is not met.\nRequestId:3068ba43-38b0-49a4-aaa2-f0509260fd56\nTime:2013-03-21T12:45:04.1981136Z", { 'content-length': '252', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'c89f9e92-4331-4a5a-87a1-1b4b026e1ff9', + 'x-ms-request-id': '3068ba43-38b0-49a4-aaa2-f0509260fd56', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:01 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:03 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/?comp=list') - .reply(200, "cont24https://ciserversdk.blob.core.windows.net/cont24Tue, 26 Feb 2013 11:28:58 GMT\"0x8CFE22B9A9C048C\"", { 'transfer-encoding': 'chunked', + .reply(200, "cont24https://ciserversdk.blob.core.windows.net/cont24Thu, 21 Mar 2013 12:45:00 GMT\"0x8CFF4490941445A\"", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '9340f477-0974-4cf8-a648-7ee8d3baf537', + 'x-ms-request-id': '4b79c189-0f98-4e95-8018-ae53ed746956', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:01 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:05 GMT' }); return result; }, function (nock) { var result = @@ -1651,21 +1651,21 @@ nock('https://ciserversdk.blob.core.windows.net:443') .delete('/cont24?restype=container') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '9ca260d5-a399-47c9-9515-645ac396eca2', + 'x-ms-request-id': '0f1d1b72-b485-4bb1-84c3-47e7695d6546', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:03 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:05 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont25?restype=container') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:29:04 GMT', - etag: '"0x8CFE22B9E4CA0FE"', + 'last-modified': 'Thu, 21 Mar 2013 12:45:07 GMT', + etag: '"0x8CFF4490D166BBF"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '1e8c8879-b651-4646-b36b-c4728d0d24ac', + 'x-ms-request-id': '0059145d-254b-4e9b-8f1f-09c7b692d599', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:04 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:06 GMT' }); return result; }, function (nock) { var result = @@ -1674,12 +1674,12 @@ nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont25/blob14%20a', '*') .reply(201, "", { 'transfer-encoding': 'chunked', 'content-md5': 'sQqNsWTgdUEFt6mb5y4/5Q==', - 'last-modified': 'Tue, 26 Feb 2013 11:29:06 GMT', - etag: '"0x8CFE22B9EFB414D"', + 'last-modified': 'Thu, 21 Mar 2013 12:45:08 GMT', + etag: '"0x8CFF4490DBFDB03"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '8f431c96-f326-49b1-93df-6d1af542d56b', + 'x-ms-request-id': 'c281bfdb-c6b8-4806-bf4a-049247a98ed5', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:05 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:08 GMT' }); return result; }, function (nock) { var result = @@ -1687,26 +1687,26 @@ nock('https://ciserversdk.blob.core.windows.net:443') .get('/cont25/blob14%20a') .reply(200, "Hello World", { 'content-length': '11', 'content-type': 'text/plain;charset="utf-8"', - 'last-modified': 'Tue, 26 Feb 2013 11:29:06 GMT', + 'last-modified': 'Thu, 21 Mar 2013 12:45:08 GMT', 'accept-ranges': 'bytes', - etag: '"0x8CFE22B9EFB414D"', + etag: '"0x8CFF4490DBFDB03"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '9ee4189b-887c-457c-a356-eaab9515d05b', + 'x-ms-request-id': 'f1ab8c41-2678-4fec-80d8-c4355815146e', 'x-ms-version': '2011-08-18', 'x-ms-lease-status': 'unlocked', 'x-ms-blob-type': 'BlockBlob', - date: 'Tue, 26 Feb 2013 11:29:06 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:10 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/?comp=list') - .reply(200, "cont25https://ciserversdk.blob.core.windows.net/cont25Tue, 26 Feb 2013 11:29:04 GMT\"0x8CFE22B9E4CA0FE\"", { 'transfer-encoding': 'chunked', + .reply(200, "cont25https://ciserversdk.blob.core.windows.net/cont25Thu, 21 Mar 2013 12:45:07 GMT\"0x8CFF4490D166BBF\"", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '23619775-b2c8-4406-bd09-88adf82afdf9', + 'x-ms-request-id': '6ddff1be-6dc6-4b26-bc33-4ed60dad2873', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:08 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:10 GMT' }); return result; }, function (nock) { var result = @@ -1714,21 +1714,21 @@ nock('https://ciserversdk.blob.core.windows.net:443') .delete('/cont25?restype=container') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'd340f635-e3ca-4e07-8f70-415bbf44683a', + 'x-ms-request-id': 'd3eb8ed9-7ee0-4faa-b5d0-28560e6b958f', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:09 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:10 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont26?restype=container') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:29:10 GMT', - etag: '"0x8CFE22BA19A385A"', + 'last-modified': 'Thu, 21 Mar 2013 12:45:12 GMT', + etag: '"0x8CFF44910765557"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'e016402f-944c-41cf-ac22-f7dd9f302023', + 'x-ms-request-id': 'fe470917-e768-42ce-bbfd-fddd5e1269fc', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:10 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:12 GMT' }); return result; }, function (nock) { var result = @@ -1737,12 +1737,12 @@ nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont26/blob15', '*') .reply(201, "", { 'transfer-encoding': 'chunked', 'content-md5': 'ZajifYh5KDgxtmS9i38K1A==', - 'last-modified': 'Tue, 26 Feb 2013 11:29:11 GMT', - etag: '"0x8CFE22BA20C65F6"', + 'last-modified': 'Thu, 21 Mar 2013 12:45:14 GMT', + etag: '"0x8CFF449112B4093"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'c25897f8-c8c4-4188-8f68-2c85de38a65c', + 'x-ms-request-id': '4d9b56b1-c526-4ac0-be3d-7f55fd988080', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:10 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:13 GMT' }); return result; }, function (nock) { var result = @@ -1751,26 +1751,26 @@ nock('https://ciserversdk.blob.core.windows.net:443') .reply(206, "ll", { 'content-length': '2', 'content-type': 'text/plain;charset="utf-8"', 'content-range': 'bytes 2-3/13', - 'last-modified': 'Tue, 26 Feb 2013 11:29:11 GMT', + 'last-modified': 'Thu, 21 Mar 2013 12:45:14 GMT', 'accept-ranges': 'bytes', - etag: '"0x8CFE22BA20C65F6"', + etag: '"0x8CFF449112B4093"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '926f6a05-caa9-4b05-9e93-297c094650c3', + 'x-ms-request-id': '68ff5460-3cbe-4941-a9fd-f2ff83e5d7f5', 'x-ms-version': '2011-08-18', 'x-ms-lease-status': 'unlocked', 'x-ms-blob-type': 'BlockBlob', - date: 'Tue, 26 Feb 2013 11:29:11 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:15 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/?comp=list') - .reply(200, "cont26https://ciserversdk.blob.core.windows.net/cont26Tue, 26 Feb 2013 11:29:10 GMT\"0x8CFE22BA19A385A\"", { 'transfer-encoding': 'chunked', + .reply(200, "cont26https://ciserversdk.blob.core.windows.net/cont26Thu, 21 Mar 2013 12:45:12 GMT\"0x8CFF44910765557\"", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '3850ec3b-95cd-4c10-b0ae-c366eaa2e13a', + 'x-ms-request-id': 'c5f9362f-6a4e-44d5-9294-6ea8168faa5b', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:12 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:15 GMT' }); return result; }, function (nock) { var result = @@ -1778,21 +1778,21 @@ nock('https://ciserversdk.blob.core.windows.net:443') .delete('/cont26?restype=container') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '39fea1b1-d78e-4eab-8163-ab989d6f9358', + 'x-ms-request-id': '5db62dc4-f177-4714-8c0d-df3496a36e5f', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:14 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:17 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont27?restype=container') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:29:15 GMT', - etag: '"0x8CFE22BA4A03B8A"', + 'last-modified': 'Thu, 21 Mar 2013 12:45:17 GMT', + etag: '"0x8CFF449135A4575"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '6dc64709-5537-4761-a522-96ce8df256b5', + 'x-ms-request-id': '5c9dfa05-5440-4a71-b477-00e0061f23e3', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:15 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:16 GMT' }); return result; }, function (nock) { var result = @@ -1801,12 +1801,12 @@ nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont27/blob16', '*') .reply(201, "", { 'transfer-encoding': 'chunked', 'content-md5': 'ZajifYh5KDgxtmS9i38K1A==', - 'last-modified': 'Tue, 26 Feb 2013 11:29:16 GMT', - etag: '"0x8CFE22BA530EC0E"', + 'last-modified': 'Thu, 21 Mar 2013 12:45:19 GMT', + etag: '"0x8CFF44914681C13"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '19d34663-ca60-4597-96ce-1a8db29b7f6c', + 'x-ms-request-id': '0a7a1f10-fe5d-461b-a2b0-bde23667ddf4', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:16 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:19 GMT' }); return result; }, function (nock) { var result = @@ -1815,26 +1815,26 @@ nock('https://ciserversdk.blob.core.windows.net:443') .reply(206, "llo, World!", { 'content-length': '11', 'content-type': 'text/plain;charset="utf-8"', 'content-range': 'bytes 2-12/13', - 'last-modified': 'Tue, 26 Feb 2013 11:29:16 GMT', + 'last-modified': 'Thu, 21 Mar 2013 12:45:19 GMT', 'accept-ranges': 'bytes', - etag: '"0x8CFE22BA530EC0E"', + etag: '"0x8CFF44914681C13"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '91bdcf96-adaa-4545-a6d1-ba1c1956c23a', + 'x-ms-request-id': 'e261f434-7531-48ff-b26c-be3dc5d3b456', 'x-ms-version': '2011-08-18', 'x-ms-lease-status': 'unlocked', 'x-ms-blob-type': 'BlockBlob', - date: 'Tue, 26 Feb 2013 11:29:16 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:20 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/?comp=list') - .reply(200, "cont27https://ciserversdk.blob.core.windows.net/cont27Tue, 26 Feb 2013 11:29:15 GMT\"0x8CFE22BA4A03B8A\"", { 'transfer-encoding': 'chunked', + .reply(200, "cont27https://ciserversdk.blob.core.windows.net/cont27Thu, 21 Mar 2013 12:45:17 GMT\"0x8CFF449135A4575\"", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'a1e1c008-44e5-48a2-bd9c-e4db9e86d038', + 'x-ms-request-id': '595ce615-704d-4772-87f9-00dd9f0d3d0d', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:18 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:21 GMT' }); return result; }, function (nock) { var result = @@ -1842,21 +1842,21 @@ nock('https://ciserversdk.blob.core.windows.net:443') .delete('/cont27?restype=container') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '8702115c-dffb-4db0-b45c-09268cfe372c', + 'x-ms-request-id': 'b39edb1f-8131-4e77-a861-cd448159d868', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:18 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:21 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont28?restype=container') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:29:21 GMT', - etag: '"0x8CFE22BA7DAB155"', + 'last-modified': 'Thu, 21 Mar 2013 12:45:25 GMT', + etag: '"0x8CFF44917B891F3"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '01a6ce56-6aa7-42c7-9de5-34b626da241d', + 'x-ms-request-id': 'e0ac38cb-7997-478d-8df0-7b08e6e47968', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:20 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:25 GMT' }); return result; }, function (nock) { var result = @@ -1865,12 +1865,12 @@ nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont28/blob17', '*') .reply(201, "", { 'transfer-encoding': 'chunked', 'content-md5': '7Qdih1MuhjZehB6Sv8UNjA==', - 'last-modified': 'Tue, 26 Feb 2013 11:29:21 GMT', - etag: '"0x8CFE22BA860E421"', + 'last-modified': 'Thu, 21 Mar 2013 12:45:25 GMT', + etag: '"0x8CFF44917DA5F73"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '539d3262-ad4d-4ab7-892f-dd7b0717d179', + 'x-ms-request-id': 'f7c91a60-c4eb-4e91-9a78-7fda5f070e79', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:21 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:25 GMT' }); return result; }, function (nock) { var result = @@ -1879,26 +1879,26 @@ nock('https://ciserversdk.blob.core.windows.net:443') .reply(206, "llo World!", { 'content-length': '10', 'content-type': 'image/bmp', 'content-range': 'bytes 2-11/12', - 'last-modified': 'Tue, 26 Feb 2013 11:29:21 GMT', + 'last-modified': 'Thu, 21 Mar 2013 12:45:25 GMT', 'accept-ranges': 'bytes', - etag: '"0x8CFE22BA860E421"', + etag: '"0x8CFF44917DA5F73"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'e5a4ec21-81d1-40e3-acf6-8609e816f222', + 'x-ms-request-id': 'cfb28f52-005b-4865-81c2-2271a3608557', 'x-ms-version': '2011-08-18', 'x-ms-lease-status': 'unlocked', 'x-ms-blob-type': 'BlockBlob', - date: 'Tue, 26 Feb 2013 11:29:22 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:26 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/?comp=list') - .reply(200, "cont28https://ciserversdk.blob.core.windows.net/cont28Tue, 26 Feb 2013 11:29:21 GMT\"0x8CFE22BA7DAB155\"", { 'transfer-encoding': 'chunked', + .reply(200, "cont28https://ciserversdk.blob.core.windows.net/cont28Thu, 21 Mar 2013 12:45:25 GMT\"0x8CFF44917B891F3\"", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '0a61911f-531c-487b-84ff-108d7fc6d291', + 'x-ms-request-id': '343c8166-fb02-402b-95c5-f97565228f5e', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:23 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:27 GMT' }); return result; }, function (nock) { var result = @@ -1906,21 +1906,21 @@ nock('https://ciserversdk.blob.core.windows.net:443') .delete('/cont28?restype=container') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '8e603f23-c7eb-44db-977c-dfd850a51a18', + 'x-ms-request-id': '6a5c0e10-2a56-4b0f-9dd1-d41eb03f7dfb', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:24 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:28 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont29?restype=container') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:29:26 GMT', - etag: '"0x8CFE22BAADBB33D"', + 'last-modified': 'Thu, 21 Mar 2013 12:45:29 GMT', + etag: '"0x8CFF4491A3E6535"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'a739f5dc-ebfa-404b-ba97-217f4d927a95', + 'x-ms-request-id': '878e639c-6604-43d8-b7a3-2234343a49e3', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:25 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:29 GMT' }); return result; }, function (nock) { var result = @@ -1929,12 +1929,12 @@ nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont29/blob18', '*') .reply(201, "", { 'transfer-encoding': 'chunked', 'content-md5': '7Qdih1MuhjZehB6Sv8UNjA==', - 'last-modified': 'Tue, 26 Feb 2013 11:29:27 GMT', - etag: '"0x8CFE22BAB70D042"', + 'last-modified': 'Thu, 21 Mar 2013 12:45:30 GMT', + etag: '"0x8CFF4491B2C97B3"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'd540a7b1-70f6-47bf-984c-391358e70b43', + 'x-ms-request-id': 'aed67372-1684-479b-963c-bff17f54bd2c', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:25 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:30 GMT' }); return result; }, function (nock) { var result = @@ -1943,26 +1943,26 @@ nock('https://ciserversdk.blob.core.windows.net:443') .reply(206, "llo World!", { 'content-length': '10', 'content-type': 'application/octet-stream', 'content-range': 'bytes 2-11/12', - 'last-modified': 'Tue, 26 Feb 2013 11:29:27 GMT', + 'last-modified': 'Thu, 21 Mar 2013 12:45:30 GMT', 'accept-ranges': 'bytes', - etag: '"0x8CFE22BAB70D042"', + etag: '"0x8CFF4491B2C97B3"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'c3f46028-b6f6-4ebb-ae24-aba56c196208', + 'x-ms-request-id': '691487a4-757f-45e5-a1d1-141d127f9616', 'x-ms-version': '2011-08-18', 'x-ms-lease-status': 'unlocked', 'x-ms-blob-type': 'BlockBlob', - date: 'Tue, 26 Feb 2013 11:29:27 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:32 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/?comp=list') - .reply(200, "cont29https://ciserversdk.blob.core.windows.net/cont29Tue, 26 Feb 2013 11:29:26 GMT\"0x8CFE22BAADBB33D\"", { 'transfer-encoding': 'chunked', + .reply(200, "cont29https://ciserversdk.blob.core.windows.net/cont29Thu, 21 Mar 2013 12:45:29 GMT\"0x8CFF4491A3E6535\"", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '715f4e1c-1d22-4a2d-a72a-b6ee2f24b218', + 'x-ms-request-id': '1f2dcdd8-a3e8-47c1-817e-cb2d8e92e992', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:29 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:32 GMT' }); return result; }, function (nock) { var result = @@ -1970,9 +1970,9 @@ nock('https://ciserversdk.blob.core.windows.net:443') .delete('/cont29?restype=container') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'b9d83bc7-a2ff-4d05-8332-72535cd9ecd8', + 'x-ms-request-id': '14aa7054-5e6b-4acd-8f78-176a91773122', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:29 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:31 GMT' }); return result; }], [function (nock) { var result = @@ -1981,21 +1981,21 @@ nock('https://ciserversdk.blob.core.windows.net:443') .reply(200, "", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'c05de76e-a8ef-4102-b044-6f70ae52e1a8', + 'x-ms-request-id': '210d950f-d824-47a3-b3c0-201b9ecbb88f', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:30 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:35 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont30?restype=container') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:29:32 GMT', - etag: '"0x8CFE22BAECEEE39"', + 'last-modified': 'Thu, 21 Mar 2013 12:45:36 GMT', + etag: '"0x8CFF4491E7C61A8"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '6eee4a4c-bdef-464d-bf1d-9af05f05613e', + 'x-ms-request-id': '85ada3f0-1b96-4549-9cdd-d322696dd134', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:32 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:36 GMT' }); return result; }, function (nock) { var result = @@ -2004,12 +2004,12 @@ nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont30/blobs/blob19', '*') .reply(201, "", { 'transfer-encoding': 'chunked', 'content-md5': '7Qdih1MuhjZehB6Sv8UNjA==', - 'last-modified': 'Tue, 26 Feb 2013 11:29:33 GMT', - etag: '"0x8CFE22BAF5EC602"', + 'last-modified': 'Thu, 21 Mar 2013 12:45:37 GMT', + etag: '"0x8CFF4491EF49C33"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '50adb21d-178a-4564-b1df-604ad89c7032', + 'x-ms-request-id': '06d3399c-1d56-4364-b534-62d307d00133', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:33 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:37 GMT' }); return result; }, function (nock) { var result = @@ -2017,25 +2017,25 @@ nock('https://ciserversdk.blob.core.windows.net:443') .head('/cont30/blobs/blob19') .reply(200, "", { 'content-length': '12', 'content-type': 'text/plain;charset="utf-8"', - 'last-modified': 'Tue, 26 Feb 2013 11:29:33 GMT', - etag: '"0x8CFE22BAF5EC602"', + 'last-modified': 'Thu, 21 Mar 2013 12:45:37 GMT', + etag: '"0x8CFF4491EF49C33"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '8e9fc6c0-4258-43bf-ab6c-42c3bd62d900', + 'x-ms-request-id': 'fbefe95a-8cbd-47dc-abcc-dd4d8bdfe8f6', 'x-ms-version': '2011-08-18', 'x-ms-lease-status': 'unlocked', 'x-ms-blob-type': 'BlockBlob', - date: 'Tue, 26 Feb 2013 11:29:33 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:38 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/?comp=list') - .reply(200, "cont30https://ciserversdk.blob.core.windows.net/cont30Tue, 26 Feb 2013 11:29:32 GMT\"0x8CFE22BAECEEE39\"", { 'transfer-encoding': 'chunked', + .reply(200, "cont30https://ciserversdk.blob.core.windows.net/cont30Thu, 21 Mar 2013 12:45:36 GMT\"0x8CFF4491E7C61A8\"", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '61da6906-17f0-4355-93a1-53a6ebc6fe02', + 'x-ms-request-id': '5605629c-3899-4bb8-aa75-afdbc03bec80', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:35 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:39 GMT' }); return result; }, function (nock) { var result = @@ -2043,21 +2043,21 @@ nock('https://ciserversdk.blob.core.windows.net:443') .delete('/cont30?restype=container') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'e1468313-1b7b-4259-99d6-cb6f1ce323e4', + 'x-ms-request-id': 'ed4448f8-c034-4baa-8598-3dbe9b5e515b', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:35 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:39 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont31?restype=container') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:29:37 GMT', - etag: '"0x8CFE22BB1F80FD6"', + 'last-modified': 'Thu, 21 Mar 2013 12:45:42 GMT', + etag: '"0x8CFF449220E2E73"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '1ddb8f59-0548-4925-a7ce-20ae864bbca8', + 'x-ms-request-id': 'bcd19f2c-fd9e-46be-941f-7c11f5a2ece4', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:37 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:41 GMT' }); return result; }, function (nock) { var result = @@ -2067,9 +2067,9 @@ nock('https://ciserversdk.blob.core.windows.net:443') .reply(201, "", { 'transfer-encoding': 'chunked', 'content-md5': '+v4bYMJBB8zY9FYiE+RISQ==', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '32cd6bd1-19d0-437b-b518-51a9a343871b', + 'x-ms-request-id': '4ab851e2-af0a-4ed9-b4f6-ce3f3ab5f66a', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:38 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:41 GMT' }); return result; }, function (nock) { var result = @@ -2079,9 +2079,9 @@ nock('https://ciserversdk.blob.core.windows.net:443') .reply(201, "", { 'transfer-encoding': 'chunked', 'content-md5': '0ew/46o7Dr2zfyv3zd8n3A==', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '01085ed2-f131-4689-95a0-bd5d12afc6d2', + 'x-ms-request-id': 'f405a4c3-450d-4e8c-a360-2f1d359af4dc', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:40 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:44 GMT' }); return result; }, function (nock) { var result = @@ -2090,12 +2090,12 @@ nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont31/blob20?comp=blocklist', '*') .reply(201, "", { 'transfer-encoding': 'chunked', 'content-md5': 'KcspZeGLGUJmthMz3gpEnA==', - 'last-modified': 'Tue, 26 Feb 2013 11:29:41 GMT', - etag: '"0x8CFE22BB4142F8D"', + 'last-modified': 'Thu, 21 Mar 2013 12:45:44 GMT', + etag: '"0x8CFF449239B40E3"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '16851777-f194-4b32-9892-fe57ab4ef19f', + 'x-ms-request-id': '7e527030-187d-47ac-8147-6dd2a91f25cd', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:40 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:44 GMT' }); return result; }, function (nock) { var result = @@ -2103,24 +2103,24 @@ nock('https://ciserversdk.blob.core.windows.net:443') .get('/cont31/blob20?comp=blocklist&blocklisttype=all') .reply(200, "aWQx3aWQy3", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', - 'last-modified': 'Tue, 26 Feb 2013 11:29:41 GMT', - etag: '"0x8CFE22BB4142F8D"', + 'last-modified': 'Thu, 21 Mar 2013 12:45:44 GMT', + etag: '"0x8CFF449239B40E3"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '59a35788-85f7-46d5-85d5-d799a8f838dc', + 'x-ms-request-id': 'b9f49722-81cf-4f27-b42b-1498930fcf31', 'x-ms-version': '2011-08-18', 'x-ms-blob-content-length': '6', - date: 'Tue, 26 Feb 2013 11:29:42 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:45 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/?comp=list') - .reply(200, "cont31https://ciserversdk.blob.core.windows.net/cont31Tue, 26 Feb 2013 11:29:37 GMT\"0x8CFE22BB1F80FD6\"", { 'transfer-encoding': 'chunked', + .reply(200, "cont31https://ciserversdk.blob.core.windows.net/cont31Thu, 21 Mar 2013 12:45:42 GMT\"0x8CFF449220E2E73\"", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'fb9cdc58-9cde-45a9-b7e9-3608ebafbdd6', + 'x-ms-request-id': '714652a1-5af5-4822-af87-a2553de80b74', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:44 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:47 GMT' }); return result; }, function (nock) { var result = @@ -2128,9 +2128,9 @@ nock('https://ciserversdk.blob.core.windows.net:443') .delete('/cont31?restype=container') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '1316a178-1185-41bd-ab9f-9e736f302ca9', + 'x-ms-request-id': 'e3d3fe3d-7ede-4bfe-b065-13093f144b02', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:44 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:48 GMT' }); return result; }], [function (nock) { var result = @@ -2139,9 +2139,9 @@ nock('https://ciserversdk.blob.core.windows.net:443') .reply(200, "", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '3f4b2cb0-e94a-492d-8acf-24d1dd10c142', + 'x-ms-request-id': 'e2faa86e-c7cd-450d-9b69-d19dce2d15a6', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:46 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:49 GMT' }); return result; }], [function (nock) { var result = @@ -2150,9 +2150,9 @@ nock('https://ciserversdk.blob.core.windows.net:443') .reply(200, "", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'c437258a-1b31-4921-8668-77d1dd060910', + 'x-ms-request-id': '0f41160c-f55b-408a-af5f-ca90d29b56dd', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:47 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:50 GMT' }); return result; }], [function (nock) { var result = @@ -2161,21 +2161,21 @@ nock('https://ciserversdk.blob.core.windows.net:443') .reply(200, "", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '09e0c94a-ac41-4ea0-abc1-3d5c73659f07', + 'x-ms-request-id': '626ff149-144b-4687-b133-4f3dae0b8e6d', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:47 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:51 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont33?restype=container') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:29:48 GMT', - etag: '"0x8CFE22BB87964B6"', + 'last-modified': 'Thu, 21 Mar 2013 12:45:53 GMT', + etag: '"0x8CFF4492875EDC1"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'cf9a5eb8-b00b-4c95-bcd3-b1eb2558d4a1', + 'x-ms-request-id': 'bcf22ad5-e4c8-4c63-929a-00ff0d8f289a', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:48 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:52 GMT' }); return result; }, function (nock) { var result = @@ -2185,20 +2185,20 @@ nock('https://ciserversdk.blob.core.windows.net:443') .reply(201, "", { 'transfer-encoding': 'chunked', 'content-md5': '+v4bYMJBB8zY9FYiE+RISQ==', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'ad1aa5e8-9122-4cde-ba7b-1aa024286b89', + 'x-ms-request-id': 'd9ee81de-1e44-49ab-8464-4767a7cf6783', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:50 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:53 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/?comp=list') - .reply(200, "cont33https://ciserversdk.blob.core.windows.net/cont33Tue, 26 Feb 2013 11:29:48 GMT\"0x8CFE22BB87964B6\"", { 'transfer-encoding': 'chunked', + .reply(200, "cont33https://ciserversdk.blob.core.windows.net/cont33Thu, 21 Mar 2013 12:45:53 GMT\"0x8CFF4492875EDC1\"", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'cd868e39-d50e-4c30-baef-5d071697dd27', + 'x-ms-request-id': 'fc8b6979-d89a-4b98-89c3-2fee8ccc52a8', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:51 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:54 GMT' }); return result; }, function (nock) { var result = @@ -2206,21 +2206,21 @@ nock('https://ciserversdk.blob.core.windows.net:443') .delete('/cont33?restype=container') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'deb4ed6a-70c6-4cb6-ab00-ff4272542609', + 'x-ms-request-id': '3b73e698-0a20-4a6c-a9ef-83e1d551c568', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:51 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:55 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont34?restype=container') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:29:54 GMT', - etag: '"0x8CFE22BBB9347C7"', + 'last-modified': 'Thu, 21 Mar 2013 12:45:57 GMT', + etag: '"0x8CFF4492AF95305"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '4324b33d-18ab-47db-bd8a-1ce291b2bfde', + 'x-ms-request-id': '6a392788-a131-4b4b-a4b8-abc76f820a6b', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:53 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:57 GMT' }); return result; }, function (nock) { var result = @@ -2229,12 +2229,12 @@ nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont34/blob23', '*') .reply(201, "", { 'transfer-encoding': 'chunked', 'content-md5': 'sQqNsWTgdUEFt6mb5y4/5Q==', - 'last-modified': 'Tue, 26 Feb 2013 11:29:54 GMT', - etag: '"0x8CFE22BBBF30150"', + 'last-modified': 'Thu, 21 Mar 2013 12:45:57 GMT', + etag: '"0x8CFF4492B0153B3"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '88e088bd-7c93-421f-9f70-380643f5a315', + 'x-ms-request-id': '0cda08a1-a043-4678-8c1f-44ed59d85a9a', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:54 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:57 GMT' }); return result; }, function (nock) { var result = @@ -2242,26 +2242,26 @@ nock('https://ciserversdk.blob.core.windows.net:443') .get('/cont34/blob23') .reply(200, "Hello World", { 'content-length': '11', 'content-type': 'text/plain;charset="utf-8"', - 'last-modified': 'Tue, 26 Feb 2013 11:29:54 GMT', + 'last-modified': 'Thu, 21 Mar 2013 12:45:57 GMT', 'accept-ranges': 'bytes', - etag: '"0x8CFE22BBBF30150"', + etag: '"0x8CFF4492B0153B3"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '25eb9514-86bd-40f1-9c3d-7e855f567fa4', + 'x-ms-request-id': '415613d1-70e7-4f28-afc8-d6d41875405b', 'x-ms-version': '2011-08-18', 'x-ms-lease-status': 'unlocked', 'x-ms-blob-type': 'BlockBlob', - date: 'Tue, 26 Feb 2013 11:29:55 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:58 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/?comp=list') - .reply(200, "cont34https://ciserversdk.blob.core.windows.net/cont34Tue, 26 Feb 2013 11:29:54 GMT\"0x8CFE22BBB9347C7\"", { 'transfer-encoding': 'chunked', + .reply(200, "cont34https://ciserversdk.blob.core.windows.net/cont34Thu, 21 Mar 2013 12:45:57 GMT\"0x8CFF4492AF95305\"", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '303b2b45-2840-455f-9312-11b107038d11', + 'x-ms-request-id': '86fef7aa-e760-4861-8277-fdbd03b1a610', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:55 GMT' }); + date: 'Thu, 21 Mar 2013 12:45:57 GMT' }); return result; }, function (nock) { var result = @@ -2269,21 +2269,21 @@ nock('https://ciserversdk.blob.core.windows.net:443') .delete('/cont34?restype=container') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'b2d169bd-547d-4dca-8132-a7c29995f8ab', + 'x-ms-request-id': '6b10a366-fdef-44c5-901b-3812a56fc652', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:57 GMT' }); + date: 'Thu, 21 Mar 2013 12:46:00 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont35?restype=container') .reply(201, "", { 'transfer-encoding': 'chunked', - 'last-modified': 'Tue, 26 Feb 2013 11:29:59 GMT', - etag: '"0x8CFE22BBE99729E"', + 'last-modified': 'Thu, 21 Mar 2013 12:46:02 GMT', + etag: '"0x8CFF4492DE726E5"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'ebe2cdce-9174-4376-8a6e-a2b61ada7c6b', + 'x-ms-request-id': 'f15cf8f3-624d-4a03-8e54-0f61536057e3', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:58 GMT' }); + date: 'Thu, 21 Mar 2013 12:46:02 GMT' }); return result; }, function (nock) { var result = @@ -2292,12 +2292,12 @@ nock('https://ciserversdk.blob.core.windows.net:443') .put('/cont35/blob24', '*') .reply(201, "", { 'transfer-encoding': 'chunked', 'content-md5': 'sQqNsWTgdUEFt6mb5y4/5Q==', - 'last-modified': 'Tue, 26 Feb 2013 11:29:59 GMT', - etag: '"0x8CFE22BBF0C8AA0"', + 'last-modified': 'Thu, 21 Mar 2013 12:46:02 GMT', + etag: '"0x8CFF4492E28AB63"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'cc5d3fe5-0bf0-41ef-9c7d-12fb9a94fca4', + 'x-ms-request-id': '418cfe3e-15d9-4d6a-9778-9357b503fc39', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:29:58 GMT' }); + date: 'Thu, 21 Mar 2013 12:46:02 GMT' }); return result; }, function (nock) { var result = @@ -2305,15 +2305,15 @@ nock('https://ciserversdk.blob.core.windows.net:443') .get('/cont35/blob24') .reply(200, "Hello World", { 'content-length': '11', 'content-type': 'text', - 'last-modified': 'Tue, 26 Feb 2013 11:29:59 GMT', + 'last-modified': 'Thu, 21 Mar 2013 12:46:02 GMT', 'accept-ranges': 'bytes', - etag: '"0x8CFE22BBF0C8AA0"', + etag: '"0x8CFF4492E28AB63"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'a167ed3b-c131-4258-9441-952ddd89a2c1', + 'x-ms-request-id': '987e7995-ead2-4885-abfe-1d33a070c4af', 'x-ms-version': '2011-08-18', 'x-ms-lease-status': 'unlocked', 'x-ms-blob-type': 'BlockBlob', - date: 'Tue, 26 Feb 2013 11:30:00 GMT' }); + date: 'Thu, 21 Mar 2013 12:46:03 GMT' }); return result; }, function (nock) { var result = @@ -2321,25 +2321,25 @@ nock('https://ciserversdk.blob.core.windows.net:443') .head('/cont35/blob24') .reply(200, "", { 'content-length': '11', 'content-type': 'text', - 'last-modified': 'Tue, 26 Feb 2013 11:29:59 GMT', - etag: '"0x8CFE22BBF0C8AA0"', + 'last-modified': 'Thu, 21 Mar 2013 12:46:02 GMT', + etag: '"0x8CFF4492E28AB63"', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '80297d97-3409-434d-a58e-5fa2d128cfe1', + 'x-ms-request-id': '8dbadb83-f1fa-4eba-b8c6-057d3a6f7c50', 'x-ms-version': '2011-08-18', 'x-ms-lease-status': 'unlocked', 'x-ms-blob-type': 'BlockBlob', - date: 'Tue, 26 Feb 2013 11:30:01 GMT' }); + date: 'Thu, 21 Mar 2013 12:46:04 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.blob.core.windows.net:443') .get('/?comp=list') - .reply(200, "cont35https://ciserversdk.blob.core.windows.net/cont35Tue, 26 Feb 2013 11:29:59 GMT\"0x8CFE22BBE99729E\"", { 'transfer-encoding': 'chunked', + .reply(200, "cont35https://ciserversdk.blob.core.windows.net/cont35Thu, 21 Mar 2013 12:46:02 GMT\"0x8CFF4492DE726E5\"", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '698a5c61-0b18-486a-bd14-6ffce1d9642a', + 'x-ms-request-id': 'de492f65-8cf2-4057-97ac-b44c0d954511', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:30:01 GMT' }); + date: 'Thu, 21 Mar 2013 12:46:05 GMT' }); return result; }, function (nock) { var result = @@ -2347,9 +2347,9 @@ nock('https://ciserversdk.blob.core.windows.net:443') .delete('/cont35?restype=container') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '0575cf7e-a4c0-46e3-b496-4b5e51afb6c4', + 'x-ms-request-id': '6d54cc2c-129b-4f86-bea3-67f29ecc817c', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:30:03 GMT' }); + date: 'Thu, 21 Mar 2013 12:46:06 GMT' }); return result; }], [function (nock) { var result = @@ -2358,9 +2358,9 @@ nock('https://ciserversdk.blob.core.windows.net:443') .reply(200, "", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '6a11b651-dbf9-43c3-900f-f061b81b51d1', + 'x-ms-request-id': 'c44a429c-172f-4497-a778-3adf62e61960', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:30:04 GMT' }); + date: 'Thu, 21 Mar 2013 12:46:07 GMT' }); return result; }], [function (nock) { var result = @@ -2369,7 +2369,7 @@ nock('https://ciserversdk.blob.core.windows.net:443') .reply(200, "", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'ba84ab3d-2dbe-42d7-8629-c0afc8b20e63', + 'x-ms-request-id': 'e1997f75-3a12-4706-812e-c047224e1979', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 11:30:05 GMT' }); + date: 'Thu, 21 Mar 2013 12:46:07 GMT' }); return result; }]]; \ No newline at end of file diff --git a/test/recordings/tabledatatype-tests.nock.js b/test/recordings/tabledatatype-tests.nock.js new file mode 100644 index 0000000000..b3e5415338 --- /dev/null +++ b/test/recordings/tabledatatype-tests.nock.js @@ -0,0 +1,386 @@ +// This file has been autogenerated. + +exports.scopes = [[function (nock) { +var result = +nock('https://ciserversdk.table.core.windows.net:443') + .filteringRequestBody(function (path) { return '*';}) +.post('/Tables', '*') + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tabledatatype1')\r\n \r\n 2013-03-21T13:05:46Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tabledatatype1\r\n \r\n \r\n", { 'cache-control': 'no-cache', + 'transfer-encoding': 'chunked', + 'content-type': 'application/atom+xml;charset=utf-8', + location: 'https://ciserversdk.table.core.windows.net/Tables(\'tabledatatype1\')', + server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', + 'x-ms-request-id': '5cad24a7-da4b-4c5b-a0ed-73e06edac93d', + 'x-ms-version': '2011-08-18', + date: 'Thu, 21 Mar 2013 13:05:46 GMT' }); + return result; }, +function (nock) { +var result = +nock('https://ciserversdk.table.core.windows.net:443') + .filteringRequestBody(function (path) { return '*';}) +.post('/tabledatatype1', '*') + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/tabledatatype1(PartitionKey='1',RowKey='2')\r\n \r\n 2013-03-21T13:05:50Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1\r\n 2\r\n 2013-03-21T13:05:50.2184583Z\r\n 200\r\n 2.5\r\n false\r\n true\r\n hi there\r\n 2012-11-10T03:04:05.2Z\r\n \r\n \r\n", { 'cache-control': 'no-cache', + 'transfer-encoding': 'chunked', + 'content-type': 'application/atom+xml;charset=utf-8', + etag: 'W/"datetime\'2013-03-21T13%3A05%3A50.2184583Z\'"', + location: 'https://ciserversdk.table.core.windows.net/tabledatatype1(PartitionKey=\'1\',RowKey=\'2\')', + server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', + 'x-ms-request-id': 'dc177bf1-9237-4dc7-8eaf-3bda0de1c646', + 'x-ms-version': '2011-08-18', + date: 'Thu, 21 Mar 2013 13:05:49 GMT' }); + return result; }, +function (nock) { +var result = +nock('https://ciserversdk.table.core.windows.net:443') + .get('/tabledatatype1()?$filter=IntNumberValue%20eq%20200') + .reply(200, "\r\n\r\n tabledatatype1\r\n https://ciserversdk.table.core.windows.net/tabledatatype1\r\n 2013-03-21T13:05:50Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tabledatatype1(PartitionKey='1',RowKey='2')\r\n \r\n 2013-03-21T13:05:50Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1\r\n 2\r\n 2013-03-21T13:05:50.2184583Z\r\n 200\r\n 2.5\r\n false\r\n true\r\n hi there\r\n 2012-11-10T03:04:05.2Z\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + 'transfer-encoding': 'chunked', + 'content-type': 'application/atom+xml;charset=utf-8', + server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', + 'x-ms-request-id': '39cb4648-ae1c-42a4-a218-ad4ff33a8afa', + 'x-ms-version': '2011-08-18', + date: 'Thu, 21 Mar 2013 13:05:49 GMT' }); + return result; }, +function (nock) { +var result = +nock('https://ciserversdk.table.core.windows.net:443') + .get('/Tables') + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T13:05:51Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tabledatatype1')\r\n \r\n 2013-03-21T13:05:51Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tabledatatype1\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + 'transfer-encoding': 'chunked', + 'content-type': 'application/atom+xml;charset=utf-8', + server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', + 'x-ms-request-id': '5a4d684c-955b-484f-b10e-3fc6ed7a4a5b', + 'x-ms-version': '2011-08-18', + date: 'Thu, 21 Mar 2013 13:05:51 GMT' }); + return result; }, +function (nock) { +var result = +nock('https://ciserversdk.table.core.windows.net:443') + .delete('/Tables(%27tabledatatype1%27)') + .reply(204, "", { 'cache-control': 'no-cache', + 'content-length': '0', + server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', + 'x-ms-request-id': '9776bd3a-164b-4e14-afff-704731826524', + 'x-ms-version': '2011-08-18', + date: 'Thu, 21 Mar 2013 13:05:50 GMT' }); + return result; }], +[function (nock) { +var result = +nock('https://ciserversdk.table.core.windows.net:443') + .filteringRequestBody(function (path) { return '*';}) +.post('/Tables', '*') + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tabledatatype2')\r\n \r\n 2013-03-21T13:05:53Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tabledatatype2\r\n \r\n \r\n", { 'cache-control': 'no-cache', + 'transfer-encoding': 'chunked', + 'content-type': 'application/atom+xml;charset=utf-8', + location: 'https://ciserversdk.table.core.windows.net/Tables(\'tabledatatype2\')', + server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', + 'x-ms-request-id': '2f679bfe-37e8-49e8-be9d-87a47397228b', + 'x-ms-version': '2011-08-18', + date: 'Thu, 21 Mar 2013 13:05:53 GMT' }); + return result; }, +function (nock) { +var result = +nock('https://ciserversdk.table.core.windows.net:443') + .filteringRequestBody(function (path) { return '*';}) +.post('/tabledatatype2', '*') + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/tabledatatype2(PartitionKey='1',RowKey='2')\r\n \r\n 2013-03-21T13:05:55Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1\r\n 2\r\n 2013-03-21T13:05:55.4088984Z\r\n 200\r\n 2.5\r\n false\r\n true\r\n hi there\r\n 2012-11-10T03:04:05.2Z\r\n \r\n \r\n", { 'cache-control': 'no-cache', + 'transfer-encoding': 'chunked', + 'content-type': 'application/atom+xml;charset=utf-8', + etag: 'W/"datetime\'2013-03-21T13%3A05%3A55.4088984Z\'"', + location: 'https://ciserversdk.table.core.windows.net/tabledatatype2(PartitionKey=\'1\',RowKey=\'2\')', + server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', + 'x-ms-request-id': '8fb283e1-67e4-45ba-80b9-a3c6bf2c4999', + 'x-ms-version': '2011-08-18', + date: 'Thu, 21 Mar 2013 13:05:54 GMT' }); + return result; }, +function (nock) { +var result = +nock('https://ciserversdk.table.core.windows.net:443') + .get('/tabledatatype2()?$filter=DoubleNumberValue%20eq%202.5') + .reply(200, "\r\n\r\n tabledatatype2\r\n https://ciserversdk.table.core.windows.net/tabledatatype2\r\n 2013-03-21T13:05:57Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tabledatatype2(PartitionKey='1',RowKey='2')\r\n \r\n 2013-03-21T13:05:57Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1\r\n 2\r\n 2013-03-21T13:05:55.4088984Z\r\n 200\r\n 2.5\r\n false\r\n true\r\n hi there\r\n 2012-11-10T03:04:05.2Z\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + 'transfer-encoding': 'chunked', + 'content-type': 'application/atom+xml;charset=utf-8', + server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', + 'x-ms-request-id': '6d41e8b5-4f1e-43bf-bb3d-cebbbdbd4309', + 'x-ms-version': '2011-08-18', + date: 'Thu, 21 Mar 2013 13:05:56 GMT' }); + return result; }, +function (nock) { +var result = +nock('https://ciserversdk.table.core.windows.net:443') + .get('/Tables') + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T13:05:58Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tabledatatype2')\r\n \r\n 2013-03-21T13:05:58Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tabledatatype2\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + 'transfer-encoding': 'chunked', + 'content-type': 'application/atom+xml;charset=utf-8', + server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', + 'x-ms-request-id': 'cd2670f8-19fe-4e65-861a-c995e5ef80af', + 'x-ms-version': '2011-08-18', + date: 'Thu, 21 Mar 2013 13:05:58 GMT' }); + return result; }, +function (nock) { +var result = +nock('https://ciserversdk.table.core.windows.net:443') + .delete('/Tables(%27tabledatatype2%27)') + .reply(204, "", { 'cache-control': 'no-cache', + 'content-length': '0', + server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', + 'x-ms-request-id': '2a4d9da1-6eb3-452f-aee2-b2fc69cd25ba', + 'x-ms-version': '2011-08-18', + date: 'Thu, 21 Mar 2013 13:05:59 GMT' }); + return result; }], +[function (nock) { +var result = +nock('https://ciserversdk.table.core.windows.net:443') + .filteringRequestBody(function (path) { return '*';}) +.post('/Tables', '*') + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tabledatatype3')\r\n \r\n 2013-03-21T13:06:00Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tabledatatype3\r\n \r\n \r\n", { 'cache-control': 'no-cache', + 'transfer-encoding': 'chunked', + 'content-type': 'application/atom+xml;charset=utf-8', + location: 'https://ciserversdk.table.core.windows.net/Tables(\'tabledatatype3\')', + server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', + 'x-ms-request-id': 'dc27cfa6-016b-4dad-b1af-aeda85073537', + 'x-ms-version': '2011-08-18', + date: 'Thu, 21 Mar 2013 13:06:00 GMT' }); + return result; }, +function (nock) { +var result = +nock('https://ciserversdk.table.core.windows.net:443') + .filteringRequestBody(function (path) { return '*';}) +.post('/tabledatatype3', '*') + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/tabledatatype3(PartitionKey='1',RowKey='2')\r\n \r\n 2013-03-21T13:06:01Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1\r\n 2\r\n 2013-03-21T13:06:01.2201645Z\r\n 200\r\n 2.5\r\n false\r\n true\r\n hi there\r\n 2012-11-10T03:04:05.2Z\r\n \r\n \r\n", { 'cache-control': 'no-cache', + 'transfer-encoding': 'chunked', + 'content-type': 'application/atom+xml;charset=utf-8', + etag: 'W/"datetime\'2013-03-21T13%3A06%3A01.2201645Z\'"', + location: 'https://ciserversdk.table.core.windows.net/tabledatatype3(PartitionKey=\'1\',RowKey=\'2\')', + server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', + 'x-ms-request-id': '9688496d-c6aa-4a63-93f1-68227d821a91', + 'x-ms-version': '2011-08-18', + date: 'Thu, 21 Mar 2013 13:06:00 GMT' }); + return result; }, +function (nock) { +var result = +nock('https://ciserversdk.table.core.windows.net:443') + .get('/tabledatatype3()?$filter=FalseBooleanValue%20eq%20false') + .reply(200, "\r\n\r\n tabledatatype3\r\n https://ciserversdk.table.core.windows.net/tabledatatype3\r\n 2013-03-21T13:06:02Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tabledatatype3(PartitionKey='1',RowKey='2')\r\n \r\n 2013-03-21T13:06:02Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1\r\n 2\r\n 2013-03-21T13:06:01.2201645Z\r\n 200\r\n 2.5\r\n false\r\n true\r\n hi there\r\n 2012-11-10T03:04:05.2Z\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + 'transfer-encoding': 'chunked', + 'content-type': 'application/atom+xml;charset=utf-8', + server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', + 'x-ms-request-id': 'ceab92ea-73a3-42e1-94bd-237554e5732c', + 'x-ms-version': '2011-08-18', + date: 'Thu, 21 Mar 2013 13:06:02 GMT' }); + return result; }, +function (nock) { +var result = +nock('https://ciserversdk.table.core.windows.net:443') + .get('/Tables') + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T13:06:03Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tabledatatype3')\r\n \r\n 2013-03-21T13:06:03Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tabledatatype3\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + 'transfer-encoding': 'chunked', + 'content-type': 'application/atom+xml;charset=utf-8', + server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', + 'x-ms-request-id': '2f9260fd-c52a-489e-88b2-5032a3c21022', + 'x-ms-version': '2011-08-18', + date: 'Thu, 21 Mar 2013 13:06:03 GMT' }); + return result; }, +function (nock) { +var result = +nock('https://ciserversdk.table.core.windows.net:443') + .delete('/Tables(%27tabledatatype3%27)') + .reply(204, "", { 'cache-control': 'no-cache', + 'content-length': '0', + server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', + 'x-ms-request-id': '9570aed2-9873-425f-8d1d-df2a8d4d5f10', + 'x-ms-version': '2011-08-18', + date: 'Thu, 21 Mar 2013 13:06:04 GMT' }); + return result; }], +[function (nock) { +var result = +nock('https://ciserversdk.table.core.windows.net:443') + .filteringRequestBody(function (path) { return '*';}) +.post('/Tables', '*') + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tabledatatype4')\r\n \r\n 2013-03-21T13:06:05Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tabledatatype4\r\n \r\n \r\n", { 'cache-control': 'no-cache', + 'transfer-encoding': 'chunked', + 'content-type': 'application/atom+xml;charset=utf-8', + location: 'https://ciserversdk.table.core.windows.net/Tables(\'tabledatatype4\')', + server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', + 'x-ms-request-id': '6e8e9b24-4196-4f8f-8582-70cb38e124cc', + 'x-ms-version': '2011-08-18', + date: 'Thu, 21 Mar 2013 13:06:05 GMT' }); + return result; }, +function (nock) { +var result = +nock('https://ciserversdk.table.core.windows.net:443') + .filteringRequestBody(function (path) { return '*';}) +.post('/tabledatatype4', '*') + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/tabledatatype4(PartitionKey='1',RowKey='2')\r\n \r\n 2013-03-21T13:06:05Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1\r\n 2\r\n 2013-03-21T13:06:05.3288496Z\r\n 200\r\n 2.5\r\n false\r\n true\r\n hi there\r\n 2012-11-10T03:04:05.2Z\r\n \r\n \r\n", { 'cache-control': 'no-cache', + 'transfer-encoding': 'chunked', + 'content-type': 'application/atom+xml;charset=utf-8', + etag: 'W/"datetime\'2013-03-21T13%3A06%3A05.3288496Z\'"', + location: 'https://ciserversdk.table.core.windows.net/tabledatatype4(PartitionKey=\'1\',RowKey=\'2\')', + server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', + 'x-ms-request-id': '487e094f-b78d-446d-a54d-953831576fe2', + 'x-ms-version': '2011-08-18', + date: 'Thu, 21 Mar 2013 13:06:04 GMT' }); + return result; }, +function (nock) { +var result = +nock('https://ciserversdk.table.core.windows.net:443') + .get('/tabledatatype4()?$filter=TrueBooleanValue%20eq%20true') + .reply(200, "\r\n\r\n tabledatatype4\r\n https://ciserversdk.table.core.windows.net/tabledatatype4\r\n 2013-03-21T13:06:07Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tabledatatype4(PartitionKey='1',RowKey='2')\r\n \r\n 2013-03-21T13:06:07Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1\r\n 2\r\n 2013-03-21T13:06:05.3288496Z\r\n 200\r\n 2.5\r\n false\r\n true\r\n hi there\r\n 2012-11-10T03:04:05.2Z\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + 'transfer-encoding': 'chunked', + 'content-type': 'application/atom+xml;charset=utf-8', + server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', + 'x-ms-request-id': '0e9ee765-1b9b-4927-946e-a0f54b04fe97', + 'x-ms-version': '2011-08-18', + date: 'Thu, 21 Mar 2013 13:06:07 GMT' }); + return result; }, +function (nock) { +var result = +nock('https://ciserversdk.table.core.windows.net:443') + .get('/Tables') + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T13:06:09Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tabledatatype4')\r\n \r\n 2013-03-21T13:06:09Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tabledatatype4\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + 'transfer-encoding': 'chunked', + 'content-type': 'application/atom+xml;charset=utf-8', + server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', + 'x-ms-request-id': '139084e8-820d-4f3f-a58d-e24c426af467', + 'x-ms-version': '2011-08-18', + date: 'Thu, 21 Mar 2013 13:06:09 GMT' }); + return result; }, +function (nock) { +var result = +nock('https://ciserversdk.table.core.windows.net:443') + .delete('/Tables(%27tabledatatype4%27)') + .reply(204, "", { 'cache-control': 'no-cache', + 'content-length': '0', + server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', + 'x-ms-request-id': 'a1551c19-c57e-4159-9bc5-95bc0419aa9c', + 'x-ms-version': '2011-08-18', + date: 'Thu, 21 Mar 2013 13:06:09 GMT' }); + return result; }], +[function (nock) { +var result = +nock('https://ciserversdk.table.core.windows.net:443') + .filteringRequestBody(function (path) { return '*';}) +.post('/Tables', '*') + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tabledatatype5')\r\n \r\n 2013-03-21T13:06:11Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tabledatatype5\r\n \r\n \r\n", { 'cache-control': 'no-cache', + 'transfer-encoding': 'chunked', + 'content-type': 'application/atom+xml;charset=utf-8', + location: 'https://ciserversdk.table.core.windows.net/Tables(\'tabledatatype5\')', + server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', + 'x-ms-request-id': '9f756681-fc0c-4c33-8701-e058fd4607e8', + 'x-ms-version': '2011-08-18', + date: 'Thu, 21 Mar 2013 13:06:11 GMT' }); + return result; }, +function (nock) { +var result = +nock('https://ciserversdk.table.core.windows.net:443') + .filteringRequestBody(function (path) { return '*';}) +.post('/tabledatatype5', '*') + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/tabledatatype5(PartitionKey='1',RowKey='2')\r\n \r\n 2013-03-21T13:06:11Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1\r\n 2\r\n 2013-03-21T13:06:11.9479353Z\r\n 200\r\n 2.5\r\n false\r\n true\r\n hi there\r\n 2012-11-10T03:04:05.2Z\r\n \r\n \r\n", { 'cache-control': 'no-cache', + 'transfer-encoding': 'chunked', + 'content-type': 'application/atom+xml;charset=utf-8', + etag: 'W/"datetime\'2013-03-21T13%3A06%3A11.9479353Z\'"', + location: 'https://ciserversdk.table.core.windows.net/tabledatatype5(PartitionKey=\'1\',RowKey=\'2\')', + server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', + 'x-ms-request-id': '140a5961-bba5-4992-adb0-d11f26bf33bc', + 'x-ms-version': '2011-08-18', + date: 'Thu, 21 Mar 2013 13:06:11 GMT' }); + return result; }, +function (nock) { +var result = +nock('https://ciserversdk.table.core.windows.net:443') + .get('/tabledatatype5()?$filter=TrueBooleanValue%20eq%20true') + .reply(200, "\r\n\r\n tabledatatype5\r\n https://ciserversdk.table.core.windows.net/tabledatatype5\r\n 2013-03-21T13:06:13Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tabledatatype5(PartitionKey='1',RowKey='2')\r\n \r\n 2013-03-21T13:06:13Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1\r\n 2\r\n 2013-03-21T13:06:11.9479353Z\r\n 200\r\n 2.5\r\n false\r\n true\r\n hi there\r\n 2012-11-10T03:04:05.2Z\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + 'transfer-encoding': 'chunked', + 'content-type': 'application/atom+xml;charset=utf-8', + server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', + 'x-ms-request-id': '3a4ff9a8-9a82-4274-9813-ab912dd8743f', + 'x-ms-version': '2011-08-18', + date: 'Thu, 21 Mar 2013 13:06:12 GMT' }); + return result; }, +function (nock) { +var result = +nock('https://ciserversdk.table.core.windows.net:443') + .get('/Tables') + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T13:06:14Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tabledatatype5')\r\n \r\n 2013-03-21T13:06:14Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tabledatatype5\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + 'transfer-encoding': 'chunked', + 'content-type': 'application/atom+xml;charset=utf-8', + server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', + 'x-ms-request-id': '45fa9a0a-78c4-4724-a135-80a2d4c771e7', + 'x-ms-version': '2011-08-18', + date: 'Thu, 21 Mar 2013 13:06:13 GMT' }); + return result; }, +function (nock) { +var result = +nock('https://ciserversdk.table.core.windows.net:443') + .delete('/Tables(%27tabledatatype5%27)') + .reply(204, "", { 'cache-control': 'no-cache', + 'content-length': '0', + server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', + 'x-ms-request-id': 'f84205e3-0c26-49f9-a97a-55df4be3a09a', + 'x-ms-version': '2011-08-18', + date: 'Thu, 21 Mar 2013 13:06:14 GMT' }); + return result; }], +[function (nock) { +var result = +nock('https://ciserversdk.table.core.windows.net:443') + .filteringRequestBody(function (path) { return '*';}) +.post('/Tables', '*') + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tabledatatype6')\r\n \r\n 2013-03-21T13:06:16Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tabledatatype6\r\n \r\n \r\n", { 'cache-control': 'no-cache', + 'transfer-encoding': 'chunked', + 'content-type': 'application/atom+xml;charset=utf-8', + location: 'https://ciserversdk.table.core.windows.net/Tables(\'tabledatatype6\')', + server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', + 'x-ms-request-id': 'c52d9b62-08d2-4c67-9524-9673fde74d55', + 'x-ms-version': '2011-08-18', + date: 'Thu, 21 Mar 2013 13:06:16 GMT' }); + return result; }, +function (nock) { +var result = +nock('https://ciserversdk.table.core.windows.net:443') + .filteringRequestBody(function (path) { return '*';}) +.post('/tabledatatype6', '*') + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/tabledatatype6(PartitionKey='1',RowKey='2')\r\n \r\n 2013-03-21T13:06:18Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1\r\n 2\r\n 2013-03-21T13:06:18.0151635Z\r\n 200\r\n 2.5\r\n false\r\n true\r\n hi there\r\n 2012-11-10T03:04:05.2Z\r\n \r\n \r\n", { 'cache-control': 'no-cache', + 'transfer-encoding': 'chunked', + 'content-type': 'application/atom+xml;charset=utf-8', + etag: 'W/"datetime\'2013-03-21T13%3A06%3A18.0151635Z\'"', + location: 'https://ciserversdk.table.core.windows.net/tabledatatype6(PartitionKey=\'1\',RowKey=\'2\')', + server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', + 'x-ms-request-id': '7e50c3ff-6413-4e97-8065-975e5de114f1', + 'x-ms-version': '2011-08-18', + date: 'Thu, 21 Mar 2013 13:06:17 GMT' }); + return result; }, +function (nock) { +var result = +nock('https://ciserversdk.table.core.windows.net:443') + .get('/tabledatatype6()?$filter=DateValue%20eq%20datetime%272012-11-10T03%3A04%3A05.200Z%27') + .reply(200, "\r\n\r\n tabledatatype6\r\n https://ciserversdk.table.core.windows.net/tabledatatype6\r\n 2013-03-21T13:06:18Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tabledatatype6(PartitionKey='1',RowKey='2')\r\n \r\n 2013-03-21T13:06:18Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1\r\n 2\r\n 2013-03-21T13:06:18.0151635Z\r\n 200\r\n 2.5\r\n false\r\n true\r\n hi there\r\n 2012-11-10T03:04:05.2Z\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + 'transfer-encoding': 'chunked', + 'content-type': 'application/atom+xml;charset=utf-8', + server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', + 'x-ms-request-id': 'd5d6dc6d-6292-40bc-9f27-b8574e90a266', + 'x-ms-version': '2011-08-18', + date: 'Thu, 21 Mar 2013 13:06:17 GMT' }); + return result; }, +function (nock) { +var result = +nock('https://ciserversdk.table.core.windows.net:443') + .get('/Tables') + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T13:06:19Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tabledatatype6')\r\n \r\n 2013-03-21T13:06:19Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tabledatatype6\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + 'transfer-encoding': 'chunked', + 'content-type': 'application/atom+xml;charset=utf-8', + server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', + 'x-ms-request-id': 'aab5b0ce-ccf8-45a1-8254-1a222c01f768', + 'x-ms-version': '2011-08-18', + date: 'Thu, 21 Mar 2013 13:06:18 GMT' }); + return result; }, +function (nock) { +var result = +nock('https://ciserversdk.table.core.windows.net:443') + .delete('/Tables(%27tabledatatype6%27)') + .reply(204, "", { 'cache-control': 'no-cache', + 'content-length': '0', + server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', + 'x-ms-request-id': 'c66cbed7-afb5-4478-90c2-532379372b7b', + 'x-ms-version': '2011-08-18', + date: 'Thu, 21 Mar 2013 13:06:20 GMT' }); + return result; }]]; \ No newline at end of file diff --git a/test/recordings/tableservice-batch-tests.nock.js b/test/recordings/tableservice-batch-tests.nock.js index cbaef5ed5c..6bbd5c6026 100644 --- a/test/recordings/tableservice-batch-tests.nock.js +++ b/test/recordings/tableservice-batch-tests.nock.js @@ -5,51 +5,51 @@ var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/Tables', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tablebatch1')\r\n \r\n 2013-03-04T00:06:30Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tablebatch1\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tablebatch1')\r\n \r\n 2013-03-21T15:58:16Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tablebatch1\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', location: 'https://ciserversdk.table.core.windows.net/Tables(\'tablebatch1\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'a9f51fcd-7f5a-4beb-aa7d-e1c05391b9a2', + 'x-ms-request-id': '4615987f-2298-4bc6-b4ee-cfba346e5fa4', 'x-ms-version': '2011-08-18', - date: 'Mon, 04 Mar 2013 00:06:30 GMT' }); + date: 'Thu, 21 Mar 2013 15:58:16 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/$batch', '*') - .reply(202, "--batchresponse_1dbd8675-05a9-4d4e-bdfb-b415629a3445\r\nContent-Type: multipart/mixed; boundary=changesetresponse_2b711083-ce9f-468e-8ad3-caf9c92ee814\r\n\r\n--changesetresponse_2b711083-ce9f-468e-8ad3-caf9c92ee814\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 1\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='1')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A33.2951415Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='1')\r\n \r\n 2013-03-04T00:06:33Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 1\r\n 2013-03-04T00:06:33.2951415Z\r\n street1\r\n \r\n \r\n\r\n--changesetresponse_2b711083-ce9f-468e-8ad3-caf9c92ee814\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 2\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='2')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A33.2951415Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='2')\r\n \r\n 2013-03-04T00:06:33Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 2\r\n 2013-03-04T00:06:33.2951415Z\r\n street2\r\n \r\n \r\n\r\n--changesetresponse_2b711083-ce9f-468e-8ad3-caf9c92ee814\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 3\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='3')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A33.2951415Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='3')\r\n \r\n 2013-03-04T00:06:33Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 3\r\n 2013-03-04T00:06:33.2951415Z\r\n street3\r\n \r\n \r\n\r\n--changesetresponse_2b711083-ce9f-468e-8ad3-caf9c92ee814\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 4\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='4')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A33.2951415Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='4')\r\n \r\n 2013-03-04T00:06:33Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 4\r\n 2013-03-04T00:06:33.2951415Z\r\n street4\r\n \r\n \r\n\r\n--changesetresponse_2b711083-ce9f-468e-8ad3-caf9c92ee814\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 5\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='5')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A33.2951415Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='5')\r\n \r\n 2013-03-04T00:06:33Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 5\r\n 2013-03-04T00:06:33.2951415Z\r\n street5\r\n \r\n \r\n\r\n--changesetresponse_2b711083-ce9f-468e-8ad3-caf9c92ee814\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 6\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='6')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A33.2951415Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='6')\r\n \r\n 2013-03-04T00:06:33Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 6\r\n 2013-03-04T00:06:33.2951415Z\r\n street6\r\n \r\n \r\n\r\n--changesetresponse_2b711083-ce9f-468e-8ad3-caf9c92ee814\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 7\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='7')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A33.2951415Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='7')\r\n \r\n 2013-03-04T00:06:33Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 7\r\n 2013-03-04T00:06:33.2951415Z\r\n street7\r\n \r\n \r\n\r\n--changesetresponse_2b711083-ce9f-468e-8ad3-caf9c92ee814\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 8\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='8')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A33.2951415Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='8')\r\n \r\n 2013-03-04T00:06:33Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 8\r\n 2013-03-04T00:06:33.2951415Z\r\n street8\r\n \r\n \r\n\r\n--changesetresponse_2b711083-ce9f-468e-8ad3-caf9c92ee814\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 9\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='9')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A33.2951415Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='9')\r\n \r\n 2013-03-04T00:06:33Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 9\r\n 2013-03-04T00:06:33.2951415Z\r\n street9\r\n \r\n \r\n\r\n--changesetresponse_2b711083-ce9f-468e-8ad3-caf9c92ee814\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 10\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='10')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A33.2951415Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='10')\r\n \r\n 2013-03-04T00:06:33Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 10\r\n 2013-03-04T00:06:33.2951415Z\r\n street10\r\n \r\n \r\n\r\n--changesetresponse_2b711083-ce9f-468e-8ad3-caf9c92ee814\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 11\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='11')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A33.2951415Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='11')\r\n \r\n 2013-03-04T00:06:33Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 11\r\n 2013-03-04T00:06:33.2951415Z\r\n street11\r\n \r\n \r\n\r\n--changesetresponse_2b711083-ce9f-468e-8ad3-caf9c92ee814\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 12\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='12')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A33.2951415Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='12')\r\n \r\n 2013-03-04T00:06:33Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 12\r\n 2013-03-04T00:06:33.2951415Z\r\n street12\r\n \r\n \r\n\r\n--changesetresponse_2b711083-ce9f-468e-8ad3-caf9c92ee814\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 13\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='13')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A33.2951415Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='13')\r\n \r\n 2013-03-04T00:06:33Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 13\r\n 2013-03-04T00:06:33.2951415Z\r\n street13\r\n \r\n \r\n\r\n--changesetresponse_2b711083-ce9f-468e-8ad3-caf9c92ee814\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 14\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='14')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A33.2951415Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='14')\r\n \r\n 2013-03-04T00:06:33Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 14\r\n 2013-03-04T00:06:33.2951415Z\r\n street14\r\n \r\n \r\n\r\n--changesetresponse_2b711083-ce9f-468e-8ad3-caf9c92ee814\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 15\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='15')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A33.2951415Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='15')\r\n \r\n 2013-03-04T00:06:33Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 15\r\n 2013-03-04T00:06:33.2951415Z\r\n street15\r\n \r\n \r\n\r\n--changesetresponse_2b711083-ce9f-468e-8ad3-caf9c92ee814\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 16\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='16')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A33.2951415Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='16')\r\n \r\n 2013-03-04T00:06:33Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 16\r\n 2013-03-04T00:06:33.2951415Z\r\n street16\r\n \r\n \r\n\r\n--changesetresponse_2b711083-ce9f-468e-8ad3-caf9c92ee814\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 17\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='17')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A33.2951415Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='17')\r\n \r\n 2013-03-04T00:06:33Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 17\r\n 2013-03-04T00:06:33.2951415Z\r\n street17\r\n \r\n \r\n\r\n--changesetresponse_2b711083-ce9f-468e-8ad3-caf9c92ee814\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 18\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='18')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A33.2951415Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='18')\r\n \r\n 2013-03-04T00:06:33Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 18\r\n 2013-03-04T00:06:33.2951415Z\r\n street18\r\n \r\n \r\n\r\n--changesetresponse_2b711083-ce9f-468e-8ad3-caf9c92ee814\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 19\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='19')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A33.2951415Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='19')\r\n \r\n 2013-03-04T00:06:33Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 19\r\n 2013-03-04T00:06:33.2951415Z\r\n street19\r\n \r\n \r\n\r\n--changesetresponse_2b711083-ce9f-468e-8ad3-caf9c92ee814\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 20\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='20')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A33.2951415Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='20')\r\n \r\n 2013-03-04T00:06:33Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 20\r\n 2013-03-04T00:06:33.2951415Z\r\n street20\r\n \r\n \r\n\r\n--changesetresponse_2b711083-ce9f-468e-8ad3-caf9c92ee814--\r\n--batchresponse_1dbd8675-05a9-4d4e-bdfb-b415629a3445--\r\n", { 'cache-control': 'no-cache', + .reply(202, "--batchresponse_9dc72981-1de7-49b8-ae58-93711b5aa1a9\r\nContent-Type: multipart/mixed; boundary=changesetresponse_45718518-c0d6-4ce4-8557-8ae4cb9fe094\r\n\r\n--changesetresponse_45718518-c0d6-4ce4-8557-8ae4cb9fe094\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 1\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='1')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A18.7137246Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='1')\r\n \r\n 2013-03-21T15:58:18Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 1\r\n 2013-03-21T15:58:18.7137246Z\r\n street1\r\n \r\n \r\n\r\n--changesetresponse_45718518-c0d6-4ce4-8557-8ae4cb9fe094\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 2\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='2')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A18.7137246Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='2')\r\n \r\n 2013-03-21T15:58:18Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 2\r\n 2013-03-21T15:58:18.7137246Z\r\n street2\r\n \r\n \r\n\r\n--changesetresponse_45718518-c0d6-4ce4-8557-8ae4cb9fe094\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 3\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='3')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A18.7137246Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='3')\r\n \r\n 2013-03-21T15:58:18Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 3\r\n 2013-03-21T15:58:18.7137246Z\r\n street3\r\n \r\n \r\n\r\n--changesetresponse_45718518-c0d6-4ce4-8557-8ae4cb9fe094\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 4\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='4')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A18.7137246Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='4')\r\n \r\n 2013-03-21T15:58:18Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 4\r\n 2013-03-21T15:58:18.7137246Z\r\n street4\r\n \r\n \r\n\r\n--changesetresponse_45718518-c0d6-4ce4-8557-8ae4cb9fe094\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 5\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='5')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A18.7137246Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='5')\r\n \r\n 2013-03-21T15:58:18Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 5\r\n 2013-03-21T15:58:18.7137246Z\r\n street5\r\n \r\n \r\n\r\n--changesetresponse_45718518-c0d6-4ce4-8557-8ae4cb9fe094\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 6\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='6')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A18.7137246Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='6')\r\n \r\n 2013-03-21T15:58:18Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 6\r\n 2013-03-21T15:58:18.7137246Z\r\n street6\r\n \r\n \r\n\r\n--changesetresponse_45718518-c0d6-4ce4-8557-8ae4cb9fe094\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 7\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='7')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A18.7137246Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='7')\r\n \r\n 2013-03-21T15:58:18Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 7\r\n 2013-03-21T15:58:18.7137246Z\r\n street7\r\n \r\n \r\n\r\n--changesetresponse_45718518-c0d6-4ce4-8557-8ae4cb9fe094\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 8\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='8')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A18.7137246Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='8')\r\n \r\n 2013-03-21T15:58:18Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 8\r\n 2013-03-21T15:58:18.7137246Z\r\n street8\r\n \r\n \r\n\r\n--changesetresponse_45718518-c0d6-4ce4-8557-8ae4cb9fe094\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 9\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='9')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A18.7137246Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='9')\r\n \r\n 2013-03-21T15:58:18Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 9\r\n 2013-03-21T15:58:18.7137246Z\r\n street9\r\n \r\n \r\n\r\n--changesetresponse_45718518-c0d6-4ce4-8557-8ae4cb9fe094\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 10\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='10')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A18.7137246Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='10')\r\n \r\n 2013-03-21T15:58:18Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 10\r\n 2013-03-21T15:58:18.7137246Z\r\n street10\r\n \r\n \r\n\r\n--changesetresponse_45718518-c0d6-4ce4-8557-8ae4cb9fe094\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 11\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='11')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A18.7137246Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='11')\r\n \r\n 2013-03-21T15:58:18Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 11\r\n 2013-03-21T15:58:18.7137246Z\r\n street11\r\n \r\n \r\n\r\n--changesetresponse_45718518-c0d6-4ce4-8557-8ae4cb9fe094\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 12\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='12')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A18.7147246Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='12')\r\n \r\n 2013-03-21T15:58:18Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 12\r\n 2013-03-21T15:58:18.7147246Z\r\n street12\r\n \r\n \r\n\r\n--changesetresponse_45718518-c0d6-4ce4-8557-8ae4cb9fe094\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 13\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='13')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A18.7147246Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='13')\r\n \r\n 2013-03-21T15:58:18Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 13\r\n 2013-03-21T15:58:18.7147246Z\r\n street13\r\n \r\n \r\n\r\n--changesetresponse_45718518-c0d6-4ce4-8557-8ae4cb9fe094\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 14\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='14')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A18.7147246Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='14')\r\n \r\n 2013-03-21T15:58:18Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 14\r\n 2013-03-21T15:58:18.7147246Z\r\n street14\r\n \r\n \r\n\r\n--changesetresponse_45718518-c0d6-4ce4-8557-8ae4cb9fe094\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 15\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='15')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A18.7147246Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='15')\r\n \r\n 2013-03-21T15:58:18Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 15\r\n 2013-03-21T15:58:18.7147246Z\r\n street15\r\n \r\n \r\n\r\n--changesetresponse_45718518-c0d6-4ce4-8557-8ae4cb9fe094\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 16\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='16')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A18.7147246Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='16')\r\n \r\n 2013-03-21T15:58:18Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 16\r\n 2013-03-21T15:58:18.7147246Z\r\n street16\r\n \r\n \r\n\r\n--changesetresponse_45718518-c0d6-4ce4-8557-8ae4cb9fe094\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 17\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='17')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A18.7147246Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='17')\r\n \r\n 2013-03-21T15:58:18Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 17\r\n 2013-03-21T15:58:18.7147246Z\r\n street17\r\n \r\n \r\n\r\n--changesetresponse_45718518-c0d6-4ce4-8557-8ae4cb9fe094\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 18\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='18')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A18.7147246Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='18')\r\n \r\n 2013-03-21T15:58:18Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 18\r\n 2013-03-21T15:58:18.7147246Z\r\n street18\r\n \r\n \r\n\r\n--changesetresponse_45718518-c0d6-4ce4-8557-8ae4cb9fe094\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 19\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='19')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A18.7147246Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='19')\r\n \r\n 2013-03-21T15:58:18Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 19\r\n 2013-03-21T15:58:18.7147246Z\r\n street19\r\n \r\n \r\n\r\n--changesetresponse_45718518-c0d6-4ce4-8557-8ae4cb9fe094\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 20\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='20')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A18.7147246Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='20')\r\n \r\n 2013-03-21T15:58:18Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 20\r\n 2013-03-21T15:58:18.7147246Z\r\n street20\r\n \r\n \r\n\r\n--changesetresponse_45718518-c0d6-4ce4-8557-8ae4cb9fe094--\r\n--batchresponse_9dc72981-1de7-49b8-ae58-93711b5aa1a9--\r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', - 'content-type': 'multipart/mixed; boundary=batchresponse_1dbd8675-05a9-4d4e-bdfb-b415629a3445', + 'content-type': 'multipart/mixed; boundary=batchresponse_9dc72981-1de7-49b8-ae58-93711b5aa1a9', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '277a11ee-4a30-4ee0-8f67-ec433ef9ace8', + 'x-ms-request-id': 'ccbf46a2-16cc-408a-ab18-6855ea963140', 'x-ms-version': '2011-08-18', - date: 'Mon, 04 Mar 2013 00:06:32 GMT' }); + date: 'Thu, 21 Mar 2013 15:58:18 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/tablebatch1()') - .reply(200, "\r\n\r\n tablebatch1\r\n https://ciserversdk.table.core.windows.net/tablebatch1\r\n 2013-03-04T00:06:34Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='1')\r\n \r\n 2013-03-04T00:06:34Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 1\r\n 2013-03-04T00:06:33.2951415Z\r\n street1\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='10')\r\n \r\n 2013-03-04T00:06:34Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 10\r\n 2013-03-04T00:06:33.2951415Z\r\n street10\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='11')\r\n \r\n 2013-03-04T00:06:34Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 11\r\n 2013-03-04T00:06:33.2951415Z\r\n street11\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='12')\r\n \r\n 2013-03-04T00:06:34Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 12\r\n 2013-03-04T00:06:33.2951415Z\r\n street12\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='13')\r\n \r\n 2013-03-04T00:06:34Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 13\r\n 2013-03-04T00:06:33.2951415Z\r\n street13\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='14')\r\n \r\n 2013-03-04T00:06:34Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 14\r\n 2013-03-04T00:06:33.2951415Z\r\n street14\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='15')\r\n \r\n 2013-03-04T00:06:34Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 15\r\n 2013-03-04T00:06:33.2951415Z\r\n street15\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='16')\r\n \r\n 2013-03-04T00:06:34Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 16\r\n 2013-03-04T00:06:33.2951415Z\r\n street16\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='17')\r\n \r\n 2013-03-04T00:06:34Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 17\r\n 2013-03-04T00:06:33.2951415Z\r\n street17\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='18')\r\n \r\n 2013-03-04T00:06:34Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 18\r\n 2013-03-04T00:06:33.2951415Z\r\n street18\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='19')\r\n \r\n 2013-03-04T00:06:34Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 19\r\n 2013-03-04T00:06:33.2951415Z\r\n street19\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='2')\r\n \r\n 2013-03-04T00:06:34Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 2\r\n 2013-03-04T00:06:33.2951415Z\r\n street2\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='20')\r\n \r\n 2013-03-04T00:06:34Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 20\r\n 2013-03-04T00:06:33.2951415Z\r\n street20\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='3')\r\n \r\n 2013-03-04T00:06:34Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 3\r\n 2013-03-04T00:06:33.2951415Z\r\n street3\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='4')\r\n \r\n 2013-03-04T00:06:34Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 4\r\n 2013-03-04T00:06:33.2951415Z\r\n street4\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='5')\r\n \r\n 2013-03-04T00:06:34Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 5\r\n 2013-03-04T00:06:33.2951415Z\r\n street5\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='6')\r\n \r\n 2013-03-04T00:06:34Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 6\r\n 2013-03-04T00:06:33.2951415Z\r\n street6\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='7')\r\n \r\n 2013-03-04T00:06:34Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 7\r\n 2013-03-04T00:06:33.2951415Z\r\n street7\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='8')\r\n \r\n 2013-03-04T00:06:34Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 8\r\n 2013-03-04T00:06:33.2951415Z\r\n street8\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='9')\r\n \r\n 2013-03-04T00:06:34Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 9\r\n 2013-03-04T00:06:33.2951415Z\r\n street9\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n tablebatch1\r\n https://ciserversdk.table.core.windows.net/tablebatch1\r\n 2013-03-21T15:58:20Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='1')\r\n \r\n 2013-03-21T15:58:20Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 1\r\n 2013-03-21T15:58:18.7137246Z\r\n street1\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='10')\r\n \r\n 2013-03-21T15:58:20Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 10\r\n 2013-03-21T15:58:18.7137246Z\r\n street10\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='11')\r\n \r\n 2013-03-21T15:58:20Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 11\r\n 2013-03-21T15:58:18.7137246Z\r\n street11\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='12')\r\n \r\n 2013-03-21T15:58:20Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 12\r\n 2013-03-21T15:58:18.7147246Z\r\n street12\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='13')\r\n \r\n 2013-03-21T15:58:20Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 13\r\n 2013-03-21T15:58:18.7147246Z\r\n street13\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='14')\r\n \r\n 2013-03-21T15:58:20Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 14\r\n 2013-03-21T15:58:18.7147246Z\r\n street14\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='15')\r\n \r\n 2013-03-21T15:58:20Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 15\r\n 2013-03-21T15:58:18.7147246Z\r\n street15\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='16')\r\n \r\n 2013-03-21T15:58:20Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 16\r\n 2013-03-21T15:58:18.7147246Z\r\n street16\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='17')\r\n \r\n 2013-03-21T15:58:20Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 17\r\n 2013-03-21T15:58:18.7147246Z\r\n street17\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='18')\r\n \r\n 2013-03-21T15:58:20Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 18\r\n 2013-03-21T15:58:18.7147246Z\r\n street18\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='19')\r\n \r\n 2013-03-21T15:58:20Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 19\r\n 2013-03-21T15:58:18.7147246Z\r\n street19\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='2')\r\n \r\n 2013-03-21T15:58:20Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 2\r\n 2013-03-21T15:58:18.7137246Z\r\n street2\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='20')\r\n \r\n 2013-03-21T15:58:20Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 20\r\n 2013-03-21T15:58:18.7147246Z\r\n street20\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='3')\r\n \r\n 2013-03-21T15:58:20Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 3\r\n 2013-03-21T15:58:18.7137246Z\r\n street3\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='4')\r\n \r\n 2013-03-21T15:58:20Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 4\r\n 2013-03-21T15:58:18.7137246Z\r\n street4\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='5')\r\n \r\n 2013-03-21T15:58:20Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 5\r\n 2013-03-21T15:58:18.7137246Z\r\n street5\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='6')\r\n \r\n 2013-03-21T15:58:20Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 6\r\n 2013-03-21T15:58:18.7137246Z\r\n street6\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='7')\r\n \r\n 2013-03-21T15:58:20Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 7\r\n 2013-03-21T15:58:18.7137246Z\r\n street7\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='8')\r\n \r\n 2013-03-21T15:58:20Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 8\r\n 2013-03-21T15:58:18.7137246Z\r\n street8\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='9')\r\n \r\n 2013-03-21T15:58:20Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 9\r\n 2013-03-21T15:58:18.7137246Z\r\n street9\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'f03fc204-558d-4f1a-b238-88db0d29b268', + 'x-ms-request-id': '7a438416-2df6-4cf7-9710-755c16fc655d', 'x-ms-version': '2011-08-18', - date: 'Mon, 04 Mar 2013 00:06:33 GMT' }); + date: 'Thu, 21 Mar 2013 15:58:19 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/Tables') - .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-04T00:06:36Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tablebatch1')\r\n \r\n 2013-03-04T00:06:36Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tablebatch1\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T15:58:20Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tablebatch1')\r\n \r\n 2013-03-21T15:58:20Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tablebatch1\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '39b08b29-f215-4843-a77f-ea231218734c', + 'x-ms-request-id': '1ffe5bc0-9f70-428d-9512-e50a696f6169', 'x-ms-version': '2011-08-18', - date: 'Mon, 04 Mar 2013 00:06:36 GMT' }); + date: 'Thu, 21 Mar 2013 15:58:20 GMT' }); return result; }, function (nock) { var result = @@ -58,61 +58,61 @@ nock('https://ciserversdk.table.core.windows.net:443') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'bebdbce7-3126-495c-8894-505b28c2e106', + 'x-ms-request-id': 'd181df85-1a39-43a8-956b-fc86644787fd', 'x-ms-version': '2011-08-18', - date: 'Mon, 04 Mar 2013 00:06:36 GMT' }); + date: 'Thu, 21 Mar 2013 15:58:22 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/Tables', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tablebatch2')\r\n \r\n 2013-03-04T00:06:38Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tablebatch2\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tablebatch2')\r\n \r\n 2013-03-21T15:58:24Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tablebatch2\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', location: 'https://ciserversdk.table.core.windows.net/Tables(\'tablebatch2\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '2020b147-5c4b-4401-8dea-c3e8c1631dd6', + 'x-ms-request-id': 'cecc0478-bc38-4e61-b106-a801f9597f52', 'x-ms-version': '2011-08-18', - date: 'Mon, 04 Mar 2013 00:06:38 GMT' }); + date: 'Thu, 21 Mar 2013 15:58:24 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/$batch', '*') - .reply(202, "--batchresponse_268e426b-b5d0-40ab-8aad-17986787c68c\r\nContent-Type: multipart/mixed; boundary=changesetresponse_f0d0cea0-693d-4fb4-af79-4fca282e045c\r\n\r\n--changesetresponse_f0d0cea0-693d-4fb4-af79-4fca282e045c\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 1\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='1')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A40.1215911Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='1')\r\n \r\n 2013-03-04T00:06:40Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 1\r\n 2013-03-04T00:06:40.1215911Z\r\n street1\r\n \r\n \r\n\r\n--changesetresponse_f0d0cea0-693d-4fb4-af79-4fca282e045c\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 2\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='2')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A40.1225912Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='2')\r\n \r\n 2013-03-04T00:06:40Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 2\r\n 2013-03-04T00:06:40.1225912Z\r\n street2\r\n \r\n \r\n\r\n--changesetresponse_f0d0cea0-693d-4fb4-af79-4fca282e045c\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 3\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='3')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A40.1225912Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='3')\r\n \r\n 2013-03-04T00:06:40Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 3\r\n 2013-03-04T00:06:40.1225912Z\r\n street3\r\n \r\n \r\n\r\n--changesetresponse_f0d0cea0-693d-4fb4-af79-4fca282e045c\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 4\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='4')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A40.1225912Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='4')\r\n \r\n 2013-03-04T00:06:40Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 4\r\n 2013-03-04T00:06:40.1225912Z\r\n street4\r\n \r\n \r\n\r\n--changesetresponse_f0d0cea0-693d-4fb4-af79-4fca282e045c\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 5\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='5')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A40.1225912Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='5')\r\n \r\n 2013-03-04T00:06:40Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 5\r\n 2013-03-04T00:06:40.1225912Z\r\n street5\r\n \r\n \r\n\r\n--changesetresponse_f0d0cea0-693d-4fb4-af79-4fca282e045c\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 6\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='6')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A40.1225912Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='6')\r\n \r\n 2013-03-04T00:06:40Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 6\r\n 2013-03-04T00:06:40.1225912Z\r\n street6\r\n \r\n \r\n\r\n--changesetresponse_f0d0cea0-693d-4fb4-af79-4fca282e045c\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 7\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='7')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A40.1225912Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='7')\r\n \r\n 2013-03-04T00:06:40Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 7\r\n 2013-03-04T00:06:40.1225912Z\r\n street7\r\n \r\n \r\n\r\n--changesetresponse_f0d0cea0-693d-4fb4-af79-4fca282e045c\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 8\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='8')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A40.1225912Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='8')\r\n \r\n 2013-03-04T00:06:40Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 8\r\n 2013-03-04T00:06:40.1225912Z\r\n street8\r\n \r\n \r\n\r\n--changesetresponse_f0d0cea0-693d-4fb4-af79-4fca282e045c\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 9\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='9')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A40.1225912Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='9')\r\n \r\n 2013-03-04T00:06:40Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 9\r\n 2013-03-04T00:06:40.1225912Z\r\n street9\r\n \r\n \r\n\r\n--changesetresponse_f0d0cea0-693d-4fb4-af79-4fca282e045c\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 10\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='10')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A40.1225912Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='10')\r\n \r\n 2013-03-04T00:06:40Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 10\r\n 2013-03-04T00:06:40.1225912Z\r\n street10\r\n \r\n \r\n\r\n--changesetresponse_f0d0cea0-693d-4fb4-af79-4fca282e045c\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 11\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='11')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A40.1225912Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='11')\r\n \r\n 2013-03-04T00:06:40Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 11\r\n 2013-03-04T00:06:40.1225912Z\r\n street11\r\n \r\n \r\n\r\n--changesetresponse_f0d0cea0-693d-4fb4-af79-4fca282e045c\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 12\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='12')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A40.1225912Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='12')\r\n \r\n 2013-03-04T00:06:40Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 12\r\n 2013-03-04T00:06:40.1225912Z\r\n street12\r\n \r\n \r\n\r\n--changesetresponse_f0d0cea0-693d-4fb4-af79-4fca282e045c\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 13\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='13')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A40.1225912Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='13')\r\n \r\n 2013-03-04T00:06:40Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 13\r\n 2013-03-04T00:06:40.1225912Z\r\n street13\r\n \r\n \r\n\r\n--changesetresponse_f0d0cea0-693d-4fb4-af79-4fca282e045c\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 14\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='14')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A40.1225912Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='14')\r\n \r\n 2013-03-04T00:06:40Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 14\r\n 2013-03-04T00:06:40.1225912Z\r\n street14\r\n \r\n \r\n\r\n--changesetresponse_f0d0cea0-693d-4fb4-af79-4fca282e045c\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 15\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='15')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A40.1225912Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='15')\r\n \r\n 2013-03-04T00:06:40Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 15\r\n 2013-03-04T00:06:40.1225912Z\r\n street15\r\n \r\n \r\n\r\n--changesetresponse_f0d0cea0-693d-4fb4-af79-4fca282e045c\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 16\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='16')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A40.1225912Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='16')\r\n \r\n 2013-03-04T00:06:40Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 16\r\n 2013-03-04T00:06:40.1225912Z\r\n street16\r\n \r\n \r\n\r\n--changesetresponse_f0d0cea0-693d-4fb4-af79-4fca282e045c\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 17\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='17')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A40.1225912Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='17')\r\n \r\n 2013-03-04T00:06:40Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 17\r\n 2013-03-04T00:06:40.1225912Z\r\n street17\r\n \r\n \r\n\r\n--changesetresponse_f0d0cea0-693d-4fb4-af79-4fca282e045c\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 18\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='18')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A40.1225912Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='18')\r\n \r\n 2013-03-04T00:06:40Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 18\r\n 2013-03-04T00:06:40.1225912Z\r\n street18\r\n \r\n \r\n\r\n--changesetresponse_f0d0cea0-693d-4fb4-af79-4fca282e045c\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 19\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='19')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A40.1225912Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='19')\r\n \r\n 2013-03-04T00:06:40Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 19\r\n 2013-03-04T00:06:40.1225912Z\r\n street19\r\n \r\n \r\n\r\n--changesetresponse_f0d0cea0-693d-4fb4-af79-4fca282e045c\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 20\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='20')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A40.1225912Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='20')\r\n \r\n 2013-03-04T00:06:40Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 20\r\n 2013-03-04T00:06:40.1225912Z\r\n street20\r\n \r\n \r\n\r\n--changesetresponse_f0d0cea0-693d-4fb4-af79-4fca282e045c--\r\n--batchresponse_268e426b-b5d0-40ab-8aad-17986787c68c--\r\n", { 'cache-control': 'no-cache', + .reply(202, "--batchresponse_615b0d0f-7062-4831-a754-f6ad9b27e767\r\nContent-Type: multipart/mixed; boundary=changesetresponse_1ca8b69f-4285-4c9b-9bd7-97d438c44273\r\n\r\n--changesetresponse_1ca8b69f-4285-4c9b-9bd7-97d438c44273\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 1\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='1')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A26.3491927Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='1')\r\n \r\n 2013-03-21T15:58:26Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 1\r\n 2013-03-21T15:58:26.3491927Z\r\n street1\r\n \r\n \r\n\r\n--changesetresponse_1ca8b69f-4285-4c9b-9bd7-97d438c44273\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 2\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='2')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A26.3491927Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='2')\r\n \r\n 2013-03-21T15:58:26Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 2\r\n 2013-03-21T15:58:26.3491927Z\r\n street2\r\n \r\n \r\n\r\n--changesetresponse_1ca8b69f-4285-4c9b-9bd7-97d438c44273\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 3\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='3')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A26.3491927Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='3')\r\n \r\n 2013-03-21T15:58:26Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 3\r\n 2013-03-21T15:58:26.3491927Z\r\n street3\r\n \r\n \r\n\r\n--changesetresponse_1ca8b69f-4285-4c9b-9bd7-97d438c44273\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 4\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='4')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A26.3491927Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='4')\r\n \r\n 2013-03-21T15:58:26Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 4\r\n 2013-03-21T15:58:26.3491927Z\r\n street4\r\n \r\n \r\n\r\n--changesetresponse_1ca8b69f-4285-4c9b-9bd7-97d438c44273\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 5\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='5')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A26.3491927Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='5')\r\n \r\n 2013-03-21T15:58:26Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 5\r\n 2013-03-21T15:58:26.3491927Z\r\n street5\r\n \r\n \r\n\r\n--changesetresponse_1ca8b69f-4285-4c9b-9bd7-97d438c44273\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 6\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='6')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A26.3491927Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='6')\r\n \r\n 2013-03-21T15:58:26Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 6\r\n 2013-03-21T15:58:26.3491927Z\r\n street6\r\n \r\n \r\n\r\n--changesetresponse_1ca8b69f-4285-4c9b-9bd7-97d438c44273\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 7\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='7')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A26.3491927Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='7')\r\n \r\n 2013-03-21T15:58:26Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 7\r\n 2013-03-21T15:58:26.3491927Z\r\n street7\r\n \r\n \r\n\r\n--changesetresponse_1ca8b69f-4285-4c9b-9bd7-97d438c44273\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 8\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='8')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A26.3491927Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='8')\r\n \r\n 2013-03-21T15:58:26Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 8\r\n 2013-03-21T15:58:26.3491927Z\r\n street8\r\n \r\n \r\n\r\n--changesetresponse_1ca8b69f-4285-4c9b-9bd7-97d438c44273\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 9\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='9')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A26.3491927Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='9')\r\n \r\n 2013-03-21T15:58:26Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 9\r\n 2013-03-21T15:58:26.3491927Z\r\n street9\r\n \r\n \r\n\r\n--changesetresponse_1ca8b69f-4285-4c9b-9bd7-97d438c44273\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 10\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='10')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A26.3491927Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='10')\r\n \r\n 2013-03-21T15:58:26Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 10\r\n 2013-03-21T15:58:26.3491927Z\r\n street10\r\n \r\n \r\n\r\n--changesetresponse_1ca8b69f-4285-4c9b-9bd7-97d438c44273\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 11\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='11')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A26.3491927Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='11')\r\n \r\n 2013-03-21T15:58:26Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 11\r\n 2013-03-21T15:58:26.3491927Z\r\n street11\r\n \r\n \r\n\r\n--changesetresponse_1ca8b69f-4285-4c9b-9bd7-97d438c44273\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 12\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='12')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A26.3491927Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='12')\r\n \r\n 2013-03-21T15:58:26Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 12\r\n 2013-03-21T15:58:26.3491927Z\r\n street12\r\n \r\n \r\n\r\n--changesetresponse_1ca8b69f-4285-4c9b-9bd7-97d438c44273\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 13\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='13')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A26.3491927Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='13')\r\n \r\n 2013-03-21T15:58:26Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 13\r\n 2013-03-21T15:58:26.3491927Z\r\n street13\r\n \r\n \r\n\r\n--changesetresponse_1ca8b69f-4285-4c9b-9bd7-97d438c44273\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 14\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='14')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A26.3491927Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='14')\r\n \r\n 2013-03-21T15:58:26Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 14\r\n 2013-03-21T15:58:26.3491927Z\r\n street14\r\n \r\n \r\n\r\n--changesetresponse_1ca8b69f-4285-4c9b-9bd7-97d438c44273\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 15\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='15')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A26.3491927Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='15')\r\n \r\n 2013-03-21T15:58:26Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 15\r\n 2013-03-21T15:58:26.3491927Z\r\n street15\r\n \r\n \r\n\r\n--changesetresponse_1ca8b69f-4285-4c9b-9bd7-97d438c44273\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 16\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='16')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A26.3501929Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='16')\r\n \r\n 2013-03-21T15:58:26Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 16\r\n 2013-03-21T15:58:26.3501929Z\r\n street16\r\n \r\n \r\n\r\n--changesetresponse_1ca8b69f-4285-4c9b-9bd7-97d438c44273\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 17\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='17')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A26.3501929Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='17')\r\n \r\n 2013-03-21T15:58:26Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 17\r\n 2013-03-21T15:58:26.3501929Z\r\n street17\r\n \r\n \r\n\r\n--changesetresponse_1ca8b69f-4285-4c9b-9bd7-97d438c44273\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 18\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='18')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A26.3501929Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='18')\r\n \r\n 2013-03-21T15:58:26Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 18\r\n 2013-03-21T15:58:26.3501929Z\r\n street18\r\n \r\n \r\n\r\n--changesetresponse_1ca8b69f-4285-4c9b-9bd7-97d438c44273\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 19\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='19')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A26.3501929Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='19')\r\n \r\n 2013-03-21T15:58:26Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 19\r\n 2013-03-21T15:58:26.3501929Z\r\n street19\r\n \r\n \r\n\r\n--changesetresponse_1ca8b69f-4285-4c9b-9bd7-97d438c44273\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 20\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='20')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A26.3501929Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='20')\r\n \r\n 2013-03-21T15:58:26Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 20\r\n 2013-03-21T15:58:26.3501929Z\r\n street20\r\n \r\n \r\n\r\n--changesetresponse_1ca8b69f-4285-4c9b-9bd7-97d438c44273--\r\n--batchresponse_615b0d0f-7062-4831-a754-f6ad9b27e767--\r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', - 'content-type': 'multipart/mixed; boundary=batchresponse_268e426b-b5d0-40ab-8aad-17986787c68c', + 'content-type': 'multipart/mixed; boundary=batchresponse_615b0d0f-7062-4831-a754-f6ad9b27e767', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'c076cf78-8d17-48b3-8381-d6ee3f9bd958', + 'x-ms-request-id': '3aa1b795-c140-43c4-861a-dcaa11b74b09', 'x-ms-version': '2011-08-18', - date: 'Mon, 04 Mar 2013 00:06:40 GMT' }); + date: 'Thu, 21 Mar 2013 15:58:25 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/tablebatch2(PartitionKey=%27partition1%27,RowKey=%271%27)') - .reply(200, "\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='1')\r\n \r\n 2013-03-04T00:06:41Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 1\r\n 2013-03-04T00:06:40.1215911Z\r\n street1\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='1')\r\n \r\n 2013-03-21T15:58:29Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 1\r\n 2013-03-21T15:58:26.3491927Z\r\n street1\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', - etag: 'W/"datetime\'2013-03-04T00%3A06%3A40.1215911Z\'"', + etag: 'W/"datetime\'2013-03-21T15%3A58%3A26.3491927Z\'"', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '79e39955-89ac-46fa-b4c8-9e8d5b383c4f', + 'x-ms-request-id': '202eea48-3787-4e27-8979-0f7dba098bb6', 'x-ms-version': '2011-08-18', - date: 'Mon, 04 Mar 2013 00:06:40 GMT' }); + date: 'Thu, 21 Mar 2013 15:58:28 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/Tables') - .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-04T00:06:43Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tablebatch2')\r\n \r\n 2013-03-04T00:06:43Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tablebatch2\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T15:58:32Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tablebatch2')\r\n \r\n 2013-03-21T15:58:32Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tablebatch2\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'fc317690-6dbf-480a-9262-c442f06abcbe', + 'x-ms-request-id': '31dfe5c1-d541-45b9-b008-008e0ad86b5c', 'x-ms-version': '2011-08-18', - date: 'Mon, 04 Mar 2013 00:06:43 GMT' }); + date: 'Thu, 21 Mar 2013 15:58:31 GMT' }); return result; }, function (nock) { var result = @@ -121,61 +121,61 @@ nock('https://ciserversdk.table.core.windows.net:443') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '3d3a094d-553c-4571-ac03-e9b7c4877edc', + 'x-ms-request-id': '88a1b183-581d-46fd-ad09-2542151ad55a', 'x-ms-version': '2011-08-18', - date: 'Mon, 04 Mar 2013 00:06:43 GMT' }); + date: 'Thu, 21 Mar 2013 15:58:32 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/Tables', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tablebatch3')\r\n \r\n 2013-03-04T00:06:45Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tablebatch3\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tablebatch3')\r\n \r\n 2013-03-21T15:58:34Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tablebatch3\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', location: 'https://ciserversdk.table.core.windows.net/Tables(\'tablebatch3\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '6d266425-4d57-45e4-b9af-8902cdb5973e', + 'x-ms-request-id': '9e089201-4d49-4876-9785-4402a9a2a332', 'x-ms-version': '2011-08-18', - date: 'Mon, 04 Mar 2013 00:06:44 GMT' }); + date: 'Thu, 21 Mar 2013 15:58:33 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/$batch', '*') - .reply(202, "--batchresponse_37a7773d-d9d9-401f-b41c-940a07bbb6d1\r\nContent-Type: multipart/mixed; boundary=changesetresponse_6953264b-7d86-4dd5-9baf-52d61b595316\r\n\r\n--changesetresponse_6953264b-7d86-4dd5-9baf-52d61b595316\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 1\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='1')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A47.3983555Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='1')\r\n \r\n 2013-03-04T00:06:47Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 1\r\n 2013-03-04T00:06:47.3983555Z\r\n street1\r\n \r\n \r\n\r\n--changesetresponse_6953264b-7d86-4dd5-9baf-52d61b595316\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 2\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='2')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A47.3983555Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='2')\r\n \r\n 2013-03-04T00:06:47Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 2\r\n 2013-03-04T00:06:47.3983555Z\r\n street2\r\n \r\n \r\n\r\n--changesetresponse_6953264b-7d86-4dd5-9baf-52d61b595316\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 3\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='3')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A47.3983555Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='3')\r\n \r\n 2013-03-04T00:06:47Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 3\r\n 2013-03-04T00:06:47.3983555Z\r\n street3\r\n \r\n \r\n\r\n--changesetresponse_6953264b-7d86-4dd5-9baf-52d61b595316\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 4\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='4')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A47.3983555Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='4')\r\n \r\n 2013-03-04T00:06:47Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 4\r\n 2013-03-04T00:06:47.3983555Z\r\n street4\r\n \r\n \r\n\r\n--changesetresponse_6953264b-7d86-4dd5-9baf-52d61b595316\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 5\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='5')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A47.3983555Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='5')\r\n \r\n 2013-03-04T00:06:47Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 5\r\n 2013-03-04T00:06:47.3983555Z\r\n street5\r\n \r\n \r\n\r\n--changesetresponse_6953264b-7d86-4dd5-9baf-52d61b595316\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 6\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='6')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A47.3983555Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='6')\r\n \r\n 2013-03-04T00:06:47Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 6\r\n 2013-03-04T00:06:47.3983555Z\r\n street6\r\n \r\n \r\n\r\n--changesetresponse_6953264b-7d86-4dd5-9baf-52d61b595316\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 7\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='7')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A47.3993555Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='7')\r\n \r\n 2013-03-04T00:06:47Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 7\r\n 2013-03-04T00:06:47.3993555Z\r\n street7\r\n \r\n \r\n\r\n--changesetresponse_6953264b-7d86-4dd5-9baf-52d61b595316\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 8\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='8')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A47.3993555Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='8')\r\n \r\n 2013-03-04T00:06:47Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 8\r\n 2013-03-04T00:06:47.3993555Z\r\n street8\r\n \r\n \r\n\r\n--changesetresponse_6953264b-7d86-4dd5-9baf-52d61b595316\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 9\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='9')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A47.3993555Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='9')\r\n \r\n 2013-03-04T00:06:47Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 9\r\n 2013-03-04T00:06:47.3993555Z\r\n street9\r\n \r\n \r\n\r\n--changesetresponse_6953264b-7d86-4dd5-9baf-52d61b595316\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 10\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='10')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A47.3993555Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='10')\r\n \r\n 2013-03-04T00:06:47Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 10\r\n 2013-03-04T00:06:47.3993555Z\r\n street10\r\n \r\n \r\n\r\n--changesetresponse_6953264b-7d86-4dd5-9baf-52d61b595316\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 11\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='11')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A47.3993555Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='11')\r\n \r\n 2013-03-04T00:06:47Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 11\r\n 2013-03-04T00:06:47.3993555Z\r\n street11\r\n \r\n \r\n\r\n--changesetresponse_6953264b-7d86-4dd5-9baf-52d61b595316\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 12\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='12')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A47.3993555Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='12')\r\n \r\n 2013-03-04T00:06:47Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 12\r\n 2013-03-04T00:06:47.3993555Z\r\n street12\r\n \r\n \r\n\r\n--changesetresponse_6953264b-7d86-4dd5-9baf-52d61b595316\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 13\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='13')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A47.3993555Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='13')\r\n \r\n 2013-03-04T00:06:47Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 13\r\n 2013-03-04T00:06:47.3993555Z\r\n street13\r\n \r\n \r\n\r\n--changesetresponse_6953264b-7d86-4dd5-9baf-52d61b595316\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 14\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='14')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A47.3993555Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='14')\r\n \r\n 2013-03-04T00:06:47Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 14\r\n 2013-03-04T00:06:47.3993555Z\r\n street14\r\n \r\n \r\n\r\n--changesetresponse_6953264b-7d86-4dd5-9baf-52d61b595316\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 15\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='15')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A47.3993555Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='15')\r\n \r\n 2013-03-04T00:06:47Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 15\r\n 2013-03-04T00:06:47.3993555Z\r\n street15\r\n \r\n \r\n\r\n--changesetresponse_6953264b-7d86-4dd5-9baf-52d61b595316\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 16\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='16')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A47.3993555Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='16')\r\n \r\n 2013-03-04T00:06:47Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 16\r\n 2013-03-04T00:06:47.3993555Z\r\n street16\r\n \r\n \r\n\r\n--changesetresponse_6953264b-7d86-4dd5-9baf-52d61b595316\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 17\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='17')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A47.3993555Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='17')\r\n \r\n 2013-03-04T00:06:47Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 17\r\n 2013-03-04T00:06:47.3993555Z\r\n street17\r\n \r\n \r\n\r\n--changesetresponse_6953264b-7d86-4dd5-9baf-52d61b595316\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 18\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='18')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A47.3993555Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='18')\r\n \r\n 2013-03-04T00:06:47Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 18\r\n 2013-03-04T00:06:47.3993555Z\r\n street18\r\n \r\n \r\n\r\n--changesetresponse_6953264b-7d86-4dd5-9baf-52d61b595316\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 19\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='19')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A47.3993555Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='19')\r\n \r\n 2013-03-04T00:06:47Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 19\r\n 2013-03-04T00:06:47.3993555Z\r\n street19\r\n \r\n \r\n\r\n--changesetresponse_6953264b-7d86-4dd5-9baf-52d61b595316\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 20\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='20')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A47.3993555Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='20')\r\n \r\n 2013-03-04T00:06:47Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 20\r\n 2013-03-04T00:06:47.3993555Z\r\n street20\r\n \r\n \r\n\r\n--changesetresponse_6953264b-7d86-4dd5-9baf-52d61b595316--\r\n--batchresponse_37a7773d-d9d9-401f-b41c-940a07bbb6d1--\r\n", { 'cache-control': 'no-cache', + .reply(202, "--batchresponse_64ed283c-9d7a-4bad-8408-45d0e2abc621\r\nContent-Type: multipart/mixed; boundary=changesetresponse_30e4b08b-dbb7-474b-bd23-86758595e906\r\n\r\n--changesetresponse_30e4b08b-dbb7-474b-bd23-86758595e906\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 1\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='1')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A35.8203751Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='1')\r\n \r\n 2013-03-21T15:58:35Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 1\r\n 2013-03-21T15:58:35.8203751Z\r\n street1\r\n \r\n \r\n\r\n--changesetresponse_30e4b08b-dbb7-474b-bd23-86758595e906\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 2\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='2')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A35.8203751Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='2')\r\n \r\n 2013-03-21T15:58:35Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 2\r\n 2013-03-21T15:58:35.8203751Z\r\n street2\r\n \r\n \r\n\r\n--changesetresponse_30e4b08b-dbb7-474b-bd23-86758595e906\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 3\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='3')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A35.8203751Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='3')\r\n \r\n 2013-03-21T15:58:35Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 3\r\n 2013-03-21T15:58:35.8203751Z\r\n street3\r\n \r\n \r\n\r\n--changesetresponse_30e4b08b-dbb7-474b-bd23-86758595e906\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 4\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='4')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A35.8203751Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='4')\r\n \r\n 2013-03-21T15:58:35Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 4\r\n 2013-03-21T15:58:35.8203751Z\r\n street4\r\n \r\n \r\n\r\n--changesetresponse_30e4b08b-dbb7-474b-bd23-86758595e906\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 5\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='5')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A35.8203751Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='5')\r\n \r\n 2013-03-21T15:58:35Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 5\r\n 2013-03-21T15:58:35.8203751Z\r\n street5\r\n \r\n \r\n\r\n--changesetresponse_30e4b08b-dbb7-474b-bd23-86758595e906\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 6\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='6')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A35.8203751Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='6')\r\n \r\n 2013-03-21T15:58:35Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 6\r\n 2013-03-21T15:58:35.8203751Z\r\n street6\r\n \r\n \r\n\r\n--changesetresponse_30e4b08b-dbb7-474b-bd23-86758595e906\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 7\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='7')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A35.8203751Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='7')\r\n \r\n 2013-03-21T15:58:35Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 7\r\n 2013-03-21T15:58:35.8203751Z\r\n street7\r\n \r\n \r\n\r\n--changesetresponse_30e4b08b-dbb7-474b-bd23-86758595e906\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 8\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='8')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A35.8203751Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='8')\r\n \r\n 2013-03-21T15:58:35Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 8\r\n 2013-03-21T15:58:35.8203751Z\r\n street8\r\n \r\n \r\n\r\n--changesetresponse_30e4b08b-dbb7-474b-bd23-86758595e906\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 9\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='9')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A35.8203751Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='9')\r\n \r\n 2013-03-21T15:58:35Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 9\r\n 2013-03-21T15:58:35.8203751Z\r\n street9\r\n \r\n \r\n\r\n--changesetresponse_30e4b08b-dbb7-474b-bd23-86758595e906\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 10\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='10')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A35.8203751Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='10')\r\n \r\n 2013-03-21T15:58:35Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 10\r\n 2013-03-21T15:58:35.8203751Z\r\n street10\r\n \r\n \r\n\r\n--changesetresponse_30e4b08b-dbb7-474b-bd23-86758595e906\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 11\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='11')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A35.8203751Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='11')\r\n \r\n 2013-03-21T15:58:35Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 11\r\n 2013-03-21T15:58:35.8203751Z\r\n street11\r\n \r\n \r\n\r\n--changesetresponse_30e4b08b-dbb7-474b-bd23-86758595e906\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 12\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='12')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A35.8203751Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='12')\r\n \r\n 2013-03-21T15:58:35Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 12\r\n 2013-03-21T15:58:35.8203751Z\r\n street12\r\n \r\n \r\n\r\n--changesetresponse_30e4b08b-dbb7-474b-bd23-86758595e906\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 13\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='13')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A35.8203751Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='13')\r\n \r\n 2013-03-21T15:58:35Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 13\r\n 2013-03-21T15:58:35.8203751Z\r\n street13\r\n \r\n \r\n\r\n--changesetresponse_30e4b08b-dbb7-474b-bd23-86758595e906\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 14\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='14')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A35.8203751Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='14')\r\n \r\n 2013-03-21T15:58:35Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 14\r\n 2013-03-21T15:58:35.8203751Z\r\n street14\r\n \r\n \r\n\r\n--changesetresponse_30e4b08b-dbb7-474b-bd23-86758595e906\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 15\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='15')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A35.8203751Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='15')\r\n \r\n 2013-03-21T15:58:35Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 15\r\n 2013-03-21T15:58:35.8203751Z\r\n street15\r\n \r\n \r\n\r\n--changesetresponse_30e4b08b-dbb7-474b-bd23-86758595e906\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 16\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='16')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A35.8203751Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='16')\r\n \r\n 2013-03-21T15:58:35Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 16\r\n 2013-03-21T15:58:35.8203751Z\r\n street16\r\n \r\n \r\n\r\n--changesetresponse_30e4b08b-dbb7-474b-bd23-86758595e906\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 17\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='17')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A35.8213751Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='17')\r\n \r\n 2013-03-21T15:58:35Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 17\r\n 2013-03-21T15:58:35.8213751Z\r\n street17\r\n \r\n \r\n\r\n--changesetresponse_30e4b08b-dbb7-474b-bd23-86758595e906\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 18\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='18')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A35.8213751Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='18')\r\n \r\n 2013-03-21T15:58:35Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 18\r\n 2013-03-21T15:58:35.8213751Z\r\n street18\r\n \r\n \r\n\r\n--changesetresponse_30e4b08b-dbb7-474b-bd23-86758595e906\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 19\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='19')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A35.8213751Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='19')\r\n \r\n 2013-03-21T15:58:35Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 19\r\n 2013-03-21T15:58:35.8213751Z\r\n street19\r\n \r\n \r\n\r\n--changesetresponse_30e4b08b-dbb7-474b-bd23-86758595e906\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 20\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='20')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A35.8213751Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='20')\r\n \r\n 2013-03-21T15:58:35Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 20\r\n 2013-03-21T15:58:35.8213751Z\r\n street20\r\n \r\n \r\n\r\n--changesetresponse_30e4b08b-dbb7-474b-bd23-86758595e906--\r\n--batchresponse_64ed283c-9d7a-4bad-8408-45d0e2abc621--\r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', - 'content-type': 'multipart/mixed; boundary=batchresponse_37a7773d-d9d9-401f-b41c-940a07bbb6d1', + 'content-type': 'multipart/mixed; boundary=batchresponse_64ed283c-9d7a-4bad-8408-45d0e2abc621', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '69ba3b2d-f28f-4ddb-846d-f22a9dba8cc1', + 'x-ms-request-id': '9853fd84-9cd3-44ef-9ba3-47093e4aae8c', 'x-ms-version': '2011-08-18', - date: 'Mon, 04 Mar 2013 00:06:46 GMT' }); + date: 'Thu, 21 Mar 2013 15:58:35 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/tablebatch3(PartitionKey=%27partition1%27,RowKey=%271%27)') - .reply(200, "\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='1')\r\n \r\n 2013-03-04T00:06:50Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 1\r\n 2013-03-04T00:06:47.3983555Z\r\n street1\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='1')\r\n \r\n 2013-03-21T15:58:37Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 1\r\n 2013-03-21T15:58:35.8203751Z\r\n street1\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', - etag: 'W/"datetime\'2013-03-04T00%3A06%3A47.3983555Z\'"', + etag: 'W/"datetime\'2013-03-21T15%3A58%3A35.8203751Z\'"', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '19bfb420-d080-4288-b2b9-82cfcefeaec2', + 'x-ms-request-id': '352c067a-dedf-41a3-8b2c-2e91b8bf425b', 'x-ms-version': '2011-08-18', - date: 'Mon, 04 Mar 2013 00:06:49 GMT' }); + date: 'Thu, 21 Mar 2013 15:58:37 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/Tables') - .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-04T00:06:50Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tablebatch3')\r\n \r\n 2013-03-04T00:06:50Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tablebatch3\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T15:58:38Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tablebatch3')\r\n \r\n 2013-03-21T15:58:38Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tablebatch3\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'a3dc5c88-96da-42a1-a3f5-ea6fcacb8b53', + 'x-ms-request-id': '8b69f661-bbaf-4262-bde6-e15d2f7d96f8', 'x-ms-version': '2011-08-18', - date: 'Mon, 04 Mar 2013 00:06:49 GMT' }); + date: 'Thu, 21 Mar 2013 15:58:38 GMT' }); return result; }, function (nock) { var result = @@ -184,60 +184,60 @@ nock('https://ciserversdk.table.core.windows.net:443') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'f387a8eb-7700-41dd-9f78-a1a52241d079', + 'x-ms-request-id': '70c9cf9c-89ca-4b39-8c71-3fcc3c962386', 'x-ms-version': '2011-08-18', - date: 'Mon, 04 Mar 2013 00:06:51 GMT' }); + date: 'Thu, 21 Mar 2013 15:58:38 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/Tables', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tablebatch4')\r\n \r\n 2013-03-04T00:06:52Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tablebatch4\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tablebatch4')\r\n \r\n 2013-03-21T15:58:40Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tablebatch4\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', location: 'https://ciserversdk.table.core.windows.net/Tables(\'tablebatch4\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '396aa887-e8a3-4d99-b1a2-278c457fdf81', + 'x-ms-request-id': '502ba9a9-5aef-4c8d-aa2f-e4cb04c20686', 'x-ms-version': '2011-08-18', - date: 'Mon, 04 Mar 2013 00:06:52 GMT' }); + date: 'Thu, 21 Mar 2013 15:58:40 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/$batch', '*') - .reply(202, "--batchresponse_b8d66a3d-b38a-479b-80b4-656f433ba340\r\nContent-Type: multipart/mixed; boundary=changesetresponse_8507b34a-fa39-48ba-92c0-16dbfbf33330\r\n\r\n--changesetresponse_8507b34a-fa39-48ba-92c0-16dbfbf33330\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 1\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='1')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A53.7810498Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='1')\r\n \r\n 2013-03-04T00:06:53Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 1\r\n 2013-03-04T00:06:53.7810498Z\r\n street1\r\n \r\n \r\n\r\n--changesetresponse_8507b34a-fa39-48ba-92c0-16dbfbf33330\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 2\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='2')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A53.7810498Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='2')\r\n \r\n 2013-03-04T00:06:53Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 2\r\n 2013-03-04T00:06:53.7810498Z\r\n street2\r\n \r\n \r\n\r\n--changesetresponse_8507b34a-fa39-48ba-92c0-16dbfbf33330\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 3\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='3')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A53.7810498Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='3')\r\n \r\n 2013-03-04T00:06:53Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 3\r\n 2013-03-04T00:06:53.7810498Z\r\n street3\r\n \r\n \r\n\r\n--changesetresponse_8507b34a-fa39-48ba-92c0-16dbfbf33330\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 4\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='4')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A53.7810498Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='4')\r\n \r\n 2013-03-04T00:06:53Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 4\r\n 2013-03-04T00:06:53.7810498Z\r\n street4\r\n \r\n \r\n\r\n--changesetresponse_8507b34a-fa39-48ba-92c0-16dbfbf33330\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 5\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='5')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A53.7810498Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='5')\r\n \r\n 2013-03-04T00:06:53Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 5\r\n 2013-03-04T00:06:53.7810498Z\r\n street5\r\n \r\n \r\n\r\n--changesetresponse_8507b34a-fa39-48ba-92c0-16dbfbf33330\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 6\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='6')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A53.7810498Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='6')\r\n \r\n 2013-03-04T00:06:53Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 6\r\n 2013-03-04T00:06:53.7810498Z\r\n street6\r\n \r\n \r\n\r\n--changesetresponse_8507b34a-fa39-48ba-92c0-16dbfbf33330\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 7\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='7')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A53.7810498Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='7')\r\n \r\n 2013-03-04T00:06:53Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 7\r\n 2013-03-04T00:06:53.7810498Z\r\n street7\r\n \r\n \r\n\r\n--changesetresponse_8507b34a-fa39-48ba-92c0-16dbfbf33330\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 8\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='8')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A53.7810498Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='8')\r\n \r\n 2013-03-04T00:06:53Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 8\r\n 2013-03-04T00:06:53.7810498Z\r\n street8\r\n \r\n \r\n\r\n--changesetresponse_8507b34a-fa39-48ba-92c0-16dbfbf33330\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 9\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='9')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A53.7810498Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='9')\r\n \r\n 2013-03-04T00:06:53Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 9\r\n 2013-03-04T00:06:53.7810498Z\r\n street9\r\n \r\n \r\n\r\n--changesetresponse_8507b34a-fa39-48ba-92c0-16dbfbf33330\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 10\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='10')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A53.7810498Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='10')\r\n \r\n 2013-03-04T00:06:53Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 10\r\n 2013-03-04T00:06:53.7810498Z\r\n street10\r\n \r\n \r\n\r\n--changesetresponse_8507b34a-fa39-48ba-92c0-16dbfbf33330\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 11\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='11')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A53.7810498Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='11')\r\n \r\n 2013-03-04T00:06:53Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 11\r\n 2013-03-04T00:06:53.7810498Z\r\n street11\r\n \r\n \r\n\r\n--changesetresponse_8507b34a-fa39-48ba-92c0-16dbfbf33330\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 12\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='12')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A53.7810498Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='12')\r\n \r\n 2013-03-04T00:06:53Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 12\r\n 2013-03-04T00:06:53.7810498Z\r\n street12\r\n \r\n \r\n\r\n--changesetresponse_8507b34a-fa39-48ba-92c0-16dbfbf33330\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 13\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='13')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A53.7810498Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='13')\r\n \r\n 2013-03-04T00:06:53Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 13\r\n 2013-03-04T00:06:53.7810498Z\r\n street13\r\n \r\n \r\n\r\n--changesetresponse_8507b34a-fa39-48ba-92c0-16dbfbf33330\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 14\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='14')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A53.7820499Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='14')\r\n \r\n 2013-03-04T00:06:53Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 14\r\n 2013-03-04T00:06:53.7820499Z\r\n street14\r\n \r\n \r\n\r\n--changesetresponse_8507b34a-fa39-48ba-92c0-16dbfbf33330\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 15\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='15')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A53.7820499Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='15')\r\n \r\n 2013-03-04T00:06:53Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 15\r\n 2013-03-04T00:06:53.7820499Z\r\n street15\r\n \r\n \r\n\r\n--changesetresponse_8507b34a-fa39-48ba-92c0-16dbfbf33330\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 16\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='16')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A53.7820499Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='16')\r\n \r\n 2013-03-04T00:06:53Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 16\r\n 2013-03-04T00:06:53.7820499Z\r\n street16\r\n \r\n \r\n\r\n--changesetresponse_8507b34a-fa39-48ba-92c0-16dbfbf33330\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 17\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='17')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A53.7820499Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='17')\r\n \r\n 2013-03-04T00:06:53Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 17\r\n 2013-03-04T00:06:53.7820499Z\r\n street17\r\n \r\n \r\n\r\n--changesetresponse_8507b34a-fa39-48ba-92c0-16dbfbf33330\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 18\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='18')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A53.7820499Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='18')\r\n \r\n 2013-03-04T00:06:53Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 18\r\n 2013-03-04T00:06:53.7820499Z\r\n street18\r\n \r\n \r\n\r\n--changesetresponse_8507b34a-fa39-48ba-92c0-16dbfbf33330\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 19\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='19')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A53.7820499Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='19')\r\n \r\n 2013-03-04T00:06:53Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 19\r\n 2013-03-04T00:06:53.7820499Z\r\n street19\r\n \r\n \r\n\r\n--changesetresponse_8507b34a-fa39-48ba-92c0-16dbfbf33330\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 20\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='20')\r\nETag: W/\"datetime'2013-03-04T00%3A06%3A53.7820499Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='20')\r\n \r\n 2013-03-04T00:06:53Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 20\r\n 2013-03-04T00:06:53.7820499Z\r\n street20\r\n \r\n \r\n\r\n--changesetresponse_8507b34a-fa39-48ba-92c0-16dbfbf33330--\r\n--batchresponse_b8d66a3d-b38a-479b-80b4-656f433ba340--\r\n", { 'cache-control': 'no-cache', + .reply(202, "--batchresponse_3f971995-6fb7-490b-bfb9-7d9667848a30\r\nContent-Type: multipart/mixed; boundary=changesetresponse_47b52496-9df6-4ee7-998e-9cb2bf14f698\r\n\r\n--changesetresponse_47b52496-9df6-4ee7-998e-9cb2bf14f698\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 1\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='1')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A42.5599178Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='1')\r\n \r\n 2013-03-21T15:58:42Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 1\r\n 2013-03-21T15:58:42.5599178Z\r\n street1\r\n \r\n \r\n\r\n--changesetresponse_47b52496-9df6-4ee7-998e-9cb2bf14f698\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 2\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='2')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A42.5599178Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='2')\r\n \r\n 2013-03-21T15:58:42Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 2\r\n 2013-03-21T15:58:42.5599178Z\r\n street2\r\n \r\n \r\n\r\n--changesetresponse_47b52496-9df6-4ee7-998e-9cb2bf14f698\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 3\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='3')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A42.5599178Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='3')\r\n \r\n 2013-03-21T15:58:42Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 3\r\n 2013-03-21T15:58:42.5599178Z\r\n street3\r\n \r\n \r\n\r\n--changesetresponse_47b52496-9df6-4ee7-998e-9cb2bf14f698\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 4\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='4')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A42.5599178Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='4')\r\n \r\n 2013-03-21T15:58:42Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 4\r\n 2013-03-21T15:58:42.5599178Z\r\n street4\r\n \r\n \r\n\r\n--changesetresponse_47b52496-9df6-4ee7-998e-9cb2bf14f698\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 5\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='5')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A42.5599178Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='5')\r\n \r\n 2013-03-21T15:58:42Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 5\r\n 2013-03-21T15:58:42.5599178Z\r\n street5\r\n \r\n \r\n\r\n--changesetresponse_47b52496-9df6-4ee7-998e-9cb2bf14f698\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 6\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='6')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A42.5599178Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='6')\r\n \r\n 2013-03-21T15:58:42Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 6\r\n 2013-03-21T15:58:42.5599178Z\r\n street6\r\n \r\n \r\n\r\n--changesetresponse_47b52496-9df6-4ee7-998e-9cb2bf14f698\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 7\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='7')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A42.5599178Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='7')\r\n \r\n 2013-03-21T15:58:42Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 7\r\n 2013-03-21T15:58:42.5599178Z\r\n street7\r\n \r\n \r\n\r\n--changesetresponse_47b52496-9df6-4ee7-998e-9cb2bf14f698\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 8\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='8')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A42.5599178Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='8')\r\n \r\n 2013-03-21T15:58:42Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 8\r\n 2013-03-21T15:58:42.5599178Z\r\n street8\r\n \r\n \r\n\r\n--changesetresponse_47b52496-9df6-4ee7-998e-9cb2bf14f698\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 9\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='9')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A42.5599178Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='9')\r\n \r\n 2013-03-21T15:58:42Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 9\r\n 2013-03-21T15:58:42.5599178Z\r\n street9\r\n \r\n \r\n\r\n--changesetresponse_47b52496-9df6-4ee7-998e-9cb2bf14f698\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 10\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='10')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A42.5599178Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='10')\r\n \r\n 2013-03-21T15:58:42Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 10\r\n 2013-03-21T15:58:42.5599178Z\r\n street10\r\n \r\n \r\n\r\n--changesetresponse_47b52496-9df6-4ee7-998e-9cb2bf14f698\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 11\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='11')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A42.5599178Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='11')\r\n \r\n 2013-03-21T15:58:42Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 11\r\n 2013-03-21T15:58:42.5599178Z\r\n street11\r\n \r\n \r\n\r\n--changesetresponse_47b52496-9df6-4ee7-998e-9cb2bf14f698\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 12\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='12')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A42.5599178Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='12')\r\n \r\n 2013-03-21T15:58:42Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 12\r\n 2013-03-21T15:58:42.5599178Z\r\n street12\r\n \r\n \r\n\r\n--changesetresponse_47b52496-9df6-4ee7-998e-9cb2bf14f698\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 13\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='13')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A42.5609179Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='13')\r\n \r\n 2013-03-21T15:58:42Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 13\r\n 2013-03-21T15:58:42.5609179Z\r\n street13\r\n \r\n \r\n\r\n--changesetresponse_47b52496-9df6-4ee7-998e-9cb2bf14f698\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 14\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='14')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A42.5609179Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='14')\r\n \r\n 2013-03-21T15:58:42Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 14\r\n 2013-03-21T15:58:42.5609179Z\r\n street14\r\n \r\n \r\n\r\n--changesetresponse_47b52496-9df6-4ee7-998e-9cb2bf14f698\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 15\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='15')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A42.5609179Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='15')\r\n \r\n 2013-03-21T15:58:42Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 15\r\n 2013-03-21T15:58:42.5609179Z\r\n street15\r\n \r\n \r\n\r\n--changesetresponse_47b52496-9df6-4ee7-998e-9cb2bf14f698\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 16\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='16')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A42.5609179Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='16')\r\n \r\n 2013-03-21T15:58:42Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 16\r\n 2013-03-21T15:58:42.5609179Z\r\n street16\r\n \r\n \r\n\r\n--changesetresponse_47b52496-9df6-4ee7-998e-9cb2bf14f698\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 17\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='17')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A42.5609179Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='17')\r\n \r\n 2013-03-21T15:58:42Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 17\r\n 2013-03-21T15:58:42.5609179Z\r\n street17\r\n \r\n \r\n\r\n--changesetresponse_47b52496-9df6-4ee7-998e-9cb2bf14f698\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 18\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='18')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A42.5609179Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='18')\r\n \r\n 2013-03-21T15:58:42Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 18\r\n 2013-03-21T15:58:42.5609179Z\r\n street18\r\n \r\n \r\n\r\n--changesetresponse_47b52496-9df6-4ee7-998e-9cb2bf14f698\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 19\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='19')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A42.5609179Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='19')\r\n \r\n 2013-03-21T15:58:42Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 19\r\n 2013-03-21T15:58:42.5609179Z\r\n street19\r\n \r\n \r\n\r\n--changesetresponse_47b52496-9df6-4ee7-998e-9cb2bf14f698\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 20\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='20')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A42.5609179Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='20')\r\n \r\n 2013-03-21T15:58:42Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 20\r\n 2013-03-21T15:58:42.5609179Z\r\n street20\r\n \r\n \r\n\r\n--changesetresponse_47b52496-9df6-4ee7-998e-9cb2bf14f698--\r\n--batchresponse_3f971995-6fb7-490b-bfb9-7d9667848a30--\r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', - 'content-type': 'multipart/mixed; boundary=batchresponse_b8d66a3d-b38a-479b-80b4-656f433ba340', + 'content-type': 'multipart/mixed; boundary=batchresponse_3f971995-6fb7-490b-bfb9-7d9667848a30', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'ba911e6a-7baa-42ac-a2c3-c6e8cad6757d', + 'x-ms-request-id': 'b228bc0e-5291-421e-a317-6e3aae413f9b', 'x-ms-version': '2011-08-18', - date: 'Mon, 04 Mar 2013 00:06:53 GMT' }); + date: 'Thu, 21 Mar 2013 15:58:42 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/tablebatch4()?$filter=address%20eq%20%27street1%27%20and%20RowKey%20eq%20%271%27') - .reply(200, "\r\n\r\n tablebatch4\r\n https://ciserversdk.table.core.windows.net/tablebatch4\r\n 2013-03-04T00:06:56Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='1')\r\n \r\n 2013-03-04T00:06:56Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 1\r\n 2013-03-04T00:06:53.7810498Z\r\n street1\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n tablebatch4\r\n https://ciserversdk.table.core.windows.net/tablebatch4\r\n 2013-03-21T15:58:44Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='1')\r\n \r\n 2013-03-21T15:58:44Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 1\r\n 2013-03-21T15:58:42.5599178Z\r\n street1\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '7a3633a3-540e-4ff3-aad3-d9513d9f3844', + 'x-ms-request-id': '9aed5e93-c68f-4347-ad4b-ceacbbef6a86', 'x-ms-version': '2011-08-18', - date: 'Mon, 04 Mar 2013 00:06:55 GMT' }); + date: 'Thu, 21 Mar 2013 15:58:44 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/Tables') - .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-04T00:06:57Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tablebatch4')\r\n \r\n 2013-03-04T00:06:57Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tablebatch4\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T15:58:46Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tablebatch4')\r\n \r\n 2013-03-21T15:58:46Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tablebatch4\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '4e4d725c-bb44-4d41-ae98-904821b54ccd', + 'x-ms-request-id': '94905516-1752-4bf8-bfd8-390421ab8326', 'x-ms-version': '2011-08-18', - date: 'Mon, 04 Mar 2013 00:06:57 GMT' }); + date: 'Thu, 21 Mar 2013 15:58:45 GMT' }); return result; }, function (nock) { var result = @@ -246,60 +246,60 @@ nock('https://ciserversdk.table.core.windows.net:443') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '9f817b27-1c30-419f-a920-c4fe3128ece7', + 'x-ms-request-id': 'e5cb06f7-84e1-4323-a293-357d4fe7f521', 'x-ms-version': '2011-08-18', - date: 'Mon, 04 Mar 2013 00:06:58 GMT' }); + date: 'Thu, 21 Mar 2013 15:58:45 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/Tables', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tablebatch5')\r\n \r\n 2013-03-04T00:06:59Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tablebatch5\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tablebatch5')\r\n \r\n 2013-03-21T15:58:47Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tablebatch5\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', location: 'https://ciserversdk.table.core.windows.net/Tables(\'tablebatch5\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'b8163d24-f45f-490a-925a-8389276b6cee', + 'x-ms-request-id': '1f4d649c-cd57-4f4f-a632-b743cc32b03b', 'x-ms-version': '2011-08-18', - date: 'Mon, 04 Mar 2013 00:06:59 GMT' }); + date: 'Thu, 21 Mar 2013 15:58:47 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/$batch', '*') - .reply(202, "--batchresponse_2c1426b9-6588-4c8f-8e5c-945c0de1fa4f\r\nContent-Type: multipart/mixed; boundary=changesetresponse_495ad31b-d23b-4759-9107-db5189aa310f\r\n\r\n--changesetresponse_495ad31b-d23b-4759-9107-db5189aa310f\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 1\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='1')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A01.9129895Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='1')\r\n \r\n 2013-03-04T00:07:01Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 1\r\n 2013-03-04T00:07:01.9129895Z\r\n unique\r\n \r\n \r\n\r\n--changesetresponse_495ad31b-d23b-4759-9107-db5189aa310f\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 2\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='2')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A01.9129895Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='2')\r\n \r\n 2013-03-04T00:07:01Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 2\r\n 2013-03-04T00:07:01.9129895Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_495ad31b-d23b-4759-9107-db5189aa310f\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 3\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='3')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A01.9129895Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='3')\r\n \r\n 2013-03-04T00:07:01Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 3\r\n 2013-03-04T00:07:01.9129895Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_495ad31b-d23b-4759-9107-db5189aa310f\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 4\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='4')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A01.9129895Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='4')\r\n \r\n 2013-03-04T00:07:01Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 4\r\n 2013-03-04T00:07:01.9129895Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_495ad31b-d23b-4759-9107-db5189aa310f\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 5\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='5')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A01.9129895Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='5')\r\n \r\n 2013-03-04T00:07:01Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 5\r\n 2013-03-04T00:07:01.9129895Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_495ad31b-d23b-4759-9107-db5189aa310f\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 6\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='6')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A01.9129895Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='6')\r\n \r\n 2013-03-04T00:07:01Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 6\r\n 2013-03-04T00:07:01.9129895Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_495ad31b-d23b-4759-9107-db5189aa310f\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 7\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='7')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A01.9129895Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='7')\r\n \r\n 2013-03-04T00:07:01Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 7\r\n 2013-03-04T00:07:01.9129895Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_495ad31b-d23b-4759-9107-db5189aa310f\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 8\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='8')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A01.9129895Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='8')\r\n \r\n 2013-03-04T00:07:01Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 8\r\n 2013-03-04T00:07:01.9129895Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_495ad31b-d23b-4759-9107-db5189aa310f\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 9\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='9')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A01.9129895Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='9')\r\n \r\n 2013-03-04T00:07:01Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 9\r\n 2013-03-04T00:07:01.9129895Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_495ad31b-d23b-4759-9107-db5189aa310f\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 10\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='10')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A01.9129895Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='10')\r\n \r\n 2013-03-04T00:07:01Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 10\r\n 2013-03-04T00:07:01.9129895Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_495ad31b-d23b-4759-9107-db5189aa310f\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 11\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='11')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A01.9139896Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='11')\r\n \r\n 2013-03-04T00:07:01Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 11\r\n 2013-03-04T00:07:01.9139896Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_495ad31b-d23b-4759-9107-db5189aa310f\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 12\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='12')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A01.9139896Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='12')\r\n \r\n 2013-03-04T00:07:01Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 12\r\n 2013-03-04T00:07:01.9139896Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_495ad31b-d23b-4759-9107-db5189aa310f\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 13\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='13')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A01.9139896Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='13')\r\n \r\n 2013-03-04T00:07:01Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 13\r\n 2013-03-04T00:07:01.9139896Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_495ad31b-d23b-4759-9107-db5189aa310f\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 14\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='14')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A01.9139896Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='14')\r\n \r\n 2013-03-04T00:07:01Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 14\r\n 2013-03-04T00:07:01.9139896Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_495ad31b-d23b-4759-9107-db5189aa310f\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 15\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='15')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A01.9139896Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='15')\r\n \r\n 2013-03-04T00:07:01Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 15\r\n 2013-03-04T00:07:01.9139896Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_495ad31b-d23b-4759-9107-db5189aa310f\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 16\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='16')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A01.9139896Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='16')\r\n \r\n 2013-03-04T00:07:01Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 16\r\n 2013-03-04T00:07:01.9139896Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_495ad31b-d23b-4759-9107-db5189aa310f\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 17\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='17')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A01.9139896Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='17')\r\n \r\n 2013-03-04T00:07:01Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 17\r\n 2013-03-04T00:07:01.9139896Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_495ad31b-d23b-4759-9107-db5189aa310f\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 18\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='18')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A01.9139896Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='18')\r\n \r\n 2013-03-04T00:07:01Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 18\r\n 2013-03-04T00:07:01.9139896Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_495ad31b-d23b-4759-9107-db5189aa310f\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 19\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='19')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A01.9139896Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='19')\r\n \r\n 2013-03-04T00:07:01Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 19\r\n 2013-03-04T00:07:01.9139896Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_495ad31b-d23b-4759-9107-db5189aa310f\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 20\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='20')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A01.9139896Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='20')\r\n \r\n 2013-03-04T00:07:01Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 20\r\n 2013-03-04T00:07:01.9139896Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_495ad31b-d23b-4759-9107-db5189aa310f--\r\n--batchresponse_2c1426b9-6588-4c8f-8e5c-945c0de1fa4f--\r\n", { 'cache-control': 'no-cache', + .reply(202, "--batchresponse_1cccb15e-e6eb-466f-88d5-75b007f8fa1a\r\nContent-Type: multipart/mixed; boundary=changesetresponse_a9c9daef-1876-46f8-b584-42493c1b88f1\r\n\r\n--changesetresponse_a9c9daef-1876-46f8-b584-42493c1b88f1\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 1\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='1')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A49.48442Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='1')\r\n \r\n 2013-03-21T15:58:49Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 1\r\n 2013-03-21T15:58:49.48442Z\r\n unique\r\n \r\n \r\n\r\n--changesetresponse_a9c9daef-1876-46f8-b584-42493c1b88f1\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 2\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='2')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A49.48442Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='2')\r\n \r\n 2013-03-21T15:58:49Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 2\r\n 2013-03-21T15:58:49.48442Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_a9c9daef-1876-46f8-b584-42493c1b88f1\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 3\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='3')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A49.48442Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='3')\r\n \r\n 2013-03-21T15:58:49Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 3\r\n 2013-03-21T15:58:49.48442Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_a9c9daef-1876-46f8-b584-42493c1b88f1\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 4\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='4')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A49.48442Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='4')\r\n \r\n 2013-03-21T15:58:49Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 4\r\n 2013-03-21T15:58:49.48442Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_a9c9daef-1876-46f8-b584-42493c1b88f1\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 5\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='5')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A49.48442Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='5')\r\n \r\n 2013-03-21T15:58:49Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 5\r\n 2013-03-21T15:58:49.48442Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_a9c9daef-1876-46f8-b584-42493c1b88f1\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 6\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='6')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A49.48442Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='6')\r\n \r\n 2013-03-21T15:58:49Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 6\r\n 2013-03-21T15:58:49.48442Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_a9c9daef-1876-46f8-b584-42493c1b88f1\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 7\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='7')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A49.48442Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='7')\r\n \r\n 2013-03-21T15:58:49Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 7\r\n 2013-03-21T15:58:49.48442Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_a9c9daef-1876-46f8-b584-42493c1b88f1\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 8\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='8')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A49.48442Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='8')\r\n \r\n 2013-03-21T15:58:49Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 8\r\n 2013-03-21T15:58:49.48442Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_a9c9daef-1876-46f8-b584-42493c1b88f1\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 9\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='9')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A49.48442Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='9')\r\n \r\n 2013-03-21T15:58:49Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 9\r\n 2013-03-21T15:58:49.48442Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_a9c9daef-1876-46f8-b584-42493c1b88f1\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 10\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='10')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A49.48442Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='10')\r\n \r\n 2013-03-21T15:58:49Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 10\r\n 2013-03-21T15:58:49.48442Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_a9c9daef-1876-46f8-b584-42493c1b88f1\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 11\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='11')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A49.48442Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='11')\r\n \r\n 2013-03-21T15:58:49Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 11\r\n 2013-03-21T15:58:49.48442Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_a9c9daef-1876-46f8-b584-42493c1b88f1\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 12\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='12')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A49.48442Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='12')\r\n \r\n 2013-03-21T15:58:49Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 12\r\n 2013-03-21T15:58:49.48442Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_a9c9daef-1876-46f8-b584-42493c1b88f1\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 13\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='13')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A49.48442Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='13')\r\n \r\n 2013-03-21T15:58:49Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 13\r\n 2013-03-21T15:58:49.48442Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_a9c9daef-1876-46f8-b584-42493c1b88f1\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 14\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='14')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A49.48442Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='14')\r\n \r\n 2013-03-21T15:58:49Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 14\r\n 2013-03-21T15:58:49.48442Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_a9c9daef-1876-46f8-b584-42493c1b88f1\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 15\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='15')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A49.48442Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='15')\r\n \r\n 2013-03-21T15:58:49Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 15\r\n 2013-03-21T15:58:49.48442Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_a9c9daef-1876-46f8-b584-42493c1b88f1\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 16\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='16')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A49.48442Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='16')\r\n \r\n 2013-03-21T15:58:49Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 16\r\n 2013-03-21T15:58:49.48442Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_a9c9daef-1876-46f8-b584-42493c1b88f1\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 17\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='17')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A49.48442Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='17')\r\n \r\n 2013-03-21T15:58:49Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 17\r\n 2013-03-21T15:58:49.48442Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_a9c9daef-1876-46f8-b584-42493c1b88f1\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 18\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='18')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A49.48442Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='18')\r\n \r\n 2013-03-21T15:58:49Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 18\r\n 2013-03-21T15:58:49.48442Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_a9c9daef-1876-46f8-b584-42493c1b88f1\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 19\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='19')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A49.48442Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='19')\r\n \r\n 2013-03-21T15:58:49Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 19\r\n 2013-03-21T15:58:49.48442Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_a9c9daef-1876-46f8-b584-42493c1b88f1\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 20\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='20')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A49.48442Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='20')\r\n \r\n 2013-03-21T15:58:49Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 20\r\n 2013-03-21T15:58:49.48442Z\r\n other\r\n \r\n \r\n\r\n--changesetresponse_a9c9daef-1876-46f8-b584-42493c1b88f1--\r\n--batchresponse_1cccb15e-e6eb-466f-88d5-75b007f8fa1a--\r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', - 'content-type': 'multipart/mixed; boundary=batchresponse_2c1426b9-6588-4c8f-8e5c-945c0de1fa4f', + 'content-type': 'multipart/mixed; boundary=batchresponse_1cccb15e-e6eb-466f-88d5-75b007f8fa1a', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '09e9d8e9-8eb1-45b2-995a-23b4d84a4e87', + 'x-ms-request-id': 'c4b16311-87b3-4687-9efa-2ca2c42484f5', 'x-ms-version': '2011-08-18', - date: 'Mon, 04 Mar 2013 00:07:01 GMT' }); + date: 'Thu, 21 Mar 2013 15:58:49 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/tablebatch5()?$filter=address%20eq%20%27unique%27%20and%20PartitionKey%20eq%20%27partition1%27') - .reply(200, "\r\n\r\n tablebatch5\r\n https://ciserversdk.table.core.windows.net/tablebatch5\r\n 2013-03-04T00:07:03Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='1')\r\n \r\n 2013-03-04T00:07:03Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 1\r\n 2013-03-04T00:07:01.9129895Z\r\n unique\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n tablebatch5\r\n https://ciserversdk.table.core.windows.net/tablebatch5\r\n 2013-03-21T15:58:51Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='1')\r\n \r\n 2013-03-21T15:58:51Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 1\r\n 2013-03-21T15:58:49.48442Z\r\n unique\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '127e5420-3ed5-4558-beb3-94a810100a0c', + 'x-ms-request-id': '4f4a7289-9826-4024-9f29-b92dc0629da3', 'x-ms-version': '2011-08-18', - date: 'Mon, 04 Mar 2013 00:07:02 GMT' }); + date: 'Thu, 21 Mar 2013 15:58:50 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/Tables') - .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-04T00:07:05Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tablebatch5')\r\n \r\n 2013-03-04T00:07:05Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tablebatch5\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T15:58:53Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tablebatch5')\r\n \r\n 2013-03-21T15:58:53Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tablebatch5\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '0de83fc4-5670-4cdc-9aa3-b0e5772e1dcd', + 'x-ms-request-id': '1f2fb034-de79-4855-9f15-f9c0cef4e09f', 'x-ms-version': '2011-08-18', - date: 'Mon, 04 Mar 2013 00:07:04 GMT' }); + date: 'Thu, 21 Mar 2013 15:58:53 GMT' }); return result; }, function (nock) { var result = @@ -308,62 +308,62 @@ nock('https://ciserversdk.table.core.windows.net:443') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '9d516b5d-bcf1-4df1-b739-9c48d57c391d', + 'x-ms-request-id': 'da7ca019-20ed-4de3-a914-e7961f602272', 'x-ms-version': '2011-08-18', - date: 'Mon, 04 Mar 2013 00:07:05 GMT' }); + date: 'Thu, 21 Mar 2013 15:58:53 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/Tables', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tablebatch6')\r\n \r\n 2013-03-04T00:07:07Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tablebatch6\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tablebatch6')\r\n \r\n 2013-03-21T15:58:55Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tablebatch6\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', location: 'https://ciserversdk.table.core.windows.net/Tables(\'tablebatch6\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'f1af052b-c675-4dab-a974-89e0e9ff29e4', + 'x-ms-request-id': '6fcd6484-eb3f-4494-a99b-cac05303edff', 'x-ms-version': '2011-08-18', - date: 'Mon, 04 Mar 2013 00:07:06 GMT' }); + date: 'Thu, 21 Mar 2013 15:58:55 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/$batch', '*') - .reply(202, "--batchresponse_0affcf1e-797d-4527-b56b-d784df166138\r\nContent-Type: multipart/mixed; boundary=changesetresponse_ca8ec7ab-cedd-40a4-909f-c6a296647b02\r\n\r\n--changesetresponse_ca8ec7ab-cedd-40a4-909f-c6a296647b02\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 1\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='1')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A09.725362Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='1')\r\n \r\n 2013-03-04T00:07:09Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 1\r\n 2013-03-04T00:07:09.725362Z\r\n street1\r\n \r\n \r\n\r\n--changesetresponse_ca8ec7ab-cedd-40a4-909f-c6a296647b02\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 2\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='2')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A09.725362Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='2')\r\n \r\n 2013-03-04T00:07:09Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 2\r\n 2013-03-04T00:07:09.725362Z\r\n street2\r\n \r\n \r\n\r\n--changesetresponse_ca8ec7ab-cedd-40a4-909f-c6a296647b02\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 3\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='3')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A09.725362Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='3')\r\n \r\n 2013-03-04T00:07:09Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 3\r\n 2013-03-04T00:07:09.725362Z\r\n street3\r\n \r\n \r\n\r\n--changesetresponse_ca8ec7ab-cedd-40a4-909f-c6a296647b02\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 4\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='4')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A09.725362Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='4')\r\n \r\n 2013-03-04T00:07:09Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 4\r\n 2013-03-04T00:07:09.725362Z\r\n street4\r\n \r\n \r\n\r\n--changesetresponse_ca8ec7ab-cedd-40a4-909f-c6a296647b02\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 5\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='5')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A09.725362Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='5')\r\n \r\n 2013-03-04T00:07:09Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 5\r\n 2013-03-04T00:07:09.725362Z\r\n street5\r\n \r\n \r\n\r\n--changesetresponse_ca8ec7ab-cedd-40a4-909f-c6a296647b02\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 6\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='6')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A09.725362Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='6')\r\n \r\n 2013-03-04T00:07:09Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 6\r\n 2013-03-04T00:07:09.725362Z\r\n street6\r\n \r\n \r\n\r\n--changesetresponse_ca8ec7ab-cedd-40a4-909f-c6a296647b02\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 7\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='7')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A09.725362Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='7')\r\n \r\n 2013-03-04T00:07:09Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 7\r\n 2013-03-04T00:07:09.725362Z\r\n street7\r\n \r\n \r\n\r\n--changesetresponse_ca8ec7ab-cedd-40a4-909f-c6a296647b02\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 8\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='8')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A09.725362Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='8')\r\n \r\n 2013-03-04T00:07:09Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 8\r\n 2013-03-04T00:07:09.725362Z\r\n street8\r\n \r\n \r\n\r\n--changesetresponse_ca8ec7ab-cedd-40a4-909f-c6a296647b02\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 9\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='9')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A09.725362Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='9')\r\n \r\n 2013-03-04T00:07:09Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 9\r\n 2013-03-04T00:07:09.725362Z\r\n street9\r\n \r\n \r\n\r\n--changesetresponse_ca8ec7ab-cedd-40a4-909f-c6a296647b02\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 10\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='10')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A09.725362Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='10')\r\n \r\n 2013-03-04T00:07:09Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 10\r\n 2013-03-04T00:07:09.725362Z\r\n street10\r\n \r\n \r\n\r\n--changesetresponse_ca8ec7ab-cedd-40a4-909f-c6a296647b02\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 11\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='11')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A09.725362Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='11')\r\n \r\n 2013-03-04T00:07:09Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 11\r\n 2013-03-04T00:07:09.725362Z\r\n street11\r\n \r\n \r\n\r\n--changesetresponse_ca8ec7ab-cedd-40a4-909f-c6a296647b02\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 12\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='12')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A09.725362Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='12')\r\n \r\n 2013-03-04T00:07:09Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 12\r\n 2013-03-04T00:07:09.725362Z\r\n street12\r\n \r\n \r\n\r\n--changesetresponse_ca8ec7ab-cedd-40a4-909f-c6a296647b02\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 13\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='13')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A09.725362Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='13')\r\n \r\n 2013-03-04T00:07:09Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 13\r\n 2013-03-04T00:07:09.725362Z\r\n street13\r\n \r\n \r\n\r\n--changesetresponse_ca8ec7ab-cedd-40a4-909f-c6a296647b02\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 14\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='14')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A09.725362Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='14')\r\n \r\n 2013-03-04T00:07:09Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 14\r\n 2013-03-04T00:07:09.725362Z\r\n street14\r\n \r\n \r\n\r\n--changesetresponse_ca8ec7ab-cedd-40a4-909f-c6a296647b02\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 15\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='15')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A09.725362Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='15')\r\n \r\n 2013-03-04T00:07:09Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 15\r\n 2013-03-04T00:07:09.725362Z\r\n street15\r\n \r\n \r\n\r\n--changesetresponse_ca8ec7ab-cedd-40a4-909f-c6a296647b02\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 16\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='16')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A09.725362Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='16')\r\n \r\n 2013-03-04T00:07:09Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 16\r\n 2013-03-04T00:07:09.725362Z\r\n street16\r\n \r\n \r\n\r\n--changesetresponse_ca8ec7ab-cedd-40a4-909f-c6a296647b02\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 17\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='17')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A09.725362Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='17')\r\n \r\n 2013-03-04T00:07:09Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 17\r\n 2013-03-04T00:07:09.725362Z\r\n street17\r\n \r\n \r\n\r\n--changesetresponse_ca8ec7ab-cedd-40a4-909f-c6a296647b02\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 18\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='18')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A09.725362Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='18')\r\n \r\n 2013-03-04T00:07:09Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 18\r\n 2013-03-04T00:07:09.725362Z\r\n street18\r\n \r\n \r\n\r\n--changesetresponse_ca8ec7ab-cedd-40a4-909f-c6a296647b02\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 19\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='19')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A09.725362Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='19')\r\n \r\n 2013-03-04T00:07:09Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 19\r\n 2013-03-04T00:07:09.725362Z\r\n street19\r\n \r\n \r\n\r\n--changesetresponse_ca8ec7ab-cedd-40a4-909f-c6a296647b02\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 20\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='20')\r\nETag: W/\"datetime'2013-03-04T00%3A07%3A09.725362Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='20')\r\n \r\n 2013-03-04T00:07:09Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 20\r\n 2013-03-04T00:07:09.725362Z\r\n street20\r\n \r\n \r\n\r\n--changesetresponse_ca8ec7ab-cedd-40a4-909f-c6a296647b02--\r\n--batchresponse_0affcf1e-797d-4527-b56b-d784df166138--\r\n", { 'cache-control': 'no-cache', + .reply(202, "--batchresponse_769abed4-42fa-4ae6-87a0-4600932c87f2\r\nContent-Type: multipart/mixed; boundary=changesetresponse_c63a30e3-5c74-46bc-b61a-969f57ff1712\r\n\r\n--changesetresponse_c63a30e3-5c74-46bc-b61a-969f57ff1712\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 1\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='1')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A57.6207515Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='1')\r\n \r\n 2013-03-21T15:58:57Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 1\r\n 2013-03-21T15:58:57.6207515Z\r\n street1\r\n \r\n \r\n\r\n--changesetresponse_c63a30e3-5c74-46bc-b61a-969f57ff1712\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 2\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='2')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A57.6207515Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='2')\r\n \r\n 2013-03-21T15:58:57Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 2\r\n 2013-03-21T15:58:57.6207515Z\r\n street2\r\n \r\n \r\n\r\n--changesetresponse_c63a30e3-5c74-46bc-b61a-969f57ff1712\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 3\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='3')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A57.6207515Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='3')\r\n \r\n 2013-03-21T15:58:57Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 3\r\n 2013-03-21T15:58:57.6207515Z\r\n street3\r\n \r\n \r\n\r\n--changesetresponse_c63a30e3-5c74-46bc-b61a-969f57ff1712\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 4\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='4')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A57.6207515Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='4')\r\n \r\n 2013-03-21T15:58:57Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 4\r\n 2013-03-21T15:58:57.6207515Z\r\n street4\r\n \r\n \r\n\r\n--changesetresponse_c63a30e3-5c74-46bc-b61a-969f57ff1712\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 5\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='5')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A57.6217516Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='5')\r\n \r\n 2013-03-21T15:58:57Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 5\r\n 2013-03-21T15:58:57.6217516Z\r\n street5\r\n \r\n \r\n\r\n--changesetresponse_c63a30e3-5c74-46bc-b61a-969f57ff1712\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 6\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='6')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A57.6217516Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='6')\r\n \r\n 2013-03-21T15:58:57Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 6\r\n 2013-03-21T15:58:57.6217516Z\r\n street6\r\n \r\n \r\n\r\n--changesetresponse_c63a30e3-5c74-46bc-b61a-969f57ff1712\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 7\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='7')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A57.6217516Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='7')\r\n \r\n 2013-03-21T15:58:57Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 7\r\n 2013-03-21T15:58:57.6217516Z\r\n street7\r\n \r\n \r\n\r\n--changesetresponse_c63a30e3-5c74-46bc-b61a-969f57ff1712\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 8\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='8')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A57.6217516Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='8')\r\n \r\n 2013-03-21T15:58:57Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 8\r\n 2013-03-21T15:58:57.6217516Z\r\n street8\r\n \r\n \r\n\r\n--changesetresponse_c63a30e3-5c74-46bc-b61a-969f57ff1712\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 9\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='9')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A57.6217516Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='9')\r\n \r\n 2013-03-21T15:58:57Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 9\r\n 2013-03-21T15:58:57.6217516Z\r\n street9\r\n \r\n \r\n\r\n--changesetresponse_c63a30e3-5c74-46bc-b61a-969f57ff1712\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 10\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='10')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A57.6217516Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='10')\r\n \r\n 2013-03-21T15:58:57Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 10\r\n 2013-03-21T15:58:57.6217516Z\r\n street10\r\n \r\n \r\n\r\n--changesetresponse_c63a30e3-5c74-46bc-b61a-969f57ff1712\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 11\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='11')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A57.6217516Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='11')\r\n \r\n 2013-03-21T15:58:57Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 11\r\n 2013-03-21T15:58:57.6217516Z\r\n street11\r\n \r\n \r\n\r\n--changesetresponse_c63a30e3-5c74-46bc-b61a-969f57ff1712\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 12\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='12')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A57.6217516Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='12')\r\n \r\n 2013-03-21T15:58:57Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 12\r\n 2013-03-21T15:58:57.6217516Z\r\n street12\r\n \r\n \r\n\r\n--changesetresponse_c63a30e3-5c74-46bc-b61a-969f57ff1712\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 13\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='13')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A57.6217516Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='13')\r\n \r\n 2013-03-21T15:58:57Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 13\r\n 2013-03-21T15:58:57.6217516Z\r\n street13\r\n \r\n \r\n\r\n--changesetresponse_c63a30e3-5c74-46bc-b61a-969f57ff1712\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 14\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='14')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A57.6217516Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='14')\r\n \r\n 2013-03-21T15:58:57Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 14\r\n 2013-03-21T15:58:57.6217516Z\r\n street14\r\n \r\n \r\n\r\n--changesetresponse_c63a30e3-5c74-46bc-b61a-969f57ff1712\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 15\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='15')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A57.6217516Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='15')\r\n \r\n 2013-03-21T15:58:57Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 15\r\n 2013-03-21T15:58:57.6217516Z\r\n street15\r\n \r\n \r\n\r\n--changesetresponse_c63a30e3-5c74-46bc-b61a-969f57ff1712\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 16\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='16')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A57.6217516Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='16')\r\n \r\n 2013-03-21T15:58:57Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 16\r\n 2013-03-21T15:58:57.6217516Z\r\n street16\r\n \r\n \r\n\r\n--changesetresponse_c63a30e3-5c74-46bc-b61a-969f57ff1712\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 17\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='17')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A57.6217516Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='17')\r\n \r\n 2013-03-21T15:58:57Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 17\r\n 2013-03-21T15:58:57.6217516Z\r\n street17\r\n \r\n \r\n\r\n--changesetresponse_c63a30e3-5c74-46bc-b61a-969f57ff1712\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 18\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='18')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A57.6217516Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='18')\r\n \r\n 2013-03-21T15:58:57Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 18\r\n 2013-03-21T15:58:57.6217516Z\r\n street18\r\n \r\n \r\n\r\n--changesetresponse_c63a30e3-5c74-46bc-b61a-969f57ff1712\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 19\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='19')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A57.6217516Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='19')\r\n \r\n 2013-03-21T15:58:57Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 19\r\n 2013-03-21T15:58:57.6217516Z\r\n street19\r\n \r\n \r\n\r\n--changesetresponse_c63a30e3-5c74-46bc-b61a-969f57ff1712\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 201 Created\r\nContent-ID: 20\r\nCache-Control: no-cache\r\nDataServiceVersion: 1.0;\r\nContent-Type: application/atom+xml;charset=utf-8\r\nLocation: https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='20')\r\nETag: W/\"datetime'2013-03-21T15%3A58%3A57.6217516Z'\"\r\n\r\n\r\n\r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='20')\r\n \r\n 2013-03-21T15:58:57Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 20\r\n 2013-03-21T15:58:57.6217516Z\r\n street20\r\n \r\n \r\n\r\n--changesetresponse_c63a30e3-5c74-46bc-b61a-969f57ff1712--\r\n--batchresponse_769abed4-42fa-4ae6-87a0-4600932c87f2--\r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', - 'content-type': 'multipart/mixed; boundary=batchresponse_0affcf1e-797d-4527-b56b-d784df166138', + 'content-type': 'multipart/mixed; boundary=batchresponse_769abed4-42fa-4ae6-87a0-4600932c87f2', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'e7e9859a-6d36-4184-a56a-864b0bb00349', + 'x-ms-request-id': 'aaeaa95b-847f-4aca-a605-a028c5196a7a', 'x-ms-version': '2011-08-18', - date: 'Mon, 04 Mar 2013 00:07:09 GMT' }); + date: 'Thu, 21 Mar 2013 15:58:57 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/tablebatch6()?$top=4') - .reply(200, "\r\n\r\n tablebatch6\r\n https://ciserversdk.table.core.windows.net/tablebatch6\r\n 2013-03-04T00:07:10Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='1')\r\n \r\n 2013-03-04T00:07:10Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 1\r\n 2013-03-04T00:07:09.725362Z\r\n street1\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='10')\r\n \r\n 2013-03-04T00:07:10Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 10\r\n 2013-03-04T00:07:09.725362Z\r\n street10\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='11')\r\n \r\n 2013-03-04T00:07:10Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 11\r\n 2013-03-04T00:07:09.725362Z\r\n street11\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='12')\r\n \r\n 2013-03-04T00:07:10Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 12\r\n 2013-03-04T00:07:09.725362Z\r\n street12\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n tablebatch6\r\n https://ciserversdk.table.core.windows.net/tablebatch6\r\n 2013-03-21T15:58:59Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='1')\r\n \r\n 2013-03-21T15:58:59Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 1\r\n 2013-03-21T15:58:57.6207515Z\r\n street1\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='10')\r\n \r\n 2013-03-21T15:58:59Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 10\r\n 2013-03-21T15:58:57.6217516Z\r\n street10\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='11')\r\n \r\n 2013-03-21T15:58:59Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 11\r\n 2013-03-21T15:58:57.6217516Z\r\n street11\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='12')\r\n \r\n 2013-03-21T15:58:59Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n partition1\r\n 12\r\n 2013-03-21T15:58:57.6217516Z\r\n street12\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '0b992ea3-007a-4e1b-965e-a6b4758edc00', + 'x-ms-request-id': '01a377af-d2b7-4e95-9b6f-27664b96f36c', 'x-ms-version': '2011-08-18', 'x-ms-continuation-nextpartitionkey': '1!16!cGFydGl0aW9uMQ--', 'x-ms-continuation-nextrowkey': '1!4!MTM-', - date: 'Mon, 04 Mar 2013 00:07:10 GMT' }); + date: 'Thu, 21 Mar 2013 15:58:58 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/Tables') - .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-04T00:07:12Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tablebatch6')\r\n \r\n 2013-03-04T00:07:12Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tablebatch6\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T15:58:59Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tablebatch6')\r\n \r\n 2013-03-21T15:58:59Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tablebatch6\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'de514a9a-de7e-432f-852e-12f7e6e8c66c', + 'x-ms-request-id': 'dfd6e03c-de2e-4216-ad8b-048effe3c3fe', 'x-ms-version': '2011-08-18', - date: 'Mon, 04 Mar 2013 00:07:11 GMT' }); + date: 'Thu, 21 Mar 2013 15:58:58 GMT' }); return result; }, function (nock) { var result = @@ -372,7 +372,7 @@ nock('https://ciserversdk.table.core.windows.net:443') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '3077d1a4-8885-44bf-bbb0-9a99f052a58c', + 'x-ms-request-id': 'de1e0fb7-0524-4ffc-88df-56828600f0fd', 'x-ms-version': '2011-08-18', - date: 'Mon, 04 Mar 2013 00:07:13 GMT' }); + date: 'Thu, 21 Mar 2013 15:59:00 GMT' }); return result; }]]; \ No newline at end of file diff --git a/test/recordings/tableservice-tests.nock.js b/test/recordings/tableservice-tests.nock.js index 34a38c307f..76f48eedda 100644 --- a/test/recordings/tableservice-tests.nock.js +++ b/test/recordings/tableservice-tests.nock.js @@ -4,13 +4,13 @@ exports.scopes = [[function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/Tables') - .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-02-26T13:19:48Z\r\n \r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T16:46:52Z\r\n \r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '281bc0f3-da37-4e70-8009-ef77004030cf', + 'x-ms-request-id': 'be9a7e45-647c-4616-b8d0-a7454591c6c1', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:19:47 GMT' }); + date: 'Thu, 21 Mar 2013 16:46:52 GMT' }); return result; }], [function (nock) { var result = @@ -19,21 +19,21 @@ nock('https://ciserversdk.table.core.windows.net:443') .reply(200, "1.0truefalsefalsefalse1.0falsefalse", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'ae2464b2-5d7d-478d-892c-5497c241795c', + 'x-ms-request-id': 'ef7d97ec-3977-4280-84eb-a4896287ca74', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:19:48 GMT' }); + date: 'Thu, 21 Mar 2013 16:46:51 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/Tables') - .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-02-26T13:19:50Z\r\n \r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T16:46:53Z\r\n \r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '88c0f06c-df68-48c2-a12c-527d71301b98', + 'x-ms-request-id': '98fb76b9-1a68-4e9b-aa64-22455b2f86ab', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:19:50 GMT' }); + date: 'Thu, 21 Mar 2013 16:46:53 GMT' }); return result; }], [function (nock) { var result = @@ -42,9 +42,9 @@ nock('https://ciserversdk.table.core.windows.net:443') .reply(200, "1.0truefalsefalsefalse1.0falsefalse", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '34819e58-f45a-4fc4-94ec-cc413762b53d', + 'x-ms-request-id': 'c6503eaf-c42b-43f0-9ebe-ec0fe01ed430', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:19:50 GMT' }); + date: 'Thu, 21 Mar 2013 16:46:54 GMT' }); return result; }, function (nock) { var result = @@ -53,9 +53,9 @@ nock('https://ciserversdk.table.core.windows.net:443') .put('/?comp=properties&restype=service', '*') .reply(202, "", { 'transfer-encoding': 'chunked', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'a29c57ed-71b0-47dd-a199-f2ec67cc7ce3', + 'x-ms-request-id': '27923390-693b-475b-abcc-53e2d34662df', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:19:51 GMT' }); + date: 'Thu, 21 Mar 2013 16:46:55 GMT' }); return result; }, function (nock) { var result = @@ -64,59 +64,59 @@ nock('https://ciserversdk.table.core.windows.net:443') .reply(200, "1.0truefalsefalsefalse1.0falsefalse", { 'transfer-encoding': 'chunked', 'content-type': 'application/xml', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '9a467340-a4aa-4f4a-a79c-b7aca8440df3', + 'x-ms-request-id': '41f37ad1-bf45-42fc-9dd9-42415fcb2d31', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:19:51 GMT' }); + date: 'Thu, 21 Mar 2013 16:46:56 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/Tables') - .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-02-26T13:19:54Z\r\n \r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T16:46:56Z\r\n \r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'a33b9623-6e64-40a3-af35-f9b416039767', + 'x-ms-request-id': '11390a1b-0ea6-4119-8170-21091588cb0d', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:19:53 GMT' }); + date: 'Thu, 21 Mar 2013 16:46:56 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/Tables', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice1')\r\n \r\n 2013-02-26T13:19:55Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice1\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice1')\r\n \r\n 2013-03-21T16:47:00Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice1\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', location: 'https://ciserversdk.table.core.windows.net/Tables(\'tableservice1\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'fb8c2ac6-c2e7-4c88-b34d-1975e19631e2', + 'x-ms-request-id': '6fac2147-fc9b-4ad5-9699-bb26aa9658bd', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:19:55 GMT' }); + date: 'Thu, 21 Mar 2013 16:46:59 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/Tables(%27tableservice1%27)') - .reply(200, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice1')\r\n \r\n 2013-02-26T13:19:56Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice1\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice1')\r\n \r\n 2013-03-21T16:47:01Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice1\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'cde9f23b-9aa9-4de1-b86a-ac247bab5aa5', + 'x-ms-request-id': 'e2a8e79c-207c-440a-9a1c-ed042d4cba6d', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:19:56 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:01 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/Tables') - .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-02-26T13:19:58Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice1')\r\n \r\n 2013-02-26T13:19:58Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice1\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T16:47:02Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice1')\r\n \r\n 2013-03-21T16:47:02Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice1\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '8f260baa-4a91-4fdd-a7d9-fa3c0a1953fc', + 'x-ms-request-id': '3c885195-0998-4d0a-a2b4-86896a82b4a3', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:19:57 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:02 GMT' }); return result; }, function (nock) { var result = @@ -125,47 +125,47 @@ nock('https://ciserversdk.table.core.windows.net:443') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'fd362d78-1791-4fd5-b49c-14d57a5ca7c4', + 'x-ms-request-id': '12c7409b-0ba6-4af7-9a56-5fb115a8657a', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:19:57 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:02 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/Tables', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice2')\r\n \r\n 2013-02-26T13:19:59Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice2\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice2')\r\n \r\n 2013-03-21T16:47:04Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice2\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', location: 'https://ciserversdk.table.core.windows.net/Tables(\'tableservice2\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'a91220ab-ccd1-4792-b5fc-717e6efd16e2', + 'x-ms-request-id': '89b6c8af-dda4-463d-b54c-b6ec8d76b63c', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:19:58 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:03 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/Tables', '*') - .reply(409, "\r\n\r\n TableAlreadyExists\r\n The table specified already exists.\nRequestId:d20863c0-c6b2-41d4-ba6a-1566ffe071ff\nTime:2013-02-26T13:20:00.6033414Z\r\n", { 'cache-control': 'no-cache', + .reply(409, "\r\n\r\n TableAlreadyExists\r\n The table specified already exists.\nRequestId:5373d09e-9773-43c4-b75c-5b027a6032fd\nTime:2013-03-21T16:47:05.3983722Z\r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'd20863c0-c6b2-41d4-ba6a-1566ffe071ff', + 'x-ms-request-id': '5373d09e-9773-43c4-b75c-5b027a6032fd', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:00 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:04 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/Tables') - .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-02-26T13:20:01Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice2')\r\n \r\n 2013-02-26T13:20:01Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice2\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T16:47:07Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice2')\r\n \r\n 2013-03-21T16:47:07Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice2\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '2396fd4c-3bcf-4913-804b-24824cb49088', + 'x-ms-request-id': '0ddd7916-4069-417e-8a71-e32f5af67043', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:01 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:06 GMT' }); return result; }, function (nock) { var result = @@ -174,73 +174,73 @@ nock('https://ciserversdk.table.core.windows.net:443') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'c81db84b-13ac-4ab5-96bc-1f6dd4db0f29', + 'x-ms-request-id': '50220a96-8001-436b-baef-c86ba89dfc62', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:02 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:07 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/Tables') - .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-02-26T13:20:03Z\r\n \r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T16:47:08Z\r\n \r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '098f56f0-4ba2-409e-a277-f01ca62a24f8', + 'x-ms-request-id': 'f34ebf9f-684a-4c97-8726-80263ccf9271', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:02 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:08 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/Tables', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice3')\r\n \r\n 2013-02-26T13:20:06Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice3\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice3')\r\n \r\n 2013-03-21T16:47:09Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice3\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', location: 'https://ciserversdk.table.core.windows.net/Tables(\'tableservice3\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'e0f2a0c9-6b42-425f-acf3-c3c19bef673e', + 'x-ms-request-id': '232a1853-1749-414c-a4b1-b94627f94516', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:05 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:09 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/Tables', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice4')\r\n \r\n 2013-02-26T13:20:05Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice4\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice4')\r\n \r\n 2013-03-21T16:47:11Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice4\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', location: 'https://ciserversdk.table.core.windows.net/Tables(\'tableservice4\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'd3584b0f-6c2e-4769-878a-b2dd54b64ecb', + 'x-ms-request-id': '86df53ac-2c67-4bc6-a28d-24cb1b1325e2', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:04 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:10 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/Tables') - .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-02-26T13:20:07Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice3')\r\n \r\n 2013-02-26T13:20:07Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice3\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice4')\r\n \r\n 2013-02-26T13:20:07Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice4\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T16:47:11Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice3')\r\n \r\n 2013-03-21T16:47:11Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice3\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice4')\r\n \r\n 2013-03-21T16:47:11Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice4\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '007aa759-e250-475d-b05d-b82da3cec5e0', + 'x-ms-request-id': '95a6eb16-c669-4cf5-b418-aee6d644b8e2', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:06 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:11 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/Tables') - .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-02-26T13:20:07Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice3')\r\n \r\n 2013-02-26T13:20:07Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice3\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice4')\r\n \r\n 2013-02-26T13:20:07Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice4\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T16:47:13Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice3')\r\n \r\n 2013-03-21T16:47:13Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice3\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice4')\r\n \r\n 2013-03-21T16:47:13Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice4\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'b16fb471-0967-4e24-999f-62d2e1359d10', + 'x-ms-request-id': '2665847d-c6ba-40eb-a556-402b82bb1093', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:07 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:12 GMT' }); return result; }, function (nock) { var result = @@ -249,9 +249,9 @@ nock('https://ciserversdk.table.core.windows.net:443') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '83e9f76e-b9f5-4f70-b54d-8e9c2be7f095', + 'x-ms-request-id': '8ddd69c3-d267-470b-93c8-b32fe239ae79', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:09 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:16 GMT' }); return result; }, function (nock) { var result = @@ -260,23 +260,23 @@ nock('https://ciserversdk.table.core.windows.net:443') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'aca8a8f0-5e77-4596-a2ad-3147fb49b668', + 'x-ms-request-id': '251f4547-8409-445f-b8ba-e8dabd2e1403', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:09 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:16 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/Tables', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice5')\r\n \r\n 2013-02-26T13:20:10Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice5\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice5')\r\n \r\n 2013-03-21T16:47:18Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice5\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', location: 'https://ciserversdk.table.core.windows.net/Tables(\'tableservice5\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'e5bc1e16-3b75-4dcd-8563-bc0a69e87fa1', + 'x-ms-request-id': '1b172717-c2d0-4a17-983f-98b486d7e052', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:10 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:18 GMT' }); return result; }, function (nock) { var result = @@ -285,102 +285,102 @@ nock('https://ciserversdk.table.core.windows.net:443') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '200fbc16-c9db-406d-ab92-70be6286980a', + 'x-ms-request-id': '1ea2e486-b1cb-4714-b718-71dcaf4c1ce2', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:11 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:19 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/Tables') - .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-02-26T13:20:13Z\r\n \r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T16:47:20Z\r\n \r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '8f90b8bc-6395-41fd-924c-2563db9a68c1', + 'x-ms-request-id': '5caed72a-4925-46df-a183-a1a1b985d6e9', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:12 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:20 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/Tables', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice6')\r\n \r\n 2013-02-26T13:20:13Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice6\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice6')\r\n \r\n 2013-03-21T16:47:22Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice6\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', location: 'https://ciserversdk.table.core.windows.net/Tables(\'tableservice6\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '304e0cb0-cfdb-4e62-b879-daa75e2b2f7f', + 'x-ms-request-id': 'e5eea759-c776-41f7-84dd-1ceb2c30d834', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:12 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:21 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/tableservice6', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice6(PartitionKey='part1',RowKey='row1')\r\n \r\n 2013-02-26T13:20:13Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n part1\r\n row1\r\n 2013-02-26T13:20:13.6412853Z\r\n my field\r\n my other field\r\n my properties\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice6(PartitionKey='part1',RowKey='row1')\r\n \r\n 2013-03-21T16:47:24Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n part1\r\n row1\r\n 2013-03-21T16:47:24.3598787Z\r\n my field\r\n my other field\r\n my properties\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', - etag: 'W/"datetime\'2013-02-26T13%3A20%3A13.6412853Z\'"', + etag: 'W/"datetime\'2013-03-21T16%3A47%3A24.3598787Z\'"', location: 'https://ciserversdk.table.core.windows.net/tableservice6(PartitionKey=\'part1\',RowKey=\'row1\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'b9f31eb0-073c-4f7f-96a1-75b809f17bf8', + 'x-ms-request-id': 'b6e82ad7-c20d-4c92-8c74-f42e2e193727', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:13 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:23 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/tableservice6', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice6(PartitionKey='part2',RowKey='row1')\r\n \r\n 2013-02-26T13:20:15Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n part2\r\n row1\r\n 2013-02-26T13:20:15.6379736Z\r\n true\r\n false\r\n 42\r\n 2012-01-25T00:00:00Z\r\n 2013-03-16T00:46:20Z\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice6(PartitionKey='part2',RowKey='row1')\r\n \r\n 2013-03-21T16:47:24Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n part2\r\n row1\r\n 2013-03-21T16:47:24.9698677Z\r\n true\r\n false\r\n 42\r\n 2012-01-25T00:00:00Z\r\n 2013-03-16T00:46:20Z\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', - etag: 'W/"datetime\'2013-02-26T13%3A20%3A15.6379736Z\'"', + etag: 'W/"datetime\'2013-03-21T16%3A47%3A24.9698677Z\'"', location: 'https://ciserversdk.table.core.windows.net/tableservice6(PartitionKey=\'part2\',RowKey=\'row1\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '516fa15e-1455-48c5-862f-73cbc27525b5', + 'x-ms-request-id': '315efb7a-a866-43ad-a316-135d026f428d', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:15 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:24 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/tableservice6()') - .reply(200, "\r\n\r\n tableservice6\r\n https://ciserversdk.table.core.windows.net/tableservice6\r\n 2013-02-26T13:20:16Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tableservice6(PartitionKey='part1',RowKey='row1')\r\n \r\n 2013-02-26T13:20:16Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n part1\r\n row1\r\n 2013-02-26T13:20:13.6412853Z\r\n my field\r\n my other field\r\n my properties\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tableservice6(PartitionKey='part2',RowKey='row1')\r\n \r\n 2013-02-26T13:20:16Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n part2\r\n row1\r\n 2013-02-26T13:20:15.6379736Z\r\n true\r\n false\r\n 42\r\n 2012-01-25T00:00:00Z\r\n 2013-03-16T00:46:20Z\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n tableservice6\r\n https://ciserversdk.table.core.windows.net/tableservice6\r\n 2013-03-21T16:47:27Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tableservice6(PartitionKey='part1',RowKey='row1')\r\n \r\n 2013-03-21T16:47:27Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n part1\r\n row1\r\n 2013-03-21T16:47:24.3598787Z\r\n my field\r\n my other field\r\n my properties\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tableservice6(PartitionKey='part2',RowKey='row1')\r\n \r\n 2013-03-21T16:47:27Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n part2\r\n row1\r\n 2013-03-21T16:47:24.9698677Z\r\n true\r\n false\r\n 42\r\n 2012-01-25T00:00:00Z\r\n 2013-03-16T00:46:20Z\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '481133ba-d5d8-4da3-a981-a7ee5a4303b0', + 'x-ms-request-id': '4a45eea7-ad75-4af7-9b69-0e7a30949548', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:15 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:27 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/tableservice6(PartitionKey=%27part1%27,RowKey=%27row1%27)') - .reply(200, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice6(PartitionKey='part1',RowKey='row1')\r\n \r\n 2013-02-26T13:20:18Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n part1\r\n row1\r\n 2013-02-26T13:20:13.6412853Z\r\n my field\r\n my other field\r\n my properties\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice6(PartitionKey='part1',RowKey='row1')\r\n \r\n 2013-03-21T16:47:28Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n part1\r\n row1\r\n 2013-03-21T16:47:24.3598787Z\r\n my field\r\n my other field\r\n my properties\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', - etag: 'W/"datetime\'2013-02-26T13%3A20%3A13.6412853Z\'"', + etag: 'W/"datetime\'2013-03-21T16%3A47%3A24.3598787Z\'"', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'd02c0286-84dc-4368-b0a0-c7c05cf57b18', + 'x-ms-request-id': '6d16b1c4-eb5a-4402-977d-4edded65bff2', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:17 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:28 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/Tables') - .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-02-26T13:20:19Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice6')\r\n \r\n 2013-02-26T13:20:19Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice6\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T16:47:29Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice6')\r\n \r\n 2013-03-21T16:47:29Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice6\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '6d5003f1-5524-449f-af02-19d9f32fa754', + 'x-ms-request-id': 'bfcaf2bd-7016-4355-860c-e32044009208', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:19 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:29 GMT' }); return result; }, function (nock) { var result = @@ -389,63 +389,63 @@ nock('https://ciserversdk.table.core.windows.net:443') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '8041c2ed-3eca-47fd-a0d0-856bd35fca7c', + 'x-ms-request-id': 'be524b8d-4e6b-4a24-b4b0-4a73e5b0a4dd', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:20 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:30 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/Tables', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice7')\r\n \r\n 2013-02-26T13:20:22Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice7\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice7')\r\n \r\n 2013-03-21T16:47:32Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice7\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', location: 'https://ciserversdk.table.core.windows.net/Tables(\'tableservice7\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '8677612e-e67b-42f9-af4a-80980fda6a3f', + 'x-ms-request-id': '6930f97f-1442-4786-8e32-2f9c6c3a2ce6', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:22 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:31 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/tableservice7', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice7(PartitionKey='part1',RowKey='row1')\r\n \r\n 2013-02-26T13:20:23Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n part1\r\n row1\r\n 2013-02-26T13:20:23.5092916Z\r\n XML <test>\r\n my other field\r\n my properties\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice7(PartitionKey='part1',RowKey='row1')\r\n \r\n 2013-03-21T16:47:34Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n part1\r\n row1\r\n 2013-03-21T16:47:34.0850691Z\r\n XML <test>\r\n my other field\r\n my properties\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', - etag: 'W/"datetime\'2013-02-26T13%3A20%3A23.5092916Z\'"', + etag: 'W/"datetime\'2013-03-21T16%3A47%3A34.0850691Z\'"', location: 'https://ciserversdk.table.core.windows.net/tableservice7(PartitionKey=\'part1\',RowKey=\'row1\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '11e820fa-16d1-4866-9fbc-b66144d73ab7', + 'x-ms-request-id': 'b889a010-b771-4382-8126-68d05e53b12a', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:23 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:33 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/tableservice7(PartitionKey=%27part1%27,RowKey=%27row1%27)') - .reply(200, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice7(PartitionKey='part1',RowKey='row1')\r\n \r\n 2013-02-26T13:20:25Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n part1\r\n row1\r\n 2013-02-26T13:20:23.5092916Z\r\n XML <test>\r\n my other field\r\n my properties\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice7(PartitionKey='part1',RowKey='row1')\r\n \r\n 2013-03-21T16:47:34Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n part1\r\n row1\r\n 2013-03-21T16:47:34.0850691Z\r\n XML <test>\r\n my other field\r\n my properties\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', - etag: 'W/"datetime\'2013-02-26T13%3A20%3A23.5092916Z\'"', + etag: 'W/"datetime\'2013-03-21T16%3A47%3A34.0850691Z\'"', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '8563c042-856d-4046-9369-92b57c9d4be9', + 'x-ms-request-id': '328854dd-60f8-4d07-8cc8-57b6a0be14ea', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:24 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:33 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/Tables') - .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-02-26T13:20:26Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice7')\r\n \r\n 2013-02-26T13:20:26Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice7\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T16:47:35Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice7')\r\n \r\n 2013-03-21T16:47:35Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice7\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'a160cea7-6632-45a9-8374-46df72aec12e', + 'x-ms-request-id': '4e588c05-fa7b-48f1-b452-198246db53a4', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:25 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:34 GMT' }); return result; }, function (nock) { var result = @@ -454,38 +454,38 @@ nock('https://ciserversdk.table.core.windows.net:443') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '18715e2d-97f7-48eb-8d04-63aad4611aa6', + 'x-ms-request-id': '0307f455-565b-4cc3-a1a8-bef7c0c3087d', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:27 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:36 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/Tables', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice8')\r\n \r\n 2013-02-26T13:20:28Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice8\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice8')\r\n \r\n 2013-03-21T16:47:37Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice8\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', location: 'https://ciserversdk.table.core.windows.net/Tables(\'tableservice8\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '500824ec-d032-42f9-98a2-eea63be3b190', + 'x-ms-request-id': 'd361fd1c-6392-4205-a3ff-3cdf0a7bcd22', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:28 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:36 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/tableservice8', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice8(PartitionKey='part1',RowKey='row1')\r\n \r\n 2013-02-26T13:20:29Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n part1\r\n row1\r\n 2013-02-26T13:20:29.4506382Z\r\n XML <test>\r\n my other field\r\n my properties\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice8(PartitionKey='part1',RowKey='row1')\r\n \r\n 2013-03-21T16:47:39Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n part1\r\n row1\r\n 2013-03-21T16:47:39.4549057Z\r\n XML <test>\r\n my other field\r\n my properties\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', - etag: 'W/"datetime\'2013-02-26T13%3A20%3A29.4506382Z\'"', + etag: 'W/"datetime\'2013-03-21T16%3A47%3A39.4549057Z\'"', location: 'https://ciserversdk.table.core.windows.net/tableservice8(PartitionKey=\'part1\',RowKey=\'row1\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'd76acb9d-7fb0-452e-b803-12459fd2390d', + 'x-ms-request-id': '2b3ee0d6-cbc1-413f-9236-7a44c05b61fd', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:29 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:39 GMT' }); return result; }, function (nock) { var result = @@ -494,21 +494,21 @@ nock('https://ciserversdk.table.core.windows.net:443') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '612e0f13-76a6-407e-9b78-7fee254f5947', + 'x-ms-request-id': '13b20d9b-9113-4756-b23a-70979db4cc2a', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:29 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:39 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/Tables') - .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-02-26T13:20:30Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice8')\r\n \r\n 2013-02-26T13:20:30Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice8\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T16:47:41Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice8')\r\n \r\n 2013-03-21T16:47:41Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice8\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'c2909e39-c90e-4b49-9a79-9bef9e4d87d9', + 'x-ms-request-id': '9a0d42d8-b7a4-4690-b1a7-516250411096', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:30 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:41 GMT' }); return result; }, function (nock) { var result = @@ -517,61 +517,61 @@ nock('https://ciserversdk.table.core.windows.net:443') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'eaaafafd-2cf1-437a-8ad1-df9707cd9225', + 'x-ms-request-id': '501a7756-007b-4220-9c30-1f656f751866', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:32 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:41 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/Tables', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice9')\r\n \r\n 2013-02-26T13:20:34Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice9\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice9')\r\n \r\n 2013-03-21T16:47:43Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice9\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', location: 'https://ciserversdk.table.core.windows.net/Tables(\'tableservice9\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '0270bf7d-ba98-4607-b203-0a353c2ed074', + 'x-ms-request-id': '96192be3-ed29-46da-b19d-47537f73c687', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:34 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:43 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/tableservice9', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice9(PartitionKey='part1',RowKey='row1')\r\n \r\n 2013-02-26T13:20:35Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n part1\r\n row1\r\n 2013-02-26T13:20:35.4267143Z\r\n XML <test>\r\n my other field\r\n my properties\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice9(PartitionKey='part1',RowKey='row1')\r\n \r\n 2013-03-21T16:47:44Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n part1\r\n row1\r\n 2013-03-21T16:47:44.7378258Z\r\n XML <test>\r\n my other field\r\n my properties\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', - etag: 'W/"datetime\'2013-02-26T13%3A20%3A35.4267143Z\'"', + etag: 'W/"datetime\'2013-03-21T16%3A47%3A44.7378258Z\'"', location: 'https://ciserversdk.table.core.windows.net/tableservice9(PartitionKey=\'part1\',RowKey=\'row1\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'd24d7c17-62cc-4e10-9302-acc10df4518c', + 'x-ms-request-id': 'b918eabe-7266-4518-b20e-28df0527becc', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:35 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:44 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .delete('/tableservice9(PartitionKey=%27part1%27,RowKey=%27row1%27)') - .reply(412, "\r\n\r\n UpdateConditionNotSatisfied\r\n The update condition specified in the request was not satisfied.\nRequestId:28ce52f8-2de6-48d0-aa77-2f98f0d10a2d\nTime:2013-02-26T13:20:35.8655080Z\r\n", { 'cache-control': 'no-cache', + .reply(412, "\r\n\r\n UpdateConditionNotSatisfied\r\n The update condition specified in the request was not satisfied.\nRequestId:fb9ea3e9-b978-4dee-8079-55ea58939d24\nTime:2013-03-21T16:47:45.3041346Z\r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '28ce52f8-2de6-48d0-aa77-2f98f0d10a2d', + 'x-ms-request-id': 'fb9ea3e9-b978-4dee-8079-55ea58939d24', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:35 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:44 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/Tables') - .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-02-26T13:20:37Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice9')\r\n \r\n 2013-02-26T13:20:37Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice9\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T16:47:47Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice9')\r\n \r\n 2013-03-21T16:47:47Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice9\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'b507dc05-d5f1-4bc1-a52c-2d5fa2b50f6c', + 'x-ms-request-id': '95bb9f02-b809-4ed7-a128-713d42f3fa8f', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:37 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:47 GMT' }); return result; }, function (nock) { var result = @@ -580,38 +580,38 @@ nock('https://ciserversdk.table.core.windows.net:443') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'a9fa1a50-68e4-4b8c-9cd8-b804469215dc', + 'x-ms-request-id': '8db33867-1ba7-4c1e-aebe-00c987628612', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:37 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:46 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/Tables', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice10')\r\n \r\n 2013-02-26T13:20:38Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice10\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice10')\r\n \r\n 2013-03-21T16:47:49Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice10\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', location: 'https://ciserversdk.table.core.windows.net/Tables(\'tableservice10\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '01a5d09a-dc9c-47c9-b61e-8967ff433837', + 'x-ms-request-id': 'ee869c2b-ae10-4414-83b4-1ced1ab02f25', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:38 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:48 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/tableservice10', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice10(PartitionKey='part1',RowKey='row1')\r\n \r\n 2013-02-26T13:20:40Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n part1\r\n row1\r\n 2013-02-26T13:20:40.8412916Z\r\n XML <test>\r\n my other field\r\n my properties\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice10(PartitionKey='part1',RowKey='row1')\r\n \r\n 2013-03-21T16:47:50Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n part1\r\n row1\r\n 2013-03-21T16:47:50.2782123Z\r\n XML <test>\r\n my other field\r\n my properties\r\n W/\"datetime'2009-05-27T12%3A15%3A15.3321531Z'\"\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', - etag: 'W/"datetime\'2013-02-26T13%3A20%3A40.8412916Z\'"', + etag: 'W/"datetime\'2013-03-21T16%3A47%3A50.2782123Z\'"', location: 'https://ciserversdk.table.core.windows.net/tableservice10(PartitionKey=\'part1\',RowKey=\'row1\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '6505f02a-4842-4faa-866c-dcb3a666051c', + 'x-ms-request-id': 'dc4d5e54-9d90-475c-a77e-ae876033e739', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:40 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:49 GMT' }); return result; }, function (nock) { var result = @@ -620,23 +620,23 @@ nock('https://ciserversdk.table.core.windows.net:443') .put('/tableservice10(PartitionKey=%27part1%27,RowKey=%27row1%27)', '*') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', - etag: 'W/"datetime\'2013-02-26T13%3A20%3A41.4954051Z\'"', + etag: 'W/"datetime\'2013-03-21T16%3A47%3A51.3885398Z\'"', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '48294cf4-9f64-483c-8909-a3beb37bfad6', + 'x-ms-request-id': 'c0f05cc9-b5b2-4e0c-9fa0-d19e5a3fdee4', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:41 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:50 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/Tables') - .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-02-26T13:20:42Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice10')\r\n \r\n 2013-02-26T13:20:42Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice10\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T16:47:51Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice10')\r\n \r\n 2013-03-21T16:47:51Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice10\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'ab5f4eb1-bda1-41a8-b14c-64d160e71ef4', + 'x-ms-request-id': '97f5eb86-350b-4862-9a61-9a44959f6b48', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:42 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:50 GMT' }); return result; }, function (nock) { var result = @@ -645,62 +645,62 @@ nock('https://ciserversdk.table.core.windows.net:443') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '5ff75653-b18d-4fc7-a8a2-1a8b2033cab3', + 'x-ms-request-id': '47c5f542-5104-42bd-9b9d-baff2c7f8a85', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:43 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:53 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/Tables', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice11')\r\n \r\n 2013-02-26T13:20:45Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice11\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice11')\r\n \r\n 2013-03-21T16:47:55Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice11\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', location: 'https://ciserversdk.table.core.windows.net/Tables(\'tableservice11\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'b9e5d968-2885-4e7a-83ab-feeb93cbfa49', + 'x-ms-request-id': 'd2d2e4ef-7401-4c8b-bbe2-13d7aa864493', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:44 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:54 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/tableservice11', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice11(PartitionKey='part1',RowKey='row1')\r\n \r\n 2013-02-26T13:20:45Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n part1\r\n row1\r\n 2013-02-26T13:20:45.871237Z\r\n XML <test>\r\n value\r\n my properties\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice11(PartitionKey='part1',RowKey='row1')\r\n \r\n 2013-03-21T16:47:55Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n part1\r\n row1\r\n 2013-03-21T16:47:55.4807023Z\r\n XML <test>\r\n value\r\n my properties\r\n W/\"datetime'2013-03-21T16%3A47%3A51.3885398Z'\"\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', - etag: 'W/"datetime\'2013-02-26T13%3A20%3A45.871237Z\'"', + etag: 'W/"datetime\'2013-03-21T16%3A47%3A55.4807023Z\'"', location: 'https://ciserversdk.table.core.windows.net/tableservice11(PartitionKey=\'part1\',RowKey=\'row1\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '8cf9211e-01a9-41c1-aa3d-3533541e24a2', + 'x-ms-request-id': 'd024c00e-d262-4ebc-add4-715a7b8089ed', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:45 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:54 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .put('/tableservice11(PartitionKey=%27part1%27,RowKey=%27row1%27)', '*') - .reply(412, "\r\n\r\n UpdateConditionNotSatisfied\r\n The update condition specified in the request was not satisfied.\nRequestId:c193090f-b986-42c5-b442-19b5d6259b3c\nTime:2013-02-26T13:20:46.9932916Z\r\n", { 'cache-control': 'no-cache', + .reply(412, "\r\n\r\n UpdateConditionNotSatisfied\r\n The update condition specified in the request was not satisfied.\nRequestId:7c7e395a-ad01-4439-ae61-d8d12e9bf8ac\nTime:2013-03-21T16:47:56.6645816Z\r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'c193090f-b986-42c5-b442-19b5d6259b3c', + 'x-ms-request-id': '7c7e395a-ad01-4439-ae61-d8d12e9bf8ac', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:46 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:55 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/Tables') - .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-02-26T13:20:47Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice11')\r\n \r\n 2013-02-26T13:20:47Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice11\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T16:47:58Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice11')\r\n \r\n 2013-03-21T16:47:58Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice11\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'bcda4477-97d1-464e-9cb5-2f76c25494e2', + 'x-ms-request-id': 'ce0a1ece-201a-43f8-832a-d2a1111db070', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:46 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:58 GMT' }); return result; }, function (nock) { var result = @@ -709,38 +709,38 @@ nock('https://ciserversdk.table.core.windows.net:443') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '3d8328f1-a75d-4440-8634-e61ddede4f99', + 'x-ms-request-id': '4b09b354-36dc-476f-aaba-f2e0c157a716', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:48 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:58 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/Tables', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice12')\r\n \r\n 2013-02-26T13:20:50Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice12\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice12')\r\n \r\n 2013-03-21T16:48:00Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice12\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', location: 'https://ciserversdk.table.core.windows.net/Tables(\'tableservice12\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'f6165434-74bc-4fa7-b86c-33501c439d7d', + 'x-ms-request-id': 'd5e12bcf-bf99-4109-938d-dae12915f745', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:50 GMT' }); + date: 'Thu, 21 Mar 2013 16:47:59 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/tableservice12', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice12(PartitionKey='part1',RowKey='row1')\r\n \r\n 2013-02-26T13:20:50Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n part1\r\n row1\r\n 2013-02-26T13:20:50.850966Z\r\n XML <test>\r\n value\r\n my properties\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice12(PartitionKey='part1',RowKey='row1')\r\n \r\n 2013-03-21T16:48:00Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n part1\r\n row1\r\n 2013-03-21T16:48:00.2315468Z\r\n XML <test>\r\n value\r\n my properties\r\n W/\"datetime'2009-05-27T12%3A15%3A15.3321531Z'\"\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', - etag: 'W/"datetime\'2013-02-26T13%3A20%3A50.850966Z\'"', + etag: 'W/"datetime\'2013-03-21T16%3A48%3A00.2315468Z\'"', location: 'https://ciserversdk.table.core.windows.net/tableservice12(PartitionKey=\'part1\',RowKey=\'row1\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '5c738cc8-e341-4d25-ac5e-fafe2d587c37', + 'x-ms-request-id': 'ad20d799-1436-47f7-add9-377c8f58c20d', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:50 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:00 GMT' }); return result; }, function (nock) { var result = @@ -749,23 +749,23 @@ nock('https://ciserversdk.table.core.windows.net:443') .merge('/tableservice12(PartitionKey=%27part1%27,RowKey=%27row1%27)', '*') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', - etag: 'W/"datetime\'2013-02-26T13%3A20%3A51.6984051Z\'"', + etag: 'W/"datetime\'2013-03-21T16%3A48%3A02.7736782Z\'"', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '6bc74bca-661a-41d8-9428-20f2c5c7babc', + 'x-ms-request-id': '1e69941c-a5ab-4805-8189-3c08e67ef64f', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:51 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:02 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/Tables') - .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-02-26T13:20:52Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice12')\r\n \r\n 2013-02-26T13:20:52Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice12\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T16:48:03Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice12')\r\n \r\n 2013-03-21T16:48:03Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice12\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '1b8d65c7-cdac-41a7-87d4-d6013d6709ce', + 'x-ms-request-id': '03f6dcf2-dab1-4a95-8c17-d5480dab0b59', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:52 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:03 GMT' }); return result; }, function (nock) { var result = @@ -774,62 +774,62 @@ nock('https://ciserversdk.table.core.windows.net:443') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'ac837d2c-27a9-410e-8dd0-3d39a7700c41', + 'x-ms-request-id': '2ed7cca4-9b0f-48a7-8d48-96dccb083a3b', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:53 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:03 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/Tables', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice13')\r\n \r\n 2013-02-26T13:20:54Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice13\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice13')\r\n \r\n 2013-03-21T16:48:06Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice13\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', location: 'https://ciserversdk.table.core.windows.net/Tables(\'tableservice13\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'e3b3a4b2-c4c9-483c-84f2-bcd0d7fe0eb1', + 'x-ms-request-id': 'e90c8174-ffaa-4f0c-80fd-b7d6455c0dc9', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:54 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:05 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/tableservice13', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice13(PartitionKey='part1',RowKey='row1')\r\n \r\n 2013-02-26T13:20:56Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n part1\r\n row1\r\n 2013-02-26T13:20:56.8094951Z\r\n XML <test>\r\n value\r\n my properties\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice13(PartitionKey='part1',RowKey='row1')\r\n \r\n 2013-03-21T16:48:08Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n part1\r\n row1\r\n 2013-03-21T16:48:08.9211163Z\r\n XML <test>\r\n value\r\n my properties\r\n W/\"datetime'2013-03-21T16%3A48%3A02.7736782Z'\"\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', - etag: 'W/"datetime\'2013-02-26T13%3A20%3A56.8094951Z\'"', + etag: 'W/"datetime\'2013-03-21T16%3A48%3A08.9211163Z\'"', location: 'https://ciserversdk.table.core.windows.net/tableservice13(PartitionKey=\'part1\',RowKey=\'row1\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '22ba0d25-7fa9-4403-923a-8b6cb1d7f65f', + 'x-ms-request-id': '23b42fc1-8375-47a8-b918-868a98d44db4', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:56 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:08 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .merge('/tableservice13(PartitionKey=%27part1%27,RowKey=%27row1%27)', '*') - .reply(412, "\r\n\r\n UpdateConditionNotSatisfied\r\n The update condition specified in the request was not satisfied.\nRequestId:6ccdf21c-7362-490f-9fbd-a6ceae46b61c\nTime:2013-02-26T13:20:56.9926382Z\r\n", { 'cache-control': 'no-cache', + .reply(412, "\r\n\r\n UpdateConditionNotSatisfied\r\n The update condition specified in the request was not satisfied.\nRequestId:ed57c498-493a-4ed1-ae8e-637bf17377cb\nTime:2013-03-21T16:48:08.9864267Z\r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '6ccdf21c-7362-490f-9fbd-a6ceae46b61c', + 'x-ms-request-id': 'ed57c498-493a-4ed1-ae8e-637bf17377cb', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:56 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:08 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/Tables') - .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-02-26T13:20:58Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice13')\r\n \r\n 2013-02-26T13:20:58Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice13\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T16:48:10Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice13')\r\n \r\n 2013-03-21T16:48:10Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice13\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'a43f6096-8935-42ea-b59e-0ee45d2155d1', + 'x-ms-request-id': 'ddfb6a39-e965-4647-b6ad-e933f065e596', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:57 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:09 GMT' }); return result; }, function (nock) { var result = @@ -838,23 +838,23 @@ nock('https://ciserversdk.table.core.windows.net:443') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '62bfd1bf-612f-41cb-91a2-c2837af4c8ef', + 'x-ms-request-id': 'fd93809f-4b97-4bb1-a464-979980dacc9a', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:20:58 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:10 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/Tables', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice14')\r\n \r\n 2013-02-26T13:21:00Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice14\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice14')\r\n \r\n 2013-03-21T16:48:12Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice14\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', location: 'https://ciserversdk.table.core.windows.net/Tables(\'tableservice14\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '3afb5779-0f37-4d80-a708-4e0303c05f8c', + 'x-ms-request-id': '83321e10-ed6d-403f-93fb-7e101d166b4c', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:00 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:11 GMT' }); return result; }, function (nock) { var result = @@ -863,11 +863,11 @@ nock('https://ciserversdk.table.core.windows.net:443') .put('/tableservice14(PartitionKey=%271%27,RowKey=%271%27)', '*') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', - etag: 'W/"datetime\'2013-02-26T13%3A21%3A01.4464051Z\'"', + etag: 'W/"datetime\'2013-03-21T16%3A48%3A13.6357642Z\'"', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '7bfd18aa-f3ff-4dbb-911e-90c9a1c3e486', + 'x-ms-request-id': 'bc72d811-a8df-4b3a-9863-ddf834d16758', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:00 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:13 GMT' }); return result; }, function (nock) { var result = @@ -876,36 +876,36 @@ nock('https://ciserversdk.table.core.windows.net:443') .put('/tableservice14(PartitionKey=%271%27,RowKey=%271%27)', '*') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', - etag: 'W/"datetime\'2013-02-26T13%3A21%3A02.4874051Z\'"', + etag: 'W/"datetime\'2013-03-21T16%3A48%3A14.6598667Z\'"', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'd5f108eb-b35a-471f-b888-0e0bcb743520', + 'x-ms-request-id': '66e09d89-9a23-4762-bc01-b217af36cfc0', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:02 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:14 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/tableservice14(PartitionKey=%271%27,RowKey=%271%27)') - .reply(200, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice14(PartitionKey='1',RowKey='1')\r\n \r\n 2013-02-26T13:21:04Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1\r\n 1\r\n 2013-02-26T13:21:02.4874051Z\r\n value\r\n 2\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice14(PartitionKey='1',RowKey='1')\r\n \r\n 2013-03-21T16:48:16Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1\r\n 1\r\n 2013-03-21T16:48:14.6598667Z\r\n W/\"datetime'2013-03-21T16%3A48%3A13.6357642Z'\"\r\n value\r\n 2\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', - etag: 'W/"datetime\'2013-02-26T13%3A21%3A02.4874051Z\'"', + etag: 'W/"datetime\'2013-03-21T16%3A48%3A14.6598667Z\'"', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '70a04a0c-8c32-4b0c-a0b7-3f216e6159ec', + 'x-ms-request-id': '10722281-907a-4023-b89a-20ccd9d9fb80', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:03 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:15 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/Tables') - .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-02-26T13:21:04Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice14')\r\n \r\n 2013-02-26T13:21:04Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice14\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T16:48:17Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice14')\r\n \r\n 2013-03-21T16:48:17Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice14\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '6668c707-00a2-499a-8a7c-848723972535', + 'x-ms-request-id': '644cab32-c6ce-42d0-b9cb-8783497fab3b', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:04 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:16 GMT' }); return result; }, function (nock) { var result = @@ -914,23 +914,23 @@ nock('https://ciserversdk.table.core.windows.net:443') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '90a963b8-39eb-4022-856e-c3f6b29154f2', + 'x-ms-request-id': '892b518e-be84-424d-b633-40eb4f0bd146', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:04 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:17 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/Tables', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice15')\r\n \r\n 2013-02-26T13:21:06Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice15\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice15')\r\n \r\n 2013-03-21T16:48:19Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice15\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', location: 'https://ciserversdk.table.core.windows.net/Tables(\'tableservice15\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'e8fff376-b69f-4135-9e68-18de4d14584b', + 'x-ms-request-id': '3f293291-daf3-4d6b-a11c-b0fbd3e0526b', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:05 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:19 GMT' }); return result; }, function (nock) { var result = @@ -939,11 +939,11 @@ nock('https://ciserversdk.table.core.windows.net:443') .merge('/tableservice15(PartitionKey=%271%27,RowKey=%271%27)', '*') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', - etag: 'W/"datetime\'2013-02-26T13%3A21%3A07.6924051Z\'"', + etag: 'W/"datetime\'2013-03-21T16%3A48%3A20.004401Z\'"', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'accf3a6a-41c3-4b85-93da-1414c9684637', + 'x-ms-request-id': 'fdf87c06-8f0e-41ba-8bd9-203d6252e3be', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:06 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:19 GMT' }); return result; }, function (nock) { var result = @@ -952,36 +952,36 @@ nock('https://ciserversdk.table.core.windows.net:443') .merge('/tableservice15(PartitionKey=%271%27,RowKey=%271%27)', '*') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', - etag: 'W/"datetime\'2013-02-26T13%3A21%3A08.7354051Z\'"', + etag: 'W/"datetime\'2013-03-21T16%3A48%3A21.013502Z\'"', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '34036a3c-4050-4c88-958d-de82b75ab5ce', + 'x-ms-request-id': 'afebbcdb-d411-481b-85c4-59e5990ba839', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:07 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:19 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/tableservice15(PartitionKey=%271%27,RowKey=%271%27)') - .reply(200, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice15(PartitionKey='1',RowKey='1')\r\n \r\n 2013-02-26T13:21:10Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1\r\n 1\r\n 2013-02-26T13:21:08.7354051Z\r\n value\r\n 1\r\n 2\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice15(PartitionKey='1',RowKey='1')\r\n \r\n 2013-03-21T16:48:21Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1\r\n 1\r\n 2013-03-21T16:48:21.013502Z\r\n W/\"datetime'2013-03-21T16%3A48%3A20.004401Z'\"\r\n value\r\n 1\r\n 2\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', - etag: 'W/"datetime\'2013-02-26T13%3A21%3A08.7354051Z\'"', + etag: 'W/"datetime\'2013-03-21T16%3A48%3A21.013502Z\'"', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '081a958e-4d56-4e8c-a478-331744323f04', + 'x-ms-request-id': 'fa17c5ff-2bd8-4271-89aa-d452bc1dee75', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:09 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:21 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/Tables') - .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-02-26T13:21:11Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice15')\r\n \r\n 2013-02-26T13:21:11Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice15\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T16:48:22Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice15')\r\n \r\n 2013-03-21T16:48:22Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice15\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '20ef0bab-49cd-439c-9e52-6e7a72a808c2', + 'x-ms-request-id': 'be5c21d2-3f8b-4b90-aa34-7f320cb2ef53', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:10 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:22 GMT' }); return result; }, function (nock) { var result = @@ -990,23 +990,23 @@ nock('https://ciserversdk.table.core.windows.net:443') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'c5642480-0831-4b7d-bbb7-78ec4fbf92bf', + 'x-ms-request-id': 'd1953f38-e54c-4a2a-869d-947134b39f2d', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:11 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:23 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/Tables', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice16')\r\n \r\n 2013-02-26T13:21:12Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice16\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice16')\r\n \r\n 2013-03-21T16:48:24Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice16\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', location: 'https://ciserversdk.table.core.windows.net/Tables(\'tableservice16\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'eab03ff3-bf52-499c-9d41-d0172d1aff5a', + 'x-ms-request-id': '8b57c3c5-3604-416f-98fc-6223042f5aee', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:11 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:24 GMT' }); return result; }, function (nock) { var result = @@ -1015,36 +1015,36 @@ nock('https://ciserversdk.table.core.windows.net:443') .merge('/tableservice16(PartitionKey=%271%27,RowKey=%271abc%27)', '*') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', - etag: 'W/"datetime\'2013-02-26T13%3A21%3A13.8224051Z\'"', + etag: 'W/"datetime\'2013-03-21T16%3A48%3A26.1970202Z\'"', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'edbf4927-5d7b-4e36-84f3-194a8eb3dda2', + 'x-ms-request-id': '6bd162f4-27a4-42f9-93d6-fd17eb1fd8f1', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:13 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:25 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/tableservice16(PartitionKey=%271%27,RowKey=%271abc%27)') - .reply(200, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice16(PartitionKey='1',RowKey='1abc')\r\n \r\n 2013-02-26T13:21:15Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1\r\n 1abc\r\n 2013-02-26T13:21:13.8224051Z\r\n value\r\n 0\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice16(PartitionKey='1',RowKey='1abc')\r\n \r\n 2013-03-21T16:48:26Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1\r\n 1abc\r\n 2013-03-21T16:48:26.1970202Z\r\n value\r\n 0\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', - etag: 'W/"datetime\'2013-02-26T13%3A21%3A13.8224051Z\'"', + etag: 'W/"datetime\'2013-03-21T16%3A48%3A26.1970202Z\'"', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '6b87fbac-5931-4ccd-96f4-9bea17ed765c', + 'x-ms-request-id': '040b32d0-c39b-443b-9faf-39929c99fa2d', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:14 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:26 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/Tables') - .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-02-26T13:21:16Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice16')\r\n \r\n 2013-02-26T13:21:16Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice16\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T16:48:28Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice16')\r\n \r\n 2013-03-21T16:48:28Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice16\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'a6b3a19b-3b67-4387-a58f-71208ba44821', + 'x-ms-request-id': '2ab1aa88-2b63-45cf-906e-fed6efff43cd', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:15 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:28 GMT' }); return result; }, function (nock) { var result = @@ -1053,23 +1053,23 @@ nock('https://ciserversdk.table.core.windows.net:443') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '75d87057-1372-435c-b7da-40929af43085', + 'x-ms-request-id': '3cc0230a-15b7-4494-8d69-21a7c29b1644', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:16 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:29 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/Tables', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice17')\r\n \r\n 2013-02-26T13:21:18Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice17\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice17')\r\n \r\n 2013-03-21T16:48:30Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice17\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', location: 'https://ciserversdk.table.core.windows.net/Tables(\'tableservice17\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '9e03d1a3-4e8a-418b-abb3-44532c11220a', + 'x-ms-request-id': 'f3f6a75d-06c1-4654-8742-7407406f5d3c', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:17 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:30 GMT' }); return result; }, function (nock) { var result = @@ -1078,36 +1078,36 @@ nock('https://ciserversdk.table.core.windows.net:443') .merge('/tableservice17(PartitionKey=%271%27,RowKey=%271abc%27)', '*') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', - etag: 'W/"datetime\'2013-02-26T13%3A21%3A19.0654051Z\'"', + etag: 'W/"datetime\'2013-03-21T16%3A48%3A31.535554Z\'"', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '6e264a4f-d3be-40a5-9f53-1792b40e51bb', + 'x-ms-request-id': 'b716c5d6-866b-4d39-bed2-5e63a781dbd6', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:19 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:31 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/tableservice17(PartitionKey=%271%27,RowKey=%271abc%27)') - .reply(200, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice17(PartitionKey='1',RowKey='1abc')\r\n \r\n 2013-02-26T13:21:20Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1\r\n 1abc\r\n 2013-02-26T13:21:19.0654051Z\r\n \n\nhi\n\nthere\n\n\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice17(PartitionKey='1',RowKey='1abc')\r\n \r\n 2013-03-21T16:48:32Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1\r\n 1abc\r\n 2013-03-21T16:48:31.535554Z\r\n \n\nhi\n\nthere\n\n\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', - etag: 'W/"datetime\'2013-02-26T13%3A21%3A19.0654051Z\'"', + etag: 'W/"datetime\'2013-03-21T16%3A48%3A31.535554Z\'"', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '4720b89d-fbdb-442f-9491-2f32d41d46a1', + 'x-ms-request-id': '6f2ad9d9-ab12-4f39-b5ab-b4ccfa64ec37', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:20 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:31 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/Tables') - .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-02-26T13:21:21Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice17')\r\n \r\n 2013-02-26T13:21:21Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice17\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T16:48:33Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice17')\r\n \r\n 2013-03-21T16:48:33Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice17\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'b822b0ff-1e1c-47fb-b782-6329b0a5acab', + 'x-ms-request-id': 'a102811c-5e20-4b4a-a1b7-e4b705fc71e2', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:21 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:32 GMT' }); return result; }, function (nock) { var result = @@ -1116,92 +1116,92 @@ nock('https://ciserversdk.table.core.windows.net:443') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'a64dd5a2-e351-4d44-885e-65533c79bc98', + 'x-ms-request-id': 'bf59153d-9d16-4ccb-987c-98b36a22a436', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:21 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:35 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/Tables', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice18')\r\n \r\n 2013-02-26T13:21:23Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice18\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/Tables('tableservice18')\r\n \r\n 2013-03-21T16:48:35Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice18\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', location: 'https://ciserversdk.table.core.windows.net/Tables(\'tableservice18\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'e8062fa8-1b19-448c-aeb9-7e23d1dc996e', + 'x-ms-request-id': '52fe2b12-8f06-4efa-b973-ffced37c2d4f', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:22 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:35 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/tableservice18', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice18(PartitionKey='1',RowKey='1st')\r\n \r\n 2013-02-26T13:21:24Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1\r\n 1st\r\n 2013-02-26T13:21:24.1429547Z\r\n value\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice18(PartitionKey='1',RowKey='1st')\r\n \r\n 2013-03-21T16:48:37Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1\r\n 1st\r\n 2013-03-21T16:48:37.0142156Z\r\n value\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', - etag: 'W/"datetime\'2013-02-26T13%3A21%3A24.1429547Z\'"', + etag: 'W/"datetime\'2013-03-21T16%3A48%3A37.0142156Z\'"', location: 'https://ciserversdk.table.core.windows.net/tableservice18(PartitionKey=\'1\',RowKey=\'1st\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '87615175-c76a-4e3d-a95c-1b2604ba08fe', + 'x-ms-request-id': '371ba6b8-bdf3-4b67-8f52-2d7306e42952', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:23 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:36 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/tableservice18', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice18(PartitionKey='1',RowKey='2st')\r\n \r\n 2013-02-26T13:21:25Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1\r\n 2st\r\n 2013-02-26T13:21:25.2480613Z\r\n value\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice18(PartitionKey='1',RowKey='2st')\r\n \r\n 2013-03-21T16:48:38Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1\r\n 2st\r\n 2013-03-21T16:48:38.2324035Z\r\n value\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', - etag: 'W/"datetime\'2013-02-26T13%3A21%3A25.2480613Z\'"', + etag: 'W/"datetime\'2013-03-21T16%3A48%3A38.2324035Z\'"', location: 'https://ciserversdk.table.core.windows.net/tableservice18(PartitionKey=\'1\',RowKey=\'2st\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'e91b8bb5-351c-4c94-97cf-7d9274b955e2', + 'x-ms-request-id': '4120c562-f79a-424b-8d09-0e70a7599d34', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:25 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:38 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .filteringRequestBody(function (path) { return '*';}) .post('/tableservice18', '*') - .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice18(PartitionKey='2',RowKey='2st')\r\n \r\n 2013-02-26T13:21:26Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 2\r\n 2st\r\n 2013-02-26T13:21:26.9463752Z\r\n value\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n https://ciserversdk.table.core.windows.net/tableservice18(PartitionKey='2',RowKey='2st')\r\n \r\n 2013-03-21T16:48:40Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 2\r\n 2st\r\n 2013-03-21T16:48:40.9472729Z\r\n value\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', - etag: 'W/"datetime\'2013-02-26T13%3A21%3A26.9463752Z\'"', + etag: 'W/"datetime\'2013-03-21T16%3A48%3A40.9472729Z\'"', location: 'https://ciserversdk.table.core.windows.net/tableservice18(PartitionKey=\'2\',RowKey=\'2st\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '98c8af5b-2222-4ce8-b346-7a9ce4fc20ca', + 'x-ms-request-id': '5c508328-a301-461c-9b7e-70c8cf7e063d', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:26 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:40 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/tableservice18()?$filter=PartitionKey%20eq%20%271%27') - .reply(200, "\r\n\r\n tableservice18\r\n https://ciserversdk.table.core.windows.net/tableservice18\r\n 2013-02-26T13:21:27Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tableservice18(PartitionKey='1',RowKey='1st')\r\n \r\n 2013-02-26T13:21:27Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1\r\n 1st\r\n 2013-02-26T13:21:24.1429547Z\r\n value\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tableservice18(PartitionKey='1',RowKey='2st')\r\n \r\n 2013-02-26T13:21:27Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1\r\n 2st\r\n 2013-02-26T13:21:25.2480613Z\r\n value\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n tableservice18\r\n https://ciserversdk.table.core.windows.net/tableservice18\r\n 2013-03-21T16:48:42Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tableservice18(PartitionKey='1',RowKey='1st')\r\n \r\n 2013-03-21T16:48:42Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1\r\n 1st\r\n 2013-03-21T16:48:37.0142156Z\r\n value\r\n \r\n \r\n \r\n \r\n https://ciserversdk.table.core.windows.net/tableservice18(PartitionKey='1',RowKey='2st')\r\n \r\n 2013-03-21T16:48:42Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1\r\n 2st\r\n 2013-03-21T16:48:38.2324035Z\r\n value\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'd1dd249b-4b26-4638-8f0c-25cac464b7ae', + 'x-ms-request-id': '6f2a121b-840b-4a88-a230-8285716f02ff', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:26 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:42 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/Tables') - .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-02-26T13:21:27Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice18')\r\n \r\n 2013-02-26T13:21:27Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice18\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T16:48:43Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice18')\r\n \r\n 2013-03-21T16:48:43Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice18\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '93425b78-8969-40af-8e6e-4416d98e4707', + 'x-ms-request-id': '42806da3-ec4b-46e6-a1b6-066264f219e7', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:27 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:43 GMT' }); return result; }, function (nock) { var result = @@ -1210,59 +1210,59 @@ nock('https://ciserversdk.table.core.windows.net:443') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '80a3917f-15b2-4160-854a-218d3d54ae5c', + 'x-ms-request-id': '530705f5-3013-40cf-ad24-420827b7c4c8', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:29 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:45 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/Tables') - .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-02-26T13:21:29Z\r\n \r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T16:48:46Z\r\n \r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'f01abca0-d010-4818-a094-a92c2c19e1c8', + 'x-ms-request-id': '847fed85-6f05-4dc1-b172-8a682b7721a6', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:29 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:45 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/Tables') - .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-02-26T13:21:33Z\r\n \r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T16:48:46Z\r\n \r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '3f70c1e8-7caf-4636-a8f6-5068281edc2d', + 'x-ms-request-id': '6e6ac537-7b90-469a-8d53-2030b5fbbb2b', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:33 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:46 GMT' }); return result; }], [function (nock) { var result = nock('http://ciserversdk.table.core.windows.net:80') .filteringRequestBody(function (path) { return '*';}) .post('/Tables', '*') - .reply(201, "\r\n\r\n http://ciserversdk.table.core.windows.net/Tables('tableservice19')\r\n \r\n 2013-02-26T13:21:34Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice19\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n http://ciserversdk.table.core.windows.net/Tables('tableservice19')\r\n \r\n 2013-03-21T16:48:47Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice19\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', location: 'http://ciserversdk.table.core.windows.net/Tables(\'tableservice19\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '3a51534a-b03c-4678-9417-c9faeba802bb', + 'x-ms-request-id': 'b8e9acfc-821f-495e-a4ab-a580dd4ce836', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:34 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:47 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/Tables') - .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-02-26T13:21:36Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice19')\r\n \r\n 2013-02-26T13:21:36Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice19\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T16:48:48Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice19')\r\n \r\n 2013-03-21T16:48:48Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice19\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '1fa5990f-8db6-4c10-9d2c-9d5f093bd456', + 'x-ms-request-id': '11578076-2bc1-4e48-a5fd-bba5e429a2dd', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:36 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:47 GMT' }); return result; }, function (nock) { var result = @@ -1271,35 +1271,35 @@ nock('https://ciserversdk.table.core.windows.net:443') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '2c84de01-b2cc-4721-8d96-16afad0ea1fc', + 'x-ms-request-id': '5dc67521-58db-4db9-b6d3-a4f96f994c3e', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:37 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:48 GMT' }); return result; }], [function (nock) { var result = nock('http://ciserversdk.table.core.windows.net:80') .filteringRequestBody(function (path) { return '*';}) .post('/Tables', '*') - .reply(201, "\r\n\r\n http://ciserversdk.table.core.windows.net/Tables('tableservice20')\r\n \r\n 2013-02-26T13:21:38Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice20\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n http://ciserversdk.table.core.windows.net/Tables('tableservice20')\r\n \r\n 2013-03-21T16:48:51Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice20\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', location: 'http://ciserversdk.table.core.windows.net/Tables(\'tableservice20\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '0f0759e0-1e39-4f4d-9ce9-f13485ea337e', + 'x-ms-request-id': 'e1e5a03f-3793-47fe-b527-1b4e8d76e6e8', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:37 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:51 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/Tables') - .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-02-26T13:21:39Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice20')\r\n \r\n 2013-02-26T13:21:39Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice20\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T16:48:52Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice20')\r\n \r\n 2013-03-21T16:48:52Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice20\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'bf6cf7c7-ea2d-42fe-9e47-f8904d50fd0f', + 'x-ms-request-id': '21be66d5-d948-493b-9303-b8553e3b4d2e', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:38 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:52 GMT' }); return result; }, function (nock) { var result = @@ -1308,35 +1308,35 @@ nock('https://ciserversdk.table.core.windows.net:443') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '22ac07d8-b681-4b75-8e3a-8bbb8e1e9554', + 'x-ms-request-id': '2f9e0644-4f56-47b9-8d84-85d342bd27f4', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:39 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:53 GMT' }); return result; }], [function (nock) { var result = nock('http://ciserversdk.table.core.windows.net:80') .filteringRequestBody(function (path) { return '*';}) .post('/Tables', '*') - .reply(201, "\r\n\r\n http://ciserversdk.table.core.windows.net/Tables('tableservice21')\r\n \r\n 2013-02-26T13:21:41Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice21\r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(201, "\r\n\r\n http://ciserversdk.table.core.windows.net/Tables('tableservice21')\r\n \r\n 2013-03-21T16:48:54Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice21\r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', location: 'http://ciserversdk.table.core.windows.net/Tables(\'tableservice21\')', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '9646a9b1-e2df-418e-8a99-d127f047c855', + 'x-ms-request-id': '5e15ec31-e8db-4564-9e4c-5c6370559f88', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:40 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:53 GMT' }); return result; }, function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/Tables') - .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-02-26T13:21:41Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice21')\r\n \r\n 2013-02-26T13:21:41Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice21\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T16:48:55Z\r\n \r\n \r\n https://ciserversdk.table.core.windows.net/Tables('tableservice21')\r\n \r\n 2013-03-21T16:48:55Z\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n tableservice21\r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': 'bad720bd-dfcb-4c40-8c4f-498544ca0255', + 'x-ms-request-id': 'f78dfe6a-afed-4f08-915c-c64e02834bfd', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:41 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:54 GMT' }); return result; }, function (nock) { var result = @@ -1345,19 +1345,19 @@ nock('https://ciserversdk.table.core.windows.net:443') .reply(204, "", { 'cache-control': 'no-cache', 'content-length': '0', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '647a0429-ecd1-4574-bd49-658c73006aa2', + 'x-ms-request-id': 'dfa602b2-7a12-4bd0-b86e-e7b68a7697d6', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:42 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:57 GMT' }); return result; }], [function (nock) { var result = nock('https://ciserversdk.table.core.windows.net:443') .get('/Tables') - .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-02-26T13:21:44Z\r\n \r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', + .reply(200, "\r\n\r\n Tables\r\n https://ciserversdk.table.core.windows.net/Tables\r\n 2013-03-21T16:48:57Z\r\n \r\n \r\n \r\n \r\n", { 'cache-control': 'no-cache', 'transfer-encoding': 'chunked', 'content-type': 'application/atom+xml;charset=utf-8', server: 'Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0', - 'x-ms-request-id': '1492e5ed-11e8-4e84-a0ab-884648268221', + 'x-ms-request-id': '578e10d1-6b83-4157-8ce7-2650fd0aa55b', 'x-ms-version': '2011-08-18', - date: 'Tue, 26 Feb 2013 13:21:44 GMT' }); + date: 'Thu, 21 Mar 2013 16:48:57 GMT' }); return result; }]]; \ No newline at end of file diff --git a/test/services/table/tabledatatype-tests.js b/test/services/table/tabledatatype-tests.js new file mode 100644 index 0000000000..f64e20d899 --- /dev/null +++ b/test/services/table/tabledatatype-tests.js @@ -0,0 +1,163 @@ +/** +* Copyright (c) Microsoft. All rights reserved. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +var assert = require('assert'); +var _ = require('underscore'); + +// Test includes +var testutil = require('../../util/util'); +var tabletestutil = require('../../framework/table-test-utils'); + +// Lib includes +var azure = testutil.libRequire('azure'); +var azureutil = testutil.libRequire('util/util'); + +var ServiceClient = azure.ServiceClient; +var TableQuery = azure.TableQuery; +var Constants = azure.Constants; +var HttpConstants = Constants.HttpConstants; +var StorageErrorCodeStrings = Constants.StorageErrorCodeStrings; + +var tableNames = []; +var tablePrefix = 'tabledatatype'; + +var testPrefix = 'tabledatatype-tests'; + +var tableService; +var suiteUtil; + +describe('Table Service', function () { + before(function (done) { + tableService = azure.createTableService(); + suiteUtil = tabletestutil.createTableTestUtils(tableService, testPrefix); + suiteUtil.setupSuite(done); + }); + + after(function (done) { + suiteUtil.teardownSuite(done); + }); + + beforeEach(function (done) { + suiteUtil.setupTest(done); + }); + + afterEach(function (done) { + suiteUtil.teardownTest(done); + }); + + describe('queryEntities', function (done) { + var tableName; + var entity = { + PartitionKey: '1', + RowKey: '2', + IntNumberValue: 200, + DoubleNumberValue: 2.5, + FalseBooleanValue: false, + TrueBooleanValue: true, + StringValue: 'hi there', + DateValue: new Date(2012, 10, 10, 3, 4, 5, 200) + }; + + function verifyEntity(result) { + Object.keys(entity).forEach(function (propertyName) { + if (_.isDate(entity[propertyName])) { + assert.strictEqual(entity[propertyName].getTime(), result[propertyName].getTime()); + } else { + assert.strictEqual(entity[propertyName], result[propertyName]); + } + }); + } + + beforeEach(function (done) { + tableName = testutil.generateId(tablePrefix, tableNames, suiteUtil.isMocked); + + tableService.createTable(tableName, function () { + tableService.insertEntity(tableName, entity, done); + }); + }); + + it('should be able to query by integer value', function (done) { + var tableQuery = azure.TableQuery.select().from(tableName).where('IntNumberValue eq ?', entity.IntNumberValue); + tableService.queryEntities(tableQuery, function (err, results) { + assert.equal(err, null); + assert.notEqual(results, null); + assert.equal(results.length, 1); + verifyEntity(results[0]); + + done(); + }); + }); + + it('should be able to query by double value', function (done) { + var tableQuery = azure.TableQuery.select().from(tableName).where('DoubleNumberValue eq ?', entity.DoubleNumberValue); + tableService.queryEntities(tableQuery, function (err, results) { + assert.equal(err, null); + assert.notEqual(results, null); + assert.equal(results.length, 1); + verifyEntity(results[0]); + + done(); + }); + }); + + it('should be able to query by false boolean value', function (done) { + var tableQuery = azure.TableQuery.select().from(tableName).where('FalseBooleanValue eq ?', entity.FalseBooleanValue); + tableService.queryEntities(tableQuery, function (err, results) { + assert.equal(err, null); + assert.notEqual(results, null); + assert.equal(results.length, 1); + verifyEntity(results[0]); + + done(); + }); + }); + + it('should be able to query by true boolean value', function (done) { + var tableQuery = azure.TableQuery.select().from(tableName).where('TrueBooleanValue eq ?', entity.TrueBooleanValue); + tableService.queryEntities(tableQuery, function (err, results) { + assert.equal(err, null); + assert.notEqual(results, null); + assert.equal(results.length, 1); + verifyEntity(results[0]); + + done(); + }); + }); + + it('should be able to query by string value', function (done) { + var tableQuery = azure.TableQuery.select().from(tableName).where('TrueBooleanValue eq ?', entity.TrueBooleanValue); + tableService.queryEntities(tableQuery, function (err, results) { + assert.equal(err, null); + assert.notEqual(results, null); + assert.equal(results.length, 1); + verifyEntity(results[0]); + + done(); + }); + }); + + it('should be able to query by date value', function (done) { + var tableQuery = azure.TableQuery.select().from(tableName).where('DateValue eq ?', entity.DateValue); + tableService.queryEntities(tableQuery, function (err, results) { + assert.equal(err, null); + assert.notEqual(results, null); + assert.equal(results.length, 1); + verifyEntity(results[0]); + + done(); + }); + }); + }); +}); \ No newline at end of file diff --git a/test/services/table/tablequery-tests.js b/test/services/table/tablequery-tests.js index e4d65a0716..1ed016bff9 100644 --- a/test/services/table/tablequery-tests.js +++ b/test/services/table/tablequery-tests.js @@ -71,7 +71,7 @@ suite('tablequery-tests', function () { .where('Date eq ?', date); assert.equal('Table()', tableQuery.toPath()); - assert.equal(azureutil.encodeUri('Date eq datetime\'2001-02-03T04:05:06+00:00\''), tableQuery.toQueryObject()['$filter']); + assert.equal(azureutil.encodeUri('Date eq datetime\'2001-02-03T04:05:06.000Z\''), tableQuery.toQueryObject()['$filter']); done(); }); diff --git a/test/services/table/tableservice-batch-tests.js b/test/services/table/tableservice-batch-tests.js index d5f0408838..540e1756ef 100644 --- a/test/services/table/tableservice-batch-tests.js +++ b/test/services/table/tableservice-batch-tests.js @@ -365,7 +365,7 @@ function generateEntities(count) { for(var i = 0 ; i < count ; i++) { var entity = { PartitionKey: 'partition1', - RowKey: i + 1, + RowKey: (i + 1).toString(), address: 'street' + (i + 1) }; diff --git a/test/testlist.txt b/test/testlist.txt index 68d2f16369..b5aec9f9a9 100644 --- a/test/testlist.txt +++ b/test/testlist.txt @@ -29,6 +29,7 @@ services/serviceManagement/sqlmanagementservice-tests.js services/table/batchserviceclient-tests.js services/table/sharedkeytable-tests.js services/table/sharedkeylitetable-tests.js +services/table/tabledatatype-tests.js services/table/tablequery-tests.js services/table/tableservice-batch-tests.js services/table/tableservice-tablequery-tests.js diff --git a/test/util/edmtype-tests.js b/test/util/edmtype-tests.js index 0aafe092d7..3d6ff35909 100644 --- a/test/util/edmtype-tests.js +++ b/test/util/edmtype-tests.js @@ -34,7 +34,7 @@ describe('Edmtype', function () { it('correctly serializes datetime query values', function (done) { var value = new Date(2001, 1, 3, 4, 5, 6); var serializedValue = edmType.serializeQueryValue(value); - serializedValue.should.equal("datetime'2001-02-03T04:05:06+00:00'"); + serializedValue.should.equal("datetime'2001-02-03T04:05:06.000Z'"); done(); }); diff --git a/test/util/odatahandler-tests.js b/test/util/odatahandler-tests.js index cf59e13427..e9c81f5050 100644 --- a/test/util/odatahandler-tests.js +++ b/test/util/odatahandler-tests.js @@ -27,53 +27,25 @@ suite('odatahandler-tests', function () { test('Serialize', function (done) { var odataHandler = new OdataHandler('m', 'd'); - var dateTime = new Date().toISOString(); - var entity = { - title: '', - updated: dateTime, - author: { - name: '' - }, - id: '', - content: { - '$': { - type: 'application/xml' - }, - 'm:properties': { - 'd:PartitionKey': 'part1', - 'd:RowKey': 'row1', - 'd:intValue': 10, - 'd:stringValue': 'my string', - 'd:nullValue': null - } - } + 'PartitionKey': 'part1', + 'RowKey': 'row1', + 'intValue': 10, + 'stringValue': 'my string', + 'nullValue': null }; var res = odataHandler.serialize(entity); - - assert.equal(res, - '' + - '' + - '' + - '<updated>' + dateTime + '</updated>' + - '<author>' + - '<name/>' + - '</author>' + - '<id/>' + + assert.notEqual(res.indexOf( '<content type="application/xml">' + '<m:properties>' + - '<d:PartitionKey>part1</d:PartitionKey>' + - '<d:RowKey>row1</d:RowKey>' + - '<d:intValue>10</d:intValue>' + - '<d:stringValue>my string</d:stringValue>' + + '<d:PartitionKey m:type="Edm.String">part1</d:PartitionKey>' + + '<d:RowKey m:type="Edm.String">row1</d:RowKey>' + + '<d:intValue m:type="Edm.Int32">10</d:intValue>' + + '<d:stringValue m:type="Edm.String">my string</d:stringValue>' + '<d:nullValue m:null="true"/>' + '</m:properties>' + - '</content>' + - '</entry>' - ); + '</content>'), -1); done(); }); @@ -81,54 +53,29 @@ suite('odatahandler-tests', function () { test('SerializeDataTypes', function (done) { var odataHandler = new OdataHandler('m', 'd'); - var dateTime = new Date().toISOString(); - var entity = { - title: '', - updated: dateTime, - author: { - name: '' + 'PartitionKey': { + '_': 'part1', + '$': { 'type': 'Edm.String' } }, - id: '', - content: { - '$': { - type: 'application/xml' - }, - 'm:properties': { - 'd:PartitionKey': { - '_': 'part1', - '$': { 'm:type': 'Edm.String' } - }, - 'd:RowKey': { - '_': 'row1', - '$': { 'm:type': 'Edm.String' } - }, - 'd:intValue': { - '_': 10, - '$': { 'm:type': 'Edm.Int32' } - }, - 'd:stringValue': { - '_': 'my string', - '$': { 'm:type': 'Edm.String' } - }, - 'd:nullValue': null - } - } + 'RowKey': { + '_': 'row1', + '$': { 'type': 'Edm.String' } + }, + 'intValue': { + '_': 10, + '$': { 'type': 'Edm.Int32' } + }, + 'stringValue': { + '_': 'my string', + '$': { 'type': 'Edm.String' } + }, + 'nullValue': null }; var res = odataHandler.serialize(entity); - assert.equal(res, - '<?xml version="1.0" encoding="utf-8" standalone="yes"?>' + - '<entry xmlns="http://www.w3.org/2005/Atom" ' + - 'xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" ' + - 'xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices">' + - '<title/>' + - '<updated>' + dateTime + '</updated>' + - '<author>' + - '<name/>' + - '</author>' + - '<id/>' + + assert.notEqual(res.indexOf( '<content type="application/xml">' + '<m:properties>' + '<d:PartitionKey m:type="Edm.String">part1</d:PartitionKey>' + @@ -137,9 +84,7 @@ suite('odatahandler-tests', function () { '<d:stringValue m:type="Edm.String">my string</d:stringValue>' + '<d:nullValue m:null="true"/>' + '</m:properties>' + - '</content>' + - '</entry>' - ); + '</content>'), -1); done(); });