我正在尝试使用 wsdl 服务并找到 node-soap,但我找不到如何设置一些标头。
例子 :
header = {
"Username": "foo",
"Password" : "bar"
}
我需要这个的原因是因为我尝试使用的 wsdl 需要通过标头提供用户名和密码。
提前致谢
它现在可能没有用,但是为了回答这个仍然悬而未决的问题,就在这里。
您可以使用 Client.addSoapHeader 方法。根据文档
Client.addSoapHeader(soapHeader[, name, namespace, xmlns]) - 添加soapHeader到soap:Header节点
选项
soapHeader Object({rootName: {name: "value"}}) 或严格的 xml-string 第一个 arg 为 object 时的可选参数:
名称未知参数(它可能只是一个空字符串)
xml命名空间的命名空间前缀
xmlns URI
因此,您需要创建一个对象并将其传递给此方法,例如:
var soapHeader = {
"Username": "foo",
"Password" : "bar"
};
client.addSoapHeader(soapHeader);
通读node-soap的自述文件,如果你想做的不是WS-Security
(我不知道,因为我远离SOAP),那么你将不得不向作者提出问题,因为我看不到根据文档设置自定义标题的方法。
如果是 WS-Security
,请按照自述文件这一部分的说明进行操作。
根据文档,对于聚合 HTTP 标头,您可以放置标头,示例代码:
soap.createClient(url,
function (err, client) {
if(err){
console.log(err);
} else{
console.log(client.describe())
var soapHeaders = {
'Channel':'PB',
'RqUID':'1987'
}
client.addHttpHeader('<nameH1>', 'valueH1');
client.addHttpHeader('<nameH2>', 'valueH2');
//then, continue calling the soap operation
}
soap = require('soap')
parseString = require('xml2js').parseString
soap.createClient('https://api.bingads.microsoft.com/Api/Advertiser/AdIntelligence/v9/AdIntelligenceService.svc?wsdl', function(err, client) {
var soapHeader = {
'AuthenticationToken': process.argv[2],
'DeveloperToken': process.argv[3],
'CustomerId': process.argv[4],
'CustomerAccountId': process.argv[5]
};
client.addSoapHeader(soapHeader);
client.SuggestKeywordsFromExistingKeywords({Keywords: ["Hello world"]}, function(err, result) {
console.log(result.body);
});
});
这行不通。回复是无效的登录凭据。相同的凭据适用于 SOAPUI。因此,其他答案中提到的发送登录凭据的格式一定是错误的。
这对我有用。创建客户端方法需要 wsdl_header 来检索 wsdl 定义。创建后,您需要设置基本身份验证安全性。
var url = 'your WSDL url';
var auth = "Basic " + new Buffer("username" + ":" + "password").toString("base64");
soap.createClient( url,{ wsdl_headers: {Authorization: auth} }).then(
function(client){
client.setSecurity(new soap.BasicAuthSecurity('rflhconfort_ws', '6syqxje9'));
client.your_Method(args);
}
我有同样的问题,我在下面解决了对我有用的我的 wsdl,我使用 SOAPUI 客户端插入数据(查看需要哪些字段)
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:yourUrn">
<soapenv:Header>
<urn:AuthenticationMethod>
<urn:userName>username</urn:userName>
<urn:password>password</urn:password>
</urn:AuthenticationMethod>
</soapenv:Header>
<soapenv:Body>
<urn:SoapFunctionToCall>
<urn:Field1>Text</urn:Field1>
<urn:Field2>Text</urn:Field2>
<urn:Field3>Text</urn:Field3>
<urn:Field14>Text</urn:Field4>
<urn:Field5>Text</urn:Field5>
<urn:Field6>Text</urn:Field6>
</urn:SoapFunctionToCall>
</soapenv:Body>
</soapenv:Envelope>
下面是我在节点中调用的方法
function createSoapEntry(){
let url = "your wsdl url"
var credentials = {
AuthenticationMethod:{
userName: "username",
password: "password"
}
}
let args = {
Field1:"Text",
Field2:"Text",
Field3:"Text",
Field4:"Text",
Field5:"Text",
Field6:"Text"
}
soap.createClient(url, function (err, client){
client.addSoapHeader(credentials)
client.SoapFunctionToCall(args, function (err, res) {
if (err) {
console.log("Error is ----->" + err)
} else {
console.log("Response is -----> " + res)
}
})
})
}