gpt4 book ai didi

javascript - NodeJS 发送 HTTPS SOAP 请求

转载 作者:行者123 更新时间:2023-11-30 18:02:50 25 4
gpt4 key购买 nike

我正在尝试使用 nodejs 在特定端点发送 SOAP 请求。

我的请求是这样的:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:typ="http://company.com/nse/types">
<soapenv:Header/>
<soapenv:Body>
<typ:Login>
<!--You have a CHOICE of the next 2 items at this level-->
<typ:Credential userName="x" password="y"/>
</typ:Login>
</soapenv:Body>
</soapenv:Envelope>

我还有一个 https 端点(例如 https://hostname.com/box/ )和一个 WSDL 文件。

有人可以告诉我最好的方法吗?我正在浏览 milewise/node-soap并且似乎无法找到一个位置来输入我需要的端点。

最佳答案

您可以将端点指定为选项的一部分:

var soap = require( 'soap' );
soap.createClient( ep.wsdl, { endpoint : ep.uri }, function( err, client ) {
...
});

关于javascript - NodeJS 发送 HTTPS SOAP 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16502106/

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