|
|
@ -1,11 +1,12 @@ |
|
|
|
var c = new node.http.Client(8000, "localhost") |
|
|
|
|
|
|
|
var req = c.get("/hello/world", [["Accept", "*/*"]]); |
|
|
|
var req = c.get("/bytes/123", [["Accept", "*/*"]]); |
|
|
|
req.finish(function (res) { |
|
|
|
puts("response 1: " + res.status_code.toString()); |
|
|
|
|
|
|
|
res.onBody = function (chunk) { |
|
|
|
puts("response 1 body <" + chunk.encodeUtf8() + ">"); |
|
|
|
chunk = chunk.encodeUtf8(); |
|
|
|
puts("response 1 body <" + JSON.stringify(chunk) + ">"); |
|
|
|
return true; |
|
|
|
}; |
|
|
|
|
|
|
@ -15,19 +16,21 @@ req.finish(function (res) { |
|
|
|
}; |
|
|
|
}); |
|
|
|
|
|
|
|
/* |
|
|
|
var req = c.get("/something/else", []); |
|
|
|
req.finish(function (res) { |
|
|
|
puts("response 2: " + res.status_code.toString()); |
|
|
|
setTimeout(function () { |
|
|
|
var req2 = c.get("/something/else", []); |
|
|
|
req2.finish(function (res) { |
|
|
|
puts("response 2: " + res.status_code.toString()); |
|
|
|
|
|
|
|
res.onBody = function (chunk) { |
|
|
|
puts("response 2 body <" + chunk.encodeUtf8() + ">"); |
|
|
|
return true; |
|
|
|
}; |
|
|
|
res.onBody = function (chunk) { |
|
|
|
chunk = chunk.encodeUtf8(); |
|
|
|
puts("response 2 body <" + JSON.stringify(chunk) + ">"); |
|
|
|
return true; |
|
|
|
}; |
|
|
|
|
|
|
|
res.onBodyComplete = function () { |
|
|
|
puts("response 2 complete!"); |
|
|
|
return true; |
|
|
|
}; |
|
|
|
}); |
|
|
|
}, 2000); |
|
|
|
|
|
|
|
res.onBodyComplete = function () { |
|
|
|
puts("response 2 complete!"); |
|
|
|
return true; |
|
|
|
}; |
|
|
|
}); |
|
|
|
*/ |
|
|
|