Skip to content

Instantly share code, notes, and snippets.

@lancehunt
Created October 25, 2012 21:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lancehunt/3955425 to your computer and use it in GitHub Desktop.
Save lancehunt/3955425 to your computer and use it in GitHub Desktop.
Socket.io v0.9.5 failure on websocket fallback to xhr-polling
<html>
<head>
<script src="/socket.io/socket.io.js"></script>
<script>
var baseUrl = window.location.protocol + "//" + window.location.host, // assumes client is hosted on same url/port as socket.io websockets
socket = io.connect(baseUrl, {'force new connection':true});
console.log(socket);
socket.on('news', function (data) {
document.write('<p>' + JSON.stringify(data) + ' from ' + baseUrl + '</p>');
setTimeout(function () {
socket.emit('my other event', { my: 'data', timestamp: new Date() });
}, 1000);
});
socket.on('connecting', function (data) {
document.write('<p>Connecting</p>');
});
socket.on('connect', function (data) {
document.write('<p>Connected</p>');
document.write('<p>transport:' + socket.socket.transport.name +'</p>');
});
socket.on('disconnect', function (data) {
document.write('<p>disconnect</p>');
});
socket.on('connect_failed', function (data) {
document.write('<p>connect_failed</p>');
});
socket.on('error', function (data) {
document.write('<p>error</p>');
});
socket.on('reconnect_failed', function (data) {
document.write('<p>reconnect_failed</p>');
});
socket.on('reconnecting', function (data) {
document.write('<p>reconnecting</p>');
});
socket.on('reconnect', function (data) {
document.write('<p>reconnect</p>');
});
</script>
</head>
<body></body>
</html>
var fs = require('fs')
, app = require('http').createServer(handler) // Swap the above line and this one to change between ssl and non-ssl
, io = require('socket.io').listen(app);
app.listen(9000);
function handler(req, res) {
fs.readFile(__dirname + '/client.html',
function (err, data) {
if (err) {
res.writeHead(500);
return res.end('Error loading client.html');
}
res.writeHead(200);
res.end(data);
});
}
io.configure(function () {
io.enable('browser client minification');
io.enable('browser client etag');
io.enable('browser client gzip');
io.set('log level', 3);
io.set('transports', [
'websocket',
'xhr-polling',
'jsonp-polling'
]);
});
// HACK: Enable this to make WebSocket handshakes fail while testing Fallback scenarios
io.server._events.upgrade = function() {};
io.sockets.on('connection', function (socket) {
socket.emit('news', { hello: 'Connected', timestamp: new Date() });
socket.on('my other event', function (data) {
console.log(data);
setTimeout(function () {
socket.emit('news', { hello: 'world', timestamp: new Date() });
}, 1000);
});
});
io.sockets.on('disconnect', function() {
console.log('disconnected');
});
{
"log": {
"version": "1.2",
"creator": {
"name": "WebInspector",
"version": "537.4"
},
"pages": [
{
"startedDateTime": "2012-10-25T21:15:56.432Z",
"id": "page_4",
"title": "http://localhost:9000/",
"pageTimings": {
"onContentLoad": 1077,
"onLoad": 1077
}
}
],
"entries": [
{
"startedDateTime": "2012-10-25T21:15:56.432Z",
"time": 3,
"request": {
"method": "GET",
"url": "http://localhost:9000/",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
},
{
"name": "Cache-Control",
"value": "max-age=0"
}
],
"queryString": [],
"cookies": [],
"headersSize": 400,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:15:56 GMT"
},
{
"name": "Transfer-Encoding",
"value": "chunked"
},
{
"name": "Connection",
"value": "keep-alive"
}
],
"cookies": [],
"content": {
"size": 1803,
"mimeType": "text/html",
"compression": -12
},
"redirectURL": "",
"headersSize": 108,
"bodySize": 1815
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:15:56.532Z",
"time": 962,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/socket.io.js",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Cache-Control",
"value": "max-age=0"
},
{
"name": "If-None-Match",
"value": "0.9.5:918519716044521885036510252188503"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [],
"cookies": [],
"headersSize": 451,
"bodySize": 0
},
"response": {
"status": 304,
"statusText": "Not Modified",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:15:57 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
}
],
"cookies": [],
"content": {
"size": 26677,
"mimeType": "application/javascript"
},
"redirectURL": "",
"headersSize": 90,
"bodySize": 0
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 960,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:15:57.504Z",
"time": 6,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/?t=1351199757500",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Cache-Control",
"value": "max-age=0"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199757500"
}
],
"cookies": [],
"headersSize": 401,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:15:57 GMT"
},
{
"name": "Transfer-Encoding",
"value": "chunked"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Type",
"value": "text/plain"
}
],
"cookies": [],
"content": {
"size": 61,
"mimeType": "text/plain",
"compression": -11
},
"redirectURL": "",
"headersSize": 134,
"bodySize": 72
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2,
"receive": 3,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:15:58.550Z",
"time": 120001,
"request": {
"method": "GET",
"url": "ws://localhost:9000/socket.io/1/websocket/1288066774254540896",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Connection",
"value": "Upgrade"
},
{
"name": "Sec-WebSocket-Extensions",
"value": "x-webkit-deflate-frame"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "Sec-WebSocket-Key",
"value": "T+wmDwQh4eMVPmt4fq4p4g=="
},
{
"name": "Upgrade",
"value": "websocket"
},
{
"name": "Sec-WebSocket-Version",
"value": "13"
}
],
"queryString": [],
"cookies": [],
"headersSize": 76,
"bodySize": 0
},
"response": {
"status": 0,
"statusText": "",
"httpVersion": "HTTP/1.1",
"headers": [],
"cookies": [],
"content": {
"size": 0,
"compression": 0
},
"redirectURL": "",
"headersSize": 13,
"bodySize": 0
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": -1,
"wait": -1,
"receive": null,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:07.647Z",
"time": 5,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199767646",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199767646"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:07 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "3"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 3,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 140,
"bodySize": 3
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 3,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:07.654Z",
"time": 4,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199767654",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199767654"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:07 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "89"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 89,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 89
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 1,
"wait": 1,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:07.659Z",
"time": 2016,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199767659",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199767659"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:09 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2015,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:08.660Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199768659",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199768659"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:16:08.659Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:08 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": 0,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:09.676Z",
"time": 2011,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199769676",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199769676"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:11 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2010,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:10.677Z",
"time": 1,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199770676",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199770676"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:16:10.676Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:10 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:11.688Z",
"time": 2012,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199771688",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199771688"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:13 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2010,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:12.690Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199772689",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199772689"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:16:12.689Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:12 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:13.701Z",
"time": 2010,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199773701",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199773701"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:15 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2008,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:14.701Z",
"time": 3,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199774701",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199774701"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:16:14.701Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:14 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 2,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:15.713Z",
"time": 2011,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199775712",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199775712"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:17 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2009,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:16.714Z",
"time": 1,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199776713",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199776713"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:16:16.713Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:16 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:17.726Z",
"time": 2012,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199777726",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199777726"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:19 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2010,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:18.728Z",
"time": 1,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199778727",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199778727"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:16:18.727Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:18 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:19.739Z",
"time": 2010,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199779739",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199779739"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:21 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2008,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:20.738Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199780738",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199780738"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:16:20.738Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:20 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:21:03.737Z",
"time": 2011,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199781750",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199781750"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:23 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2011,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:22.750Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199782750",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199782750"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:16:22.750Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:22 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:23.763Z",
"time": 2011,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199783763",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199783763"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:25 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2009,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:24.764Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199784764",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199784764"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:16:24.764Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:24 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:25.775Z",
"time": 2012,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199785775",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199785775"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:27 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2010,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:26.774Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199786774",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199786774"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:16:26.774Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:26 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:27.788Z",
"time": 2012,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199787788",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199787788"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:29 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2010,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:28.789Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199788789",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199788789"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:16:28.789Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:28 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:29.801Z",
"time": 2010,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199789800",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199789800"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:31 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2008,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:30.801Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199790801",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199790801"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:16:30.801Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:30 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:31.812Z",
"time": 2011,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199791812",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199791812"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:33 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2009,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:32.813Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199792813",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199792813"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:16:32.813Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:32 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:33.824Z",
"time": 2011,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199793824",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199793824"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:35 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2009,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:34.825Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199794825",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199794825"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:16:34.825Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:34 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:35.837Z",
"time": 2012,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199795837",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199795837"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:37 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2010,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:36.838Z",
"time": 1,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199796838",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199796838"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:16:36.838Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:36 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:37.850Z",
"time": 2011,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199797850",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199797850"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:39 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2009,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:38.851Z",
"time": 1,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199798850",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199798850"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:16:38.850Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:38 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:21:21.998Z",
"time": 2010,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199799861",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199799861"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:41 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2010,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:40.861Z",
"time": 3,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199800861",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199800861"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:16:40.861Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:40 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:41.874Z",
"time": 2012,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199801874",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199801874"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:43 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2011,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:42.875Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199802877",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199802877"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:16:42.877Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:42 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:43.888Z",
"time": 2010,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199803889",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199803889"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:45 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2008,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:44.887Z",
"time": 3,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199804889",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199804889"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:16:44.889Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:44 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:45.899Z",
"time": 2011,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199805900",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199805900"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:47 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2009,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:46.899Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199806901",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199806901"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:16:46.901Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:46 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:47.911Z",
"time": 2011,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199807913",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199807913"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:49 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2009,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:48.913Z",
"time": 1,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199808914",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199808914"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:16:48.914Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:48 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:49.923Z",
"time": 2012,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199809925",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199809925"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:51 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2011,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:50.923Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199810924",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199810924"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:16:50.924Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:50 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:51.936Z",
"time": 2011,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199811938",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199811938"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:53 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2009,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:52.938Z",
"time": 1,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199812939",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199812939"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:16:52.939Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:52 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:53.949Z",
"time": 2011,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199813950",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199813950"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:55 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 1,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2009,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:54.948Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199814950",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199814950"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:16:54.950Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:54 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:55.961Z",
"time": 2012,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199815963",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199815963"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:57 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2010,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:56.961Z",
"time": 3,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199816963",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199816963"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:16:56.963Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:56 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:21:40.120Z",
"time": 2009,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199817976",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199817976"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:59 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2009,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:58.975Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199818977",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199818977"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:16:58.977Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:16:58 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:16:59.986Z",
"time": 2011,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199819988",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199819988"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:01 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2009,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:00.987Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199820989",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199820989"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:17:00.989Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:00 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:01.998Z",
"time": 2012,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199822000",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199822000"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:04 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2010,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:02.999Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199823001",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199823001"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:17:03.001Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:03 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:04.011Z",
"time": 2011,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199824012",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199824012"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:06 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 1,
"wait": 2010,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:05.010Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199825012",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199825012"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:17:05.012Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:05 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 0,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:06.024Z",
"time": 2011,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199826025",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199826025"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:08 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2009,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:07.024Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199827026",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199827026"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:17:07.026Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:07 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:08.036Z",
"time": 2010,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199828038",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199828038"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:10 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 1,
"wait": 2008,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:09.037Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199829039",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199829039"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:17:09.039Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:09 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:10.047Z",
"time": 2013,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199830049",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199830049"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:12 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2011,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:11.047Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199831049",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199831049"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:17:11.049Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:11 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:12.062Z",
"time": 2010,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199832064",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199832064"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:14 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2008,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:13.063Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199833065",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199833065"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:17:13.065Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:13 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:21:56.226Z",
"time": 2010,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199834075",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199834075"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:16 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2010,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:15.073Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199835075",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199835075"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:17:15.075Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:15 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:16.085Z",
"time": 2013,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199836087",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199836087"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:18 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2010,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:17.086Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199837088",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199837088"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:17:17.088Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:17 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:18.099Z",
"time": 2010,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199838101",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199838101"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:20 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2008,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:19.098Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199839100",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199839100"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:17:19.100Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:19 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:20.110Z",
"time": 2011,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199840112",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199840112"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:22 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2009,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:21.110Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199841112",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199841112"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:17:21.112Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:21 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:22.122Z",
"time": 2012,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199842124",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199842124"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:24 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2010,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:23.122Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199843124",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199843124"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:17:23.124Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:23 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:24.135Z",
"time": 2010,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199844137",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199844137"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:26 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 1,
"wait": 2008,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:25.135Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199845137",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199845137"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:17:25.137Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:25 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:26.147Z",
"time": 2013,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199846149",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199846149"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:28 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2010,
"receive": 2,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:27.147Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199847149",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199847149"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:17:27.149Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:27 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:28.161Z",
"time": 2010,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199848163",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199848163"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:30 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2008,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:29.160Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199849162",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199849162"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:17:29.162Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:29 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:30.172Z",
"time": 2013,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199850174",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199850174"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:32 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2011,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:31.173Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199851175",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199851175"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:17:31.175Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:31 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:22:14.630Z",
"time": 2009,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199852189",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199852189"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:34 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2009,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:33.188Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199853190",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199853190"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:17:33.190Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:33 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:34.197Z",
"time": 2012,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199854199",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199854199"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:36 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2010,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:35.198Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199855200",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199855200"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:17:35.200Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:35 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:36.210Z",
"time": 2012,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199856212",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199856212"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:38 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2010,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:37.209Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199857211",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199857211"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:17:37.211Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:37 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:38.223Z",
"time": 2010,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199858224",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199858224"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:40 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2008,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:39.223Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199859225",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199859225"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:17:39.225Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:39 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:40.234Z",
"time": 2011,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199860236",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199860236"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:42 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2009,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:41.233Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199861235",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199861235"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:17:41.235Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:41 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:42.246Z",
"time": 2012,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199862247",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199862247"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:44 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2010,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:43.245Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199863250",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199863250"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:17:43.250Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:43 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:44.260Z",
"time": 2012,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199864264",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199864264"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:46 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2010,
"receive": 2,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:45.260Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199865265",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199865265"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:17:45.265Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:45 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:46.273Z",
"time": 2011,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199866278",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199866278"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:48 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2010,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:47.274Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199867279",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199867279"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:17:47.279Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:47 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:48.286Z",
"time": 2009,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199868290",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199868290"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:50 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2008,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:49.285Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199869290",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199869290"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:17:49.290Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:49 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:22:32.327Z",
"time": 2011,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199870301",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199870301"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:52 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2011,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:51.296Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199871301",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199871301"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:17:51.301Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:51 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:52.309Z",
"time": 2011,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199872314",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199872314"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:54 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2009,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:53.309Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199873314",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199873314"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:17:53.314Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:53 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:54.321Z",
"time": 2012,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199874325",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199874325"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:56 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2010,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:55.321Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199875326",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199875326"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:17:55.326Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:55 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:56.334Z",
"time": 2011,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199876338",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199876338"
}
],
"cookies": [],
"headersSize": 406,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:58 GMT"
},
{
"name": "Connection",
"value": "Keep-Alive"
},
{
"name": "Content-Length",
"value": "85"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
}
],
"cookies": [],
"content": {
"size": 85,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 141,
"bodySize": 85
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2009,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:57.333Z",
"time": 2,
"request": {
"method": "POST",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199877338",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "91"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Content-type",
"value": "text/plain;charset=UTF-8"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199877338"
}
],
"cookies": [],
"headersSize": 498,
"bodySize": 91,
"postData": {
"mimeType": "text/plain;charset=UTF-8",
"text": "5:::{\"name\":\"my other event\",\"args\":[{\"my\":\"data\",\"timestamp\":\"2012-10-25T21:17:57.338Z\"}]}"
}
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:57 GMT"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Length",
"value": "1"
},
{
"name": "Content-Type",
"value": "text/plain; charset=UTF-8"
},
{
"name": "Access-Control-Allow-Origin",
"value": "http://localhost:9000"
},
{
"name": "Access-Control-Allow-Credentials",
"value": "true"
}
],
"cookies": [],
"content": {
"size": 1,
"mimeType": "text/plain",
"compression": 0
},
"redirectURL": "",
"headersSize": 232,
"bodySize": 1
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:58.351Z",
"time": 201,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/xhr-polling/1288066774254540896?t=1351199878351",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199878351"
}
],
"cookies": [],
"headersSize": 96,
"bodySize": 0
},
"response": {
"status": 0,
"statusText": "",
"httpVersion": "HTTP/1.1",
"headers": [],
"cookies": [],
"content": {
"size": 0,
"compression": 0
},
"redirectURL": "",
"headersSize": 13,
"bodySize": 0
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": -1,
"wait": -1,
"receive": null,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:17:59.047Z",
"time": 4,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/?t=1351199879052",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199879052"
}
],
"cookies": [],
"headersSize": 375,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:17:59 GMT"
},
{
"name": "Transfer-Encoding",
"value": "chunked"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Type",
"value": "text/plain"
}
],
"cookies": [],
"content": {
"size": 61,
"mimeType": "text/plain",
"compression": -11
},
"redirectURL": "",
"headersSize": 134,
"bodySize": 72
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:18:00.055Z",
"time": -1,
"request": {
"method": "GET",
"url": "ws://localhost:9000/socket.io/1/websocket/1723235684348279461",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Origin",
"value": "http://localhost:9000"
},
{
"name": "Connection",
"value": "Upgrade"
},
{
"name": "Sec-WebSocket-Extensions",
"value": "x-webkit-deflate-frame"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "Sec-WebSocket-Key",
"value": "YKFk2LOT6VPlJ4DOl9GA5w=="
},
{
"name": "Upgrade",
"value": "websocket"
},
{
"name": "Sec-WebSocket-Version",
"value": "13"
}
],
"queryString": [],
"cookies": [],
"headersSize": 76,
"bodySize": 0
},
"response": {
"status": 0,
"statusText": "",
"httpVersion": "HTTP/1.1",
"headers": [],
"cookies": [],
"content": {
"size": 0,
"compression": 0
},
"redirectURL": "",
"headersSize": 13,
"bodySize": 0
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": -1,
"wait": -1,
"receive": -1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:18:10.051Z",
"time": 3,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/?t=1351199890056",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199890056"
}
],
"cookies": [],
"headersSize": 375,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:18:10 GMT"
},
{
"name": "Transfer-Encoding",
"value": "chunked"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Type",
"value": "text/plain"
}
],
"cookies": [],
"content": {
"size": 61,
"mimeType": "text/plain",
"compression": -11
},
"redirectURL": "",
"headersSize": 134,
"bodySize": 72
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "1969-12-31T23:59:59.000Z",
"time": -1,
"request": {
"method": "",
"url": "ws://localhost:9000/socket.io/1/websocket/6830160531183625590",
"httpVersion": "HTTP/1.1",
"headers": [],
"queryString": [],
"cookies": [],
"headersSize": 73,
"bodySize": 0
},
"response": {
"status": 0,
"statusText": "",
"httpVersion": "HTTP/1.1",
"headers": [],
"cookies": [],
"content": {
"size": 0,
"compression": 0
},
"redirectURL": "",
"headersSize": 13,
"bodySize": 0
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": -1,
"wait": -1,
"receive": -1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:18:21.053Z",
"time": 3,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/?t=1351199901058",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199901058"
}
],
"cookies": [],
"headersSize": 375,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:18:21 GMT"
},
{
"name": "Transfer-Encoding",
"value": "chunked"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Type",
"value": "text/plain"
}
],
"cookies": [],
"content": {
"size": 62,
"mimeType": "text/plain",
"compression": -11
},
"redirectURL": "",
"headersSize": 134,
"bodySize": 73
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "1969-12-31T23:59:59.000Z",
"time": -1,
"request": {
"method": "",
"url": "ws://localhost:9000/socket.io/1/websocket/14540914881236829012",
"httpVersion": "HTTP/1.1",
"headers": [],
"queryString": [],
"cookies": [],
"headersSize": 74,
"bodySize": 0
},
"response": {
"status": 0,
"statusText": "",
"httpVersion": "HTTP/1.1",
"headers": [],
"cookies": [],
"content": {
"size": 0,
"compression": 0
},
"redirectURL": "",
"headersSize": 13,
"bodySize": 0
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": -1,
"wait": -1,
"receive": -1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:18:32.054Z",
"time": 3,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/?t=1351199912059",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199912059"
}
],
"cookies": [],
"headersSize": 375,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:18:32 GMT"
},
{
"name": "Transfer-Encoding",
"value": "chunked"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Type",
"value": "text/plain"
}
],
"cookies": [],
"content": {
"size": 61,
"mimeType": "text/plain",
"compression": -11
},
"redirectURL": "",
"headersSize": 134,
"bodySize": 72
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 2,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "1969-12-31T23:59:59.000Z",
"time": -1,
"request": {
"method": "",
"url": "ws://localhost:9000/socket.io/1/websocket/1903366695852799681",
"httpVersion": "HTTP/1.1",
"headers": [],
"queryString": [],
"cookies": [],
"headersSize": 73,
"bodySize": 0
},
"response": {
"status": 0,
"statusText": "",
"httpVersion": "HTTP/1.1",
"headers": [],
"cookies": [],
"content": {
"size": 0,
"compression": 0
},
"redirectURL": "",
"headersSize": 13,
"bodySize": 0
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": -1,
"wait": -1,
"receive": -1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:18:43.054Z",
"time": 3,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/?t=1351199923059",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199923059"
}
],
"cookies": [],
"headersSize": 375,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:18:43 GMT"
},
{
"name": "Transfer-Encoding",
"value": "chunked"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Type",
"value": "text/plain"
}
],
"cookies": [],
"content": {
"size": 61,
"mimeType": "text/plain",
"compression": -11
},
"redirectURL": "",
"headersSize": 134,
"bodySize": 72
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 0,
"wait": 1,
"receive": 1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "1969-12-31T23:59:59.000Z",
"time": -1,
"request": {
"method": "",
"url": "ws://localhost:9000/socket.io/1/websocket/4174531651979580047",
"httpVersion": "HTTP/1.1",
"headers": [],
"queryString": [],
"cookies": [],
"headersSize": 73,
"bodySize": 0
},
"response": {
"status": 0,
"statusText": "",
"httpVersion": "HTTP/1.1",
"headers": [],
"cookies": [],
"content": {
"size": 0,
"compression": 0
},
"redirectURL": "",
"headersSize": 13,
"bodySize": 0
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": -1,
"wait": -1,
"receive": -1,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "2012-10-25T21:18:59.054Z",
"time": 3,
"request": {
"method": "GET",
"url": "http://localhost:9000/socket.io/1/?t=1351199939061",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Accept-Encoding",
"value": "gzip,deflate,sdch"
},
{
"name": "Accept-Language",
"value": "en-US,en;q=0.8"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Accept-Charset",
"value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3"
},
{
"name": "Host",
"value": "localhost:9000"
},
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4"
},
{
"name": "Accept",
"value": "*/*"
},
{
"name": "Referer",
"value": "http://localhost:9000/"
}
],
"queryString": [
{
"name": "t",
"value": "1351199939061"
}
],
"cookies": [],
"headersSize": 375,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "OK",
"httpVersion": "HTTP/1.1",
"headers": [
{
"name": "Date",
"value": "Thu, 25 Oct 2012 21:18:59 GMT"
},
{
"name": "Transfer-Encoding",
"value": "chunked"
},
{
"name": "Connection",
"value": "keep-alive"
},
{
"name": "Content-Type",
"value": "text/plain"
}
],
"cookies": [],
"content": {
"size": 62,
"mimeType": "text/plain",
"compression": -11
},
"redirectURL": "",
"headersSize": 134,
"bodySize": 73
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": 1,
"wait": 1,
"receive": 0,
"ssl": -1
},
"pageref": "page_4"
},
{
"startedDateTime": "1969-12-31T23:59:59.000Z",
"time": -1,
"request": {
"method": "",
"url": "ws://localhost:9000/socket.io/1/websocket/16311204531308304545",
"httpVersion": "HTTP/1.1",
"headers": [],
"queryString": [],
"cookies": [],
"headersSize": 74,
"bodySize": 0
},
"response": {
"status": 0,
"statusText": "",
"httpVersion": "HTTP/1.1",
"headers": [],
"cookies": [],
"content": {
"size": 0,
"compression": 0
},
"redirectURL": "",
"headersSize": 13,
"bodySize": 0
},
"cache": {},
"timings": {
"blocked": 0,
"dns": -1,
"connect": -1,
"send": -1,
"wait": -1,
"receive": -1,
"ssl": -1
},
"pageref": "page_4"
}
]
}
}
node .\server.js
info - socket.io started
debug - client authorized
info - handshake authorized 5967749841545976050
debug - client authorized
info - handshake authorized 2081939169403899234
debug - client authorized
info - handshake authorized 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199767646
debug - setting poll timeout
debug - client authorized for
debug - clearing poll timeout
debug - xhr-polling writing 1::
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199767654
debug - setting poll timeout
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"Connected","timestamp":"2012-10-25T21:16:07.651Z"}]}
debug - set close timeout for client 1288066774254540896
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199767659
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:16:08.659Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:16:08.659Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:16:09.673Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199769676
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:16:10.676Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:16:10.676Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:16:11.686Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199771688
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:16:12.689Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:16:12.689Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:16:13.699Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199773701
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:16:14.701Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:16:14.701Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:16:15.710Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199775712
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:16:16.713Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:16:16.713Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:16:17.723Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199777726
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:16:18.727Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:16:18.727Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:16:19.736Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199779739
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:16:20.738Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:16:20.738Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:16:21.747Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199781750
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:16:22.750Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:16:22.750Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:16:23.760Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199783763
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:16:24.764Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:16:24.764Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:16:25.772Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199785775
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:16:26.774Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:16:26.774Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:16:27.785Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199787788
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:16:28.789Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:16:28.789Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:16:29.799Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199789800
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:16:30.801Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:16:30.801Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:16:31.810Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199791812
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:16:32.813Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:16:32.813Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:16:33.822Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199793824
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:16:34.825Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:16:34.825Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:16:35.834Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199795837
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:16:36.838Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:16:36.838Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:16:37.847Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199797850
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:16:38.850Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:16:38.850Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:16:39.859Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199799861
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:16:40.861Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:16:40.861Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:16:41.871Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199801874
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:16:42.877Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:16:42.877Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:16:43.884Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199803889
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:16:44.889Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:16:44.889Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:16:45.896Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199805900
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:16:46.901Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:16:46.901Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:16:47.909Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199807913
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:16:48.914Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:16:48.914Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:16:49.921Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199809925
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:16:50.924Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:16:50.924Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:16:51.934Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199811938
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:16:52.939Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:16:52.939Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:16:53.946Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199813950
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:16:54.950Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:16:54.950Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:16:55.961Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199815963
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:16:56.963Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:16:56.963Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:16:57.974Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199817976
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:16:58.977Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:16:58.977Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:16:59.986Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199819988
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:17:00.989Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:17:00.989Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:17:01.998Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199822000
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:17:03.001Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:17:03.001Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:17:04.011Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199824012
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:17:05.012Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:17:05.012Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:17:06.024Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199826025
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:17:07.026Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:17:07.026Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:17:08.037Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199828038
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:17:09.039Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:17:09.039Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:17:10.048Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199830049
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:17:11.049Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:17:11.049Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:17:12.062Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199832064
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:17:13.065Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:17:13.065Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:17:14.073Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199834075
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:17:15.075Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:17:15.075Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:17:16.085Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199836087
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:17:17.088Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:17:17.088Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:17:18.099Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199838101
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:17:19.100Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:17:19.100Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:17:20.110Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199840112
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:17:21.112Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:17:21.112Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:17:22.123Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199842124
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:17:23.124Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:17:23.124Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:17:24.136Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199844137
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:17:25.137Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:17:25.137Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:17:26.148Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199846149
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:17:27.149Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:17:27.149Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:17:28.161Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199848163
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:17:29.162Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:17:29.162Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:17:30.172Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199850174
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:17:31.175Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:17:31.175Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:17:32.186Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199852189
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:17:33.190Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:17:33.190Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:17:34.197Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199854199
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:17:35.200Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:17:35.200Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:17:36.210Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199856212
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:17:37.211Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:17:37.211Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:17:38.223Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199858224
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:17:39.225Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:17:39.225Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:17:40.235Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199860236
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:17:41.235Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:17:41.235Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:17:42.247Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199862247
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:17:43.250Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:17:43.250Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:17:44.260Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199864264
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:17:45.265Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:17:45.265Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:17:46.273Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199866278
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:17:47.279Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:17:47.279Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:17:48.285Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199868290
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:17:49.290Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:17:49.290Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:17:50.296Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199870301
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:17:51.301Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:17:51.301Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:17:52.309Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199872314
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:17:53.314Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:17:53.314Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:17:54.324Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199874325
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:17:55.326Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:17:55.326Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:17:56.337Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199876338
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - xhr-polling received data packet 5:::{"name":"my other event","args":[{"my":"data","timestamp":"2012-10-25T21:17:57.338Z"}]}
{ my: 'data', timestamp: '2012-10-25T21:17:57.338Z' }
debug - clearing poll timeout
debug - xhr-polling writing 5:::{"name":"news","args":[{"hello":"world","timestamp":"2012-10-25T21:17:58.350Z"}]}
debug - set close timeout for client 1288066774254540896
debug - setting request GET /socket.io/1/xhr-polling/1288066774254540896?t=1351199878351
debug - setting poll timeout
debug - discarding transport
debug - cleared close timeout for client 1288066774254540896
debug - client authorized
info - handshake authorized 1723235684348279461
debug - client authorized
info - handshake authorized 6830160531183625590
debug - clearing poll timeout
debug - xhr-polling writing 8::
debug - set close timeout for client 1288066774254540896
debug - xhr-polling closed due to exceeded duration
debug - client authorized
info - handshake authorized 14540914881236829012
debug - client authorized
info - handshake authorized 1903366695852799681
debug - client authorized
info - handshake authorized 4174531651979580047
debug - client authorized
info - handshake authorized 16311204531308304545
debug - fired close timeout for client 1288066774254540896
info - transport end (close timeout)
debug - discarding transport
debug - client authorized
info - handshake authorized 1887988791755893679
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment