错误:使用节点v0.12.0挂起套接字

时间:2015-03-02 15:32:59

标签: node.js

我尝试使用Node执行非常简单的HTTP POST:

var querystring = require('querystring');
var http = require('http');

var postData = querystring.stringify({
  "source": "XXXX", 
  "target": "XXXX", 
  "create_target": true, 
  "continuous": false
});

var options = { 
  hostname: 'XXXX',
  port: 443,
  path: '/_replicate',
  method: 'POST',
  headers: { 
    'Content-Type:':'application/json',
    'Content-Length':Buffer.byteLength(postData)
  } 
};

var req = http.request(options, function(res) { 
  res.setEncoding('utf8');
  res.on('data', function (chunk) { 
    console.log('BODY: ' + chunk);
  });
});

req.on('error', function(e) { 
  console.log('problem with request: ' + e.stack);
});

req.write(postData);
req.end();

但我得到的回应是:

problem with request: Error: socket hang up
    at createHangUpError (_http_client.js:215:15)
    at Socket.socketOnEnd (_http_client.js:293:23)
    at Socket.emit (events.js:129:20)
    at _stream_readable.js:908:16
    at process._tickCallback (node.js:355:11)

我正在使用节点v0.12.0。


我在Stackoverflow上看到了其他类似的问题,但我认为它们有所不同,因为:

1 个答案:

答案 0 :(得分:1)

我看到您正在向安全服务器发出请求。您可能应该使用https对象的请求方法。

事实上,我能够使用http对象重新创建问题,当我只使用https对象时,我能够在没有套接字关闭的情况下得到响应。