gpt4 book ai didi

java - 通过 SSL 的 NodeJS 和 JBoss

转载 作者:太空宇宙 更新时间:2023-11-03 15:05:45 25 4
gpt4 key购买 nike

我有一个 nodeJS 网络套接字通过 SSL 监听特定端口。

在与该网络套接字建立连接后,将向另一台机器上的 REST WS 发出请求。 WS部署在JBoss服务器上...

问题是没有请求到达 WS,因此没有响应返回到 nodeJS:

错误:套接字挂起

我成功地使用浏览器从运行 nodeJS 的机器向 WS 发出了 HTTPS 请求。

如有任何帮助,我们将不胜感激!

谢谢

最佳答案

https = require('https');

req = https.get({host: 'www.google.com', port: '80'}, function(res) {
res.on('data', function(data) {
console.log(data);
});
});

// Although https.get should end the request for you already,
// try end it yourself.
req.end();

关于java - 通过 SSL 的 NodeJS 和 JBoss,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9610928/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com