套接字 – 在node.js中使用net.createConnection(port,[host])创建一个tcp套接字

这里的任何人都可以给我一些使用node.js中套接字的指针吗?

可以在端口8000上打开172.0.0.1上的tcp连接,例如使用net.createConnection(port,host)

var net = require('net'),querystring = require('querystring'),http = require('http'),port = 8383,host = 172.123.321.213,path = /path/toService,_post = '';

var server = http.createServer(function(req,res) {

    if(req.method == 'POST') {
      req.on('data',function(data) {
        body+=data;
      });
      req.on('end',function() {
        _post = querystring.parse(body);//parser post data
        console.log(_post);
      })
    }

var socket = net.createConnection(port,host);

var socket = net.createConnection(port,host);

    socket.on('error',function(error) {
      send404(res,host,port);
    })

    socket.on('connect',function(connect) {
      console.log('connection established');
      res.writeHead(200,{'content-type' : 'text/html'});
      res.write('<h3>200 OK: 
           Connection to host ' + host + ' established. Pid = ' + process.pid + '</h3>\n');
      res.end();
      var body = '';
      socket._writeQueue.push(_post);

      socket.write(_post);

      console.log(socket);

      socket.on('end',function() {
        console.log('socket closing...')
      })
    })

    socket.setKeepAlive(enable=true,1000);
  }).listen(8000);

  send404 = function(res,port) {
    res.writeHead(404,{'content-type': 'text/html'});
    res.write('<h3>404 Can not establish connection to host: ' + host + ' on port: ' + port + '</h3>\n');
    res.end();
  }

但是现在我需要将我的数据发送到定义的路径 – 如果我将路径添加到主机然后尝试连接,那么连接将失败.

有任何想法吗?

提前致谢

解决方法

你的“socket”对象只是一个普通的 TCP socket,它只是一个简单的双向通信通道.您尝试使用的HTTP方法(例如res.writeHead())不适用,因此您必须手动编写请求.尝试这样的事情:

var socket = net.createConnection(port,host);
console.log('Socket created.');
socket.on('data',function(data) {
  // Log the response from the HTTP server.
  console.log('RESPONSE: ' + data);
}).on('connect',function() {
  // Manually write an HTTP request.
  socket.write("GET / HTTP/1.0\r\n\r\n");
}).on('end',function() {
  console.log('DONE');
});

相关文章

这篇文章主要介绍“基于nodejs的ssh2怎么实现自动化部署”的...
本文小编为大家详细介绍“nodejs怎么实现目录不存在自动创建...
这篇“如何把nodejs数据传到前端”文章的知识点大部分人都不...
本文小编为大家详细介绍“nodejs如何实现定时删除文件”,内...
这篇文章主要讲解了“nodejs安装模块卡住不动怎么解决”,文...
今天小编给大家分享一下如何检测nodejs有没有安装成功的相关...