I need to deploy my node-XMLHttpRequest app to a server that uses a proxy to access the internet. In a terminal on that server, I can curl -d \"\" http://website/path<
This fork adds a config object that can specify a proxy to use.
https://github.com/jbeuckm/node-XMLHttpRequest
Did you provide the proxy options to the http connection?
The below should help.
var http = require("http");
var options = {
hostname: "<proxy-server-address>",
port: <proxy-server-port>,
path: "http://www.xyz.com",
headers: {
Host: "www.xyz.com"
}
};
var req = http.request(options, function(res){ ... });
req.end();