Initial commit to factoring out mock server

This commit is contained in:
Andre Rodrigues 2012-12-27 16:08:54 +00:00
Родитель e6f803fc1d
Коммит e876a91f58
234 изменённых файлов: 7933 добавлений и 1165 удалений

1
.gitignore поставляемый
Просмотреть файл

@ -6,6 +6,7 @@ targets/*
*.user
# Node #
test/recordings/
node_modules/
npm-debug.log
azure_error

Просмотреть файл

@ -952,6 +952,7 @@ BlobService.prototype.createBlockBlobFromText = function (container, blob, text,
var processResponseCallback = function (responseObject, next) {
responseObject.blobResult = null;
if (!responseObject.error) {
responseObject.blobResult = new BlobResult(container, blob);
responseObject.blobResult.getPropertiesFromHeaders(responseObject.response.headers);

Просмотреть файл

@ -106,20 +106,7 @@ function ServiceClient(host, authenticationProvider) {
this._initDefaultFilter();
if (host) {
var parsedHost = ServiceClient._parseHost(host);
this.host = parsedHost.hostname;
if (parsedHost.port) {
this.port = parsedHost.port;
} else if (parsedHost.protocol === 'https:') {
this.port = 443;
} else {
this.port = 80;
}
if (!this.protocol) {
this.protocol = parsedHost.protocol + '//';
}
this.setHost(host);
} else if (!this.protocol) {
this.protocol = ServiceClient.DEFAULT_PROTOCOL;
}
@ -134,6 +121,28 @@ function ServiceClient(host, authenticationProvider) {
util.inherits(ServiceClient, events.EventEmitter);
/**
* Sets a host for the service.
*
* @param {string} host The host for the service.
*/
ServiceClient.prototype.setHost = function (host) {
var parsedHost = ServiceClient._parseHost(host);
this.host = parsedHost.hostname;
if (parsedHost.port) {
this.port = parsedHost.port;
} else if (parsedHost.protocol === 'https:') {
this.port = 443;
} else {
this.port = 80;
}
if (!this.protocol) {
this.protocol = parsedHost.protocol + '//';
}
}
/**
* Performs a REST service request through HTTP expecting an input stream.
*

Просмотреть файл

@ -28,7 +28,8 @@
"mocha": "*",
"jshint": "*",
"sinon": "*",
"should": "*"
"should": "*",
"http-mock": "*"
},
"homepage": "http://github.com/WindowsAzure/azure-sdk-for-node",
"repository": {

1
prefix4424.bmp Normal file
Просмотреть файл

@ -0,0 +1 @@
Hello World!

Просмотреть файл

@ -1,47 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>
Mock proxy server
</title>
</head>
<body>
<h3>
Get current session state
</h3>
<p>
<code>GET <a href="session">/session</a></code>
</p>
<h3>
Start recording session
</h3>
<p>
<code>PUT <a href="session">/session</a> {"mode":"recording","name":"name-for-session-folder"}</code>
</p>
<h3>
Start playback session
</h3>
<p>
<code>PUT <a href="session">/session</a> {"mode":"playback","name":"name-for-session-folder"}</code>
</p>
<h3>
End current playback or recording
</h3>
<p>
<code>DELETE <a href="session">/session</a></code>
</p>
<h3>
Browse recorded sessions
</h3>
<p>
<code>GET <a href="sessions">/sessions</a></code>
</p>
<h3>
Get and Set next-proxy settings
</h3>
<p>
<code>GET <a href="proxy">/proxy</a></code><br>
<code>PUT <a href="proxy">/proxy</a> {"host":"dns-name-or-ip","port":"80"}</code>
</p>
</body>
</html>

Просмотреть файл

@ -1,489 +0,0 @@
/**
* Copyright (c) Microsoft. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
var http = require('http');
var fs = require('fs');
var url = require('url');
var sessionsRootPath = 'test/recordings';
exports.log = true;
if (!fs.existsSync) {
fs.existsSync = require('path').existsSync;
}
function writeLog(msg) {
if (exports.log) {
console.log(msg);
}
}
var driverFactory = {
modes: {},
create: function (proxy, session) {
// call the factory method which matches the session.mode
return this.modes[session.mode](proxy, session);
}
};
var utils = {};
utils.buildRequestOptions = function (request, proxy) {
var options = {
host: proxy.host,
port: proxy.port,
method: request.method,
path: request.url,
headers: request.headers
};
if (!proxy.host) {
var u = url.parse(request.url);
options.host = u.hostname;
options.port = u.port;
if (!u.port) {
options.port = (u.protocol == 'https') ? '443' : '80';
}
}
return options;
};
// session.mode 'neutral' allows requests to pass through to actual proxy
driverFactory.modes.neutral = function (proxy, session) {
var driver = {};
driver.call = function (request, response) {
writeLog(' REQUEST: ' + request.method + ' ' + request.url);
var options = utils.buildRequestOptions(request, proxy);
var requestStart = new Date();
var proxyRequest = http.request(options, function (proxyResponse) {
var requestStop = new Date();
writeLog(" STATUS: " + proxyResponse.statusCode + ' ' + (requestStop.getTime() - requestStart.getTime()) + 'ms');
proxyResponse.on('data', function (chunk) {
writeLog(' >proxy_response.on data');
response.write(chunk, 'binary');
});
proxyResponse.on('end', function () {
writeLog(' >proxy_response.on end');
response.end();
});
proxyResponse.on('error', function (err) {
writeLog(' >proxy_response.on error');
writeLog('proxy_response ' + err);
response.end();
});
response.writeHead(proxyResponse.statusCode, proxyRequest.headers);
});
request.on('data', function (chunk) {
writeLog(' >request.on data');
proxyRequest.write(chunk, 'binary');
});
request.on('end', function () {
writeLog(' >request.on end');
proxyRequest.end();
});
proxyRequest.on('error', function (err) {
writeLog('proxy_request ' + err + ' on ' + request.method + ' ' + request.url);
driver.call(request, response).end();
//response.end();
});
request.on('error', function (err) {
writeLog('request' + err);
response.end();
});
response.on('error', function (err) {
writeLog('response' + err);
response.end();
});
return proxyRequest;
};
driver.close = function () { };
return driver;
};
// session.mode 'recording' saves all request/response information to a session subdirectory
driverFactory.modes.recording = function (proxy, session) {
var sessionPath = sessionsRootPath + '/' + session.name;
if (!fs.existsSync(sessionsRootPath)) {
fs.mkdirSync(sessionsRootPath, 0755);
}
if (!fs.existsSync(sessionPath)) {
fs.mkdirSync(sessionPath, 0755);
}
// files.create returns a worker which creates .dat files the first time .write is called
var files = { count: 0 };
files.create = function (entry, entryProperty) {
var file = {};
var stream = null;
file.write = function (chunk) {
if (stream == null) {
files.count = files.count + 1;
var name = 'x' + files.count + '.dat';
entry[entryProperty] = name;
stream = fs.createWriteStream(sessionPath + '/' + name);
writeLog(' ' + entryProperty + ' ' + name);
}
stream.write(chunk);
};
file.end = function () {
if (stream != null) {
stream.end();
}
};
return file;
};
var records = [];
var driver = {};
driver.call = function (request, response) {
var entry = {
requestMethod: request.method,
requestUrl: request.url,
requestHeaders: request.headers
};
records.push(entry);
var requestFile = files.create(entry, "requestFile");
var responseFile = files.create(entry, "responseFile");
writeLog(' REQUEST: ' + request.method + ' ' + request.url);
var options = utils.buildRequestOptions(request, proxy);
var requestStart = new Date();
var proxyRequest = http.request(options, function (proxyResponse) {
var responseFileContent = '';
var requestStop = new Date();
entry.responseStatusCode = proxyResponse.statusCode;
entry.responseHeaders = proxyResponse.headers;
writeLog(" STATUS: " + proxyResponse.statusCode + ' ' + (requestStop.getTime() - requestStart.getTime()) + 'ms');
proxyResponse.on('data', function (chunk) {
//writeLog(' >proxy_response.on data');
responseFileContent += chunk;
if (!response.write(chunk, 'binary')) {
//writeLog(' >proxy_response.pause()');
proxyResponse.pause();
}
});
response.on('drain', function () {
//writeLog(' >response.on drain');
proxyResponse.resume();
});
proxyResponse.on('end', function () {
writeLog(' >proxy_response.on end');
if (responseFileContent) {
// normalize line feeds by always using carriage return + line feeds on recording
responseFileContent = responseFileContent.replace(/\n/g, '\r\n');
responseFile.write(responseFileContent);
responseFile.end();
}
response.end();
});
proxyResponse.on('error', function (err) {
writeLog(' >proxy_response.on error ' + err);
});
response.writeHead(proxyResponse.statusCode, proxyResponse.headers);
});
request.on('data', function (chunk) {
//writeLog(' >request.on data');
requestFile.write(chunk);
if (!proxyRequest.write(chunk, 'binary')) {
request.pause();
}
});
proxyRequest.on('drain', function () {
request.resume();
});
request.on('end', function () {
writeLog(' >request.on end');
requestFile.end();
proxyRequest.end();
});
request.on('error', function (err) {
writeLog(' >request.on error ' + err);
});
response.on('error', function (err) {
writeLog(' >response.on error ' + err);
});
proxyRequest.on('error', function (err) {
writeLog(' >proxy_request.on error ' + err);
entry.used = true; // prevent use in playback
response.end();
});
};
driver.close = function () {
// Update records for storing
for (var i in records) {
// strip request authorization header
delete records[i].requestHeaders['authorization'];
// Strip request id header
delete records[i].requestHeaders['x-ms-request-id'];
// Strip request host header
delete records[i].requestHeaders['host'];
// Strip response request id header
delete records[i].responseHeaders['x-ms-request-id'];
// Strip response location header
delete records[i].responseHeaders['location'];
// Strip account from url and replace by "playback" account
var u = url.parse(records[i].requestUrl);
u.hostname = 'playback' + u.hostname.substring(u.hostname.indexOf('.'));
u.host = u.hostname + ':' + u.port;
delete u.href;
records[i].requestUrl = url.format(u);
}
fs.writeFile(sessionPath + '/index.json', JSON.stringify(records), function (err) {
if (err) throw err;
writeLog(' Saved ' + sessionPath + '/index.json');
});
};
return driver;
};
driverFactory.modes.playback = function (proxy, session) {
var sessionPath = sessionsRootPath + '/' + session.name;
if (fs.existsSync(sessionPath + '/index.json')) {
var records = JSON.parse(fs.readFileSync(sessionPath + '/index.json'));
var driver = {};
driver.call = function (request, response) {
writeLog(' REQUEST: ' + request.method + ' ' + request.url);
request.url = url.format(url.parse(request.url));
var entry = null;
for (var k in records) {
var match = records[k];
if (match.used) {
continue;
}
if (request.method != match.requestMethod ||
request.url != match.requestUrl) {
continue;
}
writeLog(' matched index ' + k);
match.used = true;
entry = match;
break;
}
if (entry == null) {
writeLog(' STATUS: 500 Unexpected Request');
response.statusCode = 500;
response.end('Unexpected request');
return;
}
writeLog(' STATUS: ' + entry.responseStatusCode);
response.statusCode = entry.responseStatusCode;
for (k in entry.responseHeaders) {
response.setHeader(k, entry.responseHeaders[k]);
}
if (!entry.responseFile) {
response.end();
}
else {
writeLog(' sending: ' + entry.responseFile);
var responseFileContent = fs.readFileSync(sessionPath + '/' + entry.responseFile);
// Make sure only the last line feed contains a carriage return
if (responseFileContent) {
responseFileContent = responseFileContent.toString().replace(/\r\n/g, '\n');
if (responseFileContent[responseFileContent.length - 1] === '\n') {
responseFileContent[responseFileContent.length - 1] = '\r';
responseFileContent += '\n';
}
response.write(responseFileContent);
response.end();
}
}
};
driver.close = function () { };
}
else {
var driver = {};
driver.call = function (request, response) {
writeLog(' REQUEST: ' + request.method + ' ' + request.url);
writeLog(' STATUS: 500 Unexpected Request');
response.statusCode = 500;
response.end('Unexpected request');
};
driver.close = function () { };
}
return driver;
};
// factory method for the service context
function mockProxy(host, port) {
// this state is GET or PUT on the http://localhost:8888/proxy url
// a test framework is expected to PUT this value to correct proxy if needed
var proxy = { host: host, port: port };
// this state is GET, PUT, or DELETE on the http://localhost:8888/session url
// a test framework is expected to PUT before and DELETE after each test
// valid modes include 'neutral', 'recording', and 'playback'
var session = { mode: 'neutral', name: '' };
// this is the current driver, it's updated when the /session state is altered
var driver = driverFactory.create(proxy, session);
return function (request, response) {
var u = url.parse(request.url, true);
var isLocal = request.headers.host == 'localhost:8888' || u.host == 'localhost:8888';
if (!isLocal) {
driver.call(request, response);
return;
}
writeLog("CONTROL: " + request.method + ' ' + u.pathname);
response.setHeader('Content-Type', 'text/plain');
if (u.pathname == '/') {
response.setHeader('Content-Type', 'text/html');
response.end(fs.readFileSync("index.html"));
}
else if (u.pathname == '/proxy') {
if (request.method == "GET") {
response.end(JSON.stringify(proxy));
}
else if (request.method == "PUT") {
var data = '';
request.on('data', function (chunk) {
data += chunk;
});
request.on('end', function () {
writeLog(" " + data);
var put = JSON.parse(data);
proxy.host = put.host;
proxy.port = put.port;
response.end();
});
}
else {
response.end();
}
}
else if (u.pathname == '/session') {
if (request.method == "GET") {
response.end(JSON.stringify(session));
}
else if (request.method == "PUT") {
var data = '';
request.on('data', function (chunk) {
data += chunk;
});
request.on('end', function () {
writeLog(" " + data);
var put = JSON.parse(data);
session = { mode: put.mode, name: put.name };
driver.close();
driver = driverFactory.create(proxy, session);
response.end();
});
}
else if (request.method == "DELETE") {
driver.close();
session = { mode: 'neutral', name: '' };
driver = driverFactory.create(proxy, session);
response.end();
}
else {
response.end();
}
}
else if (u.pathname == '/sessions') {
var sessions = fs.readdirSync(sessionsRootPath);
response.setHeader('Content-Type', 'text/html');
response.write('<ul>');
for (k in sessions) {
response.write('<li><a href="sessions/');
response.write(sessions[k]);
response.write('">');
response.write(sessions[k]);
response.write('</a></li>');
}
response.write('</ul>');
response.end();
}
else if (u.pathname.indexOf('/sessions/') == 0) {
var records = JSON.parse(fs.readFileSync('.' + u.pathname + '/index.json'));
response.setHeader('Content-Type', 'text/html');
response.write('<ul>');
for (var k in records) {
response.write('<li>');
response.write(records[k].requestMethod);
response.write(' ');
response.write(records[k].requestUrl);
response.write('</li>');
}
response.write('</ul>');
response.end();
}
else {
response.statusCode = 404;
response.write('404 Huh?');
response.end();
}
};
};
exports.createServer = function () {
var server = http.createServer(mockProxy(null, null));
server.listen(8888);
writeLog('Proxy server started on http://localhost:8888');
return server;
};

Просмотреть файл

@ -1,172 +0,0 @@
/**
* Copyright (c) Microsoft. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
var http = require('http');
var mockServer = require('../mockserver/mockserver');
var ServiceClient = require("../../lib/services/core/serviceclient");
var recordingsPath = '/session';
// Expose 'MockServerClient'
exports = module.exports = MockServerClient;
MockServerClient.isRecording = function () {
return process.env['AZURE_TEST_IS_RECORDING'] === '1' ||
process.env['AZURE_TEST_IS_RECORDING'] === 'true';
};
MockServerClient.isMocked = function () {
return false;
// TODO: uncomment once mock server is running correctly again.
/*
return !(process.env['AZURE_TEST_IS_NOT_MOCKED'] === '1' ||
process.env['AZURE_TEST_IS_NOT_MOCKED'] === 'true');
*/
};
MockServerClient.showLogs = function () {
return process.env['AZURE_TEST_SHOW_MOCK_LOGS'] === '1' ||
process.env['AZURE_TEST_SHOW_MOCK_LOGS'] === 'true';
};
function MockServerClient() {
mockServer.log = MockServerClient.showLogs();
this.server = null;
};
MockServerClient.prototype.tryStartServer = function () {
if (!this.server) {
this.server = mockServer.createServer();
}
};
MockServerClient.prototype.stopServer = function () {
if (this.server) {
this.server.close();
}
};
MockServerClient.prototype.startTest = function (testName, callback) {
this.tryStartServer();
if (MockServerClient.isRecording()) {
this.startRecording(testName, callback);
}
else {
this.startPlayback(testName, callback);
}
};
MockServerClient.prototype.endTest = function (testName, lastTest, callback) {
var self = this;
var shutdown = function () {
if (lastTest) {
self.stopServer();
}
callback();
};
if (MockServerClient.isRecording()) {
this.endRecording(testName, shutdown);
}
else {
this.endPlayback(testName, shutdown);
}
};
MockServerClient.prototype.startRecording = function (name, callback) {
var requestOptions = {
method: 'PUT',
path: recordingsPath,
host: 'localhost',
port: '8888'
};
var request = http.request(requestOptions, function (response) {
var body = '';
// Keep track of the response data.
response.on('data', function (responseData) {
body += responseData;
});
response.on('end', function () {
callback();
});
});
request.end(JSON.stringify({ "mode": "recording", "name": name }));
};
MockServerClient.prototype.endRecording = function (name, callback) {
var requestOptions = {
method: 'DELETE',
path: recordingsPath,
host: 'localhost',
port: '8888'
};
var request = http.request(requestOptions, function (response) {
response.on('end', function () {
callback();
});
});
request.end(JSON.stringify({ "mode": "recording", "name": name }));
};
MockServerClient.prototype.startPlayback = function (name, callback) {
var requestOptions = {
method: 'PUT',
path: recordingsPath,
host: 'localhost',
port: '8888'
};
var request = http.request(requestOptions, function (response) {
var body = '';
// Keep track of the response data.
response.on('data', function (responseData) {
body += responseData;
});
response.on('end', function () {
callback();
});
});
request.end(JSON.stringify({ "mode": "playback", "name": name }));
};
MockServerClient.prototype.endPlayback = function (name, callback) {
var requestOptions = {
method: 'DELETE',
path: recordingsPath,
host: 'localhost',
port: '8888'
};
var request = http.request(requestOptions, function (response) {
response.on('end', function () {
callback();
});
});
request.end(JSON.stringify({ "mode": "playback", "name": name }));
};

Просмотреть файл

@ -0,0 +1 @@
[{"requestMethod":"POST","requestUrl":"http://aogail2.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"427","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Sun, 30 Dec 2012 15:34:21 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":"Sun, 30 Dec 2012 15:34:17 GMT"},"responseFile":"x2.dat"},{"requestMethod":"POST","requestUrl":"http://aogail2.table.core.windows.net:80/$batch","requestHeaders":{"content-type":"multipart/mixed; boundary=batch_34d61e5cfa5a7933038e675385e574a0","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","content-length":"1038","x-ms-version":"2011-08-18","x-ms-date":"Sun, 30 Dec 2012 15:34:22 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x3.dat","responseStatusCode":202,"responseHeaders":{"cache-control":"no-cache","transfer-encoding":"chunked","content-type":"multipart/mixed; boundary=batchresponse_ae6ccb57-8c60-4ea4-8a8e-5af9b08bb324","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Sun, 30 Dec 2012 15:34:19 GMT"},"responseFile":"x4.dat"},{"requestMethod":"GET","requestUrl":"http://aogail2.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":"Sun, 30 Dec 2012 15:34:23 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":"Sun, 30 Dec 2012 15:34:18 GMT"},"responseFile":"x5.dat"},{"requestMethod":"DELETE","requestUrl":"http://aogail2.table.core.windows.net:80/Tables(%27batch1%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":"Sun, 30 Dec 2012 15:34:23 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":"Sun, 30 Dec 2012 15:34:19 GMT"}}]

Просмотреть файл

@ -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-12-30T15:34:21.615Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>batch1</d:TableName></m:properties></content></entry>

Просмотреть файл

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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://aogail2.table.core.windows.net/Tables('batch1')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:18Z</updated>
<author>
<name />
</author>
<link rel="edit" title="Tables" href="Tables('batch1')" />
<category term="aogail2.Tables" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:TableName>batch1</d:TableName>
</m:properties>
</content>
</entry>

Просмотреть файл

@ -0,0 +1,15 @@
--batch_34d61e5cfa5a7933038e675385e574a0
content-type: multipart/mixed; boundary=changeset_34d61e5cfa5a7933038e675385e574a0
--changeset_34d61e5cfa5a7933038e675385e574a0
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/batch1 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 569
content-id: 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-12-30T15:34:22.705Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>part1</d:PartitionKey><d:RowKey>row1</d:RowKey><d:address>my city, my state</d:address><d:field1>my field1</d:field1><d:otherprops>my properties</d:otherprops></m:properties></content></entry>
--changeset_34d61e5cfa5a7933038e675385e574a0--
--batch_34d61e5cfa5a7933038e675385e574a0--

Просмотреть файл

@ -0,0 +1,38 @@
--batchresponse_ae6ccb57-8c60-4ea4-8a8e-5af9b08bb324
Content-Type: multipart/mixed; boundary=changesetresponse_82534abf-c9dc-47e1-9c19-f27078df225f
--changesetresponse_82534abf-c9dc-47e1-9c19-f27078df225f
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 1
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/batch1(PartitionKey='part1',RowKey='row1')
ETag: W/"datetime'2012-12-30T15%3A34%3A19.6578973Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A19.6578973Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/batch1(PartitionKey='part1',RowKey='row1')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:19Z</updated>
<author>
<name />
</author>
<link rel="edit" title="batch1" href="batch1(PartitionKey='part1',RowKey='row1')" />
<category term="aogail2.batch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>part1</d:PartitionKey>
<d:RowKey>row1</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:19.6578973Z</d:Timestamp>
<d:address>my city, my state</d:address>
<d:field1>my field1</d:field1>
<d:otherprops>my properties</d:otherprops>
</m:properties>
</content>
</entry>
--changesetresponse_82534abf-c9dc-47e1-9c19-f27078df225f--
--batchresponse_ae6ccb57-8c60-4ea4-8a8e-5af9b08bb324--

Просмотреть файл

@ -0,0 +1 @@
[{"requestMethod":"GET","requestUrl":"http://aogail2.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":"Sun, 30 Dec 2012 15:34:24 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":"Sun, 30 Dec 2012 15:34:20 GMT"},"responseFile":"x1.dat"}]

Просмотреть файл

@ -0,0 +1 @@
[{"requestMethod":"POST","requestUrl":"http://aogail2.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"436","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Sun, 30 Dec 2012 15:34:24 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":"Sun, 30 Dec 2012 15:34:22 GMT"},"responseFile":"x2.dat"},{"requestMethod":"GET","requestUrl":"http://aogail2.table.core.windows.net:80/Tables(%27sharedkeytable1%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":"Sun, 30 Dec 2012 15:34:25 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":"Sun, 30 Dec 2012 15:34:22 GMT"},"responseFile":"x3.dat"},{"requestMethod":"GET","requestUrl":"http://aogail2.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":"Sun, 30 Dec 2012 15:34:26 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":"Sun, 30 Dec 2012 15:34:22 GMT"},"responseFile":"x4.dat"},{"requestMethod":"DELETE","requestUrl":"http://aogail2.table.core.windows.net:80/Tables(%27sharedkeytable1%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":"Sun, 30 Dec 2012 15:34:26 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":"Sun, 30 Dec 2012 15:34:21 GMT"}}]

Просмотреть файл

@ -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-12-30T15:34:24.580Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>sharedkeytable1</d:TableName></m:properties></content></entry>

Просмотреть файл

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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://aogail2.table.core.windows.net/Tables('sharedkeytable1')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:22Z</updated>
<author>
<name />
</author>
<link rel="edit" title="Tables" href="Tables('sharedkeytable1')" />
<category term="aogail2.Tables" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:TableName>sharedkeytable1</d:TableName>
</m:properties>
</content>
</entry>

Просмотреть файл

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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://aogail2.table.core.windows.net/Tables('sharedkeytable1')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:22Z</updated>
<author>
<name />
</author>
<link rel="edit" title="Tables" href="Tables('sharedkeytable1')" />
<category term="aogail2.Tables" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:TableName>sharedkeytable1</d:TableName>
</m:properties>
</content>
</entry>

Просмотреть файл

@ -0,0 +1 @@
[{"requestMethod":"POST","requestUrl":"http://aogail2.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"432","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Sun, 30 Dec 2012 15:34:27 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":"Sun, 30 Dec 2012 15:34:23 GMT"},"responseFile":"x2.dat"},{"requestMethod":"POST","requestUrl":"http://aogail2.table.core.windows.net:80/$batch","requestHeaders":{"content-type":"multipart/mixed; boundary=batch_e4cd78498a9b8834015ee7ade477a182","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","content-length":"15227","x-ms-version":"2011-08-18","x-ms-date":"Sun, 30 Dec 2012 15:34:27 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x3.dat","responseStatusCode":202,"responseHeaders":{"cache-control":"no-cache","transfer-encoding":"chunked","content-type":"multipart/mixed; boundary=batchresponse_d0ccc122-cc00-4994-a700-097cabf51216","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Sun, 30 Dec 2012 15:34:24 GMT"},"responseFile":"x4.dat"},{"requestMethod":"GET","requestUrl":"http://aogail2.table.core.windows.net:80/tablebatch1()","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":"Sun, 30 Dec 2012 15:34:29 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":"Sun, 30 Dec 2012 15:34:25 GMT"},"responseFile":"x5.dat"},{"requestMethod":"GET","requestUrl":"http://aogail2.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":"Sun, 30 Dec 2012 15:34:30 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":"Sun, 30 Dec 2012 15:34:26 GMT"},"responseFile":"x6.dat"},{"requestMethod":"DELETE","requestUrl":"http://aogail2.table.core.windows.net:80/Tables(%27tablebatch1%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":"Sun, 30 Dec 2012 15:34:30 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":"Sun, 30 Dec 2012 15:34:26 GMT"}}]

Просмотреть файл

@ -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-12-30T15:34:27.030Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tablebatch1</d:TableName></m:properties></content></entry>

Просмотреть файл

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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://aogail2.table.core.windows.net/Tables('tablebatch1')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:23Z</updated>
<author>
<name />
</author>
<link rel="edit" title="Tables" href="Tables('tablebatch1')" />
<category term="aogail2.Tables" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:TableName>tablebatch1</d:TableName>
</m:properties>
</content>
</entry>

Просмотреть файл

@ -0,0 +1,205 @@
--batch_e4cd78498a9b8834015ee7ade477a182
content-type: multipart/mixed; boundary=changeset_e4cd78498a9b8834015ee7ade477a182
--changeset_e4cd78498a9b8834015ee7ade477a182
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch1 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 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-12-30T15:34:27.776Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>1</d:RowKey><d:address>street1</d:address></m:properties></content></entry>
--changeset_e4cd78498a9b8834015ee7ade477a182
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch1 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 2
<?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-12-30T15:34:27.776Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>2</d:RowKey><d:address>street2</d:address></m:properties></content></entry>
--changeset_e4cd78498a9b8834015ee7ade477a182
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch1 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 3
<?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-12-30T15:34:27.777Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>3</d:RowKey><d:address>street3</d:address></m:properties></content></entry>
--changeset_e4cd78498a9b8834015ee7ade477a182
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch1 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 4
<?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-12-30T15:34:27.781Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>4</d:RowKey><d:address>street4</d:address></m:properties></content></entry>
--changeset_e4cd78498a9b8834015ee7ade477a182
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch1 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 5
<?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-12-30T15:34:27.781Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>5</d:RowKey><d:address>street5</d:address></m:properties></content></entry>
--changeset_e4cd78498a9b8834015ee7ade477a182
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch1 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 6
<?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-12-30T15:34:27.782Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>6</d:RowKey><d:address>street6</d:address></m:properties></content></entry>
--changeset_e4cd78498a9b8834015ee7ade477a182
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch1 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 7
<?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-12-30T15:34:27.782Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>7</d:RowKey><d:address>street7</d:address></m:properties></content></entry>
--changeset_e4cd78498a9b8834015ee7ade477a182
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch1 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 8
<?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-12-30T15:34:27.782Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>8</d:RowKey><d:address>street8</d:address></m:properties></content></entry>
--changeset_e4cd78498a9b8834015ee7ade477a182
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch1 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 9
<?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-12-30T15:34:27.782Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>9</d:RowKey><d:address>street9</d:address></m:properties></content></entry>
--changeset_e4cd78498a9b8834015ee7ade477a182
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch1 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 10
<?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-12-30T15:34:27.783Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>10</d:RowKey><d:address>street10</d:address></m:properties></content></entry>
--changeset_e4cd78498a9b8834015ee7ade477a182
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch1 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 11
<?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-12-30T15:34:27.783Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>11</d:RowKey><d:address>street11</d:address></m:properties></content></entry>
--changeset_e4cd78498a9b8834015ee7ade477a182
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch1 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 12
<?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-12-30T15:34:27.783Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>12</d:RowKey><d:address>street12</d:address></m:properties></content></entry>
--changeset_e4cd78498a9b8834015ee7ade477a182
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch1 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 13
<?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-12-30T15:34:27.783Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>13</d:RowKey><d:address>street13</d:address></m:properties></content></entry>
--changeset_e4cd78498a9b8834015ee7ade477a182
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch1 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 14
<?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-12-30T15:34:27.783Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>14</d:RowKey><d:address>street14</d:address></m:properties></content></entry>
--changeset_e4cd78498a9b8834015ee7ade477a182
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch1 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 15
<?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-12-30T15:34:27.784Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>15</d:RowKey><d:address>street15</d:address></m:properties></content></entry>
--changeset_e4cd78498a9b8834015ee7ade477a182
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch1 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 16
<?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-12-30T15:34:27.784Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>16</d:RowKey><d:address>street16</d:address></m:properties></content></entry>
--changeset_e4cd78498a9b8834015ee7ade477a182
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch1 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 17
<?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-12-30T15:34:27.784Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>17</d:RowKey><d:address>street17</d:address></m:properties></content></entry>
--changeset_e4cd78498a9b8834015ee7ade477a182
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch1 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 18
<?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-12-30T15:34:27.785Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>18</d:RowKey><d:address>street18</d:address></m:properties></content></entry>
--changeset_e4cd78498a9b8834015ee7ade477a182
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch1 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 19
<?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-12-30T15:34:27.785Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>19</d:RowKey><d:address>street19</d:address></m:properties></content></entry>
--changeset_e4cd78498a9b8834015ee7ade477a182
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch1 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 20
<?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-12-30T15:34:27.786Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>20</d:RowKey><d:address>street20</d:address></m:properties></content></entry>
--changeset_e4cd78498a9b8834015ee7ade477a182--
--batch_e4cd78498a9b8834015ee7ade477a182--

Просмотреть файл

@ -0,0 +1,625 @@
--batchresponse_d0ccc122-cc00-4994-a700-097cabf51216
Content-Type: multipart/mixed; boundary=changesetresponse_e9b39c04-e19f-4db0-853b-1a4458c2cba0
--changesetresponse_e9b39c04-e19f-4db0-853b-1a4458c2cba0
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 1
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='1')
ETag: W/"datetime'2012-12-30T15%3A34%3A25.023436Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A25.023436Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='1')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='1')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>1</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.023436Z</d:Timestamp>
<d:address>street1</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_e9b39c04-e19f-4db0-853b-1a4458c2cba0
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 2
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='2')
ETag: W/"datetime'2012-12-30T15%3A34%3A25.023436Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A25.023436Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='2')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='2')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>2</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.023436Z</d:Timestamp>
<d:address>street2</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_e9b39c04-e19f-4db0-853b-1a4458c2cba0
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 3
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='3')
ETag: W/"datetime'2012-12-30T15%3A34%3A25.023436Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A25.023436Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='3')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='3')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>3</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.023436Z</d:Timestamp>
<d:address>street3</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_e9b39c04-e19f-4db0-853b-1a4458c2cba0
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 4
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='4')
ETag: W/"datetime'2012-12-30T15%3A34%3A25.023436Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A25.023436Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='4')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='4')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>4</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.023436Z</d:Timestamp>
<d:address>street4</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_e9b39c04-e19f-4db0-853b-1a4458c2cba0
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 5
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='5')
ETag: W/"datetime'2012-12-30T15%3A34%3A25.023436Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A25.023436Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='5')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='5')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>5</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.023436Z</d:Timestamp>
<d:address>street5</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_e9b39c04-e19f-4db0-853b-1a4458c2cba0
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 6
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='6')
ETag: W/"datetime'2012-12-30T15%3A34%3A25.023436Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A25.023436Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='6')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='6')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>6</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.023436Z</d:Timestamp>
<d:address>street6</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_e9b39c04-e19f-4db0-853b-1a4458c2cba0
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 7
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='7')
ETag: W/"datetime'2012-12-30T15%3A34%3A25.023436Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A25.023436Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='7')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='7')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>7</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.023436Z</d:Timestamp>
<d:address>street7</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_e9b39c04-e19f-4db0-853b-1a4458c2cba0
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 8
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='8')
ETag: W/"datetime'2012-12-30T15%3A34%3A25.023436Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A25.023436Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='8')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='8')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>8</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.023436Z</d:Timestamp>
<d:address>street8</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_e9b39c04-e19f-4db0-853b-1a4458c2cba0
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 9
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='9')
ETag: W/"datetime'2012-12-30T15%3A34%3A25.023436Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A25.023436Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='9')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='9')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>9</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.023436Z</d:Timestamp>
<d:address>street9</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_e9b39c04-e19f-4db0-853b-1a4458c2cba0
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 10
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='10')
ETag: W/"datetime'2012-12-30T15%3A34%3A25.023436Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A25.023436Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='10')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='10')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>10</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.023436Z</d:Timestamp>
<d:address>street10</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_e9b39c04-e19f-4db0-853b-1a4458c2cba0
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 11
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='11')
ETag: W/"datetime'2012-12-30T15%3A34%3A25.023436Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A25.023436Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='11')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='11')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>11</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.023436Z</d:Timestamp>
<d:address>street11</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_e9b39c04-e19f-4db0-853b-1a4458c2cba0
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 12
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='12')
ETag: W/"datetime'2012-12-30T15%3A34%3A25.023436Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A25.023436Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='12')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='12')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>12</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.023436Z</d:Timestamp>
<d:address>street12</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_e9b39c04-e19f-4db0-853b-1a4458c2cba0
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 13
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='13')
ETag: W/"datetime'2012-12-30T15%3A34%3A25.023436Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A25.023436Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='13')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='13')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>13</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.023436Z</d:Timestamp>
<d:address>street13</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_e9b39c04-e19f-4db0-853b-1a4458c2cba0
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 14
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='14')
ETag: W/"datetime'2012-12-30T15%3A34%3A25.023436Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A25.023436Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='14')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='14')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>14</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.023436Z</d:Timestamp>
<d:address>street14</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_e9b39c04-e19f-4db0-853b-1a4458c2cba0
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 15
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='15')
ETag: W/"datetime'2012-12-30T15%3A34%3A25.023436Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A25.023436Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='15')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='15')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>15</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.023436Z</d:Timestamp>
<d:address>street15</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_e9b39c04-e19f-4db0-853b-1a4458c2cba0
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 16
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='16')
ETag: W/"datetime'2012-12-30T15%3A34%3A25.0244361Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A25.0244361Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='16')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='16')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>16</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.0244361Z</d:Timestamp>
<d:address>street16</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_e9b39c04-e19f-4db0-853b-1a4458c2cba0
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 17
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='17')
ETag: W/"datetime'2012-12-30T15%3A34%3A25.0244361Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A25.0244361Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='17')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='17')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>17</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.0244361Z</d:Timestamp>
<d:address>street17</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_e9b39c04-e19f-4db0-853b-1a4458c2cba0
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 18
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='18')
ETag: W/"datetime'2012-12-30T15%3A34%3A25.0244361Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A25.0244361Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='18')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='18')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>18</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.0244361Z</d:Timestamp>
<d:address>street18</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_e9b39c04-e19f-4db0-853b-1a4458c2cba0
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 19
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='19')
ETag: W/"datetime'2012-12-30T15%3A34%3A25.0244361Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A25.0244361Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='19')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='19')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>19</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.0244361Z</d:Timestamp>
<d:address>street19</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_e9b39c04-e19f-4db0-853b-1a4458c2cba0
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 20
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='20')
ETag: W/"datetime'2012-12-30T15%3A34%3A25.0244361Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A25.0244361Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='20')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='20')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>20</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.0244361Z</d:Timestamp>
<d:address>street20</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_e9b39c04-e19f-4db0-853b-1a4458c2cba0--
--batchresponse_d0ccc122-cc00-4994-a700-097cabf51216--

Просмотреть файл

@ -0,0 +1,367 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<feed xml:base="http://aogail2.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">tablebatch1</title>
<id>http://aogail2.table.core.windows.net/tablebatch1</id>
<updated>2012-12-30T15:34:25Z</updated>
<link rel="self" title="tablebatch1" href="tablebatch1" />
<entry m:etag="W/&quot;datetime'2012-12-30T15%3A34%3A25.023436Z'&quot;">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='1')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='1')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>1</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.023436Z</d:Timestamp>
<d:address>street1</d:address>
</m:properties>
</content>
</entry>
<entry m:etag="W/&quot;datetime'2012-12-30T15%3A34%3A25.023436Z'&quot;">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='10')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='10')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>10</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.023436Z</d:Timestamp>
<d:address>street10</d:address>
</m:properties>
</content>
</entry>
<entry m:etag="W/&quot;datetime'2012-12-30T15%3A34%3A25.023436Z'&quot;">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='11')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='11')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>11</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.023436Z</d:Timestamp>
<d:address>street11</d:address>
</m:properties>
</content>
</entry>
<entry m:etag="W/&quot;datetime'2012-12-30T15%3A34%3A25.023436Z'&quot;">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='12')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='12')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>12</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.023436Z</d:Timestamp>
<d:address>street12</d:address>
</m:properties>
</content>
</entry>
<entry m:etag="W/&quot;datetime'2012-12-30T15%3A34%3A25.023436Z'&quot;">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='13')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='13')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>13</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.023436Z</d:Timestamp>
<d:address>street13</d:address>
</m:properties>
</content>
</entry>
<entry m:etag="W/&quot;datetime'2012-12-30T15%3A34%3A25.023436Z'&quot;">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='14')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='14')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>14</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.023436Z</d:Timestamp>
<d:address>street14</d:address>
</m:properties>
</content>
</entry>
<entry m:etag="W/&quot;datetime'2012-12-30T15%3A34%3A25.023436Z'&quot;">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='15')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='15')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>15</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.023436Z</d:Timestamp>
<d:address>street15</d:address>
</m:properties>
</content>
</entry>
<entry m:etag="W/&quot;datetime'2012-12-30T15%3A34%3A25.0244361Z'&quot;">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='16')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='16')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>16</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.0244361Z</d:Timestamp>
<d:address>street16</d:address>
</m:properties>
</content>
</entry>
<entry m:etag="W/&quot;datetime'2012-12-30T15%3A34%3A25.0244361Z'&quot;">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='17')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='17')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>17</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.0244361Z</d:Timestamp>
<d:address>street17</d:address>
</m:properties>
</content>
</entry>
<entry m:etag="W/&quot;datetime'2012-12-30T15%3A34%3A25.0244361Z'&quot;">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='18')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='18')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>18</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.0244361Z</d:Timestamp>
<d:address>street18</d:address>
</m:properties>
</content>
</entry>
<entry m:etag="W/&quot;datetime'2012-12-30T15%3A34%3A25.0244361Z'&quot;">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='19')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='19')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>19</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.0244361Z</d:Timestamp>
<d:address>street19</d:address>
</m:properties>
</content>
</entry>
<entry m:etag="W/&quot;datetime'2012-12-30T15%3A34%3A25.023436Z'&quot;">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='2')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='2')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>2</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.023436Z</d:Timestamp>
<d:address>street2</d:address>
</m:properties>
</content>
</entry>
<entry m:etag="W/&quot;datetime'2012-12-30T15%3A34%3A25.0244361Z'&quot;">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='20')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='20')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>20</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.0244361Z</d:Timestamp>
<d:address>street20</d:address>
</m:properties>
</content>
</entry>
<entry m:etag="W/&quot;datetime'2012-12-30T15%3A34%3A25.023436Z'&quot;">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='3')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='3')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>3</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.023436Z</d:Timestamp>
<d:address>street3</d:address>
</m:properties>
</content>
</entry>
<entry m:etag="W/&quot;datetime'2012-12-30T15%3A34%3A25.023436Z'&quot;">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='4')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='4')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>4</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.023436Z</d:Timestamp>
<d:address>street4</d:address>
</m:properties>
</content>
</entry>
<entry m:etag="W/&quot;datetime'2012-12-30T15%3A34%3A25.023436Z'&quot;">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='5')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='5')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>5</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.023436Z</d:Timestamp>
<d:address>street5</d:address>
</m:properties>
</content>
</entry>
<entry m:etag="W/&quot;datetime'2012-12-30T15%3A34%3A25.023436Z'&quot;">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='6')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='6')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>6</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.023436Z</d:Timestamp>
<d:address>street6</d:address>
</m:properties>
</content>
</entry>
<entry m:etag="W/&quot;datetime'2012-12-30T15%3A34%3A25.023436Z'&quot;">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='7')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='7')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>7</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.023436Z</d:Timestamp>
<d:address>street7</d:address>
</m:properties>
</content>
</entry>
<entry m:etag="W/&quot;datetime'2012-12-30T15%3A34%3A25.023436Z'&quot;">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='8')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='8')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>8</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.023436Z</d:Timestamp>
<d:address>street8</d:address>
</m:properties>
</content>
</entry>
<entry m:etag="W/&quot;datetime'2012-12-30T15%3A34%3A25.023436Z'&quot;">
<id>http://aogail2.table.core.windows.net/tablebatch1(PartitionKey='partition1',RowKey='9')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:25Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch1" href="tablebatch1(PartitionKey='partition1',RowKey='9')" />
<category term="aogail2.tablebatch1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>9</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:25.023436Z</d:Timestamp>
<d:address>street9</d:address>
</m:properties>
</content>
</entry>
</feed>

Просмотреть файл

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<feed xml:base="http://aogail2.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://aogail2.table.core.windows.net/Tables</id>
<updated>2012-12-30T15:34:27Z</updated>
<link rel="self" title="Tables" href="Tables" />
<entry>
<id>http://aogail2.table.core.windows.net/Tables('tablebatch1')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:27Z</updated>
<author>
<name />
</author>
<link rel="edit" title="Tables" href="Tables('tablebatch1')" />
<category term="aogail2.Tables" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:TableName>tablebatch1</d:TableName>
</m:properties>
</content>
</entry>
</feed>

Просмотреть файл

@ -0,0 +1 @@
[{"requestMethod":"POST","requestUrl":"http://aogail2.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"432","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Sun, 30 Dec 2012 15:34:31 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":"Sun, 30 Dec 2012 15:34:28 GMT"},"responseFile":"x2.dat"},{"requestMethod":"POST","requestUrl":"http://aogail2.table.core.windows.net:80/$batch","requestHeaders":{"content-type":"multipart/mixed; boundary=batch_605bb1769714a65d7ce7c9e89c704c48","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","content-length":"15227","x-ms-version":"2011-08-18","x-ms-date":"Sun, 30 Dec 2012 15:34:32 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x3.dat","responseStatusCode":202,"responseHeaders":{"cache-control":"no-cache","transfer-encoding":"chunked","content-type":"multipart/mixed; boundary=batchresponse_c148573f-690d-4448-8f41-7e78c96d0329","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Sun, 30 Dec 2012 15:34:29 GMT"},"responseFile":"x4.dat"},{"requestMethod":"GET","requestUrl":"http://aogail2.table.core.windows.net:80/tablebatch2(PartitionKey=%27partition1%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":"Sun, 30 Dec 2012 15:34:34 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-12-30T15%3A34%3A30.0900651Z'\"","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Sun, 30 Dec 2012 15:34:30 GMT"},"responseFile":"x5.dat"},{"requestMethod":"GET","requestUrl":"http://aogail2.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":"Sun, 30 Dec 2012 15:34: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":"Sun, 30 Dec 2012 15:34:31 GMT"},"responseFile":"x6.dat"},{"requestMethod":"DELETE","requestUrl":"http://aogail2.table.core.windows.net:80/Tables(%27tablebatch2%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":"Sun, 30 Dec 2012 15:34:35 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":"Sun, 30 Dec 2012 15:34:30 GMT"}}]

Просмотреть файл

@ -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-12-30T15:34:31.274Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tablebatch2</d:TableName></m:properties></content></entry>

Просмотреть файл

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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://aogail2.table.core.windows.net/Tables('tablebatch2')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:28Z</updated>
<author>
<name />
</author>
<link rel="edit" title="Tables" href="Tables('tablebatch2')" />
<category term="aogail2.Tables" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:TableName>tablebatch2</d:TableName>
</m:properties>
</content>
</entry>

Просмотреть файл

@ -0,0 +1,205 @@
--batch_605bb1769714a65d7ce7c9e89c704c48
content-type: multipart/mixed; boundary=changeset_605bb1769714a65d7ce7c9e89c704c48
--changeset_605bb1769714a65d7ce7c9e89c704c48
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch2 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 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-12-30T15:34:32.031Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>1</d:RowKey><d:address>street1</d:address></m:properties></content></entry>
--changeset_605bb1769714a65d7ce7c9e89c704c48
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch2 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 2
<?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-12-30T15:34:32.031Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>2</d:RowKey><d:address>street2</d:address></m:properties></content></entry>
--changeset_605bb1769714a65d7ce7c9e89c704c48
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch2 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 3
<?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-12-30T15:34:32.031Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>3</d:RowKey><d:address>street3</d:address></m:properties></content></entry>
--changeset_605bb1769714a65d7ce7c9e89c704c48
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch2 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 4
<?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-12-30T15:34:32.031Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>4</d:RowKey><d:address>street4</d:address></m:properties></content></entry>
--changeset_605bb1769714a65d7ce7c9e89c704c48
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch2 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 5
<?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-12-30T15:34:32.032Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>5</d:RowKey><d:address>street5</d:address></m:properties></content></entry>
--changeset_605bb1769714a65d7ce7c9e89c704c48
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch2 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 6
<?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-12-30T15:34:32.032Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>6</d:RowKey><d:address>street6</d:address></m:properties></content></entry>
--changeset_605bb1769714a65d7ce7c9e89c704c48
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch2 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 7
<?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-12-30T15:34:32.032Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>7</d:RowKey><d:address>street7</d:address></m:properties></content></entry>
--changeset_605bb1769714a65d7ce7c9e89c704c48
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch2 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 8
<?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-12-30T15:34:32.032Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>8</d:RowKey><d:address>street8</d:address></m:properties></content></entry>
--changeset_605bb1769714a65d7ce7c9e89c704c48
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch2 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 9
<?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-12-30T15:34:32.032Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>9</d:RowKey><d:address>street9</d:address></m:properties></content></entry>
--changeset_605bb1769714a65d7ce7c9e89c704c48
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch2 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 10
<?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-12-30T15:34:32.033Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>10</d:RowKey><d:address>street10</d:address></m:properties></content></entry>
--changeset_605bb1769714a65d7ce7c9e89c704c48
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch2 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 11
<?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-12-30T15:34:32.033Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>11</d:RowKey><d:address>street11</d:address></m:properties></content></entry>
--changeset_605bb1769714a65d7ce7c9e89c704c48
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch2 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 12
<?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-12-30T15:34:32.034Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>12</d:RowKey><d:address>street12</d:address></m:properties></content></entry>
--changeset_605bb1769714a65d7ce7c9e89c704c48
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch2 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 13
<?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-12-30T15:34:32.034Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>13</d:RowKey><d:address>street13</d:address></m:properties></content></entry>
--changeset_605bb1769714a65d7ce7c9e89c704c48
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch2 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 14
<?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-12-30T15:34:32.034Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>14</d:RowKey><d:address>street14</d:address></m:properties></content></entry>
--changeset_605bb1769714a65d7ce7c9e89c704c48
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch2 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 15
<?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-12-30T15:34:32.034Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>15</d:RowKey><d:address>street15</d:address></m:properties></content></entry>
--changeset_605bb1769714a65d7ce7c9e89c704c48
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch2 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 16
<?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-12-30T15:34:32.035Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>16</d:RowKey><d:address>street16</d:address></m:properties></content></entry>
--changeset_605bb1769714a65d7ce7c9e89c704c48
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch2 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 17
<?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-12-30T15:34:32.035Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>17</d:RowKey><d:address>street17</d:address></m:properties></content></entry>
--changeset_605bb1769714a65d7ce7c9e89c704c48
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch2 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 18
<?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-12-30T15:34:32.035Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>18</d:RowKey><d:address>street18</d:address></m:properties></content></entry>
--changeset_605bb1769714a65d7ce7c9e89c704c48
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch2 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 19
<?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-12-30T15:34:32.035Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>19</d:RowKey><d:address>street19</d:address></m:properties></content></entry>
--changeset_605bb1769714a65d7ce7c9e89c704c48
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch2 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 20
<?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-12-30T15:34:32.035Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>20</d:RowKey><d:address>street20</d:address></m:properties></content></entry>
--changeset_605bb1769714a65d7ce7c9e89c704c48--
--batch_605bb1769714a65d7ce7c9e89c704c48--

Просмотреть файл

@ -0,0 +1,625 @@
--batchresponse_c148573f-690d-4448-8f41-7e78c96d0329
Content-Type: multipart/mixed; boundary=changesetresponse_aff020da-bc06-418c-a814-78e8ac729fbf
--changesetresponse_aff020da-bc06-418c-a814-78e8ac729fbf
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 1
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='1')
ETag: W/"datetime'2012-12-30T15%3A34%3A30.0900651Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A30.0900651Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='1')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:30Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch2" href="tablebatch2(PartitionKey='partition1',RowKey='1')" />
<category term="aogail2.tablebatch2" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>1</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:30.0900651Z</d:Timestamp>
<d:address>street1</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_aff020da-bc06-418c-a814-78e8ac729fbf
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 2
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='2')
ETag: W/"datetime'2012-12-30T15%3A34%3A30.0900651Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A30.0900651Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='2')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:30Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch2" href="tablebatch2(PartitionKey='partition1',RowKey='2')" />
<category term="aogail2.tablebatch2" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>2</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:30.0900651Z</d:Timestamp>
<d:address>street2</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_aff020da-bc06-418c-a814-78e8ac729fbf
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 3
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='3')
ETag: W/"datetime'2012-12-30T15%3A34%3A30.0900651Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A30.0900651Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='3')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:30Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch2" href="tablebatch2(PartitionKey='partition1',RowKey='3')" />
<category term="aogail2.tablebatch2" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>3</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:30.0900651Z</d:Timestamp>
<d:address>street3</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_aff020da-bc06-418c-a814-78e8ac729fbf
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 4
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='4')
ETag: W/"datetime'2012-12-30T15%3A34%3A30.0900651Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A30.0900651Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='4')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:30Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch2" href="tablebatch2(PartitionKey='partition1',RowKey='4')" />
<category term="aogail2.tablebatch2" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>4</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:30.0900651Z</d:Timestamp>
<d:address>street4</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_aff020da-bc06-418c-a814-78e8ac729fbf
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 5
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='5')
ETag: W/"datetime'2012-12-30T15%3A34%3A30.0900651Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A30.0900651Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='5')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:30Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch2" href="tablebatch2(PartitionKey='partition1',RowKey='5')" />
<category term="aogail2.tablebatch2" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>5</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:30.0900651Z</d:Timestamp>
<d:address>street5</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_aff020da-bc06-418c-a814-78e8ac729fbf
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 6
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='6')
ETag: W/"datetime'2012-12-30T15%3A34%3A30.0900651Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A30.0900651Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='6')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:30Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch2" href="tablebatch2(PartitionKey='partition1',RowKey='6')" />
<category term="aogail2.tablebatch2" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>6</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:30.0900651Z</d:Timestamp>
<d:address>street6</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_aff020da-bc06-418c-a814-78e8ac729fbf
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 7
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='7')
ETag: W/"datetime'2012-12-30T15%3A34%3A30.0900651Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A30.0900651Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='7')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:30Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch2" href="tablebatch2(PartitionKey='partition1',RowKey='7')" />
<category term="aogail2.tablebatch2" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>7</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:30.0900651Z</d:Timestamp>
<d:address>street7</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_aff020da-bc06-418c-a814-78e8ac729fbf
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 8
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='8')
ETag: W/"datetime'2012-12-30T15%3A34%3A30.0900651Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A30.0900651Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='8')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:30Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch2" href="tablebatch2(PartitionKey='partition1',RowKey='8')" />
<category term="aogail2.tablebatch2" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>8</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:30.0900651Z</d:Timestamp>
<d:address>street8</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_aff020da-bc06-418c-a814-78e8ac729fbf
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 9
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='9')
ETag: W/"datetime'2012-12-30T15%3A34%3A30.0900651Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A30.0900651Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='9')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:30Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch2" href="tablebatch2(PartitionKey='partition1',RowKey='9')" />
<category term="aogail2.tablebatch2" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>9</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:30.0900651Z</d:Timestamp>
<d:address>street9</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_aff020da-bc06-418c-a814-78e8ac729fbf
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 10
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='10')
ETag: W/"datetime'2012-12-30T15%3A34%3A30.0900651Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A30.0900651Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='10')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:30Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch2" href="tablebatch2(PartitionKey='partition1',RowKey='10')" />
<category term="aogail2.tablebatch2" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>10</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:30.0900651Z</d:Timestamp>
<d:address>street10</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_aff020da-bc06-418c-a814-78e8ac729fbf
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 11
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='11')
ETag: W/"datetime'2012-12-30T15%3A34%3A30.0900651Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A30.0900651Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='11')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:30Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch2" href="tablebatch2(PartitionKey='partition1',RowKey='11')" />
<category term="aogail2.tablebatch2" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>11</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:30.0900651Z</d:Timestamp>
<d:address>street11</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_aff020da-bc06-418c-a814-78e8ac729fbf
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 12
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='12')
ETag: W/"datetime'2012-12-30T15%3A34%3A30.0900651Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A30.0900651Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='12')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:30Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch2" href="tablebatch2(PartitionKey='partition1',RowKey='12')" />
<category term="aogail2.tablebatch2" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>12</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:30.0900651Z</d:Timestamp>
<d:address>street12</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_aff020da-bc06-418c-a814-78e8ac729fbf
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 13
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='13')
ETag: W/"datetime'2012-12-30T15%3A34%3A30.0900651Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A30.0900651Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='13')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:30Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch2" href="tablebatch2(PartitionKey='partition1',RowKey='13')" />
<category term="aogail2.tablebatch2" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>13</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:30.0900651Z</d:Timestamp>
<d:address>street13</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_aff020da-bc06-418c-a814-78e8ac729fbf
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 14
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='14')
ETag: W/"datetime'2012-12-30T15%3A34%3A30.0900651Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A30.0900651Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='14')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:30Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch2" href="tablebatch2(PartitionKey='partition1',RowKey='14')" />
<category term="aogail2.tablebatch2" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>14</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:30.0900651Z</d:Timestamp>
<d:address>street14</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_aff020da-bc06-418c-a814-78e8ac729fbf
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 15
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='15')
ETag: W/"datetime'2012-12-30T15%3A34%3A30.0900651Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A30.0900651Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='15')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:30Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch2" href="tablebatch2(PartitionKey='partition1',RowKey='15')" />
<category term="aogail2.tablebatch2" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>15</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:30.0900651Z</d:Timestamp>
<d:address>street15</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_aff020da-bc06-418c-a814-78e8ac729fbf
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 16
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='16')
ETag: W/"datetime'2012-12-30T15%3A34%3A30.0900651Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A30.0900651Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='16')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:30Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch2" href="tablebatch2(PartitionKey='partition1',RowKey='16')" />
<category term="aogail2.tablebatch2" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>16</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:30.0900651Z</d:Timestamp>
<d:address>street16</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_aff020da-bc06-418c-a814-78e8ac729fbf
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 17
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='17')
ETag: W/"datetime'2012-12-30T15%3A34%3A30.0900651Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A30.0900651Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='17')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:30Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch2" href="tablebatch2(PartitionKey='partition1',RowKey='17')" />
<category term="aogail2.tablebatch2" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>17</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:30.0900651Z</d:Timestamp>
<d:address>street17</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_aff020da-bc06-418c-a814-78e8ac729fbf
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 18
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='18')
ETag: W/"datetime'2012-12-30T15%3A34%3A30.0900651Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A30.0900651Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='18')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:30Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch2" href="tablebatch2(PartitionKey='partition1',RowKey='18')" />
<category term="aogail2.tablebatch2" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>18</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:30.0900651Z</d:Timestamp>
<d:address>street18</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_aff020da-bc06-418c-a814-78e8ac729fbf
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 19
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='19')
ETag: W/"datetime'2012-12-30T15%3A34%3A30.0900651Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A30.0900651Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='19')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:30Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch2" href="tablebatch2(PartitionKey='partition1',RowKey='19')" />
<category term="aogail2.tablebatch2" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>19</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:30.0900651Z</d:Timestamp>
<d:address>street19</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_aff020da-bc06-418c-a814-78e8ac729fbf
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 20
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='20')
ETag: W/"datetime'2012-12-30T15%3A34%3A30.0900651Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A30.0900651Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='20')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:30Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch2" href="tablebatch2(PartitionKey='partition1',RowKey='20')" />
<category term="aogail2.tablebatch2" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>20</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:30.0900651Z</d:Timestamp>
<d:address>street20</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_aff020da-bc06-418c-a814-78e8ac729fbf--
--batchresponse_c148573f-690d-4448-8f41-7e78c96d0329--

Просмотреть файл

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A30.0900651Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch2(PartitionKey='partition1',RowKey='1')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:31Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch2" href="tablebatch2(PartitionKey='partition1',RowKey='1')" />
<category term="aogail2.tablebatch2" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>1</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:30.0900651Z</d:Timestamp>
<d:address>street1</d:address>
</m:properties>
</content>
</entry>

Просмотреть файл

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<feed xml:base="http://aogail2.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://aogail2.table.core.windows.net/Tables</id>
<updated>2012-12-30T15:34:31Z</updated>
<link rel="self" title="Tables" href="Tables" />
<entry>
<id>http://aogail2.table.core.windows.net/Tables('tablebatch2')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:31Z</updated>
<author>
<name />
</author>
<link rel="edit" title="Tables" href="Tables('tablebatch2')" />
<category term="aogail2.Tables" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:TableName>tablebatch2</d:TableName>
</m:properties>
</content>
</entry>
</feed>

Просмотреть файл

@ -0,0 +1 @@
[{"requestMethod":"POST","requestUrl":"http://aogail2.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"432","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Sun, 30 Dec 2012 15:34:35 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":"Sun, 30 Dec 2012 15:34:31 GMT"},"responseFile":"x2.dat"},{"requestMethod":"POST","requestUrl":"http://aogail2.table.core.windows.net:80/$batch","requestHeaders":{"content-type":"multipart/mixed; boundary=batch_cbe21423a86a0c7d1e3169f98e6544d9","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","content-length":"15227","x-ms-version":"2011-08-18","x-ms-date":"Sun, 30 Dec 2012 15:34:36 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x3.dat","responseStatusCode":202,"responseHeaders":{"cache-control":"no-cache","transfer-encoding":"chunked","content-type":"multipart/mixed; boundary=batchresponse_937e63e7-22b0-4832-9d12-417312bfeab0","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Sun, 30 Dec 2012 15:34:33 GMT"},"responseFile":"x4.dat"},{"requestMethod":"GET","requestUrl":"http://aogail2.table.core.windows.net:80/tablebatch3(PartitionKey=%27partition1%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":"Sun, 30 Dec 2012 15:34: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","etag":"W/\"datetime'2012-12-30T15%3A34%3A33.7762171Z'\"","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Sun, 30 Dec 2012 15:34:34 GMT"},"responseFile":"x5.dat"},{"requestMethod":"GET","requestUrl":"http://aogail2.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":"Sun, 30 Dec 2012 15:34: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":"Sun, 30 Dec 2012 15:34:33 GMT"},"responseFile":"x6.dat"},{"requestMethod":"DELETE","requestUrl":"http://aogail2.table.core.windows.net:80/Tables(%27tablebatch3%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":"Sun, 30 Dec 2012 15:34:38 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":"Sun, 30 Dec 2012 15:34:34 GMT"}}]

Просмотреть файл

@ -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-12-30T15:34:35.910Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tablebatch3</d:TableName></m:properties></content></entry>

Просмотреть файл

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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://aogail2.table.core.windows.net/Tables('tablebatch3')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:32Z</updated>
<author>
<name />
</author>
<link rel="edit" title="Tables" href="Tables('tablebatch3')" />
<category term="aogail2.Tables" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:TableName>tablebatch3</d:TableName>
</m:properties>
</content>
</entry>

Просмотреть файл

@ -0,0 +1,205 @@
--batch_cbe21423a86a0c7d1e3169f98e6544d9
content-type: multipart/mixed; boundary=changeset_cbe21423a86a0c7d1e3169f98e6544d9
--changeset_cbe21423a86a0c7d1e3169f98e6544d9
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch3 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 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-12-30T15:34:36.633Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>1</d:RowKey><d:address>street1</d:address></m:properties></content></entry>
--changeset_cbe21423a86a0c7d1e3169f98e6544d9
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch3 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 2
<?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-12-30T15:34:36.633Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>2</d:RowKey><d:address>street2</d:address></m:properties></content></entry>
--changeset_cbe21423a86a0c7d1e3169f98e6544d9
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch3 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 3
<?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-12-30T15:34:36.633Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>3</d:RowKey><d:address>street3</d:address></m:properties></content></entry>
--changeset_cbe21423a86a0c7d1e3169f98e6544d9
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch3 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 4
<?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-12-30T15:34:36.633Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>4</d:RowKey><d:address>street4</d:address></m:properties></content></entry>
--changeset_cbe21423a86a0c7d1e3169f98e6544d9
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch3 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 5
<?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-12-30T15:34:36.633Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>5</d:RowKey><d:address>street5</d:address></m:properties></content></entry>
--changeset_cbe21423a86a0c7d1e3169f98e6544d9
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch3 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 6
<?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-12-30T15:34:36.633Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>6</d:RowKey><d:address>street6</d:address></m:properties></content></entry>
--changeset_cbe21423a86a0c7d1e3169f98e6544d9
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch3 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 7
<?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-12-30T15:34:36.633Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>7</d:RowKey><d:address>street7</d:address></m:properties></content></entry>
--changeset_cbe21423a86a0c7d1e3169f98e6544d9
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch3 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 8
<?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-12-30T15:34:36.633Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>8</d:RowKey><d:address>street8</d:address></m:properties></content></entry>
--changeset_cbe21423a86a0c7d1e3169f98e6544d9
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch3 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 9
<?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-12-30T15:34:36.634Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>9</d:RowKey><d:address>street9</d:address></m:properties></content></entry>
--changeset_cbe21423a86a0c7d1e3169f98e6544d9
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch3 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 10
<?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-12-30T15:34:36.634Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>10</d:RowKey><d:address>street10</d:address></m:properties></content></entry>
--changeset_cbe21423a86a0c7d1e3169f98e6544d9
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch3 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 11
<?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-12-30T15:34:36.634Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>11</d:RowKey><d:address>street11</d:address></m:properties></content></entry>
--changeset_cbe21423a86a0c7d1e3169f98e6544d9
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch3 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 12
<?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-12-30T15:34:36.634Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>12</d:RowKey><d:address>street12</d:address></m:properties></content></entry>
--changeset_cbe21423a86a0c7d1e3169f98e6544d9
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch3 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 13
<?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-12-30T15:34:36.634Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>13</d:RowKey><d:address>street13</d:address></m:properties></content></entry>
--changeset_cbe21423a86a0c7d1e3169f98e6544d9
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch3 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 14
<?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-12-30T15:34:36.634Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>14</d:RowKey><d:address>street14</d:address></m:properties></content></entry>
--changeset_cbe21423a86a0c7d1e3169f98e6544d9
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch3 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 15
<?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-12-30T15:34:36.634Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>15</d:RowKey><d:address>street15</d:address></m:properties></content></entry>
--changeset_cbe21423a86a0c7d1e3169f98e6544d9
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch3 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 16
<?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-12-30T15:34:36.634Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>16</d:RowKey><d:address>street16</d:address></m:properties></content></entry>
--changeset_cbe21423a86a0c7d1e3169f98e6544d9
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch3 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 17
<?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-12-30T15:34:36.634Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>17</d:RowKey><d:address>street17</d:address></m:properties></content></entry>
--changeset_cbe21423a86a0c7d1e3169f98e6544d9
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch3 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 18
<?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-12-30T15:34:36.634Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>18</d:RowKey><d:address>street18</d:address></m:properties></content></entry>
--changeset_cbe21423a86a0c7d1e3169f98e6544d9
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch3 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 19
<?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-12-30T15:34:36.634Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>19</d:RowKey><d:address>street19</d:address></m:properties></content></entry>
--changeset_cbe21423a86a0c7d1e3169f98e6544d9
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch3 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 20
<?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-12-30T15:34:36.635Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>20</d:RowKey><d:address>street20</d:address></m:properties></content></entry>
--changeset_cbe21423a86a0c7d1e3169f98e6544d9--
--batch_cbe21423a86a0c7d1e3169f98e6544d9--

Просмотреть файл

@ -0,0 +1,625 @@
--batchresponse_937e63e7-22b0-4832-9d12-417312bfeab0
Content-Type: multipart/mixed; boundary=changesetresponse_532f15d5-2652-4d39-ab5b-ffa85c1d67b3
--changesetresponse_532f15d5-2652-4d39-ab5b-ffa85c1d67b3
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 1
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='1')
ETag: W/"datetime'2012-12-30T15%3A34%3A33.7762171Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A33.7762171Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='1')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:33Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch3" href="tablebatch3(PartitionKey='partition1',RowKey='1')" />
<category term="aogail2.tablebatch3" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>1</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:33.7762171Z</d:Timestamp>
<d:address>street1</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_532f15d5-2652-4d39-ab5b-ffa85c1d67b3
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 2
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='2')
ETag: W/"datetime'2012-12-30T15%3A34%3A33.777217Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A33.777217Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='2')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:33Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch3" href="tablebatch3(PartitionKey='partition1',RowKey='2')" />
<category term="aogail2.tablebatch3" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>2</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:33.777217Z</d:Timestamp>
<d:address>street2</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_532f15d5-2652-4d39-ab5b-ffa85c1d67b3
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 3
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='3')
ETag: W/"datetime'2012-12-30T15%3A34%3A33.777217Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A33.777217Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='3')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:33Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch3" href="tablebatch3(PartitionKey='partition1',RowKey='3')" />
<category term="aogail2.tablebatch3" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>3</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:33.777217Z</d:Timestamp>
<d:address>street3</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_532f15d5-2652-4d39-ab5b-ffa85c1d67b3
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 4
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='4')
ETag: W/"datetime'2012-12-30T15%3A34%3A33.777217Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A33.777217Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='4')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:33Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch3" href="tablebatch3(PartitionKey='partition1',RowKey='4')" />
<category term="aogail2.tablebatch3" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>4</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:33.777217Z</d:Timestamp>
<d:address>street4</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_532f15d5-2652-4d39-ab5b-ffa85c1d67b3
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 5
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='5')
ETag: W/"datetime'2012-12-30T15%3A34%3A33.777217Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A33.777217Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='5')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:33Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch3" href="tablebatch3(PartitionKey='partition1',RowKey='5')" />
<category term="aogail2.tablebatch3" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>5</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:33.777217Z</d:Timestamp>
<d:address>street5</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_532f15d5-2652-4d39-ab5b-ffa85c1d67b3
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 6
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='6')
ETag: W/"datetime'2012-12-30T15%3A34%3A33.777217Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A33.777217Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='6')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:33Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch3" href="tablebatch3(PartitionKey='partition1',RowKey='6')" />
<category term="aogail2.tablebatch3" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>6</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:33.777217Z</d:Timestamp>
<d:address>street6</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_532f15d5-2652-4d39-ab5b-ffa85c1d67b3
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 7
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='7')
ETag: W/"datetime'2012-12-30T15%3A34%3A33.777217Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A33.777217Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='7')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:33Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch3" href="tablebatch3(PartitionKey='partition1',RowKey='7')" />
<category term="aogail2.tablebatch3" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>7</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:33.777217Z</d:Timestamp>
<d:address>street7</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_532f15d5-2652-4d39-ab5b-ffa85c1d67b3
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 8
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='8')
ETag: W/"datetime'2012-12-30T15%3A34%3A33.777217Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A33.777217Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='8')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:33Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch3" href="tablebatch3(PartitionKey='partition1',RowKey='8')" />
<category term="aogail2.tablebatch3" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>8</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:33.777217Z</d:Timestamp>
<d:address>street8</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_532f15d5-2652-4d39-ab5b-ffa85c1d67b3
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 9
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='9')
ETag: W/"datetime'2012-12-30T15%3A34%3A33.777217Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A33.777217Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='9')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:33Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch3" href="tablebatch3(PartitionKey='partition1',RowKey='9')" />
<category term="aogail2.tablebatch3" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>9</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:33.777217Z</d:Timestamp>
<d:address>street9</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_532f15d5-2652-4d39-ab5b-ffa85c1d67b3
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 10
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='10')
ETag: W/"datetime'2012-12-30T15%3A34%3A33.777217Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A33.777217Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='10')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:33Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch3" href="tablebatch3(PartitionKey='partition1',RowKey='10')" />
<category term="aogail2.tablebatch3" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>10</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:33.777217Z</d:Timestamp>
<d:address>street10</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_532f15d5-2652-4d39-ab5b-ffa85c1d67b3
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 11
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='11')
ETag: W/"datetime'2012-12-30T15%3A34%3A33.777217Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A33.777217Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='11')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:33Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch3" href="tablebatch3(PartitionKey='partition1',RowKey='11')" />
<category term="aogail2.tablebatch3" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>11</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:33.777217Z</d:Timestamp>
<d:address>street11</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_532f15d5-2652-4d39-ab5b-ffa85c1d67b3
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 12
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='12')
ETag: W/"datetime'2012-12-30T15%3A34%3A33.777217Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A33.777217Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='12')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:33Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch3" href="tablebatch3(PartitionKey='partition1',RowKey='12')" />
<category term="aogail2.tablebatch3" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>12</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:33.777217Z</d:Timestamp>
<d:address>street12</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_532f15d5-2652-4d39-ab5b-ffa85c1d67b3
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 13
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='13')
ETag: W/"datetime'2012-12-30T15%3A34%3A33.777217Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A33.777217Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='13')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:33Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch3" href="tablebatch3(PartitionKey='partition1',RowKey='13')" />
<category term="aogail2.tablebatch3" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>13</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:33.777217Z</d:Timestamp>
<d:address>street13</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_532f15d5-2652-4d39-ab5b-ffa85c1d67b3
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 14
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='14')
ETag: W/"datetime'2012-12-30T15%3A34%3A33.777217Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A33.777217Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='14')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:33Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch3" href="tablebatch3(PartitionKey='partition1',RowKey='14')" />
<category term="aogail2.tablebatch3" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>14</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:33.777217Z</d:Timestamp>
<d:address>street14</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_532f15d5-2652-4d39-ab5b-ffa85c1d67b3
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 15
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='15')
ETag: W/"datetime'2012-12-30T15%3A34%3A33.777217Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A33.777217Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='15')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:33Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch3" href="tablebatch3(PartitionKey='partition1',RowKey='15')" />
<category term="aogail2.tablebatch3" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>15</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:33.777217Z</d:Timestamp>
<d:address>street15</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_532f15d5-2652-4d39-ab5b-ffa85c1d67b3
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 16
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='16')
ETag: W/"datetime'2012-12-30T15%3A34%3A33.777217Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A33.777217Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='16')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:33Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch3" href="tablebatch3(PartitionKey='partition1',RowKey='16')" />
<category term="aogail2.tablebatch3" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>16</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:33.777217Z</d:Timestamp>
<d:address>street16</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_532f15d5-2652-4d39-ab5b-ffa85c1d67b3
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 17
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='17')
ETag: W/"datetime'2012-12-30T15%3A34%3A33.777217Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A33.777217Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='17')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:33Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch3" href="tablebatch3(PartitionKey='partition1',RowKey='17')" />
<category term="aogail2.tablebatch3" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>17</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:33.777217Z</d:Timestamp>
<d:address>street17</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_532f15d5-2652-4d39-ab5b-ffa85c1d67b3
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 18
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='18')
ETag: W/"datetime'2012-12-30T15%3A34%3A33.777217Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A33.777217Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='18')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:33Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch3" href="tablebatch3(PartitionKey='partition1',RowKey='18')" />
<category term="aogail2.tablebatch3" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>18</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:33.777217Z</d:Timestamp>
<d:address>street18</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_532f15d5-2652-4d39-ab5b-ffa85c1d67b3
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 19
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='19')
ETag: W/"datetime'2012-12-30T15%3A34%3A33.777217Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A33.777217Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='19')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:33Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch3" href="tablebatch3(PartitionKey='partition1',RowKey='19')" />
<category term="aogail2.tablebatch3" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>19</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:33.777217Z</d:Timestamp>
<d:address>street19</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_532f15d5-2652-4d39-ab5b-ffa85c1d67b3
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 20
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='20')
ETag: W/"datetime'2012-12-30T15%3A34%3A33.777217Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A33.777217Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='20')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:33Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch3" href="tablebatch3(PartitionKey='partition1',RowKey='20')" />
<category term="aogail2.tablebatch3" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>20</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:33.777217Z</d:Timestamp>
<d:address>street20</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_532f15d5-2652-4d39-ab5b-ffa85c1d67b3--
--batchresponse_937e63e7-22b0-4832-9d12-417312bfeab0--

Просмотреть файл

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A33.7762171Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch3(PartitionKey='partition1',RowKey='1')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:35Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch3" href="tablebatch3(PartitionKey='partition1',RowKey='1')" />
<category term="aogail2.tablebatch3" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>1</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:33.7762171Z</d:Timestamp>
<d:address>street1</d:address>
</m:properties>
</content>
</entry>

Просмотреть файл

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<feed xml:base="http://aogail2.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://aogail2.table.core.windows.net/Tables</id>
<updated>2012-12-30T15:34:34Z</updated>
<link rel="self" title="Tables" href="Tables" />
<entry>
<id>http://aogail2.table.core.windows.net/Tables('tablebatch3')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:34Z</updated>
<author>
<name />
</author>
<link rel="edit" title="Tables" href="Tables('tablebatch3')" />
<category term="aogail2.Tables" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:TableName>tablebatch3</d:TableName>
</m:properties>
</content>
</entry>
</feed>

Просмотреть файл

@ -0,0 +1 @@
[{"requestMethod":"POST","requestUrl":"http://aogail2.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"432","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Sun, 30 Dec 2012 15:34: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":"Sun, 30 Dec 2012 15:34:36 GMT"},"responseFile":"x2.dat"},{"requestMethod":"POST","requestUrl":"http://aogail2.table.core.windows.net:80/$batch","requestHeaders":{"content-type":"multipart/mixed; boundary=batch_f2da9dc74572d1c3aee5abae20c5db88","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","content-length":"15227","x-ms-version":"2011-08-18","x-ms-date":"Sun, 30 Dec 2012 15:34:40 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x3.dat","responseStatusCode":202,"responseHeaders":{"cache-control":"no-cache","transfer-encoding":"chunked","content-type":"multipart/mixed; boundary=batchresponse_f95dd905-cdab-412c-9889-a758d5126ee6","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Sun, 30 Dec 2012 15:34:37 GMT"},"responseFile":"x4.dat"},{"requestMethod":"GET","requestUrl":"http://aogail2.table.core.windows.net:80/tablebatch4()?$filter=address%20eq%20%27street1%27%20and%20RowKey%20eq%20%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":"Sun, 30 Dec 2012 15:34: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":"Sun, 30 Dec 2012 15:34:43 GMT"},"responseFile":"x5.dat"},{"requestMethod":"GET","requestUrl":"http://aogail2.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":"Sun, 30 Dec 2012 15:34:47 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":"Sun, 30 Dec 2012 15:34:43 GMT"},"responseFile":"x6.dat"},{"requestMethod":"DELETE","requestUrl":"http://aogail2.table.core.windows.net:80/Tables(%27tablebatch4%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":"Sun, 30 Dec 2012 15:34:47 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":"Sun, 30 Dec 2012 15:34:43 GMT"}}]

Просмотреть файл

@ -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-12-30T15:34:39.337Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tablebatch4</d:TableName></m:properties></content></entry>

Просмотреть файл

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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://aogail2.table.core.windows.net/Tables('tablebatch4')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:36Z</updated>
<author>
<name />
</author>
<link rel="edit" title="Tables" href="Tables('tablebatch4')" />
<category term="aogail2.Tables" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:TableName>tablebatch4</d:TableName>
</m:properties>
</content>
</entry>

Просмотреть файл

@ -0,0 +1,205 @@
--batch_f2da9dc74572d1c3aee5abae20c5db88
content-type: multipart/mixed; boundary=changeset_f2da9dc74572d1c3aee5abae20c5db88
--changeset_f2da9dc74572d1c3aee5abae20c5db88
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch4 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 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-12-30T15:34:40.488Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>1</d:RowKey><d:address>street1</d:address></m:properties></content></entry>
--changeset_f2da9dc74572d1c3aee5abae20c5db88
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch4 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 2
<?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-12-30T15:34:40.488Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>2</d:RowKey><d:address>street2</d:address></m:properties></content></entry>
--changeset_f2da9dc74572d1c3aee5abae20c5db88
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch4 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 3
<?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-12-30T15:34:40.488Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>3</d:RowKey><d:address>street3</d:address></m:properties></content></entry>
--changeset_f2da9dc74572d1c3aee5abae20c5db88
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch4 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 4
<?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-12-30T15:34:40.488Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>4</d:RowKey><d:address>street4</d:address></m:properties></content></entry>
--changeset_f2da9dc74572d1c3aee5abae20c5db88
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch4 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 5
<?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-12-30T15:34:40.489Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>5</d:RowKey><d:address>street5</d:address></m:properties></content></entry>
--changeset_f2da9dc74572d1c3aee5abae20c5db88
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch4 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 6
<?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-12-30T15:34:40.489Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>6</d:RowKey><d:address>street6</d:address></m:properties></content></entry>
--changeset_f2da9dc74572d1c3aee5abae20c5db88
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch4 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 7
<?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-12-30T15:34:40.489Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>7</d:RowKey><d:address>street7</d:address></m:properties></content></entry>
--changeset_f2da9dc74572d1c3aee5abae20c5db88
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch4 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 8
<?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-12-30T15:34:40.489Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>8</d:RowKey><d:address>street8</d:address></m:properties></content></entry>
--changeset_f2da9dc74572d1c3aee5abae20c5db88
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch4 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 9
<?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-12-30T15:34:40.489Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>9</d:RowKey><d:address>street9</d:address></m:properties></content></entry>
--changeset_f2da9dc74572d1c3aee5abae20c5db88
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch4 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 10
<?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-12-30T15:34:40.489Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>10</d:RowKey><d:address>street10</d:address></m:properties></content></entry>
--changeset_f2da9dc74572d1c3aee5abae20c5db88
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch4 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 11
<?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-12-30T15:34:40.489Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>11</d:RowKey><d:address>street11</d:address></m:properties></content></entry>
--changeset_f2da9dc74572d1c3aee5abae20c5db88
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch4 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 12
<?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-12-30T15:34:40.490Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>12</d:RowKey><d:address>street12</d:address></m:properties></content></entry>
--changeset_f2da9dc74572d1c3aee5abae20c5db88
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch4 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 13
<?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-12-30T15:34:40.490Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>13</d:RowKey><d:address>street13</d:address></m:properties></content></entry>
--changeset_f2da9dc74572d1c3aee5abae20c5db88
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch4 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 14
<?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-12-30T15:34:40.490Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>14</d:RowKey><d:address>street14</d:address></m:properties></content></entry>
--changeset_f2da9dc74572d1c3aee5abae20c5db88
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch4 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 15
<?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-12-30T15:34:40.491Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>15</d:RowKey><d:address>street15</d:address></m:properties></content></entry>
--changeset_f2da9dc74572d1c3aee5abae20c5db88
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch4 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 16
<?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-12-30T15:34:40.491Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>16</d:RowKey><d:address>street16</d:address></m:properties></content></entry>
--changeset_f2da9dc74572d1c3aee5abae20c5db88
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch4 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 17
<?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-12-30T15:34:40.491Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>17</d:RowKey><d:address>street17</d:address></m:properties></content></entry>
--changeset_f2da9dc74572d1c3aee5abae20c5db88
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch4 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 18
<?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-12-30T15:34:40.491Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>18</d:RowKey><d:address>street18</d:address></m:properties></content></entry>
--changeset_f2da9dc74572d1c3aee5abae20c5db88
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch4 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 19
<?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-12-30T15:34:40.491Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>19</d:RowKey><d:address>street19</d:address></m:properties></content></entry>
--changeset_f2da9dc74572d1c3aee5abae20c5db88
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch4 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 20
<?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-12-30T15:34:40.492Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>20</d:RowKey><d:address>street20</d:address></m:properties></content></entry>
--changeset_f2da9dc74572d1c3aee5abae20c5db88--
--batch_f2da9dc74572d1c3aee5abae20c5db88--

Просмотреть файл

@ -0,0 +1,625 @@
--batchresponse_f95dd905-cdab-412c-9889-a758d5126ee6
Content-Type: multipart/mixed; boundary=changesetresponse_0b3ff6eb-afcd-4a70-b202-0c123a787901
--changesetresponse_0b3ff6eb-afcd-4a70-b202-0c123a787901
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 1
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='1')
ETag: W/"datetime'2012-12-30T15%3A34%3A37.6039075Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A37.6039075Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='1')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:37Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch4" href="tablebatch4(PartitionKey='partition1',RowKey='1')" />
<category term="aogail2.tablebatch4" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>1</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:37.6039075Z</d:Timestamp>
<d:address>street1</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_0b3ff6eb-afcd-4a70-b202-0c123a787901
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 2
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='2')
ETag: W/"datetime'2012-12-30T15%3A34%3A37.6039075Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A37.6039075Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='2')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:37Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch4" href="tablebatch4(PartitionKey='partition1',RowKey='2')" />
<category term="aogail2.tablebatch4" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>2</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:37.6039075Z</d:Timestamp>
<d:address>street2</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_0b3ff6eb-afcd-4a70-b202-0c123a787901
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 3
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='3')
ETag: W/"datetime'2012-12-30T15%3A34%3A37.6039075Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A37.6039075Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='3')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:37Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch4" href="tablebatch4(PartitionKey='partition1',RowKey='3')" />
<category term="aogail2.tablebatch4" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>3</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:37.6039075Z</d:Timestamp>
<d:address>street3</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_0b3ff6eb-afcd-4a70-b202-0c123a787901
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 4
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='4')
ETag: W/"datetime'2012-12-30T15%3A34%3A37.6039075Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A37.6039075Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='4')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:37Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch4" href="tablebatch4(PartitionKey='partition1',RowKey='4')" />
<category term="aogail2.tablebatch4" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>4</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:37.6039075Z</d:Timestamp>
<d:address>street4</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_0b3ff6eb-afcd-4a70-b202-0c123a787901
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 5
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='5')
ETag: W/"datetime'2012-12-30T15%3A34%3A37.6039075Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A37.6039075Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='5')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:37Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch4" href="tablebatch4(PartitionKey='partition1',RowKey='5')" />
<category term="aogail2.tablebatch4" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>5</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:37.6039075Z</d:Timestamp>
<d:address>street5</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_0b3ff6eb-afcd-4a70-b202-0c123a787901
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 6
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='6')
ETag: W/"datetime'2012-12-30T15%3A34%3A37.6049077Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A37.6049077Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='6')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:37Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch4" href="tablebatch4(PartitionKey='partition1',RowKey='6')" />
<category term="aogail2.tablebatch4" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>6</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:37.6049077Z</d:Timestamp>
<d:address>street6</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_0b3ff6eb-afcd-4a70-b202-0c123a787901
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 7
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='7')
ETag: W/"datetime'2012-12-30T15%3A34%3A37.6049077Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A37.6049077Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='7')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:37Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch4" href="tablebatch4(PartitionKey='partition1',RowKey='7')" />
<category term="aogail2.tablebatch4" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>7</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:37.6049077Z</d:Timestamp>
<d:address>street7</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_0b3ff6eb-afcd-4a70-b202-0c123a787901
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 8
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='8')
ETag: W/"datetime'2012-12-30T15%3A34%3A37.6049077Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A37.6049077Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='8')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:37Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch4" href="tablebatch4(PartitionKey='partition1',RowKey='8')" />
<category term="aogail2.tablebatch4" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>8</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:37.6049077Z</d:Timestamp>
<d:address>street8</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_0b3ff6eb-afcd-4a70-b202-0c123a787901
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 9
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='9')
ETag: W/"datetime'2012-12-30T15%3A34%3A37.6049077Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A37.6049077Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='9')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:37Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch4" href="tablebatch4(PartitionKey='partition1',RowKey='9')" />
<category term="aogail2.tablebatch4" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>9</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:37.6049077Z</d:Timestamp>
<d:address>street9</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_0b3ff6eb-afcd-4a70-b202-0c123a787901
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 10
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='10')
ETag: W/"datetime'2012-12-30T15%3A34%3A37.6049077Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A37.6049077Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='10')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:37Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch4" href="tablebatch4(PartitionKey='partition1',RowKey='10')" />
<category term="aogail2.tablebatch4" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>10</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:37.6049077Z</d:Timestamp>
<d:address>street10</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_0b3ff6eb-afcd-4a70-b202-0c123a787901
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 11
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='11')
ETag: W/"datetime'2012-12-30T15%3A34%3A37.6049077Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A37.6049077Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='11')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:37Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch4" href="tablebatch4(PartitionKey='partition1',RowKey='11')" />
<category term="aogail2.tablebatch4" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>11</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:37.6049077Z</d:Timestamp>
<d:address>street11</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_0b3ff6eb-afcd-4a70-b202-0c123a787901
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 12
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='12')
ETag: W/"datetime'2012-12-30T15%3A34%3A37.6049077Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A37.6049077Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='12')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:37Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch4" href="tablebatch4(PartitionKey='partition1',RowKey='12')" />
<category term="aogail2.tablebatch4" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>12</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:37.6049077Z</d:Timestamp>
<d:address>street12</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_0b3ff6eb-afcd-4a70-b202-0c123a787901
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 13
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='13')
ETag: W/"datetime'2012-12-30T15%3A34%3A37.6049077Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A37.6049077Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='13')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:37Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch4" href="tablebatch4(PartitionKey='partition1',RowKey='13')" />
<category term="aogail2.tablebatch4" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>13</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:37.6049077Z</d:Timestamp>
<d:address>street13</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_0b3ff6eb-afcd-4a70-b202-0c123a787901
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 14
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='14')
ETag: W/"datetime'2012-12-30T15%3A34%3A37.6049077Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A37.6049077Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='14')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:37Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch4" href="tablebatch4(PartitionKey='partition1',RowKey='14')" />
<category term="aogail2.tablebatch4" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>14</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:37.6049077Z</d:Timestamp>
<d:address>street14</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_0b3ff6eb-afcd-4a70-b202-0c123a787901
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 15
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='15')
ETag: W/"datetime'2012-12-30T15%3A34%3A37.6049077Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A37.6049077Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='15')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:37Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch4" href="tablebatch4(PartitionKey='partition1',RowKey='15')" />
<category term="aogail2.tablebatch4" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>15</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:37.6049077Z</d:Timestamp>
<d:address>street15</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_0b3ff6eb-afcd-4a70-b202-0c123a787901
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 16
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='16')
ETag: W/"datetime'2012-12-30T15%3A34%3A37.6049077Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A37.6049077Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='16')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:37Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch4" href="tablebatch4(PartitionKey='partition1',RowKey='16')" />
<category term="aogail2.tablebatch4" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>16</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:37.6049077Z</d:Timestamp>
<d:address>street16</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_0b3ff6eb-afcd-4a70-b202-0c123a787901
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 17
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='17')
ETag: W/"datetime'2012-12-30T15%3A34%3A37.6049077Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A37.6049077Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='17')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:37Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch4" href="tablebatch4(PartitionKey='partition1',RowKey='17')" />
<category term="aogail2.tablebatch4" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>17</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:37.6049077Z</d:Timestamp>
<d:address>street17</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_0b3ff6eb-afcd-4a70-b202-0c123a787901
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 18
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='18')
ETag: W/"datetime'2012-12-30T15%3A34%3A37.6049077Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A37.6049077Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='18')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:37Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch4" href="tablebatch4(PartitionKey='partition1',RowKey='18')" />
<category term="aogail2.tablebatch4" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>18</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:37.6049077Z</d:Timestamp>
<d:address>street18</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_0b3ff6eb-afcd-4a70-b202-0c123a787901
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 19
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='19')
ETag: W/"datetime'2012-12-30T15%3A34%3A37.6049077Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A37.6049077Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='19')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:37Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch4" href="tablebatch4(PartitionKey='partition1',RowKey='19')" />
<category term="aogail2.tablebatch4" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>19</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:37.6049077Z</d:Timestamp>
<d:address>street19</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_0b3ff6eb-afcd-4a70-b202-0c123a787901
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 20
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='20')
ETag: W/"datetime'2012-12-30T15%3A34%3A37.6049077Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A37.6049077Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='20')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:37Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch4" href="tablebatch4(PartitionKey='partition1',RowKey='20')" />
<category term="aogail2.tablebatch4" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>20</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:37.6049077Z</d:Timestamp>
<d:address>street20</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_0b3ff6eb-afcd-4a70-b202-0c123a787901--
--batchresponse_f95dd905-cdab-412c-9889-a758d5126ee6--

Просмотреть файл

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<feed xml:base="http://aogail2.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">tablebatch4</title>
<id>http://aogail2.table.core.windows.net/tablebatch4</id>
<updated>2012-12-30T15:34:43Z</updated>
<link rel="self" title="tablebatch4" href="tablebatch4" />
<entry m:etag="W/&quot;datetime'2012-12-30T15%3A34%3A37.6039075Z'&quot;">
<id>http://aogail2.table.core.windows.net/tablebatch4(PartitionKey='partition1',RowKey='1')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:43Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch4" href="tablebatch4(PartitionKey='partition1',RowKey='1')" />
<category term="aogail2.tablebatch4" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>1</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:37.6039075Z</d:Timestamp>
<d:address>street1</d:address>
</m:properties>
</content>
</entry>
</feed>

Просмотреть файл

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<feed xml:base="http://aogail2.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://aogail2.table.core.windows.net/Tables</id>
<updated>2012-12-30T15:34:43Z</updated>
<link rel="self" title="Tables" href="Tables" />
<entry>
<id>http://aogail2.table.core.windows.net/Tables('tablebatch4')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:43Z</updated>
<author>
<name />
</author>
<link rel="edit" title="Tables" href="Tables('tablebatch4')" />
<category term="aogail2.Tables" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:TableName>tablebatch4</d:TableName>
</m:properties>
</content>
</entry>
</feed>

Просмотреть файл

@ -0,0 +1 @@
[{"requestMethod":"POST","requestUrl":"http://aogail2.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"432","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Sun, 30 Dec 2012 15:34:47 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":"Sun, 30 Dec 2012 15:34:45 GMT"},"responseFile":"x2.dat"},{"requestMethod":"POST","requestUrl":"http://aogail2.table.core.windows.net:80/$batch","requestHeaders":{"content-type":"multipart/mixed; boundary=batch_fbef1b4654283189ccdc47d2935d2ba8","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","content-length":"15177","x-ms-version":"2011-08-18","x-ms-date":"Sun, 30 Dec 2012 15:34:49 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x3.dat","responseStatusCode":202,"responseHeaders":{"cache-control":"no-cache","transfer-encoding":"chunked","content-type":"multipart/mixed; boundary=batchresponse_40d11d83-97aa-45d0-9776-7a9fb282b165","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Sun, 30 Dec 2012 15:34:44 GMT"},"responseFile":"x4.dat"},{"requestMethod":"GET","requestUrl":"http://aogail2.table.core.windows.net:80/tablebatch5()?$filter=address%20eq%20%27unique%27%20and%20PartitionKey%20eq%20%27partition1%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":"Sun, 30 Dec 2012 15:34: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":"Sun, 30 Dec 2012 15:34:46 GMT"},"responseFile":"x5.dat"},{"requestMethod":"GET","requestUrl":"http://aogail2.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":"Sun, 30 Dec 2012 15:34:51 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":"Sun, 30 Dec 2012 15:34:46 GMT"},"responseFile":"x6.dat"},{"requestMethod":"DELETE","requestUrl":"http://aogail2.table.core.windows.net:80/Tables(%27tablebatch5%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":"Sun, 30 Dec 2012 15:34:51 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":"Sun, 30 Dec 2012 15:34:46 GMT"}}]

Просмотреть файл

@ -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-12-30T15:34:47.955Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tablebatch5</d:TableName></m:properties></content></entry>

Просмотреть файл

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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://aogail2.table.core.windows.net/Tables('tablebatch5')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:45Z</updated>
<author>
<name />
</author>
<link rel="edit" title="Tables" href="Tables('tablebatch5')" />
<category term="aogail2.Tables" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:TableName>tablebatch5</d:TableName>
</m:properties>
</content>
</entry>

Просмотреть файл

@ -0,0 +1,205 @@
--batch_fbef1b4654283189ccdc47d2935d2ba8
content-type: multipart/mixed; boundary=changeset_fbef1b4654283189ccdc47d2935d2ba8
--changeset_fbef1b4654283189ccdc47d2935d2ba8
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch5 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 488
content-id: 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-12-30T15:34:49.040Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>1</d:RowKey><d:address>unique</d:address></m:properties></content></entry>
--changeset_fbef1b4654283189ccdc47d2935d2ba8
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch5 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 487
content-id: 2
<?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-12-30T15:34:49.040Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>2</d:RowKey><d:address>other</d:address></m:properties></content></entry>
--changeset_fbef1b4654283189ccdc47d2935d2ba8
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch5 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 487
content-id: 3
<?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-12-30T15:34:49.040Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>3</d:RowKey><d:address>other</d:address></m:properties></content></entry>
--changeset_fbef1b4654283189ccdc47d2935d2ba8
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch5 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 487
content-id: 4
<?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-12-30T15:34:49.040Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>4</d:RowKey><d:address>other</d:address></m:properties></content></entry>
--changeset_fbef1b4654283189ccdc47d2935d2ba8
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch5 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 487
content-id: 5
<?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-12-30T15:34:49.040Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>5</d:RowKey><d:address>other</d:address></m:properties></content></entry>
--changeset_fbef1b4654283189ccdc47d2935d2ba8
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch5 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 487
content-id: 6
<?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-12-30T15:34:49.040Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>6</d:RowKey><d:address>other</d:address></m:properties></content></entry>
--changeset_fbef1b4654283189ccdc47d2935d2ba8
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch5 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 487
content-id: 7
<?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-12-30T15:34:49.040Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>7</d:RowKey><d:address>other</d:address></m:properties></content></entry>
--changeset_fbef1b4654283189ccdc47d2935d2ba8
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch5 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 487
content-id: 8
<?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-12-30T15:34:49.041Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>8</d:RowKey><d:address>other</d:address></m:properties></content></entry>
--changeset_fbef1b4654283189ccdc47d2935d2ba8
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch5 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 487
content-id: 9
<?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-12-30T15:34:49.041Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>9</d:RowKey><d:address>other</d:address></m:properties></content></entry>
--changeset_fbef1b4654283189ccdc47d2935d2ba8
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch5 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 488
content-id: 10
<?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-12-30T15:34:49.041Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>10</d:RowKey><d:address>other</d:address></m:properties></content></entry>
--changeset_fbef1b4654283189ccdc47d2935d2ba8
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch5 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 488
content-id: 11
<?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-12-30T15:34:49.041Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>11</d:RowKey><d:address>other</d:address></m:properties></content></entry>
--changeset_fbef1b4654283189ccdc47d2935d2ba8
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch5 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 488
content-id: 12
<?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-12-30T15:34:49.041Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>12</d:RowKey><d:address>other</d:address></m:properties></content></entry>
--changeset_fbef1b4654283189ccdc47d2935d2ba8
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch5 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 488
content-id: 13
<?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-12-30T15:34:49.041Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>13</d:RowKey><d:address>other</d:address></m:properties></content></entry>
--changeset_fbef1b4654283189ccdc47d2935d2ba8
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch5 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 488
content-id: 14
<?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-12-30T15:34:49.041Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>14</d:RowKey><d:address>other</d:address></m:properties></content></entry>
--changeset_fbef1b4654283189ccdc47d2935d2ba8
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch5 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 488
content-id: 15
<?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-12-30T15:34:49.041Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>15</d:RowKey><d:address>other</d:address></m:properties></content></entry>
--changeset_fbef1b4654283189ccdc47d2935d2ba8
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch5 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 488
content-id: 16
<?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-12-30T15:34:49.041Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>16</d:RowKey><d:address>other</d:address></m:properties></content></entry>
--changeset_fbef1b4654283189ccdc47d2935d2ba8
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch5 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 488
content-id: 17
<?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-12-30T15:34:49.041Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>17</d:RowKey><d:address>other</d:address></m:properties></content></entry>
--changeset_fbef1b4654283189ccdc47d2935d2ba8
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch5 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 488
content-id: 18
<?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-12-30T15:34:49.042Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>18</d:RowKey><d:address>other</d:address></m:properties></content></entry>
--changeset_fbef1b4654283189ccdc47d2935d2ba8
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch5 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 488
content-id: 19
<?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-12-30T15:34:49.042Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>19</d:RowKey><d:address>other</d:address></m:properties></content></entry>
--changeset_fbef1b4654283189ccdc47d2935d2ba8
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch5 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 488
content-id: 20
<?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-12-30T15:34:49.042Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>20</d:RowKey><d:address>other</d:address></m:properties></content></entry>
--changeset_fbef1b4654283189ccdc47d2935d2ba8--
--batch_fbef1b4654283189ccdc47d2935d2ba8--

Просмотреть файл

@ -0,0 +1,625 @@
--batchresponse_40d11d83-97aa-45d0-9776-7a9fb282b165
Content-Type: multipart/mixed; boundary=changesetresponse_4ef05d9e-ee52-4411-ae75-8f9c3fefdde8
--changesetresponse_4ef05d9e-ee52-4411-ae75-8f9c3fefdde8
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 1
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='1')
ETag: W/"datetime'2012-12-30T15%3A34%3A45.4906418Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A45.4906418Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='1')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:45Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch5" href="tablebatch5(PartitionKey='partition1',RowKey='1')" />
<category term="aogail2.tablebatch5" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>1</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:45.4906418Z</d:Timestamp>
<d:address>unique</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_4ef05d9e-ee52-4411-ae75-8f9c3fefdde8
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 2
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='2')
ETag: W/"datetime'2012-12-30T15%3A34%3A45.4906418Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A45.4906418Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='2')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:45Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch5" href="tablebatch5(PartitionKey='partition1',RowKey='2')" />
<category term="aogail2.tablebatch5" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>2</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:45.4906418Z</d:Timestamp>
<d:address>other</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_4ef05d9e-ee52-4411-ae75-8f9c3fefdde8
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 3
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='3')
ETag: W/"datetime'2012-12-30T15%3A34%3A45.4906418Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A45.4906418Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='3')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:45Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch5" href="tablebatch5(PartitionKey='partition1',RowKey='3')" />
<category term="aogail2.tablebatch5" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>3</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:45.4906418Z</d:Timestamp>
<d:address>other</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_4ef05d9e-ee52-4411-ae75-8f9c3fefdde8
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 4
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='4')
ETag: W/"datetime'2012-12-30T15%3A34%3A45.4906418Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A45.4906418Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='4')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:45Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch5" href="tablebatch5(PartitionKey='partition1',RowKey='4')" />
<category term="aogail2.tablebatch5" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>4</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:45.4906418Z</d:Timestamp>
<d:address>other</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_4ef05d9e-ee52-4411-ae75-8f9c3fefdde8
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 5
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='5')
ETag: W/"datetime'2012-12-30T15%3A34%3A45.4906418Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A45.4906418Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='5')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:45Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch5" href="tablebatch5(PartitionKey='partition1',RowKey='5')" />
<category term="aogail2.tablebatch5" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>5</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:45.4906418Z</d:Timestamp>
<d:address>other</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_4ef05d9e-ee52-4411-ae75-8f9c3fefdde8
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 6
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='6')
ETag: W/"datetime'2012-12-30T15%3A34%3A45.4906418Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A45.4906418Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='6')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:45Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch5" href="tablebatch5(PartitionKey='partition1',RowKey='6')" />
<category term="aogail2.tablebatch5" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>6</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:45.4906418Z</d:Timestamp>
<d:address>other</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_4ef05d9e-ee52-4411-ae75-8f9c3fefdde8
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 7
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='7')
ETag: W/"datetime'2012-12-30T15%3A34%3A45.4906418Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A45.4906418Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='7')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:45Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch5" href="tablebatch5(PartitionKey='partition1',RowKey='7')" />
<category term="aogail2.tablebatch5" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>7</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:45.4906418Z</d:Timestamp>
<d:address>other</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_4ef05d9e-ee52-4411-ae75-8f9c3fefdde8
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 8
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='8')
ETag: W/"datetime'2012-12-30T15%3A34%3A45.4906418Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A45.4906418Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='8')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:45Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch5" href="tablebatch5(PartitionKey='partition1',RowKey='8')" />
<category term="aogail2.tablebatch5" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>8</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:45.4906418Z</d:Timestamp>
<d:address>other</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_4ef05d9e-ee52-4411-ae75-8f9c3fefdde8
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 9
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='9')
ETag: W/"datetime'2012-12-30T15%3A34%3A45.4906418Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A45.4906418Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='9')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:45Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch5" href="tablebatch5(PartitionKey='partition1',RowKey='9')" />
<category term="aogail2.tablebatch5" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>9</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:45.4906418Z</d:Timestamp>
<d:address>other</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_4ef05d9e-ee52-4411-ae75-8f9c3fefdde8
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 10
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='10')
ETag: W/"datetime'2012-12-30T15%3A34%3A45.4906418Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A45.4906418Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='10')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:45Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch5" href="tablebatch5(PartitionKey='partition1',RowKey='10')" />
<category term="aogail2.tablebatch5" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>10</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:45.4906418Z</d:Timestamp>
<d:address>other</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_4ef05d9e-ee52-4411-ae75-8f9c3fefdde8
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 11
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='11')
ETag: W/"datetime'2012-12-30T15%3A34%3A45.4906418Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A45.4906418Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='11')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:45Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch5" href="tablebatch5(PartitionKey='partition1',RowKey='11')" />
<category term="aogail2.tablebatch5" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>11</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:45.4906418Z</d:Timestamp>
<d:address>other</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_4ef05d9e-ee52-4411-ae75-8f9c3fefdde8
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 12
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='12')
ETag: W/"datetime'2012-12-30T15%3A34%3A45.4906418Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A45.4906418Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='12')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:45Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch5" href="tablebatch5(PartitionKey='partition1',RowKey='12')" />
<category term="aogail2.tablebatch5" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>12</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:45.4906418Z</d:Timestamp>
<d:address>other</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_4ef05d9e-ee52-4411-ae75-8f9c3fefdde8
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 13
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='13')
ETag: W/"datetime'2012-12-30T15%3A34%3A45.4916417Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A45.4916417Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='13')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:45Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch5" href="tablebatch5(PartitionKey='partition1',RowKey='13')" />
<category term="aogail2.tablebatch5" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>13</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:45.4916417Z</d:Timestamp>
<d:address>other</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_4ef05d9e-ee52-4411-ae75-8f9c3fefdde8
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 14
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='14')
ETag: W/"datetime'2012-12-30T15%3A34%3A45.4916417Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A45.4916417Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='14')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:45Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch5" href="tablebatch5(PartitionKey='partition1',RowKey='14')" />
<category term="aogail2.tablebatch5" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>14</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:45.4916417Z</d:Timestamp>
<d:address>other</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_4ef05d9e-ee52-4411-ae75-8f9c3fefdde8
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 15
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='15')
ETag: W/"datetime'2012-12-30T15%3A34%3A45.4916417Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A45.4916417Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='15')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:45Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch5" href="tablebatch5(PartitionKey='partition1',RowKey='15')" />
<category term="aogail2.tablebatch5" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>15</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:45.4916417Z</d:Timestamp>
<d:address>other</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_4ef05d9e-ee52-4411-ae75-8f9c3fefdde8
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 16
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='16')
ETag: W/"datetime'2012-12-30T15%3A34%3A45.4916417Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A45.4916417Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='16')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:45Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch5" href="tablebatch5(PartitionKey='partition1',RowKey='16')" />
<category term="aogail2.tablebatch5" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>16</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:45.4916417Z</d:Timestamp>
<d:address>other</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_4ef05d9e-ee52-4411-ae75-8f9c3fefdde8
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 17
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='17')
ETag: W/"datetime'2012-12-30T15%3A34%3A45.4916417Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A45.4916417Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='17')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:45Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch5" href="tablebatch5(PartitionKey='partition1',RowKey='17')" />
<category term="aogail2.tablebatch5" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>17</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:45.4916417Z</d:Timestamp>
<d:address>other</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_4ef05d9e-ee52-4411-ae75-8f9c3fefdde8
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 18
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='18')
ETag: W/"datetime'2012-12-30T15%3A34%3A45.4916417Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A45.4916417Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='18')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:45Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch5" href="tablebatch5(PartitionKey='partition1',RowKey='18')" />
<category term="aogail2.tablebatch5" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>18</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:45.4916417Z</d:Timestamp>
<d:address>other</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_4ef05d9e-ee52-4411-ae75-8f9c3fefdde8
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 19
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='19')
ETag: W/"datetime'2012-12-30T15%3A34%3A45.4916417Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A45.4916417Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='19')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:45Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch5" href="tablebatch5(PartitionKey='partition1',RowKey='19')" />
<category term="aogail2.tablebatch5" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>19</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:45.4916417Z</d:Timestamp>
<d:address>other</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_4ef05d9e-ee52-4411-ae75-8f9c3fefdde8
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 20
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='20')
ETag: W/"datetime'2012-12-30T15%3A34%3A45.4916417Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A45.4916417Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='20')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:45Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch5" href="tablebatch5(PartitionKey='partition1',RowKey='20')" />
<category term="aogail2.tablebatch5" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>20</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:45.4916417Z</d:Timestamp>
<d:address>other</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_4ef05d9e-ee52-4411-ae75-8f9c3fefdde8--
--batchresponse_40d11d83-97aa-45d0-9776-7a9fb282b165--

Просмотреть файл

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<feed xml:base="http://aogail2.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">tablebatch5</title>
<id>http://aogail2.table.core.windows.net/tablebatch5</id>
<updated>2012-12-30T15:34:46Z</updated>
<link rel="self" title="tablebatch5" href="tablebatch5" />
<entry m:etag="W/&quot;datetime'2012-12-30T15%3A34%3A45.4906418Z'&quot;">
<id>http://aogail2.table.core.windows.net/tablebatch5(PartitionKey='partition1',RowKey='1')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:46Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch5" href="tablebatch5(PartitionKey='partition1',RowKey='1')" />
<category term="aogail2.tablebatch5" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>1</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:45.4906418Z</d:Timestamp>
<d:address>unique</d:address>
</m:properties>
</content>
</entry>
</feed>

Просмотреть файл

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<feed xml:base="http://aogail2.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://aogail2.table.core.windows.net/Tables</id>
<updated>2012-12-30T15:34:47Z</updated>
<link rel="self" title="Tables" href="Tables" />
<entry>
<id>http://aogail2.table.core.windows.net/Tables('tablebatch5')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:47Z</updated>
<author>
<name />
</author>
<link rel="edit" title="Tables" href="Tables('tablebatch5')" />
<category term="aogail2.Tables" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:TableName>tablebatch5</d:TableName>
</m:properties>
</content>
</entry>
</feed>

Просмотреть файл

@ -0,0 +1 @@
[{"requestMethod":"POST","requestUrl":"http://aogail2.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"432","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Sun, 30 Dec 2012 15:34:51 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":"Sun, 30 Dec 2012 15:34:48 GMT"},"responseFile":"x2.dat"},{"requestMethod":"POST","requestUrl":"http://aogail2.table.core.windows.net:80/$batch","requestHeaders":{"content-type":"multipart/mixed; boundary=batch_fcf44c28cce1e541e5ceeb52b1cea831","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","content-length":"15227","x-ms-version":"2011-08-18","x-ms-date":"Sun, 30 Dec 2012 15:34:52 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"requestFile":"x3.dat","responseStatusCode":202,"responseHeaders":{"cache-control":"no-cache","transfer-encoding":"chunked","content-type":"multipart/mixed; boundary=batchresponse_f90fde36-e102-4868-9d4c-d8c9ecb00b58","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Sun, 30 Dec 2012 15:34:48 GMT"},"responseFile":"x4.dat"},{"requestMethod":"GET","requestUrl":"http://aogail2.table.core.windows.net:80/tablebatch6()?$top=4","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":"Sun, 30 Dec 2012 15:34: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","x-ms-continuation-nextpartitionkey":"1!16!cGFydGl0aW9uMQ--","x-ms-continuation-nextrowkey":"1!4!MTM-","date":"Sun, 30 Dec 2012 15:34:51 GMT"},"responseFile":"x5.dat"},{"requestMethod":"GET","requestUrl":"http://aogail2.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":"Sun, 30 Dec 2012 15:34: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":"Sun, 30 Dec 2012 15:34:51 GMT"},"responseFile":"x6.dat"},{"requestMethod":"DELETE","requestUrl":"http://aogail2.table.core.windows.net:80/Tables(%27tablebatch6%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":"Sun, 30 Dec 2012 15:34:56 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":"Sun, 30 Dec 2012 15:34:52 GMT"}}]

Просмотреть файл

@ -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-12-30T15:34:51.726Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tablebatch6</d:TableName></m:properties></content></entry>

Просмотреть файл

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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://aogail2.table.core.windows.net/Tables('tablebatch6')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:48Z</updated>
<author>
<name />
</author>
<link rel="edit" title="Tables" href="Tables('tablebatch6')" />
<category term="aogail2.Tables" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:TableName>tablebatch6</d:TableName>
</m:properties>
</content>
</entry>

Просмотреть файл

@ -0,0 +1,205 @@
--batch_fcf44c28cce1e541e5ceeb52b1cea831
content-type: multipart/mixed; boundary=changeset_fcf44c28cce1e541e5ceeb52b1cea831
--changeset_fcf44c28cce1e541e5ceeb52b1cea831
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch6 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 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-12-30T15:34:52.826Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>1</d:RowKey><d:address>street1</d:address></m:properties></content></entry>
--changeset_fcf44c28cce1e541e5ceeb52b1cea831
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch6 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 2
<?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-12-30T15:34:52.826Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>2</d:RowKey><d:address>street2</d:address></m:properties></content></entry>
--changeset_fcf44c28cce1e541e5ceeb52b1cea831
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch6 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 3
<?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-12-30T15:34:52.827Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>3</d:RowKey><d:address>street3</d:address></m:properties></content></entry>
--changeset_fcf44c28cce1e541e5ceeb52b1cea831
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch6 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 4
<?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-12-30T15:34:52.827Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>4</d:RowKey><d:address>street4</d:address></m:properties></content></entry>
--changeset_fcf44c28cce1e541e5ceeb52b1cea831
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch6 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 5
<?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-12-30T15:34:52.827Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>5</d:RowKey><d:address>street5</d:address></m:properties></content></entry>
--changeset_fcf44c28cce1e541e5ceeb52b1cea831
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch6 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 6
<?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-12-30T15:34:52.827Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>6</d:RowKey><d:address>street6</d:address></m:properties></content></entry>
--changeset_fcf44c28cce1e541e5ceeb52b1cea831
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch6 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 7
<?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-12-30T15:34:52.828Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>7</d:RowKey><d:address>street7</d:address></m:properties></content></entry>
--changeset_fcf44c28cce1e541e5ceeb52b1cea831
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch6 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 8
<?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-12-30T15:34:52.828Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>8</d:RowKey><d:address>street8</d:address></m:properties></content></entry>
--changeset_fcf44c28cce1e541e5ceeb52b1cea831
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch6 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 489
content-id: 9
<?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-12-30T15:34:52.828Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>9</d:RowKey><d:address>street9</d:address></m:properties></content></entry>
--changeset_fcf44c28cce1e541e5ceeb52b1cea831
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch6 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 10
<?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-12-30T15:34:52.828Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>10</d:RowKey><d:address>street10</d:address></m:properties></content></entry>
--changeset_fcf44c28cce1e541e5ceeb52b1cea831
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch6 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 11
<?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-12-30T15:34:52.828Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>11</d:RowKey><d:address>street11</d:address></m:properties></content></entry>
--changeset_fcf44c28cce1e541e5ceeb52b1cea831
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch6 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 12
<?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-12-30T15:34:52.828Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>12</d:RowKey><d:address>street12</d:address></m:properties></content></entry>
--changeset_fcf44c28cce1e541e5ceeb52b1cea831
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch6 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 13
<?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-12-30T15:34:52.828Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>13</d:RowKey><d:address>street13</d:address></m:properties></content></entry>
--changeset_fcf44c28cce1e541e5ceeb52b1cea831
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch6 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 14
<?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-12-30T15:34:52.828Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>14</d:RowKey><d:address>street14</d:address></m:properties></content></entry>
--changeset_fcf44c28cce1e541e5ceeb52b1cea831
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch6 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 15
<?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-12-30T15:34:52.829Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>15</d:RowKey><d:address>street15</d:address></m:properties></content></entry>
--changeset_fcf44c28cce1e541e5ceeb52b1cea831
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch6 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 16
<?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-12-30T15:34:52.829Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>16</d:RowKey><d:address>street16</d:address></m:properties></content></entry>
--changeset_fcf44c28cce1e541e5ceeb52b1cea831
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch6 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 17
<?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-12-30T15:34:52.829Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>17</d:RowKey><d:address>street17</d:address></m:properties></content></entry>
--changeset_fcf44c28cce1e541e5ceeb52b1cea831
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch6 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 18
<?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-12-30T15:34:52.829Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>18</d:RowKey><d:address>street18</d:address></m:properties></content></entry>
--changeset_fcf44c28cce1e541e5ceeb52b1cea831
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch6 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 19
<?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-12-30T15:34:52.829Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>19</d:RowKey><d:address>street19</d:address></m:properties></content></entry>
--changeset_fcf44c28cce1e541e5ceeb52b1cea831
content-type: application/http
content-transfer-encoding: binary
POST http://aogail2.table.core.windows.net:80/tablebatch6 HTTP/1.1
content-type: application/atom+xml;type=entry
content-length: 491
content-id: 20
<?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-12-30T15:34:52.829Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>20</d:RowKey><d:address>street20</d:address></m:properties></content></entry>
--changeset_fcf44c28cce1e541e5ceeb52b1cea831--
--batch_fcf44c28cce1e541e5ceeb52b1cea831--

Просмотреть файл

@ -0,0 +1,625 @@
--batchresponse_f90fde36-e102-4868-9d4c-d8c9ecb00b58
Content-Type: multipart/mixed; boundary=changesetresponse_bfaa5e4a-2845-4148-b4ec-9d34ec29e6c4
--changesetresponse_bfaa5e4a-2845-4148-b4ec-9d34ec29e6c4
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 1
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='1')
ETag: W/"datetime'2012-12-30T15%3A34%3A49.573649Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A49.573649Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='1')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:49Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch6" href="tablebatch6(PartitionKey='partition1',RowKey='1')" />
<category term="aogail2.tablebatch6" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>1</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:49.573649Z</d:Timestamp>
<d:address>street1</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_bfaa5e4a-2845-4148-b4ec-9d34ec29e6c4
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 2
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='2')
ETag: W/"datetime'2012-12-30T15%3A34%3A49.573649Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A49.573649Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='2')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:49Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch6" href="tablebatch6(PartitionKey='partition1',RowKey='2')" />
<category term="aogail2.tablebatch6" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>2</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:49.573649Z</d:Timestamp>
<d:address>street2</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_bfaa5e4a-2845-4148-b4ec-9d34ec29e6c4
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 3
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='3')
ETag: W/"datetime'2012-12-30T15%3A34%3A49.573649Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A49.573649Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='3')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:49Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch6" href="tablebatch6(PartitionKey='partition1',RowKey='3')" />
<category term="aogail2.tablebatch6" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>3</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:49.573649Z</d:Timestamp>
<d:address>street3</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_bfaa5e4a-2845-4148-b4ec-9d34ec29e6c4
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 4
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='4')
ETag: W/"datetime'2012-12-30T15%3A34%3A49.573649Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A49.573649Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='4')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:49Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch6" href="tablebatch6(PartitionKey='partition1',RowKey='4')" />
<category term="aogail2.tablebatch6" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>4</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:49.573649Z</d:Timestamp>
<d:address>street4</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_bfaa5e4a-2845-4148-b4ec-9d34ec29e6c4
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 5
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='5')
ETag: W/"datetime'2012-12-30T15%3A34%3A49.573649Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A49.573649Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='5')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:49Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch6" href="tablebatch6(PartitionKey='partition1',RowKey='5')" />
<category term="aogail2.tablebatch6" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>5</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:49.573649Z</d:Timestamp>
<d:address>street5</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_bfaa5e4a-2845-4148-b4ec-9d34ec29e6c4
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 6
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='6')
ETag: W/"datetime'2012-12-30T15%3A34%3A49.573649Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A49.573649Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='6')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:49Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch6" href="tablebatch6(PartitionKey='partition1',RowKey='6')" />
<category term="aogail2.tablebatch6" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>6</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:49.573649Z</d:Timestamp>
<d:address>street6</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_bfaa5e4a-2845-4148-b4ec-9d34ec29e6c4
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 7
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='7')
ETag: W/"datetime'2012-12-30T15%3A34%3A49.5746489Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A49.5746489Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='7')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:49Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch6" href="tablebatch6(PartitionKey='partition1',RowKey='7')" />
<category term="aogail2.tablebatch6" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>7</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:49.5746489Z</d:Timestamp>
<d:address>street7</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_bfaa5e4a-2845-4148-b4ec-9d34ec29e6c4
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 8
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='8')
ETag: W/"datetime'2012-12-30T15%3A34%3A49.5746489Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A49.5746489Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='8')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:49Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch6" href="tablebatch6(PartitionKey='partition1',RowKey='8')" />
<category term="aogail2.tablebatch6" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>8</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:49.5746489Z</d:Timestamp>
<d:address>street8</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_bfaa5e4a-2845-4148-b4ec-9d34ec29e6c4
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 9
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='9')
ETag: W/"datetime'2012-12-30T15%3A34%3A49.5746489Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A49.5746489Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='9')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:49Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch6" href="tablebatch6(PartitionKey='partition1',RowKey='9')" />
<category term="aogail2.tablebatch6" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>9</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:49.5746489Z</d:Timestamp>
<d:address>street9</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_bfaa5e4a-2845-4148-b4ec-9d34ec29e6c4
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 10
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='10')
ETag: W/"datetime'2012-12-30T15%3A34%3A49.5746489Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A49.5746489Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='10')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:49Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch6" href="tablebatch6(PartitionKey='partition1',RowKey='10')" />
<category term="aogail2.tablebatch6" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>10</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:49.5746489Z</d:Timestamp>
<d:address>street10</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_bfaa5e4a-2845-4148-b4ec-9d34ec29e6c4
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 11
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='11')
ETag: W/"datetime'2012-12-30T15%3A34%3A49.5746489Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A49.5746489Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='11')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:49Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch6" href="tablebatch6(PartitionKey='partition1',RowKey='11')" />
<category term="aogail2.tablebatch6" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>11</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:49.5746489Z</d:Timestamp>
<d:address>street11</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_bfaa5e4a-2845-4148-b4ec-9d34ec29e6c4
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 12
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='12')
ETag: W/"datetime'2012-12-30T15%3A34%3A49.5746489Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A49.5746489Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='12')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:49Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch6" href="tablebatch6(PartitionKey='partition1',RowKey='12')" />
<category term="aogail2.tablebatch6" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>12</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:49.5746489Z</d:Timestamp>
<d:address>street12</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_bfaa5e4a-2845-4148-b4ec-9d34ec29e6c4
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 13
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='13')
ETag: W/"datetime'2012-12-30T15%3A34%3A49.5746489Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A49.5746489Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='13')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:49Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch6" href="tablebatch6(PartitionKey='partition1',RowKey='13')" />
<category term="aogail2.tablebatch6" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>13</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:49.5746489Z</d:Timestamp>
<d:address>street13</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_bfaa5e4a-2845-4148-b4ec-9d34ec29e6c4
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 14
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='14')
ETag: W/"datetime'2012-12-30T15%3A34%3A49.5746489Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A49.5746489Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='14')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:49Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch6" href="tablebatch6(PartitionKey='partition1',RowKey='14')" />
<category term="aogail2.tablebatch6" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>14</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:49.5746489Z</d:Timestamp>
<d:address>street14</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_bfaa5e4a-2845-4148-b4ec-9d34ec29e6c4
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 15
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='15')
ETag: W/"datetime'2012-12-30T15%3A34%3A49.5746489Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A49.5746489Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='15')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:49Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch6" href="tablebatch6(PartitionKey='partition1',RowKey='15')" />
<category term="aogail2.tablebatch6" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>15</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:49.5746489Z</d:Timestamp>
<d:address>street15</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_bfaa5e4a-2845-4148-b4ec-9d34ec29e6c4
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 16
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='16')
ETag: W/"datetime'2012-12-30T15%3A34%3A49.5746489Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A49.5746489Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='16')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:49Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch6" href="tablebatch6(PartitionKey='partition1',RowKey='16')" />
<category term="aogail2.tablebatch6" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>16</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:49.5746489Z</d:Timestamp>
<d:address>street16</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_bfaa5e4a-2845-4148-b4ec-9d34ec29e6c4
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 17
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='17')
ETag: W/"datetime'2012-12-30T15%3A34%3A49.5746489Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A49.5746489Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='17')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:49Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch6" href="tablebatch6(PartitionKey='partition1',RowKey='17')" />
<category term="aogail2.tablebatch6" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>17</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:49.5746489Z</d:Timestamp>
<d:address>street17</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_bfaa5e4a-2845-4148-b4ec-9d34ec29e6c4
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 18
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='18')
ETag: W/"datetime'2012-12-30T15%3A34%3A49.5746489Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A49.5746489Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='18')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:49Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch6" href="tablebatch6(PartitionKey='partition1',RowKey='18')" />
<category term="aogail2.tablebatch6" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>18</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:49.5746489Z</d:Timestamp>
<d:address>street18</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_bfaa5e4a-2845-4148-b4ec-9d34ec29e6c4
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 19
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='19')
ETag: W/"datetime'2012-12-30T15%3A34%3A49.5746489Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A49.5746489Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='19')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:49Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch6" href="tablebatch6(PartitionKey='partition1',RowKey='19')" />
<category term="aogail2.tablebatch6" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>19</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:49.5746489Z</d:Timestamp>
<d:address>street19</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_bfaa5e4a-2845-4148-b4ec-9d34ec29e6c4
Content-Type: application/http
Content-Transfer-Encoding: binary
HTTP/1.1 201 Created
Content-ID: 20
Cache-Control: no-cache
DataServiceVersion: 1.0;
Content-Type: application/atom+xml;charset=utf-8
Location: http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='20')
ETag: W/"datetime'2012-12-30T15%3A34%3A49.5746489Z'"
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A49.5746489Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='20')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:49Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch6" href="tablebatch6(PartitionKey='partition1',RowKey='20')" />
<category term="aogail2.tablebatch6" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>20</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:49.5746489Z</d:Timestamp>
<d:address>street20</d:address>
</m:properties>
</content>
</entry>
--changesetresponse_bfaa5e4a-2845-4148-b4ec-9d34ec29e6c4--
--batchresponse_f90fde36-e102-4868-9d4c-d8c9ecb00b58--

Просмотреть файл

@ -0,0 +1,79 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<feed xml:base="http://aogail2.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">tablebatch6</title>
<id>http://aogail2.table.core.windows.net/tablebatch6</id>
<updated>2012-12-30T15:34:51Z</updated>
<link rel="self" title="tablebatch6" href="tablebatch6" />
<entry m:etag="W/&quot;datetime'2012-12-30T15%3A34%3A49.573649Z'&quot;">
<id>http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='1')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:51Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch6" href="tablebatch6(PartitionKey='partition1',RowKey='1')" />
<category term="aogail2.tablebatch6" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>1</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:49.573649Z</d:Timestamp>
<d:address>street1</d:address>
</m:properties>
</content>
</entry>
<entry m:etag="W/&quot;datetime'2012-12-30T15%3A34%3A49.5746489Z'&quot;">
<id>http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='10')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:51Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch6" href="tablebatch6(PartitionKey='partition1',RowKey='10')" />
<category term="aogail2.tablebatch6" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>10</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:49.5746489Z</d:Timestamp>
<d:address>street10</d:address>
</m:properties>
</content>
</entry>
<entry m:etag="W/&quot;datetime'2012-12-30T15%3A34%3A49.5746489Z'&quot;">
<id>http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='11')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:51Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch6" href="tablebatch6(PartitionKey='partition1',RowKey='11')" />
<category term="aogail2.tablebatch6" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>11</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:49.5746489Z</d:Timestamp>
<d:address>street11</d:address>
</m:properties>
</content>
</entry>
<entry m:etag="W/&quot;datetime'2012-12-30T15%3A34%3A49.5746489Z'&quot;">
<id>http://aogail2.table.core.windows.net/tablebatch6(PartitionKey='partition1',RowKey='12')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:51Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablebatch6" href="tablebatch6(PartitionKey='partition1',RowKey='12')" />
<category term="aogail2.tablebatch6" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>12</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:49.5746489Z</d:Timestamp>
<d:address>street12</d:address>
</m:properties>
</content>
</entry>
</feed>

Просмотреть файл

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<feed xml:base="http://aogail2.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://aogail2.table.core.windows.net/Tables</id>
<updated>2012-12-30T15:34:52Z</updated>
<link rel="self" title="Tables" href="Tables" />
<entry>
<id>http://aogail2.table.core.windows.net/Tables('tablebatch6')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:52Z</updated>
<author>
<name />
</author>
<link rel="edit" title="Tables" href="Tables('tablebatch6')" />
<category term="aogail2.Tables" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:TableName>tablebatch6</d:TableName>
</m:properties>
</content>
</entry>
</feed>

Просмотреть файл

@ -0,0 +1 @@
[{"requestMethod":"POST","requestUrl":"http://aogail2.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"432","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Sun, 30 Dec 2012 15:34: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":"Sun, 30 Dec 2012 15:34:53 GMT"},"responseFile":"x2.dat"},{"requestMethod":"POST","requestUrl":"http://aogail2.table.core.windows.net:80/tablequery1","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"528","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Sun, 30 Dec 2012 15:34:57 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-12-30T15%3A34%3A54.9332056Z'\"","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Sun, 30 Dec 2012 15:34:54 GMT"},"responseFile":"x4.dat"},{"requestMethod":"GET","requestUrl":"http://aogail2.table.core.windows.net:80/tablequery1()?$select=field1","requestHeaders":{"dataserviceversion":"2.0;NetFx","maxdataserviceversion":"2.0;NetFx","content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","x-ms-version":"2011-08-18","x-ms-date":"Sun, 30 Dec 2012 15:34: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","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Sun, 30 Dec 2012 15:34:56 GMT"},"responseFile":"x5.dat"},{"requestMethod":"GET","requestUrl":"http://aogail2.table.core.windows.net:80/tablequery1()","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":"Sun, 30 Dec 2012 15:34: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","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Sun, 30 Dec 2012 15:34:56 GMT"},"responseFile":"x6.dat"},{"requestMethod":"GET","requestUrl":"http://aogail2.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":"Sun, 30 Dec 2012 15:35: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":"Sun, 30 Dec 2012 15:34:55 GMT"},"responseFile":"x7.dat"},{"requestMethod":"DELETE","requestUrl":"http://aogail2.table.core.windows.net:80/Tables(%27tablequery1%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":"Sun, 30 Dec 2012 15:35: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":"Sun, 30 Dec 2012 15:34:56 GMT"}}]

Просмотреть файл

@ -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-12-30T15:34:57.130Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tablequery1</d:TableName></m:properties></content></entry>

Просмотреть файл

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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://aogail2.table.core.windows.net/Tables('tablequery1')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:54Z</updated>
<author>
<name />
</author>
<link rel="edit" title="Tables" href="Tables('tablequery1')" />
<category term="aogail2.Tables" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:TableName>tablequery1</d:TableName>
</m:properties>
</content>
</entry>

Просмотреть файл

@ -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-12-30T15:34:57.905Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>partition1</d:PartitionKey><d:RowKey>row1</d:RowKey><d:field1>field1 value</d:field1><d:field2>field2 value</d:field2></m:properties></content></entry>

Просмотреть файл

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A34%3A54.9332056Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tablequery1(PartitionKey='partition1',RowKey='row1')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:54Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablequery1" href="tablequery1(PartitionKey='partition1',RowKey='row1')" />
<category term="aogail2.tablequery1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>row1</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:54.9332056Z</d:Timestamp>
<d:field1>field1 value</d:field1>
<d:field2>field2 value</d:field2>
</m:properties>
</content>
</entry>

Просмотреть файл

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<feed xml:base="http://aogail2.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">tablequery1</title>
<id>http://aogail2.table.core.windows.net/tablequery1</id>
<updated>2012-12-30T15:34:56Z</updated>
<link rel="self" title="tablequery1" href="tablequery1" />
<entry m:etag="W/&quot;datetime'2012-12-30T15%3A34%3A54.9332056Z'&quot;">
<id>http://aogail2.table.core.windows.net/tablequery1(PartitionKey='partition1',RowKey='row1')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:56Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablequery1" href="tablequery1(PartitionKey='partition1',RowKey='row1')" />
<category term="aogail2.tablequery1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:field1>field1 value</d:field1>
</m:properties>
</content>
</entry>
</feed>

Просмотреть файл

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<feed xml:base="http://aogail2.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">tablequery1</title>
<id>http://aogail2.table.core.windows.net/tablequery1</id>
<updated>2012-12-30T15:34:56Z</updated>
<link rel="self" title="tablequery1" href="tablequery1" />
<entry m:etag="W/&quot;datetime'2012-12-30T15%3A34%3A54.9332056Z'&quot;">
<id>http://aogail2.table.core.windows.net/tablequery1(PartitionKey='partition1',RowKey='row1')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:56Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tablequery1" href="tablequery1(PartitionKey='partition1',RowKey='row1')" />
<category term="aogail2.tablequery1" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>partition1</d:PartitionKey>
<d:RowKey>row1</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:34:54.9332056Z</d:Timestamp>
<d:field1>field1 value</d:field1>
<d:field2>field2 value</d:field2>
</m:properties>
</content>
</entry>
</feed>

Просмотреть файл

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<feed xml:base="http://aogail2.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://aogail2.table.core.windows.net/Tables</id>
<updated>2012-12-30T15:34:56Z</updated>
<link rel="self" title="Tables" href="Tables" />
<entry>
<id>http://aogail2.table.core.windows.net/Tables('tablequery1')</id>
<title type="text"></title>
<updated>2012-12-30T15:34:56Z</updated>
<author>
<name />
</author>
<link rel="edit" title="Tables" href="Tables('tablequery1')" />
<category term="aogail2.Tables" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:TableName>tablequery1</d:TableName>
</m:properties>
</content>
</entry>
</feed>

Просмотреть файл

@ -0,0 +1 @@
[{"requestMethod":"GET","requestUrl":"http://aogail2.table.core.windows.net:80/?restype=service&comp=properties","requestHeaders":{"dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","content-type":"","content-length":"0","x-ms-version":"2011-08-18","x-ms-date":"Sun, 30 Dec 2012 15:35:00 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":"Sun, 30 Dec 2012 15:34:56 GMT"},"responseFile":"x1.dat"},{"requestMethod":"GET","requestUrl":"http://aogail2.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":"Sun, 30 Dec 2012 15:35: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":"Sun, 30 Dec 2012 15:34:56 GMT"},"responseFile":"x2.dat"}]

Просмотреть файл

@ -0,0 +1 @@
<?xml version="1.0" encoding="utf-8"?><StorageServiceProperties><Logging><Version>1.0</Version><Read>true</Read><Write>false</Write><Delete>false</Delete><RetentionPolicy><Enabled>false</Enabled></RetentionPolicy></Logging><Metrics><Version>1.0</Version><Enabled>false</Enabled><RetentionPolicy><Enabled>false</Enabled></RetentionPolicy></Metrics></StorageServiceProperties>

Просмотреть файл

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<feed xml:base="http://aogail2.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://aogail2.table.core.windows.net/Tables</id>
<updated>2012-12-30T15:34:57Z</updated>
<author>
<name />
</author>
<link rel="self" title="Tables" href="Tables" />
</feed>

Просмотреть файл

@ -0,0 +1 @@
[{"requestMethod":"POST","requestUrl":"http://aogail2.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"434","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Sun, 30 Dec 2012 15:35:30 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":"Sun, 30 Dec 2012 15:35:27 GMT"},"responseFile":"x2.dat"},{"requestMethod":"POST","requestUrl":"http://aogail2.table.core.windows.net:80/tableservice9","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"577","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Sun, 30 Dec 2012 15:35:31 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-12-30T15%3A35%3A28.4692822Z'\"","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Sun, 30 Dec 2012 15:35:28 GMT"},"responseFile":"x4.dat"},{"requestMethod":"DELETE","requestUrl":"http://aogail2.table.core.windows.net:80/tableservice9(PartitionKey=%27part1%27,RowKey=%27row1%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"0","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":"Sun, 30 Dec 2012 15:35:32 GMT","accept":"application/atom+xml,application/xml","accept-charset":"UTF-8","connection":"keep-alive"},"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":"Sun, 30 Dec 2012 15:35:28 GMT"},"responseFile":"x5.dat"},{"requestMethod":"GET","requestUrl":"http://aogail2.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":"Sun, 30 Dec 2012 15:35:32 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":"Sun, 30 Dec 2012 15:35:29 GMT"},"responseFile":"x6.dat"},{"requestMethod":"DELETE","requestUrl":"http://aogail2.table.core.windows.net:80/Tables(%27tableservice9%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":"Sun, 30 Dec 2012 15:35:33 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":"Sun, 30 Dec 2012 15:35:28 GMT"}}]

Просмотреть файл

@ -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-12-30T15:35:30.503Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tableservice9</d:TableName></m:properties></content></entry>

Просмотреть файл

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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://aogail2.table.core.windows.net/Tables('tableservice9')</id>
<title type="text"></title>
<updated>2012-12-30T15:35:27Z</updated>
<author>
<name />
</author>
<link rel="edit" title="Tables" href="Tables('tableservice9')" />
<category term="aogail2.Tables" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:TableName>tableservice9</d:TableName>
</m:properties>
</content>
</entry>

Просмотреть файл

@ -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-12-30T15:35:31.599Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>part1</d:PartitionKey><d:RowKey>row1</d:RowKey><d:field>XML &lt;test&gt;</d:field><d:otherfield>my other field</d:otherfield><d:otherprops>my properties</d:otherprops></m:properties></content></entry>

Просмотреть файл

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A35%3A28.4692822Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tableservice9(PartitionKey='part1',RowKey='row1')</id>
<title type="text"></title>
<updated>2012-12-30T15:35:28Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tableservice9" href="tableservice9(PartitionKey='part1',RowKey='row1')" />
<category term="aogail2.tableservice9" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>part1</d:PartitionKey>
<d:RowKey>row1</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:35:28.4692822Z</d:Timestamp>
<d:field>XML &lt;test&gt;</d:field>
<d:otherfield>my other field</d:otherfield>
<d:otherprops>my properties</d:otherprops>
</m:properties>
</content>
</entry>

Просмотреть файл

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<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:8e4ecb46-d653-45b0-9bb4-bb82ebd9614c
Time:2012-12-30T15:35:28.8832172Z</message>
</error>

Просмотреть файл

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<feed xml:base="http://aogail2.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://aogail2.table.core.windows.net/Tables</id>
<updated>2012-12-30T15:35:30Z</updated>
<link rel="self" title="Tables" href="Tables" />
<entry>
<id>http://aogail2.table.core.windows.net/Tables('tableservice9')</id>
<title type="text"></title>
<updated>2012-12-30T15:35:30Z</updated>
<author>
<name />
</author>
<link rel="edit" title="Tables" href="Tables('tableservice9')" />
<category term="aogail2.Tables" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:TableName>tableservice9</d:TableName>
</m:properties>
</content>
</entry>
</feed>

Просмотреть файл

@ -0,0 +1 @@
[{"requestMethod":"POST","requestUrl":"http://aogail2.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"435","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Sun, 30 Dec 2012 15:35:33 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":"Sun, 30 Dec 2012 15:35:31 GMT"},"responseFile":"x2.dat"},{"requestMethod":"POST","requestUrl":"http://aogail2.table.core.windows.net:80/tableservice10","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"577","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Sun, 30 Dec 2012 15:35:35 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-12-30T15%3A35%3A32.420086Z'\"","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Sun, 30 Dec 2012 15:35:31 GMT"},"responseFile":"x4.dat"},{"requestMethod":"PUT","requestUrl":"http://aogail2.table.core.windows.net:80/tableservice10(PartitionKey=%27part1%27,RowKey=%27row1%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"568","if-match":"*","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Sun, 30 Dec 2012 15:35:35 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-12-30T15%3A35%3A33.1044885Z'\"","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Sun, 30 Dec 2012 15:35:32 GMT"}},{"requestMethod":"GET","requestUrl":"http://aogail2.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":"Sun, 30 Dec 2012 15:35:37 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":"Sun, 30 Dec 2012 15:35:33 GMT"},"responseFile":"x6.dat"},{"requestMethod":"DELETE","requestUrl":"http://aogail2.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":"Sun, 30 Dec 2012 15:35:37 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":"Sun, 30 Dec 2012 15:35:33 GMT"}}]

Просмотреть файл

@ -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-12-30T15:35:33.686Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tableservice10</d:TableName></m:properties></content></entry>

Просмотреть файл

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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://aogail2.table.core.windows.net/Tables('tableservice10')</id>
<title type="text"></title>
<updated>2012-12-30T15:35:32Z</updated>
<author>
<name />
</author>
<link rel="edit" title="Tables" href="Tables('tableservice10')" />
<category term="aogail2.Tables" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:TableName>tableservice10</d:TableName>
</m:properties>
</content>
</entry>

Просмотреть файл

@ -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-12-30T15:35:35.256Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>part1</d:PartitionKey><d:RowKey>row1</d:RowKey><d:field>XML &lt;test&gt;</d:field><d:otherfield>my other field</d:otherfield><d:otherprops>my properties</d:otherprops></m:properties></content></entry>

Просмотреть файл

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A35%3A32.420086Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tableservice10(PartitionKey='part1',RowKey='row1')</id>
<title type="text"></title>
<updated>2012-12-30T15:35:32Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tableservice10" href="tableservice10(PartitionKey='part1',RowKey='row1')" />
<category term="aogail2.tableservice10" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>part1</d:PartitionKey>
<d:RowKey>row1</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:35:32.420086Z</d:Timestamp>
<d:field>XML &lt;test&gt;</d:field>
<d:otherfield>my other field</d:otherfield>
<d:otherprops>my properties</d:otherprops>
</m:properties>
</content>
</entry>

Просмотреть файл

@ -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-12-30T15:35:35.960Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>part1</d:PartitionKey><d:RowKey>row1</d:RowKey><d:field>XML &lt;test&gt;</d:field><d:otherfield>value</d:otherfield><d:otherprops>my properties</d:otherprops></m:properties></content></entry>

Просмотреть файл

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<feed xml:base="http://aogail2.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://aogail2.table.core.windows.net/Tables</id>
<updated>2012-12-30T15:35:33Z</updated>
<link rel="self" title="Tables" href="Tables" />
<entry>
<id>http://aogail2.table.core.windows.net/Tables('tableservice10')</id>
<title type="text"></title>
<updated>2012-12-30T15:35:33Z</updated>
<author>
<name />
</author>
<link rel="edit" title="Tables" href="Tables('tableservice10')" />
<category term="aogail2.Tables" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:TableName>tableservice10</d:TableName>
</m:properties>
</content>
</entry>
</feed>

Просмотреть файл

@ -0,0 +1 @@
[{"requestMethod":"POST","requestUrl":"http://aogail2.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"435","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Sun, 30 Dec 2012 15:35:37 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":"Sun, 30 Dec 2012 15:35:34 GMT"},"responseFile":"x2.dat"},{"requestMethod":"POST","requestUrl":"http://aogail2.table.core.windows.net:80/tableservice11","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"568","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Sun, 30 Dec 2012 15:35:38 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-12-30T15%3A35%3A36.440577Z'\"","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Sun, 30 Dec 2012 15:35:35 GMT"},"responseFile":"x4.dat"},{"requestMethod":"PUT","requestUrl":"http://aogail2.table.core.windows.net:80/tableservice11(PartitionKey=%27part1%27,RowKey=%27row1%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"568","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":"Sun, 30 Dec 2012 15:35:40 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":"Sun, 30 Dec 2012 15:35:35 GMT"},"responseFile":"x6.dat"},{"requestMethod":"GET","requestUrl":"http://aogail2.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":"Sun, 30 Dec 2012 15:35:41 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":"Sun, 30 Dec 2012 15:35:37 GMT"},"responseFile":"x7.dat"},{"requestMethod":"DELETE","requestUrl":"http://aogail2.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":"Sun, 30 Dec 2012 15:35:41 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":"Sun, 30 Dec 2012 15:35:37 GMT"}}]

Просмотреть файл

@ -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-12-30T15:35:37.773Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tableservice11</d:TableName></m:properties></content></entry>

Просмотреть файл

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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://aogail2.table.core.windows.net/Tables('tableservice11')</id>
<title type="text"></title>
<updated>2012-12-30T15:35:34Z</updated>
<author>
<name />
</author>
<link rel="edit" title="Tables" href="Tables('tableservice11')" />
<category term="aogail2.Tables" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:TableName>tableservice11</d:TableName>
</m:properties>
</content>
</entry>

Просмотреть файл

@ -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-12-30T15:35:38.905Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>part1</d:PartitionKey><d:RowKey>row1</d:RowKey><d:field>XML &lt;test&gt;</d:field><d:otherfield>value</d:otherfield><d:otherprops>my properties</d:otherprops></m:properties></content></entry>

Просмотреть файл

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A35%3A36.440577Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tableservice11(PartitionKey='part1',RowKey='row1')</id>
<title type="text"></title>
<updated>2012-12-30T15:35:36Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tableservice11" href="tableservice11(PartitionKey='part1',RowKey='row1')" />
<category term="aogail2.tableservice11" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>part1</d:PartitionKey>
<d:RowKey>row1</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:35:36.440577Z</d:Timestamp>
<d:field>XML &lt;test&gt;</d:field>
<d:otherfield>value</d:otherfield>
<d:otherprops>my properties</d:otherprops>
</m:properties>
</content>
</entry>

Просмотреть файл

@ -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-12-30T15:35:40.095Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>part1</d:PartitionKey><d:RowKey>row1</d:RowKey><d:field>XML &lt;test&gt;</d:field><d:otherfield>value</d:otherfield><d:otherprops>my properties</d:otherprops></m:properties></content></entry>

Просмотреть файл

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<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:5b3eee75-c071-4a58-bc23-8d82f095c561
Time:2012-12-30T15:35:36.8275076Z</message>
</error>

Просмотреть файл

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<feed xml:base="http://aogail2.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://aogail2.table.core.windows.net/Tables</id>
<updated>2012-12-30T15:35:37Z</updated>
<link rel="self" title="Tables" href="Tables" />
<entry>
<id>http://aogail2.table.core.windows.net/Tables('tableservice11')</id>
<title type="text"></title>
<updated>2012-12-30T15:35:37Z</updated>
<author>
<name />
</author>
<link rel="edit" title="Tables" href="Tables('tableservice11')" />
<category term="aogail2.Tables" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:TableName>tableservice11</d:TableName>
</m:properties>
</content>
</entry>
</feed>

Просмотреть файл

@ -0,0 +1 @@
[{"requestMethod":"POST","requestUrl":"http://aogail2.table.core.windows.net:80/Tables","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"435","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Sun, 30 Dec 2012 15:35:41 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":"Sun, 30 Dec 2012 15:35:38 GMT"},"responseFile":"x2.dat"},{"requestMethod":"POST","requestUrl":"http://aogail2.table.core.windows.net:80/tableservice12","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"568","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Sun, 30 Dec 2012 15:35:43 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-12-30T15%3A35%3A40.2495776Z'\"","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Sun, 30 Dec 2012 15:35:39 GMT"},"responseFile":"x4.dat"},{"requestMethod":"MERGE","requestUrl":"http://aogail2.table.core.windows.net:80/tableservice12(PartitionKey=%27part1%27,RowKey=%27row1%27)","requestHeaders":{"content-type":"application/atom+xml;charset=\"utf-8\"","content-length":"568","if-match":"*","dataserviceversion":"1.0;NetFx","maxdataserviceversion":"2.0;NetFx","x-ms-version":"2011-08-18","x-ms-date":"Sun, 30 Dec 2012 15:35:44 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-12-30T15%3A35%3A41.1966792Z'\"","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Sun, 30 Dec 2012 15:35:41 GMT"}},{"requestMethod":"GET","requestUrl":"http://aogail2.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":"Sun, 30 Dec 2012 15:35: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","server":"Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0","x-ms-version":"2011-08-18","date":"Sun, 30 Dec 2012 15:35:41 GMT"},"responseFile":"x6.dat"},{"requestMethod":"DELETE","requestUrl":"http://aogail2.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":"Sun, 30 Dec 2012 15:35:45 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":"Sun, 30 Dec 2012 15:35:41 GMT"}}]

Просмотреть файл

@ -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-12-30T15:35:41.976Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:TableName>tableservice12</d:TableName></m:properties></content></entry>

Просмотреть файл

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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://aogail2.table.core.windows.net/Tables('tableservice12')</id>
<title type="text"></title>
<updated>2012-12-30T15:35:38Z</updated>
<author>
<name />
</author>
<link rel="edit" title="Tables" href="Tables('tableservice12')" />
<category term="aogail2.Tables" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:TableName>tableservice12</d:TableName>
</m:properties>
</content>
</entry>

Просмотреть файл

@ -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-12-30T15:35:43.092Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>part1</d:PartitionKey><d:RowKey>row1</d:RowKey><d:field>XML &lt;test&gt;</d:field><d:otherfield>value</d:otherfield><d:otherprops>my properties</d:otherprops></m:properties></content></entry>

Просмотреть файл

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://aogail2.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/&quot;datetime'2012-12-30T15%3A35%3A40.2495776Z'&quot;" xmlns="http://www.w3.org/2005/Atom">
<id>http://aogail2.table.core.windows.net/tableservice12(PartitionKey='part1',RowKey='row1')</id>
<title type="text"></title>
<updated>2012-12-30T15:35:40Z</updated>
<author>
<name />
</author>
<link rel="edit" title="tableservice12" href="tableservice12(PartitionKey='part1',RowKey='row1')" />
<category term="aogail2.tableservice12" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:PartitionKey>part1</d:PartitionKey>
<d:RowKey>row1</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-12-30T15:35:40.2495776Z</d:Timestamp>
<d:field>XML &lt;test&gt;</d:field>
<d:otherfield>value</d:otherfield>
<d:otherprops>my properties</d:otherprops>
</m:properties>
</content>
</entry>

Просмотреть файл

@ -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-12-30T15:35:44.184Z</updated><author><name/></author><id/><content type="application/xml"><m:properties><d:PartitionKey>part1</d:PartitionKey><d:RowKey>row1</d:RowKey><d:field>XML &lt;test&gt;</d:field><d:otherfield>value</d:otherfield><d:otherprops>my properties</d:otherprops></m:properties></content></entry>

Просмотреть файл

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<feed xml:base="http://aogail2.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://aogail2.table.core.windows.net/Tables</id>
<updated>2012-12-30T15:35:42Z</updated>
<link rel="self" title="Tables" href="Tables" />
<entry>
<id>http://aogail2.table.core.windows.net/Tables('tableservice12')</id>
<title type="text"></title>
<updated>2012-12-30T15:35:42Z</updated>
<author>
<name />
</author>
<link rel="edit" title="Tables" href="Tables('tableservice12')" />
<category term="aogail2.Tables" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:TableName>tableservice12</d:TableName>
</m:properties>
</content>
</entry>
</feed>

Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше