0

我正在尝试使用以下脚本发出HTTPS POST SOAP 请求:

var http = require('http');

function Authenticate() {
  // Build the post string from an object
  var post_data = "<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:typ=\"http://company.com/mse/types\"><soapenv:Header/><soapenv:Body><typ:Login><typ:Credential userName=\"username\" password=\"password\"/></typ:Login></soapenv:Body></soapenv:Envelope>";
  // An object of options to indicate where to post to

  var post_options = {
    port: 443,
    host: 'https://132.33.223.33', //MSE12
    path: '/aaa/',
    method: 'POST',

    headers: {
        'Content-Type': 'text/xml;charset=UTF-8',
        'SOAPAction': '\"Login\"',
        'Accept-Encoding': 'gzip,deflate',
        'Host':'173.37.206.33',
        'Connection':'Keep-Alive',
        'User-Agent':'Apache-HttpClient/4.1.1 (java 1.5)'
    }
  };

  // Set up the request
  var post_req = http.request(post_options, function(res) {
      res.setEncoding('utf8');
      res.on('data', function (chunk) {
          console.log('Response: ' + chunk);
      });
  });

  post_req.on('error', function (err) {
    //handle error here
    console.log(err);
  });

  // post the data
  post_req.write(post_data);
  post_req.end();

}

Authenticate();

IPAddress 和有效负载已更改。我知道请求成功,因为标头、请求正文和请求 url 在 F 中正常工作

执行时,我一直遇到此错误:

{ [Error: getaddrinfo ENOTFOUND] code: 'ENOTFOUND', errno: 'ENOTFOUND', syscall: 'getaddrinfo' }

在发出这个 HTTPS 请求时,谁能看到我在这个脚本中做错了什么?我尝试搜索此错误消息,它一直指向有关主机问题的论坛线程。

任何指针将不胜感激。

4

1 回答 1

6

我可以在这里看到两个问题:

首先:您正在尝试使用 https,而不是 http。因此你应该使用

var https = require( 'https' );

从那时起,使用 https 而不是 http。有关详细信息,请参阅节点 HTTPS。其次,在 *post_options* 中,host参数应该只是主机,没有模式。所以让主机: 132.33.223.33。这就是您收到“ENOTFOUND”错误的原因。

于 2013-05-13T19:29:19.737 回答