Коммит
362b141a67
|
@ -115,7 +115,7 @@ function ServiceClient(host, authenticationProvider) {
|
|||
this.proxyUrl = '';
|
||||
this.proxyPort = 80;
|
||||
this.authenticationProvider = authenticationProvider;
|
||||
this.logger = new Logger(Logger.LogLevels.NOTICE);
|
||||
this.logger = new Logger(Logger.LogLevels.INFO);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -326,10 +326,12 @@ AtomHandler.prototype._propertyFromString = function (value) {
|
|||
return true;
|
||||
} else if (value === 'false') {
|
||||
return false;
|
||||
} else if (azureutil.isInt(value)) {
|
||||
return parseInt(value);
|
||||
} else if (parseFloat(value)) {
|
||||
return parseFloat(value);
|
||||
} else if (azureutil.isNumber(value)) {
|
||||
if (azureutil.isInt(value)) {
|
||||
return parseInt(value);
|
||||
} else {
|
||||
return parseFloat(value);
|
||||
}
|
||||
} else {
|
||||
return value;
|
||||
}
|
||||
|
|
|
@ -1453,7 +1453,7 @@ var Constants = {
|
|||
* @const
|
||||
* @type {string}
|
||||
*/
|
||||
IF_NONE_MATCH: 'if-None-match',
|
||||
IF_NONE_MATCH: 'if-none-match',
|
||||
|
||||
/**
|
||||
* The IfUnmodifiedSince header.
|
||||
|
|
|
@ -118,17 +118,45 @@ exports.stringEndsWith = function (text, suffix) {
|
|||
};
|
||||
|
||||
/**
|
||||
* Determines if a string container an integer or float number.
|
||||
* Determines if a string contains an integer number.
|
||||
*
|
||||
* @param {string} text The string to test.
|
||||
* @return {Bool} True if the string contains an integer number; false otherwise.
|
||||
*/
|
||||
exports.isInt = function(value) {
|
||||
exports.isInt = function (value) {
|
||||
if (!value) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return parseInt(value) === parseFloat(value);
|
||||
var intValue = parseInt(value);
|
||||
return intValue.toString().length === value.length &&
|
||||
intValue === parseFloat(value);
|
||||
};
|
||||
|
||||
/**
|
||||
* Determines if a string contains a float number.
|
||||
*
|
||||
* @param {string} text The string to test.
|
||||
* @return {Bool} True if the string contains a float number; false otherwise.
|
||||
*/
|
||||
exports.isFloat = function(value) {
|
||||
if (!value) {
|
||||
return false;
|
||||
}
|
||||
|
||||
var floatValue = parseFloat(value);
|
||||
return floatValue.toString().length === value.length &&
|
||||
parseInt(value) !== floatValue;
|
||||
};
|
||||
|
||||
/**
|
||||
* Determines if a string contains a number.
|
||||
*
|
||||
* @param {string} text The string to test.
|
||||
* @return {Bool} True if the string contains a number; false otherwise.
|
||||
*/
|
||||
exports.isNumber = function(value) {
|
||||
return !isNaN(value);
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
@ -63,6 +63,21 @@
|
|||
<Content Include="..\..\examples\blog\server.js">
|
||||
<Link>examples\blog\server.js</Link>
|
||||
</Content>
|
||||
<Content Include="..\..\examples\geophoto\controllers\pushpinController.js">
|
||||
<Link>examples\geophoto\NewFolder1\pushpinController.js</Link>
|
||||
</Content>
|
||||
<Content Include="..\..\examples\geophoto\public\scripts\geophoto.js">
|
||||
<Link>examples\geophoto\public\scripts\geophoto.js</Link>
|
||||
</Content>
|
||||
<Content Include="..\..\examples\geophoto\public\stylesheets\style.css">
|
||||
<Link>examples\geophoto\public\stylesheets\style.css</Link>
|
||||
</Content>
|
||||
<Content Include="..\..\examples\geophoto\server.js">
|
||||
<Link>examples\geophoto\server.js</Link>
|
||||
</Content>
|
||||
<Content Include="..\..\examples\geophoto\services\pushpinService.js">
|
||||
<Link>examples\geophoto\services\pushpinService.js</Link>
|
||||
</Content>
|
||||
<Content Include="..\..\examples\samples\blobuploaddownloadsample.js">
|
||||
<Link>examples\samples\blobuploaddownloadsample.js</Link>
|
||||
</Content>
|
||||
|
@ -416,6 +431,18 @@
|
|||
<None Include="..\..\examples\blog\views\layout.ejs">
|
||||
<Link>examples\blog\views\layout.ejs</Link>
|
||||
</None>
|
||||
<None Include="..\..\examples\geophoto\package.json">
|
||||
<Link>examples\geophoto\package.json</Link>
|
||||
</None>
|
||||
<None Include="..\..\examples\geophoto\views\index.ejs">
|
||||
<Link>examples\geophoto\views\index.ejs</Link>
|
||||
</None>
|
||||
<None Include="..\..\examples\geophoto\views\layout.ejs">
|
||||
<Link>examples\geophoto\views\layout.ejs</Link>
|
||||
</None>
|
||||
<None Include="..\..\examples\geophoto\views\setup.ejs">
|
||||
<Link>examples\geophoto\views\setup.ejs</Link>
|
||||
</None>
|
||||
<None Include="..\..\examples\tasklist\package.json">
|
||||
<Link>examples\tasklist\package.json</Link>
|
||||
</None>
|
||||
|
|
|
@ -1 +1 @@
|
|||
[{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/?restype=service&comp=properties","requestHeaders":{"dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","content-type":"","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:35 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"transfer-encoding":"chunked","content-type":"application/xml","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:37:59 GMT"},"responseFile":"x1.dat"},{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:35 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"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-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:37:59 GMT"},"responseFile":"x2.dat"}]
|
||||
[{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/?restype=service&comp=properties","requestHeaders":{"dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","content-type":"","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:58:53 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"transfer-encoding":"chunked","content-type":"application/xml","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:25 GMT"},"responseFile":"x1.dat"},{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:58:53 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"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-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:25 GMT"},"responseFile":"x2.dat"}]
|
|
@ -2,7 +2,7 @@
|
|||
<feed xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
|
||||
<title type="text">Tables</title>
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables</id>
|
||||
<updated>2012-02-06T07:38:00Z</updated>
|
||||
<updated>2012-02-16T04:58:26Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
<?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>2012-02-16T04:57:05.0000246Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>1</d:PartitionKey><d:RowKey>1abc</d:RowKey><d:field1>value</d:field1><d:emptyField1/><d:emptyField2 m:null="true"/><d:nonEmptyField3>0</d:nonEmptyField3></m:properties></content></entry>
|
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" m:etag="W/"datetime'2012-02-16T04%3A56%3A39.6775135Z'"" xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>http://nodejsdev.table.core.windows.net/tableservice1(PartitionKey='1',RowKey='1abc')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-16T04:56:39Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
<link rel="edit" title="tableservice1" href="tableservice1(PartitionKey='1',RowKey='1abc')" />
|
||||
<category term="nodejsdev.tableservice1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
|
||||
<content type="application/xml">
|
||||
<m:properties>
|
||||
<d:PartitionKey>1</d:PartitionKey>
|
||||
<d:RowKey>1abc</d:RowKey>
|
||||
<d:Timestamp m:type="Edm.DateTime">2012-02-16T04:56:39.6775135Z</d:Timestamp>
|
||||
<d:emptyField1></d:emptyField1>
|
||||
<d:field1>value</d:field1>
|
||||
<d:nonEmptyField3>0</d:nonEmptyField3>
|
||||
</m:properties>
|
||||
</content>
|
||||
</entry>
|
|
@ -0,0 +1,52 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<feed xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
|
||||
<title type="text">Tables</title>
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables</id>
|
||||
<updated>2012-02-16T04:56:38Z</updated>
|
||||
<link rel="self" title="Tables" href="Tables" />
|
||||
<entry>
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables('tableservice1')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-16T04:56:38Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
<link rel="edit" title="Tables" href="Tables('tableservice1')" />
|
||||
<category term="nodejsdev.Tables" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
|
||||
<content type="application/xml">
|
||||
<m:properties>
|
||||
<d:TableName>tableservice1</d:TableName>
|
||||
</m:properties>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables('WADDiagnosticInfrastructureLogsTable')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-16T04:56:38Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
<link rel="edit" title="Tables" href="Tables('WADDiagnosticInfrastructureLogsTable')" />
|
||||
<category term="nodejsdev.Tables" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
|
||||
<content type="application/xml">
|
||||
<m:properties>
|
||||
<d:TableName>WADDiagnosticInfrastructureLogsTable</d:TableName>
|
||||
</m:properties>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables('WADPerformanceCountersTable')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-16T04:56:38Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
<link rel="edit" title="Tables" href="Tables('WADPerformanceCountersTable')" />
|
||||
<category term="nodejsdev.Tables" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
|
||||
<content type="application/xml">
|
||||
<m:properties>
|
||||
<d:TableName>WADPerformanceCountersTable</d:TableName>
|
||||
</m:properties>
|
||||
</content>
|
||||
</entry>
|
||||
</feed>
|
|
@ -1 +1 @@
|
|||
[{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/?restype=service&comp=properties","requestHeaders":{"dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","content-type":"","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:35 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"transfer-encoding":"chunked","content-type":"application/xml","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:01 GMT"},"responseFile":"x1.dat"},{"requestMethod":"PUT","requestUrl":"http://playback.table.core.windows.net:80/?comp=properties&restype=service","requestHeaders":{"content-type":"application/xml;charset=\"utf-8\"","content-length":"374","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:35 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x2.dat","responseStatusCode":202,"responseHeaders":{"transfer-encoding":"chunked","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:01 GMT"}},{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/?restype=service&comp=properties","requestHeaders":{"dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","content-type":"","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:38 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"transfer-encoding":"chunked","content-type":"application/xml","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:03 GMT"},"responseFile":"x3.dat"},{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:38 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"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-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:01 GMT"},"responseFile":"x4.dat"}]
|
||||
[{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/?restype=service&comp=properties","requestHeaders":{"dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","content-type":"","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:58:53 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"transfer-encoding":"chunked","content-type":"application/xml","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:26 GMT"},"responseFile":"x1.dat"},{"requestMethod":"PUT","requestUrl":"http://playback.table.core.windows.net:80/?comp=properties&restype=service","requestHeaders":{"content-type":"application/xml;charset=\"utf-8\"","content-length":"374","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:58:53 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x2.dat","responseStatusCode":202,"responseHeaders":{"transfer-encoding":"chunked","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:28 GMT"}},{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/?restype=service&comp=properties","requestHeaders":{"dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","content-type":"","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:58:56 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"transfer-encoding":"chunked","content-type":"application/xml","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:28 GMT"},"responseFile":"x3.dat"},{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:58:56 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"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-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:29 GMT"},"responseFile":"x4.dat"}]
|
|
@ -2,7 +2,7 @@
|
|||
<feed xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
|
||||
<title type="text">Tables</title>
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables</id>
|
||||
<updated>2012-02-06T07:38:02Z</updated>
|
||||
<updated>2012-02-16T04:58:29Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
|
|
@ -1 +1 @@
|
|||
[{"requestMethod":"POST","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"439","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:49 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x1.dat","responseStatusCode":201,"responseHeaders":{"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-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:10 GMT"},"responseFile":"x2.dat"},{"requestMethod":"POST","requestUrl":"http://playback.table.core.windows.net:80/tableservice10","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"581","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:49 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x3.dat","responseStatusCode":201,"responseHeaders":{"cache-control":"no-cache","transfer-encoding":"chunked","content-type":"application/atom+xml;charset=utf-8","etag":"W/\"datetime'2012-02-06T07%3A38%3A13.4028555Z'\"","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:12 GMT"},"responseFile":"x4.dat"},{"requestMethod":"PUT","requestUrl":"http://playback.table.core.windows.net:80/tableservice10(PartitionKey=%27part1%27,RowKey=%27row1%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"572","if-match":"*","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:49 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x5.dat","responseStatusCode":204,"responseHeaders":{"cache-control":"no-cache","content-length":"0","etag":"W/\"datetime'2012-02-06T07%3A38%3A14.146Z'\"","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:13 GMT"}},{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:50 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"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-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:14 GMT"},"responseFile":"x6.dat"},{"requestMethod":"DELETE","requestUrl":"http://playback.table.core.windows.net:80/Tables(%27tableservice10%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:50 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":204,"responseHeaders":{"cache-control":"no-cache","content-length":"0","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:13 GMT"}}]
|
||||
[{"requestMethod":"POST","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"439","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:07 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x1.dat","responseStatusCode":201,"responseHeaders":{"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-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:41 GMT"},"responseFile":"x2.dat"},{"requestMethod":"POST","requestUrl":"http://playback.table.core.windows.net:80/tableservice10","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"581","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:07 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x3.dat","responseStatusCode":201,"responseHeaders":{"cache-control":"no-cache","transfer-encoding":"chunked","content-type":"application/atom+xml;charset=utf-8","etag":"W/\"datetime'2012-02-16T04%3A58%3A41.5044079Z'\"","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:41 GMT"},"responseFile":"x4.dat"},{"requestMethod":"PUT","requestUrl":"http://playback.table.core.windows.net:80/tableservice10(PartitionKey=%27part1%27,RowKey=%27row1%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"572","if-match":"*","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:08 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x5.dat","responseStatusCode":204,"responseHeaders":{"cache-control":"no-cache","content-length":"0","etag":"W/\"datetime'2012-02-16T04%3A58%3A41.7318304Z'\"","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:41 GMT"}},{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:08 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"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-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:40 GMT"},"responseFile":"x6.dat"},{"requestMethod":"DELETE","requestUrl":"http://playback.table.core.windows.net:80/Tables(%27tableservice10%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:08 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":204,"responseHeaders":{"cache-control":"no-cache","content-length":"0","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:42 GMT"}}]
|
|
@ -1 +1 @@
|
|||
<?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>2012-02-06T07:25:49.0000030Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tableservice10</d:TableName></m:properties></content></entry>
|
||||
<?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>2012-02-16T04:59:07.0000671Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tableservice10</d:TableName></m:properties></content></entry>
|
|
@ -2,7 +2,7 @@
|
|||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables('tableservice10')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:11Z</updated>
|
||||
<updated>2012-02-16T04:58:41Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
|
|
@ -1 +1 @@
|
|||
<?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>2012-02-06T07:25:49.0000477Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>part1</d:PartitionKey><d:RowKey>row1</d:RowKey><d:field>XML <test></d:field><d:otherfield>my other field</d:otherfield><d:otherprops>my properties</d:otherprops></m:properties></content></entry>
|
||||
<?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>2012-02-16T04:59:07.0000902Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>part1</d:PartitionKey><d:RowKey>row1</d:RowKey><d:field>XML <test></d:field><d:otherfield>my other field</d:otherfield><d:otherprops>my properties</d:otherprops></m:properties></content></entry>
|
|
@ -1,8 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" m:etag="W/"datetime'2012-02-06T07%3A38%3A13.4028555Z'"" xmlns="http://www.w3.org/2005/Atom">
|
||||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" m:etag="W/"datetime'2012-02-16T04%3A58%3A41.5044079Z'"" xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>http://nodejsdev.table.core.windows.net/tableservice10(PartitionKey='part1',RowKey='row1')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:13Z</updated>
|
||||
<updated>2012-02-16T04:58:41Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<m:properties>
|
||||
<d:PartitionKey>part1</d:PartitionKey>
|
||||
<d:RowKey>row1</d:RowKey>
|
||||
<d:Timestamp m:type="Edm.DateTime">2012-02-06T07:38:13.4028555Z</d:Timestamp>
|
||||
<d:Timestamp m:type="Edm.DateTime">2012-02-16T04:58:41.5044079Z</d:Timestamp>
|
||||
<d:field>XML <test></d:field>
|
||||
<d:otherfield>my other field</d:otherfield>
|
||||
<d:otherprops>my properties</d:otherprops>
|
||||
|
|
|
@ -1 +1 @@
|
|||
<?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>2012-02-06T07:25:49.0000845Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>part1</d:PartitionKey><d:RowKey>row1</d:RowKey><d:field>XML <test></d:field><d:otherfield>value</d:otherfield><d:otherprops>my properties</d:otherprops></m:properties></content></entry>
|
||||
<?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>2012-02-16T04:59:08.0000262Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>part1</d:PartitionKey><d:RowKey>row1</d:RowKey><d:field>XML <test></d:field><d:otherfield>value</d:otherfield><d:otherprops>my properties</d:otherprops></m:properties></content></entry>
|
|
@ -2,12 +2,12 @@
|
|||
<feed xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
|
||||
<title type="text">Tables</title>
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables</id>
|
||||
<updated>2012-02-06T07:38:14Z</updated>
|
||||
<updated>2012-02-16T04:58:41Z</updated>
|
||||
<link rel="self" title="Tables" href="Tables" />
|
||||
<entry>
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables('tableservice10')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:14Z</updated>
|
||||
<updated>2012-02-16T04:58:41Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
|
|
@ -1 +1 @@
|
|||
[{"requestMethod":"POST","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"439","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:50 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x1.dat","responseStatusCode":201,"responseHeaders":{"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-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:14 GMT"},"responseFile":"x2.dat"},{"requestMethod":"POST","requestUrl":"http://playback.table.core.windows.net:80/tableservice11","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"572","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:51 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x3.dat","responseStatusCode":201,"responseHeaders":{"cache-control":"no-cache","transfer-encoding":"chunked","content-type":"application/atom+xml;charset=utf-8","etag":"W/\"datetime'2012-02-06T07%3A38%3A15.9268586Z'\"","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:15 GMT"},"responseFile":"x4.dat"},{"requestMethod":"PUT","requestUrl":"http://playback.table.core.windows.net:80/tableservice11(PartitionKey=%27part1%27,RowKey=%27row1%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"572","if-match":"W/\"datetime'2009-05-27T12%3A15%3A15.3321531Z'\"","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:51 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x5.dat","responseStatusCode":412,"responseHeaders":{"cache-control":"no-cache","transfer-encoding":"chunked","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:15 GMT"},"responseFile":"x6.dat"},{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:52 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"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-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:15 GMT"},"responseFile":"x7.dat"},{"requestMethod":"DELETE","requestUrl":"http://playback.table.core.windows.net:80/Tables(%27tableservice11%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:52 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":204,"responseHeaders":{"cache-control":"no-cache","content-length":"0","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:15 GMT"}}]
|
||||
[{"requestMethod":"POST","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"439","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:08 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x1.dat","responseStatusCode":201,"responseHeaders":{"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-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:40 GMT"},"responseFile":"x2.dat"},{"requestMethod":"POST","requestUrl":"http://playback.table.core.windows.net:80/tableservice11","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"572","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:09 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x3.dat","responseStatusCode":201,"responseHeaders":{"cache-control":"no-cache","transfer-encoding":"chunked","content-type":"application/atom+xml;charset=utf-8","etag":"W/\"datetime'2012-02-16T04%3A58%3A43.0299762Z'\"","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:42 GMT"},"responseFile":"x4.dat"},{"requestMethod":"PUT","requestUrl":"http://playback.table.core.windows.net:80/tableservice11(PartitionKey=%27part1%27,RowKey=%27row1%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"572","if-match":"W/\"datetime'2009-05-27T12%3A15%3A15.3321531Z'\"","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:09 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x5.dat","responseStatusCode":412,"responseHeaders":{"cache-control":"no-cache","transfer-encoding":"chunked","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:42 GMT"},"responseFile":"x6.dat"},{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:09 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"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-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:42 GMT"},"responseFile":"x7.dat"},{"requestMethod":"DELETE","requestUrl":"http://playback.table.core.windows.net:80/Tables(%27tableservice11%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:10 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":204,"responseHeaders":{"cache-control":"no-cache","content-length":"0","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:42 GMT"}}]
|
|
@ -1 +1 @@
|
|||
<?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>2012-02-06T07:25:50.0000847Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tableservice11</d:TableName></m:properties></content></entry>
|
||||
<?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>2012-02-16T04:59:08.0000837Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tableservice11</d:TableName></m:properties></content></entry>
|
|
@ -2,7 +2,7 @@
|
|||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables('tableservice11')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:14Z</updated>
|
||||
<updated>2012-02-16T04:58:41Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
|
|
@ -1 +1 @@
|
|||
<?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>2012-02-06T07:25:51.0000244Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>part1</d:PartitionKey><d:RowKey>row1</d:RowKey><d:field>XML <test></d:field><d:otherfield>value</d:otherfield><d:otherprops>my properties</d:otherprops></m:properties></content></entry>
|
||||
<?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>2012-02-16T04:59:09.0000208Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>part1</d:PartitionKey><d:RowKey>row1</d:RowKey><d:field>XML <test></d:field><d:otherfield>value</d:otherfield><d:otherprops>my properties</d:otherprops></m:properties></content></entry>
|
|
@ -1,8 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" m:etag="W/"datetime'2012-02-06T07%3A38%3A15.9268586Z'"" xmlns="http://www.w3.org/2005/Atom">
|
||||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" m:etag="W/"datetime'2012-02-16T04%3A58%3A43.0299762Z'"" xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>http://nodejsdev.table.core.windows.net/tableservice11(PartitionKey='part1',RowKey='row1')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:15Z</updated>
|
||||
<updated>2012-02-16T04:58:43Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<m:properties>
|
||||
<d:PartitionKey>part1</d:PartitionKey>
|
||||
<d:RowKey>row1</d:RowKey>
|
||||
<d:Timestamp m:type="Edm.DateTime">2012-02-06T07:38:15.9268586Z</d:Timestamp>
|
||||
<d:Timestamp m:type="Edm.DateTime">2012-02-16T04:58:43.0299762Z</d:Timestamp>
|
||||
<d:field>XML <test></d:field>
|
||||
<d:otherfield>value</d:otherfield>
|
||||
<d:otherprops>my properties</d:otherprops>
|
||||
|
|
|
@ -1 +1 @@
|
|||
<?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>2012-02-06T07:25:51.0000629Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>part1</d:PartitionKey><d:RowKey>row1</d:RowKey><d:field>XML <test></d:field><d:otherfield>value</d:otherfield><d:otherprops>my properties</d:otherprops></m:properties></content></entry>
|
||||
<?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>2012-02-16T04:59:09.0000544Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>part1</d:PartitionKey><d:RowKey>row1</d:RowKey><d:field>XML <test></d:field><d:otherfield>value</d:otherfield><d:otherprops>my properties</d:otherprops></m:properties></content></entry>
|
|
@ -2,6 +2,6 @@
|
|||
<error xmlns="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata">
|
||||
<code>ConditionNotMet</code>
|
||||
<message xml:lang="en-US">The condition specified using HTTP conditional header(s) is not met.
|
||||
RequestId:899da509-bbc9-4d20-973b-d0a00898974f
|
||||
Time:2012-02-06T07:38:15.9232311Z</message>
|
||||
RequestId:3c2f55b6-cdc6-4843-9837-8be27dc9b00d
|
||||
Time:2012-02-16T04:58:43.1344284Z</message>
|
||||
</error>
|
|
@ -2,12 +2,12 @@
|
|||
<feed xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
|
||||
<title type="text">Tables</title>
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables</id>
|
||||
<updated>2012-02-06T07:38:15Z</updated>
|
||||
<updated>2012-02-16T04:58:43Z</updated>
|
||||
<link rel="self" title="Tables" href="Tables" />
|
||||
<entry>
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables('tableservice11')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:15Z</updated>
|
||||
<updated>2012-02-16T04:58:43Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
|
|
@ -1 +1 @@
|
|||
[{"requestMethod":"POST","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"439","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:52 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x1.dat","responseStatusCode":201,"responseHeaders":{"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-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:15 GMT"},"responseFile":"x2.dat"},{"requestMethod":"POST","requestUrl":"http://playback.table.core.windows.net:80/tableservice12","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"572","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:52 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x3.dat","responseStatusCode":201,"responseHeaders":{"cache-control":"no-cache","transfer-encoding":"chunked","content-type":"application/atom+xml;charset=utf-8","etag":"W/\"datetime'2012-02-06T07%3A38%3A17.1531635Z'\"","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:16 GMT"},"responseFile":"x4.dat"},{"requestMethod":"MERGE","requestUrl":"http://playback.table.core.windows.net:80/tableservice12(PartitionKey=%27part1%27,RowKey=%27row1%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"572","if-match":"*","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:53 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x5.dat","responseStatusCode":204,"responseHeaders":{"cache-control":"no-cache","content-length":"0","etag":"W/\"datetime'2012-02-06T07%3A38%3A18.0130693Z'\"","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:16 GMT"}},{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:53 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"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-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:19 GMT"},"responseFile":"x6.dat"},{"requestMethod":"DELETE","requestUrl":"http://playback.table.core.windows.net:80/Tables(%27tableservice12%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:53 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":204,"responseHeaders":{"cache-control":"no-cache","content-length":"0","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:17 GMT"}}]
|
||||
[{"requestMethod":"POST","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"439","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:10 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x1.dat","responseStatusCode":201,"responseHeaders":{"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-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:43 GMT"},"responseFile":"x2.dat"},{"requestMethod":"POST","requestUrl":"http://playback.table.core.windows.net:80/tableservice12","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"572","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:10 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x3.dat","responseStatusCode":201,"responseHeaders":{"cache-control":"no-cache","transfer-encoding":"chunked","content-type":"application/atom+xml;charset=utf-8","etag":"W/\"datetime'2012-02-16T04%3A58%3A44.7337406Z'\"","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:44 GMT"},"responseFile":"x4.dat"},{"requestMethod":"MERGE","requestUrl":"http://playback.table.core.windows.net:80/tableservice12(PartitionKey=%27part1%27,RowKey=%27row1%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"572","if-match":"*","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:11 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x5.dat","responseStatusCode":204,"responseHeaders":{"cache-control":"no-cache","content-length":"0","etag":"W/\"datetime'2012-02-16T04%3A58%3A45.7035135Z'\"","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:45 GMT"}},{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:11 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"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-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:45 GMT"},"responseFile":"x6.dat"},{"requestMethod":"DELETE","requestUrl":"http://playback.table.core.windows.net:80/Tables(%27tableservice12%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:11 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":204,"responseHeaders":{"cache-control":"no-cache","content-length":"0","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:45 GMT"}}]
|
|
@ -1 +1 @@
|
|||
<?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>2012-02-06T07:25:52.0000383Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tableservice12</d:TableName></m:properties></content></entry>
|
||||
<?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>2012-02-16T04:59:10.0000344Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tableservice12</d:TableName></m:properties></content></entry>
|
|
@ -2,7 +2,7 @@
|
|||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables('tableservice12')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:16Z</updated>
|
||||
<updated>2012-02-16T04:58:43Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
|
|
@ -1 +1 @@
|
|||
<?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>2012-02-06T07:25:52.0000908Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>part1</d:PartitionKey><d:RowKey>row1</d:RowKey><d:field>XML <test></d:field><d:otherfield>value</d:otherfield><d:otherprops>my properties</d:otherprops></m:properties></content></entry>
|
||||
<?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>2012-02-16T04:59:10.0000824Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>part1</d:PartitionKey><d:RowKey>row1</d:RowKey><d:field>XML <test></d:field><d:otherfield>value</d:otherfield><d:otherprops>my properties</d:otherprops></m:properties></content></entry>
|
|
@ -1,8 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" m:etag="W/"datetime'2012-02-06T07%3A38%3A17.1531635Z'"" xmlns="http://www.w3.org/2005/Atom">
|
||||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" m:etag="W/"datetime'2012-02-16T04%3A58%3A44.7337406Z'"" xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>http://nodejsdev.table.core.windows.net/tableservice12(PartitionKey='part1',RowKey='row1')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:17Z</updated>
|
||||
<updated>2012-02-16T04:58:44Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<m:properties>
|
||||
<d:PartitionKey>part1</d:PartitionKey>
|
||||
<d:RowKey>row1</d:RowKey>
|
||||
<d:Timestamp m:type="Edm.DateTime">2012-02-06T07:38:17.1531635Z</d:Timestamp>
|
||||
<d:Timestamp m:type="Edm.DateTime">2012-02-16T04:58:44.7337406Z</d:Timestamp>
|
||||
<d:field>XML <test></d:field>
|
||||
<d:otherfield>value</d:otherfield>
|
||||
<d:otherprops>my properties</d:otherprops>
|
||||
|
|
|
@ -1 +1 @@
|
|||
<?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>2012-02-06T07:25:53.0000434Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>part1</d:PartitionKey><d:RowKey>row1</d:RowKey><d:field>XML <test></d:field><d:otherfield>value</d:otherfield><d:otherprops>my properties</d:otherprops></m:properties></content></entry>
|
||||
<?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>2012-02-16T04:59:11.0000254Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>part1</d:PartitionKey><d:RowKey>row1</d:RowKey><d:field>XML <test></d:field><d:otherfield>value</d:otherfield><d:otherprops>my properties</d:otherprops></m:properties></content></entry>
|
|
@ -2,12 +2,12 @@
|
|||
<feed xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
|
||||
<title type="text">Tables</title>
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables</id>
|
||||
<updated>2012-02-06T07:38:20Z</updated>
|
||||
<updated>2012-02-16T04:58:45Z</updated>
|
||||
<link rel="self" title="Tables" href="Tables" />
|
||||
<entry>
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables('tableservice12')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:20Z</updated>
|
||||
<updated>2012-02-16T04:58:45Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
|
|
@ -1 +1 @@
|
|||
[{"requestMethod":"POST","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"439","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:54 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x1.dat","responseStatusCode":201,"responseHeaders":{"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-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:18 GMT"},"responseFile":"x2.dat"},{"requestMethod":"POST","requestUrl":"http://playback.table.core.windows.net:80/tableservice13","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"572","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:54 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x3.dat","responseStatusCode":201,"responseHeaders":{"cache-control":"no-cache","transfer-encoding":"chunked","content-type":"application/atom+xml;charset=utf-8","etag":"W/\"datetime'2012-02-06T07%3A38%3A18.764025Z'\"","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:18 GMT"},"responseFile":"x4.dat"},{"requestMethod":"MERGE","requestUrl":"http://playback.table.core.windows.net:80/tableservice13(PartitionKey=%27part1%27,RowKey=%27row1%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"572","if-match":"W/\"datetime'2009-05-27T12%3A15%3A15.3321531Z'\"","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:55 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x5.dat","responseStatusCode":412,"responseHeaders":{"cache-control":"no-cache","transfer-encoding":"chunked","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:18 GMT"},"responseFile":"x6.dat"},{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:55 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"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-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:19 GMT"},"responseFile":"x7.dat"},{"requestMethod":"DELETE","requestUrl":"http://playback.table.core.windows.net:80/Tables(%27tableservice13%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:55 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":204,"responseHeaders":{"cache-control":"no-cache","content-length":"0","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:19 GMT"}}]
|
||||
[{"requestMethod":"POST","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"439","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:12 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x1.dat","responseStatusCode":201,"responseHeaders":{"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-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:46 GMT"},"responseFile":"x2.dat"},{"requestMethod":"POST","requestUrl":"http://playback.table.core.windows.net:80/tableservice13","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"572","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:12 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x3.dat","responseStatusCode":201,"responseHeaders":{"cache-control":"no-cache","transfer-encoding":"chunked","content-type":"application/atom+xml;charset=utf-8","etag":"W/\"datetime'2012-02-16T04%3A58%3A46.5316764Z'\"","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:45 GMT"},"responseFile":"x4.dat"},{"requestMethod":"MERGE","requestUrl":"http://playback.table.core.windows.net:80/tableservice13(PartitionKey=%27part1%27,RowKey=%27row1%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"572","if-match":"W/\"datetime'2009-05-27T12%3A15%3A15.3321531Z'\"","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:13 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x5.dat","responseStatusCode":412,"responseHeaders":{"cache-control":"no-cache","transfer-encoding":"chunked","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:45 GMT"},"responseFile":"x6.dat"},{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:13 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"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-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:46 GMT"},"responseFile":"x7.dat"},{"requestMethod":"DELETE","requestUrl":"http://playback.table.core.windows.net:80/Tables(%27tableservice13%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:13 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":204,"responseHeaders":{"cache-control":"no-cache","content-length":"0","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:46 GMT"}}]
|
|
@ -1 +1 @@
|
|||
<?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>2012-02-06T07:25:54.0000153Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tableservice13</d:TableName></m:properties></content></entry>
|
||||
<?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>2012-02-16T04:59:12.0000212Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tableservice13</d:TableName></m:properties></content></entry>
|
|
@ -2,7 +2,7 @@
|
|||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables('tableservice13')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:18Z</updated>
|
||||
<updated>2012-02-16T04:58:46Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
|
|
@ -1 +1 @@
|
|||
<?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>2012-02-06T07:25:54.0000597Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>part1</d:PartitionKey><d:RowKey>row1</d:RowKey><d:field>XML <test></d:field><d:otherfield>value</d:otherfield><d:otherprops>my properties</d:otherprops></m:properties></content></entry>
|
||||
<?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>2012-02-16T04:59:12.0000690Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>part1</d:PartitionKey><d:RowKey>row1</d:RowKey><d:field>XML <test></d:field><d:otherfield>value</d:otherfield><d:otherprops>my properties</d:otherprops></m:properties></content></entry>
|
|
@ -1,8 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" m:etag="W/"datetime'2012-02-06T07%3A38%3A18.764025Z'"" xmlns="http://www.w3.org/2005/Atom">
|
||||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" m:etag="W/"datetime'2012-02-16T04%3A58%3A46.5316764Z'"" xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>http://nodejsdev.table.core.windows.net/tableservice13(PartitionKey='part1',RowKey='row1')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:18Z</updated>
|
||||
<updated>2012-02-16T04:58:46Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<m:properties>
|
||||
<d:PartitionKey>part1</d:PartitionKey>
|
||||
<d:RowKey>row1</d:RowKey>
|
||||
<d:Timestamp m:type="Edm.DateTime">2012-02-06T07:38:18.764025Z</d:Timestamp>
|
||||
<d:Timestamp m:type="Edm.DateTime">2012-02-16T04:58:46.5316764Z</d:Timestamp>
|
||||
<d:field>XML <test></d:field>
|
||||
<d:otherfield>value</d:otherfield>
|
||||
<d:otherprops>my properties</d:otherprops>
|
||||
|
|
|
@ -1 +1 @@
|
|||
<?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>2012-02-06T07:25:55.0000027Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>part1</d:PartitionKey><d:RowKey>row1</d:RowKey><d:field>XML <test></d:field><d:otherfield>value</d:otherfield><d:otherprops>my properties</d:otherprops></m:properties></content></entry>
|
||||
<?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>2012-02-16T04:59:13.0000051Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>part1</d:PartitionKey><d:RowKey>row1</d:RowKey><d:field>XML <test></d:field><d:otherfield>value</d:otherfield><d:otherprops>my properties</d:otherprops></m:properties></content></entry>
|
|
@ -2,6 +2,6 @@
|
|||
<error xmlns="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata">
|
||||
<code>UpdateConditionNotSatisfied</code>
|
||||
<message xml:lang="en-US">The update condition specified in the request was not satisfied.
|
||||
RequestId:6d99637d-0846-4642-a8a5-7df8d82438b5
|
||||
Time:2012-02-06T07:38:19.5704942Z</message>
|
||||
RequestId:acc67799-9bf3-4bed-a7d2-3c999075f117
|
||||
Time:2012-02-16T04:58:46.4180016Z</message>
|
||||
</error>
|
|
@ -2,12 +2,12 @@
|
|||
<feed xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
|
||||
<title type="text">Tables</title>
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables</id>
|
||||
<updated>2012-02-06T07:38:19Z</updated>
|
||||
<updated>2012-02-16T04:58:46Z</updated>
|
||||
<link rel="self" title="Tables" href="Tables" />
|
||||
<entry>
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables('tableservice13')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:19Z</updated>
|
||||
<updated>2012-02-16T04:58:46Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1 +1 @@
|
|||
<?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>2012-02-06T07:25:55.0000597Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tableservice14</d:TableName></m:properties></content></entry>
|
||||
<?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>2012-02-16T04:59:13.0000773Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tableservice14</d:TableName></m:properties></content></entry>
|
|
@ -2,7 +2,7 @@
|
|||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables('tableservice14')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:20Z</updated>
|
||||
<updated>2012-02-16T04:58:47Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
|
|
@ -1 +1 @@
|
|||
<?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>2012-02-06T07:25:55.0000997Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>1</d:PartitionKey><d:RowKey>1</d:RowKey><d:field1>value</d:field1><d:field2>1</d:field2></m:properties></content></entry>
|
||||
<?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>2012-02-16T04:59:14.0000180Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>1</d:PartitionKey><d:RowKey>1</d:RowKey><d:field1>value</d:field1><d:field2>1</d:field2></m:properties></content></entry>
|
|
@ -1 +1 @@
|
|||
<?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>2012-02-06T07:25:56.0000427Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>1</d:PartitionKey><d:RowKey>1</d:RowKey><d:field1>value</d:field1><d:field2>2</d:field2></m:properties></content></entry>
|
||||
<?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>2012-02-16T04:59:14.0000626Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>1</d:PartitionKey><d:RowKey>1</d:RowKey><d:field1>value</d:field1><d:field2>2</d:field2></m:properties></content></entry>
|
|
@ -1,8 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" m:etag="W/"datetime'2012-02-06T07%3A38%3A20.9507755Z'"" xmlns="http://www.w3.org/2005/Atom">
|
||||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" m:etag="W/"datetime'2012-02-16T04%3A58%3A49.1695135Z'"" xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>http://nodejsdev.table.core.windows.net/tableservice14(PartitionKey='1',RowKey='1')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:19Z</updated>
|
||||
<updated>2012-02-16T04:58:48Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<m:properties>
|
||||
<d:PartitionKey>1</d:PartitionKey>
|
||||
<d:RowKey>1</d:RowKey>
|
||||
<d:Timestamp m:type="Edm.DateTime">2012-02-06T07:38:20.9507755Z</d:Timestamp>
|
||||
<d:Timestamp m:type="Edm.DateTime">2012-02-16T04:58:49.1695135Z</d:Timestamp>
|
||||
<d:field1>value</d:field1>
|
||||
<d:field2>2</d:field2>
|
||||
</m:properties>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
<feed xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
|
||||
<title type="text">Tables</title>
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables</id>
|
||||
<updated>2012-02-06T07:38:20Z</updated>
|
||||
<updated>2012-02-16T04:58:48Z</updated>
|
||||
<link rel="self" title="Tables" href="Tables" />
|
||||
<entry>
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables('tableservice14')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:20Z</updated>
|
||||
<updated>2012-02-16T04:58:48Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
@ -19,19 +19,4 @@
|
|||
</m:properties>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables('WADDiagnosticInfrastructureLogsTable')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:20Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
<link rel="edit" title="Tables" href="Tables('WADDiagnosticInfrastructureLogsTable')" />
|
||||
<category term="nodejsdev.Tables" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
|
||||
<content type="application/xml">
|
||||
<m:properties>
|
||||
<d:TableName>WADDiagnosticInfrastructureLogsTable</d:TableName>
|
||||
</m:properties>
|
||||
</content>
|
||||
</entry>
|
||||
</feed>
|
|
@ -1 +1 @@
|
|||
[{"requestMethod":"POST","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"439","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:57 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x1.dat","responseStatusCode":201,"responseHeaders":{"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-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:20 GMT"},"responseFile":"x2.dat"},{"requestMethod":"MERGE","requestUrl":"http://playback.table.core.windows.net:80/tableservice15(PartitionKey=%271%27,RowKey=%271%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"502","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:57 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x3.dat","responseStatusCode":204,"responseHeaders":{"cache-control":"no-cache","content-length":"0","etag":"W/\"datetime'2012-02-06T07%3A38%3A22.276643Z'\"","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:21 GMT"}},{"requestMethod":"MERGE","requestUrl":"http://playback.table.core.windows.net:80/tableservice15(PartitionKey=%271%27,RowKey=%271%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"524","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:58 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x4.dat","responseStatusCode":204,"responseHeaders":{"cache-control":"no-cache","content-length":"0","etag":"W/\"datetime'2012-02-06T07%3A38%3A22.7265979Z'\"","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:22 GMT"}},{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/tableservice15(PartitionKey=%271%27,RowKey=%271%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:58 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"cache-control":"no-cache","transfer-encoding":"chunked","content-type":"application/atom+xml;charset=utf-8","etag":"W/\"datetime'2012-02-06T07%3A38%3A22.7265979Z'\"","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:21 GMT"},"responseFile":"x5.dat"},{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:58 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"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-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:24 GMT"},"responseFile":"x6.dat"},{"requestMethod":"DELETE","requestUrl":"http://playback.table.core.windows.net:80/Tables(%27tableservice15%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:58 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":204,"responseHeaders":{"cache-control":"no-cache","content-length":"0","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:21 GMT"}}]
|
||||
[{"requestMethod":"POST","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"439","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:15 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x1.dat","responseStatusCode":201,"responseHeaders":{"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-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:48 GMT"},"responseFile":"x2.dat"},{"requestMethod":"MERGE","requestUrl":"http://playback.table.core.windows.net:80/tableservice15(PartitionKey=%271%27,RowKey=%271%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"502","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:16 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x3.dat","responseStatusCode":204,"responseHeaders":{"cache-control":"no-cache","content-length":"0","etag":"W/\"datetime'2012-02-16T04%3A58%3A50.4875135Z'\"","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:47 GMT"}},{"requestMethod":"MERGE","requestUrl":"http://playback.table.core.windows.net:80/tableservice15(PartitionKey=%271%27,RowKey=%271%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"524","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:16 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x4.dat","responseStatusCode":204,"responseHeaders":{"cache-control":"no-cache","content-length":"0","etag":"W/\"datetime'2012-02-16T04%3A58%3A50.9065135Z'\"","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:49 GMT"}},{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/tableservice15(PartitionKey=%271%27,RowKey=%271%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:16 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"cache-control":"no-cache","transfer-encoding":"chunked","content-type":"application/atom+xml;charset=utf-8","etag":"W/\"datetime'2012-02-16T04%3A58%3A50.9065135Z'\"","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:49 GMT"},"responseFile":"x5.dat"},{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:17 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"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-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:48 GMT"},"responseFile":"x6.dat"},{"requestMethod":"DELETE","requestUrl":"http://playback.table.core.windows.net:80/Tables(%27tableservice15%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:17 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":204,"responseHeaders":{"cache-control":"no-cache","content-length":"0","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:50 GMT"}}]
|
|
@ -1 +1 @@
|
|||
<?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>2012-02-06T07:25:57.0000262Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tableservice15</d:TableName></m:properties></content></entry>
|
||||
<?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>2012-02-16T04:59:15.0000636Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tableservice15</d:TableName></m:properties></content></entry>
|
|
@ -2,7 +2,7 @@
|
|||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables('tableservice15')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:21Z</updated>
|
||||
<updated>2012-02-16T04:58:48Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
|
|
@ -1 +1 @@
|
|||
<?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>2012-02-06T07:25:57.0000654Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>1</d:PartitionKey><d:RowKey>1</d:RowKey><d:field1>value</d:field1><d:field2>1</d:field2></m:properties></content></entry>
|
||||
<?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>2012-02-16T04:59:16.0000113Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>1</d:PartitionKey><d:RowKey>1</d:RowKey><d:field1>value</d:field1><d:field2>1</d:field2></m:properties></content></entry>
|
|
@ -1 +1 @@
|
|||
<?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>2012-02-06T07:25:58.0000089Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>1</d:PartitionKey><d:RowKey>1</d:RowKey><d:field1>value</d:field1><d:field2>1</d:field2><d:field3>2</d:field3></m:properties></content></entry>
|
||||
<?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>2012-02-16T04:59:16.0000456Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>1</d:PartitionKey><d:RowKey>1</d:RowKey><d:field1>value</d:field1><d:field2>1</d:field2><d:field3>2</d:field3></m:properties></content></entry>
|
|
@ -1,8 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" m:etag="W/"datetime'2012-02-06T07%3A38%3A22.7265979Z'"" xmlns="http://www.w3.org/2005/Atom">
|
||||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" m:etag="W/"datetime'2012-02-16T04%3A58%3A50.9065135Z'"" xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>http://nodejsdev.table.core.windows.net/tableservice15(PartitionKey='1',RowKey='1')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:22Z</updated>
|
||||
<updated>2012-02-16T04:58:50Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<m:properties>
|
||||
<d:PartitionKey>1</d:PartitionKey>
|
||||
<d:RowKey>1</d:RowKey>
|
||||
<d:Timestamp m:type="Edm.DateTime">2012-02-06T07:38:22.7265979Z</d:Timestamp>
|
||||
<d:Timestamp m:type="Edm.DateTime">2012-02-16T04:58:50.9065135Z</d:Timestamp>
|
||||
<d:field1>value</d:field1>
|
||||
<d:field2>1</d:field2>
|
||||
<d:field3>2</d:field3>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
<feed xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
|
||||
<title type="text">Tables</title>
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables</id>
|
||||
<updated>2012-02-06T07:38:24Z</updated>
|
||||
<updated>2012-02-16T04:58:49Z</updated>
|
||||
<link rel="self" title="Tables" href="Tables" />
|
||||
<entry>
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables('tableservice15')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:24Z</updated>
|
||||
<updated>2012-02-16T04:58:49Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
|
|
@ -1 +1 @@
|
|||
[{"requestMethod":"POST","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"439","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:59 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x1.dat","responseStatusCode":201,"responseHeaders":{"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-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:22 GMT"},"responseFile":"x2.dat"},{"requestMethod":"MERGE","requestUrl":"http://playback.table.core.windows.net:80/tableservice16(PartitionKey=%271%27,RowKey=%271%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"564","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:59 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x3.dat","responseStatusCode":204,"responseHeaders":{"cache-control":"no-cache","content-length":"0","etag":"W/\"datetime'2012-02-06T07%3A38%3A24.0954611Z'\"","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:23 GMT"}},{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/tableservice16(PartitionKey=%271%27,RowKey=%271%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:59 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"cache-control":"no-cache","transfer-encoding":"chunked","content-type":"application/atom+xml;charset=utf-8","etag":"W/\"datetime'2012-02-06T07%3A38%3A24.0954611Z'\"","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:22 GMT"},"responseFile":"x4.dat"},{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:26:00 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"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-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:24 GMT"},"responseFile":"x5.dat"},{"requestMethod":"DELETE","requestUrl":"http://playback.table.core.windows.net:80/Tables(%27tableservice16%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:26:00 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":204,"responseHeaders":{"cache-control":"no-cache","content-length":"0","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:24 GMT"}}]
|
||||
[{"requestMethod":"POST","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"439","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:17 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x1.dat","responseStatusCode":201,"responseHeaders":{"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-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:51 GMT"},"responseFile":"x2.dat"},{"requestMethod":"MERGE","requestUrl":"http://playback.table.core.windows.net:80/tableservice16(PartitionKey=%271%27,RowKey=%271abc%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"567","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:17 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x3.dat","responseStatusCode":204,"responseHeaders":{"cache-control":"no-cache","content-length":"0","etag":"W/\"datetime'2012-02-16T04%3A58%3A52.3895135Z'\"","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:50 GMT"}},{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/tableservice16(PartitionKey=%271%27,RowKey=%271abc%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:18 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"cache-control":"no-cache","transfer-encoding":"chunked","content-type":"application/atom+xml;charset=utf-8","etag":"W/\"datetime'2012-02-16T04%3A58%3A52.3895135Z'\"","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:52 GMT"},"responseFile":"x4.dat"},{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:18 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"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-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:51 GMT"},"responseFile":"x5.dat"},{"requestMethod":"DELETE","requestUrl":"http://playback.table.core.windows.net:80/Tables(%27tableservice16%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:18 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":204,"responseHeaders":{"cache-control":"no-cache","content-length":"0","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:50 GMT"}}]
|
|
@ -1 +1 @@
|
|||
<?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>2012-02-06T07:25:59.0000057Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tableservice16</d:TableName></m:properties></content></entry>
|
||||
<?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>2012-02-16T04:59:17.0000505Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tableservice16</d:TableName></m:properties></content></entry>
|
|
@ -2,7 +2,7 @@
|
|||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables('tableservice16')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:23Z</updated>
|
||||
<updated>2012-02-16T04:58:51Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
|
|
@ -1 +1 @@
|
|||
<?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>2012-02-06T07:25:59.0000488Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>1</d:PartitionKey><d:RowKey>1</d:RowKey><d:field1>value</d:field1><d:emptyField1/><d:emptyField2 m:null="true"/><d:nonEmptyField3>0</d:nonEmptyField3></m:properties></content></entry>
|
||||
<?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>2012-02-16T04:59:17.0000887Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>1</d:PartitionKey><d:RowKey>1abc</d:RowKey><d:field1>value</d:field1><d:emptyField1/><d:emptyField2 m:null="true"/><d:nonEmptyField3>0</d:nonEmptyField3></m:properties></content></entry>
|
|
@ -1,18 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" m:etag="W/"datetime'2012-02-06T07%3A38%3A24.0954611Z'"" xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>http://nodejsdev.table.core.windows.net/tableservice16(PartitionKey='1',RowKey='1')</id>
|
||||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" m:etag="W/"datetime'2012-02-16T04%3A58%3A52.3895135Z'"" xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>http://nodejsdev.table.core.windows.net/tableservice16(PartitionKey='1',RowKey='1abc')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:23Z</updated>
|
||||
<updated>2012-02-16T04:58:52Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
<link rel="edit" title="tableservice16" href="tableservice16(PartitionKey='1',RowKey='1')" />
|
||||
<link rel="edit" title="tableservice16" href="tableservice16(PartitionKey='1',RowKey='1abc')" />
|
||||
<category term="nodejsdev.tableservice16" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
|
||||
<content type="application/xml">
|
||||
<m:properties>
|
||||
<d:PartitionKey>1</d:PartitionKey>
|
||||
<d:RowKey>1</d:RowKey>
|
||||
<d:Timestamp m:type="Edm.DateTime">2012-02-06T07:38:24.0954611Z</d:Timestamp>
|
||||
<d:RowKey>1abc</d:RowKey>
|
||||
<d:Timestamp m:type="Edm.DateTime">2012-02-16T04:58:52.3895135Z</d:Timestamp>
|
||||
<d:emptyField1></d:emptyField1>
|
||||
<d:field1>value</d:field1>
|
||||
<d:nonEmptyField3>0</d:nonEmptyField3>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
<feed xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
|
||||
<title type="text">Tables</title>
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables</id>
|
||||
<updated>2012-02-06T07:38:24Z</updated>
|
||||
<updated>2012-02-16T04:58:51Z</updated>
|
||||
<link rel="self" title="Tables" href="Tables" />
|
||||
<entry>
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables('tableservice16')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:24Z</updated>
|
||||
<updated>2012-02-16T04:58:51Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
|
|
@ -1 +1 @@
|
|||
[{"requestMethod":"POST","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"438","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:38 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x1.dat","responseStatusCode":201,"responseHeaders":{"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-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:02 GMT"},"responseFile":"x2.dat"},{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/Tables(%27tableservice1%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:39 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"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-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:02 GMT"},"responseFile":"x3.dat"},{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:39 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"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-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:02 GMT"},"responseFile":"x4.dat"},{"requestMethod":"DELETE","requestUrl":"http://playback.table.core.windows.net:80/Tables(%27tableservice1%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:39 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":204,"responseHeaders":{"cache-control":"no-cache","content-length":"0","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:02 GMT"}}]
|
||||
[{"requestMethod":"POST","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"438","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:58:56 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x1.dat","responseStatusCode":201,"responseHeaders":{"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-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:28 GMT"},"responseFile":"x2.dat"},{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/Tables(%27tableservice1%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:58:56 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"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-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:30 GMT"},"responseFile":"x3.dat"},{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:58:57 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"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-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:30 GMT"},"responseFile":"x4.dat"},{"requestMethod":"DELETE","requestUrl":"http://playback.table.core.windows.net:80/Tables(%27tableservice1%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:58:57 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":204,"responseHeaders":{"cache-control":"no-cache","content-length":"0","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:30 GMT"}}]
|
|
@ -1 +1 @@
|
|||
<?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>2012-02-06T07:25:38.0000716Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tableservice1</d:TableName></m:properties></content></entry>
|
||||
<?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>2012-02-16T04:58:56.0000475Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tableservice1</d:TableName></m:properties></content></entry>
|
|
@ -2,7 +2,7 @@
|
|||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables('tableservice1')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:02Z</updated>
|
||||
<updated>2012-02-16T04:58:29Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables('tableservice1')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:03Z</updated>
|
||||
<updated>2012-02-16T04:58:31Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
<feed xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
|
||||
<title type="text">Tables</title>
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables</id>
|
||||
<updated>2012-02-06T07:38:02Z</updated>
|
||||
<updated>2012-02-16T04:58:31Z</updated>
|
||||
<link rel="self" title="Tables" href="Tables" />
|
||||
<entry>
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables('tableservice1')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:02Z</updated>
|
||||
<updated>2012-02-16T04:58:31Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
|
|
@ -1 +1 @@
|
|||
[{"requestMethod":"POST","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"438","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:39 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x1.dat","responseStatusCode":201,"responseHeaders":{"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-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:02 GMT"},"responseFile":"x2.dat"},{"requestMethod":"POST","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"438","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:39 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x3.dat","responseStatusCode":409,"responseHeaders":{"cache-control":"no-cache","transfer-encoding":"chunked","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:03 GMT"},"responseFile":"x4.dat"},{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:40 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"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-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:03 GMT"},"responseFile":"x5.dat"},{"requestMethod":"DELETE","requestUrl":"http://playback.table.core.windows.net:80/Tables(%27tableservice2%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:40 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":204,"responseHeaders":{"cache-control":"no-cache","content-length":"0","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:04 GMT"}}]
|
||||
[{"requestMethod":"POST","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"438","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:58:57 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x1.dat","responseStatusCode":201,"responseHeaders":{"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-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:29 GMT"},"responseFile":"x2.dat"},{"requestMethod":"POST","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"438","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:58:57 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x3.dat","responseStatusCode":409,"responseHeaders":{"cache-control":"no-cache","transfer-encoding":"chunked","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:31 GMT"},"responseFile":"x4.dat"},{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:58:58 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"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-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:31 GMT"},"responseFile":"x5.dat"},{"requestMethod":"DELETE","requestUrl":"http://playback.table.core.windows.net:80/Tables(%27tableservice2%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:58:58 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":204,"responseHeaders":{"cache-control":"no-cache","content-length":"0","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:31 GMT"}}]
|
|
@ -1 +1 @@
|
|||
<?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>2012-02-06T07:25:39.0000611Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tableservice2</d:TableName></m:properties></content></entry>
|
||||
<?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>2012-02-16T04:58:57.0000591Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tableservice2</d:TableName></m:properties></content></entry>
|
|
@ -2,7 +2,7 @@
|
|||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables('tableservice2')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:03Z</updated>
|
||||
<updated>2012-02-16T04:58:30Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
|
|
@ -1 +1 @@
|
|||
<?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>2012-02-06T07:25:39.0000976Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tableservice2</d:TableName></m:properties></content></entry>
|
||||
<?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>2012-02-16T04:58:57.0000998Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tableservice2</d:TableName></m:properties></content></entry>
|
|
@ -2,6 +2,6 @@
|
|||
<error xmlns="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata">
|
||||
<code>TableAlreadyExists</code>
|
||||
<message xml:lang="en-US">The table specified already exists.
|
||||
RequestId:6793a95f-b677-4a30-9070-ef41c813f716
|
||||
Time:2012-02-06T07:38:04.2432139Z</message>
|
||||
RequestId:04fa48e5-359c-4d7e-b4b7-111018b787f0
|
||||
Time:2012-02-16T04:58:32.3684879Z</message>
|
||||
</error>
|
|
@ -2,12 +2,12 @@
|
|||
<feed xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
|
||||
<title type="text">Tables</title>
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables</id>
|
||||
<updated>2012-02-06T07:38:04Z</updated>
|
||||
<updated>2012-02-16T04:58:31Z</updated>
|
||||
<link rel="self" title="Tables" href="Tables" />
|
||||
<entry>
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables('tableservice2')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:04Z</updated>
|
||||
<updated>2012-02-16T04:58:31Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -2,7 +2,7 @@
|
|||
<feed xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
|
||||
<title type="text">Tables</title>
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables</id>
|
||||
<updated>2012-02-06T07:38:06Z</updated>
|
||||
<updated>2012-02-16T04:58:32Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
|
|
@ -1 +1 @@
|
|||
<?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>2012-02-06T07:25:40.0000916Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tableservice3</d:TableName></m:properties></content></entry>
|
||||
<?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>2012-02-16T04:58:59.0000021Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tableservice3</d:TableName></m:properties></content></entry>
|
|
@ -2,7 +2,7 @@
|
|||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables('tableservice3')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:05Z</updated>
|
||||
<updated>2012-02-16T04:58:32Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
|
|
@ -1 +1 @@
|
|||
<?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>2012-02-06T07:25:41.0000363Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tableservice4</d:TableName></m:properties></content></entry>
|
||||
<?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>2012-02-16T04:58:59.0000528Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tableservice4</d:TableName></m:properties></content></entry>
|
|
@ -2,7 +2,7 @@
|
|||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables('tableservice4')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:05Z</updated>
|
||||
<updated>2012-02-16T04:58:33Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
<feed xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
|
||||
<title type="text">Tables</title>
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables</id>
|
||||
<updated>2012-02-06T07:38:05Z</updated>
|
||||
<updated>2012-02-16T04:58:33Z</updated>
|
||||
<link rel="self" title="Tables" href="Tables" />
|
||||
<entry>
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables('tableservice3')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:05Z</updated>
|
||||
<updated>2012-02-16T04:58:33Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
@ -22,7 +22,7 @@
|
|||
<entry>
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables('tableservice4')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:05Z</updated>
|
||||
<updated>2012-02-16T04:58:33Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
<feed xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
|
||||
<title type="text">Tables</title>
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables</id>
|
||||
<updated>2012-02-06T07:38:06Z</updated>
|
||||
<updated>2012-02-16T04:58:33Z</updated>
|
||||
<link rel="self" title="Tables" href="Tables" />
|
||||
<entry>
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables('tableservice3')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:06Z</updated>
|
||||
<updated>2012-02-16T04:58:33Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
@ -22,7 +22,7 @@
|
|||
<entry>
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables('tableservice4')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:06Z</updated>
|
||||
<updated>2012-02-16T04:58:33Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
|
|
@ -1 +1 @@
|
|||
[{"requestMethod":"POST","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"438","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:42 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x1.dat","responseStatusCode":201,"responseHeaders":{"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-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:06 GMT"},"responseFile":"x2.dat"},{"requestMethod":"DELETE","requestUrl":"http://playback.table.core.windows.net:80/Tables(%27tableservice5%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:42 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":204,"responseHeaders":{"cache-control":"no-cache","content-length":"0","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:05 GMT"}},{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:42 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"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-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:09 GMT"},"responseFile":"x3.dat"}]
|
||||
[{"requestMethod":"POST","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"438","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:00 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x1.dat","responseStatusCode":201,"responseHeaders":{"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-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:33 GMT"},"responseFile":"x2.dat"},{"requestMethod":"DELETE","requestUrl":"http://playback.table.core.windows.net:80/Tables(%27tableservice5%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:00 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":204,"responseHeaders":{"cache-control":"no-cache","content-length":"0","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:33 GMT"}},{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:01 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"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-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:34 GMT"},"responseFile":"x3.dat"}]
|
|
@ -1 +1 @@
|
|||
<?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>2012-02-06T07:25:42.0000321Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tableservice5</d:TableName></m:properties></content></entry>
|
||||
<?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>2012-02-16T04:59:00.0000551Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tableservice5</d:TableName></m:properties></content></entry>
|
|
@ -2,7 +2,7 @@
|
|||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables('tableservice5')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:06Z</updated>
|
||||
<updated>2012-02-16T04:58:34Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<feed xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
|
||||
<title type="text">Tables</title>
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables</id>
|
||||
<updated>2012-02-06T07:38:09Z</updated>
|
||||
<updated>2012-02-16T04:58:34Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1 +1 @@
|
|||
<?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>2012-02-06T07:25:43.0000143Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tableservice6</d:TableName></m:properties></content></entry>
|
||||
<?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>2012-02-16T04:59:01.0000300Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tableservice6</d:TableName></m:properties></content></entry>
|
|
@ -2,7 +2,7 @@
|
|||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables('tableservice6')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:07Z</updated>
|
||||
<updated>2012-02-16T04:58:35Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
|
|
@ -1 +1 @@
|
|||
<?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>2012-02-06T07:25:43.0000533Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>part1</d:PartitionKey><d:RowKey>row1</d:RowKey><d:field>my field</d:field><d:otherfield>my other field</d:otherfield><d:otherprops>my properties</d:otherprops></m:properties></content></entry>
|
||||
<?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>2012-02-16T04:59:01.0000924Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>part1</d:PartitionKey><d:RowKey>row1</d:RowKey><d:field>my field</d:field><d:otherfield>my other field</d:otherfield><d:otherprops>my properties</d:otherprops></m:properties></content></entry>
|
|
@ -1,8 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" m:etag="W/"datetime'2012-02-06T07%3A38%3A07.5631918Z'"" xmlns="http://www.w3.org/2005/Atom">
|
||||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" m:etag="W/"datetime'2012-02-16T04%3A58%3A35.5902895Z'"" xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>http://nodejsdev.table.core.windows.net/tableservice6(PartitionKey='part1',RowKey='row1')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:07Z</updated>
|
||||
<updated>2012-02-16T04:58:35Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<m:properties>
|
||||
<d:PartitionKey>part1</d:PartitionKey>
|
||||
<d:RowKey>row1</d:RowKey>
|
||||
<d:Timestamp m:type="Edm.DateTime">2012-02-06T07:38:07.5631918Z</d:Timestamp>
|
||||
<d:Timestamp m:type="Edm.DateTime">2012-02-16T04:58:35.5902895Z</d:Timestamp>
|
||||
<d:field>my field</d:field>
|
||||
<d:otherfield>my other field</d:otherfield>
|
||||
<d:otherprops>my properties</d:otherprops>
|
||||
|
|
|
@ -1 +1 @@
|
|||
<?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>2012-02-06T07:25:44.0000000Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>part2</d:PartitionKey><d:RowKey>row1</d:RowKey><d:boolval m:type="Edm.Boolean">true</d:boolval><d:intval m:type="Edm.Int32">42</d:intval><d:dateval m:type="Edm.DateTime">2012-01-25T08:00:00.0000000Z</d:dateval></m:properties></content></entry>
|
||||
<?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>2012-02-16T04:59:02.0000318Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>part2</d:PartitionKey><d:RowKey>row1</d:RowKey><d:boolval m:type="Edm.Boolean">true</d:boolval><d:intval m:type="Edm.Int32">42</d:intval><d:dateval m:type="Edm.DateTime">2012-01-25T08:00:00.0000000Z</d:dateval></m:properties></content></entry>
|
|
@ -1,8 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" m:etag="W/"datetime'2012-02-06T07%3A38%3A07.1255796Z'"" xmlns="http://www.w3.org/2005/Atom">
|
||||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" m:etag="W/"datetime'2012-02-16T04%3A58%3A35.4000554Z'"" xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>http://nodejsdev.table.core.windows.net/tableservice6(PartitionKey='part2',RowKey='row1')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:07Z</updated>
|
||||
<updated>2012-02-16T04:58:35Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<m:properties>
|
||||
<d:PartitionKey>part2</d:PartitionKey>
|
||||
<d:RowKey>row1</d:RowKey>
|
||||
<d:Timestamp m:type="Edm.DateTime">2012-02-06T07:38:07.1255796Z</d:Timestamp>
|
||||
<d:Timestamp m:type="Edm.DateTime">2012-02-16T04:58:35.4000554Z</d:Timestamp>
|
||||
<d:boolval m:type="Edm.Boolean">true</d:boolval>
|
||||
<d:intval m:type="Edm.Int32">42</d:intval>
|
||||
<d:dateval m:type="Edm.DateTime">2012-01-25T08:00:00Z</d:dateval>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
<feed xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
|
||||
<title type="text">tableservice6</title>
|
||||
<id>http://nodejsdev.table.core.windows.net/tableservice6</id>
|
||||
<updated>2012-02-06T07:38:10Z</updated>
|
||||
<updated>2012-02-16T04:58:36Z</updated>
|
||||
<link rel="self" title="tableservice6" href="tableservice6" />
|
||||
<entry m:etag="W/"datetime'2012-02-06T07%3A38%3A07.5631918Z'"">
|
||||
<entry m:etag="W/"datetime'2012-02-16T04%3A58%3A35.5902895Z'"">
|
||||
<id>http://nodejsdev.table.core.windows.net/tableservice6(PartitionKey='part1',RowKey='row1')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:10Z</updated>
|
||||
<updated>2012-02-16T04:58:36Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
@ -17,17 +17,17 @@
|
|||
<m:properties>
|
||||
<d:PartitionKey>part1</d:PartitionKey>
|
||||
<d:RowKey>row1</d:RowKey>
|
||||
<d:Timestamp m:type="Edm.DateTime">2012-02-06T07:38:07.5631918Z</d:Timestamp>
|
||||
<d:Timestamp m:type="Edm.DateTime">2012-02-16T04:58:35.5902895Z</d:Timestamp>
|
||||
<d:field>my field</d:field>
|
||||
<d:otherfield>my other field</d:otherfield>
|
||||
<d:otherprops>my properties</d:otherprops>
|
||||
</m:properties>
|
||||
</content>
|
||||
</entry>
|
||||
<entry m:etag="W/"datetime'2012-02-06T07%3A38%3A07.1255796Z'"">
|
||||
<entry m:etag="W/"datetime'2012-02-16T04%3A58%3A35.4000554Z'"">
|
||||
<id>http://nodejsdev.table.core.windows.net/tableservice6(PartitionKey='part2',RowKey='row1')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:10Z</updated>
|
||||
<updated>2012-02-16T04:58:36Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
@ -37,7 +37,7 @@
|
|||
<m:properties>
|
||||
<d:PartitionKey>part2</d:PartitionKey>
|
||||
<d:RowKey>row1</d:RowKey>
|
||||
<d:Timestamp m:type="Edm.DateTime">2012-02-06T07:38:07.1255796Z</d:Timestamp>
|
||||
<d:Timestamp m:type="Edm.DateTime">2012-02-16T04:58:35.4000554Z</d:Timestamp>
|
||||
<d:boolval m:type="Edm.Boolean">true</d:boolval>
|
||||
<d:intval m:type="Edm.Int32">42</d:intval>
|
||||
<d:dateval m:type="Edm.DateTime">2012-01-25T08:00:00Z</d:dateval>
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" m:etag="W/"datetime'2012-02-06T07%3A38%3A07.5631918Z'"" xmlns="http://www.w3.org/2005/Atom">
|
||||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" m:etag="W/"datetime'2012-02-16T04%3A58%3A35.5902895Z'"" xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>http://nodejsdev.table.core.windows.net/tableservice6(PartitionKey='part1',RowKey='row1')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:08Z</updated>
|
||||
<updated>2012-02-16T04:58:36Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<m:properties>
|
||||
<d:PartitionKey>part1</d:PartitionKey>
|
||||
<d:RowKey>row1</d:RowKey>
|
||||
<d:Timestamp m:type="Edm.DateTime">2012-02-06T07:38:07.5631918Z</d:Timestamp>
|
||||
<d:Timestamp m:type="Edm.DateTime">2012-02-16T04:58:35.5902895Z</d:Timestamp>
|
||||
<d:field>my field</d:field>
|
||||
<d:otherfield>my other field</d:otherfield>
|
||||
<d:otherprops>my properties</d:otherprops>
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
<feed xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
|
||||
<title type="text">Tables</title>
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables</id>
|
||||
<updated>2012-02-06T07:38:08Z</updated>
|
||||
<updated>2012-02-16T04:58:36Z</updated>
|
||||
<link rel="self" title="Tables" href="Tables" />
|
||||
<entry>
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables('tableservice6')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:08Z</updated>
|
||||
<updated>2012-02-16T04:58:36Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
|
|
@ -1 +1 @@
|
|||
[{"requestMethod":"POST","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"438","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:45 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x1.dat","responseStatusCode":201,"responseHeaders":{"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-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:08 GMT"},"responseFile":"x2.dat"},{"requestMethod":"POST","requestUrl":"http://playback.table.core.windows.net:80/tableservice7","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"581","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:45 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x3.dat","responseStatusCode":201,"responseHeaders":{"cache-control":"no-cache","transfer-encoding":"chunked","content-type":"application/atom+xml;charset=utf-8","etag":"W/\"datetime'2012-02-06T07%3A38%3A09.5919569Z'\"","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:09 GMT"},"responseFile":"x4.dat"},{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/tableservice7(PartitionKey=%27part1%27,RowKey=%27row1%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:45 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"cache-control":"no-cache","transfer-encoding":"chunked","content-type":"application/atom+xml;charset=utf-8","etag":"W/\"datetime'2012-02-06T07%3A38%3A09.5919569Z'\"","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:09 GMT"},"responseFile":"x5.dat"},{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:46 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"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-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:07 GMT"},"responseFile":"x6.dat"},{"requestMethod":"DELETE","requestUrl":"http://playback.table.core.windows.net:80/Tables(%27tableservice7%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Mon, 06 Feb 2012 07:25:46 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":204,"responseHeaders":{"cache-control":"no-cache","content-length":"0","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Mon, 06 Feb 2012 07:38:09 GMT"}}]
|
||||
[{"requestMethod":"POST","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"438","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:03 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x1.dat","responseStatusCode":201,"responseHeaders":{"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-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:37 GMT"},"responseFile":"x2.dat"},{"requestMethod":"POST","requestUrl":"http://playback.table.core.windows.net:80/tableservice7","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"581","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:03 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x3.dat","responseStatusCode":201,"responseHeaders":{"cache-control":"no-cache","transfer-encoding":"chunked","content-type":"application/atom+xml;charset=utf-8","etag":"W/\"datetime'2012-02-16T04%3A58%3A37.3787679Z'\"","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:36 GMT"},"responseFile":"x4.dat"},{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/tableservice7(PartitionKey=%27part1%27,RowKey=%27row1%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:04 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"cache-control":"no-cache","transfer-encoding":"chunked","content-type":"application/atom+xml;charset=utf-8","etag":"W/\"datetime'2012-02-16T04%3A58%3A37.3787679Z'\"","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:37 GMT"},"responseFile":"x5.dat"},{"requestMethod":"GET","requestUrl":"http://playback.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:04 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":200,"responseHeaders":{"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-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:36 GMT"},"responseFile":"x6.dat"},{"requestMethod":"DELETE","requestUrl":"http://playback.table.core.windows.net:80/Tables(%27tableservice7%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Thu, 16 Feb 2012 04:59:04 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"responseStatusCode":204,"responseHeaders":{"cache-control":"no-cache","content-length":"0","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Thu, 16 Feb 2012 04:58:36 GMT"}}]
|
|
@ -1 +1 @@
|
|||
<?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>2012-02-06T07:25:45.0000196Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tableservice7</d:TableName></m:properties></content></entry>
|
||||
<?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>2012-02-16T04:59:03.0000451Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tableservice7</d:TableName></m:properties></content></entry>
|
|
@ -2,7 +2,7 @@
|
|||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>http://nodejsdev.table.core.windows.net/Tables('tableservice7')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:09Z</updated>
|
||||
<updated>2012-02-16T04:58:37Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
|
|
@ -1 +1 @@
|
|||
<?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>2012-02-06T07:25:45.0000570Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>part1</d:PartitionKey><d:RowKey>row1</d:RowKey><d:field>XML <test></d:field><d:otherfield>my other field</d:otherfield><d:otherprops>my properties</d:otherprops></m:properties></content></entry>
|
||||
<?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>2012-02-16T04:59:03.0000805Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>part1</d:PartitionKey><d:RowKey>row1</d:RowKey><d:field>XML <test></d:field><d:otherfield>my other field</d:otherfield><d:otherprops>my properties</d:otherprops></m:properties></content></entry>
|
|
@ -1,8 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" m:etag="W/"datetime'2012-02-06T07%3A38%3A09.5919569Z'"" xmlns="http://www.w3.org/2005/Atom">
|
||||
<entry xml:base="http://nodejsdev.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" m:etag="W/"datetime'2012-02-16T04%3A58%3A37.3787679Z'"" xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>http://nodejsdev.table.core.windows.net/tableservice7(PartitionKey='part1',RowKey='row1')</id>
|
||||
<title type="text"></title>
|
||||
<updated>2012-02-06T07:38:09Z</updated>
|
||||
<updated>2012-02-16T04:58:37Z</updated>
|
||||
<author>
|
||||
<name />
|
||||
</author>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<m:properties>
|
||||
<d:PartitionKey>part1</d:PartitionKey>
|
||||
<d:RowKey>row1</d:RowKey>
|
||||
<d:Timestamp m:type="Edm.DateTime">2012-02-06T07:38:09.5919569Z</d:Timestamp>
|
||||
<d:Timestamp m:type="Edm.DateTime">2012-02-16T04:58:37.3787679Z</d:Timestamp>
|
||||
<d:field>XML <test></d:field>
|
||||
<d:otherfield>my other field</d:otherfield>
|
||||
<d:otherprops>my properties</d:otherprops>
|
||||
|
|
Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше
Загрузка…
Ссылка в новой задаче